
    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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00000;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_d324d78ae6bbe9797fdc20ba.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00000{letter-spacing:-0.192240px;}
.ls4_c00000{letter-spacing:-0.108000px;}
.ls3_c00000{letter-spacing:0.000000px;}
.ls0_c00000{letter-spacing:0.108000px;}
.ls2_c00000{letter-spacing:0.167760px;}
.ls1_c00000{letter-spacing:0.192240px;}
.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:-24.030000px;}
.ws1_c00000{word-spacing:-23.837760px;}
.ws7_c00000{word-spacing:-0.587160px;}
.ws8_c00000{word-spacing:-0.167760px;}
.ws3_c00000{word-spacing:-0.108000px;}
.ws6_c00000{word-spacing:-0.096120px;}
.ws2_c00000{word-spacing:0.000000px;}
.ws4_c00000{word-spacing:0.108000px;}
.ws5_c00000{word-spacing:0.288360px;}
._0_c00000{margin-left:-1.371600px;}
._1_c00000{width:1.047600px;}
._2_c00000{width:842.994000px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs0_c00000{font-size:54.000000px;}
.fs1_c00000{font-size:72.000000px;}
.fs4_c00000{font-size:83.880000px;}
.fs3_c00000{font-size:96.120000px;}
.fs2_c00000{font-size:108.000000px;}
.y0_c00000{bottom:0.000000px;}
.y1b_c00000{bottom:178.371900px;}
.y1a_c00000{bottom:214.650000px;}
.y19_c00000{bottom:253.293390px;}
.y18_c00000{bottom:294.697080px;}
.y17_c00000{bottom:336.100770px;}
.y16_c00000{bottom:377.504460px;}
.y15_c00000{bottom:418.908150px;}
.y14_c00000{bottom:460.311840px;}
.y13_c00000{bottom:501.715530px;}
.y12_c00000{bottom:543.119220px;}
.y11_c00000{bottom:584.426790px;}
.y10_c00000{bottom:625.830480px;}
.yf_c00000{bottom:667.234170px;}
.ye_c00000{bottom:708.637860px;}
.yd_c00000{bottom:750.041550px;}
.yc_c00000{bottom:791.445240px;}
.yb_c00000{bottom:832.848930px;}
.ya_c00000{bottom:874.252620px;}
.y9_c00000{bottom:915.656310px;}
.y8_c00000{bottom:957.060000px;}
.y7_c00000{bottom:1000.791000px;}
.y6_c00000{bottom:1041.480000px;}
.y5_c00000{bottom:1131.120000px;}
.y4_c00000{bottom:1151.005500px;}
.y3_c00000{bottom:1166.490000px;}
.y2_c00000{bottom:1182.055500px;}
.y1_c00000{bottom:1197.540000px;}
.h3_c00000{height:52.971680px;}
.h2_c00000{height:52.998047px;}
.h4_c00000{height:70.664062px;}
.h7_c00000{height:84.535312px;}
.h6_c00000{height:96.870938px;}
.h5_c00000{height:108.843750px;}
.h0_c00000{height:1262.880000px;}
.h1_c00000{height:1263.000000px;}
.w0_c00000{width:893.070000px;}
.w1_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
.x2_c00000{left:127.620000px;}
.x4_c00000{left:132.300000px;}
.x5_c00000{left:137.241810px;}
.x6_c00000{left:166.486320px;}
.x8_c00000{left:222.932790px;}
.x9_c00000{left:271.260000px;}
.x7_c00000{left:348.297300px;}
.x1_c00000{left:446.580000px;}
.x3_c00000{left:516.510000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls5_c00000{letter-spacing:-0.170880pt;}
.ls4_c00000{letter-spacing:-0.096000pt;}
.ls3_c00000{letter-spacing:0.000000pt;}
.ls0_c00000{letter-spacing:0.096000pt;}
.ls2_c00000{letter-spacing:0.149120pt;}
.ls1_c00000{letter-spacing:0.170880pt;}
.ws0_c00000{word-spacing:-21.360000pt;}
.ws1_c00000{word-spacing:-21.189120pt;}
.ws7_c00000{word-spacing:-0.521920pt;}
.ws8_c00000{word-spacing:-0.149120pt;}
.ws3_c00000{word-spacing:-0.096000pt;}
.ws6_c00000{word-spacing:-0.085440pt;}
.ws2_c00000{word-spacing:0.000000pt;}
.ws4_c00000{word-spacing:0.096000pt;}
.ws5_c00000{word-spacing:0.256320pt;}
._0_c00000{margin-left:-1.219200pt;}
._1_c00000{width:0.931200pt;}
._2_c00000{width:749.328000pt;}
.fs0_c00000{font-size:48.000000pt;}
.fs1_c00000{font-size:64.000000pt;}
.fs4_c00000{font-size:74.560000pt;}
.fs3_c00000{font-size:85.440000pt;}
.fs2_c00000{font-size:96.000000pt;}
.y0_c00000{bottom:0.000000pt;}
.y1b_c00000{bottom:158.552800pt;}
.y1a_c00000{bottom:190.800000pt;}
.y19_c00000{bottom:225.149680pt;}
.y18_c00000{bottom:261.952960pt;}
.y17_c00000{bottom:298.756240pt;}
.y16_c00000{bottom:335.559520pt;}
.y15_c00000{bottom:372.362800pt;}
.y14_c00000{bottom:409.166080pt;}
.y13_c00000{bottom:445.969360pt;}
.y12_c00000{bottom:482.772640pt;}
.y11_c00000{bottom:519.490480pt;}
.y10_c00000{bottom:556.293760pt;}
.yf_c00000{bottom:593.097040pt;}
.ye_c00000{bottom:629.900320pt;}
.yd_c00000{bottom:666.703600pt;}
.yc_c00000{bottom:703.506880pt;}
.yb_c00000{bottom:740.310160pt;}
.ya_c00000{bottom:777.113440pt;}
.y9_c00000{bottom:813.916720pt;}
.y8_c00000{bottom:850.720000pt;}
.y7_c00000{bottom:889.592000pt;}
.y6_c00000{bottom:925.760000pt;}
.y5_c00000{bottom:1005.440000pt;}
.y4_c00000{bottom:1023.116000pt;}
.y3_c00000{bottom:1036.880000pt;}
.y2_c00000{bottom:1050.716000pt;}
.y1_c00000{bottom:1064.480000pt;}
.h3_c00000{height:47.085938pt;}
.h2_c00000{height:47.109375pt;}
.h4_c00000{height:62.812500pt;}
.h7_c00000{height:75.142500pt;}
.h6_c00000{height:86.107500pt;}
.h5_c00000{height:96.750000pt;}
.h0_c00000{height:1122.560000pt;}
.h1_c00000{height:1122.666667pt;}
.w0_c00000{width:793.840000pt;}
.w1_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
.x2_c00000{left:113.440000pt;}
.x4_c00000{left:117.600000pt;}
.x5_c00000{left:121.992720pt;}
.x6_c00000{left:147.987840pt;}
.x8_c00000{left:198.162480pt;}
.x9_c00000{left:241.120000pt;}
.x7_c00000{left:309.597600pt;}
.x1_c00000{left:396.960000pt;}
.x3_c00000{left:459.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_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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
._0_c00001{width:842.994000px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs0_c00001{font-size:54.000000px;}
.fs1_c00001{font-size:72.000000px;}
.fs2_c00001{font-size:83.880000px;}
.y0_c00001{bottom:0.000000px;}
.y6_c00001{bottom:1107.360000px;}
.y5_c00001{bottom:1131.120000px;}
.y4_c00001{bottom:1151.005500px;}
.y3_c00001{bottom:1166.490000px;}
.y2_c00001{bottom:1182.055500px;}
.y1_c00001{bottom:1197.540000px;}
.h3_c00001{height:52.971680px;}
.h2_c00001{height:52.998047px;}
.h4_c00001{height:70.664062px;}
.h5_c00001{height:84.535312px;}
.h0_c00001{height:1262.880000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:893.070000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:127.620000px;}
.x1_c00001{left:446.580000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
._0_c00001{width:749.328000pt;}
.fs0_c00001{font-size:48.000000pt;}
.fs1_c00001{font-size:64.000000pt;}
.fs2_c00001{font-size:74.560000pt;}
.y0_c00001{bottom:0.000000pt;}
.y6_c00001{bottom:984.320000pt;}
.y5_c00001{bottom:1005.440000pt;}
.y4_c00001{bottom:1023.116000pt;}
.y3_c00001{bottom:1036.880000pt;}
.y2_c00001{bottom:1050.716000pt;}
.y1_c00001{bottom:1064.480000pt;}
.h3_c00001{height:47.085938pt;}
.h2_c00001{height:47.109375pt;}
.h4_c00001{height:62.812500pt;}
.h5_c00001{height:75.142500pt;}
.h0_c00001{height:1122.560000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.840000pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:113.440000pt;}
.x1_c00001{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2150f2483d1e38f7c4bb820.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_3a3df5842a4fb5d6ad664cf8.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00002{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls4_c00002{letter-spacing:-0.192240px;}
.ls6_c00002{letter-spacing:-0.144000px;}
.ls7_c00002{letter-spacing:-0.072000px;}
.ls3_c00002{letter-spacing:0.000000px;}
.ls5_c00002{letter-spacing:0.072000px;}
.ls0_c00002{letter-spacing:0.108000px;}
.ls8_c00002{letter-spacing:0.144000px;}
.ls2_c00002{letter-spacing:0.167760px;}
.ls1_c00002{letter-spacing:0.192240px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:-24.030000px;}
.ws1_c00002{word-spacing:-23.837760px;}
.ws5_c00002{word-spacing:-21.137760px;}
.ws4_c00002{word-spacing:-18.144000px;}
.ws3_c00002{word-spacing:-17.928000px;}
.ws2_c00002{word-spacing:-17.856000px;}
.ws10_c00002{word-spacing:-0.587160px;}
.wse_c00002{word-spacing:-0.144000px;}
.ws7_c00002{word-spacing:-0.108000px;}
.ws9_c00002{word-spacing:-0.096120px;}
.wsa_c00002{word-spacing:-0.072000px;}
.ws6_c00002{word-spacing:0.000000px;}
.wsc_c00002{word-spacing:0.072000px;}
.wsb_c00002{word-spacing:0.144000px;}
.ws8_c00002{word-spacing:0.288360px;}
.wsf_c00002{word-spacing:0.432000px;}
.wsd_c00002{word-spacing:0.504000px;}
._0_c00002{margin-left:-1.371600px;}
._1_c00002{width:1.009260px;}
._2_c00002{width:839.992680px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:54.000000px;}
.fs1_c00002{font-size:72.000000px;}
.fs4_c00002{font-size:83.880000px;}
.fs3_c00002{font-size:96.120000px;}
.fs2_c00002{font-size:108.000000px;}
.y0_c00002{bottom:0.000000px;}
.y1f_c00002{bottom:4.140000px;}
.y19_c00002{bottom:128.340000px;}
.y23_c00002{bottom:134.280000px;}
.y22_c00002{bottom:173.250000px;}
.y21_c00002{bottom:211.946310px;}
.y20_c00002{bottom:253.350000px;}
.y18_c00002{bottom:275.670000px;}
.y1e_c00002{bottom:300.510000px;}
.y1d_c00002{bottom:321.210000px;}
.y1c_c00002{bottom:341.910000px;}
.y1b_c00002{bottom:362.610000px;}
.y1a_c00002{bottom:383.310000px;}
.y17_c00002{bottom:439.646310px;}
.y16_c00002{bottom:481.050000px;}
.y15_c00002{bottom:507.510000px;}
.y14_c00002{bottom:528.210000px;}
.y13_c00002{bottom:548.910000px;}
.y12_c00002{bottom:569.610000px;}
.y11_c00002{bottom:590.220000px;}
.y10_c00002{bottom:625.830480px;}
.yf_c00002{bottom:667.234170px;}
.ye_c00002{bottom:708.637860px;}
.yd_c00002{bottom:750.041550px;}
.yc_c00002{bottom:791.445240px;}
.yb_c00002{bottom:832.848930px;}
.ya_c00002{bottom:874.252620px;}
.y9_c00002{bottom:915.656310px;}
.y8_c00002{bottom:957.060000px;}
.y7_c00002{bottom:1000.791000px;}
.y6_c00002{bottom:1041.480000px;}
.y5_c00002{bottom:1131.120000px;}
.y4_c00002{bottom:1151.005500px;}
.y3_c00002{bottom:1166.490000px;}
.y2_c00002{bottom:1182.055500px;}
.y1_c00002{bottom:1197.540000px;}
.h3_c00002{height:52.971680px;}
.h2_c00002{height:52.998047px;}
.h4_c00002{height:70.664062px;}
.h8_c00002{height:84.535312px;}
.h6_c00002{height:96.870938px;}
.h5_c00002{height:108.843750px;}
.h7_c00002{height:144.900000px;}
.h0_c00002{height:1262.880000px;}
.h1_c00002{height:1263.000000px;}
.w2_c00002{width:390.780000px;}
.w0_c00002{width:893.070000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
.x12_c00002{left:48.690000px;}
.xe_c00002{left:119.520000px;}
.x2_c00002{left:127.620000px;}
.x4_c00002{left:132.300000px;}
.x5_c00002{left:137.241810px;}
.x10_c00002{left:153.720000px;}
.x6_c00002{left:166.486320px;}
.x11_c00002{left:253.980000px;}
.x13_c00002{left:271.260000px;}
.x9_c00002{left:310.050000px;}
.xf_c00002{left:314.910000px;}
.xc_c00002{left:345.690000px;}
.x7_c00002{left:348.297300px;}
.xb_c00002{left:349.650000px;}
.xa_c00002{left:433.710000px;}
.x1_c00002{left:446.580000px;}
.x8_c00002{left:473.130000px;}
.x3_c00002{left:516.510000px;}
.xd_c00002{left:765.540000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls4_c00002{letter-spacing:-0.170880pt;}
.ls6_c00002{letter-spacing:-0.128000pt;}
.ls7_c00002{letter-spacing:-0.064000pt;}
.ls3_c00002{letter-spacing:0.000000pt;}
.ls5_c00002{letter-spacing:0.064000pt;}
.ls0_c00002{letter-spacing:0.096000pt;}
.ls8_c00002{letter-spacing:0.128000pt;}
.ls2_c00002{letter-spacing:0.149120pt;}
.ls1_c00002{letter-spacing:0.170880pt;}
.ws0_c00002{word-spacing:-21.360000pt;}
.ws1_c00002{word-spacing:-21.189120pt;}
.ws5_c00002{word-spacing:-18.789120pt;}
.ws4_c00002{word-spacing:-16.128000pt;}
.ws3_c00002{word-spacing:-15.936000pt;}
.ws2_c00002{word-spacing:-15.872000pt;}
.ws10_c00002{word-spacing:-0.521920pt;}
.wse_c00002{word-spacing:-0.128000pt;}
.ws7_c00002{word-spacing:-0.096000pt;}
.ws9_c00002{word-spacing:-0.085440pt;}
.wsa_c00002{word-spacing:-0.064000pt;}
.ws6_c00002{word-spacing:0.000000pt;}
.wsc_c00002{word-spacing:0.064000pt;}
.wsb_c00002{word-spacing:0.128000pt;}
.ws8_c00002{word-spacing:0.256320pt;}
.wsf_c00002{word-spacing:0.384000pt;}
.wsd_c00002{word-spacing:0.448000pt;}
._0_c00002{margin-left:-1.219200pt;}
._1_c00002{width:0.897120pt;}
._2_c00002{width:746.660160pt;}
.fs0_c00002{font-size:48.000000pt;}
.fs1_c00002{font-size:64.000000pt;}
.fs4_c00002{font-size:74.560000pt;}
.fs3_c00002{font-size:85.440000pt;}
.fs2_c00002{font-size:96.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y1f_c00002{bottom:3.680000pt;}
.y19_c00002{bottom:114.080000pt;}
.y23_c00002{bottom:119.360000pt;}
.y22_c00002{bottom:154.000000pt;}
.y21_c00002{bottom:188.396720pt;}
.y20_c00002{bottom:225.200000pt;}
.y18_c00002{bottom:245.040000pt;}
.y1e_c00002{bottom:267.120000pt;}
.y1d_c00002{bottom:285.520000pt;}
.y1c_c00002{bottom:303.920000pt;}
.y1b_c00002{bottom:322.320000pt;}
.y1a_c00002{bottom:340.720000pt;}
.y17_c00002{bottom:390.796720pt;}
.y16_c00002{bottom:427.600000pt;}
.y15_c00002{bottom:451.120000pt;}
.y14_c00002{bottom:469.520000pt;}
.y13_c00002{bottom:487.920000pt;}
.y12_c00002{bottom:506.320000pt;}
.y11_c00002{bottom:524.640000pt;}
.y10_c00002{bottom:556.293760pt;}
.yf_c00002{bottom:593.097040pt;}
.ye_c00002{bottom:629.900320pt;}
.yd_c00002{bottom:666.703600pt;}
.yc_c00002{bottom:703.506880pt;}
.yb_c00002{bottom:740.310160pt;}
.ya_c00002{bottom:777.113440pt;}
.y9_c00002{bottom:813.916720pt;}
.y8_c00002{bottom:850.720000pt;}
.y7_c00002{bottom:889.592000pt;}
.y6_c00002{bottom:925.760000pt;}
.y5_c00002{bottom:1005.440000pt;}
.y4_c00002{bottom:1023.116000pt;}
.y3_c00002{bottom:1036.880000pt;}
.y2_c00002{bottom:1050.716000pt;}
.y1_c00002{bottom:1064.480000pt;}
.h3_c00002{height:47.085938pt;}
.h2_c00002{height:47.109375pt;}
.h4_c00002{height:62.812500pt;}
.h8_c00002{height:75.142500pt;}
.h6_c00002{height:86.107500pt;}
.h5_c00002{height:96.750000pt;}
.h7_c00002{height:128.800000pt;}
.h0_c00002{height:1122.560000pt;}
.h1_c00002{height:1122.666667pt;}
.w2_c00002{width:347.360000pt;}
.w0_c00002{width:793.840000pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{left:0.000000pt;}
.x12_c00002{left:43.280000pt;}
.xe_c00002{left:106.240000pt;}
.x2_c00002{left:113.440000pt;}
.x4_c00002{left:117.600000pt;}
.x5_c00002{left:121.992720pt;}
.x10_c00002{left:136.640000pt;}
.x6_c00002{left:147.987840pt;}
.x11_c00002{left:225.760000pt;}
.x13_c00002{left:241.120000pt;}
.x9_c00002{left:275.600000pt;}
.xf_c00002{left:279.920000pt;}
.xc_c00002{left:307.280000pt;}
.x7_c00002{left:309.597600pt;}
.xb_c00002{left:310.800000pt;}
.xa_c00002{left:385.520000pt;}
.x1_c00002{left:396.960000pt;}
.x8_c00002{left:420.560000pt;}
.x3_c00002{left:459.120000pt;}
.xd_c00002{left:680.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_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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00003{letter-spacing:0.000000px;}
.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:0.000000px;}
._0_c00003{width:839.992680px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:54.000000px;}
.fs1_c00003{font-size:72.000000px;}
.fs2_c00003{font-size:96.120000px;}
.y0_c00003{bottom:0.000000px;}
.y6_c00003{bottom:1104.660000px;}
.y5_c00003{bottom:1131.120000px;}
.y4_c00003{bottom:1151.005500px;}
.y3_c00003{bottom:1166.490000px;}
.y2_c00003{bottom:1182.055500px;}
.y1_c00003{bottom:1197.540000px;}
.h3_c00003{height:52.971680px;}
.h2_c00003{height:52.998047px;}
.h4_c00003{height:70.664062px;}
.h5_c00003{height:96.870938px;}
.h0_c00003{height:1262.880000px;}
.h1_c00003{height:1263.000000px;}
.w0_c00003{width:893.070000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
.x2_c00003{left:127.620000px;}
.x1_c00003{left:446.580000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
._0_c00003{width:746.660160pt;}
.fs0_c00003{font-size:48.000000pt;}
.fs1_c00003{font-size:64.000000pt;}
.fs2_c00003{font-size:85.440000pt;}
.y0_c00003{bottom:0.000000pt;}
.y6_c00003{bottom:981.920000pt;}
.y5_c00003{bottom:1005.440000pt;}
.y4_c00003{bottom:1023.116000pt;}
.y3_c00003{bottom:1036.880000pt;}
.y2_c00003{bottom:1050.716000pt;}
.y1_c00003{bottom:1064.480000pt;}
.h3_c00003{height:47.085938pt;}
.h2_c00003{height:47.109375pt;}
.h4_c00003{height:62.812500pt;}
.h5_c00003{height:86.107500pt;}
.h0_c00003{height:1122.560000pt;}
.h1_c00003{height:1122.666667pt;}
.w0_c00003{width:793.840000pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{left:0.000000pt;}
.x2_c00003{left:113.440000pt;}
.x1_c00003{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a6a848210dc019d05165e1a.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00004;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00004{font-family:ff3_c00004;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00004{vertical-align:-105.840000px;}
.v0_c00004{vertical-align:0.000000px;}
.ls4_c00004{letter-spacing:-0.167760px;}
.ls2_c00004{letter-spacing:0.000000px;}
.ls3_c00004{letter-spacing:0.083880px;}
.ls1_c00004{letter-spacing:0.167760px;}
.ls0_c00004{letter-spacing:1257.840000px;}
.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;}
}
.ws2_c00004{word-spacing:-0.251640px;}
.ws1_c00004{word-spacing:-0.167760px;}
.ws0_c00004{word-spacing:0.000000px;}
.ws3_c00004{word-spacing:0.083880px;}
._0_c00004{margin-left:-1.073664px;}
._1_c00004{width:1.031724px;}
._2_c00004{width:846.000000px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:54.000000px;}
.fs1_c00004{font-size:72.000000px;}
.fs3_c00004{font-size:83.880000px;}
.fs2_c00004{font-size:96.120000px;}
.y0_c00004{bottom:0.000000px;}
.y18_c00004{bottom:385.830000px;}
.y17_c00004{bottom:417.060000px;}
.y16_c00004{bottom:448.110000px;}
.y15_c00004{bottom:479.160000px;}
.y14_c00004{bottom:512.554050px;}
.y13_c00004{bottom:548.832150px;}
.y12_c00004{bottom:585.005400px;}
.y11_c00004{bottom:621.283500px;}
.y10_c00004{bottom:657.456750px;}
.yf_c00004{bottom:693.630000px;}
.ye_c00004{bottom:732.026790px;}
.yd_c00004{bottom:773.430480px;}
.yc_c00004{bottom:814.834170px;}
.yb_c00004{bottom:856.237860px;}
.ya_c00004{bottom:897.641550px;}
.y9_c00004{bottom:939.045240px;}
.y8_c00004{bottom:980.448930px;}
.y7_c00004{bottom:1021.852620px;}
.y6_c00004{bottom:1063.256310px;}
.y5_c00004{bottom:1131.120000px;}
.y4_c00004{bottom:1151.005500px;}
.y3_c00004{bottom:1166.490000px;}
.y2_c00004{bottom:1182.055500px;}
.y1_c00004{bottom:1197.540000px;}
.h3_c00004{height:52.971680px;}
.h2_c00004{height:52.998047px;}
.h4_c00004{height:70.664062px;}
.h7_c00004{height:72.562500px;}
.h6_c00004{height:82.323633px;}
.h5_c00004{height:96.870938px;}
.h0_c00004{height:1262.880000px;}
.h1_c00004{height:1263.000000px;}
.w0_c00004{width:893.070000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
.x2_c00004{left:127.620000px;}
.x7_c00004{left:226.161900px;}
.x6_c00004{left:231.383430px;}
.x5_c00004{left:242.455590px;}
.x4_c00004{left:378.173430px;}
.x1_c00004{left:446.580000px;}
.x3_c00004{left:472.140000px;}
.x8_c00004{left:546.289920px;}
@media print{
.v1_c00004{vertical-align:-94.080000pt;}
.v0_c00004{vertical-align:0.000000pt;}
.ls4_c00004{letter-spacing:-0.149120pt;}
.ls2_c00004{letter-spacing:0.000000pt;}
.ls3_c00004{letter-spacing:0.074560pt;}
.ls1_c00004{letter-spacing:0.149120pt;}
.ls0_c00004{letter-spacing:1118.080000pt;}
.ws2_c00004{word-spacing:-0.223680pt;}
.ws1_c00004{word-spacing:-0.149120pt;}
.ws0_c00004{word-spacing:0.000000pt;}
.ws3_c00004{word-spacing:0.074560pt;}
._0_c00004{margin-left:-0.954368pt;}
._1_c00004{width:0.917088pt;}
._2_c00004{width:752.000000pt;}
.fs0_c00004{font-size:48.000000pt;}
.fs1_c00004{font-size:64.000000pt;}
.fs3_c00004{font-size:74.560000pt;}
.fs2_c00004{font-size:85.440000pt;}
.y0_c00004{bottom:0.000000pt;}
.y18_c00004{bottom:342.960000pt;}
.y17_c00004{bottom:370.720000pt;}
.y16_c00004{bottom:398.320000pt;}
.y15_c00004{bottom:425.920000pt;}
.y14_c00004{bottom:455.603600pt;}
.y13_c00004{bottom:487.850800pt;}
.y12_c00004{bottom:520.004800pt;}
.y11_c00004{bottom:552.252000pt;}
.y10_c00004{bottom:584.406000pt;}
.yf_c00004{bottom:616.560000pt;}
.ye_c00004{bottom:650.690480pt;}
.yd_c00004{bottom:687.493760pt;}
.yc_c00004{bottom:724.297040pt;}
.yb_c00004{bottom:761.100320pt;}
.ya_c00004{bottom:797.903600pt;}
.y9_c00004{bottom:834.706880pt;}
.y8_c00004{bottom:871.510160pt;}
.y7_c00004{bottom:908.313440pt;}
.y6_c00004{bottom:945.116720pt;}
.y5_c00004{bottom:1005.440000pt;}
.y4_c00004{bottom:1023.116000pt;}
.y3_c00004{bottom:1036.880000pt;}
.y2_c00004{bottom:1050.716000pt;}
.y1_c00004{bottom:1064.480000pt;}
.h3_c00004{height:47.085938pt;}
.h2_c00004{height:47.109375pt;}
.h4_c00004{height:62.812500pt;}
.h7_c00004{height:64.500000pt;}
.h6_c00004{height:73.176562pt;}
.h5_c00004{height:86.107500pt;}
.h0_c00004{height:1122.560000pt;}
.h1_c00004{height:1122.666667pt;}
.w0_c00004{width:793.840000pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{left:0.000000pt;}
.x2_c00004{left:113.440000pt;}
.x7_c00004{left:201.032800pt;}
.x6_c00004{left:205.674160pt;}
.x5_c00004{left:215.516080pt;}
.x4_c00004{left:336.154160pt;}
.x1_c00004{left:396.960000pt;}
.x3_c00004{left:419.680000pt;}
.x8_c00004{left:485.591040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00005;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls0_c00005{letter-spacing:0.000000px;}
.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;}
}
.ws0_c00005{word-spacing:0.000000px;}
._0_c00005{width:846.000000px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:54.000000px;}
.fs1_c00005{font-size:72.000000px;}
.y0_c00005{bottom:0.000000px;}
.y6_c00005{bottom:1110.240000px;}
.y5_c00005{bottom:1131.120000px;}
.y4_c00005{bottom:1151.005500px;}
.y3_c00005{bottom:1166.490000px;}
.y2_c00005{bottom:1182.055500px;}
.y1_c00005{bottom:1197.540000px;}
.h3_c00005{height:52.971680px;}
.h2_c00005{height:52.998047px;}
.h4_c00005{height:70.664062px;}
.h5_c00005{height:72.562500px;}
.h0_c00005{height:1262.880000px;}
.h1_c00005{height:1263.000000px;}
.w0_c00005{width:893.070000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
.x2_c00005{left:127.620000px;}
.x1_c00005{left:446.580000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
._0_c00005{width:752.000000pt;}
.fs0_c00005{font-size:48.000000pt;}
.fs1_c00005{font-size:64.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y6_c00005{bottom:986.880000pt;}
.y5_c00005{bottom:1005.440000pt;}
.y4_c00005{bottom:1023.116000pt;}
.y3_c00005{bottom:1036.880000pt;}
.y2_c00005{bottom:1050.716000pt;}
.y1_c00005{bottom:1064.480000pt;}
.h3_c00005{height:47.085938pt;}
.h2_c00005{height:47.109375pt;}
.h4_c00005{height:62.812500pt;}
.h5_c00005{height:64.500000pt;}
.h0_c00005{height:1122.560000pt;}
.h1_c00005{height:1122.666667pt;}
.w0_c00005{width:793.840000pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{left:0.000000pt;}
.x2_c00005{left:113.440000pt;}
.x1_c00005{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50bba1ae40b0926aef9e0e09.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls3_c00006{letter-spacing:-0.144000px;}
.ls2_c00006{letter-spacing:0.000000px;}
.ls0_c00006{letter-spacing:0.072000px;}
.ls1_c00006{letter-spacing:0.144000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00006{word-spacing:-18.144000px;}
.ws0_c00006{word-spacing:-17.856000px;}
.ws10_c00006{word-spacing:-0.360000px;}
.ws5_c00006{word-spacing:-0.072000px;}
.ws2_c00006{word-spacing:0.000000px;}
.ws11_c00006{word-spacing:0.144000px;}
.wsc_c00006{word-spacing:1.080000px;}
.ws4_c00006{word-spacing:1.368000px;}
.ws3_c00006{word-spacing:1.584000px;}
.ws6_c00006{word-spacing:1.728000px;}
.ws7_c00006{word-spacing:1.800000px;}
.wsb_c00006{word-spacing:4.248000px;}
.wsf_c00006{word-spacing:12.240000px;}
.ws8_c00006{word-spacing:17.568000px;}
.wsd_c00006{word-spacing:22.968000px;}
.wse_c00006{word-spacing:23.040000px;}
.wsa_c00006{word-spacing:44.928000px;}
.ws9_c00006{word-spacing:45.144000px;}
._1_c00006{margin-left:-1.591200px;}
._0_c00006{width:1.080000px;}
._2_c00006{width:846.000000px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:54.000000px;}
.fs1_c00006{font-size:72.000000px;}
.y0_c00006{bottom:0.000000px;}
.y25_c00006{bottom:158.310000px;}
.y24_c00006{bottom:179.010000px;}
.y23_c00006{bottom:210.060000px;}
.y22_c00006{bottom:240.930000px;}
.y21_c00006{bottom:271.980000px;}
.y20_c00006{bottom:303.030000px;}
.y1f_c00006{bottom:334.080000px;}
.y1e_c00006{bottom:365.310000px;}
.y1d_c00006{bottom:396.180000px;}
.y1c_c00006{bottom:427.230000px;}
.y1b_c00006{bottom:458.280000px;}
.y1a_c00006{bottom:489.330000px;}
.y19_c00006{bottom:520.560000px;}
.y18_c00006{bottom:551.610000px;}
.y17_c00006{bottom:582.660000px;}
.y16_c00006{bottom:613.530000px;}
.y15_c00006{bottom:644.580000px;}
.y14_c00006{bottom:675.540000px;}
.y13_c00006{bottom:706.770000px;}
.y12_c00006{bottom:737.640000px;}
.y11_c00006{bottom:768.690000px;}
.y10_c00006{bottom:799.740000px;}
.yf_c00006{bottom:830.970000px;}
.ye_c00006{bottom:862.020000px;}
.yd_c00006{bottom:893.070000px;}
.yc_c00006{bottom:924.120000px;}
.yb_c00006{bottom:955.170000px;}
.ya_c00006{bottom:986.220000px;}
.y9_c00006{bottom:1017.270000px;}
.y8_c00006{bottom:1048.140000px;}
.y7_c00006{bottom:1079.190000px;}
.y6_c00006{bottom:1110.240000px;}
.y5_c00006{bottom:1131.120000px;}
.y4_c00006{bottom:1151.005500px;}
.y3_c00006{bottom:1166.490000px;}
.y2_c00006{bottom:1182.055500px;}
.y1_c00006{bottom:1197.540000px;}
.h3_c00006{height:52.971680px;}
.h2_c00006{height:52.998047px;}
.h4_c00006{height:70.664062px;}
.h5_c00006{height:72.562500px;}
.h0_c00006{height:1262.880000px;}
.h1_c00006{height:1263.000000px;}
.w0_c00006{width:893.070000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.x2_c00006{left:127.620000px;}
.x1_c00006{left:446.580000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls3_c00006{letter-spacing:-0.128000pt;}
.ls2_c00006{letter-spacing:0.000000pt;}
.ls0_c00006{letter-spacing:0.064000pt;}
.ls1_c00006{letter-spacing:0.128000pt;}
.ws1_c00006{word-spacing:-16.128000pt;}
.ws0_c00006{word-spacing:-15.872000pt;}
.ws10_c00006{word-spacing:-0.320000pt;}
.ws5_c00006{word-spacing:-0.064000pt;}
.ws2_c00006{word-spacing:0.000000pt;}
.ws11_c00006{word-spacing:0.128000pt;}
.wsc_c00006{word-spacing:0.960000pt;}
.ws4_c00006{word-spacing:1.216000pt;}
.ws3_c00006{word-spacing:1.408000pt;}
.ws6_c00006{word-spacing:1.536000pt;}
.ws7_c00006{word-spacing:1.600000pt;}
.wsb_c00006{word-spacing:3.776000pt;}
.wsf_c00006{word-spacing:10.880000pt;}
.ws8_c00006{word-spacing:15.616000pt;}
.wsd_c00006{word-spacing:20.416000pt;}
.wse_c00006{word-spacing:20.480000pt;}
.wsa_c00006{word-spacing:39.936000pt;}
.ws9_c00006{word-spacing:40.128000pt;}
._1_c00006{margin-left:-1.414400pt;}
._0_c00006{width:0.960000pt;}
._2_c00006{width:752.000000pt;}
.fs0_c00006{font-size:48.000000pt;}
.fs1_c00006{font-size:64.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y25_c00006{bottom:140.720000pt;}
.y24_c00006{bottom:159.120000pt;}
.y23_c00006{bottom:186.720000pt;}
.y22_c00006{bottom:214.160000pt;}
.y21_c00006{bottom:241.760000pt;}
.y20_c00006{bottom:269.360000pt;}
.y1f_c00006{bottom:296.960000pt;}
.y1e_c00006{bottom:324.720000pt;}
.y1d_c00006{bottom:352.160000pt;}
.y1c_c00006{bottom:379.760000pt;}
.y1b_c00006{bottom:407.360000pt;}
.y1a_c00006{bottom:434.960000pt;}
.y19_c00006{bottom:462.720000pt;}
.y18_c00006{bottom:490.320000pt;}
.y17_c00006{bottom:517.920000pt;}
.y16_c00006{bottom:545.360000pt;}
.y15_c00006{bottom:572.960000pt;}
.y14_c00006{bottom:600.480000pt;}
.y13_c00006{bottom:628.240000pt;}
.y12_c00006{bottom:655.680000pt;}
.y11_c00006{bottom:683.280000pt;}
.y10_c00006{bottom:710.880000pt;}
.yf_c00006{bottom:738.640000pt;}
.ye_c00006{bottom:766.240000pt;}
.yd_c00006{bottom:793.840000pt;}
.yc_c00006{bottom:821.440000pt;}
.yb_c00006{bottom:849.040000pt;}
.ya_c00006{bottom:876.640000pt;}
.y9_c00006{bottom:904.240000pt;}
.y8_c00006{bottom:931.680000pt;}
.y7_c00006{bottom:959.280000pt;}
.y6_c00006{bottom:986.880000pt;}
.y5_c00006{bottom:1005.440000pt;}
.y4_c00006{bottom:1023.116000pt;}
.y3_c00006{bottom:1036.880000pt;}
.y2_c00006{bottom:1050.716000pt;}
.y1_c00006{bottom:1064.480000pt;}
.h3_c00006{height:47.085938pt;}
.h2_c00006{height:47.109375pt;}
.h4_c00006{height:62.812500pt;}
.h5_c00006{height:64.500000pt;}
.h0_c00006{height:1122.560000pt;}
.h1_c00006{height:1122.666667pt;}
.w0_c00006{width:793.840000pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.x2_c00006{left:113.440000pt;}
.x1_c00006{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00007;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.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:0.000000px;}
._0_c00007{width:846.000000px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs0_c00007{font-size:54.000000px;}
.fs1_c00007{font-size:72.000000px;}
.y0_c00007{bottom:0.000000px;}
.y6_c00007{bottom:1110.420000px;}
.y5_c00007{bottom:1131.120000px;}
.y4_c00007{bottom:1151.005500px;}
.y3_c00007{bottom:1166.490000px;}
.y2_c00007{bottom:1182.055500px;}
.y1_c00007{bottom:1197.540000px;}
.h3_c00007{height:52.971680px;}
.h2_c00007{height:52.998047px;}
.h4_c00007{height:70.664062px;}
.h0_c00007{height:1262.880000px;}
.h1_c00007{height:1263.000000px;}
.w0_c00007{width:893.070000px;}
.w1_c00007{width:893.250000px;}
.x0_c00007{left:0.000000px;}
.x2_c00007{left:127.620000px;}
.x1_c00007{left:446.580000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws0_c00007{word-spacing:0.000000pt;}
._0_c00007{width:752.000000pt;}
.fs0_c00007{font-size:48.000000pt;}
.fs1_c00007{font-size:64.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y6_c00007{bottom:987.040000pt;}
.y5_c00007{bottom:1005.440000pt;}
.y4_c00007{bottom:1023.116000pt;}
.y3_c00007{bottom:1036.880000pt;}
.y2_c00007{bottom:1050.716000pt;}
.y1_c00007{bottom:1064.480000pt;}
.h3_c00007{height:47.085938pt;}
.h2_c00007{height:47.109375pt;}
.h4_c00007{height:62.812500pt;}
.h0_c00007{height:1122.560000pt;}
.h1_c00007{height:1122.666667pt;}
.w0_c00007{width:793.840000pt;}
.w1_c00007{width:794.000000pt;}
.x0_c00007{left:0.000000pt;}
.x2_c00007{left:113.440000pt;}
.x1_c00007{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78dfef88fbd9a422f10e1098.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00008;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00008{vertical-align:-105.840000px;}
.v0_c00008{vertical-align:0.000000px;}
.ls3_c00008{letter-spacing:-0.144000px;}
.ls1_c00008{letter-spacing:0.000000px;}
.ls2_c00008{letter-spacing:0.072000px;}
.ls0_c00008{letter-spacing:1257.840000px;}
.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;}
}
.ws1_c00008{word-spacing:-0.072000px;}
.ws0_c00008{word-spacing:0.000000px;}
.ws2_c00008{word-spacing:0.144000px;}
._0_c00008{margin-left:-1.087200px;}
._1_c00008{width:1.152000px;}
._2_c00008{width:842.994000px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs0_c00008{font-size:54.000000px;}
.fs1_c00008{font-size:72.000000px;}
.fs3_c00008{font-size:83.880000px;}
.fs2_c00008{font-size:96.120000px;}
.y0_c00008{bottom:0.000000px;}
.y1b_c00008{bottom:227.968650px;}
.y1a_c00008{bottom:264.141900px;}
.y19_c00008{bottom:300.420000px;}
.y18_c00008{bottom:334.260000px;}
.y17_c00008{bottom:365.310000px;}
.y16_c00008{bottom:400.893390px;}
.y15_c00008{bottom:442.297080px;}
.y14_c00008{bottom:483.700770px;}
.y13_c00008{bottom:525.104460px;}
.y12_c00008{bottom:566.508150px;}
.y11_c00008{bottom:607.911840px;}
.y10_c00008{bottom:649.315530px;}
.yf_c00008{bottom:690.623100px;}
.ye_c00008{bottom:732.026790px;}
.yd_c00008{bottom:773.430480px;}
.yc_c00008{bottom:814.834170px;}
.yb_c00008{bottom:856.237860px;}
.ya_c00008{bottom:897.641550px;}
.y9_c00008{bottom:939.045240px;}
.y8_c00008{bottom:980.448930px;}
.y7_c00008{bottom:1021.852620px;}
.y6_c00008{bottom:1063.256310px;}
.y5_c00008{bottom:1131.120000px;}
.y4_c00008{bottom:1151.005500px;}
.y3_c00008{bottom:1166.490000px;}
.y2_c00008{bottom:1182.055500px;}
.y1_c00008{bottom:1197.540000px;}
.h3_c00008{height:52.971680px;}
.h2_c00008{height:52.998047px;}
.h4_c00008{height:70.664062px;}
.h6_c00008{height:82.323633px;}
.h5_c00008{height:96.870938px;}
.h0_c00008{height:1262.880000px;}
.h1_c00008{height:1263.000000px;}
.w0_c00008{width:893.070000px;}
.w1_c00008{width:893.250000px;}
.x0_c00008{left:0.000000px;}
.x2_c00008{left:127.620000px;}
.x1_c00008{left:446.580000px;}
@media print{
.v1_c00008{vertical-align:-94.080000pt;}
.v0_c00008{vertical-align:0.000000pt;}
.ls3_c00008{letter-spacing:-0.128000pt;}
.ls1_c00008{letter-spacing:0.000000pt;}
.ls2_c00008{letter-spacing:0.064000pt;}
.ls0_c00008{letter-spacing:1118.080000pt;}
.ws1_c00008{word-spacing:-0.064000pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.ws2_c00008{word-spacing:0.128000pt;}
._0_c00008{margin-left:-0.966400pt;}
._1_c00008{width:1.024000pt;}
._2_c00008{width:749.328000pt;}
.fs0_c00008{font-size:48.000000pt;}
.fs1_c00008{font-size:64.000000pt;}
.fs3_c00008{font-size:74.560000pt;}
.fs2_c00008{font-size:85.440000pt;}
.y0_c00008{bottom:0.000000pt;}
.y1b_c00008{bottom:202.638800pt;}
.y1a_c00008{bottom:234.792800pt;}
.y19_c00008{bottom:267.040000pt;}
.y18_c00008{bottom:297.120000pt;}
.y17_c00008{bottom:324.720000pt;}
.y16_c00008{bottom:356.349680pt;}
.y15_c00008{bottom:393.152960pt;}
.y14_c00008{bottom:429.956240pt;}
.y13_c00008{bottom:466.759520pt;}
.y12_c00008{bottom:503.562800pt;}
.y11_c00008{bottom:540.366080pt;}
.y10_c00008{bottom:577.169360pt;}
.yf_c00008{bottom:613.887200pt;}
.ye_c00008{bottom:650.690480pt;}
.yd_c00008{bottom:687.493760pt;}
.yc_c00008{bottom:724.297040pt;}
.yb_c00008{bottom:761.100320pt;}
.ya_c00008{bottom:797.903600pt;}
.y9_c00008{bottom:834.706880pt;}
.y8_c00008{bottom:871.510160pt;}
.y7_c00008{bottom:908.313440pt;}
.y6_c00008{bottom:945.116720pt;}
.y5_c00008{bottom:1005.440000pt;}
.y4_c00008{bottom:1023.116000pt;}
.y3_c00008{bottom:1036.880000pt;}
.y2_c00008{bottom:1050.716000pt;}
.y1_c00008{bottom:1064.480000pt;}
.h3_c00008{height:47.085938pt;}
.h2_c00008{height:47.109375pt;}
.h4_c00008{height:62.812500pt;}
.h6_c00008{height:73.176562pt;}
.h5_c00008{height:86.107500pt;}
.h0_c00008{height:1122.560000pt;}
.h1_c00008{height:1122.666667pt;}
.w0_c00008{width:793.840000pt;}
.w1_c00008{width:794.000000pt;}
.x0_c00008{left:0.000000pt;}
.x2_c00008{left:113.440000pt;}
.x1_c00008{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00009;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00009{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls0_c00009{letter-spacing:0.000000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
._0_c00009{width:842.994000px;}
.fc0_c00009{color:rgb(0,0,0);}
.fs0_c00009{font-size:54.000000px;}
.fs1_c00009{font-size:72.000000px;}
.fs2_c00009{font-size:83.880000px;}
.y0_c00009{bottom:0.000000px;}
.y6_c00009{bottom:1107.630000px;}
.y5_c00009{bottom:1131.120000px;}
.y4_c00009{bottom:1151.005500px;}
.y3_c00009{bottom:1166.490000px;}
.y2_c00009{bottom:1182.055500px;}
.y1_c00009{bottom:1197.540000px;}
.h3_c00009{height:52.971680px;}
.h2_c00009{height:52.998047px;}
.h4_c00009{height:70.664062px;}
.h5_c00009{height:82.323633px;}
.h0_c00009{height:1262.880000px;}
.h1_c00009{height:1263.000000px;}
.w0_c00009{width:893.070000px;}
.w1_c00009{width:893.250000px;}
.x0_c00009{left:0.000000px;}
.x2_c00009{left:127.620000px;}
.x1_c00009{left:446.580000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
._0_c00009{width:749.328000pt;}
.fs0_c00009{font-size:48.000000pt;}
.fs1_c00009{font-size:64.000000pt;}
.fs2_c00009{font-size:74.560000pt;}
.y0_c00009{bottom:0.000000pt;}
.y6_c00009{bottom:984.560000pt;}
.y5_c00009{bottom:1005.440000pt;}
.y4_c00009{bottom:1023.116000pt;}
.y3_c00009{bottom:1036.880000pt;}
.y2_c00009{bottom:1050.716000pt;}
.y1_c00009{bottom:1064.480000pt;}
.h3_c00009{height:47.085938pt;}
.h2_c00009{height:47.109375pt;}
.h4_c00009{height:62.812500pt;}
.h5_c00009{height:73.176562pt;}
.h0_c00009{height:1122.560000pt;}
.h1_c00009{height:1122.666667pt;}
.w0_c00009{width:793.840000pt;}
.w1_c00009{width:794.000000pt;}
.x0_c00009{left:0.000000pt;}
.x2_c00009{left:113.440000pt;}
.x1_c00009{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_9cad78dee13704952da8f8f9.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00010{vertical-align:-105.840000px;}
.v0_c00010{vertical-align:0.000000px;}
.ls1_c00010{letter-spacing:0.000000px;}
.ls0_c00010{letter-spacing:1257.840000px;}
.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;}
}
.ws0_c00010{word-spacing:0.000000px;}
._0_c00010{width:842.994000px;}
.fc0_c00010{color:rgb(0,0,0);}
.fs0_c00010{font-size:54.000000px;}
.fs1_c00010{font-size:72.000000px;}
.fs4_c00010{font-size:83.880000px;}
.fs2_c00010{font-size:96.120000px;}
.fs3_c00010{font-size:144.000000px;}
.y0_c00010{bottom:0.000000px;}
.y14_c00010{bottom:486.447300px;}
.y13_c00010{bottom:522.620550px;}
.y12_c00010{bottom:558.898650px;}
.y11_c00010{bottom:595.071900px;}
.y10_c00010{bottom:631.350000px;}
.yf_c00010{bottom:679.500000px;}
.ye_c00010{bottom:732.026790px;}
.yd_c00010{bottom:773.430480px;}
.yc_c00010{bottom:814.834170px;}
.yb_c00010{bottom:856.237860px;}
.ya_c00010{bottom:897.641550px;}
.y9_c00010{bottom:939.045240px;}
.y8_c00010{bottom:980.448930px;}
.y7_c00010{bottom:1021.852620px;}
.y6_c00010{bottom:1063.256310px;}
.y5_c00010{bottom:1131.120000px;}
.y4_c00010{bottom:1151.005500px;}
.y3_c00010{bottom:1166.490000px;}
.y2_c00010{bottom:1182.055500px;}
.y1_c00010{bottom:1197.540000px;}
.h3_c00010{height:52.971680px;}
.h2_c00010{height:52.998047px;}
.h4_c00010{height:70.664062px;}
.h7_c00010{height:84.535312px;}
.h5_c00010{height:96.870938px;}
.h6_c00010{height:145.125000px;}
.h0_c00010{height:1262.880000px;}
.h1_c00010{height:1263.000000px;}
.w0_c00010{width:893.070000px;}
.w1_c00010{width:893.250000px;}
.x0_c00010{left:0.000000px;}
.x2_c00010{left:127.620000px;}
.x3_c00010{left:312.120000px;}
.x1_c00010{left:446.580000px;}
@media print{
.v1_c00010{vertical-align:-94.080000pt;}
.v0_c00010{vertical-align:0.000000pt;}
.ls1_c00010{letter-spacing:0.000000pt;}
.ls0_c00010{letter-spacing:1118.080000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
._0_c00010{width:749.328000pt;}
.fs0_c00010{font-size:48.000000pt;}
.fs1_c00010{font-size:64.000000pt;}
.fs4_c00010{font-size:74.560000pt;}
.fs2_c00010{font-size:85.440000pt;}
.fs3_c00010{font-size:128.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y14_c00010{bottom:432.397600pt;}
.y13_c00010{bottom:464.551600pt;}
.y12_c00010{bottom:496.798800pt;}
.y11_c00010{bottom:528.952800pt;}
.y10_c00010{bottom:561.200000pt;}
.yf_c00010{bottom:604.000000pt;}
.ye_c00010{bottom:650.690480pt;}
.yd_c00010{bottom:687.493760pt;}
.yc_c00010{bottom:724.297040pt;}
.yb_c00010{bottom:761.100320pt;}
.ya_c00010{bottom:797.903600pt;}
.y9_c00010{bottom:834.706880pt;}
.y8_c00010{bottom:871.510160pt;}
.y7_c00010{bottom:908.313440pt;}
.y6_c00010{bottom:945.116720pt;}
.y5_c00010{bottom:1005.440000pt;}
.y4_c00010{bottom:1023.116000pt;}
.y3_c00010{bottom:1036.880000pt;}
.y2_c00010{bottom:1050.716000pt;}
.y1_c00010{bottom:1064.480000pt;}
.h3_c00010{height:47.085938pt;}
.h2_c00010{height:47.109375pt;}
.h4_c00010{height:62.812500pt;}
.h7_c00010{height:75.142500pt;}
.h5_c00010{height:86.107500pt;}
.h6_c00010{height:129.000000pt;}
.h0_c00010{height:1122.560000pt;}
.h1_c00010{height:1122.666667pt;}
.w0_c00010{width:793.840000pt;}
.w1_c00010{width:794.000000pt;}
.x0_c00010{left:0.000000pt;}
.x2_c00010{left:113.440000pt;}
.x3_c00010{left:277.440000pt;}
.x1_c00010{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00011;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00011;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:0.000000px;}
._0_c00011{width:842.994000px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs0_c00011{font-size:54.000000px;}
.fs1_c00011{font-size:72.000000px;}
.fs2_c00011{font-size:83.880000px;}
.y0_c00011{bottom:0.000000px;}
.y6_c00011{bottom:1107.360000px;}
.y5_c00011{bottom:1131.120000px;}
.y4_c00011{bottom:1151.005500px;}
.y3_c00011{bottom:1166.490000px;}
.y2_c00011{bottom:1182.055500px;}
.y1_c00011{bottom:1197.540000px;}
.h3_c00011{height:52.971680px;}
.h2_c00011{height:52.998047px;}
.h4_c00011{height:70.664062px;}
.h5_c00011{height:84.535312px;}
.h0_c00011{height:1262.880000px;}
.h1_c00011{height:1263.000000px;}
.w0_c00011{width:893.070000px;}
.w1_c00011{width:893.250000px;}
.x0_c00011{left:0.000000px;}
.x2_c00011{left:127.620000px;}
.x1_c00011{left:446.580000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
._0_c00011{width:749.328000pt;}
.fs0_c00011{font-size:48.000000pt;}
.fs1_c00011{font-size:64.000000pt;}
.fs2_c00011{font-size:74.560000pt;}
.y0_c00011{bottom:0.000000pt;}
.y6_c00011{bottom:984.320000pt;}
.y5_c00011{bottom:1005.440000pt;}
.y4_c00011{bottom:1023.116000pt;}
.y3_c00011{bottom:1036.880000pt;}
.y2_c00011{bottom:1050.716000pt;}
.y1_c00011{bottom:1064.480000pt;}
.h3_c00011{height:47.085938pt;}
.h2_c00011{height:47.109375pt;}
.h4_c00011{height:62.812500pt;}
.h5_c00011{height:75.142500pt;}
.h0_c00011{height:1122.560000pt;}
.h1_c00011{height:1122.666667pt;}
.w0_c00011{width:793.840000pt;}
.w1_c00011{width:794.000000pt;}
.x0_c00011{left:0.000000pt;}
.x2_c00011{left:113.440000pt;}
.x1_c00011{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d3d3b2fba559b83c985c6bf.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_73d4d12488c3ea22fd8cad9b.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00012{letter-spacing:-0.360000px;}
.ls2_c00012{letter-spacing:0.000000px;}
.ls1_c00012{letter-spacing:0.072000px;}
.ls3_c00012{letter-spacing:0.504000px;}
.ls0_c00012{letter-spacing:4.680000px;}
.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;}
}
.ws6_c00012{word-spacing:-0.504000px;}
.ws13_c00012{word-spacing:-0.360000px;}
.wsb_c00012{word-spacing:-0.072000px;}
.ws0_c00012{word-spacing:0.000000px;}
.ws11_c00012{word-spacing:1.080000px;}
.wse_c00012{word-spacing:2.088000px;}
.ws2_c00012{word-spacing:2.808000px;}
.ws9_c00012{word-spacing:4.608000px;}
.ws8_c00012{word-spacing:4.680000px;}
.wsd_c00012{word-spacing:5.328000px;}
.wsc_c00012{word-spacing:5.400000px;}
.ws1_c00012{word-spacing:7.128000px;}
.ws12_c00012{word-spacing:16.560000px;}
.wsf_c00012{word-spacing:17.208000px;}
.ws10_c00012{word-spacing:17.640000px;}
.wsa_c00012{word-spacing:18.288000px;}
.ws7_c00012{word-spacing:22.608000px;}
.ws4_c00012{word-spacing:26.208000px;}
.ws3_c00012{word-spacing:26.640000px;}
.ws5_c00012{word-spacing:28.728000px;}
._0_c00012{margin-left:-1.231200px;}
._1_c00012{width:1.080000px;}
._2_c00012{width:5.637600px;}
._3_c00012{width:839.992680px;}
.fc0_c00012{color:rgb(0,0,0);}
.fs0_c00012{font-size:54.000000px;}
.fs1_c00012{font-size:72.000000px;}
.fs2_c00012{font-size:96.120000px;}
.y0_c00012{bottom:0.000000px;}
.y23_c00012{bottom:204.300000px;}
.y22_c00012{bottom:240.930000px;}
.y21_c00012{bottom:271.980000px;}
.y20_c00012{bottom:303.210000px;}
.y1f_c00012{bottom:334.260000px;}
.y1e_c00012{bottom:365.310000px;}
.y1d_c00012{bottom:396.360000px;}
.y1c_c00012{bottom:427.410000px;}
.y1b_c00012{bottom:458.460000px;}
.y1a_c00012{bottom:489.510000px;}
.y19_c00012{bottom:520.560000px;}
.y18_c00012{bottom:551.610000px;}
.y17_c00012{bottom:582.660000px;}
.y16_c00012{bottom:613.710000px;}
.y15_c00012{bottom:644.760000px;}
.y14_c00012{bottom:675.720000px;}
.y13_c00012{bottom:706.770000px;}
.y12_c00012{bottom:737.820000px;}
.y11_c00012{bottom:768.870000px;}
.y10_c00012{bottom:799.920000px;}
.yf_c00012{bottom:830.970000px;}
.ye_c00012{bottom:862.020000px;}
.yd_c00012{bottom:893.070000px;}
.yc_c00012{bottom:924.120000px;}
.yb_c00012{bottom:955.170000px;}
.ya_c00012{bottom:986.220000px;}
.y9_c00012{bottom:1017.270000px;}
.y8_c00012{bottom:1048.320000px;}
.y7_c00012{bottom:1079.370000px;}
.y6_c00012{bottom:1110.420000px;}
.y5_c00012{bottom:1131.120000px;}
.y4_c00012{bottom:1151.005500px;}
.y3_c00012{bottom:1166.490000px;}
.y2_c00012{bottom:1182.055500px;}
.y1_c00012{bottom:1197.540000px;}
.h3_c00012{height:52.971680px;}
.h2_c00012{height:52.998047px;}
.h4_c00012{height:70.664062px;}
.h5_c00012{height:72.562500px;}
.h6_c00012{height:96.870938px;}
.h0_c00012{height:1262.880000px;}
.h1_c00012{height:1263.000000px;}
.w0_c00012{width:893.070000px;}
.w1_c00012{width:893.250000px;}
.x0_c00012{left:0.000000px;}
.x2_c00012{left:127.620000px;}
.x3_c00012{left:139.140000px;}
.x4_c00012{left:239.580000px;}
.x1_c00012{left:446.580000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls4_c00012{letter-spacing:-0.320000pt;}
.ls2_c00012{letter-spacing:0.000000pt;}
.ls1_c00012{letter-spacing:0.064000pt;}
.ls3_c00012{letter-spacing:0.448000pt;}
.ls0_c00012{letter-spacing:4.160000pt;}
.ws6_c00012{word-spacing:-0.448000pt;}
.ws13_c00012{word-spacing:-0.320000pt;}
.wsb_c00012{word-spacing:-0.064000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
.ws11_c00012{word-spacing:0.960000pt;}
.wse_c00012{word-spacing:1.856000pt;}
.ws2_c00012{word-spacing:2.496000pt;}
.ws9_c00012{word-spacing:4.096000pt;}
.ws8_c00012{word-spacing:4.160000pt;}
.wsd_c00012{word-spacing:4.736000pt;}
.wsc_c00012{word-spacing:4.800000pt;}
.ws1_c00012{word-spacing:6.336000pt;}
.ws12_c00012{word-spacing:14.720000pt;}
.wsf_c00012{word-spacing:15.296000pt;}
.ws10_c00012{word-spacing:15.680000pt;}
.wsa_c00012{word-spacing:16.256000pt;}
.ws7_c00012{word-spacing:20.096000pt;}
.ws4_c00012{word-spacing:23.296000pt;}
.ws3_c00012{word-spacing:23.680000pt;}
.ws5_c00012{word-spacing:25.536000pt;}
._0_c00012{margin-left:-1.094400pt;}
._1_c00012{width:0.960000pt;}
._2_c00012{width:5.011200pt;}
._3_c00012{width:746.660160pt;}
.fs0_c00012{font-size:48.000000pt;}
.fs1_c00012{font-size:64.000000pt;}
.fs2_c00012{font-size:85.440000pt;}
.y0_c00012{bottom:0.000000pt;}
.y23_c00012{bottom:181.600000pt;}
.y22_c00012{bottom:214.160000pt;}
.y21_c00012{bottom:241.760000pt;}
.y20_c00012{bottom:269.520000pt;}
.y1f_c00012{bottom:297.120000pt;}
.y1e_c00012{bottom:324.720000pt;}
.y1d_c00012{bottom:352.320000pt;}
.y1c_c00012{bottom:379.920000pt;}
.y1b_c00012{bottom:407.520000pt;}
.y1a_c00012{bottom:435.120000pt;}
.y19_c00012{bottom:462.720000pt;}
.y18_c00012{bottom:490.320000pt;}
.y17_c00012{bottom:517.920000pt;}
.y16_c00012{bottom:545.520000pt;}
.y15_c00012{bottom:573.120000pt;}
.y14_c00012{bottom:600.640000pt;}
.y13_c00012{bottom:628.240000pt;}
.y12_c00012{bottom:655.840000pt;}
.y11_c00012{bottom:683.440000pt;}
.y10_c00012{bottom:711.040000pt;}
.yf_c00012{bottom:738.640000pt;}
.ye_c00012{bottom:766.240000pt;}
.yd_c00012{bottom:793.840000pt;}
.yc_c00012{bottom:821.440000pt;}
.yb_c00012{bottom:849.040000pt;}
.ya_c00012{bottom:876.640000pt;}
.y9_c00012{bottom:904.240000pt;}
.y8_c00012{bottom:931.840000pt;}
.y7_c00012{bottom:959.440000pt;}
.y6_c00012{bottom:987.040000pt;}
.y5_c00012{bottom:1005.440000pt;}
.y4_c00012{bottom:1023.116000pt;}
.y3_c00012{bottom:1036.880000pt;}
.y2_c00012{bottom:1050.716000pt;}
.y1_c00012{bottom:1064.480000pt;}
.h3_c00012{height:47.085938pt;}
.h2_c00012{height:47.109375pt;}
.h4_c00012{height:62.812500pt;}
.h5_c00012{height:64.500000pt;}
.h6_c00012{height:86.107500pt;}
.h0_c00012{height:1122.560000pt;}
.h1_c00012{height:1122.666667pt;}
.w0_c00012{width:793.840000pt;}
.w1_c00012{width:794.000000pt;}
.x0_c00012{left:0.000000pt;}
.x2_c00012{left:113.440000pt;}
.x3_c00012{left:123.680000pt;}
.x4_c00012{left:212.960000pt;}
.x1_c00012{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
._0_c00013{width:839.992680px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs0_c00013{font-size:54.000000px;}
.fs1_c00013{font-size:72.000000px;}
.fs2_c00013{font-size:96.120000px;}
.y0_c00013{bottom:0.000000px;}
.y6_c00013{bottom:1104.660000px;}
.y5_c00013{bottom:1131.120000px;}
.y4_c00013{bottom:1151.005500px;}
.y3_c00013{bottom:1166.490000px;}
.y2_c00013{bottom:1182.055500px;}
.y1_c00013{bottom:1197.540000px;}
.h3_c00013{height:52.971680px;}
.h2_c00013{height:52.998047px;}
.h4_c00013{height:70.664062px;}
.h5_c00013{height:96.870938px;}
.h0_c00013{height:1262.880000px;}
.h1_c00013{height:1263.000000px;}
.w0_c00013{width:893.070000px;}
.w1_c00013{width:893.250000px;}
.x0_c00013{left:0.000000px;}
.x2_c00013{left:127.620000px;}
.x1_c00013{left:446.580000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
._0_c00013{width:746.660160pt;}
.fs0_c00013{font-size:48.000000pt;}
.fs1_c00013{font-size:64.000000pt;}
.fs2_c00013{font-size:85.440000pt;}
.y0_c00013{bottom:0.000000pt;}
.y6_c00013{bottom:981.920000pt;}
.y5_c00013{bottom:1005.440000pt;}
.y4_c00013{bottom:1023.116000pt;}
.y3_c00013{bottom:1036.880000pt;}
.y2_c00013{bottom:1050.716000pt;}
.y1_c00013{bottom:1064.480000pt;}
.h3_c00013{height:47.085938pt;}
.h2_c00013{height:47.109375pt;}
.h4_c00013{height:62.812500pt;}
.h5_c00013{height:86.107500pt;}
.h0_c00013{height:1122.560000pt;}
.h1_c00013{height:1122.666667pt;}
.w0_c00013{width:793.840000pt;}
.w1_c00013{width:794.000000pt;}
.x0_c00013{left:0.000000pt;}
.x2_c00013{left:113.440000pt;}
.x1_c00013{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_56a8a95e3f4f5d18acde86e8.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00014{vertical-align:-105.840000px;}
.v0_c00014{vertical-align:0.000000px;}
.ls3_c00014{letter-spacing:-0.144000px;}
.ls2_c00014{letter-spacing:0.000000px;}
.ls1_c00014{letter-spacing:828.000000px;}
.ls0_c00014{letter-spacing:1257.840000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:-35.856000px;}
.ws1_c00014{word-spacing:0.000000px;}
._0_c00014{width:1.008000px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:54.000000px;}
.fs1_c00014{font-size:72.000000px;}
.fs4_c00014{font-size:83.880000px;}
.fs2_c00014{font-size:96.120000px;}
.fs3_c00014{font-size:144.000000px;}
.y0_c00014{bottom:0.000000px;}
.y10_c00014{bottom:631.368000px;}
.yf_c00014{bottom:679.500000px;}
.ye_c00014{bottom:732.026790px;}
.yd_c00014{bottom:773.430480px;}
.yc_c00014{bottom:814.834170px;}
.yb_c00014{bottom:856.237860px;}
.ya_c00014{bottom:897.641550px;}
.y9_c00014{bottom:939.045240px;}
.y8_c00014{bottom:980.448930px;}
.y7_c00014{bottom:1021.852620px;}
.y6_c00014{bottom:1063.256310px;}
.y5_c00014{bottom:1131.120000px;}
.y4_c00014{bottom:1151.005500px;}
.y3_c00014{bottom:1166.490000px;}
.y2_c00014{bottom:1182.055500px;}
.y1_c00014{bottom:1197.540000px;}
.h3_c00014{height:52.971680px;}
.h2_c00014{height:52.998047px;}
.h4_c00014{height:70.664062px;}
.h5_c00014{height:96.870938px;}
.h6_c00014{height:145.125000px;}
.h0_c00014{height:1262.880000px;}
.h1_c00014{height:1263.000000px;}
.w0_c00014{width:893.070000px;}
.w1_c00014{width:893.250000px;}
.x0_c00014{left:0.000000px;}
.x2_c00014{left:127.620000px;}
.x3_c00014{left:394.020000px;}
.x1_c00014{left:446.580000px;}
@media print{
.v1_c00014{vertical-align:-94.080000pt;}
.v0_c00014{vertical-align:0.000000pt;}
.ls3_c00014{letter-spacing:-0.128000pt;}
.ls2_c00014{letter-spacing:0.000000pt;}
.ls1_c00014{letter-spacing:736.000000pt;}
.ls0_c00014{letter-spacing:1118.080000pt;}
.ws0_c00014{word-spacing:-31.872000pt;}
.ws1_c00014{word-spacing:0.000000pt;}
._0_c00014{width:0.896000pt;}
.fs0_c00014{font-size:48.000000pt;}
.fs1_c00014{font-size:64.000000pt;}
.fs4_c00014{font-size:74.560000pt;}
.fs2_c00014{font-size:85.440000pt;}
.fs3_c00014{font-size:128.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y10_c00014{bottom:561.216000pt;}
.yf_c00014{bottom:604.000000pt;}
.ye_c00014{bottom:650.690480pt;}
.yd_c00014{bottom:687.493760pt;}
.yc_c00014{bottom:724.297040pt;}
.yb_c00014{bottom:761.100320pt;}
.ya_c00014{bottom:797.903600pt;}
.y9_c00014{bottom:834.706880pt;}
.y8_c00014{bottom:871.510160pt;}
.y7_c00014{bottom:908.313440pt;}
.y6_c00014{bottom:945.116720pt;}
.y5_c00014{bottom:1005.440000pt;}
.y4_c00014{bottom:1023.116000pt;}
.y3_c00014{bottom:1036.880000pt;}
.y2_c00014{bottom:1050.716000pt;}
.y1_c00014{bottom:1064.480000pt;}
.h3_c00014{height:47.085938pt;}
.h2_c00014{height:47.109375pt;}
.h4_c00014{height:62.812500pt;}
.h5_c00014{height:86.107500pt;}
.h6_c00014{height:129.000000pt;}
.h0_c00014{height:1122.560000pt;}
.h1_c00014{height:1122.666667pt;}
.w0_c00014{width:793.840000pt;}
.w1_c00014{width:794.000000pt;}
.x0_c00014{left:0.000000pt;}
.x2_c00014{left:113.440000pt;}
.x3_c00014{left:350.240000pt;}
.x1_c00014{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15bf3b9a347811f1842ec1ad.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_06eb3e7aeb9e450911a0df6e.woff2')format("woff");}.ff3_c00015{font-family:ff3_c00015;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00015{letter-spacing:-0.360000px;}
.ls7_c00015{letter-spacing:-0.288000px;}
.ls5_c00015{letter-spacing:-0.072000px;}
.ls3_c00015{letter-spacing:0.000000px;}
.ls1_c00015{letter-spacing:0.072000px;}
.ls6_c00015{letter-spacing:0.144000px;}
.ls0_c00015{letter-spacing:0.167760px;}
.ls4_c00015{letter-spacing:0.192240px;}
.ls2_c00015{letter-spacing:24.120000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:-24.030000px;}
.ws1_c00015{word-spacing:-21.137760px;}
.ws2_c00015{word-spacing:-20.970000px;}
.ws7_c00015{word-spacing:-18.144000px;}
.ws4_c00015{word-spacing:-18.072000px;}
.ws3_c00015{word-spacing:-18.000000px;}
.ws5_c00015{word-spacing:-17.928000px;}
.ws6_c00015{word-spacing:-17.712000px;}
.ws9_c00015{word-spacing:-0.480600px;}
.wse_c00015{word-spacing:-0.432000px;}
.wsf_c00015{word-spacing:-0.360000px;}
.wsa_c00015{word-spacing:-0.251640px;}
.wsd_c00015{word-spacing:-0.144000px;}
.wsb_c00015{word-spacing:-0.072000px;}
.ws8_c00015{word-spacing:0.000000px;}
.wsc_c00015{word-spacing:0.072000px;}
.ws16_c00015{word-spacing:0.288000px;}
.ws10_c00015{word-spacing:0.360000px;}
.ws11_c00015{word-spacing:18.648000px;}
.ws15_c00015{word-spacing:24.048000px;}
.ws14_c00015{word-spacing:27.936000px;}
.ws13_c00015{word-spacing:28.008000px;}
.ws12_c00015{word-spacing:28.080000px;}
._0_c00015{margin-left:-1.124604px;}
._1_c00015{width:1.008000px;}
._4_c00015{width:24.120000px;}
._2_c00015{width:27.576000px;}
._3_c00015{width:28.628604px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:54.000000px;}
.fs1_c00015{font-size:72.000000px;}
.fs3_c00015{font-size:83.880000px;}
.fs2_c00015{font-size:96.120000px;}
.y0_c00015{bottom:0.000000px;}
.y21_c00015{bottom:3.870000px;}
.yf_c00015{bottom:3.960000px;}
.y22_c00015{bottom:4.050000px;}
.y9_c00015{bottom:4.140000px;}
.yb_c00015{bottom:4.500000px;}
.y7_c00015{bottom:5.310000px;}
.yc_c00015{bottom:5.850000px;}
.y33_c00015{bottom:24.660000px;}
.y1a_c00015{bottom:24.840000px;}
.y3c_c00015{bottom:129.510000px;}
.y3b_c00015{bottom:146.790000px;}
.y3a_c00015{bottom:168.300000px;}
.y39_c00015{bottom:189.720000px;}
.y37_c00015{bottom:211.140000px;}
.y38_c00015{bottom:225.630000px;}
.y36_c00015{bottom:253.350000px;}
.y35_c00015{bottom:274.770000px;}
.y32_c00015{bottom:296.190000px;}
.y34_c00015{bottom:310.680000px;}
.y31_c00015{bottom:338.310000px;}
.y30_c00015{bottom:359.820000px;}
.y2f_c00015{bottom:384.660000px;}
.y2e_c00015{bottom:406.170000px;}
.y2d_c00015{bottom:427.590000px;}
.y2c_c00015{bottom:449.010000px;}
.y2b_c00015{bottom:470.520000px;}
.y2a_c00015{bottom:491.940000px;}
.y29_c00015{bottom:513.360000px;}
.y28_c00015{bottom:534.870000px;}
.y27_c00015{bottom:556.290000px;}
.y26_c00015{bottom:577.710000px;}
.y25_c00015{bottom:599.220000px;}
.y24_c00015{bottom:620.640000px;}
.y23_c00015{bottom:642.060000px;}
.y20_c00015{bottom:663.570000px;}
.y1f_c00015{bottom:684.990000px;}
.y1e_c00015{bottom:706.410000px;}
.y1d_c00015{bottom:727.830000px;}
.y1c_c00015{bottom:749.340000px;}
.y19_c00015{bottom:770.760000px;}
.y1b_c00015{bottom:785.250000px;}
.y18_c00015{bottom:812.880000px;}
.y17_c00015{bottom:834.390000px;}
.y16_c00015{bottom:855.810000px;}
.y15_c00015{bottom:877.230000px;}
.y14_c00015{bottom:898.740000px;}
.y13_c00015{bottom:920.160000px;}
.y12_c00015{bottom:941.580000px;}
.y11_c00015{bottom:963.090000px;}
.y10_c00015{bottom:984.510000px;}
.ye_c00015{bottom:1005.930000px;}
.yd_c00015{bottom:1027.440000px;}
.ya_c00015{bottom:1052.280000px;}
.y8_c00015{bottom:1077.210000px;}
.y6_c00015{bottom:1098.630000px;}
.y5_c00015{bottom:1131.120000px;}
.y4_c00015{bottom:1151.005500px;}
.y3_c00015{bottom:1166.490000px;}
.y2_c00015{bottom:1182.055500px;}
.y1_c00015{bottom:1197.540000px;}
.hd_c00015{height:20.610000px;}
.hb_c00015{height:20.700000px;}
.h7_c00015{height:20.701500px;}
.h8_c00015{height:24.118500px;}
.he_c00015{height:24.120000px;}
.h5_c00015{height:27.630000px;}
.hc_c00015{height:41.400000px;}
.h3_c00015{height:52.971680px;}
.h2_c00015{height:52.998047px;}
.h4_c00015{height:70.664062px;}
.ha_c00015{height:72.562500px;}
.h9_c00015{height:84.535312px;}
.h6_c00015{height:96.870938px;}
.h0_c00015{height:1262.880000px;}
.h1_c00015{height:1263.000000px;}
.w4_c00015{width:55.708500px;}
.w3_c00015{width:509.490000px;}
.w2_c00015{width:566.008500px;}
.w0_c00015{width:893.070000px;}
.w1_c00015{width:893.250000px;}
.x0_c00015{left:0.000000px;}
.x5_c00015{left:7.740000px;}
.x9_c00015{left:29.970000px;}
.x8_c00015{left:38.970000px;}
.x7_c00015{left:41.940000px;}
.x2_c00015{left:127.620000px;}
.x3_c00015{left:159.930000px;}
.x4_c00015{left:175.320000px;}
.x1_c00015{left:446.580000px;}
.x6_c00015{left:670.230000px;}
.xa_c00015{left:700.200000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls8_c00015{letter-spacing:-0.320000pt;}
.ls7_c00015{letter-spacing:-0.256000pt;}
.ls5_c00015{letter-spacing:-0.064000pt;}
.ls3_c00015{letter-spacing:0.000000pt;}
.ls1_c00015{letter-spacing:0.064000pt;}
.ls6_c00015{letter-spacing:0.128000pt;}
.ls0_c00015{letter-spacing:0.149120pt;}
.ls4_c00015{letter-spacing:0.170880pt;}
.ls2_c00015{letter-spacing:21.440000pt;}
.ws0_c00015{word-spacing:-21.360000pt;}
.ws1_c00015{word-spacing:-18.789120pt;}
.ws2_c00015{word-spacing:-18.640000pt;}
.ws7_c00015{word-spacing:-16.128000pt;}
.ws4_c00015{word-spacing:-16.064000pt;}
.ws3_c00015{word-spacing:-16.000000pt;}
.ws5_c00015{word-spacing:-15.936000pt;}
.ws6_c00015{word-spacing:-15.744000pt;}
.ws9_c00015{word-spacing:-0.427200pt;}
.wse_c00015{word-spacing:-0.384000pt;}
.wsf_c00015{word-spacing:-0.320000pt;}
.wsa_c00015{word-spacing:-0.223680pt;}
.wsd_c00015{word-spacing:-0.128000pt;}
.wsb_c00015{word-spacing:-0.064000pt;}
.ws8_c00015{word-spacing:0.000000pt;}
.wsc_c00015{word-spacing:0.064000pt;}
.ws16_c00015{word-spacing:0.256000pt;}
.ws10_c00015{word-spacing:0.320000pt;}
.ws11_c00015{word-spacing:16.576000pt;}
.ws15_c00015{word-spacing:21.376000pt;}
.ws14_c00015{word-spacing:24.832000pt;}
.ws13_c00015{word-spacing:24.896000pt;}
.ws12_c00015{word-spacing:24.960000pt;}
._0_c00015{margin-left:-0.999648pt;}
._1_c00015{width:0.896000pt;}
._4_c00015{width:21.440000pt;}
._2_c00015{width:24.512000pt;}
._3_c00015{width:25.447648pt;}
.fs0_c00015{font-size:48.000000pt;}
.fs1_c00015{font-size:64.000000pt;}
.fs3_c00015{font-size:74.560000pt;}
.fs2_c00015{font-size:85.440000pt;}
.y0_c00015{bottom:0.000000pt;}
.y21_c00015{bottom:3.440000pt;}
.yf_c00015{bottom:3.520000pt;}
.y22_c00015{bottom:3.600000pt;}
.y9_c00015{bottom:3.680000pt;}
.yb_c00015{bottom:4.000000pt;}
.y7_c00015{bottom:4.720000pt;}
.yc_c00015{bottom:5.200000pt;}
.y33_c00015{bottom:21.920000pt;}
.y1a_c00015{bottom:22.080000pt;}
.y3c_c00015{bottom:115.120000pt;}
.y3b_c00015{bottom:130.480000pt;}
.y3a_c00015{bottom:149.600000pt;}
.y39_c00015{bottom:168.640000pt;}
.y37_c00015{bottom:187.680000pt;}
.y38_c00015{bottom:200.560000pt;}
.y36_c00015{bottom:225.200000pt;}
.y35_c00015{bottom:244.240000pt;}
.y32_c00015{bottom:263.280000pt;}
.y34_c00015{bottom:276.160000pt;}
.y31_c00015{bottom:300.720000pt;}
.y30_c00015{bottom:319.840000pt;}
.y2f_c00015{bottom:341.920000pt;}
.y2e_c00015{bottom:361.040000pt;}
.y2d_c00015{bottom:380.080000pt;}
.y2c_c00015{bottom:399.120000pt;}
.y2b_c00015{bottom:418.240000pt;}
.y2a_c00015{bottom:437.280000pt;}
.y29_c00015{bottom:456.320000pt;}
.y28_c00015{bottom:475.440000pt;}
.y27_c00015{bottom:494.480000pt;}
.y26_c00015{bottom:513.520000pt;}
.y25_c00015{bottom:532.640000pt;}
.y24_c00015{bottom:551.680000pt;}
.y23_c00015{bottom:570.720000pt;}
.y20_c00015{bottom:589.840000pt;}
.y1f_c00015{bottom:608.880000pt;}
.y1e_c00015{bottom:627.920000pt;}
.y1d_c00015{bottom:646.960000pt;}
.y1c_c00015{bottom:666.080000pt;}
.y19_c00015{bottom:685.120000pt;}
.y1b_c00015{bottom:698.000000pt;}
.y18_c00015{bottom:722.560000pt;}
.y17_c00015{bottom:741.680000pt;}
.y16_c00015{bottom:760.720000pt;}
.y15_c00015{bottom:779.760000pt;}
.y14_c00015{bottom:798.880000pt;}
.y13_c00015{bottom:817.920000pt;}
.y12_c00015{bottom:836.960000pt;}
.y11_c00015{bottom:856.080000pt;}
.y10_c00015{bottom:875.120000pt;}
.ye_c00015{bottom:894.160000pt;}
.yd_c00015{bottom:913.280000pt;}
.ya_c00015{bottom:935.360000pt;}
.y8_c00015{bottom:957.520000pt;}
.y6_c00015{bottom:976.560000pt;}
.y5_c00015{bottom:1005.440000pt;}
.y4_c00015{bottom:1023.116000pt;}
.y3_c00015{bottom:1036.880000pt;}
.y2_c00015{bottom:1050.716000pt;}
.y1_c00015{bottom:1064.480000pt;}
.hd_c00015{height:18.320000pt;}
.hb_c00015{height:18.400000pt;}
.h7_c00015{height:18.401333pt;}
.h8_c00015{height:21.438667pt;}
.he_c00015{height:21.440000pt;}
.h5_c00015{height:24.560000pt;}
.hc_c00015{height:36.800000pt;}
.h3_c00015{height:47.085938pt;}
.h2_c00015{height:47.109375pt;}
.h4_c00015{height:62.812500pt;}
.ha_c00015{height:64.500000pt;}
.h9_c00015{height:75.142500pt;}
.h6_c00015{height:86.107500pt;}
.h0_c00015{height:1122.560000pt;}
.h1_c00015{height:1122.666667pt;}
.w4_c00015{width:49.518667pt;}
.w3_c00015{width:452.880000pt;}
.w2_c00015{width:503.118667pt;}
.w0_c00015{width:793.840000pt;}
.w1_c00015{width:794.000000pt;}
.x0_c00015{left:0.000000pt;}
.x5_c00015{left:6.880000pt;}
.x9_c00015{left:26.640000pt;}
.x8_c00015{left:34.640000pt;}
.x7_c00015{left:37.280000pt;}
.x2_c00015{left:113.440000pt;}
.x3_c00015{left:142.160000pt;}
.x4_c00015{left:155.840000pt;}
.x1_c00015{left:396.960000pt;}
.x6_c00015{left:595.760000pt;}
.xa_c00015{left:622.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_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_cd3b101d1a266371ca77e6f4.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00016;src:url('chunks/assets/font_d2a6445ed65303dacdad34e9.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c00016{letter-spacing:-0.432000px;}
.lsf_c00016{letter-spacing:-0.360000px;}
.ls10_c00016{letter-spacing:-0.288000px;}
.lse_c00016{letter-spacing:-0.251640px;}
.ls12_c00016{letter-spacing:-0.216000px;}
.lsd_c00016{letter-spacing:-0.072000px;}
.lsc_c00016{letter-spacing:0.000000px;}
.ls1_c00016{letter-spacing:0.072000px;}
.lsa_c00016{letter-spacing:0.144000px;}
.ls7_c00016{letter-spacing:0.167760px;}
.ls8_c00016{letter-spacing:0.270000px;}
.ls5_c00016{letter-spacing:3.240000px;}
.ls4_c00016{letter-spacing:3.600000px;}
.ls2_c00016{letter-spacing:11.520000px;}
.ls3_c00016{letter-spacing:11.880000px;}
.ls9_c00016{letter-spacing:14.400000px;}
.lsb_c00016{letter-spacing:20.160000px;}
.ls6_c00016{letter-spacing:27.000000px;}
.ls0_c00016{letter-spacing:30.960000px;}
.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;}
}
.ws5_c00016{word-spacing:-20.970000px;}
.ws4_c00016{word-spacing:-20.718360px;}
.ws1_c00016{word-spacing:-18.144000px;}
.ws3_c00016{word-spacing:-18.072000px;}
.ws0_c00016{word-spacing:-18.000000px;}
.ws2_c00016{word-spacing:-17.928000px;}
.ws7_c00016{word-spacing:-17.784000px;}
.ws6_c00016{word-spacing:-17.640000px;}
.ws2b_c00016{word-spacing:-0.432000px;}
.ws19_c00016{word-spacing:-0.360000px;}
.ws1f_c00016{word-spacing:-0.251640px;}
.ws1a_c00016{word-spacing:-0.167760px;}
.ws17_c00016{word-spacing:-0.144000px;}
.wsb_c00016{word-spacing:-0.072000px;}
.ws8_c00016{word-spacing:0.000000px;}
.ws1b_c00016{word-spacing:0.072000px;}
.ws2a_c00016{word-spacing:0.288000px;}
.ws38_c00016{word-spacing:0.360000px;}
.ws12_c00016{word-spacing:3.168000px;}
.ws10_c00016{word-spacing:3.240000px;}
.wsf_c00016{word-spacing:3.456000px;}
.ws11_c00016{word-spacing:3.600000px;}
.ws21_c00016{word-spacing:4.608000px;}
.ws20_c00016{word-spacing:4.752000px;}
.ws23_c00016{word-spacing:4.968000px;}
.ws22_c00016{word-spacing:5.112000px;}
.ws33_c00016{word-spacing:5.328000px;}
.ws32_c00016{word-spacing:5.400000px;}
.ws35_c00016{word-spacing:5.472000px;}
.ws34_c00016{word-spacing:5.832000px;}
.ws2e_c00016{word-spacing:6.840000px;}
.ws2c_c00016{word-spacing:7.128000px;}
.ws2d_c00016{word-spacing:7.200000px;}
.ws30_c00016{word-spacing:7.848000px;}
.ws31_c00016{word-spacing:7.920000px;}
.ws2f_c00016{word-spacing:7.992000px;}
.wsc_c00016{word-spacing:11.808000px;}
.wsd_c00016{word-spacing:11.880000px;}
.ws18_c00016{word-spacing:12.600000px;}
.ws24_c00016{word-spacing:14.256000px;}
.ws26_c00016{word-spacing:14.328000px;}
.ws25_c00016{word-spacing:14.400000px;}
.ws37_c00016{word-spacing:20.088000px;}
.ws36_c00016{word-spacing:20.232000px;}
.ws28_c00016{word-spacing:21.528000px;}
.ws29_c00016{word-spacing:21.600000px;}
.ws27_c00016{word-spacing:21.672000px;}
.ws13_c00016{word-spacing:26.640000px;}
.ws15_c00016{word-spacing:26.856000px;}
.ws14_c00016{word-spacing:26.928000px;}
.ws16_c00016{word-spacing:27.000000px;}
.ws1d_c00016{word-spacing:27.576000px;}
.ws1e_c00016{word-spacing:27.720000px;}
.ws1c_c00016{word-spacing:28.080000px;}
.wse_c00016{word-spacing:30.816000px;}
.wsa_c00016{word-spacing:31.248000px;}
.ws9_c00016{word-spacing:31.320000px;}
._1_c00016{margin-left:-1.015200px;}
._5_c00016{width:1.296000px;}
._3_c00016{width:3.600000px;}
._9_c00016{width:4.896000px;}
._8_c00016{width:7.200000px;}
._2_c00016{width:11.880000px;}
._a_c00016{width:20.160000px;}
._7_c00016{width:21.600000px;}
._4_c00016{width:27.000000px;}
._6_c00016{width:28.080000px;}
._0_c00016{width:31.320000px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:54.000000px;}
.fs1_c00016{font-size:72.000000px;}
.fs2_c00016{font-size:83.880000px;}
.y0_c00016{bottom:0.000000px;}
.ye_c00016{bottom:3.960000px;}
.y8_c00016{bottom:4.140000px;}
.y2a_c00016{bottom:4.500000px;}
.y19_c00016{bottom:4.590000px;}
.y2b_c00016{bottom:5.850000px;}
.y1a_c00016{bottom:5.940000px;}
.y2f_c00016{bottom:24.660000px;}
.y7_c00016{bottom:24.840000px;}
.y2d_c00016{bottom:45.360000px;}
.y39_c00016{bottom:45.540000px;}
.y38_c00016{bottom:124.020000px;}
.y3a_c00016{bottom:148.860000px;}
.y36_c00016{bottom:186.840000px;}
.y37_c00016{bottom:201.330000px;}
.y34_c00016{bottom:229.050000px;}
.y35_c00016{bottom:243.540000px;}
.y32_c00016{bottom:271.170000px;}
.y33_c00016{bottom:285.660000px;}
.y30_c00016{bottom:313.290000px;}
.y31_c00016{bottom:327.780000px;}
.y2c_c00016{bottom:355.410000px;}
.y2e_c00016{bottom:380.070000px;}
.y29_c00016{bottom:418.320000px;}
.y28_c00016{bottom:443.160000px;}
.y27_c00016{bottom:464.670000px;}
.y26_c00016{bottom:486.090000px;}
.y25_c00016{bottom:507.510000px;}
.y24_c00016{bottom:529.020000px;}
.y23_c00016{bottom:550.440000px;}
.y21_c00016{bottom:571.860000px;}
.y22_c00016{bottom:586.350000px;}
.y20_c00016{bottom:614.070000px;}
.y1f_c00016{bottom:635.490000px;}
.y1e_c00016{bottom:656.910000px;}
.y1d_c00016{bottom:678.330000px;}
.y1c_c00016{bottom:699.840000px;}
.y1b_c00016{bottom:721.260000px;}
.y18_c00016{bottom:742.680000px;}
.y17_c00016{bottom:767.610000px;}
.y15_c00016{bottom:789.030000px;}
.y16_c00016{bottom:803.520000px;}
.y13_c00016{bottom:831.240000px;}
.y14_c00016{bottom:845.729850px;}
.y11_c00016{bottom:873.360000px;}
.y12_c00016{bottom:887.850000px;}
.yf_c00016{bottom:915.480000px;}
.y10_c00016{bottom:929.970000px;}
.yd_c00016{bottom:957.690000px;}
.yb_c00016{bottom:979.110000px;}
.yc_c00016{bottom:993.600000px;}
.ya_c00016{bottom:1021.230000px;}
.y9_c00016{bottom:1042.650000px;}
.y6_c00016{bottom:1084.860000px;}
.y5_c00016{bottom:1131.120000px;}
.y4_c00016{bottom:1151.005500px;}
.y3_c00016{bottom:1166.490000px;}
.y2_c00016{bottom:1182.055500px;}
.y1_c00016{bottom:1197.540000px;}
.h6_c00016{height:20.700000px;}
.hb_c00016{height:20.701500px;}
.hc_c00016{height:24.118500px;}
.h9_c00016{height:24.211500px;}
.h7_c00016{height:41.398500px;}
.h5_c00016{height:41.400000px;}
.h3_c00016{height:52.971680px;}
.h2_c00016{height:52.998047px;}
.hd_c00016{height:62.100000px;}
.h4_c00016{height:70.664062px;}
.h8_c00016{height:72.562500px;}
.ha_c00016{height:84.535312px;}
.h0_c00016{height:1262.880000px;}
.h1_c00016{height:1263.000000px;}
.w3_c00016{width:55.708500px;}
.w2_c00016{width:509.490000px;}
.w4_c00016{width:566.008500px;}
.w0_c00016{width:893.070000px;}
.w1_c00016{width:893.250000px;}
.x0_c00016{left:0.000000px;}
.x4_c00016{left:7.740000px;}
.x9_c00016{left:20.970000px;}
.x6_c00016{left:29.970000px;}
.x2_c00016{left:127.620000px;}
.x3_c00016{left:159.930000px;}
.xa_c00016{left:167.670000px;}
.x1_c00016{left:446.580000px;}
.xb_c00016{left:506.610000px;}
.x5_c00016{left:670.230000px;}
.x8_c00016{left:691.200000px;}
.x7_c00016{left:700.200000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls11_c00016{letter-spacing:-0.384000pt;}
.lsf_c00016{letter-spacing:-0.320000pt;}
.ls10_c00016{letter-spacing:-0.256000pt;}
.lse_c00016{letter-spacing:-0.223680pt;}
.ls12_c00016{letter-spacing:-0.192000pt;}
.lsd_c00016{letter-spacing:-0.064000pt;}
.lsc_c00016{letter-spacing:0.000000pt;}
.ls1_c00016{letter-spacing:0.064000pt;}
.lsa_c00016{letter-spacing:0.128000pt;}
.ls7_c00016{letter-spacing:0.149120pt;}
.ls8_c00016{letter-spacing:0.240000pt;}
.ls5_c00016{letter-spacing:2.880000pt;}
.ls4_c00016{letter-spacing:3.200000pt;}
.ls2_c00016{letter-spacing:10.240000pt;}
.ls3_c00016{letter-spacing:10.560000pt;}
.ls9_c00016{letter-spacing:12.800000pt;}
.lsb_c00016{letter-spacing:17.920000pt;}
.ls6_c00016{letter-spacing:24.000000pt;}
.ls0_c00016{letter-spacing:27.520000pt;}
.ws5_c00016{word-spacing:-18.640000pt;}
.ws4_c00016{word-spacing:-18.416320pt;}
.ws1_c00016{word-spacing:-16.128000pt;}
.ws3_c00016{word-spacing:-16.064000pt;}
.ws0_c00016{word-spacing:-16.000000pt;}
.ws2_c00016{word-spacing:-15.936000pt;}
.ws7_c00016{word-spacing:-15.808000pt;}
.ws6_c00016{word-spacing:-15.680000pt;}
.ws2b_c00016{word-spacing:-0.384000pt;}
.ws19_c00016{word-spacing:-0.320000pt;}
.ws1f_c00016{word-spacing:-0.223680pt;}
.ws1a_c00016{word-spacing:-0.149120pt;}
.ws17_c00016{word-spacing:-0.128000pt;}
.wsb_c00016{word-spacing:-0.064000pt;}
.ws8_c00016{word-spacing:0.000000pt;}
.ws1b_c00016{word-spacing:0.064000pt;}
.ws2a_c00016{word-spacing:0.256000pt;}
.ws38_c00016{word-spacing:0.320000pt;}
.ws12_c00016{word-spacing:2.816000pt;}
.ws10_c00016{word-spacing:2.880000pt;}
.wsf_c00016{word-spacing:3.072000pt;}
.ws11_c00016{word-spacing:3.200000pt;}
.ws21_c00016{word-spacing:4.096000pt;}
.ws20_c00016{word-spacing:4.224000pt;}
.ws23_c00016{word-spacing:4.416000pt;}
.ws22_c00016{word-spacing:4.544000pt;}
.ws33_c00016{word-spacing:4.736000pt;}
.ws32_c00016{word-spacing:4.800000pt;}
.ws35_c00016{word-spacing:4.864000pt;}
.ws34_c00016{word-spacing:5.184000pt;}
.ws2e_c00016{word-spacing:6.080000pt;}
.ws2c_c00016{word-spacing:6.336000pt;}
.ws2d_c00016{word-spacing:6.400000pt;}
.ws30_c00016{word-spacing:6.976000pt;}
.ws31_c00016{word-spacing:7.040000pt;}
.ws2f_c00016{word-spacing:7.104000pt;}
.wsc_c00016{word-spacing:10.496000pt;}
.wsd_c00016{word-spacing:10.560000pt;}
.ws18_c00016{word-spacing:11.200000pt;}
.ws24_c00016{word-spacing:12.672000pt;}
.ws26_c00016{word-spacing:12.736000pt;}
.ws25_c00016{word-spacing:12.800000pt;}
.ws37_c00016{word-spacing:17.856000pt;}
.ws36_c00016{word-spacing:17.984000pt;}
.ws28_c00016{word-spacing:19.136000pt;}
.ws29_c00016{word-spacing:19.200000pt;}
.ws27_c00016{word-spacing:19.264000pt;}
.ws13_c00016{word-spacing:23.680000pt;}
.ws15_c00016{word-spacing:23.872000pt;}
.ws14_c00016{word-spacing:23.936000pt;}
.ws16_c00016{word-spacing:24.000000pt;}
.ws1d_c00016{word-spacing:24.512000pt;}
.ws1e_c00016{word-spacing:24.640000pt;}
.ws1c_c00016{word-spacing:24.960000pt;}
.wse_c00016{word-spacing:27.392000pt;}
.wsa_c00016{word-spacing:27.776000pt;}
.ws9_c00016{word-spacing:27.840000pt;}
._1_c00016{margin-left:-0.902400pt;}
._5_c00016{width:1.152000pt;}
._3_c00016{width:3.200000pt;}
._9_c00016{width:4.352000pt;}
._8_c00016{width:6.400000pt;}
._2_c00016{width:10.560000pt;}
._a_c00016{width:17.920000pt;}
._7_c00016{width:19.200000pt;}
._4_c00016{width:24.000000pt;}
._6_c00016{width:24.960000pt;}
._0_c00016{width:27.840000pt;}
.fs0_c00016{font-size:48.000000pt;}
.fs1_c00016{font-size:64.000000pt;}
.fs2_c00016{font-size:74.560000pt;}
.y0_c00016{bottom:0.000000pt;}
.ye_c00016{bottom:3.520000pt;}
.y8_c00016{bottom:3.680000pt;}
.y2a_c00016{bottom:4.000000pt;}
.y19_c00016{bottom:4.080000pt;}
.y2b_c00016{bottom:5.200000pt;}
.y1a_c00016{bottom:5.280000pt;}
.y2f_c00016{bottom:21.920000pt;}
.y7_c00016{bottom:22.080000pt;}
.y2d_c00016{bottom:40.320000pt;}
.y39_c00016{bottom:40.480000pt;}
.y38_c00016{bottom:110.240000pt;}
.y3a_c00016{bottom:132.320000pt;}
.y36_c00016{bottom:166.080000pt;}
.y37_c00016{bottom:178.960000pt;}
.y34_c00016{bottom:203.600000pt;}
.y35_c00016{bottom:216.480000pt;}
.y32_c00016{bottom:241.040000pt;}
.y33_c00016{bottom:253.920000pt;}
.y30_c00016{bottom:278.480000pt;}
.y31_c00016{bottom:291.360000pt;}
.y2c_c00016{bottom:315.920000pt;}
.y2e_c00016{bottom:337.840000pt;}
.y29_c00016{bottom:371.840000pt;}
.y28_c00016{bottom:393.920000pt;}
.y27_c00016{bottom:413.040000pt;}
.y26_c00016{bottom:432.080000pt;}
.y25_c00016{bottom:451.120000pt;}
.y24_c00016{bottom:470.240000pt;}
.y23_c00016{bottom:489.280000pt;}
.y21_c00016{bottom:508.320000pt;}
.y22_c00016{bottom:521.200000pt;}
.y20_c00016{bottom:545.840000pt;}
.y1f_c00016{bottom:564.880000pt;}
.y1e_c00016{bottom:583.920000pt;}
.y1d_c00016{bottom:602.960000pt;}
.y1c_c00016{bottom:622.080000pt;}
.y1b_c00016{bottom:641.120000pt;}
.y18_c00016{bottom:660.160000pt;}
.y17_c00016{bottom:682.320000pt;}
.y15_c00016{bottom:701.360000pt;}
.y16_c00016{bottom:714.240000pt;}
.y13_c00016{bottom:738.880000pt;}
.y14_c00016{bottom:751.759867pt;}
.y11_c00016{bottom:776.320000pt;}
.y12_c00016{bottom:789.200000pt;}
.yf_c00016{bottom:813.760000pt;}
.y10_c00016{bottom:826.640000pt;}
.yd_c00016{bottom:851.280000pt;}
.yb_c00016{bottom:870.320000pt;}
.yc_c00016{bottom:883.200000pt;}
.ya_c00016{bottom:907.760000pt;}
.y9_c00016{bottom:926.800000pt;}
.y6_c00016{bottom:964.320000pt;}
.y5_c00016{bottom:1005.440000pt;}
.y4_c00016{bottom:1023.116000pt;}
.y3_c00016{bottom:1036.880000pt;}
.y2_c00016{bottom:1050.716000pt;}
.y1_c00016{bottom:1064.480000pt;}
.h6_c00016{height:18.400000pt;}
.hb_c00016{height:18.401333pt;}
.hc_c00016{height:21.438667pt;}
.h9_c00016{height:21.521333pt;}
.h7_c00016{height:36.798667pt;}
.h5_c00016{height:36.800000pt;}
.h3_c00016{height:47.085938pt;}
.h2_c00016{height:47.109375pt;}
.hd_c00016{height:55.200000pt;}
.h4_c00016{height:62.812500pt;}
.h8_c00016{height:64.500000pt;}
.ha_c00016{height:75.142500pt;}
.h0_c00016{height:1122.560000pt;}
.h1_c00016{height:1122.666667pt;}
.w3_c00016{width:49.518667pt;}
.w2_c00016{width:452.880000pt;}
.w4_c00016{width:503.118667pt;}
.w0_c00016{width:793.840000pt;}
.w1_c00016{width:794.000000pt;}
.x0_c00016{left:0.000000pt;}
.x4_c00016{left:6.880000pt;}
.x9_c00016{left:18.640000pt;}
.x6_c00016{left:26.640000pt;}
.x2_c00016{left:113.440000pt;}
.x3_c00016{left:142.160000pt;}
.xa_c00016{left:149.040000pt;}
.x1_c00016{left:396.960000pt;}
.xb_c00016{left:450.320000pt;}
.x5_c00016{left:595.760000pt;}
.x8_c00016{left:614.400000pt;}
.x7_c00016{left:622.400000pt;}
}





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

.ir_c00017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_e2bbec79a70254d07031c799.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_cde9baa4f672b5be9ced4c8c.woff2')format("woff");}.ff3_c00017{font-family:ff3_c00017;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00017;src:url('chunks/assets/font_1e4e72282b542b4420807200.woff2')format("woff");}.ff4_c00017{font-family:ff4_c00017;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_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;}
.ls7_c00017{letter-spacing:-0.432000px;}
.lsc_c00017{letter-spacing:-0.360000px;}
.ls9_c00017{letter-spacing:-0.288000px;}
.lsb_c00017{letter-spacing:-0.216000px;}
.lsa_c00017{letter-spacing:-0.144000px;}
.ls8_c00017{letter-spacing:-0.072000px;}
.ls6_c00017{letter-spacing:0.000000px;}
.ls1_c00017{letter-spacing:0.072000px;}
.ls2_c00017{letter-spacing:0.144000px;}
.ls4_c00017{letter-spacing:0.167760px;}
.ls3_c00017{letter-spacing:14.400000px;}
.ls0_c00017{letter-spacing:24.120000px;}
.ls5_c00017{letter-spacing:36.720000px;}
.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:-21.137760px;}
.ws4_c00017{word-spacing:-20.970000px;}
.ws3_c00017{word-spacing:-18.144000px;}
.ws2_c00017{word-spacing:-18.000000px;}
.ws6_c00017{word-spacing:-17.856000px;}
.ws5_c00017{word-spacing:-17.784000px;}
.ws7_c00017{word-spacing:-17.640000px;}
.ws1_c00017{word-spacing:-17.568000px;}
.ws1a_c00017{word-spacing:-0.587160px;}
.ws23_c00017{word-spacing:-0.504000px;}
.wse_c00017{word-spacing:-0.432000px;}
.ws11_c00017{word-spacing:-0.144000px;}
.ws9_c00017{word-spacing:-0.072000px;}
.ws8_c00017{word-spacing:0.000000px;}
.ws13_c00017{word-spacing:0.072000px;}
.ws14_c00017{word-spacing:0.288000px;}
.ws25_c00017{word-spacing:0.360000px;}
.ws24_c00017{word-spacing:0.648000px;}
.wsf_c00017{word-spacing:1.656000px;}
.ws10_c00017{word-spacing:1.728000px;}
.ws27_c00017{word-spacing:1.800000px;}
.ws26_c00017{word-spacing:1.872000px;}
.ws19_c00017{word-spacing:5.328000px;}
.ws1b_c00017{word-spacing:6.696000px;}
.ws1c_c00017{word-spacing:6.768000px;}
.ws1e_c00017{word-spacing:9.360000px;}
.ws1d_c00017{word-spacing:9.432000px;}
.ws28_c00017{word-spacing:9.720000px;}
.ws12_c00017{word-spacing:14.256000px;}
.ws15_c00017{word-spacing:14.328000px;}
.ws16_c00017{word-spacing:14.688000px;}
.wsa_c00017{word-spacing:19.368000px;}
.ws21_c00017{word-spacing:20.520000px;}
.wsb_c00017{word-spacing:23.976000px;}
.wsc_c00017{word-spacing:24.048000px;}
.wsd_c00017{word-spacing:24.120000px;}
.ws22_c00017{word-spacing:28.368000px;}
.ws18_c00017{word-spacing:33.336000px;}
.ws17_c00017{word-spacing:33.624000px;}
.ws29_c00017{word-spacing:36.576000px;}
.ws1f_c00017{word-spacing:36.648000px;}
.ws20_c00017{word-spacing:36.792000px;}
._0_c00017{margin-left:-1.159200px;}
._1_c00017{width:1.375200px;}
._6_c00017{width:5.760000px;}
._4_c00017{width:9.360000px;}
._2_c00017{width:14.400000px;}
._7_c00017{width:20.520000px;}
._8_c00017{width:28.440000px;}
._3_c00017{width:33.480000px;}
._5_c00017{width:36.223200px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:54.000000px;}
.fs1_c00017{font-size:72.000000px;}
.fs2_c00017{font-size:83.880000px;}
.y0_c00017{bottom:0.000000px;}
.y35_c00017{bottom:3.870000px;}
.y7_c00017{bottom:3.960000px;}
.y36_c00017{bottom:4.050000px;}
.y8_c00017{bottom:4.140000px;}
.ya_c00017{bottom:4.500000px;}
.y1b_c00017{bottom:4.590000px;}
.yb_c00017{bottom:5.850000px;}
.y1c_c00017{bottom:5.940000px;}
.y38_c00017{bottom:7.560000px;}
.y22_c00017{bottom:24.570000px;}
.yf_c00017{bottom:24.660000px;}
.y25_c00017{bottom:24.840000px;}
.yd_c00017{bottom:45.360000px;}
.y3c_c00017{bottom:123.570000px;}
.y3d_c00017{bottom:148.230000px;}
.y3e_c00017{bottom:148.410000px;}
.y3a_c00017{bottom:186.390000px;}
.y3b_c00017{bottom:200.880000px;}
.y39_c00017{bottom:228.600000px;}
.y37_c00017{bottom:270.720000px;}
.y34_c00017{bottom:295.650000px;}
.y33_c00017{bottom:317.070000px;}
.y32_c00017{bottom:338.490000px;}
.y31_c00017{bottom:359.910000px;}
.y2f_c00017{bottom:381.420000px;}
.y30_c00017{bottom:395.910000px;}
.y2d_c00017{bottom:423.540000px;}
.y2e_c00017{bottom:438.030000px;}
.y2b_c00017{bottom:465.660000px;}
.y2c_c00017{bottom:480.150000px;}
.y29_c00017{bottom:507.870000px;}
.y2a_c00017{bottom:522.360000px;}
.y27_c00017{bottom:549.990000px;}
.y28_c00017{bottom:564.480000px;}
.y24_c00017{bottom:592.110000px;}
.y26_c00017{bottom:606.600000px;}
.y21_c00017{bottom:634.320000px;}
.y23_c00017{bottom:648.810000px;}
.y1e_c00017{bottom:676.440000px;}
.y1f_c00017{bottom:701.100000px;}
.y20_c00017{bottom:701.280000px;}
.y1d_c00017{bottom:739.260000px;}
.y1a_c00017{bottom:781.380000px;}
.y19_c00017{bottom:806.310000px;}
.y16_c00017{bottom:827.730000px;}
.y17_c00017{bottom:852.390000px;}
.y18_c00017{bottom:852.570000px;}
.y15_c00017{bottom:890.640000px;}
.y14_c00017{bottom:912.060000px;}
.y12_c00017{bottom:933.480000px;}
.y13_c00017{bottom:947.970000px;}
.y10_c00017{bottom:975.690000px;}
.y11_c00017{bottom:990.180000px;}
.yc_c00017{bottom:1017.810000px;}
.ye_c00017{bottom:1042.470000px;}
.y9_c00017{bottom:1080.630000px;}
.y6_c00017{bottom:1105.560000px;}
.y5_c00017{bottom:1131.120000px;}
.y4_c00017{bottom:1151.005500px;}
.y3_c00017{bottom:1166.490000px;}
.y2_c00017{bottom:1182.055500px;}
.y1_c00017{bottom:1197.540000px;}
.hf_c00017{height:20.610000px;}
.hc_c00017{height:20.700000px;}
.h5_c00017{height:20.701500px;}
.h7_c00017{height:24.118500px;}
.h10_c00017{height:24.120000px;}
.hd_c00017{height:24.210000px;}
.he_c00017{height:41.310000px;}
.hb_c00017{height:41.398500px;}
.ha_c00017{height:41.400000px;}
.h3_c00017{height:52.971680px;}
.h2_c00017{height:52.998047px;}
.h9_c00017{height:62.100000px;}
.h4_c00017{height:70.664062px;}
.h6_c00017{height:72.562500px;}
.h8_c00017{height:84.535312px;}
.h0_c00017{height:1262.880000px;}
.h1_c00017{height:1263.000000px;}
.w3_c00017{width:55.708500px;}
.w2_c00017{width:509.490000px;}
.w4_c00017{width:566.008500px;}
.w0_c00017{width:893.070000px;}
.w1_c00017{width:893.250000px;}
.x0_c00017{left:0.000000px;}
.x4_c00017{left:7.740000px;}
.x6_c00017{left:20.970000px;}
.x2_c00017{left:127.620000px;}
.x3_c00017{left:159.930000px;}
.x7_c00017{left:167.670000px;}
.xa_c00017{left:380.520000px;}
.x8_c00017{left:426.420000px;}
.x1_c00017{left:446.580000px;}
.x5_c00017{left:670.230000px;}
.x9_c00017{left:691.200000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls7_c00017{letter-spacing:-0.384000pt;}
.lsc_c00017{letter-spacing:-0.320000pt;}
.ls9_c00017{letter-spacing:-0.256000pt;}
.lsb_c00017{letter-spacing:-0.192000pt;}
.lsa_c00017{letter-spacing:-0.128000pt;}
.ls8_c00017{letter-spacing:-0.064000pt;}
.ls6_c00017{letter-spacing:0.000000pt;}
.ls1_c00017{letter-spacing:0.064000pt;}
.ls2_c00017{letter-spacing:0.128000pt;}
.ls4_c00017{letter-spacing:0.149120pt;}
.ls3_c00017{letter-spacing:12.800000pt;}
.ls0_c00017{letter-spacing:21.440000pt;}
.ls5_c00017{letter-spacing:32.640000pt;}
.ws0_c00017{word-spacing:-18.789120pt;}
.ws4_c00017{word-spacing:-18.640000pt;}
.ws3_c00017{word-spacing:-16.128000pt;}
.ws2_c00017{word-spacing:-16.000000pt;}
.ws6_c00017{word-spacing:-15.872000pt;}
.ws5_c00017{word-spacing:-15.808000pt;}
.ws7_c00017{word-spacing:-15.680000pt;}
.ws1_c00017{word-spacing:-15.616000pt;}
.ws1a_c00017{word-spacing:-0.521920pt;}
.ws23_c00017{word-spacing:-0.448000pt;}
.wse_c00017{word-spacing:-0.384000pt;}
.ws11_c00017{word-spacing:-0.128000pt;}
.ws9_c00017{word-spacing:-0.064000pt;}
.ws8_c00017{word-spacing:0.000000pt;}
.ws13_c00017{word-spacing:0.064000pt;}
.ws14_c00017{word-spacing:0.256000pt;}
.ws25_c00017{word-spacing:0.320000pt;}
.ws24_c00017{word-spacing:0.576000pt;}
.wsf_c00017{word-spacing:1.472000pt;}
.ws10_c00017{word-spacing:1.536000pt;}
.ws27_c00017{word-spacing:1.600000pt;}
.ws26_c00017{word-spacing:1.664000pt;}
.ws19_c00017{word-spacing:4.736000pt;}
.ws1b_c00017{word-spacing:5.952000pt;}
.ws1c_c00017{word-spacing:6.016000pt;}
.ws1e_c00017{word-spacing:8.320000pt;}
.ws1d_c00017{word-spacing:8.384000pt;}
.ws28_c00017{word-spacing:8.640000pt;}
.ws12_c00017{word-spacing:12.672000pt;}
.ws15_c00017{word-spacing:12.736000pt;}
.ws16_c00017{word-spacing:13.056000pt;}
.wsa_c00017{word-spacing:17.216000pt;}
.ws21_c00017{word-spacing:18.240000pt;}
.wsb_c00017{word-spacing:21.312000pt;}
.wsc_c00017{word-spacing:21.376000pt;}
.wsd_c00017{word-spacing:21.440000pt;}
.ws22_c00017{word-spacing:25.216000pt;}
.ws18_c00017{word-spacing:29.632000pt;}
.ws17_c00017{word-spacing:29.888000pt;}
.ws29_c00017{word-spacing:32.512000pt;}
.ws1f_c00017{word-spacing:32.576000pt;}
.ws20_c00017{word-spacing:32.704000pt;}
._0_c00017{margin-left:-1.030400pt;}
._1_c00017{width:1.222400pt;}
._6_c00017{width:5.120000pt;}
._4_c00017{width:8.320000pt;}
._2_c00017{width:12.800000pt;}
._7_c00017{width:18.240000pt;}
._8_c00017{width:25.280000pt;}
._3_c00017{width:29.760000pt;}
._5_c00017{width:32.198400pt;}
.fs0_c00017{font-size:48.000000pt;}
.fs1_c00017{font-size:64.000000pt;}
.fs2_c00017{font-size:74.560000pt;}
.y0_c00017{bottom:0.000000pt;}
.y35_c00017{bottom:3.440000pt;}
.y7_c00017{bottom:3.520000pt;}
.y36_c00017{bottom:3.600000pt;}
.y8_c00017{bottom:3.680000pt;}
.ya_c00017{bottom:4.000000pt;}
.y1b_c00017{bottom:4.080000pt;}
.yb_c00017{bottom:5.200000pt;}
.y1c_c00017{bottom:5.280000pt;}
.y38_c00017{bottom:6.720000pt;}
.y22_c00017{bottom:21.840000pt;}
.yf_c00017{bottom:21.920000pt;}
.y25_c00017{bottom:22.080000pt;}
.yd_c00017{bottom:40.320000pt;}
.y3c_c00017{bottom:109.840000pt;}
.y3d_c00017{bottom:131.760000pt;}
.y3e_c00017{bottom:131.920000pt;}
.y3a_c00017{bottom:165.680000pt;}
.y3b_c00017{bottom:178.560000pt;}
.y39_c00017{bottom:203.200000pt;}
.y37_c00017{bottom:240.640000pt;}
.y34_c00017{bottom:262.800000pt;}
.y33_c00017{bottom:281.840000pt;}
.y32_c00017{bottom:300.880000pt;}
.y31_c00017{bottom:319.920000pt;}
.y2f_c00017{bottom:339.040000pt;}
.y30_c00017{bottom:351.920000pt;}
.y2d_c00017{bottom:376.480000pt;}
.y2e_c00017{bottom:389.360000pt;}
.y2b_c00017{bottom:413.920000pt;}
.y2c_c00017{bottom:426.800000pt;}
.y29_c00017{bottom:451.440000pt;}
.y2a_c00017{bottom:464.320000pt;}
.y27_c00017{bottom:488.880000pt;}
.y28_c00017{bottom:501.760000pt;}
.y24_c00017{bottom:526.320000pt;}
.y26_c00017{bottom:539.200000pt;}
.y21_c00017{bottom:563.840000pt;}
.y23_c00017{bottom:576.720000pt;}
.y1e_c00017{bottom:601.280000pt;}
.y1f_c00017{bottom:623.200000pt;}
.y20_c00017{bottom:623.360000pt;}
.y1d_c00017{bottom:657.120000pt;}
.y1a_c00017{bottom:694.560000pt;}
.y19_c00017{bottom:716.720000pt;}
.y16_c00017{bottom:735.760000pt;}
.y17_c00017{bottom:757.680000pt;}
.y18_c00017{bottom:757.840000pt;}
.y15_c00017{bottom:791.680000pt;}
.y14_c00017{bottom:810.720000pt;}
.y12_c00017{bottom:829.760000pt;}
.y13_c00017{bottom:842.640000pt;}
.y10_c00017{bottom:867.280000pt;}
.y11_c00017{bottom:880.160000pt;}
.yc_c00017{bottom:904.720000pt;}
.ye_c00017{bottom:926.640000pt;}
.y9_c00017{bottom:960.560000pt;}
.y6_c00017{bottom:982.720000pt;}
.y5_c00017{bottom:1005.440000pt;}
.y4_c00017{bottom:1023.116000pt;}
.y3_c00017{bottom:1036.880000pt;}
.y2_c00017{bottom:1050.716000pt;}
.y1_c00017{bottom:1064.480000pt;}
.hf_c00017{height:18.320000pt;}
.hc_c00017{height:18.400000pt;}
.h5_c00017{height:18.401333pt;}
.h7_c00017{height:21.438667pt;}
.h10_c00017{height:21.440000pt;}
.hd_c00017{height:21.520000pt;}
.he_c00017{height:36.720000pt;}
.hb_c00017{height:36.798667pt;}
.ha_c00017{height:36.800000pt;}
.h3_c00017{height:47.085938pt;}
.h2_c00017{height:47.109375pt;}
.h9_c00017{height:55.200000pt;}
.h4_c00017{height:62.812500pt;}
.h6_c00017{height:64.500000pt;}
.h8_c00017{height:75.142500pt;}
.h0_c00017{height:1122.560000pt;}
.h1_c00017{height:1122.666667pt;}
.w3_c00017{width:49.518667pt;}
.w2_c00017{width:452.880000pt;}
.w4_c00017{width:503.118667pt;}
.w0_c00017{width:793.840000pt;}
.w1_c00017{width:794.000000pt;}
.x0_c00017{left:0.000000pt;}
.x4_c00017{left:6.880000pt;}
.x6_c00017{left:18.640000pt;}
.x2_c00017{left:113.440000pt;}
.x3_c00017{left:142.160000pt;}
.x7_c00017{left:149.040000pt;}
.xa_c00017{left:338.240000pt;}
.x8_c00017{left:379.040000pt;}
.x1_c00017{left:396.960000pt;}
.x5_c00017{left:595.760000pt;}
.x9_c00017{left:614.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_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_f5a80481554fe01714f04a49.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00018;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00018;src:url('chunks/assets/font_c821784336cafbc796fff6d0.woff2')format("woff");}.ff3_c00018{font-family:ff3_c00018;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00018{letter-spacing:-0.576000px;}
.ls9_c00018{letter-spacing:-0.432000px;}
.ls6_c00018{letter-spacing:-0.360000px;}
.ls5_c00018{letter-spacing:-0.288000px;}
.lsb_c00018{letter-spacing:-0.216000px;}
.lsa_c00018{letter-spacing:-0.144000px;}
.lsc_c00018{letter-spacing:-0.072000px;}
.ls4_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:0.072000px;}
.ls7_c00018{letter-spacing:0.144000px;}
.ls3_c00018{letter-spacing:1.440000px;}
.ls2_c00018{letter-spacing:8.640000px;}
.ls1_c00018{letter-spacing:28.440000px;}
.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;}
}
.ws3_c00018{word-spacing:-18.144000px;}
.ws0_c00018{word-spacing:-18.072000px;}
.ws1_c00018{word-spacing:-18.000000px;}
.ws7_c00018{word-spacing:-17.928000px;}
.ws5_c00018{word-spacing:-17.856000px;}
.ws6_c00018{word-spacing:-17.784000px;}
.ws8_c00018{word-spacing:-17.712000px;}
.ws2_c00018{word-spacing:-17.640000px;}
.ws4_c00018{word-spacing:-17.568000px;}
.ws11_c00018{word-spacing:-0.144000px;}
.wse_c00018{word-spacing:-0.072000px;}
.ws9_c00018{word-spacing:0.000000px;}
.ws20_c00018{word-spacing:0.072000px;}
.ws1d_c00018{word-spacing:1.008000px;}
.ws12_c00018{word-spacing:1.368000px;}
.ws13_c00018{word-spacing:1.440000px;}
.ws1b_c00018{word-spacing:2.088000px;}
.ws10_c00018{word-spacing:2.376000px;}
.ws24_c00018{word-spacing:3.096000px;}
.ws25_c00018{word-spacing:3.240000px;}
.ws1f_c00018{word-spacing:3.888000px;}
.ws1e_c00018{word-spacing:3.960000px;}
.ws26_c00018{word-spacing:4.968000px;}
.ws27_c00018{word-spacing:7.200000px;}
.ws1a_c00018{word-spacing:7.488000px;}
.wsb_c00018{word-spacing:7.848000px;}
.wsa_c00018{word-spacing:7.920000px;}
.wsf_c00018{word-spacing:8.640000px;}
.ws15_c00018{word-spacing:8.856000px;}
.ws19_c00018{word-spacing:13.320000px;}
.ws18_c00018{word-spacing:15.840000px;}
.ws14_c00018{word-spacing:16.200000px;}
.ws21_c00018{word-spacing:17.280000px;}
.ws22_c00018{word-spacing:17.352000px;}
.ws17_c00018{word-spacing:17.640000px;}
.ws16_c00018{word-spacing:20.520000px;}
.ws23_c00018{word-spacing:26.136000px;}
.ws1c_c00018{word-spacing:27.936000px;}
.wsd_c00018{word-spacing:28.296000px;}
.wsc_c00018{word-spacing:28.368000px;}
._1_c00018{margin-left:-1.008000px;}
._2_c00018{width:1.080000px;}
._6_c00018{width:2.160000px;}
._8_c00018{width:5.040000px;}
._0_c00018{width:7.920000px;}
._4_c00018{width:16.488000px;}
._5_c00018{width:20.520000px;}
._7_c00018{width:27.936000px;}
._3_c00018{width:29.016000px;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:54.000000px;}
.fs1_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y1c_c00018{bottom:3.960000px;}
.ya_c00018{bottom:4.140000px;}
.y1b_c00018{bottom:24.660000px;}
.y18_c00018{bottom:24.840000px;}
.y33_c00018{bottom:45.270000px;}
.y27_c00018{bottom:45.360000px;}
.yd_c00018{bottom:66.150000px;}
.y7_c00018{bottom:66.240000px;}
.y3c_c00018{bottom:115.470000px;}
.y3a_c00018{bottom:136.890000px;}
.y3b_c00018{bottom:151.380000px;}
.y39_c00018{bottom:179.100000px;}
.y37_c00018{bottom:200.520000px;}
.y38_c00018{bottom:215.010000px;}
.y36_c00018{bottom:242.640000px;}
.y32_c00018{bottom:264.150000px;}
.y34_c00018{bottom:288.810000px;}
.y35_c00018{bottom:288.990000px;}
.y31_c00018{bottom:326.970000px;}
.y2e_c00018{bottom:348.390000px;}
.y2f_c00018{bottom:373.050000px;}
.y30_c00018{bottom:373.230000px;}
.y2d_c00018{bottom:411.210000px;}
.y2c_c00018{bottom:432.720000px;}
.y2b_c00018{bottom:454.140000px;}
.y29_c00018{bottom:475.560000px;}
.y2a_c00018{bottom:490.050000px;}
.y26_c00018{bottom:517.770000px;}
.y28_c00018{bottom:542.430000px;}
.y25_c00018{bottom:580.590000px;}
.y24_c00018{bottom:602.010000px;}
.y22_c00018{bottom:623.520000px;}
.y23_c00018{bottom:638.010000px;}
.y21_c00018{bottom:665.640000px;}
.y20_c00018{bottom:687.060000px;}
.y1e_c00018{bottom:708.480000px;}
.y1f_c00018{bottom:722.970000px;}
.y1a_c00018{bottom:750.690000px;}
.y1d_c00018{bottom:765.180000px;}
.y15_c00018{bottom:792.810000px;}
.y17_c00018{bottom:817.650000px;}
.y19_c00018{bottom:828.000000px;}
.y16_c00018{bottom:838.350000px;}
.y11_c00018{bottom:876.330000px;}
.y13_c00018{bottom:901.170000px;}
.y14_c00018{bottom:911.520000px;}
.y12_c00018{bottom:921.870000px;}
.yc_c00018{bottom:959.940000px;}
.yf_c00018{bottom:984.780000px;}
.y10_c00018{bottom:995.130000px;}
.ye_c00018{bottom:1005.480000px;}
.y6_c00018{bottom:1043.460000px;}
.y9_c00018{bottom:1068.300000px;}
.yb_c00018{bottom:1078.650000px;}
.y8_c00018{bottom:1089.000000px;}
.y5_c00018{bottom:1131.120000px;}
.y4_c00018{bottom:1151.005500px;}
.y3_c00018{bottom:1166.490000px;}
.y2_c00018{bottom:1182.055500px;}
.y1_c00018{bottom:1197.540000px;}
.hc_c00018{height:20.700000px;}
.hb_c00018{height:20.701500px;}
.h8_c00018{height:41.398500px;}
.ha_c00018{height:41.400000px;}
.h3_c00018{height:52.971680px;}
.h2_c00018{height:52.998047px;}
.he_c00018{height:62.010000px;}
.hd_c00018{height:62.100000px;}
.h4_c00018{height:70.664062px;}
.h9_c00018{height:72.562500px;}
.h6_c00018{height:82.708500px;}
.h7_c00018{height:82.800000px;}
.h5_c00018{height:82.801500px;}
.h0_c00018{height:1262.880000px;}
.h1_c00018{height:1263.000000px;}
.w3_c00018{width:55.708500px;}
.w2_c00018{width:509.490000px;}
.w4_c00018{width:566.008500px;}
.w0_c00018{width:893.070000px;}
.w1_c00018{width:893.250000px;}
.x0_c00018{left:0.000000px;}
.x4_c00018{left:7.740000px;}
.x9_c00018{left:20.970000px;}
.xa_c00018{left:108.270000px;}
.x2_c00018{left:127.620000px;}
.x3_c00018{left:159.930000px;}
.x5_c00018{left:167.670000px;}
.x7_c00018{left:242.190000px;}
.x1_c00018{left:446.580000px;}
.x8_c00018{left:670.230000px;}
.x6_c00018{left:691.200000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls8_c00018{letter-spacing:-0.512000pt;}
.ls9_c00018{letter-spacing:-0.384000pt;}
.ls6_c00018{letter-spacing:-0.320000pt;}
.ls5_c00018{letter-spacing:-0.256000pt;}
.lsb_c00018{letter-spacing:-0.192000pt;}
.lsa_c00018{letter-spacing:-0.128000pt;}
.lsc_c00018{letter-spacing:-0.064000pt;}
.ls4_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:0.064000pt;}
.ls7_c00018{letter-spacing:0.128000pt;}
.ls3_c00018{letter-spacing:1.280000pt;}
.ls2_c00018{letter-spacing:7.680000pt;}
.ls1_c00018{letter-spacing:25.280000pt;}
.ws3_c00018{word-spacing:-16.128000pt;}
.ws0_c00018{word-spacing:-16.064000pt;}
.ws1_c00018{word-spacing:-16.000000pt;}
.ws7_c00018{word-spacing:-15.936000pt;}
.ws5_c00018{word-spacing:-15.872000pt;}
.ws6_c00018{word-spacing:-15.808000pt;}
.ws8_c00018{word-spacing:-15.744000pt;}
.ws2_c00018{word-spacing:-15.680000pt;}
.ws4_c00018{word-spacing:-15.616000pt;}
.ws11_c00018{word-spacing:-0.128000pt;}
.wse_c00018{word-spacing:-0.064000pt;}
.ws9_c00018{word-spacing:0.000000pt;}
.ws20_c00018{word-spacing:0.064000pt;}
.ws1d_c00018{word-spacing:0.896000pt;}
.ws12_c00018{word-spacing:1.216000pt;}
.ws13_c00018{word-spacing:1.280000pt;}
.ws1b_c00018{word-spacing:1.856000pt;}
.ws10_c00018{word-spacing:2.112000pt;}
.ws24_c00018{word-spacing:2.752000pt;}
.ws25_c00018{word-spacing:2.880000pt;}
.ws1f_c00018{word-spacing:3.456000pt;}
.ws1e_c00018{word-spacing:3.520000pt;}
.ws26_c00018{word-spacing:4.416000pt;}
.ws27_c00018{word-spacing:6.400000pt;}
.ws1a_c00018{word-spacing:6.656000pt;}
.wsb_c00018{word-spacing:6.976000pt;}
.wsa_c00018{word-spacing:7.040000pt;}
.wsf_c00018{word-spacing:7.680000pt;}
.ws15_c00018{word-spacing:7.872000pt;}
.ws19_c00018{word-spacing:11.840000pt;}
.ws18_c00018{word-spacing:14.080000pt;}
.ws14_c00018{word-spacing:14.400000pt;}
.ws21_c00018{word-spacing:15.360000pt;}
.ws22_c00018{word-spacing:15.424000pt;}
.ws17_c00018{word-spacing:15.680000pt;}
.ws16_c00018{word-spacing:18.240000pt;}
.ws23_c00018{word-spacing:23.232000pt;}
.ws1c_c00018{word-spacing:24.832000pt;}
.wsd_c00018{word-spacing:25.152000pt;}
.wsc_c00018{word-spacing:25.216000pt;}
._1_c00018{margin-left:-0.896000pt;}
._2_c00018{width:0.960000pt;}
._6_c00018{width:1.920000pt;}
._8_c00018{width:4.480000pt;}
._0_c00018{width:7.040000pt;}
._4_c00018{width:14.656000pt;}
._5_c00018{width:18.240000pt;}
._7_c00018{width:24.832000pt;}
._3_c00018{width:25.792000pt;}
.fs0_c00018{font-size:48.000000pt;}
.fs1_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y1c_c00018{bottom:3.520000pt;}
.ya_c00018{bottom:3.680000pt;}
.y1b_c00018{bottom:21.920000pt;}
.y18_c00018{bottom:22.080000pt;}
.y33_c00018{bottom:40.240000pt;}
.y27_c00018{bottom:40.320000pt;}
.yd_c00018{bottom:58.800000pt;}
.y7_c00018{bottom:58.880000pt;}
.y3c_c00018{bottom:102.640000pt;}
.y3a_c00018{bottom:121.680000pt;}
.y3b_c00018{bottom:134.560000pt;}
.y39_c00018{bottom:159.200000pt;}
.y37_c00018{bottom:178.240000pt;}
.y38_c00018{bottom:191.120000pt;}
.y36_c00018{bottom:215.680000pt;}
.y32_c00018{bottom:234.800000pt;}
.y34_c00018{bottom:256.720000pt;}
.y35_c00018{bottom:256.880000pt;}
.y31_c00018{bottom:290.640000pt;}
.y2e_c00018{bottom:309.680000pt;}
.y2f_c00018{bottom:331.600000pt;}
.y30_c00018{bottom:331.760000pt;}
.y2d_c00018{bottom:365.520000pt;}
.y2c_c00018{bottom:384.640000pt;}
.y2b_c00018{bottom:403.680000pt;}
.y29_c00018{bottom:422.720000pt;}
.y2a_c00018{bottom:435.600000pt;}
.y26_c00018{bottom:460.240000pt;}
.y28_c00018{bottom:482.160000pt;}
.y25_c00018{bottom:516.080000pt;}
.y24_c00018{bottom:535.120000pt;}
.y22_c00018{bottom:554.240000pt;}
.y23_c00018{bottom:567.120000pt;}
.y21_c00018{bottom:591.680000pt;}
.y20_c00018{bottom:610.720000pt;}
.y1e_c00018{bottom:629.760000pt;}
.y1f_c00018{bottom:642.640000pt;}
.y1a_c00018{bottom:667.280000pt;}
.y1d_c00018{bottom:680.160000pt;}
.y15_c00018{bottom:704.720000pt;}
.y17_c00018{bottom:726.800000pt;}
.y19_c00018{bottom:736.000000pt;}
.y16_c00018{bottom:745.200000pt;}
.y11_c00018{bottom:778.960000pt;}
.y13_c00018{bottom:801.040000pt;}
.y14_c00018{bottom:810.240000pt;}
.y12_c00018{bottom:819.440000pt;}
.yc_c00018{bottom:853.280000pt;}
.yf_c00018{bottom:875.360000pt;}
.y10_c00018{bottom:884.560000pt;}
.ye_c00018{bottom:893.760000pt;}
.y6_c00018{bottom:927.520000pt;}
.y9_c00018{bottom:949.600000pt;}
.yb_c00018{bottom:958.800000pt;}
.y8_c00018{bottom:968.000000pt;}
.y5_c00018{bottom:1005.440000pt;}
.y4_c00018{bottom:1023.116000pt;}
.y3_c00018{bottom:1036.880000pt;}
.y2_c00018{bottom:1050.716000pt;}
.y1_c00018{bottom:1064.480000pt;}
.hc_c00018{height:18.400000pt;}
.hb_c00018{height:18.401333pt;}
.h8_c00018{height:36.798667pt;}
.ha_c00018{height:36.800000pt;}
.h3_c00018{height:47.085938pt;}
.h2_c00018{height:47.109375pt;}
.he_c00018{height:55.120000pt;}
.hd_c00018{height:55.200000pt;}
.h4_c00018{height:62.812500pt;}
.h9_c00018{height:64.500000pt;}
.h6_c00018{height:73.518667pt;}
.h7_c00018{height:73.600000pt;}
.h5_c00018{height:73.601333pt;}
.h0_c00018{height:1122.560000pt;}
.h1_c00018{height:1122.666667pt;}
.w3_c00018{width:49.518667pt;}
.w2_c00018{width:452.880000pt;}
.w4_c00018{width:503.118667pt;}
.w0_c00018{width:793.840000pt;}
.w1_c00018{width:794.000000pt;}
.x0_c00018{left:0.000000pt;}
.x4_c00018{left:6.880000pt;}
.x9_c00018{left:18.640000pt;}
.xa_c00018{left:96.240000pt;}
.x2_c00018{left:113.440000pt;}
.x3_c00018{left:142.160000pt;}
.x5_c00018{left:149.040000pt;}
.x7_c00018{left:215.280000pt;}
.x1_c00018{left:396.960000pt;}
.x8_c00018{left:595.760000pt;}
.x6_c00018{left:614.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_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_9ddb2db5aba08ccef373b570.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00019;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_06a531293519e3c7c784394c.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00019{letter-spacing:0.000000px;}
.ls1_c00019{letter-spacing:0.072000px;}
.ls2_c00019{letter-spacing:0.144000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00019{word-spacing:-18.144000px;}
.ws0_c00019{word-spacing:-18.072000px;}
.ws5_c00019{word-spacing:-0.144000px;}
.ws4_c00019{word-spacing:-0.072000px;}
.ws2_c00019{word-spacing:0.000000px;}
.ws3_c00019{word-spacing:35.928000px;}
._1_c00019{margin-left:-1.231200px;}
._0_c00019{width:36.000000px;}
._2_c00019{width:846.000000px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs0_c00019{font-size:54.000000px;}
.fs1_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.yd_c00019{bottom:3.960000px;}
.y8_c00019{bottom:4.140000px;}
.y7_c00019{bottom:24.840000px;}
.y12_c00019{bottom:918.180000px;}
.y11_c00019{bottom:938.880000px;}
.y10_c00019{bottom:956.160000px;}
.yf_c00019{bottom:977.580000px;}
.ye_c00019{bottom:999.090000px;}
.yc_c00019{bottom:1020.510000px;}
.yb_c00019{bottom:1041.930000px;}
.ya_c00019{bottom:1063.350000px;}
.y6_c00019{bottom:1084.860000px;}
.y9_c00019{bottom:1099.350000px;}
.y5_c00019{bottom:1131.120000px;}
.y4_c00019{bottom:1151.005500px;}
.y3_c00019{bottom:1166.490000px;}
.y2_c00019{bottom:1182.055500px;}
.y1_c00019{bottom:1197.540000px;}
.h6_c00019{height:20.700000px;}
.h7_c00019{height:20.701500px;}
.h5_c00019{height:41.400000px;}
.h3_c00019{height:52.971680px;}
.h2_c00019{height:52.998047px;}
.h4_c00019{height:70.664062px;}
.h8_c00019{height:72.562500px;}
.h0_c00019{height:1262.880000px;}
.h1_c00019{height:1263.000000px;}
.w3_c00019{width:55.708500px;}
.w2_c00019{width:509.490000px;}
.w4_c00019{width:566.008500px;}
.w0_c00019{width:893.070000px;}
.w1_c00019{width:893.250000px;}
.x0_c00019{left:0.000000px;}
.x4_c00019{left:7.740000px;}
.x7_c00019{left:20.970000px;}
.x2_c00019{left:127.620000px;}
.x3_c00019{left:159.930000px;}
.x1_c00019{left:446.580000px;}
.x6_c00019{left:670.230000px;}
.x5_c00019{left:691.200000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ls1_c00019{letter-spacing:0.064000pt;}
.ls2_c00019{letter-spacing:0.128000pt;}
.ws1_c00019{word-spacing:-16.128000pt;}
.ws0_c00019{word-spacing:-16.064000pt;}
.ws5_c00019{word-spacing:-0.128000pt;}
.ws4_c00019{word-spacing:-0.064000pt;}
.ws2_c00019{word-spacing:0.000000pt;}
.ws3_c00019{word-spacing:31.936000pt;}
._1_c00019{margin-left:-1.094400pt;}
._0_c00019{width:32.000000pt;}
._2_c00019{width:752.000000pt;}
.fs0_c00019{font-size:48.000000pt;}
.fs1_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.yd_c00019{bottom:3.520000pt;}
.y8_c00019{bottom:3.680000pt;}
.y7_c00019{bottom:22.080000pt;}
.y12_c00019{bottom:816.160000pt;}
.y11_c00019{bottom:834.560000pt;}
.y10_c00019{bottom:849.920000pt;}
.yf_c00019{bottom:868.960000pt;}
.ye_c00019{bottom:888.080000pt;}
.yc_c00019{bottom:907.120000pt;}
.yb_c00019{bottom:926.160000pt;}
.ya_c00019{bottom:945.200000pt;}
.y6_c00019{bottom:964.320000pt;}
.y9_c00019{bottom:977.200000pt;}
.y5_c00019{bottom:1005.440000pt;}
.y4_c00019{bottom:1023.116000pt;}
.y3_c00019{bottom:1036.880000pt;}
.y2_c00019{bottom:1050.716000pt;}
.y1_c00019{bottom:1064.480000pt;}
.h6_c00019{height:18.400000pt;}
.h7_c00019{height:18.401333pt;}
.h5_c00019{height:36.800000pt;}
.h3_c00019{height:47.085938pt;}
.h2_c00019{height:47.109375pt;}
.h4_c00019{height:62.812500pt;}
.h8_c00019{height:64.500000pt;}
.h0_c00019{height:1122.560000pt;}
.h1_c00019{height:1122.666667pt;}
.w3_c00019{width:49.518667pt;}
.w2_c00019{width:452.880000pt;}
.w4_c00019{width:503.118667pt;}
.w0_c00019{width:793.840000pt;}
.w1_c00019{width:794.000000pt;}
.x0_c00019{left:0.000000pt;}
.x4_c00019{left:6.880000pt;}
.x7_c00019{left:18.640000pt;}
.x2_c00019{left:113.440000pt;}
.x3_c00019{left:142.160000pt;}
.x1_c00019{left:396.960000pt;}
.x6_c00019{left:595.760000pt;}
.x5_c00019{left:614.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_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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls0_c00020{letter-spacing:0.000000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:0.000000px;}
._0_c00020{width:846.000000px;}
.fc0_c00020{color:rgb(0,0,0);}
.fs0_c00020{font-size:54.000000px;}
.fs1_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y7_c00020{bottom:1089.720000px;}
.y6_c00020{bottom:1110.420000px;}
.y5_c00020{bottom:1131.120000px;}
.y4_c00020{bottom:1151.005500px;}
.y3_c00020{bottom:1166.490000px;}
.y2_c00020{bottom:1182.055500px;}
.y1_c00020{bottom:1197.540000px;}
.h3_c00020{height:52.971680px;}
.h2_c00020{height:52.998047px;}
.h4_c00020{height:70.664062px;}
.h0_c00020{height:1262.880000px;}
.h1_c00020{height:1263.000000px;}
.w0_c00020{width:893.070000px;}
.w1_c00020{width:893.250000px;}
.x0_c00020{left:0.000000px;}
.x2_c00020{left:127.620000px;}
.x1_c00020{left:446.580000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ws0_c00020{word-spacing:0.000000pt;}
._0_c00020{width:752.000000pt;}
.fs0_c00020{font-size:48.000000pt;}
.fs1_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y7_c00020{bottom:968.640000pt;}
.y6_c00020{bottom:987.040000pt;}
.y5_c00020{bottom:1005.440000pt;}
.y4_c00020{bottom:1023.116000pt;}
.y3_c00020{bottom:1036.880000pt;}
.y2_c00020{bottom:1050.716000pt;}
.y1_c00020{bottom:1064.480000pt;}
.h3_c00020{height:47.085938pt;}
.h2_c00020{height:47.109375pt;}
.h4_c00020{height:62.812500pt;}
.h0_c00020{height:1122.560000pt;}
.h1_c00020{height:1122.666667pt;}
.w0_c00020{width:793.840000pt;}
.w1_c00020{width:794.000000pt;}
.x0_c00020{left:0.000000pt;}
.x2_c00020{left:113.440000pt;}
.x1_c00020{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7dc0fb2db07f09678b54517.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_d7fa5ca5e950f4a9b7ba631b.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00021{letter-spacing:0.000000px;}
.ls2_c00021{letter-spacing:0.072000px;}
.ls0_c00021{letter-spacing:0.167760px;}
.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:-21.137760px;}
.ws1_c00021{word-spacing:-18.072000px;}
.ws5_c00021{word-spacing:-0.072000px;}
.ws2_c00021{word-spacing:0.000000px;}
.ws4_c00021{word-spacing:4.608000px;}
.ws3_c00021{word-spacing:4.680000px;}
._1_c00021{margin-left:-1.375200px;}
._0_c00021{width:4.608000px;}
._2_c00021{width:846.000000px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:54.000000px;}
.fs1_c00021{font-size:72.000000px;}
.fs2_c00021{font-size:83.880000px;}
.y0_c00021{bottom:0.000000px;}
.ya_c00021{bottom:4.140000px;}
.y8_c00021{bottom:4.590000px;}
.yc_c00021{bottom:24.840000px;}
.y12_c00021{bottom:915.480000px;}
.y11_c00021{bottom:936.180000px;}
.y10_c00021{bottom:953.460000px;}
.yf_c00021{bottom:974.880000px;}
.ye_c00021{bottom:996.390000px;}
.yb_c00021{bottom:1017.810000px;}
.yd_c00021{bottom:1032.300000px;}
.y9_c00021{bottom:1059.930000px;}
.y7_c00021{bottom:1081.350000px;}
.y6_c00021{bottom:1110.420000px;}
.y5_c00021{bottom:1131.120000px;}
.y4_c00021{bottom:1151.005500px;}
.y3_c00021{bottom:1166.490000px;}
.y2_c00021{bottom:1182.055500px;}
.y1_c00021{bottom:1197.540000px;}
.h9_c00021{height:20.700000px;}
.h7_c00021{height:20.701500px;}
.h5_c00021{height:24.210000px;}
.h8_c00021{height:41.400000px;}
.h3_c00021{height:52.971680px;}
.h2_c00021{height:52.998047px;}
.h4_c00021{height:70.664062px;}
.h6_c00021{height:84.535312px;}
.h0_c00021{height:1262.880000px;}
.h1_c00021{height:1263.000000px;}
.w4_c00021{width:55.708500px;}
.w3_c00021{width:509.578500px;}
.w2_c00021{width:566.008500px;}
.w0_c00021{width:893.070000px;}
.w1_c00021{width:893.250000px;}
.x0_c00021{left:0.000000px;}
.x5_c00021{left:7.740000px;}
.x8_c00021{left:21.060000px;}
.x2_c00021{left:127.620000px;}
.x3_c00021{left:159.930000px;}
.x4_c00021{left:247.770000px;}
.x1_c00021{left:446.580000px;}
.x7_c00021{left:669.420000px;}
.x6_c00021{left:690.480000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls1_c00021{letter-spacing:0.000000pt;}
.ls2_c00021{letter-spacing:0.064000pt;}
.ls0_c00021{letter-spacing:0.149120pt;}
.ws0_c00021{word-spacing:-18.789120pt;}
.ws1_c00021{word-spacing:-16.064000pt;}
.ws5_c00021{word-spacing:-0.064000pt;}
.ws2_c00021{word-spacing:0.000000pt;}
.ws4_c00021{word-spacing:4.096000pt;}
.ws3_c00021{word-spacing:4.160000pt;}
._1_c00021{margin-left:-1.222400pt;}
._0_c00021{width:4.096000pt;}
._2_c00021{width:752.000000pt;}
.fs0_c00021{font-size:48.000000pt;}
.fs1_c00021{font-size:64.000000pt;}
.fs2_c00021{font-size:74.560000pt;}
.y0_c00021{bottom:0.000000pt;}
.ya_c00021{bottom:3.680000pt;}
.y8_c00021{bottom:4.080000pt;}
.yc_c00021{bottom:22.080000pt;}
.y12_c00021{bottom:813.760000pt;}
.y11_c00021{bottom:832.160000pt;}
.y10_c00021{bottom:847.520000pt;}
.yf_c00021{bottom:866.560000pt;}
.ye_c00021{bottom:885.680000pt;}
.yb_c00021{bottom:904.720000pt;}
.yd_c00021{bottom:917.600000pt;}
.y9_c00021{bottom:942.160000pt;}
.y7_c00021{bottom:961.200000pt;}
.y6_c00021{bottom:987.040000pt;}
.y5_c00021{bottom:1005.440000pt;}
.y4_c00021{bottom:1023.116000pt;}
.y3_c00021{bottom:1036.880000pt;}
.y2_c00021{bottom:1050.716000pt;}
.y1_c00021{bottom:1064.480000pt;}
.h9_c00021{height:18.400000pt;}
.h7_c00021{height:18.401333pt;}
.h5_c00021{height:21.520000pt;}
.h8_c00021{height:36.800000pt;}
.h3_c00021{height:47.085938pt;}
.h2_c00021{height:47.109375pt;}
.h4_c00021{height:62.812500pt;}
.h6_c00021{height:75.142500pt;}
.h0_c00021{height:1122.560000pt;}
.h1_c00021{height:1122.666667pt;}
.w4_c00021{width:49.518667pt;}
.w3_c00021{width:452.958667pt;}
.w2_c00021{width:503.118667pt;}
.w0_c00021{width:793.840000pt;}
.w1_c00021{width:794.000000pt;}
.x0_c00021{left:0.000000pt;}
.x5_c00021{left:6.880000pt;}
.x8_c00021{left:18.720000pt;}
.x2_c00021{left:113.440000pt;}
.x3_c00021{left:142.160000pt;}
.x4_c00021{left:220.240000pt;}
.x1_c00021{left:396.960000pt;}
.x7_c00021{left:595.040000pt;}
.x6_c00021{left:613.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_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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
._0_c00022{width:846.000000px;}
.fc0_c00022{color:rgb(0,0,0);}
.fs0_c00022{font-size:54.000000px;}
.fs1_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y6_c00022{bottom:1110.420000px;}
.y5_c00022{bottom:1131.120000px;}
.y4_c00022{bottom:1151.005500px;}
.y3_c00022{bottom:1166.490000px;}
.y2_c00022{bottom:1182.055500px;}
.y1_c00022{bottom:1197.540000px;}
.h3_c00022{height:52.971680px;}
.h2_c00022{height:52.998047px;}
.h4_c00022{height:70.664062px;}
.h0_c00022{height:1262.880000px;}
.h1_c00022{height:1263.000000px;}
.w0_c00022{width:893.070000px;}
.w1_c00022{width:893.250000px;}
.x0_c00022{left:0.000000px;}
.x2_c00022{left:127.620000px;}
.x1_c00022{left:446.580000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
._0_c00022{width:752.000000pt;}
.fs0_c00022{font-size:48.000000pt;}
.fs1_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y6_c00022{bottom:987.040000pt;}
.y5_c00022{bottom:1005.440000pt;}
.y4_c00022{bottom:1023.116000pt;}
.y3_c00022{bottom:1036.880000pt;}
.y2_c00022{bottom:1050.716000pt;}
.y1_c00022{bottom:1064.480000pt;}
.h3_c00022{height:47.085938pt;}
.h2_c00022{height:47.109375pt;}
.h4_c00022{height:62.812500pt;}
.h0_c00022{height:1122.560000pt;}
.h1_c00022{height:1122.666667pt;}
.w0_c00022{width:793.840000pt;}
.w1_c00022{width:794.000000pt;}
.x0_c00022{left:0.000000pt;}
.x2_c00022{left:113.440000pt;}
.x1_c00022{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c47279ff0b16d16fbceac65.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_8296f4a1b555f4972934f290.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00023{letter-spacing:-0.360000px;}
.ls9_c00023{letter-spacing:-0.216000px;}
.lsa_c00023{letter-spacing:-0.144000px;}
.ls7_c00023{letter-spacing:0.000000px;}
.ls3_c00023{letter-spacing:0.072000px;}
.ls1_c00023{letter-spacing:0.144000px;}
.ls0_c00023{letter-spacing:0.167760px;}
.ls5_c00023{letter-spacing:3.600000px;}
.ls4_c00023{letter-spacing:15.120000px;}
.ls6_c00023{letter-spacing:19.440000px;}
.ls2_c00023{letter-spacing:21.960000px;}
.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;}
}
.ws3_c00023{word-spacing:-18.144000px;}
.ws1_c00023{word-spacing:-18.072000px;}
.ws0_c00023{word-spacing:-18.000000px;}
.ws5_c00023{word-spacing:-17.856000px;}
.ws4_c00023{word-spacing:-17.784000px;}
.ws2_c00023{word-spacing:-17.640000px;}
.wsf_c00023{word-spacing:-0.504000px;}
.ws16_c00023{word-spacing:-0.432000px;}
.ws7_c00023{word-spacing:-0.251640px;}
.wsc_c00023{word-spacing:-0.144000px;}
.wsb_c00023{word-spacing:-0.072000px;}
.ws6_c00023{word-spacing:0.000000px;}
.ws2d_c00023{word-spacing:0.288000px;}
.ws1f_c00023{word-spacing:0.720000px;}
.ws21_c00023{word-spacing:2.376000px;}
.ws20_c00023{word-spacing:2.448000px;}
.ws24_c00023{word-spacing:2.808000px;}
.ws25_c00023{word-spacing:3.096000px;}
.ws26_c00023{word-spacing:3.528000px;}
.ws27_c00023{word-spacing:3.600000px;}
.ws2a_c00023{word-spacing:3.816000px;}
.ws2b_c00023{word-spacing:3.960000px;}
.ws1d_c00023{word-spacing:4.536000px;}
.ws1e_c00023{word-spacing:4.680000px;}
.ws1a_c00023{word-spacing:5.616000px;}
.ws1c_c00023{word-spacing:5.688000px;}
.ws1b_c00023{word-spacing:5.760000px;}
.ws31_c00023{word-spacing:6.048000px;}
.ws30_c00023{word-spacing:6.120000px;}
.ws22_c00023{word-spacing:10.296000px;}
.ws23_c00023{word-spacing:10.368000px;}
.wsd_c00023{word-spacing:14.976000px;}
.ws10_c00023{word-spacing:15.048000px;}
.wse_c00023{word-spacing:15.120000px;}
.ws2c_c00023{word-spacing:17.928000px;}
.ws2f_c00023{word-spacing:19.368000px;}
.ws2e_c00023{word-spacing:19.440000px;}
.ws9_c00023{word-spacing:21.600000px;}
.ws8_c00023{word-spacing:21.816000px;}
.wsa_c00023{word-spacing:21.888000px;}
.ws29_c00023{word-spacing:22.320000px;}
.ws28_c00023{word-spacing:22.608000px;}
.ws11_c00023{word-spacing:27.720000px;}
.ws14_c00023{word-spacing:28.296000px;}
.ws15_c00023{word-spacing:28.368000px;}
.ws18_c00023{word-spacing:43.488000px;}
.ws17_c00023{word-spacing:43.776000px;}
.ws19_c00023{word-spacing:43.920000px;}
.ws12_c00023{word-spacing:53.136000px;}
.ws13_c00023{word-spacing:53.280000px;}
._0_c00023{margin-left:-1.073664px;}
._2_c00023{width:1.080000px;}
._b_c00023{width:3.011328px;}
._9_c00023{width:4.536000px;}
._8_c00023{width:5.616000px;}
._a_c00023{width:10.656000px;}
._3_c00023{width:14.832000px;}
._c_c00023{width:19.656000px;}
._1_c00023{width:21.672000px;}
._4_c00023{width:27.936000px;}
._6_c00023{width:29.016000px;}
._7_c00023{width:44.496000px;}
._5_c00023{width:53.424000px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:54.000000px;}
.fs1_c00023{font-size:72.000000px;}
.fs2_c00023{font-size:83.880000px;}
.y0_c00023{bottom:0.000000px;}
.ye_c00023{bottom:4.050000px;}
.y9_c00023{bottom:4.140000px;}
.y7_c00023{bottom:4.590000px;}
.y1f_c00023{bottom:24.750000px;}
.yb_c00023{bottom:24.840000px;}
.y26_c00023{bottom:45.540000px;}
.y36_c00023{bottom:110.520000px;}
.y37_c00023{bottom:125.010000px;}
.y34_c00023{bottom:152.640000px;}
.y35_c00023{bottom:167.130000px;}
.y32_c00023{bottom:194.850000px;}
.y33_c00023{bottom:209.340000px;}
.y30_c00023{bottom:236.970000px;}
.y31_c00023{bottom:261.810000px;}
.y2e_c00023{bottom:299.790000px;}
.y2f_c00023{bottom:314.280000px;}
.y2c_c00023{bottom:341.910000px;}
.y2d_c00023{bottom:356.400000px;}
.y2a_c00023{bottom:384.120000px;}
.y2b_c00023{bottom:408.960000px;}
.y28_c00023{bottom:446.940000px;}
.y29_c00023{bottom:471.780000px;}
.y25_c00023{bottom:509.760000px;}
.y27_c00023{bottom:534.600000px;}
.y24_c00023{bottom:572.670000px;}
.y22_c00023{bottom:594.090000px;}
.y23_c00023{bottom:608.580000px;}
.y21_c00023{bottom:636.210000px;}
.y1e_c00023{bottom:657.720000px;}
.y20_c00023{bottom:672.120000px;}
.y1c_c00023{bottom:699.840000px;}
.y1d_c00023{bottom:714.330000px;}
.y1a_c00023{bottom:741.960000px;}
.y1b_c00023{bottom:756.450000px;}
.y18_c00023{bottom:784.080000px;}
.y19_c00023{bottom:798.570000px;}
.y16_c00023{bottom:826.290000px;}
.y17_c00023{bottom:840.780000px;}
.y15_c00023{bottom:868.410000px;}
.y13_c00023{bottom:889.830000px;}
.y14_c00023{bottom:904.320000px;}
.y12_c00023{bottom:932.040000px;}
.y10_c00023{bottom:953.460000px;}
.y11_c00023{bottom:967.950000px;}
.yf_c00023{bottom:995.580000px;}
.yd_c00023{bottom:1017.090000px;}
.ya_c00023{bottom:1038.510000px;}
.yc_c00023{bottom:1053.000000px;}
.y8_c00023{bottom:1080.630000px;}
.y6_c00023{bottom:1102.050000px;}
.y5_c00023{bottom:1131.120000px;}
.y4_c00023{bottom:1151.005500px;}
.y3_c00023{bottom:1166.490000px;}
.y2_c00023{bottom:1182.055500px;}
.y1_c00023{bottom:1197.540000px;}
.h9_c00023{height:20.610000px;}
.h7_c00023{height:20.700000px;}
.h5_c00023{height:24.211500px;}
.hb_c00023{height:41.310000px;}
.h8_c00023{height:41.398500px;}
.ha_c00023{height:41.400000px;}
.h3_c00023{height:52.971680px;}
.h2_c00023{height:52.998047px;}
.hc_c00023{height:62.100000px;}
.h4_c00023{height:70.664062px;}
.h6_c00023{height:84.535312px;}
.h0_c00023{height:1262.880000px;}
.h1_c00023{height:1263.000000px;}
.w4_c00023{width:62.640000px;}
.w3_c00023{width:509.580000px;}
.w2_c00023{width:572.940000px;}
.w0_c00023{width:893.070000px;}
.w1_c00023{width:893.250000px;}
.x0_c00023{left:0.000000px;}
.x5_c00023{left:7.740000px;}
.x8_c00023{left:36.900000px;}
.x2_c00023{left:127.620000px;}
.x4_c00023{left:158.400000px;}
.x3_c00023{left:160.290000px;}
.x9_c00023{left:168.030000px;}
.xa_c00023{left:172.170000px;}
.x1_c00023{left:446.580000px;}
.x7_c00023{left:670.590000px;}
.xb_c00023{left:698.490000px;}
.x6_c00023{left:707.490000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls8_c00023{letter-spacing:-0.320000pt;}
.ls9_c00023{letter-spacing:-0.192000pt;}
.lsa_c00023{letter-spacing:-0.128000pt;}
.ls7_c00023{letter-spacing:0.000000pt;}
.ls3_c00023{letter-spacing:0.064000pt;}
.ls1_c00023{letter-spacing:0.128000pt;}
.ls0_c00023{letter-spacing:0.149120pt;}
.ls5_c00023{letter-spacing:3.200000pt;}
.ls4_c00023{letter-spacing:13.440000pt;}
.ls6_c00023{letter-spacing:17.280000pt;}
.ls2_c00023{letter-spacing:19.520000pt;}
.ws3_c00023{word-spacing:-16.128000pt;}
.ws1_c00023{word-spacing:-16.064000pt;}
.ws0_c00023{word-spacing:-16.000000pt;}
.ws5_c00023{word-spacing:-15.872000pt;}
.ws4_c00023{word-spacing:-15.808000pt;}
.ws2_c00023{word-spacing:-15.680000pt;}
.wsf_c00023{word-spacing:-0.448000pt;}
.ws16_c00023{word-spacing:-0.384000pt;}
.ws7_c00023{word-spacing:-0.223680pt;}
.wsc_c00023{word-spacing:-0.128000pt;}
.wsb_c00023{word-spacing:-0.064000pt;}
.ws6_c00023{word-spacing:0.000000pt;}
.ws2d_c00023{word-spacing:0.256000pt;}
.ws1f_c00023{word-spacing:0.640000pt;}
.ws21_c00023{word-spacing:2.112000pt;}
.ws20_c00023{word-spacing:2.176000pt;}
.ws24_c00023{word-spacing:2.496000pt;}
.ws25_c00023{word-spacing:2.752000pt;}
.ws26_c00023{word-spacing:3.136000pt;}
.ws27_c00023{word-spacing:3.200000pt;}
.ws2a_c00023{word-spacing:3.392000pt;}
.ws2b_c00023{word-spacing:3.520000pt;}
.ws1d_c00023{word-spacing:4.032000pt;}
.ws1e_c00023{word-spacing:4.160000pt;}
.ws1a_c00023{word-spacing:4.992000pt;}
.ws1c_c00023{word-spacing:5.056000pt;}
.ws1b_c00023{word-spacing:5.120000pt;}
.ws31_c00023{word-spacing:5.376000pt;}
.ws30_c00023{word-spacing:5.440000pt;}
.ws22_c00023{word-spacing:9.152000pt;}
.ws23_c00023{word-spacing:9.216000pt;}
.wsd_c00023{word-spacing:13.312000pt;}
.ws10_c00023{word-spacing:13.376000pt;}
.wse_c00023{word-spacing:13.440000pt;}
.ws2c_c00023{word-spacing:15.936000pt;}
.ws2f_c00023{word-spacing:17.216000pt;}
.ws2e_c00023{word-spacing:17.280000pt;}
.ws9_c00023{word-spacing:19.200000pt;}
.ws8_c00023{word-spacing:19.392000pt;}
.wsa_c00023{word-spacing:19.456000pt;}
.ws29_c00023{word-spacing:19.840000pt;}
.ws28_c00023{word-spacing:20.096000pt;}
.ws11_c00023{word-spacing:24.640000pt;}
.ws14_c00023{word-spacing:25.152000pt;}
.ws15_c00023{word-spacing:25.216000pt;}
.ws18_c00023{word-spacing:38.656000pt;}
.ws17_c00023{word-spacing:38.912000pt;}
.ws19_c00023{word-spacing:39.040000pt;}
.ws12_c00023{word-spacing:47.232000pt;}
.ws13_c00023{word-spacing:47.360000pt;}
._0_c00023{margin-left:-0.954368pt;}
._2_c00023{width:0.960000pt;}
._b_c00023{width:2.676736pt;}
._9_c00023{width:4.032000pt;}
._8_c00023{width:4.992000pt;}
._a_c00023{width:9.472000pt;}
._3_c00023{width:13.184000pt;}
._c_c00023{width:17.472000pt;}
._1_c00023{width:19.264000pt;}
._4_c00023{width:24.832000pt;}
._6_c00023{width:25.792000pt;}
._7_c00023{width:39.552000pt;}
._5_c00023{width:47.488000pt;}
.fs0_c00023{font-size:48.000000pt;}
.fs1_c00023{font-size:64.000000pt;}
.fs2_c00023{font-size:74.560000pt;}
.y0_c00023{bottom:0.000000pt;}
.ye_c00023{bottom:3.600000pt;}
.y9_c00023{bottom:3.680000pt;}
.y7_c00023{bottom:4.080000pt;}
.y1f_c00023{bottom:22.000000pt;}
.yb_c00023{bottom:22.080000pt;}
.y26_c00023{bottom:40.480000pt;}
.y36_c00023{bottom:98.240000pt;}
.y37_c00023{bottom:111.120000pt;}
.y34_c00023{bottom:135.680000pt;}
.y35_c00023{bottom:148.560000pt;}
.y32_c00023{bottom:173.200000pt;}
.y33_c00023{bottom:186.080000pt;}
.y30_c00023{bottom:210.640000pt;}
.y31_c00023{bottom:232.720000pt;}
.y2e_c00023{bottom:266.480000pt;}
.y2f_c00023{bottom:279.360000pt;}
.y2c_c00023{bottom:303.920000pt;}
.y2d_c00023{bottom:316.800000pt;}
.y2a_c00023{bottom:341.440000pt;}
.y2b_c00023{bottom:363.520000pt;}
.y28_c00023{bottom:397.280000pt;}
.y29_c00023{bottom:419.360000pt;}
.y25_c00023{bottom:453.120000pt;}
.y27_c00023{bottom:475.200000pt;}
.y24_c00023{bottom:509.040000pt;}
.y22_c00023{bottom:528.080000pt;}
.y23_c00023{bottom:540.960000pt;}
.y21_c00023{bottom:565.520000pt;}
.y1e_c00023{bottom:584.640000pt;}
.y20_c00023{bottom:597.440000pt;}
.y1c_c00023{bottom:622.080000pt;}
.y1d_c00023{bottom:634.960000pt;}
.y1a_c00023{bottom:659.520000pt;}
.y1b_c00023{bottom:672.400000pt;}
.y18_c00023{bottom:696.960000pt;}
.y19_c00023{bottom:709.840000pt;}
.y16_c00023{bottom:734.480000pt;}
.y17_c00023{bottom:747.360000pt;}
.y15_c00023{bottom:771.920000pt;}
.y13_c00023{bottom:790.960000pt;}
.y14_c00023{bottom:803.840000pt;}
.y12_c00023{bottom:828.480000pt;}
.y10_c00023{bottom:847.520000pt;}
.y11_c00023{bottom:860.400000pt;}
.yf_c00023{bottom:884.960000pt;}
.yd_c00023{bottom:904.080000pt;}
.ya_c00023{bottom:923.120000pt;}
.yc_c00023{bottom:936.000000pt;}
.y8_c00023{bottom:960.560000pt;}
.y6_c00023{bottom:979.600000pt;}
.y5_c00023{bottom:1005.440000pt;}
.y4_c00023{bottom:1023.116000pt;}
.y3_c00023{bottom:1036.880000pt;}
.y2_c00023{bottom:1050.716000pt;}
.y1_c00023{bottom:1064.480000pt;}
.h9_c00023{height:18.320000pt;}
.h7_c00023{height:18.400000pt;}
.h5_c00023{height:21.521333pt;}
.hb_c00023{height:36.720000pt;}
.h8_c00023{height:36.798667pt;}
.ha_c00023{height:36.800000pt;}
.h3_c00023{height:47.085938pt;}
.h2_c00023{height:47.109375pt;}
.hc_c00023{height:55.200000pt;}
.h4_c00023{height:62.812500pt;}
.h6_c00023{height:75.142500pt;}
.h0_c00023{height:1122.560000pt;}
.h1_c00023{height:1122.666667pt;}
.w4_c00023{width:55.680000pt;}
.w3_c00023{width:452.960000pt;}
.w2_c00023{width:509.280000pt;}
.w0_c00023{width:793.840000pt;}
.w1_c00023{width:794.000000pt;}
.x0_c00023{left:0.000000pt;}
.x5_c00023{left:6.880000pt;}
.x8_c00023{left:32.800000pt;}
.x2_c00023{left:113.440000pt;}
.x4_c00023{left:140.800000pt;}
.x3_c00023{left:142.480000pt;}
.x9_c00023{left:149.360000pt;}
.xa_c00023{left:153.040000pt;}
.x1_c00023{left:396.960000pt;}
.x7_c00023{left:596.080000pt;}
.xb_c00023{left:620.880000pt;}
.x6_c00023{left:628.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13cc2f4e20526634d50199fa.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00024{letter-spacing:-0.360000px;}
.ls7_c00024{letter-spacing:-0.288000px;}
.ls3_c00024{letter-spacing:-0.144000px;}
.ls6_c00024{letter-spacing:-0.072000px;}
.ls2_c00024{letter-spacing:0.000000px;}
.ls1_c00024{letter-spacing:0.072000px;}
.ls4_c00024{letter-spacing:0.144000px;}
.ls0_c00024{letter-spacing:6.840000px;}
.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;}
}
.ws4_c00024{word-spacing:-18.144000px;}
.ws1_c00024{word-spacing:-18.072000px;}
.ws3_c00024{word-spacing:-18.000000px;}
.ws0_c00024{word-spacing:-17.856000px;}
.ws5_c00024{word-spacing:-17.712000px;}
.ws2_c00024{word-spacing:-17.640000px;}
.ws15_c00024{word-spacing:-0.504000px;}
.ws14_c00024{word-spacing:-0.432000px;}
.ws13_c00024{word-spacing:-0.144000px;}
.wsc_c00024{word-spacing:-0.072000px;}
.ws6_c00024{word-spacing:0.000000px;}
.ws18_c00024{word-spacing:0.072000px;}
.ws1e_c00024{word-spacing:0.216000px;}
.ws10_c00024{word-spacing:0.288000px;}
.ws11_c00024{word-spacing:0.360000px;}
.ws19_c00024{word-spacing:0.648000px;}
.ws23_c00024{word-spacing:2.088000px;}
.ws22_c00024{word-spacing:2.160000px;}
.ws1d_c00024{word-spacing:2.448000px;}
.ws1c_c00024{word-spacing:2.880000px;}
.wsa_c00024{word-spacing:3.888000px;}
.ws9_c00024{word-spacing:3.960000px;}
.ws16_c00024{word-spacing:4.680000px;}
.wsb_c00024{word-spacing:6.840000px;}
.ws12_c00024{word-spacing:7.128000px;}
.ws1a_c00024{word-spacing:9.576000px;}
.ws1b_c00024{word-spacing:9.720000px;}
.ws8_c00024{word-spacing:10.368000px;}
.ws7_c00024{word-spacing:10.800000px;}
.ws24_c00024{word-spacing:11.088000px;}
.ws25_c00024{word-spacing:11.160000px;}
.ws1f_c00024{word-spacing:14.328000px;}
.wsf_c00024{word-spacing:18.000000px;}
.ws21_c00024{word-spacing:20.088000px;}
.ws20_c00024{word-spacing:20.160000px;}
.ws17_c00024{word-spacing:32.328000px;}
.wsd_c00024{word-spacing:40.176000px;}
.wse_c00024{word-spacing:40.320000px;}
._1_c00024{margin-left:-1.015200px;}
._5_c00024{width:1.224000px;}
._9_c00024{width:2.880000px;}
._2_c00024{width:4.032000px;}
._6_c00024{width:5.400000px;}
._3_c00024{width:6.768000px;}
._8_c00024{width:8.863200px;}
._0_c00024{width:10.656000px;}
._7_c00024{width:32.133600px;}
._4_c00024{width:40.327200px;}
._a_c00024{width:846.000000px;}
.fc0_c00024{color:rgb(0,0,0);}
.fs0_c00024{font-size:54.000000px;}
.fs1_c00024{font-size:72.000000px;}
.y0_c00024{bottom:0.000000px;}
.y8_c00024{bottom:4.140000px;}
.y16_c00024{bottom:24.839850px;}
.y7_c00024{bottom:24.840000px;}
.y11_c00024{bottom:45.540000px;}
.y30_c00024{bottom:142.560000px;}
.y2e_c00024{bottom:159.840000px;}
.y2f_c00024{bottom:184.680000px;}
.y2c_c00024{bottom:222.750000px;}
.y2d_c00024{bottom:237.240000px;}
.y2a_c00024{bottom:264.870000px;}
.y2b_c00024{bottom:289.710000px;}
.y28_c00024{bottom:327.690000px;}
.y29_c00024{bottom:352.530000px;}
.y26_c00024{bottom:390.510000px;}
.y27_c00024{bottom:405.000000px;}
.y24_c00024{bottom:432.720000px;}
.y25_c00024{bottom:457.560000px;}
.y22_c00024{bottom:495.540000px;}
.y23_c00024{bottom:510.030000px;}
.y20_c00024{bottom:537.660000px;}
.y21_c00024{bottom:552.150000px;}
.y1e_c00024{bottom:579.870000px;}
.y1f_c00024{bottom:604.710000px;}
.y1c_c00024{bottom:642.690000px;}
.y1d_c00024{bottom:657.180000px;}
.y1a_c00024{bottom:684.810000px;}
.y1b_c00024{bottom:699.300000px;}
.y18_c00024{bottom:726.930000px;}
.y19_c00024{bottom:741.420000px;}
.y15_c00024{bottom:769.140000px;}
.y17_c00024{bottom:783.630000px;}
.y13_c00024{bottom:811.260000px;}
.y14_c00024{bottom:825.750000px;}
.y10_c00024{bottom:853.380000px;}
.y12_c00024{bottom:878.220000px;}
.ye_c00024{bottom:916.290000px;}
.yf_c00024{bottom:930.780000px;}
.yd_c00024{bottom:958.410000px;}
.yc_c00024{bottom:1000.530000px;}
.ya_c00024{bottom:1042.650000px;}
.yb_c00024{bottom:1057.140000px;}
.y6_c00024{bottom:1084.860000px;}
.y9_c00024{bottom:1099.350000px;}
.y5_c00024{bottom:1131.120000px;}
.y4_c00024{bottom:1151.005500px;}
.y3_c00024{bottom:1166.490000px;}
.y2_c00024{bottom:1182.055500px;}
.y1_c00024{bottom:1197.540000px;}
.h7_c00024{height:41.398500px;}
.h5_c00024{height:41.400000px;}
.h3_c00024{height:52.971680px;}
.h2_c00024{height:52.998047px;}
.h6_c00024{height:62.100000px;}
.h4_c00024{height:70.664062px;}
.h0_c00024{height:1262.880000px;}
.h1_c00024{height:1263.000000px;}
.w3_c00024{width:62.640000px;}
.w2_c00024{width:509.580000px;}
.w0_c00024{width:893.070000px;}
.w1_c00024{width:893.250000px;}
.x0_c00024{left:0.000000px;}
.x4_c00024{left:7.740000px;}
.x7_c00024{left:27.900000px;}
.x2_c00024{left:127.620000px;}
.x3_c00024{left:160.290000px;}
.x8_c00024{left:168.030000px;}
.xa_c00024{left:295.470000px;}
.x9_c00024{left:394.470000px;}
.xb_c00024{left:400.410000px;}
.xc_c00024{left:405.180000px;}
.x1_c00024{left:446.580000px;}
.x6_c00024{left:670.590000px;}
.x5_c00024{left:698.490000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls5_c00024{letter-spacing:-0.320000pt;}
.ls7_c00024{letter-spacing:-0.256000pt;}
.ls3_c00024{letter-spacing:-0.128000pt;}
.ls6_c00024{letter-spacing:-0.064000pt;}
.ls2_c00024{letter-spacing:0.000000pt;}
.ls1_c00024{letter-spacing:0.064000pt;}
.ls4_c00024{letter-spacing:0.128000pt;}
.ls0_c00024{letter-spacing:6.080000pt;}
.ws4_c00024{word-spacing:-16.128000pt;}
.ws1_c00024{word-spacing:-16.064000pt;}
.ws3_c00024{word-spacing:-16.000000pt;}
.ws0_c00024{word-spacing:-15.872000pt;}
.ws5_c00024{word-spacing:-15.744000pt;}
.ws2_c00024{word-spacing:-15.680000pt;}
.ws15_c00024{word-spacing:-0.448000pt;}
.ws14_c00024{word-spacing:-0.384000pt;}
.ws13_c00024{word-spacing:-0.128000pt;}
.wsc_c00024{word-spacing:-0.064000pt;}
.ws6_c00024{word-spacing:0.000000pt;}
.ws18_c00024{word-spacing:0.064000pt;}
.ws1e_c00024{word-spacing:0.192000pt;}
.ws10_c00024{word-spacing:0.256000pt;}
.ws11_c00024{word-spacing:0.320000pt;}
.ws19_c00024{word-spacing:0.576000pt;}
.ws23_c00024{word-spacing:1.856000pt;}
.ws22_c00024{word-spacing:1.920000pt;}
.ws1d_c00024{word-spacing:2.176000pt;}
.ws1c_c00024{word-spacing:2.560000pt;}
.wsa_c00024{word-spacing:3.456000pt;}
.ws9_c00024{word-spacing:3.520000pt;}
.ws16_c00024{word-spacing:4.160000pt;}
.wsb_c00024{word-spacing:6.080000pt;}
.ws12_c00024{word-spacing:6.336000pt;}
.ws1a_c00024{word-spacing:8.512000pt;}
.ws1b_c00024{word-spacing:8.640000pt;}
.ws8_c00024{word-spacing:9.216000pt;}
.ws7_c00024{word-spacing:9.600000pt;}
.ws24_c00024{word-spacing:9.856000pt;}
.ws25_c00024{word-spacing:9.920000pt;}
.ws1f_c00024{word-spacing:12.736000pt;}
.wsf_c00024{word-spacing:16.000000pt;}
.ws21_c00024{word-spacing:17.856000pt;}
.ws20_c00024{word-spacing:17.920000pt;}
.ws17_c00024{word-spacing:28.736000pt;}
.wsd_c00024{word-spacing:35.712000pt;}
.wse_c00024{word-spacing:35.840000pt;}
._1_c00024{margin-left:-0.902400pt;}
._5_c00024{width:1.088000pt;}
._9_c00024{width:2.560000pt;}
._2_c00024{width:3.584000pt;}
._6_c00024{width:4.800000pt;}
._3_c00024{width:6.016000pt;}
._8_c00024{width:7.878400pt;}
._0_c00024{width:9.472000pt;}
._7_c00024{width:28.563200pt;}
._4_c00024{width:35.846400pt;}
._a_c00024{width:752.000000pt;}
.fs0_c00024{font-size:48.000000pt;}
.fs1_c00024{font-size:64.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y8_c00024{bottom:3.680000pt;}
.y16_c00024{bottom:22.079867pt;}
.y7_c00024{bottom:22.080000pt;}
.y11_c00024{bottom:40.480000pt;}
.y30_c00024{bottom:126.720000pt;}
.y2e_c00024{bottom:142.080000pt;}
.y2f_c00024{bottom:164.160000pt;}
.y2c_c00024{bottom:198.000000pt;}
.y2d_c00024{bottom:210.880000pt;}
.y2a_c00024{bottom:235.440000pt;}
.y2b_c00024{bottom:257.520000pt;}
.y28_c00024{bottom:291.280000pt;}
.y29_c00024{bottom:313.360000pt;}
.y26_c00024{bottom:347.120000pt;}
.y27_c00024{bottom:360.000000pt;}
.y24_c00024{bottom:384.640000pt;}
.y25_c00024{bottom:406.720000pt;}
.y22_c00024{bottom:440.480000pt;}
.y23_c00024{bottom:453.360000pt;}
.y20_c00024{bottom:477.920000pt;}
.y21_c00024{bottom:490.800000pt;}
.y1e_c00024{bottom:515.440000pt;}
.y1f_c00024{bottom:537.520000pt;}
.y1c_c00024{bottom:571.280000pt;}
.y1d_c00024{bottom:584.160000pt;}
.y1a_c00024{bottom:608.720000pt;}
.y1b_c00024{bottom:621.600000pt;}
.y18_c00024{bottom:646.160000pt;}
.y19_c00024{bottom:659.040000pt;}
.y15_c00024{bottom:683.680000pt;}
.y17_c00024{bottom:696.560000pt;}
.y13_c00024{bottom:721.120000pt;}
.y14_c00024{bottom:734.000000pt;}
.y10_c00024{bottom:758.560000pt;}
.y12_c00024{bottom:780.640000pt;}
.ye_c00024{bottom:814.480000pt;}
.yf_c00024{bottom:827.360000pt;}
.yd_c00024{bottom:851.920000pt;}
.yc_c00024{bottom:889.360000pt;}
.ya_c00024{bottom:926.800000pt;}
.yb_c00024{bottom:939.680000pt;}
.y6_c00024{bottom:964.320000pt;}
.y9_c00024{bottom:977.200000pt;}
.y5_c00024{bottom:1005.440000pt;}
.y4_c00024{bottom:1023.116000pt;}
.y3_c00024{bottom:1036.880000pt;}
.y2_c00024{bottom:1050.716000pt;}
.y1_c00024{bottom:1064.480000pt;}
.h7_c00024{height:36.798667pt;}
.h5_c00024{height:36.800000pt;}
.h3_c00024{height:47.085938pt;}
.h2_c00024{height:47.109375pt;}
.h6_c00024{height:55.200000pt;}
.h4_c00024{height:62.812500pt;}
.h0_c00024{height:1122.560000pt;}
.h1_c00024{height:1122.666667pt;}
.w3_c00024{width:55.680000pt;}
.w2_c00024{width:452.960000pt;}
.w0_c00024{width:793.840000pt;}
.w1_c00024{width:794.000000pt;}
.x0_c00024{left:0.000000pt;}
.x4_c00024{left:6.880000pt;}
.x7_c00024{left:24.800000pt;}
.x2_c00024{left:113.440000pt;}
.x3_c00024{left:142.480000pt;}
.x8_c00024{left:149.360000pt;}
.xa_c00024{left:262.640000pt;}
.x9_c00024{left:350.640000pt;}
.xb_c00024{left:355.920000pt;}
.xc_c00024{left:360.160000pt;}
.x1_c00024{left:396.960000pt;}
.x6_c00024{left:596.080000pt;}
.x5_c00024{left:620.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf6c9606f543b5f29c24f93.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00025{letter-spacing:-0.288000px;}
.ls3_c00025{letter-spacing:0.000000px;}
.ls4_c00025{letter-spacing:0.072000px;}
.ls1_c00025{letter-spacing:0.144000px;}
.ls0_c00025{letter-spacing:1.800000px;}
.ls2_c00025{letter-spacing:30.600000px;}
.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;}
}
.ws1_c00025{word-spacing:-18.144000px;}
.ws0_c00025{word-spacing:-18.072000px;}
.ws8_c00025{word-spacing:-0.144000px;}
.ws10_c00025{word-spacing:-0.072000px;}
.ws2_c00025{word-spacing:0.000000px;}
.ws6_c00025{word-spacing:1.728000px;}
.ws5_c00025{word-spacing:1.800000px;}
.wsb_c00025{word-spacing:2.808000px;}
.wsa_c00025{word-spacing:2.880000px;}
.wsf_c00025{word-spacing:3.168000px;}
.wsc_c00025{word-spacing:6.408000px;}
.wse_c00025{word-spacing:6.480000px;}
.ws4_c00025{word-spacing:10.728000px;}
.ws3_c00025{word-spacing:10.800000px;}
.wsd_c00025{word-spacing:22.320000px;}
.ws11_c00025{word-spacing:30.456000px;}
.ws13_c00025{word-spacing:30.528000px;}
.ws14_c00025{word-spacing:30.600000px;}
.ws12_c00025{word-spacing:30.888000px;}
.ws9_c00025{word-spacing:35.928000px;}
.ws7_c00025{word-spacing:36.000000px;}
._1_c00025{margin-left:-1.015200px;}
._5_c00025{width:1.238400px;}
._3_c00025{width:2.592000px;}
._4_c00025{width:6.696000px;}
._0_c00025{width:10.440000px;}
._6_c00025{width:30.960000px;}
._2_c00025{width:36.072000px;}
._7_c00025{width:839.992680px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs0_c00025{font-size:54.000000px;}
.fs1_c00025{font-size:72.000000px;}
.fs2_c00025{font-size:96.120000px;}
.y0_c00025{bottom:0.000000px;}
.yc_c00025{bottom:4.050000px;}
.y9_c00025{bottom:4.140000px;}
.yb_c00025{bottom:24.750000px;}
.y18_c00025{bottom:24.839850px;}
.yf_c00025{bottom:24.840000px;}
.y7_c00025{bottom:45.540000px;}
.y21_c00025{bottom:592.015500px;}
.y20_c00025{bottom:619.650000px;}
.y1e_c00025{bottom:642.690000px;}
.y1f_c00025{bottom:657.180000px;}
.y1c_c00025{bottom:684.810000px;}
.y1d_c00025{bottom:699.300000px;}
.y1a_c00025{bottom:726.930000px;}
.y1b_c00025{bottom:741.420000px;}
.y17_c00025{bottom:769.140000px;}
.y19_c00025{bottom:783.630000px;}
.y16_c00025{bottom:811.260000px;}
.y14_c00025{bottom:832.680000px;}
.y15_c00025{bottom:857.520000px;}
.y12_c00025{bottom:895.590000px;}
.y13_c00025{bottom:920.430000px;}
.y11_c00025{bottom:958.410000px;}
.ye_c00025{bottom:979.830000px;}
.y10_c00025{bottom:994.320000px;}
.ya_c00025{bottom:1022.040000px;}
.yd_c00025{bottom:1036.440000px;}
.y6_c00025{bottom:1064.160000px;}
.y8_c00025{bottom:1089.000000px;}
.y5_c00025{bottom:1131.120000px;}
.y4_c00025{bottom:1151.005500px;}
.y3_c00025{bottom:1166.490000px;}
.y2_c00025{bottom:1182.055500px;}
.y1_c00025{bottom:1197.540000px;}
.h8_c00025{height:20.701500px;}
.h6_c00025{height:41.310000px;}
.h9_c00025{height:41.398500px;}
.h7_c00025{height:41.400000px;}
.h3_c00025{height:52.971680px;}
.h2_c00025{height:52.998047px;}
.h5_c00025{height:62.100000px;}
.h4_c00025{height:70.664062px;}
.ha_c00025{height:96.870938px;}
.h0_c00025{height:1262.880000px;}
.h1_c00025{height:1263.000000px;}
.w3_c00025{width:62.640000px;}
.w2_c00025{width:509.580000px;}
.w0_c00025{width:893.070000px;}
.w1_c00025{width:893.250000px;}
.x0_c00025{left:0.000000px;}
.x4_c00025{left:7.740000px;}
.x8_c00025{left:27.900000px;}
.x2_c00025{left:127.620000px;}
.x3_c00025{left:160.290000px;}
.x5_c00025{left:168.030000px;}
.x1_c00025{left:446.580000px;}
.x7_c00025{left:670.590000px;}
.x6_c00025{left:698.490000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls5_c00025{letter-spacing:-0.256000pt;}
.ls3_c00025{letter-spacing:0.000000pt;}
.ls4_c00025{letter-spacing:0.064000pt;}
.ls1_c00025{letter-spacing:0.128000pt;}
.ls0_c00025{letter-spacing:1.600000pt;}
.ls2_c00025{letter-spacing:27.200000pt;}
.ws1_c00025{word-spacing:-16.128000pt;}
.ws0_c00025{word-spacing:-16.064000pt;}
.ws8_c00025{word-spacing:-0.128000pt;}
.ws10_c00025{word-spacing:-0.064000pt;}
.ws2_c00025{word-spacing:0.000000pt;}
.ws6_c00025{word-spacing:1.536000pt;}
.ws5_c00025{word-spacing:1.600000pt;}
.wsb_c00025{word-spacing:2.496000pt;}
.wsa_c00025{word-spacing:2.560000pt;}
.wsf_c00025{word-spacing:2.816000pt;}
.wsc_c00025{word-spacing:5.696000pt;}
.wse_c00025{word-spacing:5.760000pt;}
.ws4_c00025{word-spacing:9.536000pt;}
.ws3_c00025{word-spacing:9.600000pt;}
.wsd_c00025{word-spacing:19.840000pt;}
.ws11_c00025{word-spacing:27.072000pt;}
.ws13_c00025{word-spacing:27.136000pt;}
.ws14_c00025{word-spacing:27.200000pt;}
.ws12_c00025{word-spacing:27.456000pt;}
.ws9_c00025{word-spacing:31.936000pt;}
.ws7_c00025{word-spacing:32.000000pt;}
._1_c00025{margin-left:-0.902400pt;}
._5_c00025{width:1.100800pt;}
._3_c00025{width:2.304000pt;}
._4_c00025{width:5.952000pt;}
._0_c00025{width:9.280000pt;}
._6_c00025{width:27.520000pt;}
._2_c00025{width:32.064000pt;}
._7_c00025{width:746.660160pt;}
.fs0_c00025{font-size:48.000000pt;}
.fs1_c00025{font-size:64.000000pt;}
.fs2_c00025{font-size:85.440000pt;}
.y0_c00025{bottom:0.000000pt;}
.yc_c00025{bottom:3.600000pt;}
.y9_c00025{bottom:3.680000pt;}
.yb_c00025{bottom:22.000000pt;}
.y18_c00025{bottom:22.079867pt;}
.yf_c00025{bottom:22.080000pt;}
.y7_c00025{bottom:40.480000pt;}
.y21_c00025{bottom:526.236000pt;}
.y20_c00025{bottom:550.800000pt;}
.y1e_c00025{bottom:571.280000pt;}
.y1f_c00025{bottom:584.160000pt;}
.y1c_c00025{bottom:608.720000pt;}
.y1d_c00025{bottom:621.600000pt;}
.y1a_c00025{bottom:646.160000pt;}
.y1b_c00025{bottom:659.040000pt;}
.y17_c00025{bottom:683.680000pt;}
.y19_c00025{bottom:696.560000pt;}
.y16_c00025{bottom:721.120000pt;}
.y14_c00025{bottom:740.160000pt;}
.y15_c00025{bottom:762.240000pt;}
.y12_c00025{bottom:796.080000pt;}
.y13_c00025{bottom:818.160000pt;}
.y11_c00025{bottom:851.920000pt;}
.ye_c00025{bottom:870.960000pt;}
.y10_c00025{bottom:883.840000pt;}
.ya_c00025{bottom:908.480000pt;}
.yd_c00025{bottom:921.280000pt;}
.y6_c00025{bottom:945.920000pt;}
.y8_c00025{bottom:968.000000pt;}
.y5_c00025{bottom:1005.440000pt;}
.y4_c00025{bottom:1023.116000pt;}
.y3_c00025{bottom:1036.880000pt;}
.y2_c00025{bottom:1050.716000pt;}
.y1_c00025{bottom:1064.480000pt;}
.h8_c00025{height:18.401333pt;}
.h6_c00025{height:36.720000pt;}
.h9_c00025{height:36.798667pt;}
.h7_c00025{height:36.800000pt;}
.h3_c00025{height:47.085938pt;}
.h2_c00025{height:47.109375pt;}
.h5_c00025{height:55.200000pt;}
.h4_c00025{height:62.812500pt;}
.ha_c00025{height:86.107500pt;}
.h0_c00025{height:1122.560000pt;}
.h1_c00025{height:1122.666667pt;}
.w3_c00025{width:55.680000pt;}
.w2_c00025{width:452.960000pt;}
.w0_c00025{width:793.840000pt;}
.w1_c00025{width:794.000000pt;}
.x0_c00025{left:0.000000pt;}
.x4_c00025{left:6.880000pt;}
.x8_c00025{left:24.800000pt;}
.x2_c00025{left:113.440000pt;}
.x3_c00025{left:142.480000pt;}
.x5_c00025{left:149.360000pt;}
.x1_c00025{left:396.960000pt;}
.x7_c00025{left:596.080000pt;}
.x6_c00025{left:620.880000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00026{letter-spacing:0.000000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:0.000000px;}
._0_c00026{width:839.992680px;}
.fc0_c00026{color:rgb(0,0,0);}
.fs0_c00026{font-size:54.000000px;}
.fs1_c00026{font-size:72.000000px;}
.fs2_c00026{font-size:96.120000px;}
.y0_c00026{bottom:0.000000px;}
.y6_c00026{bottom:1104.660000px;}
.y5_c00026{bottom:1131.120000px;}
.y4_c00026{bottom:1151.005500px;}
.y3_c00026{bottom:1166.490000px;}
.y2_c00026{bottom:1182.055500px;}
.y1_c00026{bottom:1197.540000px;}
.h3_c00026{height:52.971680px;}
.h2_c00026{height:52.998047px;}
.h4_c00026{height:70.664062px;}
.h5_c00026{height:96.870938px;}
.h0_c00026{height:1262.880000px;}
.h1_c00026{height:1263.000000px;}
.w0_c00026{width:893.070000px;}
.w1_c00026{width:893.250000px;}
.x0_c00026{left:0.000000px;}
.x2_c00026{left:127.620000px;}
.x1_c00026{left:446.580000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:0.000000pt;}
._0_c00026{width:746.660160pt;}
.fs0_c00026{font-size:48.000000pt;}
.fs1_c00026{font-size:64.000000pt;}
.fs2_c00026{font-size:85.440000pt;}
.y0_c00026{bottom:0.000000pt;}
.y6_c00026{bottom:981.920000pt;}
.y5_c00026{bottom:1005.440000pt;}
.y4_c00026{bottom:1023.116000pt;}
.y3_c00026{bottom:1036.880000pt;}
.y2_c00026{bottom:1050.716000pt;}
.y1_c00026{bottom:1064.480000pt;}
.h3_c00026{height:47.085938pt;}
.h2_c00026{height:47.109375pt;}
.h4_c00026{height:62.812500pt;}
.h5_c00026{height:86.107500pt;}
.h0_c00026{height:1122.560000pt;}
.h1_c00026{height:1122.666667pt;}
.w0_c00026{width:793.840000pt;}
.w1_c00026{width:794.000000pt;}
.x0_c00026{left:0.000000pt;}
.x2_c00026{left:113.440000pt;}
.x1_c00026{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a923c63f18150c145d6975d.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00027;src:url('chunks/assets/font_61c3f823516c200899bd9542.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00027;src:url('chunks/assets/font_45726b5447422476fdb017c7.woff2')format("woff");}.ff4_c00027{font-family:ff4_c00027;line-height:3.333984;font-style: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:26.280000px;}
.lsa_c00027{letter-spacing:-0.360000px;}
.ls9_c00027{letter-spacing:-0.216000px;}
.ls6_c00027{letter-spacing:-0.144000px;}
.ls8_c00027{letter-spacing:-0.072000px;}
.ls5_c00027{letter-spacing:0.000000px;}
.ls7_c00027{letter-spacing:0.072000px;}
.ls1_c00027{letter-spacing:0.144000px;}
.ls0_c00027{letter-spacing:0.167760px;}
.ls2_c00027{letter-spacing:1.728000px;}
.ls3_c00027{letter-spacing:2.016000px;}
.ls4_c00027{letter-spacing:3.161520px;}
.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:-20.970000px;}
.ws3_c00027{word-spacing:-18.144000px;}
.ws5_c00027{word-spacing:-18.072000px;}
.ws2_c00027{word-spacing:-17.928000px;}
.ws1_c00027{word-spacing:-17.856000px;}
.ws4_c00027{word-spacing:-17.784000px;}
.ws6_c00027{word-spacing:-17.640000px;}
.wsb_c00027{word-spacing:-0.432000px;}
.ws8_c00027{word-spacing:-0.251640px;}
.wsa_c00027{word-spacing:-0.144000px;}
.ws9_c00027{word-spacing:-0.072000px;}
.ws7_c00027{word-spacing:0.000000px;}
._0_c00027{margin-left:-1.241424px;}
._1_c00027{width:1.152000px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs3_c00027{font-size:51.120000px;}
.fs0_c00027{font-size:54.000000px;}
.fs1_c00027{font-size:72.000000px;}
.fs2_c00027{font-size:83.880000px;}
.fs4_c00027{font-size:96.120000px;}
.y0_c00027{bottom:0.000000px;}
.y10_c00027{bottom:4.140000px;}
.y7_c00027{bottom:5.220000px;}
.y2e_c00027{bottom:6.210000px;}
.y2c_c00027{bottom:6.300000px;}
.y16_c00027{bottom:6.479850px;}
.yb_c00027{bottom:6.480000px;}
.y9_c00027{bottom:6.570000px;}
.yf_c00027{bottom:24.840000px;}
.y34_c00027{bottom:129.690000px;}
.y33_c00027{bottom:152.730000px;}
.y32_c00027{bottom:178.920000px;}
.y31_c00027{bottom:205.110000px;}
.y30_c00027{bottom:231.300000px;}
.y2f_c00027{bottom:257.490000px;}
.y2d_c00027{bottom:283.590000px;}
.y2b_c00027{bottom:309.780000px;}
.y2a_c00027{bottom:335.970000px;}
.y29_c00027{bottom:362.160000px;}
.y28_c00027{bottom:388.350000px;}
.y27_c00027{bottom:414.540000px;}
.y26_c00027{bottom:440.640000px;}
.y25_c00027{bottom:466.830000px;}
.y24_c00027{bottom:493.020000px;}
.y23_c00027{bottom:519.210000px;}
.y22_c00027{bottom:545.400000px;}
.y21_c00027{bottom:571.590000px;}
.y20_c00027{bottom:597.690000px;}
.y1f_c00027{bottom:623.880000px;}
.y1e_c00027{bottom:650.070000px;}
.y1d_c00027{bottom:676.260000px;}
.y1c_c00027{bottom:702.450000px;}
.y1b_c00027{bottom:728.640000px;}
.y1a_c00027{bottom:754.740000px;}
.y19_c00027{bottom:780.930000px;}
.y18_c00027{bottom:807.120000px;}
.y17_c00027{bottom:833.310000px;}
.y15_c00027{bottom:859.500000px;}
.y13_c00027{bottom:885.600000px;}
.y14_c00027{bottom:900.090000px;}
.y12_c00027{bottom:927.810000px;}
.ye_c00027{bottom:954.000000px;}
.y11_c00027{bottom:968.490000px;}
.yd_c00027{bottom:996.120000px;}
.yc_c00027{bottom:1022.310000px;}
.ya_c00027{bottom:1048.500000px;}
.y8_c00027{bottom:1074.600000px;}
.y6_c00027{bottom:1100.790000px;}
.y5_c00027{bottom:1131.120000px;}
.y4_c00027{bottom:1151.005500px;}
.y3_c00027{bottom:1166.490000px;}
.y2_c00027{bottom:1182.055500px;}
.y1_c00027{bottom:1197.540000px;}
.h7_c00027{height:25.380000px;}
.ha_c00027{height:25.468500px;}
.h5_c00027{height:25.470000px;}
.h8_c00027{height:41.398500px;}
.h9_c00027{height:41.400000px;}
.h3_c00027{height:52.971680px;}
.h2_c00027{height:52.998047px;}
.h4_c00027{height:70.664062px;}
.h6_c00027{height:84.535312px;}
.hc_c00027{height:96.870938px;}
.hb_c00027{height:143.542969px;}
.h0_c00027{height:1262.880000px;}
.h1_c00027{height:1263.000000px;}
.w4_c00027{width:177.660000px;}
.w3_c00027{width:493.740000px;}
.w2_c00027{width:671.848500px;}
.w0_c00027{width:893.070000px;}
.w1_c00027{width:893.250000px;}
.x0_c00027{left:0.000000px;}
.x5_c00027{left:4.950000px;}
.x3_c00027{left:122.670000px;}
.x2_c00027{left:127.620000px;}
.x4_c00027{left:193.050000px;}
.x1_c00027{left:446.580000px;}
.x6_c00027{left:616.770000px;}
.x7_c00027{left:622.080000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.v1_c00027{vertical-align:23.360000pt;}
.lsa_c00027{letter-spacing:-0.320000pt;}
.ls9_c00027{letter-spacing:-0.192000pt;}
.ls6_c00027{letter-spacing:-0.128000pt;}
.ls8_c00027{letter-spacing:-0.064000pt;}
.ls5_c00027{letter-spacing:0.000000pt;}
.ls7_c00027{letter-spacing:0.064000pt;}
.ls1_c00027{letter-spacing:0.128000pt;}
.ls0_c00027{letter-spacing:0.149120pt;}
.ls2_c00027{letter-spacing:1.536000pt;}
.ls3_c00027{letter-spacing:1.792000pt;}
.ls4_c00027{letter-spacing:2.810240pt;}
.ws0_c00027{word-spacing:-18.640000pt;}
.ws3_c00027{word-spacing:-16.128000pt;}
.ws5_c00027{word-spacing:-16.064000pt;}
.ws2_c00027{word-spacing:-15.936000pt;}
.ws1_c00027{word-spacing:-15.872000pt;}
.ws4_c00027{word-spacing:-15.808000pt;}
.ws6_c00027{word-spacing:-15.680000pt;}
.wsb_c00027{word-spacing:-0.384000pt;}
.ws8_c00027{word-spacing:-0.223680pt;}
.wsa_c00027{word-spacing:-0.128000pt;}
.ws9_c00027{word-spacing:-0.064000pt;}
.ws7_c00027{word-spacing:0.000000pt;}
._0_c00027{margin-left:-1.103488pt;}
._1_c00027{width:1.024000pt;}
.fs3_c00027{font-size:45.440000pt;}
.fs0_c00027{font-size:48.000000pt;}
.fs1_c00027{font-size:64.000000pt;}
.fs2_c00027{font-size:74.560000pt;}
.fs4_c00027{font-size:85.440000pt;}
.y0_c00027{bottom:0.000000pt;}
.y10_c00027{bottom:3.680000pt;}
.y7_c00027{bottom:4.640000pt;}
.y2e_c00027{bottom:5.520000pt;}
.y2c_c00027{bottom:5.600000pt;}
.y16_c00027{bottom:5.759867pt;}
.yb_c00027{bottom:5.760000pt;}
.y9_c00027{bottom:5.840000pt;}
.yf_c00027{bottom:22.080000pt;}
.y34_c00027{bottom:115.280000pt;}
.y33_c00027{bottom:135.760000pt;}
.y32_c00027{bottom:159.040000pt;}
.y31_c00027{bottom:182.320000pt;}
.y30_c00027{bottom:205.600000pt;}
.y2f_c00027{bottom:228.880000pt;}
.y2d_c00027{bottom:252.080000pt;}
.y2b_c00027{bottom:275.360000pt;}
.y2a_c00027{bottom:298.640000pt;}
.y29_c00027{bottom:321.920000pt;}
.y28_c00027{bottom:345.200000pt;}
.y27_c00027{bottom:368.480000pt;}
.y26_c00027{bottom:391.680000pt;}
.y25_c00027{bottom:414.960000pt;}
.y24_c00027{bottom:438.240000pt;}
.y23_c00027{bottom:461.520000pt;}
.y22_c00027{bottom:484.800000pt;}
.y21_c00027{bottom:508.080000pt;}
.y20_c00027{bottom:531.280000pt;}
.y1f_c00027{bottom:554.560000pt;}
.y1e_c00027{bottom:577.840000pt;}
.y1d_c00027{bottom:601.120000pt;}
.y1c_c00027{bottom:624.400000pt;}
.y1b_c00027{bottom:647.680000pt;}
.y1a_c00027{bottom:670.880000pt;}
.y19_c00027{bottom:694.160000pt;}
.y18_c00027{bottom:717.440000pt;}
.y17_c00027{bottom:740.720000pt;}
.y15_c00027{bottom:764.000000pt;}
.y13_c00027{bottom:787.200000pt;}
.y14_c00027{bottom:800.080000pt;}
.y12_c00027{bottom:824.720000pt;}
.ye_c00027{bottom:848.000000pt;}
.y11_c00027{bottom:860.880000pt;}
.yd_c00027{bottom:885.440000pt;}
.yc_c00027{bottom:908.720000pt;}
.ya_c00027{bottom:932.000000pt;}
.y8_c00027{bottom:955.200000pt;}
.y6_c00027{bottom:978.480000pt;}
.y5_c00027{bottom:1005.440000pt;}
.y4_c00027{bottom:1023.116000pt;}
.y3_c00027{bottom:1036.880000pt;}
.y2_c00027{bottom:1050.716000pt;}
.y1_c00027{bottom:1064.480000pt;}
.h7_c00027{height:22.560000pt;}
.ha_c00027{height:22.638667pt;}
.h5_c00027{height:22.640000pt;}
.h8_c00027{height:36.798667pt;}
.h9_c00027{height:36.800000pt;}
.h3_c00027{height:47.085938pt;}
.h2_c00027{height:47.109375pt;}
.h4_c00027{height:62.812500pt;}
.h6_c00027{height:75.142500pt;}
.hc_c00027{height:86.107500pt;}
.hb_c00027{height:127.593750pt;}
.h0_c00027{height:1122.560000pt;}
.h1_c00027{height:1122.666667pt;}
.w4_c00027{width:157.920000pt;}
.w3_c00027{width:438.880000pt;}
.w2_c00027{width:597.198667pt;}
.w0_c00027{width:793.840000pt;}
.w1_c00027{width:794.000000pt;}
.x0_c00027{left:0.000000pt;}
.x5_c00027{left:4.400000pt;}
.x3_c00027{left:109.040000pt;}
.x2_c00027{left:113.440000pt;}
.x4_c00027{left:171.600000pt;}
.x1_c00027{left:396.960000pt;}
.x6_c00027{left:548.240000pt;}
.x7_c00027{left:552.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98dadf564126de77afa56f1a.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.284668;font-style:normal;font-weight:normal;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00028;src:url('chunks/assets/font_f5b90816d8d585abb80b8799.woff2')format("woff");}.ff3_c00028{font-family:ff3_c00028;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00028{vertical-align:-105.840000px;}
.v0_c00028{vertical-align:0.000000px;}
.ls1_c00028{letter-spacing:0.000000px;}
.ls0_c00028{letter-spacing:1257.840000px;}
.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:0.000000px;}
._0_c00028{width:846.000000px;}
.fc0_c00028{color:rgb(0,0,0);}
.fs0_c00028{font-size:54.000000px;}
.fs1_c00028{font-size:72.000000px;}
.fs2_c00028{font-size:96.120000px;}
.fs3_c00028{font-size:144.000000px;}
.y0_c00028{bottom:0.000000px;}
.y11_c00028{bottom:57.150000px;}
.y10_c00028{bottom:634.410000px;}
.yf_c00028{bottom:679.500000px;}
.ye_c00028{bottom:732.026790px;}
.yd_c00028{bottom:773.430480px;}
.yc_c00028{bottom:814.834170px;}
.yb_c00028{bottom:856.237860px;}
.ya_c00028{bottom:897.641550px;}
.y9_c00028{bottom:939.045240px;}
.y8_c00028{bottom:980.448930px;}
.y7_c00028{bottom:1021.852620px;}
.y6_c00028{bottom:1063.256310px;}
.y5_c00028{bottom:1131.120000px;}
.y4_c00028{bottom:1151.005500px;}
.y3_c00028{bottom:1166.490000px;}
.y2_c00028{bottom:1182.055500px;}
.y1_c00028{bottom:1197.540000px;}
.h3_c00028{height:52.971680px;}
.h2_c00028{height:52.998047px;}
.h4_c00028{height:70.664062px;}
.h5_c00028{height:96.870938px;}
.h6_c00028{height:145.125000px;}
.h0_c00028{height:1262.880000px;}
.h1_c00028{height:1263.000000px;}
.w0_c00028{width:893.070000px;}
.w1_c00028{width:893.250000px;}
.x0_c00028{left:0.000000px;}
.x2_c00028{left:127.620000px;}
.x3_c00028{left:342.090000px;}
.x1_c00028{left:446.580000px;}
.x4_c00028{left:759.510000px;}
@media print{
.v1_c00028{vertical-align:-94.080000pt;}
.v0_c00028{vertical-align:0.000000pt;}
.ls1_c00028{letter-spacing:0.000000pt;}
.ls0_c00028{letter-spacing:1118.080000pt;}
.ws0_c00028{word-spacing:0.000000pt;}
._0_c00028{width:752.000000pt;}
.fs0_c00028{font-size:48.000000pt;}
.fs1_c00028{font-size:64.000000pt;}
.fs2_c00028{font-size:85.440000pt;}
.fs3_c00028{font-size:128.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.y11_c00028{bottom:50.800000pt;}
.y10_c00028{bottom:563.920000pt;}
.yf_c00028{bottom:604.000000pt;}
.ye_c00028{bottom:650.690480pt;}
.yd_c00028{bottom:687.493760pt;}
.yc_c00028{bottom:724.297040pt;}
.yb_c00028{bottom:761.100320pt;}
.ya_c00028{bottom:797.903600pt;}
.y9_c00028{bottom:834.706880pt;}
.y8_c00028{bottom:871.510160pt;}
.y7_c00028{bottom:908.313440pt;}
.y6_c00028{bottom:945.116720pt;}
.y5_c00028{bottom:1005.440000pt;}
.y4_c00028{bottom:1023.116000pt;}
.y3_c00028{bottom:1036.880000pt;}
.y2_c00028{bottom:1050.716000pt;}
.y1_c00028{bottom:1064.480000pt;}
.h3_c00028{height:47.085938pt;}
.h2_c00028{height:47.109375pt;}
.h4_c00028{height:62.812500pt;}
.h5_c00028{height:86.107500pt;}
.h6_c00028{height:129.000000pt;}
.h0_c00028{height:1122.560000pt;}
.h1_c00028{height:1122.666667pt;}
.w0_c00028{width:793.840000pt;}
.w1_c00028{width:794.000000pt;}
.x0_c00028{left:0.000000pt;}
.x2_c00028{left:113.440000pt;}
.x3_c00028{left:304.080000pt;}
.x1_c00028{left:396.960000pt;}
.x4_c00028{left:675.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_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_9bae19f4f9bcab16cd5a18bb.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00029{letter-spacing:-0.360000px;}
.lse_c00029{letter-spacing:-0.288000px;}
.ls10_c00029{letter-spacing:-0.216000px;}
.lsf_c00029{letter-spacing:-0.144000px;}
.ls12_c00029{letter-spacing:-0.072000px;}
.lsb_c00029{letter-spacing:0.000000px;}
.ls1_c00029{letter-spacing:0.072000px;}
.lsd_c00029{letter-spacing:0.144000px;}
.ls11_c00029{letter-spacing:0.360000px;}
.lsa_c00029{letter-spacing:2.167200px;}
.ls3_c00029{letter-spacing:3.240000px;}
.ls0_c00029{letter-spacing:3.960000px;}
.ls9_c00029{letter-spacing:5.400000px;}
.ls4_c00029{letter-spacing:8.280000px;}
.ls5_c00029{letter-spacing:8.294400px;}
.ls2_c00029{letter-spacing:9.000000px;}
.ls8_c00029{letter-spacing:9.720000px;}
.ls7_c00029{letter-spacing:10.440000px;}
.ls6_c00029{letter-spacing:10.800000px;}
.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:-18.144000px;}
.ws1_c00029{word-spacing:-18.072000px;}
.ws5_c00029{word-spacing:-17.928000px;}
.ws2_c00029{word-spacing:-17.856000px;}
.ws4_c00029{word-spacing:-17.784000px;}
.ws3_c00029{word-spacing:-17.712000px;}
.ws1e_c00029{word-spacing:-0.360000px;}
.ws25_c00029{word-spacing:-0.144000px;}
.ws11_c00029{word-spacing:-0.072000px;}
.ws6_c00029{word-spacing:0.000000px;}
.ws30_c00029{word-spacing:0.216000px;}
.wse_c00029{word-spacing:0.288000px;}
.ws9_c00029{word-spacing:0.360000px;}
.ws31_c00029{word-spacing:2.088000px;}
.ws24_c00029{word-spacing:3.168000px;}
.ws23_c00029{word-spacing:3.240000px;}
.ws10_c00029{word-spacing:3.528000px;}
.wsd_c00029{word-spacing:3.888000px;}
.ws2e_c00029{word-spacing:5.328000px;}
.ws2f_c00029{word-spacing:5.400000px;}
.wsc_c00029{word-spacing:5.688000px;}
.ws18_c00029{word-spacing:7.848000px;}
.ws1a_c00029{word-spacing:8.208000px;}
.ws19_c00029{word-spacing:8.280000px;}
.ws14_c00029{word-spacing:9.000000px;}
.ws2a_c00029{word-spacing:9.648000px;}
.ws29_c00029{word-spacing:10.008000px;}
.ws2b_c00029{word-spacing:10.080000px;}
.ws28_c00029{word-spacing:10.800000px;}
.ws20_c00029{word-spacing:11.016000px;}
.ws22_c00029{word-spacing:11.088000px;}
.ws21_c00029{word-spacing:11.160000px;}
.ws17_c00029{word-spacing:13.248000px;}
.ws1f_c00029{word-spacing:13.320000px;}
.ws15_c00029{word-spacing:13.608000px;}
.ws16_c00029{word-spacing:13.680000px;}
.wsf_c00029{word-spacing:13.968000px;}
.ws8_c00029{word-spacing:15.408000px;}
.ws7_c00029{word-spacing:15.480000px;}
.wsb_c00029{word-spacing:19.368000px;}
.wsa_c00029{word-spacing:19.440000px;}
.ws2c_c00029{word-spacing:19.728000px;}
.ws2d_c00029{word-spacing:20.160000px;}
.ws1c_c00029{word-spacing:21.168000px;}
.ws1b_c00029{word-spacing:21.528000px;}
.ws27_c00029{word-spacing:26.208000px;}
.ws26_c00029{word-spacing:26.280000px;}
.ws12_c00029{word-spacing:32.328000px;}
.ws13_c00029{word-spacing:32.400000px;}
.ws1d_c00029{word-spacing:41.400000px;}
._1_c00029{margin-left:-1.008000px;}
._2_c00029{width:1.296000px;}
._b_c00029{width:2.520000px;}
._3_c00029{width:3.672000px;}
._e_c00029{width:5.328000px;}
._a_c00029{width:7.401600px;}
._9_c00029{width:12.816000px;}
._5_c00029{width:13.968000px;}
._0_c00029{width:15.624000px;}
._d_c00029{width:19.648800px;}
._6_c00029{width:21.528000px;}
._c_c00029{width:26.424000px;}
._4_c00029{width:31.968000px;}
._7_c00029{width:40.680000px;}
._8_c00029{width:41.832000px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs0_c00029{font-size:54.000000px;}
.fs1_c00029{font-size:72.000000px;}
.y0_c00029{bottom:0.000000px;}
.y27_c00029{bottom:57.150000px;}
.y26_c00029{bottom:137.610000px;}
.y25_c00029{bottom:168.660000px;}
.y24_c00029{bottom:199.710000px;}
.y23_c00029{bottom:230.760000px;}
.y22_c00029{bottom:261.810000px;}
.y21_c00029{bottom:292.860000px;}
.y20_c00029{bottom:323.910000px;}
.y1f_c00029{bottom:354.960000px;}
.y1e_c00029{bottom:386.010000px;}
.y1d_c00029{bottom:417.060000px;}
.y1c_c00029{bottom:448.110000px;}
.y1b_c00029{bottom:479.160000px;}
.y1a_c00029{bottom:510.210000px;}
.y19_c00029{bottom:541.260000px;}
.y18_c00029{bottom:572.310000px;}
.y17_c00029{bottom:603.360000px;}
.y16_c00029{bottom:634.410000px;}
.y15_c00029{bottom:665.370000px;}
.y14_c00029{bottom:696.420000px;}
.y13_c00029{bottom:727.470000px;}
.y12_c00029{bottom:758.520000px;}
.y11_c00029{bottom:789.570000px;}
.y10_c00029{bottom:820.620000px;}
.yf_c00029{bottom:851.670000px;}
.ye_c00029{bottom:882.720000px;}
.yd_c00029{bottom:913.770000px;}
.yc_c00029{bottom:944.820000px;}
.yb_c00029{bottom:975.870000px;}
.ya_c00029{bottom:1006.920000px;}
.y9_c00029{bottom:1037.970000px;}
.y8_c00029{bottom:1069.020000px;}
.y7_c00029{bottom:1089.720000px;}
.y6_c00029{bottom:1110.420000px;}
.y5_c00029{bottom:1131.120000px;}
.y4_c00029{bottom:1151.005500px;}
.y3_c00029{bottom:1166.490000px;}
.y2_c00029{bottom:1182.055500px;}
.y1_c00029{bottom:1197.540000px;}
.h3_c00029{height:52.971680px;}
.h2_c00029{height:52.998047px;}
.h4_c00029{height:70.664062px;}
.h0_c00029{height:1262.880000px;}
.h1_c00029{height:1263.000000px;}
.w0_c00029{width:893.070000px;}
.w1_c00029{width:893.250000px;}
.x0_c00029{left:0.000000px;}
.x2_c00029{left:127.620000px;}
.x1_c00029{left:446.580000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.lsc_c00029{letter-spacing:-0.320000pt;}
.lse_c00029{letter-spacing:-0.256000pt;}
.ls10_c00029{letter-spacing:-0.192000pt;}
.lsf_c00029{letter-spacing:-0.128000pt;}
.ls12_c00029{letter-spacing:-0.064000pt;}
.lsb_c00029{letter-spacing:0.000000pt;}
.ls1_c00029{letter-spacing:0.064000pt;}
.lsd_c00029{letter-spacing:0.128000pt;}
.ls11_c00029{letter-spacing:0.320000pt;}
.lsa_c00029{letter-spacing:1.926400pt;}
.ls3_c00029{letter-spacing:2.880000pt;}
.ls0_c00029{letter-spacing:3.520000pt;}
.ls9_c00029{letter-spacing:4.800000pt;}
.ls4_c00029{letter-spacing:7.360000pt;}
.ls5_c00029{letter-spacing:7.372800pt;}
.ls2_c00029{letter-spacing:8.000000pt;}
.ls8_c00029{letter-spacing:8.640000pt;}
.ls7_c00029{letter-spacing:9.280000pt;}
.ls6_c00029{letter-spacing:9.600000pt;}
.ws0_c00029{word-spacing:-16.128000pt;}
.ws1_c00029{word-spacing:-16.064000pt;}
.ws5_c00029{word-spacing:-15.936000pt;}
.ws2_c00029{word-spacing:-15.872000pt;}
.ws4_c00029{word-spacing:-15.808000pt;}
.ws3_c00029{word-spacing:-15.744000pt;}
.ws1e_c00029{word-spacing:-0.320000pt;}
.ws25_c00029{word-spacing:-0.128000pt;}
.ws11_c00029{word-spacing:-0.064000pt;}
.ws6_c00029{word-spacing:0.000000pt;}
.ws30_c00029{word-spacing:0.192000pt;}
.wse_c00029{word-spacing:0.256000pt;}
.ws9_c00029{word-spacing:0.320000pt;}
.ws31_c00029{word-spacing:1.856000pt;}
.ws24_c00029{word-spacing:2.816000pt;}
.ws23_c00029{word-spacing:2.880000pt;}
.ws10_c00029{word-spacing:3.136000pt;}
.wsd_c00029{word-spacing:3.456000pt;}
.ws2e_c00029{word-spacing:4.736000pt;}
.ws2f_c00029{word-spacing:4.800000pt;}
.wsc_c00029{word-spacing:5.056000pt;}
.ws18_c00029{word-spacing:6.976000pt;}
.ws1a_c00029{word-spacing:7.296000pt;}
.ws19_c00029{word-spacing:7.360000pt;}
.ws14_c00029{word-spacing:8.000000pt;}
.ws2a_c00029{word-spacing:8.576000pt;}
.ws29_c00029{word-spacing:8.896000pt;}
.ws2b_c00029{word-spacing:8.960000pt;}
.ws28_c00029{word-spacing:9.600000pt;}
.ws20_c00029{word-spacing:9.792000pt;}
.ws22_c00029{word-spacing:9.856000pt;}
.ws21_c00029{word-spacing:9.920000pt;}
.ws17_c00029{word-spacing:11.776000pt;}
.ws1f_c00029{word-spacing:11.840000pt;}
.ws15_c00029{word-spacing:12.096000pt;}
.ws16_c00029{word-spacing:12.160000pt;}
.wsf_c00029{word-spacing:12.416000pt;}
.ws8_c00029{word-spacing:13.696000pt;}
.ws7_c00029{word-spacing:13.760000pt;}
.wsb_c00029{word-spacing:17.216000pt;}
.wsa_c00029{word-spacing:17.280000pt;}
.ws2c_c00029{word-spacing:17.536000pt;}
.ws2d_c00029{word-spacing:17.920000pt;}
.ws1c_c00029{word-spacing:18.816000pt;}
.ws1b_c00029{word-spacing:19.136000pt;}
.ws27_c00029{word-spacing:23.296000pt;}
.ws26_c00029{word-spacing:23.360000pt;}
.ws12_c00029{word-spacing:28.736000pt;}
.ws13_c00029{word-spacing:28.800000pt;}
.ws1d_c00029{word-spacing:36.800000pt;}
._1_c00029{margin-left:-0.896000pt;}
._2_c00029{width:1.152000pt;}
._b_c00029{width:2.240000pt;}
._3_c00029{width:3.264000pt;}
._e_c00029{width:4.736000pt;}
._a_c00029{width:6.579200pt;}
._9_c00029{width:11.392000pt;}
._5_c00029{width:12.416000pt;}
._0_c00029{width:13.888000pt;}
._d_c00029{width:17.465600pt;}
._6_c00029{width:19.136000pt;}
._c_c00029{width:23.488000pt;}
._4_c00029{width:28.416000pt;}
._7_c00029{width:36.160000pt;}
._8_c00029{width:37.184000pt;}
.fs0_c00029{font-size:48.000000pt;}
.fs1_c00029{font-size:64.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y27_c00029{bottom:50.800000pt;}
.y26_c00029{bottom:122.320000pt;}
.y25_c00029{bottom:149.920000pt;}
.y24_c00029{bottom:177.520000pt;}
.y23_c00029{bottom:205.120000pt;}
.y22_c00029{bottom:232.720000pt;}
.y21_c00029{bottom:260.320000pt;}
.y20_c00029{bottom:287.920000pt;}
.y1f_c00029{bottom:315.520000pt;}
.y1e_c00029{bottom:343.120000pt;}
.y1d_c00029{bottom:370.720000pt;}
.y1c_c00029{bottom:398.320000pt;}
.y1b_c00029{bottom:425.920000pt;}
.y1a_c00029{bottom:453.520000pt;}
.y19_c00029{bottom:481.120000pt;}
.y18_c00029{bottom:508.720000pt;}
.y17_c00029{bottom:536.320000pt;}
.y16_c00029{bottom:563.920000pt;}
.y15_c00029{bottom:591.440000pt;}
.y14_c00029{bottom:619.040000pt;}
.y13_c00029{bottom:646.640000pt;}
.y12_c00029{bottom:674.240000pt;}
.y11_c00029{bottom:701.840000pt;}
.y10_c00029{bottom:729.440000pt;}
.yf_c00029{bottom:757.040000pt;}
.ye_c00029{bottom:784.640000pt;}
.yd_c00029{bottom:812.240000pt;}
.yc_c00029{bottom:839.840000pt;}
.yb_c00029{bottom:867.440000pt;}
.ya_c00029{bottom:895.040000pt;}
.y9_c00029{bottom:922.640000pt;}
.y8_c00029{bottom:950.240000pt;}
.y7_c00029{bottom:968.640000pt;}
.y6_c00029{bottom:987.040000pt;}
.y5_c00029{bottom:1005.440000pt;}
.y4_c00029{bottom:1023.116000pt;}
.y3_c00029{bottom:1036.880000pt;}
.y2_c00029{bottom:1050.716000pt;}
.y1_c00029{bottom:1064.480000pt;}
.h3_c00029{height:47.085938pt;}
.h2_c00029{height:47.109375pt;}
.h4_c00029{height:62.812500pt;}
.h0_c00029{height:1122.560000pt;}
.h1_c00029{height:1122.666667pt;}
.w0_c00029{width:793.840000pt;}
.w1_c00029{width:794.000000pt;}
.x0_c00029{left:0.000000pt;}
.x2_c00029{left:113.440000pt;}
.x1_c00029{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f22b691273aae37d5b6c001.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.284668;font-style:normal;font-weight:normal;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.284180;font-style: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;}
.ls16_c00030{letter-spacing:-0.576000px;}
.ls19_c00030{letter-spacing:-0.432000px;}
.ls1b_c00030{letter-spacing:-0.360000px;}
.ls15_c00030{letter-spacing:-0.288000px;}
.ls17_c00030{letter-spacing:-0.216000px;}
.ls1a_c00030{letter-spacing:-0.144000px;}
.ls1c_c00030{letter-spacing:-0.072000px;}
.ls14_c00030{letter-spacing:0.000000px;}
.ls1_c00030{letter-spacing:0.072000px;}
.ls7_c00030{letter-spacing:0.144000px;}
.ls18_c00030{letter-spacing:0.432000px;}
.ls12_c00030{letter-spacing:1.440000px;}
.ls0_c00030{letter-spacing:2.880000px;}
.ls2_c00030{letter-spacing:2.887200px;}
.lse_c00030{letter-spacing:3.240000px;}
.lsc_c00030{letter-spacing:5.040000px;}
.ls13_c00030{letter-spacing:5.400000px;}
.lsa_c00030{letter-spacing:7.200000px;}
.ls6_c00030{letter-spacing:8.280000px;}
.ls4_c00030{letter-spacing:9.000000px;}
.ls5_c00030{letter-spacing:9.720000px;}
.ls10_c00030{letter-spacing:12.960000px;}
.lsf_c00030{letter-spacing:13.320000px;}
.ls9_c00030{letter-spacing:16.200000px;}
.ls11_c00030{letter-spacing:20.160000px;}
.lsb_c00030{letter-spacing:21.240000px;}
.ls3_c00030{letter-spacing:24.840000px;}
.ls8_c00030{letter-spacing:26.280000px;}
.lsd_c00030{letter-spacing:28.440000px;}
.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;}
}
.ws3_c00030{word-spacing:-18.144000px;}
.ws2_c00030{word-spacing:-18.072000px;}
.ws0_c00030{word-spacing:-18.000000px;}
.ws8_c00030{word-spacing:-17.928000px;}
.ws5_c00030{word-spacing:-17.856000px;}
.ws6_c00030{word-spacing:-17.784000px;}
.ws1_c00030{word-spacing:-17.712000px;}
.ws7_c00030{word-spacing:-17.640000px;}
.ws4_c00030{word-spacing:-17.568000px;}
.ws13_c00030{word-spacing:-0.432000px;}
.ws26_c00030{word-spacing:-0.360000px;}
.ws22_c00030{word-spacing:-0.144000px;}
.wsd_c00030{word-spacing:-0.072000px;}
.ws9_c00030{word-spacing:0.000000px;}
.ws10_c00030{word-spacing:0.216000px;}
.ws12_c00030{word-spacing:0.288000px;}
.ws11_c00030{word-spacing:0.360000px;}
.wsf_c00030{word-spacing:0.576000px;}
.ws44_c00030{word-spacing:1.368000px;}
.ws46_c00030{word-spacing:1.440000px;}
.ws45_c00030{word-spacing:1.800000px;}
.wsb_c00030{word-spacing:2.448000px;}
.wsa_c00030{word-spacing:2.736000px;}
.wsc_c00030{word-spacing:2.808000px;}
.wse_c00030{word-spacing:2.880000px;}
.ws3c_c00030{word-spacing:3.168000px;}
.ws3b_c00030{word-spacing:3.240000px;}
.ws3d_c00030{word-spacing:4.248000px;}
.ws3e_c00030{word-spacing:4.320000px;}
.ws3f_c00030{word-spacing:4.680000px;}
.ws34_c00030{word-spacing:4.968000px;}
.ws33_c00030{word-spacing:5.040000px;}
.ws47_c00030{word-spacing:5.400000px;}
.ws15_c00030{word-spacing:6.408000px;}
.ws14_c00030{word-spacing:6.480000px;}
.ws2b_c00030{word-spacing:7.128000px;}
.ws2c_c00030{word-spacing:7.200000px;}
.ws1e_c00030{word-spacing:8.208000px;}
.ws1f_c00030{word-spacing:8.280000px;}
.ws20_c00030{word-spacing:8.856000px;}
.ws1a_c00030{word-spacing:8.928000px;}
.ws1b_c00030{word-spacing:9.000000px;}
.ws1d_c00030{word-spacing:9.648000px;}
.ws1c_c00030{word-spacing:9.720000px;}
.ws21_c00030{word-spacing:10.008000px;}
.ws30_c00030{word-spacing:12.528000px;}
.ws2f_c00030{word-spacing:12.600000px;}
.ws41_c00030{word-spacing:13.248000px;}
.ws40_c00030{word-spacing:13.320000px;}
.ws24_c00030{word-spacing:13.896000px;}
.ws23_c00030{word-spacing:14.256000px;}
.ws25_c00030{word-spacing:14.400000px;}
.ws2a_c00030{word-spacing:16.200000px;}
.ws42_c00030{word-spacing:20.088000px;}
.ws43_c00030{word-spacing:20.160000px;}
.ws16_c00030{word-spacing:20.520000px;}
.ws31_c00030{word-spacing:21.168000px;}
.ws32_c00030{word-spacing:21.240000px;}
.ws17_c00030{word-spacing:24.480000px;}
.ws19_c00030{word-spacing:24.768000px;}
.ws18_c00030{word-spacing:24.840000px;}
.ws28_c00030{word-spacing:25.848000px;}
.ws27_c00030{word-spacing:26.136000px;}
.ws29_c00030{word-spacing:26.208000px;}
.ws35_c00030{word-spacing:28.368000px;}
.ws36_c00030{word-spacing:28.440000px;}
.ws37_c00030{word-spacing:29.016000px;}
.ws2e_c00030{word-spacing:45.288000px;}
.ws2d_c00030{word-spacing:45.360000px;}
.ws38_c00030{word-spacing:62.856000px;}
.ws39_c00030{word-spacing:63.288000px;}
.ws3a_c00030{word-spacing:63.360000px;}
._9_c00030{margin-left:-15.768000px;}
._0_c00030{margin-left:-1.512000px;}
._3_c00030{width:1.368000px;}
._1_c00030{width:2.448000px;}
._2_c00030{width:3.736800px;}
._f_c00030{width:5.191200px;}
._a_c00030{width:7.056000px;}
._6_c00030{width:8.640000px;}
._7_c00030{width:13.104000px;}
._4_c00030{width:20.448000px;}
._e_c00030{width:21.600000px;}
._5_c00030{width:24.696000px;}
._8_c00030{width:26.712000px;}
._c_c00030{width:28.152000px;}
._b_c00030{width:45.504000px;}
._d_c00030{width:63.000000px;}
.fc0_c00030{color:rgb(0,0,0);}
.fs0_c00030{font-size:54.000000px;}
.fs1_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y27_c00030{bottom:57.150000px;}
.y26_c00030{bottom:116.910000px;}
.y25_c00030{bottom:147.960000px;}
.y24_c00030{bottom:179.010000px;}
.y23_c00030{bottom:210.060000px;}
.y22_c00030{bottom:241.110000px;}
.y21_c00030{bottom:272.160000px;}
.y20_c00030{bottom:303.210000px;}
.y1f_c00030{bottom:334.260000px;}
.y1e_c00030{bottom:365.310000px;}
.y1d_c00030{bottom:396.360000px;}
.y1c_c00030{bottom:427.410000px;}
.y1b_c00030{bottom:458.460000px;}
.y1a_c00030{bottom:489.510000px;}
.y19_c00030{bottom:520.560000px;}
.y18_c00030{bottom:551.610000px;}
.y17_c00030{bottom:582.660000px;}
.y16_c00030{bottom:613.710000px;}
.y15_c00030{bottom:644.760000px;}
.y14_c00030{bottom:675.720000px;}
.y13_c00030{bottom:706.770000px;}
.y12_c00030{bottom:737.820000px;}
.y11_c00030{bottom:768.870000px;}
.y10_c00030{bottom:799.920000px;}
.yf_c00030{bottom:830.970000px;}
.ye_c00030{bottom:862.020000px;}
.yd_c00030{bottom:893.070000px;}
.yc_c00030{bottom:924.120000px;}
.yb_c00030{bottom:955.170000px;}
.ya_c00030{bottom:986.220000px;}
.y9_c00030{bottom:1017.270000px;}
.y8_c00030{bottom:1048.320000px;}
.y7_c00030{bottom:1079.370000px;}
.y6_c00030{bottom:1110.420000px;}
.y5_c00030{bottom:1131.120000px;}
.y4_c00030{bottom:1151.005500px;}
.y3_c00030{bottom:1166.490000px;}
.y2_c00030{bottom:1182.055500px;}
.y1_c00030{bottom:1197.540000px;}
.h3_c00030{height:52.971680px;}
.h2_c00030{height:52.998047px;}
.h4_c00030{height:70.664062px;}
.h0_c00030{height:1262.880000px;}
.h1_c00030{height:1263.000000px;}
.w0_c00030{width:893.070000px;}
.w1_c00030{width:893.250000px;}
.x0_c00030{left:0.000000px;}
.x2_c00030{left:127.620000px;}
.x1_c00030{left:446.580000px;}
.x3_c00030{left:747.540000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls16_c00030{letter-spacing:-0.512000pt;}
.ls19_c00030{letter-spacing:-0.384000pt;}
.ls1b_c00030{letter-spacing:-0.320000pt;}
.ls15_c00030{letter-spacing:-0.256000pt;}
.ls17_c00030{letter-spacing:-0.192000pt;}
.ls1a_c00030{letter-spacing:-0.128000pt;}
.ls1c_c00030{letter-spacing:-0.064000pt;}
.ls14_c00030{letter-spacing:0.000000pt;}
.ls1_c00030{letter-spacing:0.064000pt;}
.ls7_c00030{letter-spacing:0.128000pt;}
.ls18_c00030{letter-spacing:0.384000pt;}
.ls12_c00030{letter-spacing:1.280000pt;}
.ls0_c00030{letter-spacing:2.560000pt;}
.ls2_c00030{letter-spacing:2.566400pt;}
.lse_c00030{letter-spacing:2.880000pt;}
.lsc_c00030{letter-spacing:4.480000pt;}
.ls13_c00030{letter-spacing:4.800000pt;}
.lsa_c00030{letter-spacing:6.400000pt;}
.ls6_c00030{letter-spacing:7.360000pt;}
.ls4_c00030{letter-spacing:8.000000pt;}
.ls5_c00030{letter-spacing:8.640000pt;}
.ls10_c00030{letter-spacing:11.520000pt;}
.lsf_c00030{letter-spacing:11.840000pt;}
.ls9_c00030{letter-spacing:14.400000pt;}
.ls11_c00030{letter-spacing:17.920000pt;}
.lsb_c00030{letter-spacing:18.880000pt;}
.ls3_c00030{letter-spacing:22.080000pt;}
.ls8_c00030{letter-spacing:23.360000pt;}
.lsd_c00030{letter-spacing:25.280000pt;}
.ws3_c00030{word-spacing:-16.128000pt;}
.ws2_c00030{word-spacing:-16.064000pt;}
.ws0_c00030{word-spacing:-16.000000pt;}
.ws8_c00030{word-spacing:-15.936000pt;}
.ws5_c00030{word-spacing:-15.872000pt;}
.ws6_c00030{word-spacing:-15.808000pt;}
.ws1_c00030{word-spacing:-15.744000pt;}
.ws7_c00030{word-spacing:-15.680000pt;}
.ws4_c00030{word-spacing:-15.616000pt;}
.ws13_c00030{word-spacing:-0.384000pt;}
.ws26_c00030{word-spacing:-0.320000pt;}
.ws22_c00030{word-spacing:-0.128000pt;}
.wsd_c00030{word-spacing:-0.064000pt;}
.ws9_c00030{word-spacing:0.000000pt;}
.ws10_c00030{word-spacing:0.192000pt;}
.ws12_c00030{word-spacing:0.256000pt;}
.ws11_c00030{word-spacing:0.320000pt;}
.wsf_c00030{word-spacing:0.512000pt;}
.ws44_c00030{word-spacing:1.216000pt;}
.ws46_c00030{word-spacing:1.280000pt;}
.ws45_c00030{word-spacing:1.600000pt;}
.wsb_c00030{word-spacing:2.176000pt;}
.wsa_c00030{word-spacing:2.432000pt;}
.wsc_c00030{word-spacing:2.496000pt;}
.wse_c00030{word-spacing:2.560000pt;}
.ws3c_c00030{word-spacing:2.816000pt;}
.ws3b_c00030{word-spacing:2.880000pt;}
.ws3d_c00030{word-spacing:3.776000pt;}
.ws3e_c00030{word-spacing:3.840000pt;}
.ws3f_c00030{word-spacing:4.160000pt;}
.ws34_c00030{word-spacing:4.416000pt;}
.ws33_c00030{word-spacing:4.480000pt;}
.ws47_c00030{word-spacing:4.800000pt;}
.ws15_c00030{word-spacing:5.696000pt;}
.ws14_c00030{word-spacing:5.760000pt;}
.ws2b_c00030{word-spacing:6.336000pt;}
.ws2c_c00030{word-spacing:6.400000pt;}
.ws1e_c00030{word-spacing:7.296000pt;}
.ws1f_c00030{word-spacing:7.360000pt;}
.ws20_c00030{word-spacing:7.872000pt;}
.ws1a_c00030{word-spacing:7.936000pt;}
.ws1b_c00030{word-spacing:8.000000pt;}
.ws1d_c00030{word-spacing:8.576000pt;}
.ws1c_c00030{word-spacing:8.640000pt;}
.ws21_c00030{word-spacing:8.896000pt;}
.ws30_c00030{word-spacing:11.136000pt;}
.ws2f_c00030{word-spacing:11.200000pt;}
.ws41_c00030{word-spacing:11.776000pt;}
.ws40_c00030{word-spacing:11.840000pt;}
.ws24_c00030{word-spacing:12.352000pt;}
.ws23_c00030{word-spacing:12.672000pt;}
.ws25_c00030{word-spacing:12.800000pt;}
.ws2a_c00030{word-spacing:14.400000pt;}
.ws42_c00030{word-spacing:17.856000pt;}
.ws43_c00030{word-spacing:17.920000pt;}
.ws16_c00030{word-spacing:18.240000pt;}
.ws31_c00030{word-spacing:18.816000pt;}
.ws32_c00030{word-spacing:18.880000pt;}
.ws17_c00030{word-spacing:21.760000pt;}
.ws19_c00030{word-spacing:22.016000pt;}
.ws18_c00030{word-spacing:22.080000pt;}
.ws28_c00030{word-spacing:22.976000pt;}
.ws27_c00030{word-spacing:23.232000pt;}
.ws29_c00030{word-spacing:23.296000pt;}
.ws35_c00030{word-spacing:25.216000pt;}
.ws36_c00030{word-spacing:25.280000pt;}
.ws37_c00030{word-spacing:25.792000pt;}
.ws2e_c00030{word-spacing:40.256000pt;}
.ws2d_c00030{word-spacing:40.320000pt;}
.ws38_c00030{word-spacing:55.872000pt;}
.ws39_c00030{word-spacing:56.256000pt;}
.ws3a_c00030{word-spacing:56.320000pt;}
._9_c00030{margin-left:-14.016000pt;}
._0_c00030{margin-left:-1.344000pt;}
._3_c00030{width:1.216000pt;}
._1_c00030{width:2.176000pt;}
._2_c00030{width:3.321600pt;}
._f_c00030{width:4.614400pt;}
._a_c00030{width:6.272000pt;}
._6_c00030{width:7.680000pt;}
._7_c00030{width:11.648000pt;}
._4_c00030{width:18.176000pt;}
._e_c00030{width:19.200000pt;}
._5_c00030{width:21.952000pt;}
._8_c00030{width:23.744000pt;}
._c_c00030{width:25.024000pt;}
._b_c00030{width:40.448000pt;}
._d_c00030{width:56.000000pt;}
.fs0_c00030{font-size:48.000000pt;}
.fs1_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y27_c00030{bottom:50.800000pt;}
.y26_c00030{bottom:103.920000pt;}
.y25_c00030{bottom:131.520000pt;}
.y24_c00030{bottom:159.120000pt;}
.y23_c00030{bottom:186.720000pt;}
.y22_c00030{bottom:214.320000pt;}
.y21_c00030{bottom:241.920000pt;}
.y20_c00030{bottom:269.520000pt;}
.y1f_c00030{bottom:297.120000pt;}
.y1e_c00030{bottom:324.720000pt;}
.y1d_c00030{bottom:352.320000pt;}
.y1c_c00030{bottom:379.920000pt;}
.y1b_c00030{bottom:407.520000pt;}
.y1a_c00030{bottom:435.120000pt;}
.y19_c00030{bottom:462.720000pt;}
.y18_c00030{bottom:490.320000pt;}
.y17_c00030{bottom:517.920000pt;}
.y16_c00030{bottom:545.520000pt;}
.y15_c00030{bottom:573.120000pt;}
.y14_c00030{bottom:600.640000pt;}
.y13_c00030{bottom:628.240000pt;}
.y12_c00030{bottom:655.840000pt;}
.y11_c00030{bottom:683.440000pt;}
.y10_c00030{bottom:711.040000pt;}
.yf_c00030{bottom:738.640000pt;}
.ye_c00030{bottom:766.240000pt;}
.yd_c00030{bottom:793.840000pt;}
.yc_c00030{bottom:821.440000pt;}
.yb_c00030{bottom:849.040000pt;}
.ya_c00030{bottom:876.640000pt;}
.y9_c00030{bottom:904.240000pt;}
.y8_c00030{bottom:931.840000pt;}
.y7_c00030{bottom:959.440000pt;}
.y6_c00030{bottom:987.040000pt;}
.y5_c00030{bottom:1005.440000pt;}
.y4_c00030{bottom:1023.116000pt;}
.y3_c00030{bottom:1036.880000pt;}
.y2_c00030{bottom:1050.716000pt;}
.y1_c00030{bottom:1064.480000pt;}
.h3_c00030{height:47.085938pt;}
.h2_c00030{height:47.109375pt;}
.h4_c00030{height:62.812500pt;}
.h0_c00030{height:1122.560000pt;}
.h1_c00030{height:1122.666667pt;}
.w0_c00030{width:793.840000pt;}
.w1_c00030{width:794.000000pt;}
.x0_c00030{left:0.000000pt;}
.x2_c00030{left:113.440000pt;}
.x1_c00030{left:396.960000pt;}
.x3_c00030{left:664.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_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_b7dfd5435dfedece696ed261.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c00031{letter-spacing:-0.360000px;}
.lsf_c00031{letter-spacing:-0.288000px;}
.ls12_c00031{letter-spacing:-0.216000px;}
.ls10_c00031{letter-spacing:-0.072000px;}
.lse_c00031{letter-spacing:0.000000px;}
.ls1_c00031{letter-spacing:0.072000px;}
.ls8_c00031{letter-spacing:0.144000px;}
.ls2_c00031{letter-spacing:0.360000px;}
.ls0_c00031{letter-spacing:0.720000px;}
.ls9_c00031{letter-spacing:2.520000px;}
.lsd_c00031{letter-spacing:3.600000px;}
.lsc_c00031{letter-spacing:5.400000px;}
.ls3_c00031{letter-spacing:10.080000px;}
.lsa_c00031{letter-spacing:11.160000px;}
.lsb_c00031{letter-spacing:13.680000px;}
.ls6_c00031{letter-spacing:19.080000px;}
.ls5_c00031{letter-spacing:23.040000px;}
.ls4_c00031{letter-spacing:23.047200px;}
.ls7_c00031{letter-spacing:27.727200px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00031{word-spacing:-18.144000px;}
.ws0_c00031{word-spacing:-18.072000px;}
.ws1_c00031{word-spacing:-18.000000px;}
.ws2_c00031{word-spacing:-17.712000px;}
.ws8_c00031{word-spacing:-0.360000px;}
.ws5_c00031{word-spacing:-0.072000px;}
.ws4_c00031{word-spacing:0.000000px;}
.wse_c00031{word-spacing:0.072000px;}
.ws33_c00031{word-spacing:0.216000px;}
.ws7_c00031{word-spacing:0.288000px;}
.ws17_c00031{word-spacing:0.360000px;}
.ws6_c00031{word-spacing:0.720000px;}
.ws21_c00031{word-spacing:2.088000px;}
.ws20_c00031{word-spacing:2.160000px;}
.ws23_c00031{word-spacing:2.448000px;}
.ws22_c00031{word-spacing:2.520000px;}
.ws38_c00031{word-spacing:3.096000px;}
.ws39_c00031{word-spacing:3.168000px;}
.ws31_c00031{word-spacing:3.240000px;}
.ws3a_c00031{word-spacing:3.312000px;}
.ws32_c00031{word-spacing:3.528000px;}
.ws34_c00031{word-spacing:3.600000px;}
.ws1e_c00031{word-spacing:4.896000px;}
.ws1d_c00031{word-spacing:4.968000px;}
.ws2c_c00031{word-spacing:5.256000px;}
.ws2d_c00031{word-spacing:5.328000px;}
.ws2e_c00031{word-spacing:5.400000px;}
.ws27_c00031{word-spacing:5.688000px;}
.ws3b_c00031{word-spacing:6.048000px;}
.ws26_c00031{word-spacing:6.120000px;}
.ws14_c00031{word-spacing:8.208000px;}
.ws13_c00031{word-spacing:8.280000px;}
.ws35_c00031{word-spacing:8.640000px;}
.ws36_c00031{word-spacing:8.928000px;}
.ws9_c00031{word-spacing:10.008000px;}
.wsa_c00031{word-spacing:10.080000px;}
.ws25_c00031{word-spacing:10.800000px;}
.ws24_c00031{word-spacing:11.160000px;}
.wsb_c00031{word-spacing:11.808000px;}
.ws1f_c00031{word-spacing:11.880000px;}
.ws3d_c00031{word-spacing:13.176000px;}
.ws37_c00031{word-spacing:13.536000px;}
.ws2b_c00031{word-spacing:13.680000px;}
.ws2a_c00031{word-spacing:13.968000px;}
.ws3c_c00031{word-spacing:15.120000px;}
.ws15_c00031{word-spacing:15.840000px;}
.ws30_c00031{word-spacing:17.640000px;}
.ws2f_c00031{word-spacing:18.000000px;}
.wsf_c00031{word-spacing:18.720000px;}
.ws10_c00031{word-spacing:19.080000px;}
.ws1c_c00031{word-spacing:20.520000px;}
.ws1a_c00031{word-spacing:20.808000px;}
.ws1b_c00031{word-spacing:20.880000px;}
.wsc_c00031{word-spacing:22.968000px;}
.wsd_c00031{word-spacing:23.040000px;}
.ws28_c00031{word-spacing:24.048000px;}
.ws29_c00031{word-spacing:24.120000px;}
.ws11_c00031{word-spacing:25.848000px;}
.ws12_c00031{word-spacing:25.920000px;}
.ws19_c00031{word-spacing:27.648000px;}
.ws18_c00031{word-spacing:34.488000px;}
.ws16_c00031{word-spacing:34.560000px;}
._2_c00031{margin-left:-1.008000px;}
._0_c00031{width:1.008000px;}
._f_c00031{width:3.168000px;}
._b_c00031{width:4.968000px;}
._10_c00031{width:6.192000px;}
._6_c00031{width:8.352000px;}
._1_c00031{width:10.008000px;}
._c_c00031{width:11.152800px;}
._d_c00031{width:12.758400px;}
._7_c00031{width:15.840000px;}
._4_c00031{width:19.440000px;}
._a_c00031{width:20.880000px;}
._3_c00031{width:22.528800px;}
._e_c00031{width:23.760000px;}
._5_c00031{width:25.992000px;}
._9_c00031{width:27.504000px;}
._8_c00031{width:34.632000px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs0_c00031{font-size:54.000000px;}
.fs1_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y27_c00031{bottom:57.150000px;}
.y26_c00031{bottom:116.910000px;}
.y25_c00031{bottom:147.960000px;}
.y24_c00031{bottom:179.010000px;}
.y23_c00031{bottom:210.060000px;}
.y22_c00031{bottom:241.110000px;}
.y21_c00031{bottom:272.160000px;}
.y20_c00031{bottom:303.210000px;}
.y1f_c00031{bottom:334.260000px;}
.y1e_c00031{bottom:365.310000px;}
.y1d_c00031{bottom:396.360000px;}
.y1c_c00031{bottom:427.410000px;}
.y1b_c00031{bottom:458.460000px;}
.y1a_c00031{bottom:489.510000px;}
.y19_c00031{bottom:520.560000px;}
.y18_c00031{bottom:551.610000px;}
.y17_c00031{bottom:582.660000px;}
.y16_c00031{bottom:613.710000px;}
.y15_c00031{bottom:644.760000px;}
.y14_c00031{bottom:675.720000px;}
.y13_c00031{bottom:706.770000px;}
.y12_c00031{bottom:737.820000px;}
.y11_c00031{bottom:768.870000px;}
.y10_c00031{bottom:799.920000px;}
.yf_c00031{bottom:830.970000px;}
.ye_c00031{bottom:862.020000px;}
.yd_c00031{bottom:893.070000px;}
.yc_c00031{bottom:924.120000px;}
.yb_c00031{bottom:955.170000px;}
.ya_c00031{bottom:986.220000px;}
.y9_c00031{bottom:1017.270000px;}
.y8_c00031{bottom:1048.320000px;}
.y7_c00031{bottom:1079.370000px;}
.y6_c00031{bottom:1110.420000px;}
.y5_c00031{bottom:1131.120000px;}
.y4_c00031{bottom:1151.005500px;}
.y3_c00031{bottom:1166.490000px;}
.y2_c00031{bottom:1182.055500px;}
.y1_c00031{bottom:1197.540000px;}
.h3_c00031{height:52.971680px;}
.h2_c00031{height:52.998047px;}
.h4_c00031{height:70.664062px;}
.h0_c00031{height:1262.880000px;}
.h1_c00031{height:1263.000000px;}
.w0_c00031{width:893.070000px;}
.w1_c00031{width:893.250000px;}
.x0_c00031{left:0.000000px;}
.x2_c00031{left:127.620000px;}
.x1_c00031{left:446.580000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls11_c00031{letter-spacing:-0.320000pt;}
.lsf_c00031{letter-spacing:-0.256000pt;}
.ls12_c00031{letter-spacing:-0.192000pt;}
.ls10_c00031{letter-spacing:-0.064000pt;}
.lse_c00031{letter-spacing:0.000000pt;}
.ls1_c00031{letter-spacing:0.064000pt;}
.ls8_c00031{letter-spacing:0.128000pt;}
.ls2_c00031{letter-spacing:0.320000pt;}
.ls0_c00031{letter-spacing:0.640000pt;}
.ls9_c00031{letter-spacing:2.240000pt;}
.lsd_c00031{letter-spacing:3.200000pt;}
.lsc_c00031{letter-spacing:4.800000pt;}
.ls3_c00031{letter-spacing:8.960000pt;}
.lsa_c00031{letter-spacing:9.920000pt;}
.lsb_c00031{letter-spacing:12.160000pt;}
.ls6_c00031{letter-spacing:16.960000pt;}
.ls5_c00031{letter-spacing:20.480000pt;}
.ls4_c00031{letter-spacing:20.486400pt;}
.ls7_c00031{letter-spacing:24.646400pt;}
.ws3_c00031{word-spacing:-16.128000pt;}
.ws0_c00031{word-spacing:-16.064000pt;}
.ws1_c00031{word-spacing:-16.000000pt;}
.ws2_c00031{word-spacing:-15.744000pt;}
.ws8_c00031{word-spacing:-0.320000pt;}
.ws5_c00031{word-spacing:-0.064000pt;}
.ws4_c00031{word-spacing:0.000000pt;}
.wse_c00031{word-spacing:0.064000pt;}
.ws33_c00031{word-spacing:0.192000pt;}
.ws7_c00031{word-spacing:0.256000pt;}
.ws17_c00031{word-spacing:0.320000pt;}
.ws6_c00031{word-spacing:0.640000pt;}
.ws21_c00031{word-spacing:1.856000pt;}
.ws20_c00031{word-spacing:1.920000pt;}
.ws23_c00031{word-spacing:2.176000pt;}
.ws22_c00031{word-spacing:2.240000pt;}
.ws38_c00031{word-spacing:2.752000pt;}
.ws39_c00031{word-spacing:2.816000pt;}
.ws31_c00031{word-spacing:2.880000pt;}
.ws3a_c00031{word-spacing:2.944000pt;}
.ws32_c00031{word-spacing:3.136000pt;}
.ws34_c00031{word-spacing:3.200000pt;}
.ws1e_c00031{word-spacing:4.352000pt;}
.ws1d_c00031{word-spacing:4.416000pt;}
.ws2c_c00031{word-spacing:4.672000pt;}
.ws2d_c00031{word-spacing:4.736000pt;}
.ws2e_c00031{word-spacing:4.800000pt;}
.ws27_c00031{word-spacing:5.056000pt;}
.ws3b_c00031{word-spacing:5.376000pt;}
.ws26_c00031{word-spacing:5.440000pt;}
.ws14_c00031{word-spacing:7.296000pt;}
.ws13_c00031{word-spacing:7.360000pt;}
.ws35_c00031{word-spacing:7.680000pt;}
.ws36_c00031{word-spacing:7.936000pt;}
.ws9_c00031{word-spacing:8.896000pt;}
.wsa_c00031{word-spacing:8.960000pt;}
.ws25_c00031{word-spacing:9.600000pt;}
.ws24_c00031{word-spacing:9.920000pt;}
.wsb_c00031{word-spacing:10.496000pt;}
.ws1f_c00031{word-spacing:10.560000pt;}
.ws3d_c00031{word-spacing:11.712000pt;}
.ws37_c00031{word-spacing:12.032000pt;}
.ws2b_c00031{word-spacing:12.160000pt;}
.ws2a_c00031{word-spacing:12.416000pt;}
.ws3c_c00031{word-spacing:13.440000pt;}
.ws15_c00031{word-spacing:14.080000pt;}
.ws30_c00031{word-spacing:15.680000pt;}
.ws2f_c00031{word-spacing:16.000000pt;}
.wsf_c00031{word-spacing:16.640000pt;}
.ws10_c00031{word-spacing:16.960000pt;}
.ws1c_c00031{word-spacing:18.240000pt;}
.ws1a_c00031{word-spacing:18.496000pt;}
.ws1b_c00031{word-spacing:18.560000pt;}
.wsc_c00031{word-spacing:20.416000pt;}
.wsd_c00031{word-spacing:20.480000pt;}
.ws28_c00031{word-spacing:21.376000pt;}
.ws29_c00031{word-spacing:21.440000pt;}
.ws11_c00031{word-spacing:22.976000pt;}
.ws12_c00031{word-spacing:23.040000pt;}
.ws19_c00031{word-spacing:24.576000pt;}
.ws18_c00031{word-spacing:30.656000pt;}
.ws16_c00031{word-spacing:30.720000pt;}
._2_c00031{margin-left:-0.896000pt;}
._0_c00031{width:0.896000pt;}
._f_c00031{width:2.816000pt;}
._b_c00031{width:4.416000pt;}
._10_c00031{width:5.504000pt;}
._6_c00031{width:7.424000pt;}
._1_c00031{width:8.896000pt;}
._c_c00031{width:9.913600pt;}
._d_c00031{width:11.340800pt;}
._7_c00031{width:14.080000pt;}
._4_c00031{width:17.280000pt;}
._a_c00031{width:18.560000pt;}
._3_c00031{width:20.025600pt;}
._e_c00031{width:21.120000pt;}
._5_c00031{width:23.104000pt;}
._9_c00031{width:24.448000pt;}
._8_c00031{width:30.784000pt;}
.fs0_c00031{font-size:48.000000pt;}
.fs1_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y27_c00031{bottom:50.800000pt;}
.y26_c00031{bottom:103.920000pt;}
.y25_c00031{bottom:131.520000pt;}
.y24_c00031{bottom:159.120000pt;}
.y23_c00031{bottom:186.720000pt;}
.y22_c00031{bottom:214.320000pt;}
.y21_c00031{bottom:241.920000pt;}
.y20_c00031{bottom:269.520000pt;}
.y1f_c00031{bottom:297.120000pt;}
.y1e_c00031{bottom:324.720000pt;}
.y1d_c00031{bottom:352.320000pt;}
.y1c_c00031{bottom:379.920000pt;}
.y1b_c00031{bottom:407.520000pt;}
.y1a_c00031{bottom:435.120000pt;}
.y19_c00031{bottom:462.720000pt;}
.y18_c00031{bottom:490.320000pt;}
.y17_c00031{bottom:517.920000pt;}
.y16_c00031{bottom:545.520000pt;}
.y15_c00031{bottom:573.120000pt;}
.y14_c00031{bottom:600.640000pt;}
.y13_c00031{bottom:628.240000pt;}
.y12_c00031{bottom:655.840000pt;}
.y11_c00031{bottom:683.440000pt;}
.y10_c00031{bottom:711.040000pt;}
.yf_c00031{bottom:738.640000pt;}
.ye_c00031{bottom:766.240000pt;}
.yd_c00031{bottom:793.840000pt;}
.yc_c00031{bottom:821.440000pt;}
.yb_c00031{bottom:849.040000pt;}
.ya_c00031{bottom:876.640000pt;}
.y9_c00031{bottom:904.240000pt;}
.y8_c00031{bottom:931.840000pt;}
.y7_c00031{bottom:959.440000pt;}
.y6_c00031{bottom:987.040000pt;}
.y5_c00031{bottom:1005.440000pt;}
.y4_c00031{bottom:1023.116000pt;}
.y3_c00031{bottom:1036.880000pt;}
.y2_c00031{bottom:1050.716000pt;}
.y1_c00031{bottom:1064.480000pt;}
.h3_c00031{height:47.085938pt;}
.h2_c00031{height:47.109375pt;}
.h4_c00031{height:62.812500pt;}
.h0_c00031{height:1122.560000pt;}
.h1_c00031{height:1122.666667pt;}
.w0_c00031{width:793.840000pt;}
.w1_c00031{width:794.000000pt;}
.x0_c00031{left:0.000000pt;}
.x2_c00031{left:113.440000pt;}
.x1_c00031{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6841fa0c83fd29e16cb6eb03.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.284668;font-style:normal;font-weight:normal;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.284180;font-style: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;}
.ls19_c00032{letter-spacing:-0.360000px;}
.ls17_c00032{letter-spacing:-0.288000px;}
.ls14_c00032{letter-spacing:-0.216000px;}
.ls18_c00032{letter-spacing:-0.072000px;}
.ls13_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:0.072000px;}
.lsc_c00032{letter-spacing:0.136800px;}
.ls15_c00032{letter-spacing:0.144000px;}
.ls11_c00032{letter-spacing:0.151200px;}
.lsd_c00032{letter-spacing:0.158400px;}
.ls16_c00032{letter-spacing:0.360000px;}
.ls4_c00032{letter-spacing:2.520000px;}
.ls3_c00032{letter-spacing:5.040000px;}
.lsa_c00032{letter-spacing:5.400000px;}
.ls5_c00032{letter-spacing:5.760000px;}
.ls6_c00032{letter-spacing:5.767200px;}
.ls9_c00032{letter-spacing:7.200000px;}
.lse_c00032{letter-spacing:7.920000px;}
.lsf_c00032{letter-spacing:8.280000px;}
.ls2_c00032{letter-spacing:9.720000px;}
.lsb_c00032{letter-spacing:12.600000px;}
.ls12_c00032{letter-spacing:12.960000px;}
.ls10_c00032{letter-spacing:13.320000px;}
.ls7_c00032{letter-spacing:18.360000px;}
.ls8_c00032{letter-spacing:19.440000px;}
.ls1_c00032{letter-spacing:20.880000px;}
.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;}
}
.ws5_c00032{word-spacing:-18.144000px;}
.ws1_c00032{word-spacing:-18.072000px;}
.ws0_c00032{word-spacing:-18.000000px;}
.ws2_c00032{word-spacing:-17.784000px;}
.ws3_c00032{word-spacing:-17.712000px;}
.ws4_c00032{word-spacing:-17.640000px;}
.ws16_c00032{word-spacing:-0.360000px;}
.ws18_c00032{word-spacing:-0.144000px;}
.wse_c00032{word-spacing:-0.072000px;}
.ws6_c00032{word-spacing:0.000000px;}
.ws1b_c00032{word-spacing:0.072000px;}
.wsa_c00032{word-spacing:0.216000px;}
.ws1a_c00032{word-spacing:0.288000px;}
.ws34_c00032{word-spacing:0.576000px;}
.ws35_c00032{word-spacing:0.648000px;}
.ws36_c00032{word-spacing:0.720000px;}
.ws3c_c00032{word-spacing:1.728000px;}
.ws3d_c00032{word-spacing:1.800000px;}
.ws17_c00032{word-spacing:2.448000px;}
.ws19_c00032{word-spacing:2.808000px;}
.wsc_c00032{word-spacing:3.168000px;}
.wsb_c00032{word-spacing:3.240000px;}
.ws11_c00032{word-spacing:4.896000px;}
.ws13_c00032{word-spacing:4.968000px;}
.ws12_c00032{word-spacing:5.040000px;}
.ws1e_c00032{word-spacing:5.256000px;}
.ws22_c00032{word-spacing:5.328000px;}
.ws32_c00032{word-spacing:5.400000px;}
.ws31_c00032{word-spacing:5.472000px;}
.ws20_c00032{word-spacing:5.688000px;}
.ws1f_c00032{word-spacing:5.760000px;}
.ws21_c00032{word-spacing:6.120000px;}
.ws42_c00032{word-spacing:6.408000px;}
.ws2c_c00032{word-spacing:6.768000px;}
.ws41_c00032{word-spacing:6.912000px;}
.ws8_c00032{word-spacing:7.128000px;}
.ws9_c00032{word-spacing:7.200000px;}
.ws2d_c00032{word-spacing:7.488000px;}
.ws37_c00032{word-spacing:7.560000px;}
.ws28_c00032{word-spacing:7.848000px;}
.ws27_c00032{word-spacing:7.920000px;}
.wsd_c00032{word-spacing:8.640000px;}
.ws33_c00032{word-spacing:9.360000px;}
.wsf_c00032{word-spacing:9.648000px;}
.ws10_c00032{word-spacing:9.720000px;}
.ws38_c00032{word-spacing:10.008000px;}
.ws15_c00032{word-spacing:11.808000px;}
.ws14_c00032{word-spacing:11.880000px;}
.ws2b_c00032{word-spacing:12.240000px;}
.ws2a_c00032{word-spacing:12.528000px;}
.ws29_c00032{word-spacing:12.600000px;}
.ws3e_c00032{word-spacing:12.816000px;}
.ws3f_c00032{word-spacing:12.888000px;}
.ws40_c00032{word-spacing:12.960000px;}
.ws3b_c00032{word-spacing:13.248000px;}
.ws3a_c00032{word-spacing:13.320000px;}
.ws39_c00032{word-spacing:13.392000px;}
.ws23_c00032{word-spacing:18.288000px;}
.ws25_c00032{word-spacing:18.360000px;}
.ws24_c00032{word-spacing:18.648000px;}
.ws26_c00032{word-spacing:19.368000px;}
.ws7_c00032{word-spacing:20.808000px;}
.ws1c_c00032{word-spacing:22.896000px;}
.ws1d_c00032{word-spacing:23.328000px;}
.ws2e_c00032{word-spacing:28.296000px;}
.ws30_c00032{word-spacing:28.728000px;}
.ws2f_c00032{word-spacing:28.800000px;}
._0_c00032{margin-left:-1.303200px;}
._4_c00032{width:1.008000px;}
._8_c00032{width:2.448000px;}
._3_c00032{width:3.456000px;}
._6_c00032{width:5.544000px;}
._2_c00032{width:7.495200px;}
._5_c00032{width:9.158400px;}
._7_c00032{width:12.240000px;}
._b_c00032{width:13.312800px;}
._1_c00032{width:20.671200px;}
._9_c00032{width:23.616000px;}
._a_c00032{width:28.879200px;}
.fc0_c00032{color:rgb(0,0,0);}
.fs0_c00032{font-size:54.000000px;}
.fs1_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y27_c00032{bottom:57.150000px;}
.y26_c00032{bottom:116.910000px;}
.y25_c00032{bottom:147.960000px;}
.y24_c00032{bottom:179.010000px;}
.y23_c00032{bottom:210.060000px;}
.y22_c00032{bottom:241.110000px;}
.y21_c00032{bottom:272.160000px;}
.y20_c00032{bottom:303.210000px;}
.y1f_c00032{bottom:334.260000px;}
.y1e_c00032{bottom:365.310000px;}
.y1d_c00032{bottom:396.360000px;}
.y1c_c00032{bottom:427.410000px;}
.y1b_c00032{bottom:458.460000px;}
.y1a_c00032{bottom:489.510000px;}
.y19_c00032{bottom:520.560000px;}
.y18_c00032{bottom:551.610000px;}
.y17_c00032{bottom:582.660000px;}
.y16_c00032{bottom:613.710000px;}
.y15_c00032{bottom:644.760000px;}
.y14_c00032{bottom:675.720000px;}
.y13_c00032{bottom:706.770000px;}
.y12_c00032{bottom:737.820000px;}
.y11_c00032{bottom:768.870000px;}
.y10_c00032{bottom:799.920000px;}
.yf_c00032{bottom:830.970000px;}
.ye_c00032{bottom:862.020000px;}
.yd_c00032{bottom:893.070000px;}
.yc_c00032{bottom:924.120000px;}
.yb_c00032{bottom:955.170000px;}
.ya_c00032{bottom:986.220000px;}
.y9_c00032{bottom:1017.270000px;}
.y8_c00032{bottom:1048.320000px;}
.y7_c00032{bottom:1079.370000px;}
.y6_c00032{bottom:1110.420000px;}
.y5_c00032{bottom:1131.120000px;}
.y4_c00032{bottom:1151.005500px;}
.y3_c00032{bottom:1166.490000px;}
.y2_c00032{bottom:1182.055500px;}
.y1_c00032{bottom:1197.540000px;}
.h3_c00032{height:52.971680px;}
.h2_c00032{height:52.998047px;}
.h4_c00032{height:70.664062px;}
.h0_c00032{height:1262.880000px;}
.h1_c00032{height:1263.000000px;}
.w0_c00032{width:893.070000px;}
.w1_c00032{width:893.250000px;}
.x0_c00032{left:0.000000px;}
.x2_c00032{left:127.620000px;}
.x1_c00032{left:446.580000px;}
.x3_c00032{left:752.580000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls19_c00032{letter-spacing:-0.320000pt;}
.ls17_c00032{letter-spacing:-0.256000pt;}
.ls14_c00032{letter-spacing:-0.192000pt;}
.ls18_c00032{letter-spacing:-0.064000pt;}
.ls13_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:0.064000pt;}
.lsc_c00032{letter-spacing:0.121600pt;}
.ls15_c00032{letter-spacing:0.128000pt;}
.ls11_c00032{letter-spacing:0.134400pt;}
.lsd_c00032{letter-spacing:0.140800pt;}
.ls16_c00032{letter-spacing:0.320000pt;}
.ls4_c00032{letter-spacing:2.240000pt;}
.ls3_c00032{letter-spacing:4.480000pt;}
.lsa_c00032{letter-spacing:4.800000pt;}
.ls5_c00032{letter-spacing:5.120000pt;}
.ls6_c00032{letter-spacing:5.126400pt;}
.ls9_c00032{letter-spacing:6.400000pt;}
.lse_c00032{letter-spacing:7.040000pt;}
.lsf_c00032{letter-spacing:7.360000pt;}
.ls2_c00032{letter-spacing:8.640000pt;}
.lsb_c00032{letter-spacing:11.200000pt;}
.ls12_c00032{letter-spacing:11.520000pt;}
.ls10_c00032{letter-spacing:11.840000pt;}
.ls7_c00032{letter-spacing:16.320000pt;}
.ls8_c00032{letter-spacing:17.280000pt;}
.ls1_c00032{letter-spacing:18.560000pt;}
.ws5_c00032{word-spacing:-16.128000pt;}
.ws1_c00032{word-spacing:-16.064000pt;}
.ws0_c00032{word-spacing:-16.000000pt;}
.ws2_c00032{word-spacing:-15.808000pt;}
.ws3_c00032{word-spacing:-15.744000pt;}
.ws4_c00032{word-spacing:-15.680000pt;}
.ws16_c00032{word-spacing:-0.320000pt;}
.ws18_c00032{word-spacing:-0.128000pt;}
.wse_c00032{word-spacing:-0.064000pt;}
.ws6_c00032{word-spacing:0.000000pt;}
.ws1b_c00032{word-spacing:0.064000pt;}
.wsa_c00032{word-spacing:0.192000pt;}
.ws1a_c00032{word-spacing:0.256000pt;}
.ws34_c00032{word-spacing:0.512000pt;}
.ws35_c00032{word-spacing:0.576000pt;}
.ws36_c00032{word-spacing:0.640000pt;}
.ws3c_c00032{word-spacing:1.536000pt;}
.ws3d_c00032{word-spacing:1.600000pt;}
.ws17_c00032{word-spacing:2.176000pt;}
.ws19_c00032{word-spacing:2.496000pt;}
.wsc_c00032{word-spacing:2.816000pt;}
.wsb_c00032{word-spacing:2.880000pt;}
.ws11_c00032{word-spacing:4.352000pt;}
.ws13_c00032{word-spacing:4.416000pt;}
.ws12_c00032{word-spacing:4.480000pt;}
.ws1e_c00032{word-spacing:4.672000pt;}
.ws22_c00032{word-spacing:4.736000pt;}
.ws32_c00032{word-spacing:4.800000pt;}
.ws31_c00032{word-spacing:4.864000pt;}
.ws20_c00032{word-spacing:5.056000pt;}
.ws1f_c00032{word-spacing:5.120000pt;}
.ws21_c00032{word-spacing:5.440000pt;}
.ws42_c00032{word-spacing:5.696000pt;}
.ws2c_c00032{word-spacing:6.016000pt;}
.ws41_c00032{word-spacing:6.144000pt;}
.ws8_c00032{word-spacing:6.336000pt;}
.ws9_c00032{word-spacing:6.400000pt;}
.ws2d_c00032{word-spacing:6.656000pt;}
.ws37_c00032{word-spacing:6.720000pt;}
.ws28_c00032{word-spacing:6.976000pt;}
.ws27_c00032{word-spacing:7.040000pt;}
.wsd_c00032{word-spacing:7.680000pt;}
.ws33_c00032{word-spacing:8.320000pt;}
.wsf_c00032{word-spacing:8.576000pt;}
.ws10_c00032{word-spacing:8.640000pt;}
.ws38_c00032{word-spacing:8.896000pt;}
.ws15_c00032{word-spacing:10.496000pt;}
.ws14_c00032{word-spacing:10.560000pt;}
.ws2b_c00032{word-spacing:10.880000pt;}
.ws2a_c00032{word-spacing:11.136000pt;}
.ws29_c00032{word-spacing:11.200000pt;}
.ws3e_c00032{word-spacing:11.392000pt;}
.ws3f_c00032{word-spacing:11.456000pt;}
.ws40_c00032{word-spacing:11.520000pt;}
.ws3b_c00032{word-spacing:11.776000pt;}
.ws3a_c00032{word-spacing:11.840000pt;}
.ws39_c00032{word-spacing:11.904000pt;}
.ws23_c00032{word-spacing:16.256000pt;}
.ws25_c00032{word-spacing:16.320000pt;}
.ws24_c00032{word-spacing:16.576000pt;}
.ws26_c00032{word-spacing:17.216000pt;}
.ws7_c00032{word-spacing:18.496000pt;}
.ws1c_c00032{word-spacing:20.352000pt;}
.ws1d_c00032{word-spacing:20.736000pt;}
.ws2e_c00032{word-spacing:25.152000pt;}
.ws30_c00032{word-spacing:25.536000pt;}
.ws2f_c00032{word-spacing:25.600000pt;}
._0_c00032{margin-left:-1.158400pt;}
._4_c00032{width:0.896000pt;}
._8_c00032{width:2.176000pt;}
._3_c00032{width:3.072000pt;}
._6_c00032{width:4.928000pt;}
._2_c00032{width:6.662400pt;}
._5_c00032{width:8.140800pt;}
._7_c00032{width:10.880000pt;}
._b_c00032{width:11.833600pt;}
._1_c00032{width:18.374400pt;}
._9_c00032{width:20.992000pt;}
._a_c00032{width:25.670400pt;}
.fs0_c00032{font-size:48.000000pt;}
.fs1_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y27_c00032{bottom:50.800000pt;}
.y26_c00032{bottom:103.920000pt;}
.y25_c00032{bottom:131.520000pt;}
.y24_c00032{bottom:159.120000pt;}
.y23_c00032{bottom:186.720000pt;}
.y22_c00032{bottom:214.320000pt;}
.y21_c00032{bottom:241.920000pt;}
.y20_c00032{bottom:269.520000pt;}
.y1f_c00032{bottom:297.120000pt;}
.y1e_c00032{bottom:324.720000pt;}
.y1d_c00032{bottom:352.320000pt;}
.y1c_c00032{bottom:379.920000pt;}
.y1b_c00032{bottom:407.520000pt;}
.y1a_c00032{bottom:435.120000pt;}
.y19_c00032{bottom:462.720000pt;}
.y18_c00032{bottom:490.320000pt;}
.y17_c00032{bottom:517.920000pt;}
.y16_c00032{bottom:545.520000pt;}
.y15_c00032{bottom:573.120000pt;}
.y14_c00032{bottom:600.640000pt;}
.y13_c00032{bottom:628.240000pt;}
.y12_c00032{bottom:655.840000pt;}
.y11_c00032{bottom:683.440000pt;}
.y10_c00032{bottom:711.040000pt;}
.yf_c00032{bottom:738.640000pt;}
.ye_c00032{bottom:766.240000pt;}
.yd_c00032{bottom:793.840000pt;}
.yc_c00032{bottom:821.440000pt;}
.yb_c00032{bottom:849.040000pt;}
.ya_c00032{bottom:876.640000pt;}
.y9_c00032{bottom:904.240000pt;}
.y8_c00032{bottom:931.840000pt;}
.y7_c00032{bottom:959.440000pt;}
.y6_c00032{bottom:987.040000pt;}
.y5_c00032{bottom:1005.440000pt;}
.y4_c00032{bottom:1023.116000pt;}
.y3_c00032{bottom:1036.880000pt;}
.y2_c00032{bottom:1050.716000pt;}
.y1_c00032{bottom:1064.480000pt;}
.h3_c00032{height:47.085938pt;}
.h2_c00032{height:47.109375pt;}
.h4_c00032{height:62.812500pt;}
.h0_c00032{height:1122.560000pt;}
.h1_c00032{height:1122.666667pt;}
.w0_c00032{width:793.840000pt;}
.w1_c00032{width:794.000000pt;}
.x0_c00032{left:0.000000pt;}
.x2_c00032{left:113.440000pt;}
.x1_c00032{left:396.960000pt;}
.x3_c00032{left:668.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81de23e8b8776be9cad1006d.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_8deb7f9c63bd721a140d3645.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;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_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;}
.lse_c00033{letter-spacing:-0.360000px;}
.lsc_c00033{letter-spacing:-0.288000px;}
.lsb_c00033{letter-spacing:-0.216000px;}
.ls10_c00033{letter-spacing:-0.144000px;}
.lsd_c00033{letter-spacing:-0.072000px;}
.lsa_c00033{letter-spacing:0.000000px;}
.ls1_c00033{letter-spacing:0.072000px;}
.ls4_c00033{letter-spacing:0.144000px;}
.lsf_c00033{letter-spacing:0.432000px;}
.ls6_c00033{letter-spacing:1.800000px;}
.ls5_c00033{letter-spacing:2.160000px;}
.ls7_c00033{letter-spacing:4.320000px;}
.ls9_c00033{letter-spacing:6.120000px;}
.ls0_c00033{letter-spacing:8.640000px;}
.ls3_c00033{letter-spacing:11.160000px;}
.ls8_c00033{letter-spacing:18.720000px;}
.ls2_c00033{letter-spacing:19.440000px;}
.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:-18.144000px;}
.ws0_c00033{word-spacing:-18.072000px;}
.ws2_c00033{word-spacing:-18.000000px;}
.ws3_c00033{word-spacing:-17.856000px;}
.ws2e_c00033{word-spacing:-0.432000px;}
.ws36_c00033{word-spacing:-0.144000px;}
.ws10_c00033{word-spacing:-0.072000px;}
.ws4_c00033{word-spacing:0.000000px;}
.ws11_c00033{word-spacing:0.072000px;}
.ws1b_c00033{word-spacing:0.216000px;}
.wse_c00033{word-spacing:0.288000px;}
.ws1a_c00033{word-spacing:0.576000px;}
.ws18_c00033{word-spacing:0.648000px;}
.ws19_c00033{word-spacing:0.720000px;}
.ws24_c00033{word-spacing:1.728000px;}
.ws7_c00033{word-spacing:1.800000px;}
.ws23_c00033{word-spacing:2.088000px;}
.ws3a_c00033{word-spacing:2.448000px;}
.ws39_c00033{word-spacing:2.520000px;}
.wsd_c00033{word-spacing:2.880000px;}
.ws21_c00033{word-spacing:3.096000px;}
.wsc_c00033{word-spacing:3.168000px;}
.wsf_c00033{word-spacing:3.240000px;}
.ws29_c00033{word-spacing:3.456000px;}
.ws27_c00033{word-spacing:3.528000px;}
.ws28_c00033{word-spacing:3.600000px;}
.ws2b_c00033{word-spacing:4.248000px;}
.ws2a_c00033{word-spacing:4.320000px;}
.ws3d_c00033{word-spacing:6.048000px;}
.ws3e_c00033{word-spacing:6.120000px;}
.ws26_c00033{word-spacing:7.200000px;}
.ws25_c00033{word-spacing:7.488000px;}
.ws37_c00033{word-spacing:8.208000px;}
.ws38_c00033{word-spacing:8.280000px;}
.ws8_c00033{word-spacing:8.640000px;}
.ws3b_c00033{word-spacing:9.216000px;}
.ws3c_c00033{word-spacing:9.360000px;}
.ws35_c00033{word-spacing:10.800000px;}
.ws17_c00033{word-spacing:11.088000px;}
.ws15_c00033{word-spacing:11.160000px;}
.ws16_c00033{word-spacing:11.520000px;}
.ws1f_c00033{word-spacing:13.608000px;}
.ws20_c00033{word-spacing:13.680000px;}
.wsa_c00033{word-spacing:14.688000px;}
.ws9_c00033{word-spacing:15.120000px;}
.wsb_c00033{word-spacing:15.336000px;}
.ws22_c00033{word-spacing:15.768000px;}
.ws34_c00033{word-spacing:15.840000px;}
.ws2d_c00033{word-spacing:18.648000px;}
.ws2c_c00033{word-spacing:18.720000px;}
.ws12_c00033{word-spacing:19.368000px;}
.ws13_c00033{word-spacing:19.440000px;}
.ws14_c00033{word-spacing:19.656000px;}
.ws2f_c00033{word-spacing:19.728000px;}
.ws30_c00033{word-spacing:19.800000px;}
.ws6_c00033{word-spacing:20.448000px;}
.ws5_c00033{word-spacing:20.880000px;}
.ws1e_c00033{word-spacing:25.488000px;}
.ws1d_c00033{word-spacing:25.848000px;}
.ws1c_c00033{word-spacing:25.920000px;}
.ws32_c00033{word-spacing:28.368000px;}
.ws31_c00033{word-spacing:28.440000px;}
.ws33_c00033{word-spacing:28.728000px;}
._0_c00033{margin-left:-1.008000px;}
._1_c00033{width:1.008000px;}
._7_c00033{width:2.088000px;}
._3_c00033{width:3.384000px;}
._b_c00033{width:5.472000px;}
._8_c00033{width:7.272000px;}
._a_c00033{width:8.424000px;}
._5_c00033{width:11.592000px;}
._2_c00033{width:14.400000px;}
._9_c00033{width:15.912000px;}
._4_c00033{width:20.016000px;}
._6_c00033{width:25.632000px;}
.fc0_c00033{color:rgb(0,0,0);}
.fs0_c00033{font-size:54.000000px;}
.fs1_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y27_c00033{bottom:57.150000px;}
.y26_c00033{bottom:116.910000px;}
.y25_c00033{bottom:147.960000px;}
.y24_c00033{bottom:179.010000px;}
.y23_c00033{bottom:210.060000px;}
.y22_c00033{bottom:241.110000px;}
.y21_c00033{bottom:272.160000px;}
.y20_c00033{bottom:303.210000px;}
.y1f_c00033{bottom:334.260000px;}
.y1e_c00033{bottom:365.310000px;}
.y1d_c00033{bottom:396.360000px;}
.y1c_c00033{bottom:427.410000px;}
.y1b_c00033{bottom:458.460000px;}
.y1a_c00033{bottom:489.510000px;}
.y19_c00033{bottom:520.560000px;}
.y18_c00033{bottom:551.610000px;}
.y17_c00033{bottom:582.660000px;}
.y16_c00033{bottom:613.710000px;}
.y15_c00033{bottom:644.760000px;}
.y14_c00033{bottom:675.720000px;}
.y13_c00033{bottom:706.770000px;}
.y12_c00033{bottom:737.820000px;}
.y11_c00033{bottom:768.870000px;}
.y10_c00033{bottom:799.920000px;}
.yf_c00033{bottom:830.970000px;}
.ye_c00033{bottom:862.020000px;}
.yd_c00033{bottom:893.070000px;}
.yc_c00033{bottom:924.120000px;}
.yb_c00033{bottom:955.170000px;}
.ya_c00033{bottom:986.220000px;}
.y9_c00033{bottom:1017.270000px;}
.y8_c00033{bottom:1048.320000px;}
.y7_c00033{bottom:1079.370000px;}
.y6_c00033{bottom:1110.420000px;}
.y5_c00033{bottom:1131.120000px;}
.y4_c00033{bottom:1151.005500px;}
.y3_c00033{bottom:1166.490000px;}
.y2_c00033{bottom:1182.055500px;}
.y1_c00033{bottom:1197.540000px;}
.h3_c00033{height:52.971680px;}
.h2_c00033{height:52.998047px;}
.h4_c00033{height:70.664062px;}
.h0_c00033{height:1262.880000px;}
.h1_c00033{height:1263.000000px;}
.w0_c00033{width:893.070000px;}
.w1_c00033{width:893.250000px;}
.x0_c00033{left:0.000000px;}
.x2_c00033{left:127.620000px;}
.x1_c00033{left:446.580000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.lse_c00033{letter-spacing:-0.320000pt;}
.lsc_c00033{letter-spacing:-0.256000pt;}
.lsb_c00033{letter-spacing:-0.192000pt;}
.ls10_c00033{letter-spacing:-0.128000pt;}
.lsd_c00033{letter-spacing:-0.064000pt;}
.lsa_c00033{letter-spacing:0.000000pt;}
.ls1_c00033{letter-spacing:0.064000pt;}
.ls4_c00033{letter-spacing:0.128000pt;}
.lsf_c00033{letter-spacing:0.384000pt;}
.ls6_c00033{letter-spacing:1.600000pt;}
.ls5_c00033{letter-spacing:1.920000pt;}
.ls7_c00033{letter-spacing:3.840000pt;}
.ls9_c00033{letter-spacing:5.440000pt;}
.ls0_c00033{letter-spacing:7.680000pt;}
.ls3_c00033{letter-spacing:9.920000pt;}
.ls8_c00033{letter-spacing:16.640000pt;}
.ls2_c00033{letter-spacing:17.280000pt;}
.ws1_c00033{word-spacing:-16.128000pt;}
.ws0_c00033{word-spacing:-16.064000pt;}
.ws2_c00033{word-spacing:-16.000000pt;}
.ws3_c00033{word-spacing:-15.872000pt;}
.ws2e_c00033{word-spacing:-0.384000pt;}
.ws36_c00033{word-spacing:-0.128000pt;}
.ws10_c00033{word-spacing:-0.064000pt;}
.ws4_c00033{word-spacing:0.000000pt;}
.ws11_c00033{word-spacing:0.064000pt;}
.ws1b_c00033{word-spacing:0.192000pt;}
.wse_c00033{word-spacing:0.256000pt;}
.ws1a_c00033{word-spacing:0.512000pt;}
.ws18_c00033{word-spacing:0.576000pt;}
.ws19_c00033{word-spacing:0.640000pt;}
.ws24_c00033{word-spacing:1.536000pt;}
.ws7_c00033{word-spacing:1.600000pt;}
.ws23_c00033{word-spacing:1.856000pt;}
.ws3a_c00033{word-spacing:2.176000pt;}
.ws39_c00033{word-spacing:2.240000pt;}
.wsd_c00033{word-spacing:2.560000pt;}
.ws21_c00033{word-spacing:2.752000pt;}
.wsc_c00033{word-spacing:2.816000pt;}
.wsf_c00033{word-spacing:2.880000pt;}
.ws29_c00033{word-spacing:3.072000pt;}
.ws27_c00033{word-spacing:3.136000pt;}
.ws28_c00033{word-spacing:3.200000pt;}
.ws2b_c00033{word-spacing:3.776000pt;}
.ws2a_c00033{word-spacing:3.840000pt;}
.ws3d_c00033{word-spacing:5.376000pt;}
.ws3e_c00033{word-spacing:5.440000pt;}
.ws26_c00033{word-spacing:6.400000pt;}
.ws25_c00033{word-spacing:6.656000pt;}
.ws37_c00033{word-spacing:7.296000pt;}
.ws38_c00033{word-spacing:7.360000pt;}
.ws8_c00033{word-spacing:7.680000pt;}
.ws3b_c00033{word-spacing:8.192000pt;}
.ws3c_c00033{word-spacing:8.320000pt;}
.ws35_c00033{word-spacing:9.600000pt;}
.ws17_c00033{word-spacing:9.856000pt;}
.ws15_c00033{word-spacing:9.920000pt;}
.ws16_c00033{word-spacing:10.240000pt;}
.ws1f_c00033{word-spacing:12.096000pt;}
.ws20_c00033{word-spacing:12.160000pt;}
.wsa_c00033{word-spacing:13.056000pt;}
.ws9_c00033{word-spacing:13.440000pt;}
.wsb_c00033{word-spacing:13.632000pt;}
.ws22_c00033{word-spacing:14.016000pt;}
.ws34_c00033{word-spacing:14.080000pt;}
.ws2d_c00033{word-spacing:16.576000pt;}
.ws2c_c00033{word-spacing:16.640000pt;}
.ws12_c00033{word-spacing:17.216000pt;}
.ws13_c00033{word-spacing:17.280000pt;}
.ws14_c00033{word-spacing:17.472000pt;}
.ws2f_c00033{word-spacing:17.536000pt;}
.ws30_c00033{word-spacing:17.600000pt;}
.ws6_c00033{word-spacing:18.176000pt;}
.ws5_c00033{word-spacing:18.560000pt;}
.ws1e_c00033{word-spacing:22.656000pt;}
.ws1d_c00033{word-spacing:22.976000pt;}
.ws1c_c00033{word-spacing:23.040000pt;}
.ws32_c00033{word-spacing:25.216000pt;}
.ws31_c00033{word-spacing:25.280000pt;}
.ws33_c00033{word-spacing:25.536000pt;}
._0_c00033{margin-left:-0.896000pt;}
._1_c00033{width:0.896000pt;}
._7_c00033{width:1.856000pt;}
._3_c00033{width:3.008000pt;}
._b_c00033{width:4.864000pt;}
._8_c00033{width:6.464000pt;}
._a_c00033{width:7.488000pt;}
._5_c00033{width:10.304000pt;}
._2_c00033{width:12.800000pt;}
._9_c00033{width:14.144000pt;}
._4_c00033{width:17.792000pt;}
._6_c00033{width:22.784000pt;}
.fs0_c00033{font-size:48.000000pt;}
.fs1_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y27_c00033{bottom:50.800000pt;}
.y26_c00033{bottom:103.920000pt;}
.y25_c00033{bottom:131.520000pt;}
.y24_c00033{bottom:159.120000pt;}
.y23_c00033{bottom:186.720000pt;}
.y22_c00033{bottom:214.320000pt;}
.y21_c00033{bottom:241.920000pt;}
.y20_c00033{bottom:269.520000pt;}
.y1f_c00033{bottom:297.120000pt;}
.y1e_c00033{bottom:324.720000pt;}
.y1d_c00033{bottom:352.320000pt;}
.y1c_c00033{bottom:379.920000pt;}
.y1b_c00033{bottom:407.520000pt;}
.y1a_c00033{bottom:435.120000pt;}
.y19_c00033{bottom:462.720000pt;}
.y18_c00033{bottom:490.320000pt;}
.y17_c00033{bottom:517.920000pt;}
.y16_c00033{bottom:545.520000pt;}
.y15_c00033{bottom:573.120000pt;}
.y14_c00033{bottom:600.640000pt;}
.y13_c00033{bottom:628.240000pt;}
.y12_c00033{bottom:655.840000pt;}
.y11_c00033{bottom:683.440000pt;}
.y10_c00033{bottom:711.040000pt;}
.yf_c00033{bottom:738.640000pt;}
.ye_c00033{bottom:766.240000pt;}
.yd_c00033{bottom:793.840000pt;}
.yc_c00033{bottom:821.440000pt;}
.yb_c00033{bottom:849.040000pt;}
.ya_c00033{bottom:876.640000pt;}
.y9_c00033{bottom:904.240000pt;}
.y8_c00033{bottom:931.840000pt;}
.y7_c00033{bottom:959.440000pt;}
.y6_c00033{bottom:987.040000pt;}
.y5_c00033{bottom:1005.440000pt;}
.y4_c00033{bottom:1023.116000pt;}
.y3_c00033{bottom:1036.880000pt;}
.y2_c00033{bottom:1050.716000pt;}
.y1_c00033{bottom:1064.480000pt;}
.h3_c00033{height:47.085938pt;}
.h2_c00033{height:47.109375pt;}
.h4_c00033{height:62.812500pt;}
.h0_c00033{height:1122.560000pt;}
.h1_c00033{height:1122.666667pt;}
.w0_c00033{width:793.840000pt;}
.w1_c00033{width:794.000000pt;}
.x0_c00033{left:0.000000pt;}
.x2_c00033{left:113.440000pt;}
.x1_c00033{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e020a024a789f39b758bd01c.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.284668;font-style:normal;font-weight:normal;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_b50df211b8658d2ee3d16bed.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;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_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.v1_c00034{vertical-align:27.000000px;}
.ls11_c00034{letter-spacing:-0.576000px;}
.ls10_c00034{letter-spacing:-0.360000px;}
.lsf_c00034{letter-spacing:-0.288000px;}
.ls12_c00034{letter-spacing:-0.216000px;}
.lse_c00034{letter-spacing:0.000000px;}
.ls0_c00034{letter-spacing:0.072000px;}
.ls9_c00034{letter-spacing:0.144000px;}
.ls4_c00034{letter-spacing:0.180000px;}
.ls8_c00034{letter-spacing:2.160000px;}
.lsb_c00034{letter-spacing:3.240000px;}
.ls1_c00034{letter-spacing:3.960000px;}
.lsd_c00034{letter-spacing:5.400000px;}
.ls2_c00034{letter-spacing:10.800000px;}
.ls3_c00034{letter-spacing:10.814400px;}
.lsc_c00034{letter-spacing:14.400000px;}
.ls7_c00034{letter-spacing:16.920000px;}
.lsa_c00034{letter-spacing:18.360000px;}
.ls5_c00034{letter-spacing:19.440000px;}
.ls6_c00034{letter-spacing:19.800000px;}
.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;}
}
.ws6_c00034{word-spacing:-18.144000px;}
.ws5_c00034{word-spacing:-18.072000px;}
.ws3_c00034{word-spacing:-18.000000px;}
.ws4_c00034{word-spacing:-17.784000px;}
.ws0_c00034{word-spacing:-17.712000px;}
.ws1_c00034{word-spacing:-17.640000px;}
.ws2_c00034{word-spacing:-17.424000px;}
.ws31_c00034{word-spacing:-0.432000px;}
.ws1b_c00034{word-spacing:-0.144000px;}
.wsf_c00034{word-spacing:-0.072000px;}
.ws7_c00034{word-spacing:0.000000px;}
.wsa_c00034{word-spacing:0.360000px;}
.ws21_c00034{word-spacing:0.648000px;}
.ws9_c00034{word-spacing:1.728000px;}
.ws12_c00034{word-spacing:2.088000px;}
.ws20_c00034{word-spacing:2.160000px;}
.ws26_c00034{word-spacing:3.168000px;}
.ws25_c00034{word-spacing:3.240000px;}
.ws27_c00034{word-spacing:3.528000px;}
.wsb_c00034{word-spacing:3.888000px;}
.ws24_c00034{word-spacing:4.968000px;}
.ws2c_c00034{word-spacing:5.040000px;}
.ws2d_c00034{word-spacing:5.256000px;}
.ws2e_c00034{word-spacing:5.328000px;}
.ws8_c00034{word-spacing:7.848000px;}
.ws2f_c00034{word-spacing:8.928000px;}
.ws30_c00034{word-spacing:9.000000px;}
.ws2b_c00034{word-spacing:9.648000px;}
.ws11_c00034{word-spacing:10.728000px;}
.ws10_c00034{word-spacing:10.800000px;}
.ws1f_c00034{word-spacing:14.328000px;}
.ws29_c00034{word-spacing:14.400000px;}
.ws2a_c00034{word-spacing:14.760000px;}
.ws1c_c00034{word-spacing:17.136000px;}
.ws1e_c00034{word-spacing:17.208000px;}
.ws1d_c00034{word-spacing:17.280000px;}
.ws22_c00034{word-spacing:18.216000px;}
.ws23_c00034{word-spacing:18.288000px;}
.ws17_c00034{word-spacing:19.440000px;}
.ws1a_c00034{word-spacing:19.728000px;}
.ws18_c00034{word-spacing:19.800000px;}
.ws19_c00034{word-spacing:20.016000px;}
.ws28_c00034{word-spacing:20.448000px;}
.ws15_c00034{word-spacing:29.016000px;}
.ws14_c00034{word-spacing:29.088000px;}
.ws13_c00034{word-spacing:29.160000px;}
.ws16_c00034{word-spacing:31.320000px;}
.wse_c00034{word-spacing:36.648000px;}
.wsd_c00034{word-spacing:36.720000px;}
.wsc_c00034{word-spacing:37.080000px;}
._0_c00034{margin-left:-1.087200px;}
._1_c00034{width:1.944000px;}
._3_c00034{width:9.856800px;}
._4_c00034{width:11.318400px;}
._5_c00034{width:28.512000px;}
._6_c00034{width:30.384000px;}
._2_c00034{width:37.224000px;}
.fc0_c00034{color:rgb(0,0,0);}
.fs2_c00034{font-size:47.880000px;}
.fs0_c00034{font-size:54.000000px;}
.fs1_c00034{font-size:72.000000px;}
.y0_c00034{bottom:0.000000px;}
.y27_c00034{bottom:57.150000px;}
.y26_c00034{bottom:116.910000px;}
.y25_c00034{bottom:147.960000px;}
.y24_c00034{bottom:179.010000px;}
.y23_c00034{bottom:210.060000px;}
.y22_c00034{bottom:241.110000px;}
.y21_c00034{bottom:272.160000px;}
.y20_c00034{bottom:303.210000px;}
.y1f_c00034{bottom:334.260000px;}
.y1e_c00034{bottom:365.310000px;}
.y1d_c00034{bottom:396.360000px;}
.y1c_c00034{bottom:427.410000px;}
.y1b_c00034{bottom:458.460000px;}
.y1a_c00034{bottom:489.510000px;}
.y19_c00034{bottom:520.560000px;}
.y18_c00034{bottom:551.610000px;}
.y17_c00034{bottom:582.660000px;}
.y16_c00034{bottom:613.710000px;}
.y15_c00034{bottom:644.760000px;}
.y14_c00034{bottom:675.720000px;}
.y13_c00034{bottom:706.770000px;}
.y12_c00034{bottom:737.820000px;}
.y11_c00034{bottom:768.870000px;}
.y10_c00034{bottom:799.920000px;}
.yf_c00034{bottom:830.970000px;}
.ye_c00034{bottom:862.020000px;}
.yd_c00034{bottom:893.070000px;}
.yc_c00034{bottom:924.120000px;}
.yb_c00034{bottom:955.170000px;}
.ya_c00034{bottom:986.220000px;}
.y9_c00034{bottom:1017.270000px;}
.y8_c00034{bottom:1048.320000px;}
.y7_c00034{bottom:1079.370000px;}
.y6_c00034{bottom:1110.420000px;}
.y5_c00034{bottom:1131.120000px;}
.y4_c00034{bottom:1151.005500px;}
.y3_c00034{bottom:1166.490000px;}
.y2_c00034{bottom:1182.055500px;}
.y1_c00034{bottom:1197.540000px;}
.h3_c00034{height:52.971680px;}
.h2_c00034{height:52.998047px;}
.h4_c00034{height:70.664062px;}
.h5_c00034{height:73.991602px;}
.h0_c00034{height:1262.880000px;}
.h1_c00034{height:1263.000000px;}
.w0_c00034{width:893.070000px;}
.w1_c00034{width:893.250000px;}
.x0_c00034{left:0.000000px;}
.x2_c00034{left:127.620000px;}
.x1_c00034{left:446.580000px;}
.x3_c00034{left:740.520000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.v1_c00034{vertical-align:24.000000pt;}
.ls11_c00034{letter-spacing:-0.512000pt;}
.ls10_c00034{letter-spacing:-0.320000pt;}
.lsf_c00034{letter-spacing:-0.256000pt;}
.ls12_c00034{letter-spacing:-0.192000pt;}
.lse_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:0.064000pt;}
.ls9_c00034{letter-spacing:0.128000pt;}
.ls4_c00034{letter-spacing:0.160000pt;}
.ls8_c00034{letter-spacing:1.920000pt;}
.lsb_c00034{letter-spacing:2.880000pt;}
.ls1_c00034{letter-spacing:3.520000pt;}
.lsd_c00034{letter-spacing:4.800000pt;}
.ls2_c00034{letter-spacing:9.600000pt;}
.ls3_c00034{letter-spacing:9.612800pt;}
.lsc_c00034{letter-spacing:12.800000pt;}
.ls7_c00034{letter-spacing:15.040000pt;}
.lsa_c00034{letter-spacing:16.320000pt;}
.ls5_c00034{letter-spacing:17.280000pt;}
.ls6_c00034{letter-spacing:17.600000pt;}
.ws6_c00034{word-spacing:-16.128000pt;}
.ws5_c00034{word-spacing:-16.064000pt;}
.ws3_c00034{word-spacing:-16.000000pt;}
.ws4_c00034{word-spacing:-15.808000pt;}
.ws0_c00034{word-spacing:-15.744000pt;}
.ws1_c00034{word-spacing:-15.680000pt;}
.ws2_c00034{word-spacing:-15.488000pt;}
.ws31_c00034{word-spacing:-0.384000pt;}
.ws1b_c00034{word-spacing:-0.128000pt;}
.wsf_c00034{word-spacing:-0.064000pt;}
.ws7_c00034{word-spacing:0.000000pt;}
.wsa_c00034{word-spacing:0.320000pt;}
.ws21_c00034{word-spacing:0.576000pt;}
.ws9_c00034{word-spacing:1.536000pt;}
.ws12_c00034{word-spacing:1.856000pt;}
.ws20_c00034{word-spacing:1.920000pt;}
.ws26_c00034{word-spacing:2.816000pt;}
.ws25_c00034{word-spacing:2.880000pt;}
.ws27_c00034{word-spacing:3.136000pt;}
.wsb_c00034{word-spacing:3.456000pt;}
.ws24_c00034{word-spacing:4.416000pt;}
.ws2c_c00034{word-spacing:4.480000pt;}
.ws2d_c00034{word-spacing:4.672000pt;}
.ws2e_c00034{word-spacing:4.736000pt;}
.ws8_c00034{word-spacing:6.976000pt;}
.ws2f_c00034{word-spacing:7.936000pt;}
.ws30_c00034{word-spacing:8.000000pt;}
.ws2b_c00034{word-spacing:8.576000pt;}
.ws11_c00034{word-spacing:9.536000pt;}
.ws10_c00034{word-spacing:9.600000pt;}
.ws1f_c00034{word-spacing:12.736000pt;}
.ws29_c00034{word-spacing:12.800000pt;}
.ws2a_c00034{word-spacing:13.120000pt;}
.ws1c_c00034{word-spacing:15.232000pt;}
.ws1e_c00034{word-spacing:15.296000pt;}
.ws1d_c00034{word-spacing:15.360000pt;}
.ws22_c00034{word-spacing:16.192000pt;}
.ws23_c00034{word-spacing:16.256000pt;}
.ws17_c00034{word-spacing:17.280000pt;}
.ws1a_c00034{word-spacing:17.536000pt;}
.ws18_c00034{word-spacing:17.600000pt;}
.ws19_c00034{word-spacing:17.792000pt;}
.ws28_c00034{word-spacing:18.176000pt;}
.ws15_c00034{word-spacing:25.792000pt;}
.ws14_c00034{word-spacing:25.856000pt;}
.ws13_c00034{word-spacing:25.920000pt;}
.ws16_c00034{word-spacing:27.840000pt;}
.wse_c00034{word-spacing:32.576000pt;}
.wsd_c00034{word-spacing:32.640000pt;}
.wsc_c00034{word-spacing:32.960000pt;}
._0_c00034{margin-left:-0.966400pt;}
._1_c00034{width:1.728000pt;}
._3_c00034{width:8.761600pt;}
._4_c00034{width:10.060800pt;}
._5_c00034{width:25.344000pt;}
._6_c00034{width:27.008000pt;}
._2_c00034{width:33.088000pt;}
.fs2_c00034{font-size:42.560000pt;}
.fs0_c00034{font-size:48.000000pt;}
.fs1_c00034{font-size:64.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y27_c00034{bottom:50.800000pt;}
.y26_c00034{bottom:103.920000pt;}
.y25_c00034{bottom:131.520000pt;}
.y24_c00034{bottom:159.120000pt;}
.y23_c00034{bottom:186.720000pt;}
.y22_c00034{bottom:214.320000pt;}
.y21_c00034{bottom:241.920000pt;}
.y20_c00034{bottom:269.520000pt;}
.y1f_c00034{bottom:297.120000pt;}
.y1e_c00034{bottom:324.720000pt;}
.y1d_c00034{bottom:352.320000pt;}
.y1c_c00034{bottom:379.920000pt;}
.y1b_c00034{bottom:407.520000pt;}
.y1a_c00034{bottom:435.120000pt;}
.y19_c00034{bottom:462.720000pt;}
.y18_c00034{bottom:490.320000pt;}
.y17_c00034{bottom:517.920000pt;}
.y16_c00034{bottom:545.520000pt;}
.y15_c00034{bottom:573.120000pt;}
.y14_c00034{bottom:600.640000pt;}
.y13_c00034{bottom:628.240000pt;}
.y12_c00034{bottom:655.840000pt;}
.y11_c00034{bottom:683.440000pt;}
.y10_c00034{bottom:711.040000pt;}
.yf_c00034{bottom:738.640000pt;}
.ye_c00034{bottom:766.240000pt;}
.yd_c00034{bottom:793.840000pt;}
.yc_c00034{bottom:821.440000pt;}
.yb_c00034{bottom:849.040000pt;}
.ya_c00034{bottom:876.640000pt;}
.y9_c00034{bottom:904.240000pt;}
.y8_c00034{bottom:931.840000pt;}
.y7_c00034{bottom:959.440000pt;}
.y6_c00034{bottom:987.040000pt;}
.y5_c00034{bottom:1005.440000pt;}
.y4_c00034{bottom:1023.116000pt;}
.y3_c00034{bottom:1036.880000pt;}
.y2_c00034{bottom:1050.716000pt;}
.y1_c00034{bottom:1064.480000pt;}
.h3_c00034{height:47.085938pt;}
.h2_c00034{height:47.109375pt;}
.h4_c00034{height:62.812500pt;}
.h5_c00034{height:65.770312pt;}
.h0_c00034{height:1122.560000pt;}
.h1_c00034{height:1122.666667pt;}
.w0_c00034{width:793.840000pt;}
.w1_c00034{width:794.000000pt;}
.x0_c00034{left:0.000000pt;}
.x2_c00034{left:113.440000pt;}
.x1_c00034{left:396.960000pt;}
.x3_c00034{left:658.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2eee79d96352ae3f0d11d22e.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.284668;font-style:normal;font-weight:normal;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_fb6439e9f877e6a83036d1b9.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00035{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls4_c00035{letter-spacing:-0.288000px;}
.ls2_c00035{letter-spacing:0.000000px;}
.ls3_c00035{letter-spacing:0.072000px;}
.ls1_c00035{letter-spacing:0.144000px;}
.ls0_c00035{letter-spacing:7.934400px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00035{word-spacing:-18.144000px;}
.ws1_c00035{word-spacing:-18.072000px;}
.ws0_c00035{word-spacing:-17.712000px;}
.ws14_c00035{word-spacing:-0.360000px;}
.ws9_c00035{word-spacing:-0.144000px;}
.wsf_c00035{word-spacing:-0.072000px;}
.ws3_c00035{word-spacing:0.000000px;}
.ws12_c00035{word-spacing:2.088000px;}
.ws15_c00035{word-spacing:2.160000px;}
.ws13_c00035{word-spacing:2.448000px;}
.wse_c00035{word-spacing:5.616000px;}
.wsd_c00035{word-spacing:5.688000px;}
.wsa_c00035{word-spacing:5.760000px;}
.ws8_c00035{word-spacing:7.488000px;}
.ws7_c00035{word-spacing:7.776000px;}
.ws5_c00035{word-spacing:7.848000px;}
.ws6_c00035{word-spacing:7.920000px;}
.ws10_c00035{word-spacing:8.136000px;}
.ws11_c00035{word-spacing:8.208000px;}
.ws4_c00035{word-spacing:18.288000px;}
.wsc_c00035{word-spacing:21.168000px;}
.wsb_c00035{word-spacing:21.240000px;}
._0_c00035{margin-left:-1.224000px;}
._1_c00035{width:1.353600px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs0_c00035{font-size:54.000000px;}
.fs1_c00035{font-size:72.000000px;}
.y0_c00035{bottom:0.000000px;}
.y27_c00035{bottom:57.150000px;}
.y26_c00035{bottom:116.910000px;}
.y25_c00035{bottom:147.960000px;}
.y24_c00035{bottom:179.010000px;}
.y23_c00035{bottom:210.060000px;}
.y22_c00035{bottom:241.110000px;}
.y21_c00035{bottom:272.160000px;}
.y20_c00035{bottom:303.210000px;}
.y1f_c00035{bottom:334.260000px;}
.y1e_c00035{bottom:365.310000px;}
.y1d_c00035{bottom:396.360000px;}
.y1c_c00035{bottom:427.410000px;}
.y1b_c00035{bottom:458.460000px;}
.y1a_c00035{bottom:489.510000px;}
.y19_c00035{bottom:520.560000px;}
.y18_c00035{bottom:551.610000px;}
.y17_c00035{bottom:582.660000px;}
.y16_c00035{bottom:613.710000px;}
.y15_c00035{bottom:644.760000px;}
.y14_c00035{bottom:675.720000px;}
.y13_c00035{bottom:706.770000px;}
.y12_c00035{bottom:737.820000px;}
.y11_c00035{bottom:768.870000px;}
.y10_c00035{bottom:799.920000px;}
.yf_c00035{bottom:830.970000px;}
.ye_c00035{bottom:862.020000px;}
.yd_c00035{bottom:893.070000px;}
.yc_c00035{bottom:924.120000px;}
.yb_c00035{bottom:955.170000px;}
.ya_c00035{bottom:986.220000px;}
.y9_c00035{bottom:1017.270000px;}
.y8_c00035{bottom:1048.320000px;}
.y7_c00035{bottom:1079.370000px;}
.y6_c00035{bottom:1110.420000px;}
.y5_c00035{bottom:1131.120000px;}
.y4_c00035{bottom:1151.005500px;}
.y3_c00035{bottom:1166.490000px;}
.y2_c00035{bottom:1182.055500px;}
.y1_c00035{bottom:1197.540000px;}
.h3_c00035{height:52.971680px;}
.h2_c00035{height:52.998047px;}
.h4_c00035{height:70.664062px;}
.h0_c00035{height:1262.880000px;}
.h1_c00035{height:1263.000000px;}
.w0_c00035{width:893.070000px;}
.w1_c00035{width:893.250000px;}
.x0_c00035{left:0.000000px;}
.x2_c00035{left:127.620000px;}
.x1_c00035{left:446.580000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls4_c00035{letter-spacing:-0.256000pt;}
.ls2_c00035{letter-spacing:0.000000pt;}
.ls3_c00035{letter-spacing:0.064000pt;}
.ls1_c00035{letter-spacing:0.128000pt;}
.ls0_c00035{letter-spacing:7.052800pt;}
.ws2_c00035{word-spacing:-16.128000pt;}
.ws1_c00035{word-spacing:-16.064000pt;}
.ws0_c00035{word-spacing:-15.744000pt;}
.ws14_c00035{word-spacing:-0.320000pt;}
.ws9_c00035{word-spacing:-0.128000pt;}
.wsf_c00035{word-spacing:-0.064000pt;}
.ws3_c00035{word-spacing:0.000000pt;}
.ws12_c00035{word-spacing:1.856000pt;}
.ws15_c00035{word-spacing:1.920000pt;}
.ws13_c00035{word-spacing:2.176000pt;}
.wse_c00035{word-spacing:4.992000pt;}
.wsd_c00035{word-spacing:5.056000pt;}
.wsa_c00035{word-spacing:5.120000pt;}
.ws8_c00035{word-spacing:6.656000pt;}
.ws7_c00035{word-spacing:6.912000pt;}
.ws5_c00035{word-spacing:6.976000pt;}
.ws6_c00035{word-spacing:7.040000pt;}
.ws10_c00035{word-spacing:7.232000pt;}
.ws11_c00035{word-spacing:7.296000pt;}
.ws4_c00035{word-spacing:16.256000pt;}
.wsc_c00035{word-spacing:18.816000pt;}
.wsb_c00035{word-spacing:18.880000pt;}
._0_c00035{margin-left:-1.088000pt;}
._1_c00035{width:1.203200pt;}
.fs0_c00035{font-size:48.000000pt;}
.fs1_c00035{font-size:64.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y27_c00035{bottom:50.800000pt;}
.y26_c00035{bottom:103.920000pt;}
.y25_c00035{bottom:131.520000pt;}
.y24_c00035{bottom:159.120000pt;}
.y23_c00035{bottom:186.720000pt;}
.y22_c00035{bottom:214.320000pt;}
.y21_c00035{bottom:241.920000pt;}
.y20_c00035{bottom:269.520000pt;}
.y1f_c00035{bottom:297.120000pt;}
.y1e_c00035{bottom:324.720000pt;}
.y1d_c00035{bottom:352.320000pt;}
.y1c_c00035{bottom:379.920000pt;}
.y1b_c00035{bottom:407.520000pt;}
.y1a_c00035{bottom:435.120000pt;}
.y19_c00035{bottom:462.720000pt;}
.y18_c00035{bottom:490.320000pt;}
.y17_c00035{bottom:517.920000pt;}
.y16_c00035{bottom:545.520000pt;}
.y15_c00035{bottom:573.120000pt;}
.y14_c00035{bottom:600.640000pt;}
.y13_c00035{bottom:628.240000pt;}
.y12_c00035{bottom:655.840000pt;}
.y11_c00035{bottom:683.440000pt;}
.y10_c00035{bottom:711.040000pt;}
.yf_c00035{bottom:738.640000pt;}
.ye_c00035{bottom:766.240000pt;}
.yd_c00035{bottom:793.840000pt;}
.yc_c00035{bottom:821.440000pt;}
.yb_c00035{bottom:849.040000pt;}
.ya_c00035{bottom:876.640000pt;}
.y9_c00035{bottom:904.240000pt;}
.y8_c00035{bottom:931.840000pt;}
.y7_c00035{bottom:959.440000pt;}
.y6_c00035{bottom:987.040000pt;}
.y5_c00035{bottom:1005.440000pt;}
.y4_c00035{bottom:1023.116000pt;}
.y3_c00035{bottom:1036.880000pt;}
.y2_c00035{bottom:1050.716000pt;}
.y1_c00035{bottom:1064.480000pt;}
.h3_c00035{height:47.085938pt;}
.h2_c00035{height:47.109375pt;}
.h4_c00035{height:62.812500pt;}
.h0_c00035{height:1122.560000pt;}
.h1_c00035{height:1122.666667pt;}
.w0_c00035{width:793.840000pt;}
.w1_c00035{width:794.000000pt;}
.x0_c00035{left:0.000000pt;}
.x2_c00035{left:113.440000pt;}
.x1_c00035{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4e7afc1f2fa82f98a75b0a2.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00036;src:url('chunks/assets/font_e6d0f0450c7003b3fc664d82.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00036{vertical-align:-105.840000px;}
.v0_c00036{vertical-align:0.000000px;}
.ls3_c00036{letter-spacing:-0.192240px;}
.ls2_c00036{letter-spacing:-0.108000px;}
.ls1_c00036{letter-spacing:0.000000px;}
.ls4_c00036{letter-spacing:0.072000px;}
.ls0_c00036{letter-spacing:1257.840000px;}
.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;}
}
.ws4_c00036{word-spacing:-0.072000px;}
.ws0_c00036{word-spacing:0.000000px;}
.ws2_c00036{word-spacing:0.162000px;}
.ws1_c00036{word-spacing:0.270000px;}
.ws3_c00036{word-spacing:0.288360px;}
._1_c00036{margin-left:-1.058400px;}
._0_c00036{width:1.220400px;}
.fc0_c00036{color:rgb(0,0,0);}
.fs0_c00036{font-size:54.000000px;}
.fs1_c00036{font-size:72.000000px;}
.fs2_c00036{font-size:96.120000px;}
.fs3_c00036{font-size:144.000000px;}
.y0_c00036{bottom:0.000000px;}
.y17_c00036{bottom:57.240000px;}
.y16_c00036{bottom:448.020000px;}
.y15_c00036{bottom:468.720000px;}
.y14_c00036{bottom:489.420000px;}
.y13_c00036{bottom:510.120000px;}
.y12_c00036{bottom:545.745240px;}
.y11_c00036{bottom:587.148930px;}
.y10_c00036{bottom:628.552620px;}
.yf_c00036{bottom:669.956310px;}
.ye_c00036{bottom:711.360000px;}
.yd_c00036{bottom:762.300000px;}
.yc_c00036{bottom:814.840290px;}
.yb_c00036{bottom:856.147860px;}
.ya_c00036{bottom:897.551550px;}
.y9_c00036{bottom:938.955240px;}
.y8_c00036{bottom:980.358930px;}
.y7_c00036{bottom:1021.762620px;}
.y6_c00036{bottom:1063.166310px;}
.y5_c00036{bottom:1131.030000px;}
.y4_c00036{bottom:1150.920000px;}
.y3_c00036{bottom:1166.404500px;}
.y2_c00036{bottom:1181.970000px;}
.y1_c00036{bottom:1197.450000px;}
.h3_c00036{height:52.971680px;}
.h2_c00036{height:52.998047px;}
.h4_c00036{height:70.664062px;}
.h7_c00036{height:72.562500px;}
.h5_c00036{height:96.870938px;}
.h6_c00036{height:145.125000px;}
.h0_c00036{height:1262.880000px;}
.h1_c00036{height:1263.000000px;}
.w0_c00036{width:893.070000px;}
.w1_c00036{width:893.250000px;}
.x0_c00036{left:0.000000px;}
.x3_c00036{left:127.620000px;}
.x8_c00036{left:132.120000px;}
.x7_c00036{left:136.440000px;}
.x5_c00036{left:138.323160px;}
.x6_c00036{left:148.950000px;}
.x9_c00036{left:282.870000px;}
.x4_c00036{left:363.510000px;}
.x2_c00036{left:425.160000px;}
.x1_c00036{left:446.580000px;}
.xa_c00036{left:756.540000px;}
@media print{
.v1_c00036{vertical-align:-94.080000pt;}
.v0_c00036{vertical-align:0.000000pt;}
.ls3_c00036{letter-spacing:-0.170880pt;}
.ls2_c00036{letter-spacing:-0.096000pt;}
.ls1_c00036{letter-spacing:0.000000pt;}
.ls4_c00036{letter-spacing:0.064000pt;}
.ls0_c00036{letter-spacing:1118.080000pt;}
.ws4_c00036{word-spacing:-0.064000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
.ws2_c00036{word-spacing:0.144000pt;}
.ws1_c00036{word-spacing:0.240000pt;}
.ws3_c00036{word-spacing:0.256320pt;}
._1_c00036{margin-left:-0.940800pt;}
._0_c00036{width:1.084800pt;}
.fs0_c00036{font-size:48.000000pt;}
.fs1_c00036{font-size:64.000000pt;}
.fs2_c00036{font-size:85.440000pt;}
.fs3_c00036{font-size:128.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y17_c00036{bottom:50.880000pt;}
.y16_c00036{bottom:398.240000pt;}
.y15_c00036{bottom:416.640000pt;}
.y14_c00036{bottom:435.040000pt;}
.y13_c00036{bottom:453.440000pt;}
.y12_c00036{bottom:485.106880pt;}
.y11_c00036{bottom:521.910160pt;}
.y10_c00036{bottom:558.713440pt;}
.yf_c00036{bottom:595.516720pt;}
.ye_c00036{bottom:632.320000pt;}
.yd_c00036{bottom:677.600000pt;}
.yc_c00036{bottom:724.302480pt;}
.yb_c00036{bottom:761.020320pt;}
.ya_c00036{bottom:797.823600pt;}
.y9_c00036{bottom:834.626880pt;}
.y8_c00036{bottom:871.430160pt;}
.y7_c00036{bottom:908.233440pt;}
.y6_c00036{bottom:945.036720pt;}
.y5_c00036{bottom:1005.360000pt;}
.y4_c00036{bottom:1023.040000pt;}
.y3_c00036{bottom:1036.804000pt;}
.y2_c00036{bottom:1050.640000pt;}
.y1_c00036{bottom:1064.400000pt;}
.h3_c00036{height:47.085938pt;}
.h2_c00036{height:47.109375pt;}
.h4_c00036{height:62.812500pt;}
.h7_c00036{height:64.500000pt;}
.h5_c00036{height:86.107500pt;}
.h6_c00036{height:129.000000pt;}
.h0_c00036{height:1122.560000pt;}
.h1_c00036{height:1122.666667pt;}
.w0_c00036{width:793.840000pt;}
.w1_c00036{width:794.000000pt;}
.x0_c00036{left:0.000000pt;}
.x3_c00036{left:113.440000pt;}
.x8_c00036{left:117.440000pt;}
.x7_c00036{left:121.280000pt;}
.x5_c00036{left:122.953920pt;}
.x6_c00036{left:132.400000pt;}
.x9_c00036{left:251.440000pt;}
.x4_c00036{left:323.120000pt;}
.x2_c00036{left:377.920000pt;}
.x1_c00036{left:396.960000pt;}
.xa_c00036{left:672.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_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_723045573c32d2def9b8901d.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00037;src:url('chunks/assets/font_30602c5f53283a3a44de0c81.woff2')format("woff");}.ff3_c00037{font-family:ff3_c00037;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00037;src:url('chunks/assets/font_b84889ddba967872ce4b986a.woff2')format("woff");}.ff4_c00037{font-family:ff4_c00037;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:ff5_c00037;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00037{font-family:ff5_c00037;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00037{vertical-align:-61.938000px;}
.v3_c00037{vertical-align:-20.880000px;}
.v0_c00037{vertical-align:0.000000px;}
.v2_c00037{vertical-align:27.000000px;}
.ls1c_c00037{letter-spacing:-0.420840px;}
.ls16_c00037{letter-spacing:-0.360000px;}
.ls18_c00037{letter-spacing:-0.240480px;}
.ls15_c00037{letter-spacing:-0.216000px;}
.ls17_c00037{letter-spacing:-0.180360px;}
.ls14_c00037{letter-spacing:-0.144000px;}
.ls1b_c00037{letter-spacing:-0.120240px;}
.ls13_c00037{letter-spacing:-0.072000px;}
.ls19_c00037{letter-spacing:-0.060120px;}
.ls12_c00037{letter-spacing:0.000000px;}
.ls4_c00037{letter-spacing:0.072000px;}
.ls11_c00037{letter-spacing:0.120240px;}
.ls1_c00037{letter-spacing:0.144000px;}
.lsb_c00037{letter-spacing:0.158400px;}
.ls3_c00037{letter-spacing:0.180000px;}
.ls1a_c00037{letter-spacing:0.180360px;}
.ls9_c00037{letter-spacing:0.720000px;}
.lse_c00037{letter-spacing:2.224440px;}
.ls7_c00037{letter-spacing:2.520000px;}
.ls10_c00037{letter-spacing:2.585160px;}
.ls2_c00037{letter-spacing:4.680000px;}
.lsf_c00037{letter-spacing:8.098164px;}
.ls8_c00037{letter-spacing:8.280000px;}
.ls6_c00037{letter-spacing:9.360000px;}
.ls5_c00037{letter-spacing:9.720000px;}
.lsa_c00037{letter-spacing:16.200000px;}
.lsc_c00037{letter-spacing:20.887200px;}
.lsd_c00037{letter-spacing:30.744000px;}
.ls0_c00037{letter-spacing:319.518000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00037{word-spacing:-18.144000px;}
.ws0_c00037{word-spacing:-18.072000px;}
.ws4_c00037{word-spacing:-18.000000px;}
.ws2_c00037{word-spacing:-17.928000px;}
.ws1_c00037{word-spacing:-17.856000px;}
.ws5_c00037{word-spacing:-17.640000px;}
.ws6_c00037{word-spacing:-9.720000px;}
.ws8_c00037{word-spacing:-0.162000px;}
.ws28_c00037{word-spacing:-0.144000px;}
.ws2d_c00037{word-spacing:-0.120240px;}
.wsa_c00037{word-spacing:-0.072000px;}
.ws31_c00037{word-spacing:-0.060120px;}
.ws7_c00037{word-spacing:0.000000px;}
.ws34_c00037{word-spacing:0.060120px;}
.ws9_c00037{word-spacing:0.072000px;}
.ws3a_c00037{word-spacing:0.120240px;}
.ws39_c00037{word-spacing:0.180360px;}
.ws2f_c00037{word-spacing:0.240480px;}
.ws22_c00037{word-spacing:0.360000px;}
.ws3b_c00037{word-spacing:0.420840px;}
.ws21_c00037{word-spacing:0.648000px;}
.ws2c_c00037{word-spacing:1.800000px;}
.ws30_c00037{word-spacing:2.284560px;}
.ws2e_c00037{word-spacing:2.404800px;}
.ws14_c00037{word-spacing:2.448000px;}
.ws13_c00037{word-spacing:2.520000px;}
.ws38_c00037{word-spacing:2.765520px;}
.ws37_c00037{word-spacing:3.066120px;}
.ws29_c00037{word-spacing:3.600000px;}
.ws12_c00037{word-spacing:4.248000px;}
.wsb_c00037{word-spacing:4.608000px;}
.wsc_c00037{word-spacing:4.680000px;}
.wsd_c00037{word-spacing:6.408000px;}
.ws2a_c00037{word-spacing:6.480000px;}
.ws2b_c00037{word-spacing:6.768000px;}
.ws33_c00037{word-spacing:8.056080px;}
.ws32_c00037{word-spacing:8.116200px;}
.ws18_c00037{word-spacing:8.136000px;}
.ws17_c00037{word-spacing:8.280000px;}
.wsf_c00037{word-spacing:8.496000px;}
.ws1a_c00037{word-spacing:8.568000px;}
.ws1b_c00037{word-spacing:8.640000px;}
.ws11_c00037{word-spacing:8.856000px;}
.ws10_c00037{word-spacing:8.928000px;}
.wse_c00037{word-spacing:9.000000px;}
.ws16_c00037{word-spacing:9.648000px;}
.ws15_c00037{word-spacing:9.720000px;}
.ws24_c00037{word-spacing:11.448000px;}
.ws23_c00037{word-spacing:11.520000px;}
.ws25_c00037{word-spacing:16.128000px;}
.ws35_c00037{word-spacing:16.713360px;}
.ws36_c00037{word-spacing:16.773480px;}
.ws1d_c00037{word-spacing:17.496000px;}
.ws1e_c00037{word-spacing:17.568000px;}
.ws1c_c00037{word-spacing:17.856000px;}
.ws26_c00037{word-spacing:21.168000px;}
.ws27_c00037{word-spacing:21.240000px;}
.ws1f_c00037{word-spacing:23.760000px;}
.ws20_c00037{word-spacing:24.048000px;}
.ws19_c00037{word-spacing:24.480000px;}
._5_c00037{margin-left:-9.576000px;}
._1_c00037{margin-left:-1.087200px;}
._0_c00037{width:1.008000px;}
._4_c00037{width:2.808000px;}
._2_c00037{width:4.039200px;}
._7_c00037{width:7.416000px;}
._3_c00037{width:8.647200px;}
._9_c00037{width:11.808000px;}
._8_c00037{width:16.862400px;}
._6_c00037{width:24.552000px;}
.fc0_c00037{color:rgb(0,0,0);}
.fs3_c00037{font-size:38.880000px;}
.fs2_c00037{font-size:47.880000px;}
.fs0_c00037{font-size:54.000000px;}
.fs4_c00037{font-size:60.120000px;}
.fs1_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y28_c00037{bottom:57.240000px;}
.y27_c00037{bottom:109.786680px;}
.y26_c00037{bottom:126.981000px;}
.y25_c00037{bottom:144.265500px;}
.y24_c00037{bottom:166.770000px;}
.y23_c00037{bottom:178.735500px;}
.y22_c00037{bottom:201.240000px;}
.y29_c00037{bottom:213.930000px;}
.y21_c00037{bottom:241.020000px;}
.y20_c00037{bottom:272.070000px;}
.y1f_c00037{bottom:303.120000px;}
.y1e_c00037{bottom:334.170000px;}
.y1d_c00037{bottom:365.220000px;}
.y1c_c00037{bottom:396.270000px;}
.y1b_c00037{bottom:427.320000px;}
.y1a_c00037{bottom:458.370000px;}
.y19_c00037{bottom:489.420000px;}
.y18_c00037{bottom:520.470000px;}
.y17_c00037{bottom:551.520000px;}
.y16_c00037{bottom:582.570000px;}
.y15_c00037{bottom:613.620000px;}
.y14_c00037{bottom:644.670000px;}
.y13_c00037{bottom:675.720000px;}
.y12_c00037{bottom:706.770000px;}
.y11_c00037{bottom:737.820000px;}
.y10_c00037{bottom:768.870000px;}
.yf_c00037{bottom:799.920000px;}
.ye_c00037{bottom:830.970000px;}
.yd_c00037{bottom:861.930000px;}
.yc_c00037{bottom:892.980000px;}
.yb_c00037{bottom:924.030000px;}
.ya_c00037{bottom:955.080000px;}
.y9_c00037{bottom:986.130000px;}
.y8_c00037{bottom:1017.180000px;}
.y7_c00037{bottom:1048.230000px;}
.y6_c00037{bottom:1079.280000px;}
.y5_c00037{bottom:1110.150000px;}
.y4_c00037{bottom:1131.030000px;}
.y3_c00037{bottom:1150.915500px;}
.y2_c00037{bottom:1166.400000px;}
.y1_c00037{bottom:1197.450000px;}
.h7_c00037{height:38.158594px;}
.h2_c00037{height:52.998047px;}
.h8_c00037{height:59.004492px;}
.h3_c00037{height:70.664062px;}
.h4_c00037{height:72.562500px;}
.h5_c00037{height:73.991602px;}
.h6_c00037{height:75.093750px;}
.h0_c00037{height:1262.880000px;}
.h1_c00037{height:1263.000000px;}
.w0_c00037{width:893.070000px;}
.w1_c00037{width:893.250000px;}
.x0_c00037{left:0.000000px;}
.x2_c00037{left:127.620000px;}
.x3_c00037{left:154.620000px;}
.x1_c00037{left:446.580000px;}
@media print{
.v1_c00037{vertical-align:-55.056000pt;}
.v3_c00037{vertical-align:-18.560000pt;}
.v0_c00037{vertical-align:0.000000pt;}
.v2_c00037{vertical-align:24.000000pt;}
.ls1c_c00037{letter-spacing:-0.374080pt;}
.ls16_c00037{letter-spacing:-0.320000pt;}
.ls18_c00037{letter-spacing:-0.213760pt;}
.ls15_c00037{letter-spacing:-0.192000pt;}
.ls17_c00037{letter-spacing:-0.160320pt;}
.ls14_c00037{letter-spacing:-0.128000pt;}
.ls1b_c00037{letter-spacing:-0.106880pt;}
.ls13_c00037{letter-spacing:-0.064000pt;}
.ls19_c00037{letter-spacing:-0.053440pt;}
.ls12_c00037{letter-spacing:0.000000pt;}
.ls4_c00037{letter-spacing:0.064000pt;}
.ls11_c00037{letter-spacing:0.106880pt;}
.ls1_c00037{letter-spacing:0.128000pt;}
.lsb_c00037{letter-spacing:0.140800pt;}
.ls3_c00037{letter-spacing:0.160000pt;}
.ls1a_c00037{letter-spacing:0.160320pt;}
.ls9_c00037{letter-spacing:0.640000pt;}
.lse_c00037{letter-spacing:1.977280pt;}
.ls7_c00037{letter-spacing:2.240000pt;}
.ls10_c00037{letter-spacing:2.297920pt;}
.ls2_c00037{letter-spacing:4.160000pt;}
.lsf_c00037{letter-spacing:7.198368pt;}
.ls8_c00037{letter-spacing:7.360000pt;}
.ls6_c00037{letter-spacing:8.320000pt;}
.ls5_c00037{letter-spacing:8.640000pt;}
.lsa_c00037{letter-spacing:14.400000pt;}
.lsc_c00037{letter-spacing:18.566400pt;}
.lsd_c00037{letter-spacing:27.328000pt;}
.ls0_c00037{letter-spacing:284.016000pt;}
.ws3_c00037{word-spacing:-16.128000pt;}
.ws0_c00037{word-spacing:-16.064000pt;}
.ws4_c00037{word-spacing:-16.000000pt;}
.ws2_c00037{word-spacing:-15.936000pt;}
.ws1_c00037{word-spacing:-15.872000pt;}
.ws5_c00037{word-spacing:-15.680000pt;}
.ws6_c00037{word-spacing:-8.640000pt;}
.ws8_c00037{word-spacing:-0.144000pt;}
.ws28_c00037{word-spacing:-0.128000pt;}
.ws2d_c00037{word-spacing:-0.106880pt;}
.wsa_c00037{word-spacing:-0.064000pt;}
.ws31_c00037{word-spacing:-0.053440pt;}
.ws7_c00037{word-spacing:0.000000pt;}
.ws34_c00037{word-spacing:0.053440pt;}
.ws9_c00037{word-spacing:0.064000pt;}
.ws3a_c00037{word-spacing:0.106880pt;}
.ws39_c00037{word-spacing:0.160320pt;}
.ws2f_c00037{word-spacing:0.213760pt;}
.ws22_c00037{word-spacing:0.320000pt;}
.ws3b_c00037{word-spacing:0.374080pt;}
.ws21_c00037{word-spacing:0.576000pt;}
.ws2c_c00037{word-spacing:1.600000pt;}
.ws30_c00037{word-spacing:2.030720pt;}
.ws2e_c00037{word-spacing:2.137600pt;}
.ws14_c00037{word-spacing:2.176000pt;}
.ws13_c00037{word-spacing:2.240000pt;}
.ws38_c00037{word-spacing:2.458240pt;}
.ws37_c00037{word-spacing:2.725440pt;}
.ws29_c00037{word-spacing:3.200000pt;}
.ws12_c00037{word-spacing:3.776000pt;}
.wsb_c00037{word-spacing:4.096000pt;}
.wsc_c00037{word-spacing:4.160000pt;}
.wsd_c00037{word-spacing:5.696000pt;}
.ws2a_c00037{word-spacing:5.760000pt;}
.ws2b_c00037{word-spacing:6.016000pt;}
.ws33_c00037{word-spacing:7.160960pt;}
.ws32_c00037{word-spacing:7.214400pt;}
.ws18_c00037{word-spacing:7.232000pt;}
.ws17_c00037{word-spacing:7.360000pt;}
.wsf_c00037{word-spacing:7.552000pt;}
.ws1a_c00037{word-spacing:7.616000pt;}
.ws1b_c00037{word-spacing:7.680000pt;}
.ws11_c00037{word-spacing:7.872000pt;}
.ws10_c00037{word-spacing:7.936000pt;}
.wse_c00037{word-spacing:8.000000pt;}
.ws16_c00037{word-spacing:8.576000pt;}
.ws15_c00037{word-spacing:8.640000pt;}
.ws24_c00037{word-spacing:10.176000pt;}
.ws23_c00037{word-spacing:10.240000pt;}
.ws25_c00037{word-spacing:14.336000pt;}
.ws35_c00037{word-spacing:14.856320pt;}
.ws36_c00037{word-spacing:14.909760pt;}
.ws1d_c00037{word-spacing:15.552000pt;}
.ws1e_c00037{word-spacing:15.616000pt;}
.ws1c_c00037{word-spacing:15.872000pt;}
.ws26_c00037{word-spacing:18.816000pt;}
.ws27_c00037{word-spacing:18.880000pt;}
.ws1f_c00037{word-spacing:21.120000pt;}
.ws20_c00037{word-spacing:21.376000pt;}
.ws19_c00037{word-spacing:21.760000pt;}
._5_c00037{margin-left:-8.512000pt;}
._1_c00037{margin-left:-0.966400pt;}
._0_c00037{width:0.896000pt;}
._4_c00037{width:2.496000pt;}
._2_c00037{width:3.590400pt;}
._7_c00037{width:6.592000pt;}
._3_c00037{width:7.686400pt;}
._9_c00037{width:10.496000pt;}
._8_c00037{width:14.988800pt;}
._6_c00037{width:21.824000pt;}
.fs3_c00037{font-size:34.560000pt;}
.fs2_c00037{font-size:42.560000pt;}
.fs0_c00037{font-size:48.000000pt;}
.fs4_c00037{font-size:53.440000pt;}
.fs1_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y28_c00037{bottom:50.880000pt;}
.y27_c00037{bottom:97.588160pt;}
.y26_c00037{bottom:112.872000pt;}
.y25_c00037{bottom:128.236000pt;}
.y24_c00037{bottom:148.240000pt;}
.y23_c00037{bottom:158.876000pt;}
.y22_c00037{bottom:178.880000pt;}
.y29_c00037{bottom:190.160000pt;}
.y21_c00037{bottom:214.240000pt;}
.y20_c00037{bottom:241.840000pt;}
.y1f_c00037{bottom:269.440000pt;}
.y1e_c00037{bottom:297.040000pt;}
.y1d_c00037{bottom:324.640000pt;}
.y1c_c00037{bottom:352.240000pt;}
.y1b_c00037{bottom:379.840000pt;}
.y1a_c00037{bottom:407.440000pt;}
.y19_c00037{bottom:435.040000pt;}
.y18_c00037{bottom:462.640000pt;}
.y17_c00037{bottom:490.240000pt;}
.y16_c00037{bottom:517.840000pt;}
.y15_c00037{bottom:545.440000pt;}
.y14_c00037{bottom:573.040000pt;}
.y13_c00037{bottom:600.640000pt;}
.y12_c00037{bottom:628.240000pt;}
.y11_c00037{bottom:655.840000pt;}
.y10_c00037{bottom:683.440000pt;}
.yf_c00037{bottom:711.040000pt;}
.ye_c00037{bottom:738.640000pt;}
.yd_c00037{bottom:766.160000pt;}
.yc_c00037{bottom:793.760000pt;}
.yb_c00037{bottom:821.360000pt;}
.ya_c00037{bottom:848.960000pt;}
.y9_c00037{bottom:876.560000pt;}
.y8_c00037{bottom:904.160000pt;}
.y7_c00037{bottom:931.760000pt;}
.y6_c00037{bottom:959.360000pt;}
.y5_c00037{bottom:986.800000pt;}
.y4_c00037{bottom:1005.360000pt;}
.y3_c00037{bottom:1023.036000pt;}
.y2_c00037{bottom:1036.800000pt;}
.y1_c00037{bottom:1064.400000pt;}
.h7_c00037{height:33.918750pt;}
.h2_c00037{height:47.109375pt;}
.h8_c00037{height:52.448437pt;}
.h3_c00037{height:62.812500pt;}
.h4_c00037{height:64.500000pt;}
.h5_c00037{height:65.770312pt;}
.h6_c00037{height:66.750000pt;}
.h0_c00037{height:1122.560000pt;}
.h1_c00037{height:1122.666667pt;}
.w0_c00037{width:793.840000pt;}
.w1_c00037{width:794.000000pt;}
.x0_c00037{left:0.000000pt;}
.x2_c00037{left:113.440000pt;}
.x3_c00037{left:137.440000pt;}
.x1_c00037{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0811cb7111b67e9e4920eb72.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_86900d396eba497cb7c1f314.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;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_c00038;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.432129;font-style: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;}
.lse_c00038{letter-spacing:-0.360000px;}
.lsf_c00038{letter-spacing:-0.288000px;}
.ls10_c00038{letter-spacing:-0.144000px;}
.lsc_c00038{letter-spacing:-0.108000px;}
.lsb_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:0.072000px;}
.lsd_c00038{letter-spacing:0.144000px;}
.lsa_c00038{letter-spacing:2.520000px;}
.ls8_c00038{letter-spacing:5.400000px;}
.ls4_c00038{letter-spacing:6.120000px;}
.ls3_c00038{letter-spacing:6.480000px;}
.ls7_c00038{letter-spacing:10.800000px;}
.ls9_c00038{letter-spacing:11.160000px;}
.ls2_c00038{letter-spacing:11.880000px;}
.ls6_c00038{letter-spacing:12.600000px;}
.ls5_c00038{letter-spacing:18.360000px;}
.ls1_c00038{letter-spacing:30.744000px;}
.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:-18.144000px;}
.ws2_c00038{word-spacing:-18.072000px;}
.ws1_c00038{word-spacing:-17.856000px;}
.ws15_c00038{word-spacing:-0.144000px;}
.wsc_c00038{word-spacing:-0.072000px;}
.ws3_c00038{word-spacing:0.000000px;}
.ws5_c00038{word-spacing:0.162000px;}
.ws4_c00038{word-spacing:0.270000px;}
.ws1d_c00038{word-spacing:0.288000px;}
.ws6_c00038{word-spacing:1.008000px;}
.ws7_c00038{word-spacing:1.080000px;}
.ws2f_c00038{word-spacing:2.160000px;}
.ws30_c00038{word-spacing:2.448000px;}
.ws31_c00038{word-spacing:2.520000px;}
.wsf_c00038{word-spacing:3.168000px;}
.ws1c_c00038{word-spacing:3.600000px;}
.ws1b_c00038{word-spacing:3.888000px;}
.ws2c_c00038{word-spacing:5.328000px;}
.ws18_c00038{word-spacing:5.400000px;}
.ws25_c00038{word-spacing:6.048000px;}
.ws10_c00038{word-spacing:6.408000px;}
.ws11_c00038{word-spacing:6.480000px;}
.ws12_c00038{word-spacing:6.840000px;}
.wse_c00038{word-spacing:7.488000px;}
.wsd_c00038{word-spacing:7.560000px;}
.ws29_c00038{word-spacing:7.920000px;}
.ws2b_c00038{word-spacing:9.288000px;}
.ws23_c00038{word-spacing:9.720000px;}
.ws22_c00038{word-spacing:10.008000px;}
.ws24_c00038{word-spacing:10.080000px;}
.ws20_c00038{word-spacing:10.440000px;}
.ws21_c00038{word-spacing:10.728000px;}
.ws2e_c00038{word-spacing:11.088000px;}
.ws2d_c00038{word-spacing:11.160000px;}
.ws8_c00038{word-spacing:12.240000px;}
.ws1e_c00038{word-spacing:12.528000px;}
.ws1f_c00038{word-spacing:12.600000px;}
.ws27_c00038{word-spacing:14.256000px;}
.ws26_c00038{word-spacing:14.328000px;}
.ws28_c00038{word-spacing:15.120000px;}
.ws2a_c00038{word-spacing:16.128000px;}
.ws1a_c00038{word-spacing:18.360000px;}
.ws13_c00038{word-spacing:18.720000px;}
.ws17_c00038{word-spacing:19.008000px;}
.ws14_c00038{word-spacing:19.080000px;}
.ws16_c00038{word-spacing:20.160000px;}
.ws9_c00038{word-spacing:23.760000px;}
.wsa_c00038{word-spacing:24.048000px;}
.wsb_c00038{word-spacing:24.120000px;}
.ws19_c00038{word-spacing:27.648000px;}
._1_c00038{margin-left:-1.058400px;}
._0_c00038{width:1.220400px;}
._9_c00038{width:2.304000px;}
._4_c00038{width:3.650400px;}
._8_c00038{width:4.996800px;}
._6_c00038{width:10.008000px;}
._5_c00038{width:11.908800px;}
._7_c00038{width:13.730400px;}
._3_c00038{width:20.304000px;}
._2_c00038{width:23.407200px;}
.fc0_c00038{color:rgb(0,0,0);}
.fs0_c00038{font-size:54.000000px;}
.fs1_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y27_c00038{bottom:57.240000px;}
.y26_c00038{bottom:127.170000px;}
.y25_c00038{bottom:158.220000px;}
.y24_c00038{bottom:189.270000px;}
.y23_c00038{bottom:220.320000px;}
.y22_c00038{bottom:251.370000px;}
.y21_c00038{bottom:282.420000px;}
.y20_c00038{bottom:313.470000px;}
.y1f_c00038{bottom:344.520000px;}
.y1e_c00038{bottom:375.570000px;}
.y1d_c00038{bottom:406.620000px;}
.y1c_c00038{bottom:437.670000px;}
.y1b_c00038{bottom:468.720000px;}
.y1a_c00038{bottom:499.770000px;}
.y19_c00038{bottom:530.820000px;}
.y18_c00038{bottom:561.870000px;}
.y17_c00038{bottom:592.920000px;}
.y16_c00038{bottom:613.620000px;}
.y15_c00038{bottom:644.670000px;}
.y14_c00038{bottom:675.720000px;}
.y13_c00038{bottom:706.770000px;}
.y12_c00038{bottom:737.820000px;}
.y11_c00038{bottom:768.870000px;}
.y10_c00038{bottom:799.920000px;}
.yf_c00038{bottom:830.970000px;}
.ye_c00038{bottom:861.930000px;}
.yd_c00038{bottom:892.980000px;}
.yc_c00038{bottom:924.030000px;}
.yb_c00038{bottom:955.080000px;}
.ya_c00038{bottom:986.130000px;}
.y9_c00038{bottom:1017.180000px;}
.y8_c00038{bottom:1048.230000px;}
.y7_c00038{bottom:1079.280000px;}
.y6_c00038{bottom:1110.330000px;}
.y5_c00038{bottom:1131.030000px;}
.y4_c00038{bottom:1150.920000px;}
.y3_c00038{bottom:1166.404500px;}
.y2_c00038{bottom:1181.970000px;}
.y1_c00038{bottom:1197.450000px;}
.h3_c00038{height:52.971680px;}
.h2_c00038{height:52.998047px;}
.h4_c00038{height:70.664062px;}
.h5_c00038{height:75.093750px;}
.h0_c00038{height:1262.880000px;}
.h1_c00038{height:1263.000000px;}
.w0_c00038{width:893.070000px;}
.w1_c00038{width:893.250000px;}
.x0_c00038{left:0.000000px;}
.x3_c00038{left:127.620000px;}
.x4_c00038{left:154.620000px;}
.x2_c00038{left:425.160000px;}
.x1_c00038{left:446.580000px;}
.x5_c00038{left:756.540000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.lse_c00038{letter-spacing:-0.320000pt;}
.lsf_c00038{letter-spacing:-0.256000pt;}
.ls10_c00038{letter-spacing:-0.128000pt;}
.lsc_c00038{letter-spacing:-0.096000pt;}
.lsb_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:0.064000pt;}
.lsd_c00038{letter-spacing:0.128000pt;}
.lsa_c00038{letter-spacing:2.240000pt;}
.ls8_c00038{letter-spacing:4.800000pt;}
.ls4_c00038{letter-spacing:5.440000pt;}
.ls3_c00038{letter-spacing:5.760000pt;}
.ls7_c00038{letter-spacing:9.600000pt;}
.ls9_c00038{letter-spacing:9.920000pt;}
.ls2_c00038{letter-spacing:10.560000pt;}
.ls6_c00038{letter-spacing:11.200000pt;}
.ls5_c00038{letter-spacing:16.320000pt;}
.ls1_c00038{letter-spacing:27.328000pt;}
.ws0_c00038{word-spacing:-16.128000pt;}
.ws2_c00038{word-spacing:-16.064000pt;}
.ws1_c00038{word-spacing:-15.872000pt;}
.ws15_c00038{word-spacing:-0.128000pt;}
.wsc_c00038{word-spacing:-0.064000pt;}
.ws3_c00038{word-spacing:0.000000pt;}
.ws5_c00038{word-spacing:0.144000pt;}
.ws4_c00038{word-spacing:0.240000pt;}
.ws1d_c00038{word-spacing:0.256000pt;}
.ws6_c00038{word-spacing:0.896000pt;}
.ws7_c00038{word-spacing:0.960000pt;}
.ws2f_c00038{word-spacing:1.920000pt;}
.ws30_c00038{word-spacing:2.176000pt;}
.ws31_c00038{word-spacing:2.240000pt;}
.wsf_c00038{word-spacing:2.816000pt;}
.ws1c_c00038{word-spacing:3.200000pt;}
.ws1b_c00038{word-spacing:3.456000pt;}
.ws2c_c00038{word-spacing:4.736000pt;}
.ws18_c00038{word-spacing:4.800000pt;}
.ws25_c00038{word-spacing:5.376000pt;}
.ws10_c00038{word-spacing:5.696000pt;}
.ws11_c00038{word-spacing:5.760000pt;}
.ws12_c00038{word-spacing:6.080000pt;}
.wse_c00038{word-spacing:6.656000pt;}
.wsd_c00038{word-spacing:6.720000pt;}
.ws29_c00038{word-spacing:7.040000pt;}
.ws2b_c00038{word-spacing:8.256000pt;}
.ws23_c00038{word-spacing:8.640000pt;}
.ws22_c00038{word-spacing:8.896000pt;}
.ws24_c00038{word-spacing:8.960000pt;}
.ws20_c00038{word-spacing:9.280000pt;}
.ws21_c00038{word-spacing:9.536000pt;}
.ws2e_c00038{word-spacing:9.856000pt;}
.ws2d_c00038{word-spacing:9.920000pt;}
.ws8_c00038{word-spacing:10.880000pt;}
.ws1e_c00038{word-spacing:11.136000pt;}
.ws1f_c00038{word-spacing:11.200000pt;}
.ws27_c00038{word-spacing:12.672000pt;}
.ws26_c00038{word-spacing:12.736000pt;}
.ws28_c00038{word-spacing:13.440000pt;}
.ws2a_c00038{word-spacing:14.336000pt;}
.ws1a_c00038{word-spacing:16.320000pt;}
.ws13_c00038{word-spacing:16.640000pt;}
.ws17_c00038{word-spacing:16.896000pt;}
.ws14_c00038{word-spacing:16.960000pt;}
.ws16_c00038{word-spacing:17.920000pt;}
.ws9_c00038{word-spacing:21.120000pt;}
.wsa_c00038{word-spacing:21.376000pt;}
.wsb_c00038{word-spacing:21.440000pt;}
.ws19_c00038{word-spacing:24.576000pt;}
._1_c00038{margin-left:-0.940800pt;}
._0_c00038{width:1.084800pt;}
._9_c00038{width:2.048000pt;}
._4_c00038{width:3.244800pt;}
._8_c00038{width:4.441600pt;}
._6_c00038{width:8.896000pt;}
._5_c00038{width:10.585600pt;}
._7_c00038{width:12.204800pt;}
._3_c00038{width:18.048000pt;}
._2_c00038{width:20.806400pt;}
.fs0_c00038{font-size:48.000000pt;}
.fs1_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y27_c00038{bottom:50.880000pt;}
.y26_c00038{bottom:113.040000pt;}
.y25_c00038{bottom:140.640000pt;}
.y24_c00038{bottom:168.240000pt;}
.y23_c00038{bottom:195.840000pt;}
.y22_c00038{bottom:223.440000pt;}
.y21_c00038{bottom:251.040000pt;}
.y20_c00038{bottom:278.640000pt;}
.y1f_c00038{bottom:306.240000pt;}
.y1e_c00038{bottom:333.840000pt;}
.y1d_c00038{bottom:361.440000pt;}
.y1c_c00038{bottom:389.040000pt;}
.y1b_c00038{bottom:416.640000pt;}
.y1a_c00038{bottom:444.240000pt;}
.y19_c00038{bottom:471.840000pt;}
.y18_c00038{bottom:499.440000pt;}
.y17_c00038{bottom:527.040000pt;}
.y16_c00038{bottom:545.440000pt;}
.y15_c00038{bottom:573.040000pt;}
.y14_c00038{bottom:600.640000pt;}
.y13_c00038{bottom:628.240000pt;}
.y12_c00038{bottom:655.840000pt;}
.y11_c00038{bottom:683.440000pt;}
.y10_c00038{bottom:711.040000pt;}
.yf_c00038{bottom:738.640000pt;}
.ye_c00038{bottom:766.160000pt;}
.yd_c00038{bottom:793.760000pt;}
.yc_c00038{bottom:821.360000pt;}
.yb_c00038{bottom:848.960000pt;}
.ya_c00038{bottom:876.560000pt;}
.y9_c00038{bottom:904.160000pt;}
.y8_c00038{bottom:931.760000pt;}
.y7_c00038{bottom:959.360000pt;}
.y6_c00038{bottom:986.960000pt;}
.y5_c00038{bottom:1005.360000pt;}
.y4_c00038{bottom:1023.040000pt;}
.y3_c00038{bottom:1036.804000pt;}
.y2_c00038{bottom:1050.640000pt;}
.y1_c00038{bottom:1064.400000pt;}
.h3_c00038{height:47.085938pt;}
.h2_c00038{height:47.109375pt;}
.h4_c00038{height:62.812500pt;}
.h5_c00038{height:66.750000pt;}
.h0_c00038{height:1122.560000pt;}
.h1_c00038{height:1122.666667pt;}
.w0_c00038{width:793.840000pt;}
.w1_c00038{width:794.000000pt;}
.x0_c00038{left:0.000000pt;}
.x3_c00038{left:113.440000pt;}
.x4_c00038{left:137.440000pt;}
.x2_c00038{left:377.920000pt;}
.x1_c00038{left:396.960000pt;}
.x5_c00038{left:672.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_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_e7106481baa754e09ec112a8.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.284180;font-style: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);}
.v1_c00039{vertical-align:-61.938000px;}
.v3_c00039{vertical-align:-20.880000px;}
.v0_c00039{vertical-align:0.000000px;}
.v2_c00039{vertical-align:27.000000px;}
.ls19_c00039{letter-spacing:-0.480960px;}
.ls14_c00039{letter-spacing:-0.216000px;}
.ls18_c00039{letter-spacing:-0.180360px;}
.ls17_c00039{letter-spacing:-0.120240px;}
.ls16_c00039{letter-spacing:-0.060120px;}
.ls13_c00039{letter-spacing:0.000000px;}
.ls5_c00039{letter-spacing:0.072000px;}
.ls12_c00039{letter-spacing:0.120240px;}
.ls1_c00039{letter-spacing:0.144000px;}
.ls3_c00039{letter-spacing:0.180000px;}
.ls15_c00039{letter-spacing:0.180360px;}
.ls8_c00039{letter-spacing:0.360000px;}
.ls9_c00039{letter-spacing:0.748800px;}
.lsd_c00039{letter-spacing:2.160000px;}
.lse_c00039{letter-spacing:2.585160px;}
.lsf_c00039{letter-spacing:2.645280px;}
.lsa_c00039{letter-spacing:2.880000px;}
.lsb_c00039{letter-spacing:3.600000px;}
.ls4_c00039{letter-spacing:4.320000px;}
.ls2_c00039{letter-spacing:5.760000px;}
.ls10_c00039{letter-spacing:10.160280px;}
.ls6_c00039{letter-spacing:14.760000px;}
.lsc_c00039{letter-spacing:20.160000px;}
.ls11_c00039{letter-spacing:21.042000px;}
.ls7_c00039{letter-spacing:28.800000px;}
.ls0_c00039{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00039{word-spacing:-18.144000px;}
.ws1_c00039{word-spacing:-18.072000px;}
.ws2_c00039{word-spacing:-18.000000px;}
.ws0_c00039{word-spacing:-17.784000px;}
.ws5_c00039{word-spacing:-15.030000px;}
.ws6_c00039{word-spacing:-14.969880px;}
.ws8_c00039{word-spacing:-14.849640px;}
.ws7_c00039{word-spacing:-14.549040px;}
.ws4_c00039{word-spacing:-9.720000px;}
.ws1a_c00039{word-spacing:-0.360000px;}
.wsa_c00039{word-spacing:-0.162000px;}
.ws1c_c00039{word-spacing:-0.144000px;}
.ws3b_c00039{word-spacing:-0.120240px;}
.ws17_c00039{word-spacing:-0.072000px;}
.ws9_c00039{word-spacing:0.000000px;}
.ws33_c00039{word-spacing:0.180360px;}
.ws1d_c00039{word-spacing:0.648000px;}
.ws1e_c00039{word-spacing:0.720000px;}
.ws13_c00039{word-spacing:1.368000px;}
.ws14_c00039{word-spacing:1.440000px;}
.ws19_c00039{word-spacing:1.728000px;}
.ws2d_c00039{word-spacing:2.016000px;}
.ws2e_c00039{word-spacing:2.088000px;}
.ws2f_c00039{word-spacing:2.160000px;}
.ws31_c00039{word-spacing:2.284560px;}
.ws30_c00039{word-spacing:2.404800px;}
.ws12_c00039{word-spacing:2.448000px;}
.ws11_c00039{word-spacing:2.520000px;}
.ws32_c00039{word-spacing:2.645280px;}
.ws22_c00039{word-spacing:2.808000px;}
.ws23_c00039{word-spacing:2.880000px;}
.ws26_c00039{word-spacing:3.456000px;}
.ws25_c00039{word-spacing:3.528000px;}
.ws27_c00039{word-spacing:3.600000px;}
.wsf_c00039{word-spacing:4.248000px;}
.wse_c00039{word-spacing:4.320000px;}
.ws29_c00039{word-spacing:5.328000px;}
.wsd_c00039{word-spacing:5.400000px;}
.wsc_c00039{word-spacing:5.616000px;}
.ws28_c00039{word-spacing:5.688000px;}
.wsb_c00039{word-spacing:5.760000px;}
.ws3a_c00039{word-spacing:7.695360px;}
.ws1b_c00039{word-spacing:9.360000px;}
.ws34_c00039{word-spacing:9.619200px;}
.ws2c_c00039{word-spacing:9.720000px;}
.ws24_c00039{word-spacing:10.008000px;}
.ws1f_c00039{word-spacing:10.800000px;}
.ws10_c00039{word-spacing:11.736000px;}
.ws21_c00039{word-spacing:14.328000px;}
.ws20_c00039{word-spacing:14.400000px;}
.ws16_c00039{word-spacing:14.688000px;}
.ws15_c00039{word-spacing:14.760000px;}
.ws2b_c00039{word-spacing:20.016000px;}
.ws2a_c00039{word-spacing:20.160000px;}
.ws37_c00039{word-spacing:20.320560px;}
.ws35_c00039{word-spacing:20.440800px;}
.ws39_c00039{word-spacing:20.681280px;}
.ws36_c00039{word-spacing:20.741400px;}
.ws38_c00039{word-spacing:20.801520px;}
.ws18_c00039{word-spacing:28.728000px;}
._0_c00039{margin-left:-1.080000px;}
._1_c00039{width:1.152000px;}
._2_c00039{width:2.952000px;}
._3_c00039{width:13.896000px;}
._4_c00039{width:19.368000px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs3_c00039{font-size:38.880000px;}
.fs2_c00039{font-size:47.880000px;}
.fs0_c00039{font-size:54.000000px;}
.fs4_c00039{font-size:60.120000px;}
.fs1_c00039{font-size:72.000000px;}
.y0_c00039{bottom:0.000000px;}
.y28_c00039{bottom:57.240000px;}
.y27_c00039{bottom:109.786680px;}
.y26_c00039{bottom:126.981000px;}
.y25_c00039{bottom:144.265500px;}
.y24_c00039{bottom:166.770000px;}
.y23_c00039{bottom:178.735500px;}
.y22_c00039{bottom:201.240000px;}
.y29_c00039{bottom:213.930000px;}
.y21_c00039{bottom:251.370000px;}
.y20_c00039{bottom:282.420000px;}
.y1f_c00039{bottom:313.470000px;}
.y1e_c00039{bottom:344.520000px;}
.y1d_c00039{bottom:375.570000px;}
.y1c_c00039{bottom:406.620000px;}
.y1b_c00039{bottom:437.670000px;}
.y1a_c00039{bottom:468.720000px;}
.y19_c00039{bottom:499.770000px;}
.y18_c00039{bottom:530.820000px;}
.y17_c00039{bottom:561.870000px;}
.y16_c00039{bottom:592.920000px;}
.y15_c00039{bottom:623.970000px;}
.y14_c00039{bottom:655.020000px;}
.y13_c00039{bottom:675.720000px;}
.y12_c00039{bottom:706.770000px;}
.y11_c00039{bottom:737.820000px;}
.y10_c00039{bottom:768.870000px;}
.yf_c00039{bottom:799.920000px;}
.ye_c00039{bottom:830.970000px;}
.yd_c00039{bottom:861.930000px;}
.yc_c00039{bottom:892.980000px;}
.yb_c00039{bottom:924.030000px;}
.ya_c00039{bottom:955.080000px;}
.y9_c00039{bottom:986.130000px;}
.y8_c00039{bottom:1017.180000px;}
.y7_c00039{bottom:1048.230000px;}
.y6_c00039{bottom:1079.280000px;}
.y5_c00039{bottom:1110.330000px;}
.y4_c00039{bottom:1131.030000px;}
.y3_c00039{bottom:1150.915500px;}
.y2_c00039{bottom:1166.400000px;}
.y1_c00039{bottom:1197.450000px;}
.h5_c00039{height:38.158594px;}
.h2_c00039{height:52.998047px;}
.h6_c00039{height:59.004492px;}
.h3_c00039{height:70.664062px;}
.h4_c00039{height:73.991602px;}
.h0_c00039{height:1262.880000px;}
.h1_c00039{height:1263.000000px;}
.w0_c00039{width:893.070000px;}
.w1_c00039{width:893.250000px;}
.x0_c00039{left:0.000000px;}
.x2_c00039{left:127.620000px;}
.x1_c00039{left:446.580000px;}
@media print{
.v1_c00039{vertical-align:-55.056000pt;}
.v3_c00039{vertical-align:-18.560000pt;}
.v0_c00039{vertical-align:0.000000pt;}
.v2_c00039{vertical-align:24.000000pt;}
.ls19_c00039{letter-spacing:-0.427520pt;}
.ls14_c00039{letter-spacing:-0.192000pt;}
.ls18_c00039{letter-spacing:-0.160320pt;}
.ls17_c00039{letter-spacing:-0.106880pt;}
.ls16_c00039{letter-spacing:-0.053440pt;}
.ls13_c00039{letter-spacing:0.000000pt;}
.ls5_c00039{letter-spacing:0.064000pt;}
.ls12_c00039{letter-spacing:0.106880pt;}
.ls1_c00039{letter-spacing:0.128000pt;}
.ls3_c00039{letter-spacing:0.160000pt;}
.ls15_c00039{letter-spacing:0.160320pt;}
.ls8_c00039{letter-spacing:0.320000pt;}
.ls9_c00039{letter-spacing:0.665600pt;}
.lsd_c00039{letter-spacing:1.920000pt;}
.lse_c00039{letter-spacing:2.297920pt;}
.lsf_c00039{letter-spacing:2.351360pt;}
.lsa_c00039{letter-spacing:2.560000pt;}
.lsb_c00039{letter-spacing:3.200000pt;}
.ls4_c00039{letter-spacing:3.840000pt;}
.ls2_c00039{letter-spacing:5.120000pt;}
.ls10_c00039{letter-spacing:9.031360pt;}
.ls6_c00039{letter-spacing:13.120000pt;}
.lsc_c00039{letter-spacing:17.920000pt;}
.ls11_c00039{letter-spacing:18.704000pt;}
.ls7_c00039{letter-spacing:25.600000pt;}
.ls0_c00039{letter-spacing:284.016000pt;}
.ws3_c00039{word-spacing:-16.128000pt;}
.ws1_c00039{word-spacing:-16.064000pt;}
.ws2_c00039{word-spacing:-16.000000pt;}
.ws0_c00039{word-spacing:-15.808000pt;}
.ws5_c00039{word-spacing:-13.360000pt;}
.ws6_c00039{word-spacing:-13.306560pt;}
.ws8_c00039{word-spacing:-13.199680pt;}
.ws7_c00039{word-spacing:-12.932480pt;}
.ws4_c00039{word-spacing:-8.640000pt;}
.ws1a_c00039{word-spacing:-0.320000pt;}
.wsa_c00039{word-spacing:-0.144000pt;}
.ws1c_c00039{word-spacing:-0.128000pt;}
.ws3b_c00039{word-spacing:-0.106880pt;}
.ws17_c00039{word-spacing:-0.064000pt;}
.ws9_c00039{word-spacing:0.000000pt;}
.ws33_c00039{word-spacing:0.160320pt;}
.ws1d_c00039{word-spacing:0.576000pt;}
.ws1e_c00039{word-spacing:0.640000pt;}
.ws13_c00039{word-spacing:1.216000pt;}
.ws14_c00039{word-spacing:1.280000pt;}
.ws19_c00039{word-spacing:1.536000pt;}
.ws2d_c00039{word-spacing:1.792000pt;}
.ws2e_c00039{word-spacing:1.856000pt;}
.ws2f_c00039{word-spacing:1.920000pt;}
.ws31_c00039{word-spacing:2.030720pt;}
.ws30_c00039{word-spacing:2.137600pt;}
.ws12_c00039{word-spacing:2.176000pt;}
.ws11_c00039{word-spacing:2.240000pt;}
.ws32_c00039{word-spacing:2.351360pt;}
.ws22_c00039{word-spacing:2.496000pt;}
.ws23_c00039{word-spacing:2.560000pt;}
.ws26_c00039{word-spacing:3.072000pt;}
.ws25_c00039{word-spacing:3.136000pt;}
.ws27_c00039{word-spacing:3.200000pt;}
.wsf_c00039{word-spacing:3.776000pt;}
.wse_c00039{word-spacing:3.840000pt;}
.ws29_c00039{word-spacing:4.736000pt;}
.wsd_c00039{word-spacing:4.800000pt;}
.wsc_c00039{word-spacing:4.992000pt;}
.ws28_c00039{word-spacing:5.056000pt;}
.wsb_c00039{word-spacing:5.120000pt;}
.ws3a_c00039{word-spacing:6.840320pt;}
.ws1b_c00039{word-spacing:8.320000pt;}
.ws34_c00039{word-spacing:8.550400pt;}
.ws2c_c00039{word-spacing:8.640000pt;}
.ws24_c00039{word-spacing:8.896000pt;}
.ws1f_c00039{word-spacing:9.600000pt;}
.ws10_c00039{word-spacing:10.432000pt;}
.ws21_c00039{word-spacing:12.736000pt;}
.ws20_c00039{word-spacing:12.800000pt;}
.ws16_c00039{word-spacing:13.056000pt;}
.ws15_c00039{word-spacing:13.120000pt;}
.ws2b_c00039{word-spacing:17.792000pt;}
.ws2a_c00039{word-spacing:17.920000pt;}
.ws37_c00039{word-spacing:18.062720pt;}
.ws35_c00039{word-spacing:18.169600pt;}
.ws39_c00039{word-spacing:18.383360pt;}
.ws36_c00039{word-spacing:18.436800pt;}
.ws38_c00039{word-spacing:18.490240pt;}
.ws18_c00039{word-spacing:25.536000pt;}
._0_c00039{margin-left:-0.960000pt;}
._1_c00039{width:1.024000pt;}
._2_c00039{width:2.624000pt;}
._3_c00039{width:12.352000pt;}
._4_c00039{width:17.216000pt;}
.fs3_c00039{font-size:34.560000pt;}
.fs2_c00039{font-size:42.560000pt;}
.fs0_c00039{font-size:48.000000pt;}
.fs4_c00039{font-size:53.440000pt;}
.fs1_c00039{font-size:64.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y28_c00039{bottom:50.880000pt;}
.y27_c00039{bottom:97.588160pt;}
.y26_c00039{bottom:112.872000pt;}
.y25_c00039{bottom:128.236000pt;}
.y24_c00039{bottom:148.240000pt;}
.y23_c00039{bottom:158.876000pt;}
.y22_c00039{bottom:178.880000pt;}
.y29_c00039{bottom:190.160000pt;}
.y21_c00039{bottom:223.440000pt;}
.y20_c00039{bottom:251.040000pt;}
.y1f_c00039{bottom:278.640000pt;}
.y1e_c00039{bottom:306.240000pt;}
.y1d_c00039{bottom:333.840000pt;}
.y1c_c00039{bottom:361.440000pt;}
.y1b_c00039{bottom:389.040000pt;}
.y1a_c00039{bottom:416.640000pt;}
.y19_c00039{bottom:444.240000pt;}
.y18_c00039{bottom:471.840000pt;}
.y17_c00039{bottom:499.440000pt;}
.y16_c00039{bottom:527.040000pt;}
.y15_c00039{bottom:554.640000pt;}
.y14_c00039{bottom:582.240000pt;}
.y13_c00039{bottom:600.640000pt;}
.y12_c00039{bottom:628.240000pt;}
.y11_c00039{bottom:655.840000pt;}
.y10_c00039{bottom:683.440000pt;}
.yf_c00039{bottom:711.040000pt;}
.ye_c00039{bottom:738.640000pt;}
.yd_c00039{bottom:766.160000pt;}
.yc_c00039{bottom:793.760000pt;}
.yb_c00039{bottom:821.360000pt;}
.ya_c00039{bottom:848.960000pt;}
.y9_c00039{bottom:876.560000pt;}
.y8_c00039{bottom:904.160000pt;}
.y7_c00039{bottom:931.760000pt;}
.y6_c00039{bottom:959.360000pt;}
.y5_c00039{bottom:986.960000pt;}
.y4_c00039{bottom:1005.360000pt;}
.y3_c00039{bottom:1023.036000pt;}
.y2_c00039{bottom:1036.800000pt;}
.y1_c00039{bottom:1064.400000pt;}
.h5_c00039{height:33.918750pt;}
.h2_c00039{height:47.109375pt;}
.h6_c00039{height:52.448437pt;}
.h3_c00039{height:62.812500pt;}
.h4_c00039{height:65.770312pt;}
.h0_c00039{height:1122.560000pt;}
.h1_c00039{height:1122.666667pt;}
.w0_c00039{width:793.840000pt;}
.w1_c00039{width:794.000000pt;}
.x0_c00039{left:0.000000pt;}
.x2_c00039{left:113.440000pt;}
.x1_c00039{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3455c01ad1979cf11f4411e0.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00040{vertical-align:-20.880000px;}
.v0_c00040{vertical-align:0.000000px;}
.v1_c00040{vertical-align:27.000000px;}
.ls19_c00040{letter-spacing:-1.080000px;}
.ls18_c00040{letter-spacing:-1.008000px;}
.ls1a_c00040{letter-spacing:-0.936000px;}
.ls1f_c00040{letter-spacing:-0.661320px;}
.ls1b_c00040{letter-spacing:-0.576000px;}
.ls23_c00040{letter-spacing:-0.420840px;}
.ls16_c00040{letter-spacing:-0.360000px;}
.ls17_c00040{letter-spacing:-0.288000px;}
.ls21_c00040{letter-spacing:-0.240480px;}
.ls20_c00040{letter-spacing:-0.180360px;}
.ls22_c00040{letter-spacing:-0.120240px;}
.ls15_c00040{letter-spacing:-0.108000px;}
.ls1d_c00040{letter-spacing:-0.060120px;}
.ls14_c00040{letter-spacing:0.000000px;}
.ls3_c00040{letter-spacing:0.072000px;}
.ls12_c00040{letter-spacing:0.102204px;}
.ls10_c00040{letter-spacing:0.120240px;}
.ls6_c00040{letter-spacing:0.144000px;}
.ls2_c00040{letter-spacing:0.180000px;}
.ls1e_c00040{letter-spacing:0.180360px;}
.ls1c_c00040{letter-spacing:0.191520px;}
.ls1_c00040{letter-spacing:0.360000px;}
.lsd_c00040{letter-spacing:3.240000px;}
.ls13_c00040{letter-spacing:3.306600px;}
.lsa_c00040{letter-spacing:4.320000px;}
.ls11_c00040{letter-spacing:6.553080px;}
.ls4_c00040{letter-spacing:8.640000px;}
.ls7_c00040{letter-spacing:9.360000px;}
.ls9_c00040{letter-spacing:10.800000px;}
.ls8_c00040{letter-spacing:11.901600px;}
.lsc_c00040{letter-spacing:16.200000px;}
.lsb_c00040{letter-spacing:18.000000px;}
.lsf_c00040{letter-spacing:19.080000px;}
.lse_c00040{letter-spacing:21.600000px;}
.ls0_c00040{letter-spacing:29.520000px;}
.ls5_c00040{letter-spacing:32.760000px;}
.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:-18.144000px;}
.ws3_c00040{word-spacing:-18.072000px;}
.ws2_c00040{word-spacing:-17.712000px;}
.ws0_c00040{word-spacing:-17.640000px;}
.ws6_c00040{word-spacing:-14.969880px;}
.ws4_c00040{word-spacing:-12.161520px;}
.ws5_c00040{word-spacing:-9.720000px;}
.ws4a_c00040{word-spacing:-0.420840px;}
.wse_c00040{word-spacing:-0.360000px;}
.wsa_c00040{word-spacing:-0.072000px;}
.ws40_c00040{word-spacing:-0.060120px;}
.ws7_c00040{word-spacing:0.000000px;}
.ws46_c00040{word-spacing:0.060120px;}
.ws9_c00040{word-spacing:0.162000px;}
.ws3f_c00040{word-spacing:0.180360px;}
.ws27_c00040{word-spacing:0.216000px;}
.ws8_c00040{word-spacing:0.270000px;}
.ws43_c00040{word-spacing:0.300600px;}
.ws44_c00040{word-spacing:0.360720px;}
.ws47_c00040{word-spacing:0.420840px;}
.ws42_c00040{word-spacing:0.781560px;}
.ws14_c00040{word-spacing:1.008000px;}
.ws15_c00040{word-spacing:1.080000px;}
.ws24_c00040{word-spacing:2.808000px;}
.ws35_c00040{word-spacing:3.096000px;}
.ws37_c00040{word-spacing:3.168000px;}
.ws36_c00040{word-spacing:3.240000px;}
.ws48_c00040{word-spacing:3.366720px;}
.ws45_c00040{word-spacing:3.426840px;}
.ws38_c00040{word-spacing:3.600000px;}
.ws26_c00040{word-spacing:4.176000px;}
.ws25_c00040{word-spacing:4.320000px;}
.ws39_c00040{word-spacing:4.680000px;}
.ws28_c00040{word-spacing:4.896000px;}
.ws29_c00040{word-spacing:4.968000px;}
.ws2a_c00040{word-spacing:5.040000px;}
.ws49_c00040{word-spacing:5.531040px;}
.ws41_c00040{word-spacing:6.372720px;}
.ws1c_c00040{word-spacing:7.128000px;}
.ws1b_c00040{word-spacing:7.200000px;}
.ws11_c00040{word-spacing:8.568000px;}
.ws12_c00040{word-spacing:8.640000px;}
.ws19_c00040{word-spacing:9.288000px;}
.ws1a_c00040{word-spacing:9.360000px;}
.ws18_c00040{word-spacing:9.720000px;}
.ws22_c00040{word-spacing:10.008000px;}
.ws23_c00040{word-spacing:10.080000px;}
.ws20_c00040{word-spacing:10.368000px;}
.ws21_c00040{word-spacing:10.800000px;}
.ws1f_c00040{word-spacing:11.808000px;}
.ws10_c00040{word-spacing:13.608000px;}
.ws33_c00040{word-spacing:15.696000px;}
.ws31_c00040{word-spacing:16.056000px;}
.ws30_c00040{word-spacing:16.128000px;}
.ws32_c00040{word-spacing:16.200000px;}
.ws1d_c00040{word-spacing:16.488000px;}
.ws1e_c00040{word-spacing:16.560000px;}
.wsb_c00040{word-spacing:17.640000px;}
.ws34_c00040{word-spacing:17.856000px;}
.ws2d_c00040{word-spacing:17.928000px;}
.ws2b_c00040{word-spacing:18.000000px;}
.ws2c_c00040{word-spacing:18.360000px;}
.ws3d_c00040{word-spacing:18.936000px;}
.ws3c_c00040{word-spacing:19.008000px;}
.ws3e_c00040{word-spacing:19.080000px;}
.ws3a_c00040{word-spacing:21.528000px;}
.ws3b_c00040{word-spacing:21.600000px;}
.wsf_c00040{word-spacing:24.840000px;}
.wsc_c00040{word-spacing:29.160000px;}
.wsd_c00040{word-spacing:29.520000px;}
.ws13_c00040{word-spacing:32.760000px;}
.ws17_c00040{word-spacing:32.976000px;}
.ws16_c00040{word-spacing:33.048000px;}
.ws2f_c00040{word-spacing:34.128000px;}
.ws2e_c00040{word-spacing:34.560000px;}
._1_c00040{margin-left:-1.058400px;}
._0_c00040{width:1.220400px;}
._7_c00040{width:2.448000px;}
._4_c00040{width:3.600000px;}
._9_c00040{width:5.068800px;}
._6_c00040{width:8.640000px;}
._5_c00040{width:13.615200px;}
._a_c00040{width:15.818400px;}
._b_c00040{width:19.087200px;}
._3_c00040{width:24.840000px;}
._2_c00040{width:29.430000px;}
._8_c00040{width:32.760000px;}
.fc0_c00040{color:rgb(0,0,0);}
.fs3_c00040{font-size:38.880000px;}
.fs2_c00040{font-size:47.880000px;}
.fs0_c00040{font-size:54.000000px;}
.fs4_c00040{font-size:60.120000px;}
.fs1_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y2a_c00040{bottom:57.240000px;}
.y29_c00040{bottom:109.791180px;}
.y28_c00040{bottom:126.985500px;}
.y27_c00040{bottom:149.490000px;}
.y26_c00040{bottom:166.770000px;}
.y25_c00040{bottom:183.960000px;}
.y24_c00040{bottom:201.240000px;}
.y23_c00040{bottom:213.295680px;}
.y22_c00040{bottom:235.710000px;}
.y21_c00040{bottom:252.990000px;}
.y2b_c00040{bottom:265.680000px;}
.y20_c00040{bottom:303.120000px;}
.y1f_c00040{bottom:334.170000px;}
.y1e_c00040{bottom:365.220000px;}
.y1d_c00040{bottom:396.270000px;}
.y1c_c00040{bottom:427.320000px;}
.y1b_c00040{bottom:458.370000px;}
.y1a_c00040{bottom:489.420000px;}
.y19_c00040{bottom:520.470000px;}
.y18_c00040{bottom:551.520000px;}
.y17_c00040{bottom:582.570000px;}
.y16_c00040{bottom:613.620000px;}
.y15_c00040{bottom:644.670000px;}
.y14_c00040{bottom:675.720000px;}
.y13_c00040{bottom:706.770000px;}
.y12_c00040{bottom:737.820000px;}
.y11_c00040{bottom:768.870000px;}
.y10_c00040{bottom:799.920000px;}
.yf_c00040{bottom:830.970000px;}
.ye_c00040{bottom:861.930000px;}
.yd_c00040{bottom:892.980000px;}
.yc_c00040{bottom:924.030000px;}
.yb_c00040{bottom:955.080000px;}
.ya_c00040{bottom:986.130000px;}
.y9_c00040{bottom:1017.180000px;}
.y8_c00040{bottom:1048.230000px;}
.y7_c00040{bottom:1079.280000px;}
.y6_c00040{bottom:1110.330000px;}
.y5_c00040{bottom:1131.030000px;}
.y4_c00040{bottom:1150.920000px;}
.y3_c00040{bottom:1166.404500px;}
.y2_c00040{bottom:1181.970000px;}
.y1_c00040{bottom:1197.450000px;}
.h6_c00040{height:38.158594px;}
.h3_c00040{height:52.971680px;}
.h2_c00040{height:52.998047px;}
.h7_c00040{height:59.004492px;}
.h4_c00040{height:70.664062px;}
.h5_c00040{height:73.991602px;}
.h0_c00040{height:1262.880000px;}
.h1_c00040{height:1263.000000px;}
.w0_c00040{width:893.070000px;}
.w1_c00040{width:893.250000px;}
.x0_c00040{left:0.000000px;}
.x3_c00040{left:127.620000px;}
.x2_c00040{left:425.160000px;}
.x1_c00040{left:446.580000px;}
.x4_c00040{left:756.540000px;}
@media print{
.v2_c00040{vertical-align:-18.560000pt;}
.v0_c00040{vertical-align:0.000000pt;}
.v1_c00040{vertical-align:24.000000pt;}
.ls19_c00040{letter-spacing:-0.960000pt;}
.ls18_c00040{letter-spacing:-0.896000pt;}
.ls1a_c00040{letter-spacing:-0.832000pt;}
.ls1f_c00040{letter-spacing:-0.587840pt;}
.ls1b_c00040{letter-spacing:-0.512000pt;}
.ls23_c00040{letter-spacing:-0.374080pt;}
.ls16_c00040{letter-spacing:-0.320000pt;}
.ls17_c00040{letter-spacing:-0.256000pt;}
.ls21_c00040{letter-spacing:-0.213760pt;}
.ls20_c00040{letter-spacing:-0.160320pt;}
.ls22_c00040{letter-spacing:-0.106880pt;}
.ls15_c00040{letter-spacing:-0.096000pt;}
.ls1d_c00040{letter-spacing:-0.053440pt;}
.ls14_c00040{letter-spacing:0.000000pt;}
.ls3_c00040{letter-spacing:0.064000pt;}
.ls12_c00040{letter-spacing:0.090848pt;}
.ls10_c00040{letter-spacing:0.106880pt;}
.ls6_c00040{letter-spacing:0.128000pt;}
.ls2_c00040{letter-spacing:0.160000pt;}
.ls1e_c00040{letter-spacing:0.160320pt;}
.ls1c_c00040{letter-spacing:0.170240pt;}
.ls1_c00040{letter-spacing:0.320000pt;}
.lsd_c00040{letter-spacing:2.880000pt;}
.ls13_c00040{letter-spacing:2.939200pt;}
.lsa_c00040{letter-spacing:3.840000pt;}
.ls11_c00040{letter-spacing:5.824960pt;}
.ls4_c00040{letter-spacing:7.680000pt;}
.ls7_c00040{letter-spacing:8.320000pt;}
.ls9_c00040{letter-spacing:9.600000pt;}
.ls8_c00040{letter-spacing:10.579200pt;}
.lsc_c00040{letter-spacing:14.400000pt;}
.lsb_c00040{letter-spacing:16.000000pt;}
.lsf_c00040{letter-spacing:16.960000pt;}
.lse_c00040{letter-spacing:19.200000pt;}
.ls0_c00040{letter-spacing:26.240000pt;}
.ls5_c00040{letter-spacing:29.120000pt;}
.ws1_c00040{word-spacing:-16.128000pt;}
.ws3_c00040{word-spacing:-16.064000pt;}
.ws2_c00040{word-spacing:-15.744000pt;}
.ws0_c00040{word-spacing:-15.680000pt;}
.ws6_c00040{word-spacing:-13.306560pt;}
.ws4_c00040{word-spacing:-10.810240pt;}
.ws5_c00040{word-spacing:-8.640000pt;}
.ws4a_c00040{word-spacing:-0.374080pt;}
.wse_c00040{word-spacing:-0.320000pt;}
.wsa_c00040{word-spacing:-0.064000pt;}
.ws40_c00040{word-spacing:-0.053440pt;}
.ws7_c00040{word-spacing:0.000000pt;}
.ws46_c00040{word-spacing:0.053440pt;}
.ws9_c00040{word-spacing:0.144000pt;}
.ws3f_c00040{word-spacing:0.160320pt;}
.ws27_c00040{word-spacing:0.192000pt;}
.ws8_c00040{word-spacing:0.240000pt;}
.ws43_c00040{word-spacing:0.267200pt;}
.ws44_c00040{word-spacing:0.320640pt;}
.ws47_c00040{word-spacing:0.374080pt;}
.ws42_c00040{word-spacing:0.694720pt;}
.ws14_c00040{word-spacing:0.896000pt;}
.ws15_c00040{word-spacing:0.960000pt;}
.ws24_c00040{word-spacing:2.496000pt;}
.ws35_c00040{word-spacing:2.752000pt;}
.ws37_c00040{word-spacing:2.816000pt;}
.ws36_c00040{word-spacing:2.880000pt;}
.ws48_c00040{word-spacing:2.992640pt;}
.ws45_c00040{word-spacing:3.046080pt;}
.ws38_c00040{word-spacing:3.200000pt;}
.ws26_c00040{word-spacing:3.712000pt;}
.ws25_c00040{word-spacing:3.840000pt;}
.ws39_c00040{word-spacing:4.160000pt;}
.ws28_c00040{word-spacing:4.352000pt;}
.ws29_c00040{word-spacing:4.416000pt;}
.ws2a_c00040{word-spacing:4.480000pt;}
.ws49_c00040{word-spacing:4.916480pt;}
.ws41_c00040{word-spacing:5.664640pt;}
.ws1c_c00040{word-spacing:6.336000pt;}
.ws1b_c00040{word-spacing:6.400000pt;}
.ws11_c00040{word-spacing:7.616000pt;}
.ws12_c00040{word-spacing:7.680000pt;}
.ws19_c00040{word-spacing:8.256000pt;}
.ws1a_c00040{word-spacing:8.320000pt;}
.ws18_c00040{word-spacing:8.640000pt;}
.ws22_c00040{word-spacing:8.896000pt;}
.ws23_c00040{word-spacing:8.960000pt;}
.ws20_c00040{word-spacing:9.216000pt;}
.ws21_c00040{word-spacing:9.600000pt;}
.ws1f_c00040{word-spacing:10.496000pt;}
.ws10_c00040{word-spacing:12.096000pt;}
.ws33_c00040{word-spacing:13.952000pt;}
.ws31_c00040{word-spacing:14.272000pt;}
.ws30_c00040{word-spacing:14.336000pt;}
.ws32_c00040{word-spacing:14.400000pt;}
.ws1d_c00040{word-spacing:14.656000pt;}
.ws1e_c00040{word-spacing:14.720000pt;}
.wsb_c00040{word-spacing:15.680000pt;}
.ws34_c00040{word-spacing:15.872000pt;}
.ws2d_c00040{word-spacing:15.936000pt;}
.ws2b_c00040{word-spacing:16.000000pt;}
.ws2c_c00040{word-spacing:16.320000pt;}
.ws3d_c00040{word-spacing:16.832000pt;}
.ws3c_c00040{word-spacing:16.896000pt;}
.ws3e_c00040{word-spacing:16.960000pt;}
.ws3a_c00040{word-spacing:19.136000pt;}
.ws3b_c00040{word-spacing:19.200000pt;}
.wsf_c00040{word-spacing:22.080000pt;}
.wsc_c00040{word-spacing:25.920000pt;}
.wsd_c00040{word-spacing:26.240000pt;}
.ws13_c00040{word-spacing:29.120000pt;}
.ws17_c00040{word-spacing:29.312000pt;}
.ws16_c00040{word-spacing:29.376000pt;}
.ws2f_c00040{word-spacing:30.336000pt;}
.ws2e_c00040{word-spacing:30.720000pt;}
._1_c00040{margin-left:-0.940800pt;}
._0_c00040{width:1.084800pt;}
._7_c00040{width:2.176000pt;}
._4_c00040{width:3.200000pt;}
._9_c00040{width:4.505600pt;}
._6_c00040{width:7.680000pt;}
._5_c00040{width:12.102400pt;}
._a_c00040{width:14.060800pt;}
._b_c00040{width:16.966400pt;}
._3_c00040{width:22.080000pt;}
._2_c00040{width:26.160000pt;}
._8_c00040{width:29.120000pt;}
.fs3_c00040{font-size:34.560000pt;}
.fs2_c00040{font-size:42.560000pt;}
.fs0_c00040{font-size:48.000000pt;}
.fs4_c00040{font-size:53.440000pt;}
.fs1_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y2a_c00040{bottom:50.880000pt;}
.y29_c00040{bottom:97.592160pt;}
.y28_c00040{bottom:112.876000pt;}
.y27_c00040{bottom:132.880000pt;}
.y26_c00040{bottom:148.240000pt;}
.y25_c00040{bottom:163.520000pt;}
.y24_c00040{bottom:178.880000pt;}
.y23_c00040{bottom:189.596160pt;}
.y22_c00040{bottom:209.520000pt;}
.y21_c00040{bottom:224.880000pt;}
.y2b_c00040{bottom:236.160000pt;}
.y20_c00040{bottom:269.440000pt;}
.y1f_c00040{bottom:297.040000pt;}
.y1e_c00040{bottom:324.640000pt;}
.y1d_c00040{bottom:352.240000pt;}
.y1c_c00040{bottom:379.840000pt;}
.y1b_c00040{bottom:407.440000pt;}
.y1a_c00040{bottom:435.040000pt;}
.y19_c00040{bottom:462.640000pt;}
.y18_c00040{bottom:490.240000pt;}
.y17_c00040{bottom:517.840000pt;}
.y16_c00040{bottom:545.440000pt;}
.y15_c00040{bottom:573.040000pt;}
.y14_c00040{bottom:600.640000pt;}
.y13_c00040{bottom:628.240000pt;}
.y12_c00040{bottom:655.840000pt;}
.y11_c00040{bottom:683.440000pt;}
.y10_c00040{bottom:711.040000pt;}
.yf_c00040{bottom:738.640000pt;}
.ye_c00040{bottom:766.160000pt;}
.yd_c00040{bottom:793.760000pt;}
.yc_c00040{bottom:821.360000pt;}
.yb_c00040{bottom:848.960000pt;}
.ya_c00040{bottom:876.560000pt;}
.y9_c00040{bottom:904.160000pt;}
.y8_c00040{bottom:931.760000pt;}
.y7_c00040{bottom:959.360000pt;}
.y6_c00040{bottom:986.960000pt;}
.y5_c00040{bottom:1005.360000pt;}
.y4_c00040{bottom:1023.040000pt;}
.y3_c00040{bottom:1036.804000pt;}
.y2_c00040{bottom:1050.640000pt;}
.y1_c00040{bottom:1064.400000pt;}
.h6_c00040{height:33.918750pt;}
.h3_c00040{height:47.085938pt;}
.h2_c00040{height:47.109375pt;}
.h7_c00040{height:52.448437pt;}
.h4_c00040{height:62.812500pt;}
.h5_c00040{height:65.770313pt;}
.h0_c00040{height:1122.560000pt;}
.h1_c00040{height:1122.666667pt;}
.w0_c00040{width:793.840000pt;}
.w1_c00040{width:794.000000pt;}
.x0_c00040{left:0.000000pt;}
.x3_c00040{left:113.440000pt;}
.x2_c00040{left:377.920000pt;}
.x1_c00040{left:396.960000pt;}
.x4_c00040{left:672.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_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_3f5ef38e693042458ac3d25b.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00041{vertical-align:-61.938000px;}
.v3_c00041{vertical-align:-20.880000px;}
.v0_c00041{vertical-align:0.000000px;}
.v2_c00041{vertical-align:27.000000px;}
.ls16_c00041{letter-spacing:-0.360000px;}
.ls1a_c00041{letter-spacing:-0.180360px;}
.ls19_c00041{letter-spacing:-0.120240px;}
.ls15_c00041{letter-spacing:-0.072000px;}
.ls18_c00041{letter-spacing:-0.060120px;}
.ls13_c00041{letter-spacing:0.000000px;}
.ls1_c00041{letter-spacing:0.072000px;}
.ls2_c00041{letter-spacing:0.144000px;}
.ls17_c00041{letter-spacing:0.180360px;}
.ls14_c00041{letter-spacing:0.191520px;}
.lsf_c00041{letter-spacing:0.781560px;}
.ls12_c00041{letter-spacing:1.484964px;}
.ls11_c00041{letter-spacing:1.503000px;}
.lse_c00041{letter-spacing:2.945880px;}
.ls6_c00041{letter-spacing:4.680000px;}
.lsc_c00041{letter-spacing:5.040000px;}
.ls9_c00041{letter-spacing:6.840000px;}
.ls8_c00041{letter-spacing:7.200000px;}
.ls4_c00041{letter-spacing:9.000000px;}
.lsa_c00041{letter-spacing:13.320000px;}
.ls10_c00041{letter-spacing:13.767480px;}
.ls5_c00041{letter-spacing:15.120000px;}
.ls3_c00041{letter-spacing:17.280000px;}
.lsb_c00041{letter-spacing:17.640000px;}
.ls7_c00041{letter-spacing:24.840000px;}
.lsd_c00041{letter-spacing:36.720000px;}
.ls0_c00041{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00041{word-spacing:-18.144000px;}
.ws0_c00041{word-spacing:-18.072000px;}
.ws1_c00041{word-spacing:-12.161520px;}
.ws3_c00041{word-spacing:-9.720000px;}
.ws2f_c00041{word-spacing:-0.180360px;}
.ws5_c00041{word-spacing:-0.162000px;}
.wsb_c00041{word-spacing:-0.144000px;}
.ws12_c00041{word-spacing:-0.072000px;}
.ws4_c00041{word-spacing:0.000000px;}
.ws3a_c00041{word-spacing:0.060120px;}
.ws3b_c00041{word-spacing:0.180360px;}
.ws34_c00041{word-spacing:0.240480px;}
.ws2b_c00041{word-spacing:0.360000px;}
.ws36_c00041{word-spacing:0.601200px;}
.ws37_c00041{word-spacing:0.661320px;}
.ws35_c00041{word-spacing:1.022040px;}
.ws3e_c00041{word-spacing:1.322640px;}
.ws3d_c00041{word-spacing:1.563120px;}
.ws3c_c00041{word-spacing:1.683360px;}
.ws2e_c00041{word-spacing:2.765520px;}
.ws30_c00041{word-spacing:3.006000px;}
.ws33_c00041{word-spacing:3.727440px;}
.ws18_c00041{word-spacing:4.248000px;}
.ws17_c00041{word-spacing:4.392000px;}
.ws19_c00041{word-spacing:4.536000px;}
.ws3f_c00041{word-spacing:4.569120px;}
.ws1a_c00041{word-spacing:4.608000px;}
.ws6_c00041{word-spacing:4.680000px;}
.ws2a_c00041{word-spacing:5.040000px;}
.ws20_c00041{word-spacing:5.328000px;}
.ws1f_c00041{word-spacing:5.400000px;}
.ws14_c00041{word-spacing:5.688000px;}
.ws13_c00041{word-spacing:5.760000px;}
.ws15_c00041{word-spacing:6.408000px;}
.ws32_c00041{word-spacing:6.733440px;}
.ws31_c00041{word-spacing:6.973920px;}
.ws23_c00041{word-spacing:7.128000px;}
.ws24_c00041{word-spacing:7.560000px;}
.wsc_c00041{word-spacing:7.848000px;}
.wsd_c00041{word-spacing:7.920000px;}
.ws16_c00041{word-spacing:8.280000px;}
.wse_c00041{word-spacing:8.568000px;}
.ws10_c00041{word-spacing:8.928000px;}
.wsf_c00041{word-spacing:9.000000px;}
.ws25_c00041{word-spacing:11.088000px;}
.ws26_c00041{word-spacing:11.160000px;}
.ws27_c00041{word-spacing:13.176000px;}
.ws28_c00041{word-spacing:13.248000px;}
.ws38_c00041{word-spacing:13.587120px;}
.ws39_c00041{word-spacing:13.827600px;}
.ws1b_c00041{word-spacing:13.968000px;}
.ws11_c00041{word-spacing:15.120000px;}
.ws22_c00041{word-spacing:15.840000px;}
.ws21_c00041{word-spacing:16.200000px;}
.ws8_c00041{word-spacing:16.776000px;}
.wsa_c00041{word-spacing:16.920000px;}
.ws9_c00041{word-spacing:17.208000px;}
.ws7_c00041{word-spacing:17.280000px;}
.ws29_c00041{word-spacing:17.568000px;}
.ws1c_c00041{word-spacing:24.408000px;}
.ws1e_c00041{word-spacing:24.768000px;}
.ws1d_c00041{word-spacing:24.840000px;}
.ws2d_c00041{word-spacing:36.648000px;}
.ws2c_c00041{word-spacing:36.720000px;}
._4_c00041{margin-left:-8.951040px;}
._0_c00041{margin-left:-1.296000px;}
._8_c00041{width:1.008000px;}
._3_c00041{width:2.520000px;}
._9_c00041{width:4.176000px;}
._7_c00041{width:5.760000px;}
._2_c00041{width:7.704000px;}
._5_c00041{width:9.144000px;}
._a_c00041{width:13.298400px;}
._6_c00041{width:14.808960px;}
._1_c00041{width:16.920000px;}
._b_c00041{width:36.864000px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs3_c00041{font-size:38.880000px;}
.fs2_c00041{font-size:47.880000px;}
.fs0_c00041{font-size:54.000000px;}
.fs4_c00041{font-size:60.120000px;}
.fs1_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y29_c00041{bottom:57.240000px;}
.y28_c00041{bottom:109.791180px;}
.y27_c00041{bottom:126.985500px;}
.y26_c00041{bottom:149.490000px;}
.y25_c00041{bottom:161.541180px;}
.y24_c00041{bottom:178.735500px;}
.y23_c00041{bottom:201.240000px;}
.y22_c00041{bottom:213.286680px;}
.y21_c00041{bottom:230.481000px;}
.y20_c00041{bottom:247.765500px;}
.y1f_c00041{bottom:270.270000px;}
.y2a_c00041{bottom:282.960000px;}
.y1e_c00041{bottom:334.170000px;}
.y1d_c00041{bottom:365.220000px;}
.y1c_c00041{bottom:396.270000px;}
.y1b_c00041{bottom:427.320000px;}
.y1a_c00041{bottom:458.370000px;}
.y19_c00041{bottom:489.420000px;}
.y18_c00041{bottom:520.470000px;}
.y17_c00041{bottom:551.520000px;}
.y16_c00041{bottom:582.570000px;}
.y15_c00041{bottom:613.620000px;}
.y14_c00041{bottom:644.670000px;}
.y13_c00041{bottom:675.720000px;}
.y12_c00041{bottom:706.770000px;}
.y11_c00041{bottom:737.820000px;}
.y10_c00041{bottom:768.870000px;}
.yf_c00041{bottom:799.920000px;}
.ye_c00041{bottom:830.970000px;}
.yd_c00041{bottom:861.930000px;}
.yc_c00041{bottom:892.980000px;}
.yb_c00041{bottom:924.030000px;}
.ya_c00041{bottom:955.080000px;}
.y9_c00041{bottom:986.130000px;}
.y8_c00041{bottom:1017.180000px;}
.y7_c00041{bottom:1048.230000px;}
.y6_c00041{bottom:1079.280000px;}
.y5_c00041{bottom:1110.330000px;}
.y4_c00041{bottom:1131.030000px;}
.y3_c00041{bottom:1150.915500px;}
.y2_c00041{bottom:1166.400000px;}
.y1_c00041{bottom:1197.450000px;}
.h5_c00041{height:38.158594px;}
.h2_c00041{height:52.998047px;}
.h6_c00041{height:59.004492px;}
.h3_c00041{height:70.664062px;}
.h4_c00041{height:73.991602px;}
.h0_c00041{height:1262.880000px;}
.h1_c00041{height:1263.000000px;}
.w0_c00041{width:893.070000px;}
.w1_c00041{width:893.250000px;}
.x0_c00041{left:0.000000px;}
.x2_c00041{left:127.620000px;}
.x1_c00041{left:446.580000px;}
@media print{
.v1_c00041{vertical-align:-55.056000pt;}
.v3_c00041{vertical-align:-18.560000pt;}
.v0_c00041{vertical-align:0.000000pt;}
.v2_c00041{vertical-align:24.000000pt;}
.ls16_c00041{letter-spacing:-0.320000pt;}
.ls1a_c00041{letter-spacing:-0.160320pt;}
.ls19_c00041{letter-spacing:-0.106880pt;}
.ls15_c00041{letter-spacing:-0.064000pt;}
.ls18_c00041{letter-spacing:-0.053440pt;}
.ls13_c00041{letter-spacing:0.000000pt;}
.ls1_c00041{letter-spacing:0.064000pt;}
.ls2_c00041{letter-spacing:0.128000pt;}
.ls17_c00041{letter-spacing:0.160320pt;}
.ls14_c00041{letter-spacing:0.170240pt;}
.lsf_c00041{letter-spacing:0.694720pt;}
.ls12_c00041{letter-spacing:1.319968pt;}
.ls11_c00041{letter-spacing:1.336000pt;}
.lse_c00041{letter-spacing:2.618560pt;}
.ls6_c00041{letter-spacing:4.160000pt;}
.lsc_c00041{letter-spacing:4.480000pt;}
.ls9_c00041{letter-spacing:6.080000pt;}
.ls8_c00041{letter-spacing:6.400000pt;}
.ls4_c00041{letter-spacing:8.000000pt;}
.lsa_c00041{letter-spacing:11.840000pt;}
.ls10_c00041{letter-spacing:12.237760pt;}
.ls5_c00041{letter-spacing:13.440000pt;}
.ls3_c00041{letter-spacing:15.360000pt;}
.lsb_c00041{letter-spacing:15.680000pt;}
.ls7_c00041{letter-spacing:22.080000pt;}
.lsd_c00041{letter-spacing:32.640000pt;}
.ls0_c00041{letter-spacing:284.016000pt;}
.ws2_c00041{word-spacing:-16.128000pt;}
.ws0_c00041{word-spacing:-16.064000pt;}
.ws1_c00041{word-spacing:-10.810240pt;}
.ws3_c00041{word-spacing:-8.640000pt;}
.ws2f_c00041{word-spacing:-0.160320pt;}
.ws5_c00041{word-spacing:-0.144000pt;}
.wsb_c00041{word-spacing:-0.128000pt;}
.ws12_c00041{word-spacing:-0.064000pt;}
.ws4_c00041{word-spacing:0.000000pt;}
.ws3a_c00041{word-spacing:0.053440pt;}
.ws3b_c00041{word-spacing:0.160320pt;}
.ws34_c00041{word-spacing:0.213760pt;}
.ws2b_c00041{word-spacing:0.320000pt;}
.ws36_c00041{word-spacing:0.534400pt;}
.ws37_c00041{word-spacing:0.587840pt;}
.ws35_c00041{word-spacing:0.908480pt;}
.ws3e_c00041{word-spacing:1.175680pt;}
.ws3d_c00041{word-spacing:1.389440pt;}
.ws3c_c00041{word-spacing:1.496320pt;}
.ws2e_c00041{word-spacing:2.458240pt;}
.ws30_c00041{word-spacing:2.672000pt;}
.ws33_c00041{word-spacing:3.313280pt;}
.ws18_c00041{word-spacing:3.776000pt;}
.ws17_c00041{word-spacing:3.904000pt;}
.ws19_c00041{word-spacing:4.032000pt;}
.ws3f_c00041{word-spacing:4.061440pt;}
.ws1a_c00041{word-spacing:4.096000pt;}
.ws6_c00041{word-spacing:4.160000pt;}
.ws2a_c00041{word-spacing:4.480000pt;}
.ws20_c00041{word-spacing:4.736000pt;}
.ws1f_c00041{word-spacing:4.800000pt;}
.ws14_c00041{word-spacing:5.056000pt;}
.ws13_c00041{word-spacing:5.120000pt;}
.ws15_c00041{word-spacing:5.696000pt;}
.ws32_c00041{word-spacing:5.985280pt;}
.ws31_c00041{word-spacing:6.199040pt;}
.ws23_c00041{word-spacing:6.336000pt;}
.ws24_c00041{word-spacing:6.720000pt;}
.wsc_c00041{word-spacing:6.976000pt;}
.wsd_c00041{word-spacing:7.040000pt;}
.ws16_c00041{word-spacing:7.360000pt;}
.wse_c00041{word-spacing:7.616000pt;}
.ws10_c00041{word-spacing:7.936000pt;}
.wsf_c00041{word-spacing:8.000000pt;}
.ws25_c00041{word-spacing:9.856000pt;}
.ws26_c00041{word-spacing:9.920000pt;}
.ws27_c00041{word-spacing:11.712000pt;}
.ws28_c00041{word-spacing:11.776000pt;}
.ws38_c00041{word-spacing:12.077440pt;}
.ws39_c00041{word-spacing:12.291200pt;}
.ws1b_c00041{word-spacing:12.416000pt;}
.ws11_c00041{word-spacing:13.440000pt;}
.ws22_c00041{word-spacing:14.080000pt;}
.ws21_c00041{word-spacing:14.400000pt;}
.ws8_c00041{word-spacing:14.912000pt;}
.wsa_c00041{word-spacing:15.040000pt;}
.ws9_c00041{word-spacing:15.296000pt;}
.ws7_c00041{word-spacing:15.360000pt;}
.ws29_c00041{word-spacing:15.616000pt;}
.ws1c_c00041{word-spacing:21.696000pt;}
.ws1e_c00041{word-spacing:22.016000pt;}
.ws1d_c00041{word-spacing:22.080000pt;}
.ws2d_c00041{word-spacing:32.576000pt;}
.ws2c_c00041{word-spacing:32.640000pt;}
._4_c00041{margin-left:-7.956480pt;}
._0_c00041{margin-left:-1.152000pt;}
._8_c00041{width:0.896000pt;}
._3_c00041{width:2.240000pt;}
._9_c00041{width:3.712000pt;}
._7_c00041{width:5.120000pt;}
._2_c00041{width:6.848000pt;}
._5_c00041{width:8.128000pt;}
._a_c00041{width:11.820800pt;}
._6_c00041{width:13.163520pt;}
._1_c00041{width:15.040000pt;}
._b_c00041{width:32.768000pt;}
.fs3_c00041{font-size:34.560000pt;}
.fs2_c00041{font-size:42.560000pt;}
.fs0_c00041{font-size:48.000000pt;}
.fs4_c00041{font-size:53.440000pt;}
.fs1_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y29_c00041{bottom:50.880000pt;}
.y28_c00041{bottom:97.592160pt;}
.y27_c00041{bottom:112.876000pt;}
.y26_c00041{bottom:132.880000pt;}
.y25_c00041{bottom:143.592160pt;}
.y24_c00041{bottom:158.876000pt;}
.y23_c00041{bottom:178.880000pt;}
.y22_c00041{bottom:189.588160pt;}
.y21_c00041{bottom:204.872000pt;}
.y20_c00041{bottom:220.236000pt;}
.y1f_c00041{bottom:240.240000pt;}
.y2a_c00041{bottom:251.520000pt;}
.y1e_c00041{bottom:297.040000pt;}
.y1d_c00041{bottom:324.640000pt;}
.y1c_c00041{bottom:352.240000pt;}
.y1b_c00041{bottom:379.840000pt;}
.y1a_c00041{bottom:407.440000pt;}
.y19_c00041{bottom:435.040000pt;}
.y18_c00041{bottom:462.640000pt;}
.y17_c00041{bottom:490.240000pt;}
.y16_c00041{bottom:517.840000pt;}
.y15_c00041{bottom:545.440000pt;}
.y14_c00041{bottom:573.040000pt;}
.y13_c00041{bottom:600.640000pt;}
.y12_c00041{bottom:628.240000pt;}
.y11_c00041{bottom:655.840000pt;}
.y10_c00041{bottom:683.440000pt;}
.yf_c00041{bottom:711.040000pt;}
.ye_c00041{bottom:738.640000pt;}
.yd_c00041{bottom:766.160000pt;}
.yc_c00041{bottom:793.760000pt;}
.yb_c00041{bottom:821.360000pt;}
.ya_c00041{bottom:848.960000pt;}
.y9_c00041{bottom:876.560000pt;}
.y8_c00041{bottom:904.160000pt;}
.y7_c00041{bottom:931.760000pt;}
.y6_c00041{bottom:959.360000pt;}
.y5_c00041{bottom:986.960000pt;}
.y4_c00041{bottom:1005.360000pt;}
.y3_c00041{bottom:1023.036000pt;}
.y2_c00041{bottom:1036.800000pt;}
.y1_c00041{bottom:1064.400000pt;}
.h5_c00041{height:33.918750pt;}
.h2_c00041{height:47.109375pt;}
.h6_c00041{height:52.448437pt;}
.h3_c00041{height:62.812500pt;}
.h4_c00041{height:65.770313pt;}
.h0_c00041{height:1122.560000pt;}
.h1_c00041{height:1122.666667pt;}
.w0_c00041{width:793.840000pt;}
.w1_c00041{width:794.000000pt;}
.x0_c00041{left:0.000000pt;}
.x2_c00041{left:113.440000pt;}
.x1_c00041{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_48d7f39c583a28901290fb94.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00042{vertical-align:-20.880000px;}
.v0_c00042{vertical-align:0.000000px;}
.v1_c00042{vertical-align:27.000000px;}
.ls12_c00042{letter-spacing:-0.420840px;}
.lsc_c00042{letter-spacing:-0.360000px;}
.ls14_c00042{letter-spacing:-0.180360px;}
.lsb_c00042{letter-spacing:-0.108000px;}
.lsf_c00042{letter-spacing:-0.072000px;}
.ls11_c00042{letter-spacing:-0.060120px;}
.lsa_c00042{letter-spacing:0.000000px;}
.ls1_c00042{letter-spacing:0.072000px;}
.ls9_c00042{letter-spacing:0.108216px;}
.ls13_c00042{letter-spacing:0.120240px;}
.lse_c00042{letter-spacing:0.144000px;}
.ls10_c00042{letter-spacing:0.180360px;}
.lsd_c00042{letter-spacing:0.191520px;}
.ls2_c00042{letter-spacing:0.734400px;}
.ls0_c00042{letter-spacing:2.160000px;}
.ls3_c00042{letter-spacing:4.320000px;}
.ls8_c00042{letter-spacing:11.603160px;}
.ls5_c00042{letter-spacing:14.400000px;}
.ls7_c00042{letter-spacing:22.680000px;}
.ls4_c00042{letter-spacing:27.360000px;}
.ls6_c00042{letter-spacing:33.120000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00042{word-spacing:-18.144000px;}
.ws2_c00042{word-spacing:-18.072000px;}
.ws0_c00042{word-spacing:-18.000000px;}
.ws6_c00042{word-spacing:-14.969880px;}
.ws5_c00042{word-spacing:-14.849640px;}
.ws1_c00042{word-spacing:-12.161520px;}
.ws4_c00042{word-spacing:-9.720000px;}
.ws2f_c00042{word-spacing:-0.504000px;}
.ws34_c00042{word-spacing:-0.360720px;}
.ws2e_c00042{word-spacing:-0.144000px;}
.ws10_c00042{word-spacing:-0.072000px;}
.ws7_c00042{word-spacing:0.000000px;}
.ws9_c00042{word-spacing:0.162000px;}
.ws32_c00042{word-spacing:0.180360px;}
.ws8_c00042{word-spacing:0.270000px;}
.ws1e_c00042{word-spacing:0.360000px;}
.ws33_c00042{word-spacing:0.420840px;}
.wsf_c00042{word-spacing:0.648000px;}
.ws31_c00042{word-spacing:0.661320px;}
.wse_c00042{word-spacing:2.088000px;}
.ws2c_c00042{word-spacing:2.160000px;}
.ws18_c00042{word-spacing:2.448000px;}
.ws23_c00042{word-spacing:2.520000px;}
.ws25_c00042{word-spacing:2.808000px;}
.ws24_c00042{word-spacing:2.880000px;}
.ws16_c00042{word-spacing:3.240000px;}
.ws12_c00042{word-spacing:3.528000px;}
.ws11_c00042{word-spacing:3.600000px;}
.ws13_c00042{word-spacing:3.960000px;}
.ws14_c00042{word-spacing:4.248000px;}
.wsa_c00042{word-spacing:5.688000px;}
.ws2a_c00042{word-spacing:6.048000px;}
.ws2b_c00042{word-spacing:6.120000px;}
.ws36_c00042{word-spacing:8.176320px;}
.ws35_c00042{word-spacing:8.416800px;}
.ws2d_c00042{word-spacing:9.360000px;}
.wsb_c00042{word-spacing:11.088000px;}
.ws30_c00042{word-spacing:11.422800px;}
.wsc_c00042{word-spacing:11.520000px;}
.wsd_c00042{word-spacing:12.528000px;}
.ws1b_c00042{word-spacing:14.400000px;}
.ws15_c00042{word-spacing:16.560000px;}
.ws27_c00042{word-spacing:19.728000px;}
.ws26_c00042{word-spacing:19.872000px;}
.ws28_c00042{word-spacing:20.088000px;}
.ws17_c00042{word-spacing:20.448000px;}
.ws21_c00042{word-spacing:22.680000px;}
.ws1f_c00042{word-spacing:22.752000px;}
.ws20_c00042{word-spacing:22.968000px;}
.ws22_c00042{word-spacing:23.040000px;}
.ws19_c00042{word-spacing:27.000000px;}
.ws1a_c00042{word-spacing:27.288000px;}
.ws1d_c00042{word-spacing:33.048000px;}
.ws1c_c00042{word-spacing:33.120000px;}
.ws29_c00042{word-spacing:46.728000px;}
._1_c00042{margin-left:-1.058400px;}
._0_c00042{width:1.220400px;}
._2_c00042{width:2.527200px;}
._7_c00042{width:6.127200px;}
._8_c00042{width:8.657280px;}
._4_c00042{width:13.514400px;}
._6_c00042{width:19.872000px;}
._5_c00042{width:23.522400px;}
._3_c00042{width:27.360000px;}
.fc0_c00042{color:rgb(0,0,0);}
.fs3_c00042{font-size:38.880000px;}
.fs2_c00042{font-size:47.880000px;}
.fs0_c00042{font-size:54.000000px;}
.fs4_c00042{font-size:60.120000px;}
.fs1_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y28_c00042{bottom:57.240000px;}
.y27_c00042{bottom:109.791180px;}
.y26_c00042{bottom:126.985500px;}
.y25_c00042{bottom:149.490000px;}
.y24_c00042{bottom:161.541180px;}
.y23_c00042{bottom:178.735500px;}
.y22_c00042{bottom:201.240000px;}
.y29_c00042{bottom:213.930000px;}
.y21_c00042{bottom:272.070000px;}
.y20_c00042{bottom:303.120000px;}
.y1f_c00042{bottom:334.170000px;}
.y1e_c00042{bottom:365.220000px;}
.y1d_c00042{bottom:396.270000px;}
.y1c_c00042{bottom:427.320000px;}
.y1b_c00042{bottom:458.370000px;}
.y1a_c00042{bottom:489.420000px;}
.y19_c00042{bottom:520.470000px;}
.y18_c00042{bottom:551.520000px;}
.y17_c00042{bottom:582.570000px;}
.y16_c00042{bottom:613.620000px;}
.y15_c00042{bottom:644.670000px;}
.y14_c00042{bottom:675.720000px;}
.y13_c00042{bottom:706.770000px;}
.y12_c00042{bottom:737.820000px;}
.y11_c00042{bottom:768.870000px;}
.y10_c00042{bottom:799.920000px;}
.yf_c00042{bottom:830.970000px;}
.ye_c00042{bottom:861.930000px;}
.yd_c00042{bottom:892.980000px;}
.yc_c00042{bottom:924.030000px;}
.yb_c00042{bottom:955.080000px;}
.ya_c00042{bottom:986.130000px;}
.y9_c00042{bottom:1017.180000px;}
.y8_c00042{bottom:1048.230000px;}
.y7_c00042{bottom:1079.280000px;}
.y6_c00042{bottom:1110.330000px;}
.y5_c00042{bottom:1131.030000px;}
.y4_c00042{bottom:1150.920000px;}
.y3_c00042{bottom:1166.404500px;}
.y2_c00042{bottom:1181.970000px;}
.y1_c00042{bottom:1197.450000px;}
.h6_c00042{height:38.158594px;}
.h3_c00042{height:52.971680px;}
.h2_c00042{height:52.998047px;}
.h7_c00042{height:59.004492px;}
.h4_c00042{height:70.664062px;}
.h5_c00042{height:73.991602px;}
.h0_c00042{height:1262.880000px;}
.h1_c00042{height:1263.000000px;}
.w0_c00042{width:893.070000px;}
.w1_c00042{width:893.250000px;}
.x0_c00042{left:0.000000px;}
.x3_c00042{left:127.620000px;}
.x2_c00042{left:425.160000px;}
.x1_c00042{left:446.580000px;}
.x4_c00042{left:756.540000px;}
@media print{
.v2_c00042{vertical-align:-18.560000pt;}
.v0_c00042{vertical-align:0.000000pt;}
.v1_c00042{vertical-align:24.000000pt;}
.ls12_c00042{letter-spacing:-0.374080pt;}
.lsc_c00042{letter-spacing:-0.320000pt;}
.ls14_c00042{letter-spacing:-0.160320pt;}
.lsb_c00042{letter-spacing:-0.096000pt;}
.lsf_c00042{letter-spacing:-0.064000pt;}
.ls11_c00042{letter-spacing:-0.053440pt;}
.lsa_c00042{letter-spacing:0.000000pt;}
.ls1_c00042{letter-spacing:0.064000pt;}
.ls9_c00042{letter-spacing:0.096192pt;}
.ls13_c00042{letter-spacing:0.106880pt;}
.lse_c00042{letter-spacing:0.128000pt;}
.ls10_c00042{letter-spacing:0.160320pt;}
.lsd_c00042{letter-spacing:0.170240pt;}
.ls2_c00042{letter-spacing:0.652800pt;}
.ls0_c00042{letter-spacing:1.920000pt;}
.ls3_c00042{letter-spacing:3.840000pt;}
.ls8_c00042{letter-spacing:10.313920pt;}
.ls5_c00042{letter-spacing:12.800000pt;}
.ls7_c00042{letter-spacing:20.160000pt;}
.ls4_c00042{letter-spacing:24.320000pt;}
.ls6_c00042{letter-spacing:29.440000pt;}
.ws3_c00042{word-spacing:-16.128000pt;}
.ws2_c00042{word-spacing:-16.064000pt;}
.ws0_c00042{word-spacing:-16.000000pt;}
.ws6_c00042{word-spacing:-13.306560pt;}
.ws5_c00042{word-spacing:-13.199680pt;}
.ws1_c00042{word-spacing:-10.810240pt;}
.ws4_c00042{word-spacing:-8.640000pt;}
.ws2f_c00042{word-spacing:-0.448000pt;}
.ws34_c00042{word-spacing:-0.320640pt;}
.ws2e_c00042{word-spacing:-0.128000pt;}
.ws10_c00042{word-spacing:-0.064000pt;}
.ws7_c00042{word-spacing:0.000000pt;}
.ws9_c00042{word-spacing:0.144000pt;}
.ws32_c00042{word-spacing:0.160320pt;}
.ws8_c00042{word-spacing:0.240000pt;}
.ws1e_c00042{word-spacing:0.320000pt;}
.ws33_c00042{word-spacing:0.374080pt;}
.wsf_c00042{word-spacing:0.576000pt;}
.ws31_c00042{word-spacing:0.587840pt;}
.wse_c00042{word-spacing:1.856000pt;}
.ws2c_c00042{word-spacing:1.920000pt;}
.ws18_c00042{word-spacing:2.176000pt;}
.ws23_c00042{word-spacing:2.240000pt;}
.ws25_c00042{word-spacing:2.496000pt;}
.ws24_c00042{word-spacing:2.560000pt;}
.ws16_c00042{word-spacing:2.880000pt;}
.ws12_c00042{word-spacing:3.136000pt;}
.ws11_c00042{word-spacing:3.200000pt;}
.ws13_c00042{word-spacing:3.520000pt;}
.ws14_c00042{word-spacing:3.776000pt;}
.wsa_c00042{word-spacing:5.056000pt;}
.ws2a_c00042{word-spacing:5.376000pt;}
.ws2b_c00042{word-spacing:5.440000pt;}
.ws36_c00042{word-spacing:7.267840pt;}
.ws35_c00042{word-spacing:7.481600pt;}
.ws2d_c00042{word-spacing:8.320000pt;}
.wsb_c00042{word-spacing:9.856000pt;}
.ws30_c00042{word-spacing:10.153600pt;}
.wsc_c00042{word-spacing:10.240000pt;}
.wsd_c00042{word-spacing:11.136000pt;}
.ws1b_c00042{word-spacing:12.800000pt;}
.ws15_c00042{word-spacing:14.720000pt;}
.ws27_c00042{word-spacing:17.536000pt;}
.ws26_c00042{word-spacing:17.664000pt;}
.ws28_c00042{word-spacing:17.856000pt;}
.ws17_c00042{word-spacing:18.176000pt;}
.ws21_c00042{word-spacing:20.160000pt;}
.ws1f_c00042{word-spacing:20.224000pt;}
.ws20_c00042{word-spacing:20.416000pt;}
.ws22_c00042{word-spacing:20.480000pt;}
.ws19_c00042{word-spacing:24.000000pt;}
.ws1a_c00042{word-spacing:24.256000pt;}
.ws1d_c00042{word-spacing:29.376000pt;}
.ws1c_c00042{word-spacing:29.440000pt;}
.ws29_c00042{word-spacing:41.536000pt;}
._1_c00042{margin-left:-0.940800pt;}
._0_c00042{width:1.084800pt;}
._2_c00042{width:2.246400pt;}
._7_c00042{width:5.446400pt;}
._8_c00042{width:7.695360pt;}
._4_c00042{width:12.012800pt;}
._6_c00042{width:17.664000pt;}
._5_c00042{width:20.908800pt;}
._3_c00042{width:24.320000pt;}
.fs3_c00042{font-size:34.560000pt;}
.fs2_c00042{font-size:42.560000pt;}
.fs0_c00042{font-size:48.000000pt;}
.fs4_c00042{font-size:53.440000pt;}
.fs1_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y28_c00042{bottom:50.880000pt;}
.y27_c00042{bottom:97.592160pt;}
.y26_c00042{bottom:112.876000pt;}
.y25_c00042{bottom:132.880000pt;}
.y24_c00042{bottom:143.592160pt;}
.y23_c00042{bottom:158.876000pt;}
.y22_c00042{bottom:178.880000pt;}
.y29_c00042{bottom:190.160000pt;}
.y21_c00042{bottom:241.840000pt;}
.y20_c00042{bottom:269.440000pt;}
.y1f_c00042{bottom:297.040000pt;}
.y1e_c00042{bottom:324.640000pt;}
.y1d_c00042{bottom:352.240000pt;}
.y1c_c00042{bottom:379.840000pt;}
.y1b_c00042{bottom:407.440000pt;}
.y1a_c00042{bottom:435.040000pt;}
.y19_c00042{bottom:462.640000pt;}
.y18_c00042{bottom:490.240000pt;}
.y17_c00042{bottom:517.840000pt;}
.y16_c00042{bottom:545.440000pt;}
.y15_c00042{bottom:573.040000pt;}
.y14_c00042{bottom:600.640000pt;}
.y13_c00042{bottom:628.240000pt;}
.y12_c00042{bottom:655.840000pt;}
.y11_c00042{bottom:683.440000pt;}
.y10_c00042{bottom:711.040000pt;}
.yf_c00042{bottom:738.640000pt;}
.ye_c00042{bottom:766.160000pt;}
.yd_c00042{bottom:793.760000pt;}
.yc_c00042{bottom:821.360000pt;}
.yb_c00042{bottom:848.960000pt;}
.ya_c00042{bottom:876.560000pt;}
.y9_c00042{bottom:904.160000pt;}
.y8_c00042{bottom:931.760000pt;}
.y7_c00042{bottom:959.360000pt;}
.y6_c00042{bottom:986.960000pt;}
.y5_c00042{bottom:1005.360000pt;}
.y4_c00042{bottom:1023.040000pt;}
.y3_c00042{bottom:1036.804000pt;}
.y2_c00042{bottom:1050.640000pt;}
.y1_c00042{bottom:1064.400000pt;}
.h6_c00042{height:33.918750pt;}
.h3_c00042{height:47.085938pt;}
.h2_c00042{height:47.109375pt;}
.h7_c00042{height:52.448437pt;}
.h4_c00042{height:62.812500pt;}
.h5_c00042{height:65.770313pt;}
.h0_c00042{height:1122.560000pt;}
.h1_c00042{height:1122.666667pt;}
.w0_c00042{width:793.840000pt;}
.w1_c00042{width:794.000000pt;}
.x0_c00042{left:0.000000pt;}
.x3_c00042{left:113.440000pt;}
.x2_c00042{left:377.920000pt;}
.x1_c00042{left:396.960000pt;}
.x4_c00042{left:672.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_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_38bee54d9b7926a7496fbba6.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_06754151c9c5c7d3d04a9501.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;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_c00043;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00043{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00043{vertical-align:-61.938000px;}
.v3_c00043{vertical-align:-20.880000px;}
.v0_c00043{vertical-align:0.000000px;}
.v2_c00043{vertical-align:27.000000px;}
.ls11_c00043{letter-spacing:-0.216000px;}
.lsf_c00043{letter-spacing:0.000000px;}
.ls2_c00043{letter-spacing:0.072000px;}
.lse_c00043{letter-spacing:0.120240px;}
.lsd_c00043{letter-spacing:0.144000px;}
.ls12_c00043{letter-spacing:0.180360px;}
.ls10_c00043{letter-spacing:0.191520px;}
.lsb_c00043{letter-spacing:2.520000px;}
.ls6_c00043{letter-spacing:3.960000px;}
.ls5_c00043{letter-spacing:4.680000px;}
.ls7_c00043{letter-spacing:5.040000px;}
.ls8_c00043{letter-spacing:5.047200px;}
.lsc_c00043{letter-spacing:10.440000px;}
.lsa_c00043{letter-spacing:15.120000px;}
.ls1_c00043{letter-spacing:18.381600px;}
.ls3_c00043{letter-spacing:23.760000px;}
.ls9_c00043{letter-spacing:25.596000px;}
.ls4_c00043{letter-spacing:30.744000px;}
.ls0_c00043{letter-spacing:319.518000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00043{word-spacing:-18.144000px;}
.ws1_c00043{word-spacing:-18.072000px;}
.ws3_c00043{word-spacing:-18.000000px;}
.ws0_c00043{word-spacing:-12.161520px;}
.ws4_c00043{word-spacing:-9.720000px;}
.ws2b_c00043{word-spacing:-0.360720px;}
.ws6_c00043{word-spacing:-0.162000px;}
.ws15_c00043{word-spacing:-0.072000px;}
.ws2c_c00043{word-spacing:-0.060120px;}
.ws5_c00043{word-spacing:0.000000px;}
.wsf_c00043{word-spacing:0.216000px;}
.ws2a_c00043{word-spacing:0.288000px;}
.ws1e_c00043{word-spacing:0.720000px;}
.ws16_c00043{word-spacing:1.440000px;}
.ws1d_c00043{word-spacing:1.728000px;}
.ws26_c00043{word-spacing:2.448000px;}
.ws18_c00043{word-spacing:3.528000px;}
.ws1c_c00043{word-spacing:3.816000px;}
.ws1b_c00043{word-spacing:3.888000px;}
.wsc_c00043{word-spacing:4.608000px;}
.wsb_c00043{word-spacing:4.680000px;}
.ws1f_c00043{word-spacing:5.040000px;}
.ws27_c00043{word-spacing:5.688000px;}
.ws11_c00043{word-spacing:6.048000px;}
.ws12_c00043{word-spacing:6.120000px;}
.ws28_c00043{word-spacing:10.296000px;}
.ws20_c00043{word-spacing:10.368000px;}
.ws29_c00043{word-spacing:10.440000px;}
.ws9_c00043{word-spacing:10.728000px;}
.ws25_c00043{word-spacing:12.600000px;}
.wsd_c00043{word-spacing:12.888000px;}
.wse_c00043{word-spacing:12.960000px;}
.ws24_c00043{word-spacing:15.048000px;}
.ws23_c00043{word-spacing:15.120000px;}
.ws17_c00043{word-spacing:16.128000px;}
.ws10_c00043{word-spacing:18.288000px;}
.ws13_c00043{word-spacing:23.688000px;}
.ws14_c00043{word-spacing:23.760000px;}
.ws21_c00043{word-spacing:25.488000px;}
.ws22_c00043{word-spacing:25.560000px;}
.ws8_c00043{word-spacing:31.608000px;}
.ws7_c00043{word-spacing:31.680000px;}
.ws19_c00043{word-spacing:45.576000px;}
.ws1a_c00043{word-spacing:45.720000px;}
.wsa_c00043{word-spacing:73.080000px;}
._0_c00043{margin-left:-1.015200px;}
._4_c00043{width:1.008000px;}
._1_c00043{width:3.204000px;}
._5_c00043{width:5.040000px;}
._6_c00043{width:10.512000px;}
._2_c00043{width:12.720960px;}
._3_c00043{width:23.752800px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs3_c00043{font-size:38.880000px;}
.fs2_c00043{font-size:47.880000px;}
.fs0_c00043{font-size:54.000000px;}
.fs4_c00043{font-size:60.120000px;}
.fs1_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y26_c00043{bottom:57.240000px;}
.y25_c00043{bottom:115.020000px;}
.y24_c00043{bottom:132.210000px;}
.y27_c00043{bottom:144.900000px;}
.y23_c00043{bottom:178.920000px;}
.y22_c00043{bottom:209.970000px;}
.y21_c00043{bottom:241.020000px;}
.y20_c00043{bottom:272.070000px;}
.y1f_c00043{bottom:303.120000px;}
.y1e_c00043{bottom:334.170000px;}
.y1d_c00043{bottom:365.220000px;}
.y1c_c00043{bottom:396.270000px;}
.y1b_c00043{bottom:427.320000px;}
.y1a_c00043{bottom:458.370000px;}
.y19_c00043{bottom:489.420000px;}
.y18_c00043{bottom:520.470000px;}
.y17_c00043{bottom:551.520000px;}
.y16_c00043{bottom:582.570000px;}
.y15_c00043{bottom:613.620000px;}
.y14_c00043{bottom:644.670000px;}
.y13_c00043{bottom:675.720000px;}
.y12_c00043{bottom:706.770000px;}
.y11_c00043{bottom:737.820000px;}
.y10_c00043{bottom:768.870000px;}
.yf_c00043{bottom:799.920000px;}
.ye_c00043{bottom:830.970000px;}
.yd_c00043{bottom:861.930000px;}
.yc_c00043{bottom:892.980000px;}
.yb_c00043{bottom:924.030000px;}
.ya_c00043{bottom:955.080000px;}
.y9_c00043{bottom:986.130000px;}
.y8_c00043{bottom:1017.180000px;}
.y7_c00043{bottom:1048.230000px;}
.y6_c00043{bottom:1079.280000px;}
.y5_c00043{bottom:1110.330000px;}
.y4_c00043{bottom:1131.030000px;}
.y3_c00043{bottom:1150.915500px;}
.y2_c00043{bottom:1166.400000px;}
.y1_c00043{bottom:1197.450000px;}
.h6_c00043{height:38.158594px;}
.h2_c00043{height:52.998047px;}
.h3_c00043{height:70.664062px;}
.h4_c00043{height:73.991602px;}
.h5_c00043{height:75.093750px;}
.h0_c00043{height:1262.880000px;}
.h1_c00043{height:1263.000000px;}
.w0_c00043{width:893.070000px;}
.w1_c00043{width:893.250000px;}
.x0_c00043{left:0.000000px;}
.x2_c00043{left:127.620000px;}
.x3_c00043{left:154.620000px;}
.x1_c00043{left:446.580000px;}
@media print{
.v1_c00043{vertical-align:-55.056000pt;}
.v3_c00043{vertical-align:-18.560000pt;}
.v0_c00043{vertical-align:0.000000pt;}
.v2_c00043{vertical-align:24.000000pt;}
.ls11_c00043{letter-spacing:-0.192000pt;}
.lsf_c00043{letter-spacing:0.000000pt;}
.ls2_c00043{letter-spacing:0.064000pt;}
.lse_c00043{letter-spacing:0.106880pt;}
.lsd_c00043{letter-spacing:0.128000pt;}
.ls12_c00043{letter-spacing:0.160320pt;}
.ls10_c00043{letter-spacing:0.170240pt;}
.lsb_c00043{letter-spacing:2.240000pt;}
.ls6_c00043{letter-spacing:3.520000pt;}
.ls5_c00043{letter-spacing:4.160000pt;}
.ls7_c00043{letter-spacing:4.480000pt;}
.ls8_c00043{letter-spacing:4.486400pt;}
.lsc_c00043{letter-spacing:9.280000pt;}
.lsa_c00043{letter-spacing:13.440000pt;}
.ls1_c00043{letter-spacing:16.339200pt;}
.ls3_c00043{letter-spacing:21.120000pt;}
.ls9_c00043{letter-spacing:22.752000pt;}
.ls4_c00043{letter-spacing:27.328000pt;}
.ls0_c00043{letter-spacing:284.016000pt;}
.ws2_c00043{word-spacing:-16.128000pt;}
.ws1_c00043{word-spacing:-16.064000pt;}
.ws3_c00043{word-spacing:-16.000000pt;}
.ws0_c00043{word-spacing:-10.810240pt;}
.ws4_c00043{word-spacing:-8.640000pt;}
.ws2b_c00043{word-spacing:-0.320640pt;}
.ws6_c00043{word-spacing:-0.144000pt;}
.ws15_c00043{word-spacing:-0.064000pt;}
.ws2c_c00043{word-spacing:-0.053440pt;}
.ws5_c00043{word-spacing:0.000000pt;}
.wsf_c00043{word-spacing:0.192000pt;}
.ws2a_c00043{word-spacing:0.256000pt;}
.ws1e_c00043{word-spacing:0.640000pt;}
.ws16_c00043{word-spacing:1.280000pt;}
.ws1d_c00043{word-spacing:1.536000pt;}
.ws26_c00043{word-spacing:2.176000pt;}
.ws18_c00043{word-spacing:3.136000pt;}
.ws1c_c00043{word-spacing:3.392000pt;}
.ws1b_c00043{word-spacing:3.456000pt;}
.wsc_c00043{word-spacing:4.096000pt;}
.wsb_c00043{word-spacing:4.160000pt;}
.ws1f_c00043{word-spacing:4.480000pt;}
.ws27_c00043{word-spacing:5.056000pt;}
.ws11_c00043{word-spacing:5.376000pt;}
.ws12_c00043{word-spacing:5.440000pt;}
.ws28_c00043{word-spacing:9.152000pt;}
.ws20_c00043{word-spacing:9.216000pt;}
.ws29_c00043{word-spacing:9.280000pt;}
.ws9_c00043{word-spacing:9.536000pt;}
.ws25_c00043{word-spacing:11.200000pt;}
.wsd_c00043{word-spacing:11.456000pt;}
.wse_c00043{word-spacing:11.520000pt;}
.ws24_c00043{word-spacing:13.376000pt;}
.ws23_c00043{word-spacing:13.440000pt;}
.ws17_c00043{word-spacing:14.336000pt;}
.ws10_c00043{word-spacing:16.256000pt;}
.ws13_c00043{word-spacing:21.056000pt;}
.ws14_c00043{word-spacing:21.120000pt;}
.ws21_c00043{word-spacing:22.656000pt;}
.ws22_c00043{word-spacing:22.720000pt;}
.ws8_c00043{word-spacing:28.096000pt;}
.ws7_c00043{word-spacing:28.160000pt;}
.ws19_c00043{word-spacing:40.512000pt;}
.ws1a_c00043{word-spacing:40.640000pt;}
.wsa_c00043{word-spacing:64.960000pt;}
._0_c00043{margin-left:-0.902400pt;}
._4_c00043{width:0.896000pt;}
._1_c00043{width:2.848000pt;}
._5_c00043{width:4.480000pt;}
._6_c00043{width:9.344000pt;}
._2_c00043{width:11.307520pt;}
._3_c00043{width:21.113600pt;}
.fs3_c00043{font-size:34.560000pt;}
.fs2_c00043{font-size:42.560000pt;}
.fs0_c00043{font-size:48.000000pt;}
.fs4_c00043{font-size:53.440000pt;}
.fs1_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y26_c00043{bottom:50.880000pt;}
.y25_c00043{bottom:102.240000pt;}
.y24_c00043{bottom:117.520000pt;}
.y27_c00043{bottom:128.800000pt;}
.y23_c00043{bottom:159.040000pt;}
.y22_c00043{bottom:186.640000pt;}
.y21_c00043{bottom:214.240000pt;}
.y20_c00043{bottom:241.840000pt;}
.y1f_c00043{bottom:269.440000pt;}
.y1e_c00043{bottom:297.040000pt;}
.y1d_c00043{bottom:324.640000pt;}
.y1c_c00043{bottom:352.240000pt;}
.y1b_c00043{bottom:379.840000pt;}
.y1a_c00043{bottom:407.440000pt;}
.y19_c00043{bottom:435.040000pt;}
.y18_c00043{bottom:462.640000pt;}
.y17_c00043{bottom:490.240000pt;}
.y16_c00043{bottom:517.840000pt;}
.y15_c00043{bottom:545.440000pt;}
.y14_c00043{bottom:573.040000pt;}
.y13_c00043{bottom:600.640000pt;}
.y12_c00043{bottom:628.240000pt;}
.y11_c00043{bottom:655.840000pt;}
.y10_c00043{bottom:683.440000pt;}
.yf_c00043{bottom:711.040000pt;}
.ye_c00043{bottom:738.640000pt;}
.yd_c00043{bottom:766.160000pt;}
.yc_c00043{bottom:793.760000pt;}
.yb_c00043{bottom:821.360000pt;}
.ya_c00043{bottom:848.960000pt;}
.y9_c00043{bottom:876.560000pt;}
.y8_c00043{bottom:904.160000pt;}
.y7_c00043{bottom:931.760000pt;}
.y6_c00043{bottom:959.360000pt;}
.y5_c00043{bottom:986.960000pt;}
.y4_c00043{bottom:1005.360000pt;}
.y3_c00043{bottom:1023.036000pt;}
.y2_c00043{bottom:1036.800000pt;}
.y1_c00043{bottom:1064.400000pt;}
.h6_c00043{height:33.918750pt;}
.h2_c00043{height:47.109375pt;}
.h3_c00043{height:62.812500pt;}
.h4_c00043{height:65.770312pt;}
.h5_c00043{height:66.750000pt;}
.h0_c00043{height:1122.560000pt;}
.h1_c00043{height:1122.666667pt;}
.w0_c00043{width:793.840000pt;}
.w1_c00043{width:794.000000pt;}
.x0_c00043{left:0.000000pt;}
.x2_c00043{left:113.440000pt;}
.x3_c00043{left:137.440000pt;}
.x1_c00043{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33eb02b974493043f53dd9e7.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_e61285c075a61c4c82a86dfc.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;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_c00044;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00044{vertical-align:-20.880000px;}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:27.000000px;}
.ls11_c00044{letter-spacing:-0.360000px;}
.ls12_c00044{letter-spacing:-0.288000px;}
.ls15_c00044{letter-spacing:-0.180360px;}
.lsf_c00044{letter-spacing:-0.108000px;}
.ls13_c00044{letter-spacing:-0.060120px;}
.lse_c00044{letter-spacing:0.000000px;}
.ls1_c00044{letter-spacing:0.072000px;}
.ls8_c00044{letter-spacing:0.079200px;}
.ls4_c00044{letter-spacing:0.108000px;}
.lsd_c00044{letter-spacing:0.120240px;}
.ls5_c00044{letter-spacing:0.144000px;}
.ls14_c00044{letter-spacing:0.180360px;}
.ls10_c00044{letter-spacing:0.191520px;}
.ls0_c00044{letter-spacing:0.360000px;}
.ls2_c00044{letter-spacing:2.880000px;}
.ls7_c00044{letter-spacing:5.400000px;}
.ls6_c00044{letter-spacing:6.840000px;}
.lsa_c00044{letter-spacing:10.521000px;}
.lsc_c00044{letter-spacing:11.338632px;}
.ls9_c00044{letter-spacing:12.600000px;}
.lsb_c00044{letter-spacing:17.374680px;}
.ls3_c00044{letter-spacing:30.744000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00044{word-spacing:-18.144000px;}
.ws4_c00044{word-spacing:-18.072000px;}
.ws0_c00044{word-spacing:-18.000000px;}
.ws2_c00044{word-spacing:-17.712000px;}
.ws6_c00044{word-spacing:-14.969880px;}
.ws1_c00044{word-spacing:-12.161520px;}
.ws5_c00044{word-spacing:-9.720000px;}
.ws1c_c00044{word-spacing:-0.504000px;}
.ws15_c00044{word-spacing:-0.144000px;}
.wsa_c00044{word-spacing:-0.072000px;}
.ws2e_c00044{word-spacing:-0.060120px;}
.ws7_c00044{word-spacing:0.000000px;}
.ws2c_c00044{word-spacing:0.060120px;}
.ws9_c00044{word-spacing:0.162000px;}
.ws31_c00044{word-spacing:0.180360px;}
.ws8_c00044{word-spacing:0.270000px;}
.wsd_c00044{word-spacing:0.288000px;}
.wsc_c00044{word-spacing:0.360000px;}
.ws1b_c00044{word-spacing:1.008000px;}
.ws1a_c00044{word-spacing:1.080000px;}
.ws14_c00044{word-spacing:1.368000px;}
.ws29_c00044{word-spacing:1.440000px;}
.wsf_c00044{word-spacing:1.728000px;}
.ws10_c00044{word-spacing:1.800000px;}
.ws12_c00044{word-spacing:2.808000px;}
.ws11_c00044{word-spacing:2.880000px;}
.ws2d_c00044{word-spacing:3.126240px;}
.ws16_c00044{word-spacing:5.328000px;}
.ws23_c00044{word-spacing:5.400000px;}
.wse_c00044{word-spacing:6.480000px;}
.ws21_c00044{word-spacing:6.696000px;}
.ws22_c00044{word-spacing:6.768000px;}
.ws13_c00044{word-spacing:8.208000px;}
.ws27_c00044{word-spacing:8.568000px;}
.ws1f_c00044{word-spacing:8.928000px;}
.ws1e_c00044{word-spacing:9.000000px;}
.ws2b_c00044{word-spacing:10.581120px;}
.ws32_c00044{word-spacing:11.062080px;}
.ws33_c00044{word-spacing:11.302560px;}
.ws28_c00044{word-spacing:12.528000px;}
.ws20_c00044{word-spacing:13.968000px;}
.wsb_c00044{word-spacing:15.048000px;}
.ws1d_c00044{word-spacing:16.848000px;}
.ws30_c00044{word-spacing:17.194320px;}
.ws2f_c00044{word-spacing:17.434800px;}
.ws25_c00044{word-spacing:19.008000px;}
.ws26_c00044{word-spacing:19.080000px;}
.ws18_c00044{word-spacing:22.896000px;}
.ws19_c00044{word-spacing:22.968000px;}
.ws17_c00044{word-spacing:23.040000px;}
.ws24_c00044{word-spacing:24.480000px;}
.ws2a_c00044{word-spacing:28.728000px;}
._1_c00044{margin-left:-1.058400px;}
._0_c00044{width:1.220400px;}
._3_c00044{width:2.304000px;}
._5_c00044{width:3.456000px;}
._6_c00044{width:5.331600px;}
._4_c00044{width:6.456960px;}
._7_c00044{width:10.160280px;}
._2_c00044{width:15.148800px;}
.fc0_c00044{color:rgb(0,0,0);}
.fs3_c00044{font-size:38.880000px;}
.fs2_c00044{font-size:47.880000px;}
.fs0_c00044{font-size:54.000000px;}
.fs4_c00044{font-size:60.120000px;}
.fs1_c00044{font-size:72.000000px;}
.y0_c00044{bottom:0.000000px;}
.y29_c00044{bottom:57.240000px;}
.y28_c00044{bottom:115.020000px;}
.y27_c00044{bottom:126.981000px;}
.y26_c00044{bottom:144.265500px;}
.y25_c00044{bottom:166.770000px;}
.y24_c00044{bottom:178.731000px;}
.y23_c00044{bottom:196.015500px;}
.y22_c00044{bottom:218.520000px;}
.y2a_c00044{bottom:231.210000px;}
.y21_c00044{bottom:282.420000px;}
.y20_c00044{bottom:313.470000px;}
.y1f_c00044{bottom:344.520000px;}
.y1e_c00044{bottom:375.570000px;}
.y1d_c00044{bottom:406.620000px;}
.y1c_c00044{bottom:437.670000px;}
.y1b_c00044{bottom:468.720000px;}
.y1a_c00044{bottom:499.770000px;}
.y19_c00044{bottom:530.820000px;}
.y18_c00044{bottom:561.870000px;}
.y17_c00044{bottom:592.920000px;}
.y16_c00044{bottom:623.970000px;}
.y15_c00044{bottom:655.020000px;}
.y14_c00044{bottom:686.070000px;}
.y13_c00044{bottom:717.120000px;}
.y12_c00044{bottom:748.170000px;}
.y11_c00044{bottom:779.220000px;}
.y10_c00044{bottom:810.270000px;}
.yf_c00044{bottom:841.230000px;}
.ye_c00044{bottom:872.280000px;}
.yd_c00044{bottom:903.330000px;}
.yc_c00044{bottom:934.380000px;}
.yb_c00044{bottom:965.430000px;}
.ya_c00044{bottom:996.480000px;}
.y9_c00044{bottom:1027.530000px;}
.y8_c00044{bottom:1058.580000px;}
.y7_c00044{bottom:1089.630000px;}
.y6_c00044{bottom:1110.330000px;}
.y5_c00044{bottom:1131.030000px;}
.y4_c00044{bottom:1150.920000px;}
.y3_c00044{bottom:1166.404500px;}
.y2_c00044{bottom:1181.970000px;}
.y1_c00044{bottom:1197.450000px;}
.h7_c00044{height:38.158594px;}
.h3_c00044{height:52.971680px;}
.h2_c00044{height:52.998047px;}
.h8_c00044{height:59.004492px;}
.h4_c00044{height:70.664062px;}
.h5_c00044{height:73.991602px;}
.h6_c00044{height:75.093750px;}
.h0_c00044{height:1262.880000px;}
.h1_c00044{height:1263.000000px;}
.w0_c00044{width:893.070000px;}
.w1_c00044{width:893.250000px;}
.x0_c00044{left:0.000000px;}
.x3_c00044{left:127.620000px;}
.x4_c00044{left:154.620000px;}
.x2_c00044{left:425.160000px;}
.x1_c00044{left:446.580000px;}
.x5_c00044{left:756.540000px;}
@media print{
.v2_c00044{vertical-align:-18.560000pt;}
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:24.000000pt;}
.ls11_c00044{letter-spacing:-0.320000pt;}
.ls12_c00044{letter-spacing:-0.256000pt;}
.ls15_c00044{letter-spacing:-0.160320pt;}
.lsf_c00044{letter-spacing:-0.096000pt;}
.ls13_c00044{letter-spacing:-0.053440pt;}
.lse_c00044{letter-spacing:0.000000pt;}
.ls1_c00044{letter-spacing:0.064000pt;}
.ls8_c00044{letter-spacing:0.070400pt;}
.ls4_c00044{letter-spacing:0.096000pt;}
.lsd_c00044{letter-spacing:0.106880pt;}
.ls5_c00044{letter-spacing:0.128000pt;}
.ls14_c00044{letter-spacing:0.160320pt;}
.ls10_c00044{letter-spacing:0.170240pt;}
.ls0_c00044{letter-spacing:0.320000pt;}
.ls2_c00044{letter-spacing:2.560000pt;}
.ls7_c00044{letter-spacing:4.800000pt;}
.ls6_c00044{letter-spacing:6.080000pt;}
.lsa_c00044{letter-spacing:9.352000pt;}
.lsc_c00044{letter-spacing:10.078784pt;}
.ls9_c00044{letter-spacing:11.200000pt;}
.lsb_c00044{letter-spacing:15.444160pt;}
.ls3_c00044{letter-spacing:27.328000pt;}
.ws3_c00044{word-spacing:-16.128000pt;}
.ws4_c00044{word-spacing:-16.064000pt;}
.ws0_c00044{word-spacing:-16.000000pt;}
.ws2_c00044{word-spacing:-15.744000pt;}
.ws6_c00044{word-spacing:-13.306560pt;}
.ws1_c00044{word-spacing:-10.810240pt;}
.ws5_c00044{word-spacing:-8.640000pt;}
.ws1c_c00044{word-spacing:-0.448000pt;}
.ws15_c00044{word-spacing:-0.128000pt;}
.wsa_c00044{word-spacing:-0.064000pt;}
.ws2e_c00044{word-spacing:-0.053440pt;}
.ws7_c00044{word-spacing:0.000000pt;}
.ws2c_c00044{word-spacing:0.053440pt;}
.ws9_c00044{word-spacing:0.144000pt;}
.ws31_c00044{word-spacing:0.160320pt;}
.ws8_c00044{word-spacing:0.240000pt;}
.wsd_c00044{word-spacing:0.256000pt;}
.wsc_c00044{word-spacing:0.320000pt;}
.ws1b_c00044{word-spacing:0.896000pt;}
.ws1a_c00044{word-spacing:0.960000pt;}
.ws14_c00044{word-spacing:1.216000pt;}
.ws29_c00044{word-spacing:1.280000pt;}
.wsf_c00044{word-spacing:1.536000pt;}
.ws10_c00044{word-spacing:1.600000pt;}
.ws12_c00044{word-spacing:2.496000pt;}
.ws11_c00044{word-spacing:2.560000pt;}
.ws2d_c00044{word-spacing:2.778880pt;}
.ws16_c00044{word-spacing:4.736000pt;}
.ws23_c00044{word-spacing:4.800000pt;}
.wse_c00044{word-spacing:5.760000pt;}
.ws21_c00044{word-spacing:5.952000pt;}
.ws22_c00044{word-spacing:6.016000pt;}
.ws13_c00044{word-spacing:7.296000pt;}
.ws27_c00044{word-spacing:7.616000pt;}
.ws1f_c00044{word-spacing:7.936000pt;}
.ws1e_c00044{word-spacing:8.000000pt;}
.ws2b_c00044{word-spacing:9.405440pt;}
.ws32_c00044{word-spacing:9.832960pt;}
.ws33_c00044{word-spacing:10.046720pt;}
.ws28_c00044{word-spacing:11.136000pt;}
.ws20_c00044{word-spacing:12.416000pt;}
.wsb_c00044{word-spacing:13.376000pt;}
.ws1d_c00044{word-spacing:14.976000pt;}
.ws30_c00044{word-spacing:15.283840pt;}
.ws2f_c00044{word-spacing:15.497600pt;}
.ws25_c00044{word-spacing:16.896000pt;}
.ws26_c00044{word-spacing:16.960000pt;}
.ws18_c00044{word-spacing:20.352000pt;}
.ws19_c00044{word-spacing:20.416000pt;}
.ws17_c00044{word-spacing:20.480000pt;}
.ws24_c00044{word-spacing:21.760000pt;}
.ws2a_c00044{word-spacing:25.536000pt;}
._1_c00044{margin-left:-0.940800pt;}
._0_c00044{width:1.084800pt;}
._3_c00044{width:2.048000pt;}
._5_c00044{width:3.072000pt;}
._6_c00044{width:4.739200pt;}
._4_c00044{width:5.739520pt;}
._7_c00044{width:9.031360pt;}
._2_c00044{width:13.465600pt;}
.fs3_c00044{font-size:34.560000pt;}
.fs2_c00044{font-size:42.560000pt;}
.fs0_c00044{font-size:48.000000pt;}
.fs4_c00044{font-size:53.440000pt;}
.fs1_c00044{font-size:64.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y29_c00044{bottom:50.880000pt;}
.y28_c00044{bottom:102.240000pt;}
.y27_c00044{bottom:112.872000pt;}
.y26_c00044{bottom:128.236000pt;}
.y25_c00044{bottom:148.240000pt;}
.y24_c00044{bottom:158.872000pt;}
.y23_c00044{bottom:174.236000pt;}
.y22_c00044{bottom:194.240000pt;}
.y2a_c00044{bottom:205.520000pt;}
.y21_c00044{bottom:251.040000pt;}
.y20_c00044{bottom:278.640000pt;}
.y1f_c00044{bottom:306.240000pt;}
.y1e_c00044{bottom:333.840000pt;}
.y1d_c00044{bottom:361.440000pt;}
.y1c_c00044{bottom:389.040000pt;}
.y1b_c00044{bottom:416.640000pt;}
.y1a_c00044{bottom:444.240000pt;}
.y19_c00044{bottom:471.840000pt;}
.y18_c00044{bottom:499.440000pt;}
.y17_c00044{bottom:527.040000pt;}
.y16_c00044{bottom:554.640000pt;}
.y15_c00044{bottom:582.240000pt;}
.y14_c00044{bottom:609.840000pt;}
.y13_c00044{bottom:637.440000pt;}
.y12_c00044{bottom:665.040000pt;}
.y11_c00044{bottom:692.640000pt;}
.y10_c00044{bottom:720.240000pt;}
.yf_c00044{bottom:747.760000pt;}
.ye_c00044{bottom:775.360000pt;}
.yd_c00044{bottom:802.960000pt;}
.yc_c00044{bottom:830.560000pt;}
.yb_c00044{bottom:858.160000pt;}
.ya_c00044{bottom:885.760000pt;}
.y9_c00044{bottom:913.360000pt;}
.y8_c00044{bottom:940.960000pt;}
.y7_c00044{bottom:968.560000pt;}
.y6_c00044{bottom:986.960000pt;}
.y5_c00044{bottom:1005.360000pt;}
.y4_c00044{bottom:1023.040000pt;}
.y3_c00044{bottom:1036.804000pt;}
.y2_c00044{bottom:1050.640000pt;}
.y1_c00044{bottom:1064.400000pt;}
.h7_c00044{height:33.918750pt;}
.h3_c00044{height:47.085938pt;}
.h2_c00044{height:47.109375pt;}
.h8_c00044{height:52.448437pt;}
.h4_c00044{height:62.812500pt;}
.h5_c00044{height:65.770312pt;}
.h6_c00044{height:66.750000pt;}
.h0_c00044{height:1122.560000pt;}
.h1_c00044{height:1122.666667pt;}
.w0_c00044{width:793.840000pt;}
.w1_c00044{width:794.000000pt;}
.x0_c00044{left:0.000000pt;}
.x3_c00044{left:113.440000pt;}
.x4_c00044{left:137.440000pt;}
.x2_c00044{left:377.920000pt;}
.x1_c00044{left:396.960000pt;}
.x5_c00044{left:672.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_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_5c69f3f9670b686360ef111a.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00045{vertical-align:-61.938000px;}
.v3_c00045{vertical-align:-20.880000px;}
.v0_c00045{vertical-align:0.000000px;}
.v2_c00045{vertical-align:27.000000px;}
.ls13_c00045{letter-spacing:-0.432000px;}
.ls12_c00045{letter-spacing:-0.360000px;}
.ls14_c00045{letter-spacing:-0.288000px;}
.ls11_c00045{letter-spacing:-0.216000px;}
.ls16_c00045{letter-spacing:-0.180360px;}
.ls19_c00045{letter-spacing:-0.120240px;}
.ls15_c00045{letter-spacing:-0.072000px;}
.ls17_c00045{letter-spacing:-0.060120px;}
.lsf_c00045{letter-spacing:0.000000px;}
.ls1_c00045{letter-spacing:0.072000px;}
.lsd_c00045{letter-spacing:0.120240px;}
.ls5_c00045{letter-spacing:0.144000px;}
.ls18_c00045{letter-spacing:0.180360px;}
.ls10_c00045{letter-spacing:0.191520px;}
.ls2_c00045{letter-spacing:0.360000px;}
.ls8_c00045{letter-spacing:2.160000px;}
.ls4_c00045{letter-spacing:2.520000px;}
.ls3_c00045{letter-spacing:2.901600px;}
.lsb_c00045{letter-spacing:4.320000px;}
.ls9_c00045{letter-spacing:4.680000px;}
.lsa_c00045{letter-spacing:6.120000px;}
.lse_c00045{letter-spacing:6.192360px;}
.ls6_c00045{letter-spacing:6.480000px;}
.ls7_c00045{letter-spacing:11.880000px;}
.lsc_c00045{letter-spacing:19.080000px;}
.ls0_c00045{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00045{word-spacing:-18.144000px;}
.ws7_c00045{word-spacing:-18.072000px;}
.ws0_c00045{word-spacing:-18.000000px;}
.ws6_c00045{word-spacing:-17.928000px;}
.ws3_c00045{word-spacing:-17.784000px;}
.ws5_c00045{word-spacing:-17.712000px;}
.ws4_c00045{word-spacing:-17.568000px;}
.ws9_c00045{word-spacing:-15.210360px;}
.wsa_c00045{word-spacing:-14.969880px;}
.ws1_c00045{word-spacing:-12.161520px;}
.ws8_c00045{word-spacing:-9.720000px;}
.ws3a_c00045{word-spacing:-0.420840px;}
.ws2b_c00045{word-spacing:-0.360000px;}
.wsc_c00045{word-spacing:-0.162000px;}
.ws2c_c00045{word-spacing:-0.144000px;}
.ws24_c00045{word-spacing:-0.072000px;}
.ws32_c00045{word-spacing:-0.060120px;}
.wsb_c00045{word-spacing:0.000000px;}
.ws39_c00045{word-spacing:0.180360px;}
.wse_c00045{word-spacing:0.288000px;}
.ws33_c00045{word-spacing:0.300600px;}
.ws13_c00045{word-spacing:0.360000px;}
.wsf_c00045{word-spacing:0.648000px;}
.ws25_c00045{word-spacing:1.008000px;}
.ws26_c00045{word-spacing:1.080000px;}
.ws1a_c00045{word-spacing:1.800000px;}
.ws21_c00045{word-spacing:2.088000px;}
.ws20_c00045{word-spacing:2.160000px;}
.ws15_c00045{word-spacing:2.448000px;}
.ws14_c00045{word-spacing:2.808000px;}
.ws1f_c00045{word-spacing:3.168000px;}
.ws2a_c00045{word-spacing:3.600000px;}
.ws2e_c00045{word-spacing:4.248000px;}
.ws2d_c00045{word-spacing:4.320000px;}
.ws23_c00045{word-spacing:4.608000px;}
.ws22_c00045{word-spacing:4.680000px;}
.ws19_c00045{word-spacing:5.760000px;}
.ws35_c00045{word-spacing:6.012000px;}
.ws28_c00045{word-spacing:6.120000px;}
.ws34_c00045{word-spacing:6.252480px;}
.ws36_c00045{word-spacing:6.312600px;}
.ws1c_c00045{word-spacing:6.408000px;}
.ws1b_c00045{word-spacing:6.480000px;}
.ws29_c00045{word-spacing:7.128000px;}
.ws18_c00045{word-spacing:10.728000px;}
.ws12_c00045{word-spacing:10.800000px;}
.ws1d_c00045{word-spacing:11.808000px;}
.ws1e_c00045{word-spacing:11.880000px;}
.ws10_c00045{word-spacing:14.760000px;}
.ws11_c00045{word-spacing:15.120000px;}
.ws27_c00045{word-spacing:18.288000px;}
.ws31_c00045{word-spacing:18.720000px;}
.ws2f_c00045{word-spacing:19.008000px;}
.ws30_c00045{word-spacing:19.080000px;}
.ws38_c00045{word-spacing:21.763440px;}
.ws37_c00045{word-spacing:21.823560px;}
.wsd_c00045{word-spacing:22.248000px;}
.ws16_c00045{word-spacing:24.408000px;}
.ws17_c00045{word-spacing:24.480000px;}
._5_c00045{margin-left:-6.480000px;}
._1_c00045{margin-left:-1.103040px;}
._4_c00045{width:1.085760px;}
._0_c00045{width:2.880000px;}
._7_c00045{width:4.870080px;}
._8_c00045{width:5.927040px;}
._3_c00045{width:10.592640px;}
._6_c00045{width:11.638080px;}
._2_c00045{width:15.840000px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs3_c00045{font-size:38.880000px;}
.fs2_c00045{font-size:47.880000px;}
.fs0_c00045{font-size:54.000000px;}
.fs4_c00045{font-size:60.120000px;}
.fs1_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y28_c00045{bottom:57.240000px;}
.y27_c00045{bottom:115.020000px;}
.y26_c00045{bottom:132.210000px;}
.y25_c00045{bottom:144.261180px;}
.y24_c00045{bottom:161.545680px;}
.y23_c00045{bottom:183.960000px;}
.y22_c00045{bottom:201.240000px;}
.y21_c00045{bottom:218.520000px;}
.y29_c00045{bottom:231.210000px;}
.y20_c00045{bottom:272.070000px;}
.y1f_c00045{bottom:303.120000px;}
.y1e_c00045{bottom:334.170000px;}
.y1d_c00045{bottom:365.220000px;}
.y1c_c00045{bottom:396.270000px;}
.y1b_c00045{bottom:427.320000px;}
.y1a_c00045{bottom:458.370000px;}
.y19_c00045{bottom:489.420000px;}
.y18_c00045{bottom:520.470000px;}
.y17_c00045{bottom:551.520000px;}
.y16_c00045{bottom:582.570000px;}
.y15_c00045{bottom:613.620000px;}
.y14_c00045{bottom:644.670000px;}
.y13_c00045{bottom:675.720000px;}
.y12_c00045{bottom:706.770000px;}
.y11_c00045{bottom:737.820000px;}
.y10_c00045{bottom:768.870000px;}
.yf_c00045{bottom:799.920000px;}
.ye_c00045{bottom:830.970000px;}
.yd_c00045{bottom:861.930000px;}
.yc_c00045{bottom:892.980000px;}
.yb_c00045{bottom:924.030000px;}
.ya_c00045{bottom:955.080000px;}
.y9_c00045{bottom:986.130000px;}
.y8_c00045{bottom:1017.180000px;}
.y7_c00045{bottom:1048.230000px;}
.y6_c00045{bottom:1079.280000px;}
.y5_c00045{bottom:1110.330000px;}
.y4_c00045{bottom:1131.030000px;}
.y3_c00045{bottom:1150.915500px;}
.y2_c00045{bottom:1166.400000px;}
.y1_c00045{bottom:1197.450000px;}
.h5_c00045{height:38.158594px;}
.h2_c00045{height:52.998047px;}
.h6_c00045{height:59.004492px;}
.h3_c00045{height:70.664062px;}
.h4_c00045{height:73.991602px;}
.h0_c00045{height:1262.880000px;}
.h1_c00045{height:1263.000000px;}
.w0_c00045{width:893.070000px;}
.w1_c00045{width:893.250000px;}
.x0_c00045{left:0.000000px;}
.x2_c00045{left:127.620000px;}
.x1_c00045{left:446.580000px;}
@media print{
.v1_c00045{vertical-align:-55.056000pt;}
.v3_c00045{vertical-align:-18.560000pt;}
.v0_c00045{vertical-align:0.000000pt;}
.v2_c00045{vertical-align:24.000000pt;}
.ls13_c00045{letter-spacing:-0.384000pt;}
.ls12_c00045{letter-spacing:-0.320000pt;}
.ls14_c00045{letter-spacing:-0.256000pt;}
.ls11_c00045{letter-spacing:-0.192000pt;}
.ls16_c00045{letter-spacing:-0.160320pt;}
.ls19_c00045{letter-spacing:-0.106880pt;}
.ls15_c00045{letter-spacing:-0.064000pt;}
.ls17_c00045{letter-spacing:-0.053440pt;}
.lsf_c00045{letter-spacing:0.000000pt;}
.ls1_c00045{letter-spacing:0.064000pt;}
.lsd_c00045{letter-spacing:0.106880pt;}
.ls5_c00045{letter-spacing:0.128000pt;}
.ls18_c00045{letter-spacing:0.160320pt;}
.ls10_c00045{letter-spacing:0.170240pt;}
.ls2_c00045{letter-spacing:0.320000pt;}
.ls8_c00045{letter-spacing:1.920000pt;}
.ls4_c00045{letter-spacing:2.240000pt;}
.ls3_c00045{letter-spacing:2.579200pt;}
.lsb_c00045{letter-spacing:3.840000pt;}
.ls9_c00045{letter-spacing:4.160000pt;}
.lsa_c00045{letter-spacing:5.440000pt;}
.lse_c00045{letter-spacing:5.504320pt;}
.ls6_c00045{letter-spacing:5.760000pt;}
.ls7_c00045{letter-spacing:10.560000pt;}
.lsc_c00045{letter-spacing:16.960000pt;}
.ls0_c00045{letter-spacing:284.016000pt;}
.ws2_c00045{word-spacing:-16.128000pt;}
.ws7_c00045{word-spacing:-16.064000pt;}
.ws0_c00045{word-spacing:-16.000000pt;}
.ws6_c00045{word-spacing:-15.936000pt;}
.ws3_c00045{word-spacing:-15.808000pt;}
.ws5_c00045{word-spacing:-15.744000pt;}
.ws4_c00045{word-spacing:-15.616000pt;}
.ws9_c00045{word-spacing:-13.520320pt;}
.wsa_c00045{word-spacing:-13.306560pt;}
.ws1_c00045{word-spacing:-10.810240pt;}
.ws8_c00045{word-spacing:-8.640000pt;}
.ws3a_c00045{word-spacing:-0.374080pt;}
.ws2b_c00045{word-spacing:-0.320000pt;}
.wsc_c00045{word-spacing:-0.144000pt;}
.ws2c_c00045{word-spacing:-0.128000pt;}
.ws24_c00045{word-spacing:-0.064000pt;}
.ws32_c00045{word-spacing:-0.053440pt;}
.wsb_c00045{word-spacing:0.000000pt;}
.ws39_c00045{word-spacing:0.160320pt;}
.wse_c00045{word-spacing:0.256000pt;}
.ws33_c00045{word-spacing:0.267200pt;}
.ws13_c00045{word-spacing:0.320000pt;}
.wsf_c00045{word-spacing:0.576000pt;}
.ws25_c00045{word-spacing:0.896000pt;}
.ws26_c00045{word-spacing:0.960000pt;}
.ws1a_c00045{word-spacing:1.600000pt;}
.ws21_c00045{word-spacing:1.856000pt;}
.ws20_c00045{word-spacing:1.920000pt;}
.ws15_c00045{word-spacing:2.176000pt;}
.ws14_c00045{word-spacing:2.496000pt;}
.ws1f_c00045{word-spacing:2.816000pt;}
.ws2a_c00045{word-spacing:3.200000pt;}
.ws2e_c00045{word-spacing:3.776000pt;}
.ws2d_c00045{word-spacing:3.840000pt;}
.ws23_c00045{word-spacing:4.096000pt;}
.ws22_c00045{word-spacing:4.160000pt;}
.ws19_c00045{word-spacing:5.120000pt;}
.ws35_c00045{word-spacing:5.344000pt;}
.ws28_c00045{word-spacing:5.440000pt;}
.ws34_c00045{word-spacing:5.557760pt;}
.ws36_c00045{word-spacing:5.611200pt;}
.ws1c_c00045{word-spacing:5.696000pt;}
.ws1b_c00045{word-spacing:5.760000pt;}
.ws29_c00045{word-spacing:6.336000pt;}
.ws18_c00045{word-spacing:9.536000pt;}
.ws12_c00045{word-spacing:9.600000pt;}
.ws1d_c00045{word-spacing:10.496000pt;}
.ws1e_c00045{word-spacing:10.560000pt;}
.ws10_c00045{word-spacing:13.120000pt;}
.ws11_c00045{word-spacing:13.440000pt;}
.ws27_c00045{word-spacing:16.256000pt;}
.ws31_c00045{word-spacing:16.640000pt;}
.ws2f_c00045{word-spacing:16.896000pt;}
.ws30_c00045{word-spacing:16.960000pt;}
.ws38_c00045{word-spacing:19.345280pt;}
.ws37_c00045{word-spacing:19.398720pt;}
.wsd_c00045{word-spacing:19.776000pt;}
.ws16_c00045{word-spacing:21.696000pt;}
.ws17_c00045{word-spacing:21.760000pt;}
._5_c00045{margin-left:-5.760000pt;}
._1_c00045{margin-left:-0.980480pt;}
._4_c00045{width:0.965120pt;}
._0_c00045{width:2.560000pt;}
._7_c00045{width:4.328960pt;}
._8_c00045{width:5.268480pt;}
._3_c00045{width:9.415680pt;}
._6_c00045{width:10.344960pt;}
._2_c00045{width:14.080000pt;}
.fs3_c00045{font-size:34.560000pt;}
.fs2_c00045{font-size:42.560000pt;}
.fs0_c00045{font-size:48.000000pt;}
.fs4_c00045{font-size:53.440000pt;}
.fs1_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y28_c00045{bottom:50.880000pt;}
.y27_c00045{bottom:102.240000pt;}
.y26_c00045{bottom:117.520000pt;}
.y25_c00045{bottom:128.232160pt;}
.y24_c00045{bottom:143.596160pt;}
.y23_c00045{bottom:163.520000pt;}
.y22_c00045{bottom:178.880000pt;}
.y21_c00045{bottom:194.240000pt;}
.y29_c00045{bottom:205.520000pt;}
.y20_c00045{bottom:241.840000pt;}
.y1f_c00045{bottom:269.440000pt;}
.y1e_c00045{bottom:297.040000pt;}
.y1d_c00045{bottom:324.640000pt;}
.y1c_c00045{bottom:352.240000pt;}
.y1b_c00045{bottom:379.840000pt;}
.y1a_c00045{bottom:407.440000pt;}
.y19_c00045{bottom:435.040000pt;}
.y18_c00045{bottom:462.640000pt;}
.y17_c00045{bottom:490.240000pt;}
.y16_c00045{bottom:517.840000pt;}
.y15_c00045{bottom:545.440000pt;}
.y14_c00045{bottom:573.040000pt;}
.y13_c00045{bottom:600.640000pt;}
.y12_c00045{bottom:628.240000pt;}
.y11_c00045{bottom:655.840000pt;}
.y10_c00045{bottom:683.440000pt;}
.yf_c00045{bottom:711.040000pt;}
.ye_c00045{bottom:738.640000pt;}
.yd_c00045{bottom:766.160000pt;}
.yc_c00045{bottom:793.760000pt;}
.yb_c00045{bottom:821.360000pt;}
.ya_c00045{bottom:848.960000pt;}
.y9_c00045{bottom:876.560000pt;}
.y8_c00045{bottom:904.160000pt;}
.y7_c00045{bottom:931.760000pt;}
.y6_c00045{bottom:959.360000pt;}
.y5_c00045{bottom:986.960000pt;}
.y4_c00045{bottom:1005.360000pt;}
.y3_c00045{bottom:1023.036000pt;}
.y2_c00045{bottom:1036.800000pt;}
.y1_c00045{bottom:1064.400000pt;}
.h5_c00045{height:33.918750pt;}
.h2_c00045{height:47.109375pt;}
.h6_c00045{height:52.448437pt;}
.h3_c00045{height:62.812500pt;}
.h4_c00045{height:65.770312pt;}
.h0_c00045{height:1122.560000pt;}
.h1_c00045{height:1122.666667pt;}
.w0_c00045{width:793.840000pt;}
.w1_c00045{width:794.000000pt;}
.x0_c00045{left:0.000000pt;}
.x2_c00045{left:113.440000pt;}
.x1_c00045{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c92c80372ac16b48c5395b3.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00046{vertical-align:-20.880000px;}
.v0_c00046{vertical-align:0.000000px;}
.v1_c00046{vertical-align:27.000000px;}
.ls12_c00046{letter-spacing:-0.288000px;}
.ls19_c00046{letter-spacing:-0.240480px;}
.ls13_c00046{letter-spacing:-0.216000px;}
.ls16_c00046{letter-spacing:-0.180360px;}
.ls18_c00046{letter-spacing:-0.120240px;}
.ls10_c00046{letter-spacing:-0.108000px;}
.ls17_c00046{letter-spacing:-0.060120px;}
.lsf_c00046{letter-spacing:0.000000px;}
.ls2_c00046{letter-spacing:0.072000px;}
.lse_c00046{letter-spacing:0.120240px;}
.ls4_c00046{letter-spacing:0.144000px;}
.ls15_c00046{letter-spacing:0.180360px;}
.ls14_c00046{letter-spacing:0.191520px;}
.ls11_c00046{letter-spacing:0.360000px;}
.lsc_c00046{letter-spacing:0.781560px;}
.ls6_c00046{letter-spacing:1.440000px;}
.ls8_c00046{letter-spacing:2.160000px;}
.ls7_c00046{letter-spacing:2.880000px;}
.ls5_c00046{letter-spacing:3.240000px;}
.lsd_c00046{letter-spacing:4.028040px;}
.lsb_c00046{letter-spacing:5.040000px;}
.ls0_c00046{letter-spacing:7.920000px;}
.ls3_c00046{letter-spacing:15.480000px;}
.lsa_c00046{letter-spacing:18.720000px;}
.ls9_c00046{letter-spacing:23.040000px;}
.ls1_c00046{letter-spacing:24.480000px;}
.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:-18.144000px;}
.ws3_c00046{word-spacing:-18.072000px;}
.ws1_c00046{word-spacing:-18.000000px;}
.ws2_c00046{word-spacing:-17.784000px;}
.ws6_c00046{word-spacing:-15.030000px;}
.ws7_c00046{word-spacing:-14.969880px;}
.ws8_c00046{word-spacing:-14.789520px;}
.ws4_c00046{word-spacing:-12.161520px;}
.ws5_c00046{word-spacing:-9.720000px;}
.ws13_c00046{word-spacing:-0.504000px;}
.ws10_c00046{word-spacing:-0.360000px;}
.ws1f_c00046{word-spacing:-0.144000px;}
.ws3e_c00046{word-spacing:-0.120240px;}
.ws15_c00046{word-spacing:-0.072000px;}
.ws3d_c00046{word-spacing:-0.060120px;}
.ws9_c00046{word-spacing:0.000000px;}
.wsb_c00046{word-spacing:0.162000px;}
.wsa_c00046{word-spacing:0.270000px;}
.ws29_c00046{word-spacing:0.288000px;}
.ws36_c00046{word-spacing:0.661320px;}
.wse_c00046{word-spacing:1.008000px;}
.wsd_c00046{word-spacing:1.080000px;}
.ws1e_c00046{word-spacing:1.368000px;}
.ws1d_c00046{word-spacing:1.440000px;}
.ws23_c00046{word-spacing:2.088000px;}
.ws24_c00046{word-spacing:2.160000px;}
.wsc_c00046{word-spacing:2.520000px;}
.ws22_c00046{word-spacing:2.880000px;}
.ws1c_c00046{word-spacing:3.168000px;}
.ws1b_c00046{word-spacing:3.240000px;}
.ws37_c00046{word-spacing:3.847680px;}
.ws39_c00046{word-spacing:4.088160px;}
.ws38_c00046{word-spacing:4.208400px;}
.ws20_c00046{word-spacing:4.896000px;}
.ws34_c00046{word-spacing:4.968000px;}
.ws21_c00046{word-spacing:5.040000px;}
.ws2a_c00046{word-spacing:5.400000px;}
.ws3b_c00046{word-spacing:6.973920px;}
.ws3a_c00046{word-spacing:7.394760px;}
.wsf_c00046{word-spacing:8.280000px;}
.ws25_c00046{word-spacing:8.568000px;}
.ws3c_c00046{word-spacing:9.258480px;}
.ws35_c00046{word-spacing:11.160000px;}
.ws33_c00046{word-spacing:11.448000px;}
.ws32_c00046{word-spacing:11.520000px;}
.ws31_c00046{word-spacing:11.808000px;}
.ws30_c00046{word-spacing:11.880000px;}
.ws1a_c00046{word-spacing:14.328000px;}
.ws19_c00046{word-spacing:14.688000px;}
.ws16_c00046{word-spacing:15.408000px;}
.ws14_c00046{word-spacing:15.480000px;}
.ws17_c00046{word-spacing:17.208000px;}
.ws18_c00046{word-spacing:17.280000px;}
.ws2f_c00046{word-spacing:18.576000px;}
.ws2d_c00046{word-spacing:18.648000px;}
.ws2e_c00046{word-spacing:18.720000px;}
.ws2b_c00046{word-spacing:22.968000px;}
.ws2c_c00046{word-spacing:23.040000px;}
.ws11_c00046{word-spacing:24.408000px;}
.ws12_c00046{word-spacing:24.768000px;}
.ws26_c00046{word-spacing:34.200000px;}
.ws27_c00046{word-spacing:34.416000px;}
.ws28_c00046{word-spacing:34.560000px;}
._1_c00046{margin-left:-1.058400px;}
._0_c00046{width:1.220400px;}
._3_c00046{width:2.426400px;}
._5_c00046{width:4.892400px;}
._4_c00046{width:11.016000px;}
._2_c00046{width:15.696000px;}
.fc0_c00046{color:rgb(0,0,0);}
.fs3_c00046{font-size:38.880000px;}
.fs2_c00046{font-size:47.880000px;}
.fs0_c00046{font-size:54.000000px;}
.fs4_c00046{font-size:60.120000px;}
.fs1_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y29_c00046{bottom:57.240000px;}
.y28_c00046{bottom:115.020000px;}
.y27_c00046{bottom:126.972180px;}
.y26_c00046{bottom:144.256680px;}
.y25_c00046{bottom:161.541180px;}
.y24_c00046{bottom:178.735500px;}
.y23_c00046{bottom:201.240000px;}
.y2a_c00046{bottom:213.930000px;}
.y22_c00046{bottom:251.370000px;}
.y21_c00046{bottom:282.420000px;}
.y20_c00046{bottom:313.470000px;}
.y1f_c00046{bottom:344.520000px;}
.y1e_c00046{bottom:375.570000px;}
.y1d_c00046{bottom:406.620000px;}
.y1c_c00046{bottom:437.670000px;}
.y1b_c00046{bottom:468.720000px;}
.y1a_c00046{bottom:499.770000px;}
.y19_c00046{bottom:530.820000px;}
.y18_c00046{bottom:561.870000px;}
.y17_c00046{bottom:592.920000px;}
.y16_c00046{bottom:623.970000px;}
.y15_c00046{bottom:655.020000px;}
.y14_c00046{bottom:675.720000px;}
.y13_c00046{bottom:706.770000px;}
.y12_c00046{bottom:737.820000px;}
.y11_c00046{bottom:768.870000px;}
.y10_c00046{bottom:799.920000px;}
.yf_c00046{bottom:830.970000px;}
.ye_c00046{bottom:861.930000px;}
.yd_c00046{bottom:892.980000px;}
.yc_c00046{bottom:924.030000px;}
.yb_c00046{bottom:955.080000px;}
.ya_c00046{bottom:986.130000px;}
.y9_c00046{bottom:1017.180000px;}
.y8_c00046{bottom:1048.230000px;}
.y7_c00046{bottom:1079.280000px;}
.y6_c00046{bottom:1110.330000px;}
.y5_c00046{bottom:1131.030000px;}
.y4_c00046{bottom:1150.920000px;}
.y3_c00046{bottom:1166.404500px;}
.y2_c00046{bottom:1181.970000px;}
.y1_c00046{bottom:1197.450000px;}
.h6_c00046{height:38.158594px;}
.h3_c00046{height:52.971680px;}
.h2_c00046{height:52.998047px;}
.h7_c00046{height:59.004492px;}
.h4_c00046{height:70.664062px;}
.h5_c00046{height:73.991602px;}
.h0_c00046{height:1262.880000px;}
.h1_c00046{height:1263.000000px;}
.w0_c00046{width:893.070000px;}
.w1_c00046{width:893.250000px;}
.x0_c00046{left:0.000000px;}
.x3_c00046{left:127.620000px;}
.x2_c00046{left:425.160000px;}
.x1_c00046{left:446.580000px;}
.x4_c00046{left:747.540000px;}
@media print{
.v2_c00046{vertical-align:-18.560000pt;}
.v0_c00046{vertical-align:0.000000pt;}
.v1_c00046{vertical-align:24.000000pt;}
.ls12_c00046{letter-spacing:-0.256000pt;}
.ls19_c00046{letter-spacing:-0.213760pt;}
.ls13_c00046{letter-spacing:-0.192000pt;}
.ls16_c00046{letter-spacing:-0.160320pt;}
.ls18_c00046{letter-spacing:-0.106880pt;}
.ls10_c00046{letter-spacing:-0.096000pt;}
.ls17_c00046{letter-spacing:-0.053440pt;}
.lsf_c00046{letter-spacing:0.000000pt;}
.ls2_c00046{letter-spacing:0.064000pt;}
.lse_c00046{letter-spacing:0.106880pt;}
.ls4_c00046{letter-spacing:0.128000pt;}
.ls15_c00046{letter-spacing:0.160320pt;}
.ls14_c00046{letter-spacing:0.170240pt;}
.ls11_c00046{letter-spacing:0.320000pt;}
.lsc_c00046{letter-spacing:0.694720pt;}
.ls6_c00046{letter-spacing:1.280000pt;}
.ls8_c00046{letter-spacing:1.920000pt;}
.ls7_c00046{letter-spacing:2.560000pt;}
.ls5_c00046{letter-spacing:2.880000pt;}
.lsd_c00046{letter-spacing:3.580480pt;}
.lsb_c00046{letter-spacing:4.480000pt;}
.ls0_c00046{letter-spacing:7.040000pt;}
.ls3_c00046{letter-spacing:13.760000pt;}
.lsa_c00046{letter-spacing:16.640000pt;}
.ls9_c00046{letter-spacing:20.480000pt;}
.ls1_c00046{letter-spacing:21.760000pt;}
.ws0_c00046{word-spacing:-16.128000pt;}
.ws3_c00046{word-spacing:-16.064000pt;}
.ws1_c00046{word-spacing:-16.000000pt;}
.ws2_c00046{word-spacing:-15.808000pt;}
.ws6_c00046{word-spacing:-13.360000pt;}
.ws7_c00046{word-spacing:-13.306560pt;}
.ws8_c00046{word-spacing:-13.146240pt;}
.ws4_c00046{word-spacing:-10.810240pt;}
.ws5_c00046{word-spacing:-8.640000pt;}
.ws13_c00046{word-spacing:-0.448000pt;}
.ws10_c00046{word-spacing:-0.320000pt;}
.ws1f_c00046{word-spacing:-0.128000pt;}
.ws3e_c00046{word-spacing:-0.106880pt;}
.ws15_c00046{word-spacing:-0.064000pt;}
.ws3d_c00046{word-spacing:-0.053440pt;}
.ws9_c00046{word-spacing:0.000000pt;}
.wsb_c00046{word-spacing:0.144000pt;}
.wsa_c00046{word-spacing:0.240000pt;}
.ws29_c00046{word-spacing:0.256000pt;}
.ws36_c00046{word-spacing:0.587840pt;}
.wse_c00046{word-spacing:0.896000pt;}
.wsd_c00046{word-spacing:0.960000pt;}
.ws1e_c00046{word-spacing:1.216000pt;}
.ws1d_c00046{word-spacing:1.280000pt;}
.ws23_c00046{word-spacing:1.856000pt;}
.ws24_c00046{word-spacing:1.920000pt;}
.wsc_c00046{word-spacing:2.240000pt;}
.ws22_c00046{word-spacing:2.560000pt;}
.ws1c_c00046{word-spacing:2.816000pt;}
.ws1b_c00046{word-spacing:2.880000pt;}
.ws37_c00046{word-spacing:3.420160pt;}
.ws39_c00046{word-spacing:3.633920pt;}
.ws38_c00046{word-spacing:3.740800pt;}
.ws20_c00046{word-spacing:4.352000pt;}
.ws34_c00046{word-spacing:4.416000pt;}
.ws21_c00046{word-spacing:4.480000pt;}
.ws2a_c00046{word-spacing:4.800000pt;}
.ws3b_c00046{word-spacing:6.199040pt;}
.ws3a_c00046{word-spacing:6.573120pt;}
.wsf_c00046{word-spacing:7.360000pt;}
.ws25_c00046{word-spacing:7.616000pt;}
.ws3c_c00046{word-spacing:8.229760pt;}
.ws35_c00046{word-spacing:9.920000pt;}
.ws33_c00046{word-spacing:10.176000pt;}
.ws32_c00046{word-spacing:10.240000pt;}
.ws31_c00046{word-spacing:10.496000pt;}
.ws30_c00046{word-spacing:10.560000pt;}
.ws1a_c00046{word-spacing:12.736000pt;}
.ws19_c00046{word-spacing:13.056000pt;}
.ws16_c00046{word-spacing:13.696000pt;}
.ws14_c00046{word-spacing:13.760000pt;}
.ws17_c00046{word-spacing:15.296000pt;}
.ws18_c00046{word-spacing:15.360000pt;}
.ws2f_c00046{word-spacing:16.512000pt;}
.ws2d_c00046{word-spacing:16.576000pt;}
.ws2e_c00046{word-spacing:16.640000pt;}
.ws2b_c00046{word-spacing:20.416000pt;}
.ws2c_c00046{word-spacing:20.480000pt;}
.ws11_c00046{word-spacing:21.696000pt;}
.ws12_c00046{word-spacing:22.016000pt;}
.ws26_c00046{word-spacing:30.400000pt;}
.ws27_c00046{word-spacing:30.592000pt;}
.ws28_c00046{word-spacing:30.720000pt;}
._1_c00046{margin-left:-0.940800pt;}
._0_c00046{width:1.084800pt;}
._3_c00046{width:2.156800pt;}
._5_c00046{width:4.348800pt;}
._4_c00046{width:9.792000pt;}
._2_c00046{width:13.952000pt;}
.fs3_c00046{font-size:34.560000pt;}
.fs2_c00046{font-size:42.560000pt;}
.fs0_c00046{font-size:48.000000pt;}
.fs4_c00046{font-size:53.440000pt;}
.fs1_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y29_c00046{bottom:50.880000pt;}
.y28_c00046{bottom:102.240000pt;}
.y27_c00046{bottom:112.864160pt;}
.y26_c00046{bottom:128.228160pt;}
.y25_c00046{bottom:143.592160pt;}
.y24_c00046{bottom:158.876000pt;}
.y23_c00046{bottom:178.880000pt;}
.y2a_c00046{bottom:190.160000pt;}
.y22_c00046{bottom:223.440000pt;}
.y21_c00046{bottom:251.040000pt;}
.y20_c00046{bottom:278.640000pt;}
.y1f_c00046{bottom:306.240000pt;}
.y1e_c00046{bottom:333.840000pt;}
.y1d_c00046{bottom:361.440000pt;}
.y1c_c00046{bottom:389.040000pt;}
.y1b_c00046{bottom:416.640000pt;}
.y1a_c00046{bottom:444.240000pt;}
.y19_c00046{bottom:471.840000pt;}
.y18_c00046{bottom:499.440000pt;}
.y17_c00046{bottom:527.040000pt;}
.y16_c00046{bottom:554.640000pt;}
.y15_c00046{bottom:582.240000pt;}
.y14_c00046{bottom:600.640000pt;}
.y13_c00046{bottom:628.240000pt;}
.y12_c00046{bottom:655.840000pt;}
.y11_c00046{bottom:683.440000pt;}
.y10_c00046{bottom:711.040000pt;}
.yf_c00046{bottom:738.640000pt;}
.ye_c00046{bottom:766.160000pt;}
.yd_c00046{bottom:793.760000pt;}
.yc_c00046{bottom:821.360000pt;}
.yb_c00046{bottom:848.960000pt;}
.ya_c00046{bottom:876.560000pt;}
.y9_c00046{bottom:904.160000pt;}
.y8_c00046{bottom:931.760000pt;}
.y7_c00046{bottom:959.360000pt;}
.y6_c00046{bottom:986.960000pt;}
.y5_c00046{bottom:1005.360000pt;}
.y4_c00046{bottom:1023.040000pt;}
.y3_c00046{bottom:1036.804000pt;}
.y2_c00046{bottom:1050.640000pt;}
.y1_c00046{bottom:1064.400000pt;}
.h6_c00046{height:33.918750pt;}
.h3_c00046{height:47.085938pt;}
.h2_c00046{height:47.109375pt;}
.h7_c00046{height:52.448437pt;}
.h4_c00046{height:62.812500pt;}
.h5_c00046{height:65.770312pt;}
.h0_c00046{height:1122.560000pt;}
.h1_c00046{height:1122.666667pt;}
.w0_c00046{width:793.840000pt;}
.w1_c00046{width:794.000000pt;}
.x0_c00046{left:0.000000pt;}
.x3_c00046{left:113.440000pt;}
.x2_c00046{left:377.920000pt;}
.x1_c00046{left:396.960000pt;}
.x4_c00046{left:664.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_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_18a6fb7daf1c95562118e29b.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_21657a03d555e8be87cf96b8.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;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_c00047;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.432129;font-style: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);}
.v1_c00047{vertical-align:-61.938000px;}
.v0_c00047{vertical-align:0.000000px;}
.lse_c00047{letter-spacing:-0.360000px;}
.lsc_c00047{letter-spacing:-0.288000px;}
.lsd_c00047{letter-spacing:-0.216000px;}
.lsa_c00047{letter-spacing:0.000000px;}
.ls1_c00047{letter-spacing:0.072000px;}
.lsb_c00047{letter-spacing:0.144000px;}
.ls7_c00047{letter-spacing:3.607200px;}
.ls8_c00047{letter-spacing:6.120000px;}
.ls6_c00047{letter-spacing:7.560000px;}
.ls4_c00047{letter-spacing:7.912800px;}
.ls5_c00047{letter-spacing:7.920000px;}
.ls3_c00047{letter-spacing:25.560000px;}
.ls9_c00047{letter-spacing:29.520000px;}
.ls2_c00047{letter-spacing:30.744000px;}
.ls0_c00047{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00047{word-spacing:-18.144000px;}
.ws3_c00047{word-spacing:-18.072000px;}
.ws0_c00047{word-spacing:-18.000000px;}
.ws4_c00047{word-spacing:-17.784000px;}
.ws1_c00047{word-spacing:-17.712000px;}
.ws24_c00047{word-spacing:-0.360000px;}
.ws6_c00047{word-spacing:-0.162000px;}
.ws13_c00047{word-spacing:-0.144000px;}
.ws9_c00047{word-spacing:-0.072000px;}
.ws5_c00047{word-spacing:0.000000px;}
.ws29_c00047{word-spacing:0.288000px;}
.ws26_c00047{word-spacing:0.360000px;}
.ws1b_c00047{word-spacing:1.008000px;}
.ws12_c00047{word-spacing:1.728000px;}
.ws2b_c00047{word-spacing:2.088000px;}
.ws8_c00047{word-spacing:2.160000px;}
.ws7_c00047{word-spacing:2.520000px;}
.wsa_c00047{word-spacing:2.736000px;}
.wsb_c00047{word-spacing:2.808000px;}
.wsc_c00047{word-spacing:2.880000px;}
.ws16_c00047{word-spacing:3.240000px;}
.ws23_c00047{word-spacing:3.528000px;}
.ws22_c00047{word-spacing:3.600000px;}
.ws10_c00047{word-spacing:3.960000px;}
.ws11_c00047{word-spacing:4.176000px;}
.wsf_c00047{word-spacing:4.248000px;}
.ws15_c00047{word-spacing:5.328000px;}
.ws1f_c00047{word-spacing:5.400000px;}
.ws14_c00047{word-spacing:5.760000px;}
.ws28_c00047{word-spacing:6.048000px;}
.ws27_c00047{word-spacing:6.120000px;}
.ws1c_c00047{word-spacing:7.848000px;}
.wse_c00047{word-spacing:9.648000px;}
.ws19_c00047{word-spacing:9.720000px;}
.wsd_c00047{word-spacing:10.800000px;}
.ws25_c00047{word-spacing:16.848000px;}
.ws20_c00047{word-spacing:19.368000px;}
.ws21_c00047{word-spacing:19.440000px;}
.ws1e_c00047{word-spacing:20.808000px;}
.ws1d_c00047{word-spacing:20.880000px;}
.ws17_c00047{word-spacing:23.760000px;}
.ws1a_c00047{word-spacing:25.560000px;}
.ws2a_c00047{word-spacing:29.520000px;}
.ws18_c00047{word-spacing:35.568000px;}
._0_c00047{margin-left:-1.080000px;}
._1_c00047{width:1.008000px;}
._2_c00047{width:2.592000px;}
._3_c00047{width:3.600000px;}
._6_c00047{width:5.472000px;}
._7_c00047{width:19.296000px;}
._5_c00047{width:20.808000px;}
._4_c00047{width:25.776000px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs0_c00047{font-size:54.000000px;}
.fs1_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y25_c00047{bottom:57.240000px;}
.y24_c00047{bottom:147.870000px;}
.y23_c00047{bottom:178.920000px;}
.y22_c00047{bottom:209.970000px;}
.y21_c00047{bottom:241.020000px;}
.y20_c00047{bottom:272.070000px;}
.y1f_c00047{bottom:303.120000px;}
.y1e_c00047{bottom:334.170000px;}
.y1d_c00047{bottom:365.220000px;}
.y1c_c00047{bottom:396.270000px;}
.y1b_c00047{bottom:427.320000px;}
.y1a_c00047{bottom:458.370000px;}
.y19_c00047{bottom:489.420000px;}
.y18_c00047{bottom:520.470000px;}
.y17_c00047{bottom:551.520000px;}
.y16_c00047{bottom:582.570000px;}
.y15_c00047{bottom:613.620000px;}
.y14_c00047{bottom:644.670000px;}
.y13_c00047{bottom:675.720000px;}
.y12_c00047{bottom:706.770000px;}
.y11_c00047{bottom:737.820000px;}
.y10_c00047{bottom:768.870000px;}
.yf_c00047{bottom:799.920000px;}
.ye_c00047{bottom:830.970000px;}
.yd_c00047{bottom:861.930000px;}
.yc_c00047{bottom:892.980000px;}
.yb_c00047{bottom:924.030000px;}
.ya_c00047{bottom:955.080000px;}
.y9_c00047{bottom:986.130000px;}
.y8_c00047{bottom:1017.180000px;}
.y7_c00047{bottom:1048.230000px;}
.y6_c00047{bottom:1079.280000px;}
.y5_c00047{bottom:1110.330000px;}
.y4_c00047{bottom:1131.030000px;}
.y3_c00047{bottom:1150.915500px;}
.y2_c00047{bottom:1166.400000px;}
.y1_c00047{bottom:1197.450000px;}
.h2_c00047{height:52.998047px;}
.h3_c00047{height:70.664062px;}
.h4_c00047{height:75.093750px;}
.h0_c00047{height:1262.880000px;}
.h1_c00047{height:1263.000000px;}
.w0_c00047{width:893.070000px;}
.w1_c00047{width:893.250000px;}
.x0_c00047{left:0.000000px;}
.x2_c00047{left:127.620000px;}
.x3_c00047{left:154.620000px;}
.x4_c00047{left:181.620000px;}
.x1_c00047{left:446.580000px;}
@media print{
.v1_c00047{vertical-align:-55.056000pt;}
.v0_c00047{vertical-align:0.000000pt;}
.lse_c00047{letter-spacing:-0.320000pt;}
.lsc_c00047{letter-spacing:-0.256000pt;}
.lsd_c00047{letter-spacing:-0.192000pt;}
.lsa_c00047{letter-spacing:0.000000pt;}
.ls1_c00047{letter-spacing:0.064000pt;}
.lsb_c00047{letter-spacing:0.128000pt;}
.ls7_c00047{letter-spacing:3.206400pt;}
.ls8_c00047{letter-spacing:5.440000pt;}
.ls6_c00047{letter-spacing:6.720000pt;}
.ls4_c00047{letter-spacing:7.033600pt;}
.ls5_c00047{letter-spacing:7.040000pt;}
.ls3_c00047{letter-spacing:22.720000pt;}
.ls9_c00047{letter-spacing:26.240000pt;}
.ls2_c00047{letter-spacing:27.328000pt;}
.ls0_c00047{letter-spacing:284.016000pt;}
.ws2_c00047{word-spacing:-16.128000pt;}
.ws3_c00047{word-spacing:-16.064000pt;}
.ws0_c00047{word-spacing:-16.000000pt;}
.ws4_c00047{word-spacing:-15.808000pt;}
.ws1_c00047{word-spacing:-15.744000pt;}
.ws24_c00047{word-spacing:-0.320000pt;}
.ws6_c00047{word-spacing:-0.144000pt;}
.ws13_c00047{word-spacing:-0.128000pt;}
.ws9_c00047{word-spacing:-0.064000pt;}
.ws5_c00047{word-spacing:0.000000pt;}
.ws29_c00047{word-spacing:0.256000pt;}
.ws26_c00047{word-spacing:0.320000pt;}
.ws1b_c00047{word-spacing:0.896000pt;}
.ws12_c00047{word-spacing:1.536000pt;}
.ws2b_c00047{word-spacing:1.856000pt;}
.ws8_c00047{word-spacing:1.920000pt;}
.ws7_c00047{word-spacing:2.240000pt;}
.wsa_c00047{word-spacing:2.432000pt;}
.wsb_c00047{word-spacing:2.496000pt;}
.wsc_c00047{word-spacing:2.560000pt;}
.ws16_c00047{word-spacing:2.880000pt;}
.ws23_c00047{word-spacing:3.136000pt;}
.ws22_c00047{word-spacing:3.200000pt;}
.ws10_c00047{word-spacing:3.520000pt;}
.ws11_c00047{word-spacing:3.712000pt;}
.wsf_c00047{word-spacing:3.776000pt;}
.ws15_c00047{word-spacing:4.736000pt;}
.ws1f_c00047{word-spacing:4.800000pt;}
.ws14_c00047{word-spacing:5.120000pt;}
.ws28_c00047{word-spacing:5.376000pt;}
.ws27_c00047{word-spacing:5.440000pt;}
.ws1c_c00047{word-spacing:6.976000pt;}
.wse_c00047{word-spacing:8.576000pt;}
.ws19_c00047{word-spacing:8.640000pt;}
.wsd_c00047{word-spacing:9.600000pt;}
.ws25_c00047{word-spacing:14.976000pt;}
.ws20_c00047{word-spacing:17.216000pt;}
.ws21_c00047{word-spacing:17.280000pt;}
.ws1e_c00047{word-spacing:18.496000pt;}
.ws1d_c00047{word-spacing:18.560000pt;}
.ws17_c00047{word-spacing:21.120000pt;}
.ws1a_c00047{word-spacing:22.720000pt;}
.ws2a_c00047{word-spacing:26.240000pt;}
.ws18_c00047{word-spacing:31.616000pt;}
._0_c00047{margin-left:-0.960000pt;}
._1_c00047{width:0.896000pt;}
._2_c00047{width:2.304000pt;}
._3_c00047{width:3.200000pt;}
._6_c00047{width:4.864000pt;}
._7_c00047{width:17.152000pt;}
._5_c00047{width:18.496000pt;}
._4_c00047{width:22.912000pt;}
.fs0_c00047{font-size:48.000000pt;}
.fs1_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y25_c00047{bottom:50.880000pt;}
.y24_c00047{bottom:131.440000pt;}
.y23_c00047{bottom:159.040000pt;}
.y22_c00047{bottom:186.640000pt;}
.y21_c00047{bottom:214.240000pt;}
.y20_c00047{bottom:241.840000pt;}
.y1f_c00047{bottom:269.440000pt;}
.y1e_c00047{bottom:297.040000pt;}
.y1d_c00047{bottom:324.640000pt;}
.y1c_c00047{bottom:352.240000pt;}
.y1b_c00047{bottom:379.840000pt;}
.y1a_c00047{bottom:407.440000pt;}
.y19_c00047{bottom:435.040000pt;}
.y18_c00047{bottom:462.640000pt;}
.y17_c00047{bottom:490.240000pt;}
.y16_c00047{bottom:517.840000pt;}
.y15_c00047{bottom:545.440000pt;}
.y14_c00047{bottom:573.040000pt;}
.y13_c00047{bottom:600.640000pt;}
.y12_c00047{bottom:628.240000pt;}
.y11_c00047{bottom:655.840000pt;}
.y10_c00047{bottom:683.440000pt;}
.yf_c00047{bottom:711.040000pt;}
.ye_c00047{bottom:738.640000pt;}
.yd_c00047{bottom:766.160000pt;}
.yc_c00047{bottom:793.760000pt;}
.yb_c00047{bottom:821.360000pt;}
.ya_c00047{bottom:848.960000pt;}
.y9_c00047{bottom:876.560000pt;}
.y8_c00047{bottom:904.160000pt;}
.y7_c00047{bottom:931.760000pt;}
.y6_c00047{bottom:959.360000pt;}
.y5_c00047{bottom:986.960000pt;}
.y4_c00047{bottom:1005.360000pt;}
.y3_c00047{bottom:1023.036000pt;}
.y2_c00047{bottom:1036.800000pt;}
.y1_c00047{bottom:1064.400000pt;}
.h2_c00047{height:47.109375pt;}
.h3_c00047{height:62.812500pt;}
.h4_c00047{height:66.750000pt;}
.h0_c00047{height:1122.560000pt;}
.h1_c00047{height:1122.666667pt;}
.w0_c00047{width:793.840000pt;}
.w1_c00047{width:794.000000pt;}
.x0_c00047{left:0.000000pt;}
.x2_c00047{left:113.440000pt;}
.x3_c00047{left:137.440000pt;}
.x4_c00047{left:161.440000pt;}
.x1_c00047{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_489a23af8d9b481cf5ebebd7.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00048{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.lsd_c00048{letter-spacing:-0.360000px;}
.lse_c00048{letter-spacing:-0.288000px;}
.lsb_c00048{letter-spacing:-0.108000px;}
.ls10_c00048{letter-spacing:-0.072000px;}
.lsa_c00048{letter-spacing:0.000000px;}
.ls2_c00048{letter-spacing:0.072000px;}
.lsc_c00048{letter-spacing:0.144000px;}
.lsf_c00048{letter-spacing:0.360000px;}
.ls8_c00048{letter-spacing:1.080000px;}
.ls7_c00048{letter-spacing:1.440000px;}
.ls6_c00048{letter-spacing:1.800000px;}
.ls3_c00048{letter-spacing:3.600000px;}
.ls1_c00048{letter-spacing:7.560000px;}
.ls9_c00048{letter-spacing:7.920000px;}
.ls5_c00048{letter-spacing:20.160000px;}
.ls0_c00048{letter-spacing:24.120000px;}
.ls4_c00048{letter-spacing:53.640000px;}
.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:-18.072000px;}
.ws1_c00048{word-spacing:-18.000000px;}
.ws1c_c00048{word-spacing:-0.432000px;}
.ws28_c00048{word-spacing:-0.360000px;}
.wsc_c00048{word-spacing:-0.144000px;}
.ws12_c00048{word-spacing:-0.072000px;}
.ws2_c00048{word-spacing:0.000000px;}
.ws29_c00048{word-spacing:0.072000px;}
.ws4_c00048{word-spacing:0.162000px;}
.ws2c_c00048{word-spacing:0.216000px;}
.ws3_c00048{word-spacing:0.270000px;}
.ws20_c00048{word-spacing:0.288000px;}
.ws1b_c00048{word-spacing:0.360000px;}
.ws2a_c00048{word-spacing:0.648000px;}
.ws2b_c00048{word-spacing:0.720000px;}
.ws36_c00048{word-spacing:0.936000px;}
.ws35_c00048{word-spacing:1.080000px;}
.ws33_c00048{word-spacing:1.368000px;}
.ws26_c00048{word-spacing:1.728000px;}
.ws24_c00048{word-spacing:1.800000px;}
.ws27_c00048{word-spacing:2.088000px;}
.ws25_c00048{word-spacing:2.160000px;}
.ws37_c00048{word-spacing:2.808000px;}
.ws38_c00048{word-spacing:2.880000px;}
.ws14_c00048{word-spacing:3.528000px;}
.ws13_c00048{word-spacing:3.600000px;}
.ws5_c00048{word-spacing:5.328000px;}
.ws2d_c00048{word-spacing:5.400000px;}
.ws32_c00048{word-spacing:6.336000px;}
.ws30_c00048{word-spacing:6.408000px;}
.ws31_c00048{word-spacing:6.480000px;}
.ws39_c00048{word-spacing:7.776000px;}
.wse_c00048{word-spacing:7.848000px;}
.wsf_c00048{word-spacing:7.920000px;}
.wsa_c00048{word-spacing:9.648000px;}
.ws9_c00048{word-spacing:9.936000px;}
.ws8_c00048{word-spacing:10.008000px;}
.ws19_c00048{word-spacing:13.176000px;}
.ws1a_c00048{word-spacing:13.320000px;}
.ws1d_c00048{word-spacing:15.048000px;}
.ws1e_c00048{word-spacing:15.120000px;}
.ws18_c00048{word-spacing:16.128000px;}
.ws34_c00048{word-spacing:17.928000px;}
.ws2f_c00048{word-spacing:19.368000px;}
.ws2e_c00048{word-spacing:19.440000px;}
.ws22_c00048{word-spacing:20.088000px;}
.ws23_c00048{word-spacing:20.160000px;}
.ws6_c00048{word-spacing:23.616000px;}
.ws7_c00048{word-spacing:23.976000px;}
.wsd_c00048{word-spacing:25.920000px;}
.wsb_c00048{word-spacing:26.280000px;}
.ws10_c00048{word-spacing:28.368000px;}
.ws11_c00048{word-spacing:28.440000px;}
.ws21_c00048{word-spacing:48.888000px;}
.ws1f_c00048{word-spacing:48.960000px;}
.ws17_c00048{word-spacing:53.856000px;}
.ws16_c00048{word-spacing:53.928000px;}
.ws15_c00048{word-spacing:54.000000px;}
._1_c00048{margin-left:-1.058400px;}
._0_c00048{width:1.220400px;}
._6_c00048{width:3.146400px;}
._2_c00048{width:4.464000px;}
._c_c00048{width:5.688000px;}
._d_c00048{width:7.639200px;}
._3_c00048{width:9.482400px;}
._8_c00048{width:12.628800px;}
._9_c00048{width:14.414400px;}
._b_c00048{width:19.274400px;}
._4_c00048{width:25.704000px;}
._5_c00048{width:29.138400px;}
._a_c00048{width:49.680000px;}
._7_c00048{width:53.330400px;}
.fc0_c00048{color:rgb(0,0,0);}
.fs0_c00048{font-size:54.000000px;}
.fs1_c00048{font-size:72.000000px;}
.y0_c00048{bottom:0.000000px;}
.y26_c00048{bottom:57.240000px;}
.y25_c00048{bottom:158.220000px;}
.y24_c00048{bottom:189.270000px;}
.y23_c00048{bottom:220.320000px;}
.y22_c00048{bottom:251.370000px;}
.y21_c00048{bottom:282.420000px;}
.y20_c00048{bottom:313.470000px;}
.y1f_c00048{bottom:344.520000px;}
.y1e_c00048{bottom:375.570000px;}
.y1d_c00048{bottom:406.620000px;}
.y1c_c00048{bottom:437.670000px;}
.y1b_c00048{bottom:468.720000px;}
.y1a_c00048{bottom:499.770000px;}
.y19_c00048{bottom:530.820000px;}
.y18_c00048{bottom:561.870000px;}
.y17_c00048{bottom:592.920000px;}
.y16_c00048{bottom:623.970000px;}
.y15_c00048{bottom:655.020000px;}
.y14_c00048{bottom:686.070000px;}
.y13_c00048{bottom:717.120000px;}
.y12_c00048{bottom:737.820000px;}
.y11_c00048{bottom:768.870000px;}
.y10_c00048{bottom:799.920000px;}
.yf_c00048{bottom:830.970000px;}
.ye_c00048{bottom:861.930000px;}
.yd_c00048{bottom:892.980000px;}
.yc_c00048{bottom:924.030000px;}
.yb_c00048{bottom:955.080000px;}
.ya_c00048{bottom:986.130000px;}
.y9_c00048{bottom:1017.180000px;}
.y8_c00048{bottom:1048.230000px;}
.y7_c00048{bottom:1079.280000px;}
.y6_c00048{bottom:1110.330000px;}
.y5_c00048{bottom:1131.030000px;}
.y4_c00048{bottom:1150.920000px;}
.y3_c00048{bottom:1166.404500px;}
.y2_c00048{bottom:1181.970000px;}
.y1_c00048{bottom:1197.450000px;}
.h3_c00048{height:52.971680px;}
.h2_c00048{height:52.998047px;}
.h4_c00048{height:70.664062px;}
.h0_c00048{height:1262.880000px;}
.h1_c00048{height:1263.000000px;}
.w0_c00048{width:893.070000px;}
.w1_c00048{width:893.250000px;}
.x0_c00048{left:0.000000px;}
.x3_c00048{left:127.620000px;}
.x2_c00048{left:425.160000px;}
.x1_c00048{left:446.580000px;}
.x4_c00048{left:747.540000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.lsd_c00048{letter-spacing:-0.320000pt;}
.lse_c00048{letter-spacing:-0.256000pt;}
.lsb_c00048{letter-spacing:-0.096000pt;}
.ls10_c00048{letter-spacing:-0.064000pt;}
.lsa_c00048{letter-spacing:0.000000pt;}
.ls2_c00048{letter-spacing:0.064000pt;}
.lsc_c00048{letter-spacing:0.128000pt;}
.lsf_c00048{letter-spacing:0.320000pt;}
.ls8_c00048{letter-spacing:0.960000pt;}
.ls7_c00048{letter-spacing:1.280000pt;}
.ls6_c00048{letter-spacing:1.600000pt;}
.ls3_c00048{letter-spacing:3.200000pt;}
.ls1_c00048{letter-spacing:6.720000pt;}
.ls9_c00048{letter-spacing:7.040000pt;}
.ls5_c00048{letter-spacing:17.920000pt;}
.ls0_c00048{letter-spacing:21.440000pt;}
.ls4_c00048{letter-spacing:47.680000pt;}
.ws0_c00048{word-spacing:-16.064000pt;}
.ws1_c00048{word-spacing:-16.000000pt;}
.ws1c_c00048{word-spacing:-0.384000pt;}
.ws28_c00048{word-spacing:-0.320000pt;}
.wsc_c00048{word-spacing:-0.128000pt;}
.ws12_c00048{word-spacing:-0.064000pt;}
.ws2_c00048{word-spacing:0.000000pt;}
.ws29_c00048{word-spacing:0.064000pt;}
.ws4_c00048{word-spacing:0.144000pt;}
.ws2c_c00048{word-spacing:0.192000pt;}
.ws3_c00048{word-spacing:0.240000pt;}
.ws20_c00048{word-spacing:0.256000pt;}
.ws1b_c00048{word-spacing:0.320000pt;}
.ws2a_c00048{word-spacing:0.576000pt;}
.ws2b_c00048{word-spacing:0.640000pt;}
.ws36_c00048{word-spacing:0.832000pt;}
.ws35_c00048{word-spacing:0.960000pt;}
.ws33_c00048{word-spacing:1.216000pt;}
.ws26_c00048{word-spacing:1.536000pt;}
.ws24_c00048{word-spacing:1.600000pt;}
.ws27_c00048{word-spacing:1.856000pt;}
.ws25_c00048{word-spacing:1.920000pt;}
.ws37_c00048{word-spacing:2.496000pt;}
.ws38_c00048{word-spacing:2.560000pt;}
.ws14_c00048{word-spacing:3.136000pt;}
.ws13_c00048{word-spacing:3.200000pt;}
.ws5_c00048{word-spacing:4.736000pt;}
.ws2d_c00048{word-spacing:4.800000pt;}
.ws32_c00048{word-spacing:5.632000pt;}
.ws30_c00048{word-spacing:5.696000pt;}
.ws31_c00048{word-spacing:5.760000pt;}
.ws39_c00048{word-spacing:6.912000pt;}
.wse_c00048{word-spacing:6.976000pt;}
.wsf_c00048{word-spacing:7.040000pt;}
.wsa_c00048{word-spacing:8.576000pt;}
.ws9_c00048{word-spacing:8.832000pt;}
.ws8_c00048{word-spacing:8.896000pt;}
.ws19_c00048{word-spacing:11.712000pt;}
.ws1a_c00048{word-spacing:11.840000pt;}
.ws1d_c00048{word-spacing:13.376000pt;}
.ws1e_c00048{word-spacing:13.440000pt;}
.ws18_c00048{word-spacing:14.336000pt;}
.ws34_c00048{word-spacing:15.936000pt;}
.ws2f_c00048{word-spacing:17.216000pt;}
.ws2e_c00048{word-spacing:17.280000pt;}
.ws22_c00048{word-spacing:17.856000pt;}
.ws23_c00048{word-spacing:17.920000pt;}
.ws6_c00048{word-spacing:20.992000pt;}
.ws7_c00048{word-spacing:21.312000pt;}
.wsd_c00048{word-spacing:23.040000pt;}
.wsb_c00048{word-spacing:23.360000pt;}
.ws10_c00048{word-spacing:25.216000pt;}
.ws11_c00048{word-spacing:25.280000pt;}
.ws21_c00048{word-spacing:43.456000pt;}
.ws1f_c00048{word-spacing:43.520000pt;}
.ws17_c00048{word-spacing:47.872000pt;}
.ws16_c00048{word-spacing:47.936000pt;}
.ws15_c00048{word-spacing:48.000000pt;}
._1_c00048{margin-left:-0.940800pt;}
._0_c00048{width:1.084800pt;}
._6_c00048{width:2.796800pt;}
._2_c00048{width:3.968000pt;}
._c_c00048{width:5.056000pt;}
._d_c00048{width:6.790400pt;}
._3_c00048{width:8.428800pt;}
._8_c00048{width:11.225600pt;}
._9_c00048{width:12.812800pt;}
._b_c00048{width:17.132800pt;}
._4_c00048{width:22.848000pt;}
._5_c00048{width:25.900800pt;}
._a_c00048{width:44.160000pt;}
._7_c00048{width:47.404800pt;}
.fs0_c00048{font-size:48.000000pt;}
.fs1_c00048{font-size:64.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y26_c00048{bottom:50.880000pt;}
.y25_c00048{bottom:140.640000pt;}
.y24_c00048{bottom:168.240000pt;}
.y23_c00048{bottom:195.840000pt;}
.y22_c00048{bottom:223.440000pt;}
.y21_c00048{bottom:251.040000pt;}
.y20_c00048{bottom:278.640000pt;}
.y1f_c00048{bottom:306.240000pt;}
.y1e_c00048{bottom:333.840000pt;}
.y1d_c00048{bottom:361.440000pt;}
.y1c_c00048{bottom:389.040000pt;}
.y1b_c00048{bottom:416.640000pt;}
.y1a_c00048{bottom:444.240000pt;}
.y19_c00048{bottom:471.840000pt;}
.y18_c00048{bottom:499.440000pt;}
.y17_c00048{bottom:527.040000pt;}
.y16_c00048{bottom:554.640000pt;}
.y15_c00048{bottom:582.240000pt;}
.y14_c00048{bottom:609.840000pt;}
.y13_c00048{bottom:637.440000pt;}
.y12_c00048{bottom:655.840000pt;}
.y11_c00048{bottom:683.440000pt;}
.y10_c00048{bottom:711.040000pt;}
.yf_c00048{bottom:738.640000pt;}
.ye_c00048{bottom:766.160000pt;}
.yd_c00048{bottom:793.760000pt;}
.yc_c00048{bottom:821.360000pt;}
.yb_c00048{bottom:848.960000pt;}
.ya_c00048{bottom:876.560000pt;}
.y9_c00048{bottom:904.160000pt;}
.y8_c00048{bottom:931.760000pt;}
.y7_c00048{bottom:959.360000pt;}
.y6_c00048{bottom:986.960000pt;}
.y5_c00048{bottom:1005.360000pt;}
.y4_c00048{bottom:1023.040000pt;}
.y3_c00048{bottom:1036.804000pt;}
.y2_c00048{bottom:1050.640000pt;}
.y1_c00048{bottom:1064.400000pt;}
.h3_c00048{height:47.085938pt;}
.h2_c00048{height:47.109375pt;}
.h4_c00048{height:62.812500pt;}
.h0_c00048{height:1122.560000pt;}
.h1_c00048{height:1122.666667pt;}
.w0_c00048{width:793.840000pt;}
.w1_c00048{width:794.000000pt;}
.x0_c00048{left:0.000000pt;}
.x3_c00048{left:113.440000pt;}
.x2_c00048{left:377.920000pt;}
.x1_c00048{left:396.960000pt;}
.x4_c00048{left:664.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_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_2e864a869e3f80f55adf1b44.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00049{vertical-align:-61.938000px;}
.v3_c00049{vertical-align:-20.880000px;}
.v0_c00049{vertical-align:0.000000px;}
.v2_c00049{vertical-align:27.000000px;}
.ls9_c00049{letter-spacing:-0.288000px;}
.lsc_c00049{letter-spacing:-0.240480px;}
.lsb_c00049{letter-spacing:-0.180360px;}
.lsa_c00049{letter-spacing:-0.120240px;}
.ls7_c00049{letter-spacing:0.000000px;}
.ls3_c00049{letter-spacing:0.072000px;}
.ls6_c00049{letter-spacing:0.120240px;}
.ls1_c00049{letter-spacing:0.144000px;}
.lsd_c00049{letter-spacing:0.180360px;}
.ls8_c00049{letter-spacing:0.191520px;}
.ls2_c00049{letter-spacing:6.120000px;}
.ls4_c00049{letter-spacing:10.080000px;}
.ls5_c00049{letter-spacing:20.167200px;}
.ls0_c00049{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00049{word-spacing:-18.072000px;}
.ws0_c00049{word-spacing:-18.000000px;}
.ws4_c00049{word-spacing:-14.789520px;}
.ws1_c00049{word-spacing:-12.161520px;}
.ws3_c00049{word-spacing:-9.720000px;}
.ws6_c00049{word-spacing:-0.162000px;}
.ws8_c00049{word-spacing:-0.144000px;}
.wsa_c00049{word-spacing:-0.072000px;}
.ws2c_c00049{word-spacing:-0.060120px;}
.ws5_c00049{word-spacing:0.000000px;}
.ws2b_c00049{word-spacing:0.120240px;}
.ws2e_c00049{word-spacing:0.240480px;}
.ws1f_c00049{word-spacing:0.288000px;}
.ws1d_c00049{word-spacing:0.648000px;}
.ws1e_c00049{word-spacing:0.720000px;}
.ws29_c00049{word-spacing:1.080000px;}
.ws28_c00049{word-spacing:1.368000px;}
.ws27_c00049{word-spacing:1.440000px;}
.ws1c_c00049{word-spacing:1.656000px;}
.ws23_c00049{word-spacing:1.728000px;}
.ws1b_c00049{word-spacing:1.800000px;}
.ws21_c00049{word-spacing:2.808000px;}
.ws25_c00049{word-spacing:3.168000px;}
.ws26_c00049{word-spacing:3.240000px;}
.ws24_c00049{word-spacing:3.888000px;}
.wsb_c00049{word-spacing:4.248000px;}
.ws9_c00049{word-spacing:5.616000px;}
.ws7_c00049{word-spacing:6.048000px;}
.ws12_c00049{word-spacing:6.408000px;}
.ws2d_c00049{word-spacing:6.733440px;}
.ws1a_c00049{word-spacing:7.128000px;}
.wsd_c00049{word-spacing:7.848000px;}
.wsc_c00049{word-spacing:7.920000px;}
.ws14_c00049{word-spacing:9.936000px;}
.ws13_c00049{word-spacing:10.008000px;}
.ws15_c00049{word-spacing:10.080000px;}
.ws2a_c00049{word-spacing:12.888000px;}
.ws20_c00049{word-spacing:13.248000px;}
.wsf_c00049{word-spacing:15.408000px;}
.wse_c00049{word-spacing:15.480000px;}
.ws17_c00049{word-spacing:20.160000px;}
.ws16_c00049{word-spacing:20.448000px;}
.ws18_c00049{word-spacing:20.520000px;}
.ws11_c00049{word-spacing:21.456000px;}
.ws10_c00049{word-spacing:21.528000px;}
.ws19_c00049{word-spacing:26.208000px;}
.ws22_c00049{word-spacing:57.168000px;}
._0_c00049{margin-left:-1.008000px;}
._4_c00049{width:1.000800px;}
._2_c00049{width:2.664000px;}
._7_c00049{width:4.160160px;}
._1_c00049{width:5.184000px;}
._3_c00049{width:7.272000px;}
._6_c00049{width:14.904000px;}
._5_c00049{width:26.640000px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs3_c00049{font-size:38.880000px;}
.fs2_c00049{font-size:47.880000px;}
.fs0_c00049{font-size:54.000000px;}
.fs4_c00049{font-size:60.120000px;}
.fs1_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y27_c00049{bottom:57.240000px;}
.y26_c00049{bottom:109.791180px;}
.y25_c00049{bottom:126.985500px;}
.y24_c00049{bottom:149.490000px;}
.y23_c00049{bottom:166.770000px;}
.y22_c00049{bottom:183.960000px;}
.y28_c00049{bottom:196.650000px;}
.y21_c00049{bottom:241.020000px;}
.y20_c00049{bottom:272.070000px;}
.y1f_c00049{bottom:303.120000px;}
.y1e_c00049{bottom:334.170000px;}
.y1d_c00049{bottom:365.220000px;}
.y1c_c00049{bottom:396.270000px;}
.y1b_c00049{bottom:427.320000px;}
.y1a_c00049{bottom:458.370000px;}
.y19_c00049{bottom:489.420000px;}
.y18_c00049{bottom:520.470000px;}
.y17_c00049{bottom:551.520000px;}
.y16_c00049{bottom:582.570000px;}
.y15_c00049{bottom:613.620000px;}
.y14_c00049{bottom:644.670000px;}
.y13_c00049{bottom:675.720000px;}
.y12_c00049{bottom:706.770000px;}
.y11_c00049{bottom:737.820000px;}
.y10_c00049{bottom:768.870000px;}
.yf_c00049{bottom:799.920000px;}
.ye_c00049{bottom:830.970000px;}
.yd_c00049{bottom:861.930000px;}
.yc_c00049{bottom:892.980000px;}
.yb_c00049{bottom:924.030000px;}
.ya_c00049{bottom:955.080000px;}
.y9_c00049{bottom:986.130000px;}
.y8_c00049{bottom:1017.180000px;}
.y7_c00049{bottom:1048.230000px;}
.y6_c00049{bottom:1079.280000px;}
.y5_c00049{bottom:1110.330000px;}
.y4_c00049{bottom:1131.030000px;}
.y3_c00049{bottom:1150.915500px;}
.y2_c00049{bottom:1166.400000px;}
.y1_c00049{bottom:1197.450000px;}
.h5_c00049{height:38.158594px;}
.h2_c00049{height:52.998047px;}
.h6_c00049{height:59.004492px;}
.h3_c00049{height:70.664062px;}
.h4_c00049{height:73.991602px;}
.h0_c00049{height:1262.880000px;}
.h1_c00049{height:1263.000000px;}
.w0_c00049{width:893.070000px;}
.w1_c00049{width:893.250000px;}
.x0_c00049{left:0.000000px;}
.x2_c00049{left:127.620000px;}
.x1_c00049{left:446.580000px;}
@media print{
.v1_c00049{vertical-align:-55.056000pt;}
.v3_c00049{vertical-align:-18.560000pt;}
.v0_c00049{vertical-align:0.000000pt;}
.v2_c00049{vertical-align:24.000000pt;}
.ls9_c00049{letter-spacing:-0.256000pt;}
.lsc_c00049{letter-spacing:-0.213760pt;}
.lsb_c00049{letter-spacing:-0.160320pt;}
.lsa_c00049{letter-spacing:-0.106880pt;}
.ls7_c00049{letter-spacing:0.000000pt;}
.ls3_c00049{letter-spacing:0.064000pt;}
.ls6_c00049{letter-spacing:0.106880pt;}
.ls1_c00049{letter-spacing:0.128000pt;}
.lsd_c00049{letter-spacing:0.160320pt;}
.ls8_c00049{letter-spacing:0.170240pt;}
.ls2_c00049{letter-spacing:5.440000pt;}
.ls4_c00049{letter-spacing:8.960000pt;}
.ls5_c00049{letter-spacing:17.926400pt;}
.ls0_c00049{letter-spacing:284.016000pt;}
.ws2_c00049{word-spacing:-16.064000pt;}
.ws0_c00049{word-spacing:-16.000000pt;}
.ws4_c00049{word-spacing:-13.146240pt;}
.ws1_c00049{word-spacing:-10.810240pt;}
.ws3_c00049{word-spacing:-8.640000pt;}
.ws6_c00049{word-spacing:-0.144000pt;}
.ws8_c00049{word-spacing:-0.128000pt;}
.wsa_c00049{word-spacing:-0.064000pt;}
.ws2c_c00049{word-spacing:-0.053440pt;}
.ws5_c00049{word-spacing:0.000000pt;}
.ws2b_c00049{word-spacing:0.106880pt;}
.ws2e_c00049{word-spacing:0.213760pt;}
.ws1f_c00049{word-spacing:0.256000pt;}
.ws1d_c00049{word-spacing:0.576000pt;}
.ws1e_c00049{word-spacing:0.640000pt;}
.ws29_c00049{word-spacing:0.960000pt;}
.ws28_c00049{word-spacing:1.216000pt;}
.ws27_c00049{word-spacing:1.280000pt;}
.ws1c_c00049{word-spacing:1.472000pt;}
.ws23_c00049{word-spacing:1.536000pt;}
.ws1b_c00049{word-spacing:1.600000pt;}
.ws21_c00049{word-spacing:2.496000pt;}
.ws25_c00049{word-spacing:2.816000pt;}
.ws26_c00049{word-spacing:2.880000pt;}
.ws24_c00049{word-spacing:3.456000pt;}
.wsb_c00049{word-spacing:3.776000pt;}
.ws9_c00049{word-spacing:4.992000pt;}
.ws7_c00049{word-spacing:5.376000pt;}
.ws12_c00049{word-spacing:5.696000pt;}
.ws2d_c00049{word-spacing:5.985280pt;}
.ws1a_c00049{word-spacing:6.336000pt;}
.wsd_c00049{word-spacing:6.976000pt;}
.wsc_c00049{word-spacing:7.040000pt;}
.ws14_c00049{word-spacing:8.832000pt;}
.ws13_c00049{word-spacing:8.896000pt;}
.ws15_c00049{word-spacing:8.960000pt;}
.ws2a_c00049{word-spacing:11.456000pt;}
.ws20_c00049{word-spacing:11.776000pt;}
.wsf_c00049{word-spacing:13.696000pt;}
.wse_c00049{word-spacing:13.760000pt;}
.ws17_c00049{word-spacing:17.920000pt;}
.ws16_c00049{word-spacing:18.176000pt;}
.ws18_c00049{word-spacing:18.240000pt;}
.ws11_c00049{word-spacing:19.072000pt;}
.ws10_c00049{word-spacing:19.136000pt;}
.ws19_c00049{word-spacing:23.296000pt;}
.ws22_c00049{word-spacing:50.816000pt;}
._0_c00049{margin-left:-0.896000pt;}
._4_c00049{width:0.889600pt;}
._2_c00049{width:2.368000pt;}
._7_c00049{width:3.697920pt;}
._1_c00049{width:4.608000pt;}
._3_c00049{width:6.464000pt;}
._6_c00049{width:13.248000pt;}
._5_c00049{width:23.680000pt;}
.fs3_c00049{font-size:34.560000pt;}
.fs2_c00049{font-size:42.560000pt;}
.fs0_c00049{font-size:48.000000pt;}
.fs4_c00049{font-size:53.440000pt;}
.fs1_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y27_c00049{bottom:50.880000pt;}
.y26_c00049{bottom:97.592160pt;}
.y25_c00049{bottom:112.876000pt;}
.y24_c00049{bottom:132.880000pt;}
.y23_c00049{bottom:148.240000pt;}
.y22_c00049{bottom:163.520000pt;}
.y28_c00049{bottom:174.800000pt;}
.y21_c00049{bottom:214.240000pt;}
.y20_c00049{bottom:241.840000pt;}
.y1f_c00049{bottom:269.440000pt;}
.y1e_c00049{bottom:297.040000pt;}
.y1d_c00049{bottom:324.640000pt;}
.y1c_c00049{bottom:352.240000pt;}
.y1b_c00049{bottom:379.840000pt;}
.y1a_c00049{bottom:407.440000pt;}
.y19_c00049{bottom:435.040000pt;}
.y18_c00049{bottom:462.640000pt;}
.y17_c00049{bottom:490.240000pt;}
.y16_c00049{bottom:517.840000pt;}
.y15_c00049{bottom:545.440000pt;}
.y14_c00049{bottom:573.040000pt;}
.y13_c00049{bottom:600.640000pt;}
.y12_c00049{bottom:628.240000pt;}
.y11_c00049{bottom:655.840000pt;}
.y10_c00049{bottom:683.440000pt;}
.yf_c00049{bottom:711.040000pt;}
.ye_c00049{bottom:738.640000pt;}
.yd_c00049{bottom:766.160000pt;}
.yc_c00049{bottom:793.760000pt;}
.yb_c00049{bottom:821.360000pt;}
.ya_c00049{bottom:848.960000pt;}
.y9_c00049{bottom:876.560000pt;}
.y8_c00049{bottom:904.160000pt;}
.y7_c00049{bottom:931.760000pt;}
.y6_c00049{bottom:959.360000pt;}
.y5_c00049{bottom:986.960000pt;}
.y4_c00049{bottom:1005.360000pt;}
.y3_c00049{bottom:1023.036000pt;}
.y2_c00049{bottom:1036.800000pt;}
.y1_c00049{bottom:1064.400000pt;}
.h5_c00049{height:33.918750pt;}
.h2_c00049{height:47.109375pt;}
.h6_c00049{height:52.448437pt;}
.h3_c00049{height:62.812500pt;}
.h4_c00049{height:65.770312pt;}
.h0_c00049{height:1122.560000pt;}
.h1_c00049{height:1122.666667pt;}
.w0_c00049{width:793.840000pt;}
.w1_c00049{width:794.000000pt;}
.x0_c00049{left:0.000000pt;}
.x2_c00049{left:113.440000pt;}
.x1_c00049{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_307db050b1832b38aeabfd1f.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00050{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00050{vertical-align:-20.880000px;}
.v0_c00050{vertical-align:0.000000px;}
.v1_c00050{vertical-align:27.000000px;}
.ls19_c00050{letter-spacing:-0.360000px;}
.ls17_c00050{letter-spacing:-0.288000px;}
.ls18_c00050{letter-spacing:-0.216000px;}
.ls15_c00050{letter-spacing:-0.108000px;}
.ls1b_c00050{letter-spacing:-0.060120px;}
.ls14_c00050{letter-spacing:0.000000px;}
.ls5_c00050{letter-spacing:0.072000px;}
.ls13_c00050{letter-spacing:0.090180px;}
.ls12_c00050{letter-spacing:0.120240px;}
.ls10_c00050{letter-spacing:0.144000px;}
.ls16_c00050{letter-spacing:0.191520px;}
.ls1a_c00050{letter-spacing:0.432000px;}
.ls11_c00050{letter-spacing:3.967200px;}
.ls7_c00050{letter-spacing:4.320000px;}
.ls3_c00050{letter-spacing:5.400000px;}
.ls8_c00050{letter-spacing:8.280000px;}
.ls4_c00050{letter-spacing:9.360000px;}
.lsd_c00050{letter-spacing:11.534400px;}
.ls2_c00050{letter-spacing:12.240000px;}
.lsc_c00050{letter-spacing:13.320000px;}
.lsa_c00050{letter-spacing:13.680000px;}
.lse_c00050{letter-spacing:14.040000px;}
.ls6_c00050{letter-spacing:15.120000px;}
.lsf_c00050{letter-spacing:15.480000px;}
.lsb_c00050{letter-spacing:15.840000px;}
.ls1_c00050{letter-spacing:16.200000px;}
.ls0_c00050{letter-spacing:16.207200px;}
.ls9_c00050{letter-spacing:19.800000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00050{word-spacing:-18.144000px;}
.ws0_c00050{word-spacing:-18.072000px;}
.ws3_c00050{word-spacing:-18.000000px;}
.ws4_c00050{word-spacing:-17.784000px;}
.ws5_c00050{word-spacing:-17.712000px;}
.ws7_c00050{word-spacing:-14.969880px;}
.ws2_c00050{word-spacing:-12.161520px;}
.ws6_c00050{word-spacing:-9.720000px;}
.ws37_c00050{word-spacing:-0.432000px;}
.ws10_c00050{word-spacing:-0.144000px;}
.wsb_c00050{word-spacing:-0.072000px;}
.ws8_c00050{word-spacing:0.000000px;}
.wsa_c00050{word-spacing:0.162000px;}
.ws3c_c00050{word-spacing:0.180360px;}
.ws26_c00050{word-spacing:0.216000px;}
.ws9_c00050{word-spacing:0.270000px;}
.ws1a_c00050{word-spacing:0.360000px;}
.ws1f_c00050{word-spacing:1.800000px;}
.ws1e_c00050{word-spacing:2.160000px;}
.ws32_c00050{word-spacing:2.808000px;}
.ws33_c00050{word-spacing:2.880000px;}
.ws18_c00050{word-spacing:3.816000px;}
.ws3a_c00050{word-spacing:3.888000px;}
.ws3b_c00050{word-spacing:3.960000px;}
.ws19_c00050{word-spacing:4.248000px;}
.ws13_c00050{word-spacing:5.040000px;}
.ws12_c00050{word-spacing:5.256000px;}
.ws11_c00050{word-spacing:5.328000px;}
.ws14_c00050{word-spacing:5.400000px;}
.ws30_c00050{word-spacing:5.688000px;}
.ws31_c00050{word-spacing:5.760000px;}
.ws1d_c00050{word-spacing:8.208000px;}
.ws1c_c00050{word-spacing:8.280000px;}
.wsf_c00050{word-spacing:9.360000px;}
.ws2f_c00050{word-spacing:11.448000px;}
.ws2e_c00050{word-spacing:11.520000px;}
.wse_c00050{word-spacing:12.240000px;}
.ws38_c00050{word-spacing:12.816000px;}
.ws39_c00050{word-spacing:12.888000px;}
.ws2d_c00050{word-spacing:13.176000px;}
.ws1b_c00050{word-spacing:13.248000px;}
.ws28_c00050{word-spacing:13.320000px;}
.ws2a_c00050{word-spacing:13.536000px;}
.ws27_c00050{word-spacing:13.608000px;}
.ws29_c00050{word-spacing:13.680000px;}
.ws34_c00050{word-spacing:14.328000px;}
.ws35_c00050{word-spacing:14.400000px;}
.ws16_c00050{word-spacing:14.760000px;}
.ws15_c00050{word-spacing:15.048000px;}
.ws25_c00050{word-spacing:15.120000px;}
.ws17_c00050{word-spacing:15.408000px;}
.ws2c_c00050{word-spacing:15.768000px;}
.ws2b_c00050{word-spacing:15.840000px;}
.wsd_c00050{word-spacing:16.128000px;}
.wsc_c00050{word-spacing:16.200000px;}
.ws24_c00050{word-spacing:17.280000px;}
.ws23_c00050{word-spacing:17.568000px;}
.ws36_c00050{word-spacing:17.640000px;}
.ws20_c00050{word-spacing:19.728000px;}
.ws21_c00050{word-spacing:19.800000px;}
.ws22_c00050{word-spacing:20.088000px;}
._1_c00050{margin-left:-1.058400px;}
._0_c00050{width:1.220400px;}
._4_c00050{width:2.952000px;}
._5_c00050{width:5.472000px;}
._3_c00050{width:9.194400px;}
._2_c00050{width:11.548800px;}
._8_c00050{width:12.772800px;}
._7_c00050{width:15.105600px;}
._6_c00050{width:20.336400px;}
.fc0_c00050{color:rgb(0,0,0);}
.fs3_c00050{font-size:38.880000px;}
.fs2_c00050{font-size:47.880000px;}
.fs0_c00050{font-size:54.000000px;}
.fs4_c00050{font-size:60.120000px;}
.fs1_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y27_c00050{bottom:57.240000px;}
.y26_c00050{bottom:115.020000px;}
.y25_c00050{bottom:132.210000px;}
.y28_c00050{bottom:144.900000px;}
.y24_c00050{bottom:178.920000px;}
.y23_c00050{bottom:209.970000px;}
.y22_c00050{bottom:241.020000px;}
.y21_c00050{bottom:272.070000px;}
.y20_c00050{bottom:303.120000px;}
.y1f_c00050{bottom:334.170000px;}
.y1e_c00050{bottom:365.220000px;}
.y1d_c00050{bottom:396.270000px;}
.y1c_c00050{bottom:427.320000px;}
.y1b_c00050{bottom:458.370000px;}
.y1a_c00050{bottom:489.420000px;}
.y19_c00050{bottom:520.470000px;}
.y18_c00050{bottom:551.520000px;}
.y17_c00050{bottom:582.570000px;}
.y16_c00050{bottom:613.620000px;}
.y15_c00050{bottom:644.670000px;}
.y14_c00050{bottom:675.720000px;}
.y13_c00050{bottom:706.770000px;}
.y12_c00050{bottom:737.820000px;}
.y11_c00050{bottom:768.870000px;}
.y10_c00050{bottom:799.920000px;}
.yf_c00050{bottom:830.970000px;}
.ye_c00050{bottom:861.930000px;}
.yd_c00050{bottom:892.980000px;}
.yc_c00050{bottom:924.030000px;}
.yb_c00050{bottom:955.080000px;}
.ya_c00050{bottom:986.130000px;}
.y9_c00050{bottom:1017.180000px;}
.y8_c00050{bottom:1048.230000px;}
.y7_c00050{bottom:1079.280000px;}
.y6_c00050{bottom:1110.330000px;}
.y5_c00050{bottom:1131.030000px;}
.y4_c00050{bottom:1150.920000px;}
.y3_c00050{bottom:1166.404500px;}
.y2_c00050{bottom:1181.970000px;}
.y1_c00050{bottom:1197.450000px;}
.h6_c00050{height:38.158594px;}
.h3_c00050{height:52.971680px;}
.h2_c00050{height:52.998047px;}
.h4_c00050{height:70.664062px;}
.h5_c00050{height:73.991602px;}
.h0_c00050{height:1262.880000px;}
.h1_c00050{height:1263.000000px;}
.w0_c00050{width:893.070000px;}
.w1_c00050{width:893.250000px;}
.x0_c00050{left:0.000000px;}
.x3_c00050{left:127.620000px;}
.x2_c00050{left:425.160000px;}
.x1_c00050{left:446.580000px;}
.x4_c00050{left:747.540000px;}
@media print{
.v2_c00050{vertical-align:-18.560000pt;}
.v0_c00050{vertical-align:0.000000pt;}
.v1_c00050{vertical-align:24.000000pt;}
.ls19_c00050{letter-spacing:-0.320000pt;}
.ls17_c00050{letter-spacing:-0.256000pt;}
.ls18_c00050{letter-spacing:-0.192000pt;}
.ls15_c00050{letter-spacing:-0.096000pt;}
.ls1b_c00050{letter-spacing:-0.053440pt;}
.ls14_c00050{letter-spacing:0.000000pt;}
.ls5_c00050{letter-spacing:0.064000pt;}
.ls13_c00050{letter-spacing:0.080160pt;}
.ls12_c00050{letter-spacing:0.106880pt;}
.ls10_c00050{letter-spacing:0.128000pt;}
.ls16_c00050{letter-spacing:0.170240pt;}
.ls1a_c00050{letter-spacing:0.384000pt;}
.ls11_c00050{letter-spacing:3.526400pt;}
.ls7_c00050{letter-spacing:3.840000pt;}
.ls3_c00050{letter-spacing:4.800000pt;}
.ls8_c00050{letter-spacing:7.360000pt;}
.ls4_c00050{letter-spacing:8.320000pt;}
.lsd_c00050{letter-spacing:10.252800pt;}
.ls2_c00050{letter-spacing:10.880000pt;}
.lsc_c00050{letter-spacing:11.840000pt;}
.lsa_c00050{letter-spacing:12.160000pt;}
.lse_c00050{letter-spacing:12.480000pt;}
.ls6_c00050{letter-spacing:13.440000pt;}
.lsf_c00050{letter-spacing:13.760000pt;}
.lsb_c00050{letter-spacing:14.080000pt;}
.ls1_c00050{letter-spacing:14.400000pt;}
.ls0_c00050{letter-spacing:14.406400pt;}
.ls9_c00050{letter-spacing:17.600000pt;}
.ws1_c00050{word-spacing:-16.128000pt;}
.ws0_c00050{word-spacing:-16.064000pt;}
.ws3_c00050{word-spacing:-16.000000pt;}
.ws4_c00050{word-spacing:-15.808000pt;}
.ws5_c00050{word-spacing:-15.744000pt;}
.ws7_c00050{word-spacing:-13.306560pt;}
.ws2_c00050{word-spacing:-10.810240pt;}
.ws6_c00050{word-spacing:-8.640000pt;}
.ws37_c00050{word-spacing:-0.384000pt;}
.ws10_c00050{word-spacing:-0.128000pt;}
.wsb_c00050{word-spacing:-0.064000pt;}
.ws8_c00050{word-spacing:0.000000pt;}
.wsa_c00050{word-spacing:0.144000pt;}
.ws3c_c00050{word-spacing:0.160320pt;}
.ws26_c00050{word-spacing:0.192000pt;}
.ws9_c00050{word-spacing:0.240000pt;}
.ws1a_c00050{word-spacing:0.320000pt;}
.ws1f_c00050{word-spacing:1.600000pt;}
.ws1e_c00050{word-spacing:1.920000pt;}
.ws32_c00050{word-spacing:2.496000pt;}
.ws33_c00050{word-spacing:2.560000pt;}
.ws18_c00050{word-spacing:3.392000pt;}
.ws3a_c00050{word-spacing:3.456000pt;}
.ws3b_c00050{word-spacing:3.520000pt;}
.ws19_c00050{word-spacing:3.776000pt;}
.ws13_c00050{word-spacing:4.480000pt;}
.ws12_c00050{word-spacing:4.672000pt;}
.ws11_c00050{word-spacing:4.736000pt;}
.ws14_c00050{word-spacing:4.800000pt;}
.ws30_c00050{word-spacing:5.056000pt;}
.ws31_c00050{word-spacing:5.120000pt;}
.ws1d_c00050{word-spacing:7.296000pt;}
.ws1c_c00050{word-spacing:7.360000pt;}
.wsf_c00050{word-spacing:8.320000pt;}
.ws2f_c00050{word-spacing:10.176000pt;}
.ws2e_c00050{word-spacing:10.240000pt;}
.wse_c00050{word-spacing:10.880000pt;}
.ws38_c00050{word-spacing:11.392000pt;}
.ws39_c00050{word-spacing:11.456000pt;}
.ws2d_c00050{word-spacing:11.712000pt;}
.ws1b_c00050{word-spacing:11.776000pt;}
.ws28_c00050{word-spacing:11.840000pt;}
.ws2a_c00050{word-spacing:12.032000pt;}
.ws27_c00050{word-spacing:12.096000pt;}
.ws29_c00050{word-spacing:12.160000pt;}
.ws34_c00050{word-spacing:12.736000pt;}
.ws35_c00050{word-spacing:12.800000pt;}
.ws16_c00050{word-spacing:13.120000pt;}
.ws15_c00050{word-spacing:13.376000pt;}
.ws25_c00050{word-spacing:13.440000pt;}
.ws17_c00050{word-spacing:13.696000pt;}
.ws2c_c00050{word-spacing:14.016000pt;}
.ws2b_c00050{word-spacing:14.080000pt;}
.wsd_c00050{word-spacing:14.336000pt;}
.wsc_c00050{word-spacing:14.400000pt;}
.ws24_c00050{word-spacing:15.360000pt;}
.ws23_c00050{word-spacing:15.616000pt;}
.ws36_c00050{word-spacing:15.680000pt;}
.ws20_c00050{word-spacing:17.536000pt;}
.ws21_c00050{word-spacing:17.600000pt;}
.ws22_c00050{word-spacing:17.856000pt;}
._1_c00050{margin-left:-0.940800pt;}
._0_c00050{width:1.084800pt;}
._4_c00050{width:2.624000pt;}
._5_c00050{width:4.864000pt;}
._3_c00050{width:8.172800pt;}
._2_c00050{width:10.265600pt;}
._8_c00050{width:11.353600pt;}
._7_c00050{width:13.427200pt;}
._6_c00050{width:18.076800pt;}
.fs3_c00050{font-size:34.560000pt;}
.fs2_c00050{font-size:42.560000pt;}
.fs0_c00050{font-size:48.000000pt;}
.fs4_c00050{font-size:53.440000pt;}
.fs1_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y27_c00050{bottom:50.880000pt;}
.y26_c00050{bottom:102.240000pt;}
.y25_c00050{bottom:117.520000pt;}
.y28_c00050{bottom:128.800000pt;}
.y24_c00050{bottom:159.040000pt;}
.y23_c00050{bottom:186.640000pt;}
.y22_c00050{bottom:214.240000pt;}
.y21_c00050{bottom:241.840000pt;}
.y20_c00050{bottom:269.440000pt;}
.y1f_c00050{bottom:297.040000pt;}
.y1e_c00050{bottom:324.640000pt;}
.y1d_c00050{bottom:352.240000pt;}
.y1c_c00050{bottom:379.840000pt;}
.y1b_c00050{bottom:407.440000pt;}
.y1a_c00050{bottom:435.040000pt;}
.y19_c00050{bottom:462.640000pt;}
.y18_c00050{bottom:490.240000pt;}
.y17_c00050{bottom:517.840000pt;}
.y16_c00050{bottom:545.440000pt;}
.y15_c00050{bottom:573.040000pt;}
.y14_c00050{bottom:600.640000pt;}
.y13_c00050{bottom:628.240000pt;}
.y12_c00050{bottom:655.840000pt;}
.y11_c00050{bottom:683.440000pt;}
.y10_c00050{bottom:711.040000pt;}
.yf_c00050{bottom:738.640000pt;}
.ye_c00050{bottom:766.160000pt;}
.yd_c00050{bottom:793.760000pt;}
.yc_c00050{bottom:821.360000pt;}
.yb_c00050{bottom:848.960000pt;}
.ya_c00050{bottom:876.560000pt;}
.y9_c00050{bottom:904.160000pt;}
.y8_c00050{bottom:931.760000pt;}
.y7_c00050{bottom:959.360000pt;}
.y6_c00050{bottom:986.960000pt;}
.y5_c00050{bottom:1005.360000pt;}
.y4_c00050{bottom:1023.040000pt;}
.y3_c00050{bottom:1036.804000pt;}
.y2_c00050{bottom:1050.640000pt;}
.y1_c00050{bottom:1064.400000pt;}
.h6_c00050{height:33.918750pt;}
.h3_c00050{height:47.085938pt;}
.h2_c00050{height:47.109375pt;}
.h4_c00050{height:62.812500pt;}
.h5_c00050{height:65.770313pt;}
.h0_c00050{height:1122.560000pt;}
.h1_c00050{height:1122.666667pt;}
.w0_c00050{width:793.840000pt;}
.w1_c00050{width:794.000000pt;}
.x0_c00050{left:0.000000pt;}
.x3_c00050{left:113.440000pt;}
.x2_c00050{left:377.920000pt;}
.x1_c00050{left:396.960000pt;}
.x4_c00050{left:664.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_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_9ca531defaca913b67571e11.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00051{vertical-align:-61.938000px;}
.v3_c00051{vertical-align:-20.880000px;}
.v0_c00051{vertical-align:0.000000px;}
.v2_c00051{vertical-align:27.000000px;}
.ls17_c00051{letter-spacing:-0.360000px;}
.ls14_c00051{letter-spacing:-0.288000px;}
.ls16_c00051{letter-spacing:-0.216000px;}
.ls1a_c00051{letter-spacing:-0.180360px;}
.ls18_c00051{letter-spacing:-0.060120px;}
.ls12_c00051{letter-spacing:0.000000px;}
.ls3_c00051{letter-spacing:0.072000px;}
.ls13_c00051{letter-spacing:0.144000px;}
.ls19_c00051{letter-spacing:0.180360px;}
.ls15_c00051{letter-spacing:0.191520px;}
.lsc_c00051{letter-spacing:2.160000px;}
.lsa_c00051{letter-spacing:2.520000px;}
.ls8_c00051{letter-spacing:2.894400px;}
.ls9_c00051{letter-spacing:3.960000px;}
.ls10_c00051{letter-spacing:4.028040px;}
.ls2_c00051{letter-spacing:4.320000px;}
.ls1_c00051{letter-spacing:4.680000px;}
.ls4_c00051{letter-spacing:4.687200px;}
.lse_c00051{letter-spacing:7.920000px;}
.lsd_c00051{letter-spacing:9.360000px;}
.ls6_c00051{letter-spacing:11.520000px;}
.ls11_c00051{letter-spacing:15.931800px;}
.ls5_c00051{letter-spacing:19.080000px;}
.lsf_c00051{letter-spacing:28.800000px;}
.lsb_c00051{letter-spacing:30.960000px;}
.ls7_c00051{letter-spacing:37.080000px;}
.ls0_c00051{letter-spacing:319.518000px;}
.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:-18.072000px;}
.ws1_c00051{word-spacing:-18.000000px;}
.ws3_c00051{word-spacing:-17.712000px;}
.ws2_c00051{word-spacing:-12.161520px;}
.ws4_c00051{word-spacing:-9.720000px;}
.ws1e_c00051{word-spacing:-0.432000px;}
.ws39_c00051{word-spacing:-0.420840px;}
.ws6_c00051{word-spacing:-0.162000px;}
.ws16_c00051{word-spacing:-0.072000px;}
.ws3c_c00051{word-spacing:-0.060120px;}
.ws5_c00051{word-spacing:0.000000px;}
.ws20_c00051{word-spacing:0.216000px;}
.ws22_c00051{word-spacing:0.360000px;}
.ws28_c00051{word-spacing:2.088000px;}
.ws30_c00051{word-spacing:2.160000px;}
.ws25_c00051{word-spacing:2.376000px;}
.ws27_c00051{word-spacing:2.448000px;}
.ws26_c00051{word-spacing:2.520000px;}
.ws17_c00051{word-spacing:2.808000px;}
.ws18_c00051{word-spacing:2.880000px;}
.ws38_c00051{word-spacing:3.847680px;}
.ws19_c00051{word-spacing:3.888000px;}
.ws1d_c00051{word-spacing:3.960000px;}
.ws37_c00051{word-spacing:4.088160px;}
.wsb_c00051{word-spacing:4.248000px;}
.wsc_c00051{word-spacing:4.608000px;}
.wsa_c00051{word-spacing:4.680000px;}
.ws7_c00051{word-spacing:7.488000px;}
.ws1a_c00051{word-spacing:7.560000px;}
.ws34_c00051{word-spacing:7.848000px;}
.ws8_c00051{word-spacing:8.208000px;}
.ws9_c00051{word-spacing:8.280000px;}
.ws2f_c00051{word-spacing:8.928000px;}
.ws32_c00051{word-spacing:9.288000px;}
.ws31_c00051{word-spacing:9.360000px;}
.ws33_c00051{word-spacing:9.720000px;}
.ws1c_c00051{word-spacing:10.800000px;}
.ws1b_c00051{word-spacing:11.160000px;}
.ws10_c00051{word-spacing:11.376000px;}
.ws11_c00051{word-spacing:11.448000px;}
.wsf_c00051{word-spacing:11.520000px;}
.ws12_c00051{word-spacing:11.808000px;}
.ws1f_c00051{word-spacing:12.888000px;}
.ws21_c00051{word-spacing:12.960000px;}
.ws24_c00051{word-spacing:14.688000px;}
.ws23_c00051{word-spacing:14.760000px;}
.ws3a_c00051{word-spacing:15.991920px;}
.ws3b_c00051{word-spacing:16.112160px;}
.wsd_c00051{word-spacing:19.368000px;}
.wse_c00051{word-spacing:19.440000px;}
.ws2a_c00051{word-spacing:21.168000px;}
.ws29_c00051{word-spacing:21.240000px;}
.ws35_c00051{word-spacing:28.296000px;}
.ws2e_c00051{word-spacing:28.656000px;}
.ws36_c00051{word-spacing:28.728000px;}
.ws2d_c00051{word-spacing:28.800000px;}
.ws2b_c00051{word-spacing:30.888000px;}
.ws2c_c00051{word-spacing:30.960000px;}
.ws15_c00051{word-spacing:37.080000px;}
.ws13_c00051{word-spacing:37.368000px;}
.ws14_c00051{word-spacing:37.440000px;}
._c_c00051{margin-left:-8.288640px;}
._0_c00051{margin-left:-1.087200px;}
._1_c00051{width:1.008000px;}
._6_c00051{width:2.829600px;}
._5_c00051{width:3.960000px;}
._4_c00051{width:7.365600px;}
._b_c00051{width:9.576000px;}
._2_c00051{width:10.677600px;}
._7_c00051{width:13.262400px;}
._8_c00051{width:15.120000px;}
._a_c00051{width:27.936000px;}
._9_c00051{width:30.816000px;}
._3_c00051{width:37.231200px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs3_c00051{font-size:38.880000px;}
.fs2_c00051{font-size:47.880000px;}
.fs0_c00051{font-size:54.000000px;}
.fs4_c00051{font-size:60.120000px;}
.fs1_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y27_c00051{bottom:57.240000px;}
.y26_c00051{bottom:109.795680px;}
.y25_c00051{bottom:132.210000px;}
.y24_c00051{bottom:144.265500px;}
.y23_c00051{bottom:166.770000px;}
.y28_c00051{bottom:179.460000px;}
.y22_c00051{bottom:220.320000px;}
.y21_c00051{bottom:251.370000px;}
.y20_c00051{bottom:282.420000px;}
.y1f_c00051{bottom:313.470000px;}
.y1e_c00051{bottom:344.520000px;}
.y1d_c00051{bottom:375.570000px;}
.y1c_c00051{bottom:406.620000px;}
.y1b_c00051{bottom:437.670000px;}
.y1a_c00051{bottom:468.720000px;}
.y19_c00051{bottom:499.770000px;}
.y18_c00051{bottom:530.820000px;}
.y17_c00051{bottom:561.870000px;}
.y16_c00051{bottom:592.920000px;}
.y15_c00051{bottom:623.970000px;}
.y14_c00051{bottom:655.020000px;}
.y13_c00051{bottom:686.070000px;}
.y12_c00051{bottom:706.770000px;}
.y11_c00051{bottom:737.820000px;}
.y10_c00051{bottom:768.870000px;}
.yf_c00051{bottom:799.920000px;}
.ye_c00051{bottom:830.970000px;}
.yd_c00051{bottom:861.930000px;}
.yc_c00051{bottom:892.980000px;}
.yb_c00051{bottom:924.030000px;}
.ya_c00051{bottom:955.080000px;}
.y9_c00051{bottom:986.130000px;}
.y8_c00051{bottom:1017.180000px;}
.y7_c00051{bottom:1048.230000px;}
.y6_c00051{bottom:1079.280000px;}
.y5_c00051{bottom:1110.330000px;}
.y4_c00051{bottom:1131.030000px;}
.y3_c00051{bottom:1150.915500px;}
.y2_c00051{bottom:1166.400000px;}
.y1_c00051{bottom:1197.450000px;}
.h5_c00051{height:38.158594px;}
.h2_c00051{height:52.998047px;}
.h6_c00051{height:59.004492px;}
.h3_c00051{height:70.664062px;}
.h4_c00051{height:73.991602px;}
.h0_c00051{height:1262.880000px;}
.h1_c00051{height:1263.000000px;}
.w0_c00051{width:893.070000px;}
.w1_c00051{width:893.250000px;}
.x0_c00051{left:0.000000px;}
.x2_c00051{left:127.620000px;}
.x1_c00051{left:446.580000px;}
@media print{
.v1_c00051{vertical-align:-55.056000pt;}
.v3_c00051{vertical-align:-18.560000pt;}
.v0_c00051{vertical-align:0.000000pt;}
.v2_c00051{vertical-align:24.000000pt;}
.ls17_c00051{letter-spacing:-0.320000pt;}
.ls14_c00051{letter-spacing:-0.256000pt;}
.ls16_c00051{letter-spacing:-0.192000pt;}
.ls1a_c00051{letter-spacing:-0.160320pt;}
.ls18_c00051{letter-spacing:-0.053440pt;}
.ls12_c00051{letter-spacing:0.000000pt;}
.ls3_c00051{letter-spacing:0.064000pt;}
.ls13_c00051{letter-spacing:0.128000pt;}
.ls19_c00051{letter-spacing:0.160320pt;}
.ls15_c00051{letter-spacing:0.170240pt;}
.lsc_c00051{letter-spacing:1.920000pt;}
.lsa_c00051{letter-spacing:2.240000pt;}
.ls8_c00051{letter-spacing:2.572800pt;}
.ls9_c00051{letter-spacing:3.520000pt;}
.ls10_c00051{letter-spacing:3.580480pt;}
.ls2_c00051{letter-spacing:3.840000pt;}
.ls1_c00051{letter-spacing:4.160000pt;}
.ls4_c00051{letter-spacing:4.166400pt;}
.lse_c00051{letter-spacing:7.040000pt;}
.lsd_c00051{letter-spacing:8.320000pt;}
.ls6_c00051{letter-spacing:10.240000pt;}
.ls11_c00051{letter-spacing:14.161600pt;}
.ls5_c00051{letter-spacing:16.960000pt;}
.lsf_c00051{letter-spacing:25.600000pt;}
.lsb_c00051{letter-spacing:27.520000pt;}
.ls7_c00051{letter-spacing:32.960000pt;}
.ls0_c00051{letter-spacing:284.016000pt;}
.ws0_c00051{word-spacing:-16.064000pt;}
.ws1_c00051{word-spacing:-16.000000pt;}
.ws3_c00051{word-spacing:-15.744000pt;}
.ws2_c00051{word-spacing:-10.810240pt;}
.ws4_c00051{word-spacing:-8.640000pt;}
.ws1e_c00051{word-spacing:-0.384000pt;}
.ws39_c00051{word-spacing:-0.374080pt;}
.ws6_c00051{word-spacing:-0.144000pt;}
.ws16_c00051{word-spacing:-0.064000pt;}
.ws3c_c00051{word-spacing:-0.053440pt;}
.ws5_c00051{word-spacing:0.000000pt;}
.ws20_c00051{word-spacing:0.192000pt;}
.ws22_c00051{word-spacing:0.320000pt;}
.ws28_c00051{word-spacing:1.856000pt;}
.ws30_c00051{word-spacing:1.920000pt;}
.ws25_c00051{word-spacing:2.112000pt;}
.ws27_c00051{word-spacing:2.176000pt;}
.ws26_c00051{word-spacing:2.240000pt;}
.ws17_c00051{word-spacing:2.496000pt;}
.ws18_c00051{word-spacing:2.560000pt;}
.ws38_c00051{word-spacing:3.420160pt;}
.ws19_c00051{word-spacing:3.456000pt;}
.ws1d_c00051{word-spacing:3.520000pt;}
.ws37_c00051{word-spacing:3.633920pt;}
.wsb_c00051{word-spacing:3.776000pt;}
.wsc_c00051{word-spacing:4.096000pt;}
.wsa_c00051{word-spacing:4.160000pt;}
.ws7_c00051{word-spacing:6.656000pt;}
.ws1a_c00051{word-spacing:6.720000pt;}
.ws34_c00051{word-spacing:6.976000pt;}
.ws8_c00051{word-spacing:7.296000pt;}
.ws9_c00051{word-spacing:7.360000pt;}
.ws2f_c00051{word-spacing:7.936000pt;}
.ws32_c00051{word-spacing:8.256000pt;}
.ws31_c00051{word-spacing:8.320000pt;}
.ws33_c00051{word-spacing:8.640000pt;}
.ws1c_c00051{word-spacing:9.600000pt;}
.ws1b_c00051{word-spacing:9.920000pt;}
.ws10_c00051{word-spacing:10.112000pt;}
.ws11_c00051{word-spacing:10.176000pt;}
.wsf_c00051{word-spacing:10.240000pt;}
.ws12_c00051{word-spacing:10.496000pt;}
.ws1f_c00051{word-spacing:11.456000pt;}
.ws21_c00051{word-spacing:11.520000pt;}
.ws24_c00051{word-spacing:13.056000pt;}
.ws23_c00051{word-spacing:13.120000pt;}
.ws3a_c00051{word-spacing:14.215040pt;}
.ws3b_c00051{word-spacing:14.321920pt;}
.wsd_c00051{word-spacing:17.216000pt;}
.wse_c00051{word-spacing:17.280000pt;}
.ws2a_c00051{word-spacing:18.816000pt;}
.ws29_c00051{word-spacing:18.880000pt;}
.ws35_c00051{word-spacing:25.152000pt;}
.ws2e_c00051{word-spacing:25.472000pt;}
.ws36_c00051{word-spacing:25.536000pt;}
.ws2d_c00051{word-spacing:25.600000pt;}
.ws2b_c00051{word-spacing:27.456000pt;}
.ws2c_c00051{word-spacing:27.520000pt;}
.ws15_c00051{word-spacing:32.960000pt;}
.ws13_c00051{word-spacing:33.216000pt;}
.ws14_c00051{word-spacing:33.280000pt;}
._c_c00051{margin-left:-7.367680pt;}
._0_c00051{margin-left:-0.966400pt;}
._1_c00051{width:0.896000pt;}
._6_c00051{width:2.515200pt;}
._5_c00051{width:3.520000pt;}
._4_c00051{width:6.547200pt;}
._b_c00051{width:8.512000pt;}
._2_c00051{width:9.491200pt;}
._7_c00051{width:11.788800pt;}
._8_c00051{width:13.440000pt;}
._a_c00051{width:24.832000pt;}
._9_c00051{width:27.392000pt;}
._3_c00051{width:33.094400pt;}
.fs3_c00051{font-size:34.560000pt;}
.fs2_c00051{font-size:42.560000pt;}
.fs0_c00051{font-size:48.000000pt;}
.fs4_c00051{font-size:53.440000pt;}
.fs1_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y27_c00051{bottom:50.880000pt;}
.y26_c00051{bottom:97.596160pt;}
.y25_c00051{bottom:117.520000pt;}
.y24_c00051{bottom:128.236000pt;}
.y23_c00051{bottom:148.240000pt;}
.y28_c00051{bottom:159.520000pt;}
.y22_c00051{bottom:195.840000pt;}
.y21_c00051{bottom:223.440000pt;}
.y20_c00051{bottom:251.040000pt;}
.y1f_c00051{bottom:278.640000pt;}
.y1e_c00051{bottom:306.240000pt;}
.y1d_c00051{bottom:333.840000pt;}
.y1c_c00051{bottom:361.440000pt;}
.y1b_c00051{bottom:389.040000pt;}
.y1a_c00051{bottom:416.640000pt;}
.y19_c00051{bottom:444.240000pt;}
.y18_c00051{bottom:471.840000pt;}
.y17_c00051{bottom:499.440000pt;}
.y16_c00051{bottom:527.040000pt;}
.y15_c00051{bottom:554.640000pt;}
.y14_c00051{bottom:582.240000pt;}
.y13_c00051{bottom:609.840000pt;}
.y12_c00051{bottom:628.240000pt;}
.y11_c00051{bottom:655.840000pt;}
.y10_c00051{bottom:683.440000pt;}
.yf_c00051{bottom:711.040000pt;}
.ye_c00051{bottom:738.640000pt;}
.yd_c00051{bottom:766.160000pt;}
.yc_c00051{bottom:793.760000pt;}
.yb_c00051{bottom:821.360000pt;}
.ya_c00051{bottom:848.960000pt;}
.y9_c00051{bottom:876.560000pt;}
.y8_c00051{bottom:904.160000pt;}
.y7_c00051{bottom:931.760000pt;}
.y6_c00051{bottom:959.360000pt;}
.y5_c00051{bottom:986.960000pt;}
.y4_c00051{bottom:1005.360000pt;}
.y3_c00051{bottom:1023.036000pt;}
.y2_c00051{bottom:1036.800000pt;}
.y1_c00051{bottom:1064.400000pt;}
.h5_c00051{height:33.918750pt;}
.h2_c00051{height:47.109375pt;}
.h6_c00051{height:52.448437pt;}
.h3_c00051{height:62.812500pt;}
.h4_c00051{height:65.770312pt;}
.h0_c00051{height:1122.560000pt;}
.h1_c00051{height:1122.666667pt;}
.w0_c00051{width:793.840000pt;}
.w1_c00051{width:794.000000pt;}
.x0_c00051{left:0.000000pt;}
.x2_c00051{left:113.440000pt;}
.x1_c00051{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11cbfb7739c7fbd2dc5c4cd8.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00052{vertical-align:-20.880000px;}
.v0_c00052{vertical-align:0.000000px;}
.v1_c00052{vertical-align:27.000000px;}
.ls10_c00052{letter-spacing:-1.008000px;}
.lse_c00052{letter-spacing:-0.576000px;}
.ls13_c00052{letter-spacing:-0.120240px;}
.lsd_c00052{letter-spacing:-0.108000px;}
.ls12_c00052{letter-spacing:-0.060120px;}
.lsc_c00052{letter-spacing:0.000000px;}
.ls2_c00052{letter-spacing:0.072000px;}
.ls3_c00052{letter-spacing:0.079200px;}
.lsb_c00052{letter-spacing:0.120240px;}
.ls6_c00052{letter-spacing:0.144000px;}
.ls14_c00052{letter-spacing:0.180360px;}
.lsf_c00052{letter-spacing:0.191520px;}
.ls11_c00052{letter-spacing:0.432000px;}
.ls5_c00052{letter-spacing:0.720000px;}
.ls7_c00052{letter-spacing:2.664000px;}
.lsa_c00052{letter-spacing:3.667320px;}
.ls8_c00052{letter-spacing:5.040000px;}
.ls4_c00052{letter-spacing:5.428800px;}
.ls9_c00052{letter-spacing:6.480000px;}
.ls1_c00052{letter-spacing:13.680000px;}
.ls0_c00052{letter-spacing:14.040000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00052{word-spacing:-18.072000px;}
.ws1_c00052{word-spacing:-18.000000px;}
.ws0_c00052{word-spacing:-17.424000px;}
.ws2_c00052{word-spacing:-12.161520px;}
.ws4_c00052{word-spacing:-9.720000px;}
.wsd_c00052{word-spacing:-0.432000px;}
.ws2b_c00052{word-spacing:-0.180360px;}
.ws17_c00052{word-spacing:-0.144000px;}
.wsc_c00052{word-spacing:-0.072000px;}
.ws2c_c00052{word-spacing:-0.060120px;}
.ws5_c00052{word-spacing:0.000000px;}
.ws7_c00052{word-spacing:0.162000px;}
.ws2d_c00052{word-spacing:0.180360px;}
.ws6_c00052{word-spacing:0.270000px;}
.ws13_c00052{word-spacing:0.288000px;}
.ws16_c00052{word-spacing:0.720000px;}
.ws1f_c00052{word-spacing:2.088000px;}
.ws1e_c00052{word-spacing:2.160000px;}
.ws1a_c00052{word-spacing:2.448000px;}
.ws15_c00052{word-spacing:2.808000px;}
.ws14_c00052{word-spacing:3.168000px;}
.ws29_c00052{word-spacing:3.727440px;}
.ws19_c00052{word-spacing:3.960000px;}
.ws12_c00052{word-spacing:4.248000px;}
.ws11_c00052{word-spacing:4.320000px;}
.ws23_c00052{word-spacing:4.680000px;}
.ws24_c00052{word-spacing:4.968000px;}
.ws10_c00052{word-spacing:5.040000px;}
.wsf_c00052{word-spacing:5.328000px;}
.ws20_c00052{word-spacing:5.400000px;}
.ws27_c00052{word-spacing:6.408000px;}
.ws26_c00052{word-spacing:6.480000px;}
.ws1c_c00052{word-spacing:7.488000px;}
.ws21_c00052{word-spacing:8.208000px;}
.ws22_c00052{word-spacing:8.280000px;}
.ws1b_c00052{word-spacing:10.440000px;}
.wse_c00052{word-spacing:11.088000px;}
.ws1d_c00052{word-spacing:11.448000px;}
.ws18_c00052{word-spacing:11.520000px;}
.ws25_c00052{word-spacing:12.528000px;}
.wsb_c00052{word-spacing:13.608000px;}
.wsa_c00052{word-spacing:13.680000px;}
.ws2a_c00052{word-spacing:13.887720px;}
.ws8_c00052{word-spacing:13.968000px;}
.ws9_c00052{word-spacing:14.040000px;}
.ws28_c00052{word-spacing:24.048000px;}
._1_c00052{margin-left:-1.058400px;}
._0_c00052{width:1.220400px;}
._3_c00052{width:3.024000px;}
._5_c00052{width:5.040000px;}
._6_c00052{width:6.480000px;}
._4_c00052{width:10.749600px;}
._2_c00052{width:14.220000px;}
.fc0_c00052{color:rgb(0,0,0);}
.fs3_c00052{font-size:38.880000px;}
.fs2_c00052{font-size:47.880000px;}
.fs0_c00052{font-size:54.000000px;}
.fs4_c00052{font-size:60.120000px;}
.fs1_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y29_c00052{bottom:57.240000px;}
.y28_c00052{bottom:115.020000px;}
.y27_c00052{bottom:132.210000px;}
.y26_c00052{bottom:144.261180px;}
.y25_c00052{bottom:161.545680px;}
.y24_c00052{bottom:183.960000px;}
.y2a_c00052{bottom:196.650000px;}
.y23_c00052{bottom:220.320000px;}
.y22_c00052{bottom:251.370000px;}
.y21_c00052{bottom:282.420000px;}
.y20_c00052{bottom:313.470000px;}
.y1f_c00052{bottom:344.520000px;}
.y1e_c00052{bottom:375.570000px;}
.y1d_c00052{bottom:406.620000px;}
.y1c_c00052{bottom:437.670000px;}
.y1b_c00052{bottom:468.720000px;}
.y1a_c00052{bottom:499.770000px;}
.y19_c00052{bottom:530.820000px;}
.y18_c00052{bottom:561.870000px;}
.y17_c00052{bottom:592.920000px;}
.y16_c00052{bottom:623.970000px;}
.y15_c00052{bottom:655.020000px;}
.y14_c00052{bottom:686.070000px;}
.y13_c00052{bottom:717.120000px;}
.y12_c00052{bottom:748.170000px;}
.y11_c00052{bottom:779.220000px;}
.y10_c00052{bottom:799.920000px;}
.yf_c00052{bottom:830.970000px;}
.ye_c00052{bottom:861.930000px;}
.yd_c00052{bottom:892.980000px;}
.yc_c00052{bottom:924.030000px;}
.yb_c00052{bottom:955.080000px;}
.ya_c00052{bottom:986.130000px;}
.y9_c00052{bottom:1017.180000px;}
.y8_c00052{bottom:1048.230000px;}
.y7_c00052{bottom:1079.280000px;}
.y6_c00052{bottom:1110.330000px;}
.y5_c00052{bottom:1131.030000px;}
.y4_c00052{bottom:1150.920000px;}
.y3_c00052{bottom:1166.404500px;}
.y2_c00052{bottom:1181.970000px;}
.y1_c00052{bottom:1197.450000px;}
.h6_c00052{height:38.158594px;}
.h3_c00052{height:52.971680px;}
.h2_c00052{height:52.998047px;}
.h7_c00052{height:59.004492px;}
.h4_c00052{height:70.664062px;}
.h5_c00052{height:73.991602px;}
.h0_c00052{height:1262.880000px;}
.h1_c00052{height:1263.000000px;}
.w0_c00052{width:893.070000px;}
.w1_c00052{width:893.250000px;}
.x0_c00052{left:0.000000px;}
.x3_c00052{left:127.620000px;}
.x2_c00052{left:425.160000px;}
.x1_c00052{left:446.580000px;}
.x4_c00052{left:747.540000px;}
@media print{
.v2_c00052{vertical-align:-18.560000pt;}
.v0_c00052{vertical-align:0.000000pt;}
.v1_c00052{vertical-align:24.000000pt;}
.ls10_c00052{letter-spacing:-0.896000pt;}
.lse_c00052{letter-spacing:-0.512000pt;}
.ls13_c00052{letter-spacing:-0.106880pt;}
.lsd_c00052{letter-spacing:-0.096000pt;}
.ls12_c00052{letter-spacing:-0.053440pt;}
.lsc_c00052{letter-spacing:0.000000pt;}
.ls2_c00052{letter-spacing:0.064000pt;}
.ls3_c00052{letter-spacing:0.070400pt;}
.lsb_c00052{letter-spacing:0.106880pt;}
.ls6_c00052{letter-spacing:0.128000pt;}
.ls14_c00052{letter-spacing:0.160320pt;}
.lsf_c00052{letter-spacing:0.170240pt;}
.ls11_c00052{letter-spacing:0.384000pt;}
.ls5_c00052{letter-spacing:0.640000pt;}
.ls7_c00052{letter-spacing:2.368000pt;}
.lsa_c00052{letter-spacing:3.259840pt;}
.ls8_c00052{letter-spacing:4.480000pt;}
.ls4_c00052{letter-spacing:4.825600pt;}
.ls9_c00052{letter-spacing:5.760000pt;}
.ls1_c00052{letter-spacing:12.160000pt;}
.ls0_c00052{letter-spacing:12.480000pt;}
.ws3_c00052{word-spacing:-16.064000pt;}
.ws1_c00052{word-spacing:-16.000000pt;}
.ws0_c00052{word-spacing:-15.488000pt;}
.ws2_c00052{word-spacing:-10.810240pt;}
.ws4_c00052{word-spacing:-8.640000pt;}
.wsd_c00052{word-spacing:-0.384000pt;}
.ws2b_c00052{word-spacing:-0.160320pt;}
.ws17_c00052{word-spacing:-0.128000pt;}
.wsc_c00052{word-spacing:-0.064000pt;}
.ws2c_c00052{word-spacing:-0.053440pt;}
.ws5_c00052{word-spacing:0.000000pt;}
.ws7_c00052{word-spacing:0.144000pt;}
.ws2d_c00052{word-spacing:0.160320pt;}
.ws6_c00052{word-spacing:0.240000pt;}
.ws13_c00052{word-spacing:0.256000pt;}
.ws16_c00052{word-spacing:0.640000pt;}
.ws1f_c00052{word-spacing:1.856000pt;}
.ws1e_c00052{word-spacing:1.920000pt;}
.ws1a_c00052{word-spacing:2.176000pt;}
.ws15_c00052{word-spacing:2.496000pt;}
.ws14_c00052{word-spacing:2.816000pt;}
.ws29_c00052{word-spacing:3.313280pt;}
.ws19_c00052{word-spacing:3.520000pt;}
.ws12_c00052{word-spacing:3.776000pt;}
.ws11_c00052{word-spacing:3.840000pt;}
.ws23_c00052{word-spacing:4.160000pt;}
.ws24_c00052{word-spacing:4.416000pt;}
.ws10_c00052{word-spacing:4.480000pt;}
.wsf_c00052{word-spacing:4.736000pt;}
.ws20_c00052{word-spacing:4.800000pt;}
.ws27_c00052{word-spacing:5.696000pt;}
.ws26_c00052{word-spacing:5.760000pt;}
.ws1c_c00052{word-spacing:6.656000pt;}
.ws21_c00052{word-spacing:7.296000pt;}
.ws22_c00052{word-spacing:7.360000pt;}
.ws1b_c00052{word-spacing:9.280000pt;}
.wse_c00052{word-spacing:9.856000pt;}
.ws1d_c00052{word-spacing:10.176000pt;}
.ws18_c00052{word-spacing:10.240000pt;}
.ws25_c00052{word-spacing:11.136000pt;}
.wsb_c00052{word-spacing:12.096000pt;}
.wsa_c00052{word-spacing:12.160000pt;}
.ws2a_c00052{word-spacing:12.344640pt;}
.ws8_c00052{word-spacing:12.416000pt;}
.ws9_c00052{word-spacing:12.480000pt;}
.ws28_c00052{word-spacing:21.376000pt;}
._1_c00052{margin-left:-0.940800pt;}
._0_c00052{width:1.084800pt;}
._3_c00052{width:2.688000pt;}
._5_c00052{width:4.480000pt;}
._6_c00052{width:5.760000pt;}
._4_c00052{width:9.555200pt;}
._2_c00052{width:12.640000pt;}
.fs3_c00052{font-size:34.560000pt;}
.fs2_c00052{font-size:42.560000pt;}
.fs0_c00052{font-size:48.000000pt;}
.fs4_c00052{font-size:53.440000pt;}
.fs1_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y29_c00052{bottom:50.880000pt;}
.y28_c00052{bottom:102.240000pt;}
.y27_c00052{bottom:117.520000pt;}
.y26_c00052{bottom:128.232160pt;}
.y25_c00052{bottom:143.596160pt;}
.y24_c00052{bottom:163.520000pt;}
.y2a_c00052{bottom:174.800000pt;}
.y23_c00052{bottom:195.840000pt;}
.y22_c00052{bottom:223.440000pt;}
.y21_c00052{bottom:251.040000pt;}
.y20_c00052{bottom:278.640000pt;}
.y1f_c00052{bottom:306.240000pt;}
.y1e_c00052{bottom:333.840000pt;}
.y1d_c00052{bottom:361.440000pt;}
.y1c_c00052{bottom:389.040000pt;}
.y1b_c00052{bottom:416.640000pt;}
.y1a_c00052{bottom:444.240000pt;}
.y19_c00052{bottom:471.840000pt;}
.y18_c00052{bottom:499.440000pt;}
.y17_c00052{bottom:527.040000pt;}
.y16_c00052{bottom:554.640000pt;}
.y15_c00052{bottom:582.240000pt;}
.y14_c00052{bottom:609.840000pt;}
.y13_c00052{bottom:637.440000pt;}
.y12_c00052{bottom:665.040000pt;}
.y11_c00052{bottom:692.640000pt;}
.y10_c00052{bottom:711.040000pt;}
.yf_c00052{bottom:738.640000pt;}
.ye_c00052{bottom:766.160000pt;}
.yd_c00052{bottom:793.760000pt;}
.yc_c00052{bottom:821.360000pt;}
.yb_c00052{bottom:848.960000pt;}
.ya_c00052{bottom:876.560000pt;}
.y9_c00052{bottom:904.160000pt;}
.y8_c00052{bottom:931.760000pt;}
.y7_c00052{bottom:959.360000pt;}
.y6_c00052{bottom:986.960000pt;}
.y5_c00052{bottom:1005.360000pt;}
.y4_c00052{bottom:1023.040000pt;}
.y3_c00052{bottom:1036.804000pt;}
.y2_c00052{bottom:1050.640000pt;}
.y1_c00052{bottom:1064.400000pt;}
.h6_c00052{height:33.918750pt;}
.h3_c00052{height:47.085938pt;}
.h2_c00052{height:47.109375pt;}
.h7_c00052{height:52.448437pt;}
.h4_c00052{height:62.812500pt;}
.h5_c00052{height:65.770312pt;}
.h0_c00052{height:1122.560000pt;}
.h1_c00052{height:1122.666667pt;}
.w0_c00052{width:793.840000pt;}
.w1_c00052{width:794.000000pt;}
.x0_c00052{left:0.000000pt;}
.x3_c00052{left:113.440000pt;}
.x2_c00052{left:377.920000pt;}
.x1_c00052{left:396.960000pt;}
.x4_c00052{left:664.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_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_dbd1c58bef943db502467a0e.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00053{vertical-align:-61.938000px;}
.v3_c00053{vertical-align:-20.880000px;}
.v0_c00053{vertical-align:0.000000px;}
.v2_c00053{vertical-align:27.000000px;}
.lsb_c00053{letter-spacing:-0.288000px;}
.lse_c00053{letter-spacing:-0.180360px;}
.lsc_c00053{letter-spacing:-0.060120px;}
.ls9_c00053{letter-spacing:0.000000px;}
.ls3_c00053{letter-spacing:0.072000px;}
.ls7_c00053{letter-spacing:0.120240px;}
.ls4_c00053{letter-spacing:0.144000px;}
.lsd_c00053{letter-spacing:0.180360px;}
.lsa_c00053{letter-spacing:0.191520px;}
.ls1_c00053{letter-spacing:2.160000px;}
.ls5_c00053{letter-spacing:2.880000px;}
.ls8_c00053{letter-spacing:3.306600px;}
.ls6_c00053{letter-spacing:8.356680px;}
.ls2_c00053{letter-spacing:10.080000px;}
.ls0_c00053{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00053{word-spacing:-18.144000px;}
.ws1_c00053{word-spacing:-18.072000px;}
.ws3_c00053{word-spacing:-18.000000px;}
.ws5_c00053{word-spacing:-14.969880px;}
.ws6_c00053{word-spacing:-14.849640px;}
.ws0_c00053{word-spacing:-12.161520px;}
.ws4_c00053{word-spacing:-9.720000px;}
.wsd_c00053{word-spacing:-0.432000px;}
.ws20_c00053{word-spacing:-0.360000px;}
.ws8_c00053{word-spacing:-0.162000px;}
.ws15_c00053{word-spacing:-0.072000px;}
.ws31_c00053{word-spacing:-0.060120px;}
.ws7_c00053{word-spacing:0.000000px;}
.ws1c_c00053{word-spacing:0.288000px;}
.ws1b_c00053{word-spacing:0.360000px;}
.ws30_c00053{word-spacing:1.322640px;}
.wsf_c00053{word-spacing:1.440000px;}
.wse_c00053{word-spacing:1.728000px;}
.ws10_c00053{word-spacing:1.800000px;}
.ws22_c00053{word-spacing:2.088000px;}
.ws14_c00053{word-spacing:2.160000px;}
.ws21_c00053{word-spacing:2.448000px;}
.wsb_c00053{word-spacing:2.808000px;}
.ws29_c00053{word-spacing:2.880000px;}
.ws33_c00053{word-spacing:3.006000px;}
.ws34_c00053{word-spacing:3.126240px;}
.ws32_c00053{word-spacing:3.366720px;}
.ws1a_c00053{word-spacing:3.816000px;}
.ws19_c00053{word-spacing:3.888000px;}
.wsa_c00053{word-spacing:4.608000px;}
.ws28_c00053{word-spacing:4.680000px;}
.ws1d_c00053{word-spacing:6.480000px;}
.ws26_c00053{word-spacing:7.776000px;}
.ws12_c00053{word-spacing:7.848000px;}
.ws13_c00053{word-spacing:7.920000px;}
.ws24_c00053{word-spacing:8.136000px;}
.ws2b_c00053{word-spacing:8.176320px;}
.ws25_c00053{word-spacing:8.280000px;}
.ws2a_c00053{word-spacing:8.416800px;}
.ws2c_c00053{word-spacing:8.537040px;}
.ws17_c00053{word-spacing:9.648000px;}
.ws16_c00053{word-spacing:10.080000px;}
.ws18_c00053{word-spacing:11.448000px;}
.wsc_c00053{word-spacing:12.168000px;}
.ws1f_c00053{word-spacing:17.568000px;}
.ws23_c00053{word-spacing:17.640000px;}
.ws2e_c00053{word-spacing:18.276480px;}
.ws2d_c00053{word-spacing:18.516960px;}
.ws2f_c00053{word-spacing:18.637200px;}
.ws27_c00053{word-spacing:20.088000px;}
.ws9_c00053{word-spacing:21.888000px;}
.ws1e_c00053{word-spacing:24.408000px;}
.ws11_c00053{word-spacing:27.216000px;}
._0_c00053{margin-left:-1.382400px;}
._4_c00053{width:1.022400px;}
._2_c00053{width:2.347200px;}
._1_c00053{width:4.752000px;}
._5_c00053{width:9.216000px;}
._3_c00053{width:12.216960px;}
._7_c00053{width:17.913960px;}
._6_c00053{width:20.232000px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs3_c00053{font-size:38.880000px;}
.fs2_c00053{font-size:47.880000px;}
.fs0_c00053{font-size:54.000000px;}
.fs4_c00053{font-size:60.120000px;}
.fs1_c00053{font-size:72.000000px;}
.y0_c00053{bottom:0.000000px;}
.y28_c00053{bottom:57.240000px;}
.y27_c00053{bottom:109.795680px;}
.y26_c00053{bottom:132.210000px;}
.y25_c00053{bottom:149.490000px;}
.y24_c00053{bottom:161.536680px;}
.y23_c00053{bottom:178.731000px;}
.y22_c00053{bottom:196.015500px;}
.y21_c00053{bottom:218.520000px;}
.y29_c00053{bottom:231.210000px;}
.y20_c00053{bottom:282.420000px;}
.y1f_c00053{bottom:313.470000px;}
.y1e_c00053{bottom:344.520000px;}
.y1d_c00053{bottom:375.570000px;}
.y1c_c00053{bottom:406.620000px;}
.y1b_c00053{bottom:437.670000px;}
.y1a_c00053{bottom:468.720000px;}
.y19_c00053{bottom:499.770000px;}
.y18_c00053{bottom:530.820000px;}
.y17_c00053{bottom:561.870000px;}
.y16_c00053{bottom:592.920000px;}
.y15_c00053{bottom:623.970000px;}
.y14_c00053{bottom:655.020000px;}
.y13_c00053{bottom:686.070000px;}
.y12_c00053{bottom:717.120000px;}
.y11_c00053{bottom:748.170000px;}
.y10_c00053{bottom:779.220000px;}
.yf_c00053{bottom:799.920000px;}
.ye_c00053{bottom:830.970000px;}
.yd_c00053{bottom:861.930000px;}
.yc_c00053{bottom:892.980000px;}
.yb_c00053{bottom:924.030000px;}
.ya_c00053{bottom:955.080000px;}
.y9_c00053{bottom:986.130000px;}
.y8_c00053{bottom:1017.180000px;}
.y7_c00053{bottom:1048.230000px;}
.y6_c00053{bottom:1079.280000px;}
.y5_c00053{bottom:1110.330000px;}
.y4_c00053{bottom:1131.030000px;}
.y3_c00053{bottom:1150.915500px;}
.y2_c00053{bottom:1166.400000px;}
.y1_c00053{bottom:1197.450000px;}
.h5_c00053{height:38.158594px;}
.h2_c00053{height:52.998047px;}
.h6_c00053{height:59.004492px;}
.h3_c00053{height:70.664062px;}
.h4_c00053{height:73.991602px;}
.h0_c00053{height:1262.880000px;}
.h1_c00053{height:1263.000000px;}
.w0_c00053{width:893.070000px;}
.w1_c00053{width:893.250000px;}
.x0_c00053{left:0.000000px;}
.x2_c00053{left:127.620000px;}
.x1_c00053{left:446.580000px;}
@media print{
.v1_c00053{vertical-align:-55.056000pt;}
.v3_c00053{vertical-align:-18.560000pt;}
.v0_c00053{vertical-align:0.000000pt;}
.v2_c00053{vertical-align:24.000000pt;}
.lsb_c00053{letter-spacing:-0.256000pt;}
.lse_c00053{letter-spacing:-0.160320pt;}
.lsc_c00053{letter-spacing:-0.053440pt;}
.ls9_c00053{letter-spacing:0.000000pt;}
.ls3_c00053{letter-spacing:0.064000pt;}
.ls7_c00053{letter-spacing:0.106880pt;}
.ls4_c00053{letter-spacing:0.128000pt;}
.lsd_c00053{letter-spacing:0.160320pt;}
.lsa_c00053{letter-spacing:0.170240pt;}
.ls1_c00053{letter-spacing:1.920000pt;}
.ls5_c00053{letter-spacing:2.560000pt;}
.ls8_c00053{letter-spacing:2.939200pt;}
.ls6_c00053{letter-spacing:7.428160pt;}
.ls2_c00053{letter-spacing:8.960000pt;}
.ls0_c00053{letter-spacing:284.016000pt;}
.ws2_c00053{word-spacing:-16.128000pt;}
.ws1_c00053{word-spacing:-16.064000pt;}
.ws3_c00053{word-spacing:-16.000000pt;}
.ws5_c00053{word-spacing:-13.306560pt;}
.ws6_c00053{word-spacing:-13.199680pt;}
.ws0_c00053{word-spacing:-10.810240pt;}
.ws4_c00053{word-spacing:-8.640000pt;}
.wsd_c00053{word-spacing:-0.384000pt;}
.ws20_c00053{word-spacing:-0.320000pt;}
.ws8_c00053{word-spacing:-0.144000pt;}
.ws15_c00053{word-spacing:-0.064000pt;}
.ws31_c00053{word-spacing:-0.053440pt;}
.ws7_c00053{word-spacing:0.000000pt;}
.ws1c_c00053{word-spacing:0.256000pt;}
.ws1b_c00053{word-spacing:0.320000pt;}
.ws30_c00053{word-spacing:1.175680pt;}
.wsf_c00053{word-spacing:1.280000pt;}
.wse_c00053{word-spacing:1.536000pt;}
.ws10_c00053{word-spacing:1.600000pt;}
.ws22_c00053{word-spacing:1.856000pt;}
.ws14_c00053{word-spacing:1.920000pt;}
.ws21_c00053{word-spacing:2.176000pt;}
.wsb_c00053{word-spacing:2.496000pt;}
.ws29_c00053{word-spacing:2.560000pt;}
.ws33_c00053{word-spacing:2.672000pt;}
.ws34_c00053{word-spacing:2.778880pt;}
.ws32_c00053{word-spacing:2.992640pt;}
.ws1a_c00053{word-spacing:3.392000pt;}
.ws19_c00053{word-spacing:3.456000pt;}
.wsa_c00053{word-spacing:4.096000pt;}
.ws28_c00053{word-spacing:4.160000pt;}
.ws1d_c00053{word-spacing:5.760000pt;}
.ws26_c00053{word-spacing:6.912000pt;}
.ws12_c00053{word-spacing:6.976000pt;}
.ws13_c00053{word-spacing:7.040000pt;}
.ws24_c00053{word-spacing:7.232000pt;}
.ws2b_c00053{word-spacing:7.267840pt;}
.ws25_c00053{word-spacing:7.360000pt;}
.ws2a_c00053{word-spacing:7.481600pt;}
.ws2c_c00053{word-spacing:7.588480pt;}
.ws17_c00053{word-spacing:8.576000pt;}
.ws16_c00053{word-spacing:8.960000pt;}
.ws18_c00053{word-spacing:10.176000pt;}
.wsc_c00053{word-spacing:10.816000pt;}
.ws1f_c00053{word-spacing:15.616000pt;}
.ws23_c00053{word-spacing:15.680000pt;}
.ws2e_c00053{word-spacing:16.245760pt;}
.ws2d_c00053{word-spacing:16.459520pt;}
.ws2f_c00053{word-spacing:16.566400pt;}
.ws27_c00053{word-spacing:17.856000pt;}
.ws9_c00053{word-spacing:19.456000pt;}
.ws1e_c00053{word-spacing:21.696000pt;}
.ws11_c00053{word-spacing:24.192000pt;}
._0_c00053{margin-left:-1.228800pt;}
._4_c00053{width:0.908800pt;}
._2_c00053{width:2.086400pt;}
._1_c00053{width:4.224000pt;}
._5_c00053{width:8.192000pt;}
._3_c00053{width:10.859520pt;}
._7_c00053{width:15.923520pt;}
._6_c00053{width:17.984000pt;}
.fs3_c00053{font-size:34.560000pt;}
.fs2_c00053{font-size:42.560000pt;}
.fs0_c00053{font-size:48.000000pt;}
.fs4_c00053{font-size:53.440000pt;}
.fs1_c00053{font-size:64.000000pt;}
.y0_c00053{bottom:0.000000pt;}
.y28_c00053{bottom:50.880000pt;}
.y27_c00053{bottom:97.596160pt;}
.y26_c00053{bottom:117.520000pt;}
.y25_c00053{bottom:132.880000pt;}
.y24_c00053{bottom:143.588160pt;}
.y23_c00053{bottom:158.872000pt;}
.y22_c00053{bottom:174.236000pt;}
.y21_c00053{bottom:194.240000pt;}
.y29_c00053{bottom:205.520000pt;}
.y20_c00053{bottom:251.040000pt;}
.y1f_c00053{bottom:278.640000pt;}
.y1e_c00053{bottom:306.240000pt;}
.y1d_c00053{bottom:333.840000pt;}
.y1c_c00053{bottom:361.440000pt;}
.y1b_c00053{bottom:389.040000pt;}
.y1a_c00053{bottom:416.640000pt;}
.y19_c00053{bottom:444.240000pt;}
.y18_c00053{bottom:471.840000pt;}
.y17_c00053{bottom:499.440000pt;}
.y16_c00053{bottom:527.040000pt;}
.y15_c00053{bottom:554.640000pt;}
.y14_c00053{bottom:582.240000pt;}
.y13_c00053{bottom:609.840000pt;}
.y12_c00053{bottom:637.440000pt;}
.y11_c00053{bottom:665.040000pt;}
.y10_c00053{bottom:692.640000pt;}
.yf_c00053{bottom:711.040000pt;}
.ye_c00053{bottom:738.640000pt;}
.yd_c00053{bottom:766.160000pt;}
.yc_c00053{bottom:793.760000pt;}
.yb_c00053{bottom:821.360000pt;}
.ya_c00053{bottom:848.960000pt;}
.y9_c00053{bottom:876.560000pt;}
.y8_c00053{bottom:904.160000pt;}
.y7_c00053{bottom:931.760000pt;}
.y6_c00053{bottom:959.360000pt;}
.y5_c00053{bottom:986.960000pt;}
.y4_c00053{bottom:1005.360000pt;}
.y3_c00053{bottom:1023.036000pt;}
.y2_c00053{bottom:1036.800000pt;}
.y1_c00053{bottom:1064.400000pt;}
.h5_c00053{height:33.918750pt;}
.h2_c00053{height:47.109375pt;}
.h6_c00053{height:52.448437pt;}
.h3_c00053{height:62.812500pt;}
.h4_c00053{height:65.770313pt;}
.h0_c00053{height:1122.560000pt;}
.h1_c00053{height:1122.666667pt;}
.w0_c00053{width:793.840000pt;}
.w1_c00053{width:794.000000pt;}
.x0_c00053{left:0.000000pt;}
.x2_c00053{left:113.440000pt;}
.x1_c00053{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_877f9162ce8e8f43e241ea8c.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.lse_c00054{letter-spacing:-0.360000px;}
.lsd_c00054{letter-spacing:-0.288000px;}
.lsc_c00054{letter-spacing:-0.216000px;}
.ls10_c00054{letter-spacing:-0.144000px;}
.lsb_c00054{letter-spacing:-0.108000px;}
.lsf_c00054{letter-spacing:-0.072000px;}
.lsa_c00054{letter-spacing:0.000000px;}
.ls1_c00054{letter-spacing:0.072000px;}
.ls2_c00054{letter-spacing:0.144000px;}
.ls8_c00054{letter-spacing:0.720000px;}
.ls6_c00054{letter-spacing:2.520000px;}
.ls0_c00054{letter-spacing:2.880000px;}
.ls4_c00054{letter-spacing:4.327200px;}
.ls9_c00054{letter-spacing:5.040000px;}
.ls7_c00054{letter-spacing:6.840000px;}
.ls5_c00054{letter-spacing:7.200000px;}
.ls3_c00054{letter-spacing:9.720000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00054{word-spacing:-18.144000px;}
.ws0_c00054{word-spacing:-18.072000px;}
.ws2_c00054{word-spacing:-18.000000px;}
.ws6_c00054{word-spacing:-17.856000px;}
.ws5_c00054{word-spacing:-17.784000px;}
.ws3_c00054{word-spacing:-17.712000px;}
.ws4_c00054{word-spacing:-17.640000px;}
.wsb_c00054{word-spacing:-0.072000px;}
.ws7_c00054{word-spacing:0.000000px;}
.ws2b_c00054{word-spacing:0.072000px;}
.ws9_c00054{word-spacing:0.162000px;}
.ws8_c00054{word-spacing:0.270000px;}
.ws25_c00054{word-spacing:0.360000px;}
.ws33_c00054{word-spacing:0.648000px;}
.ws13_c00054{word-spacing:0.720000px;}
.ws17_c00054{word-spacing:1.008000px;}
.ws1a_c00054{word-spacing:1.080000px;}
.ws32_c00054{word-spacing:2.016000px;}
.ws1e_c00054{word-spacing:2.088000px;}
.ws24_c00054{word-spacing:2.160000px;}
.ws1d_c00054{word-spacing:2.448000px;}
.ws23_c00054{word-spacing:2.520000px;}
.ws1f_c00054{word-spacing:2.736000px;}
.wse_c00054{word-spacing:2.880000px;}
.wsd_c00054{word-spacing:3.096000px;}
.wsf_c00054{word-spacing:3.168000px;}
.wsc_c00054{word-spacing:3.240000px;}
.ws18_c00054{word-spacing:3.888000px;}
.ws19_c00054{word-spacing:4.248000px;}
.ws34_c00054{word-spacing:4.680000px;}
.ws35_c00054{word-spacing:5.040000px;}
.ws2a_c00054{word-spacing:6.696000px;}
.ws29_c00054{word-spacing:6.840000px;}
.ws21_c00054{word-spacing:7.416000px;}
.ws20_c00054{word-spacing:7.488000px;}
.ws22_c00054{word-spacing:7.560000px;}
.ws10_c00054{word-spacing:7.920000px;}
.ws2c_c00054{word-spacing:8.208000px;}
.ws2d_c00054{word-spacing:8.280000px;}
.ws12_c00054{word-spacing:9.360000px;}
.ws11_c00054{word-spacing:9.720000px;}
.wsa_c00054{word-spacing:13.248000px;}
.ws16_c00054{word-spacing:15.048000px;}
.ws15_c00054{word-spacing:15.120000px;}
.ws28_c00054{word-spacing:16.056000px;}
.ws26_c00054{word-spacing:16.128000px;}
.ws27_c00054{word-spacing:16.200000px;}
.ws2f_c00054{word-spacing:16.488000px;}
.ws2e_c00054{word-spacing:16.560000px;}
.ws31_c00054{word-spacing:17.640000px;}
.ws1c_c00054{word-spacing:20.520000px;}
.ws1b_c00054{word-spacing:20.880000px;}
.ws30_c00054{word-spacing:23.328000px;}
.ws37_c00054{word-spacing:28.368000px;}
.ws36_c00054{word-spacing:28.440000px;}
.ws14_c00054{word-spacing:30.096000px;}
._1_c00054{margin-left:-1.058400px;}
._0_c00054{width:1.220400px;}
._3_c00054{width:2.628000px;}
._6_c00054{width:4.536000px;}
._4_c00054{width:6.768000px;}
._5_c00054{width:8.355600px;}
._2_c00054{width:9.604800px;}
.fc0_c00054{color:rgb(0,0,0);}
.fs0_c00054{font-size:54.000000px;}
.fs1_c00054{font-size:72.000000px;}
.y0_c00054{bottom:0.000000px;}
.y27_c00054{bottom:57.240000px;}
.y26_c00054{bottom:127.170000px;}
.y25_c00054{bottom:158.220000px;}
.y24_c00054{bottom:189.270000px;}
.y23_c00054{bottom:220.320000px;}
.y22_c00054{bottom:251.370000px;}
.y21_c00054{bottom:282.420000px;}
.y20_c00054{bottom:313.470000px;}
.y1f_c00054{bottom:344.520000px;}
.y1e_c00054{bottom:375.570000px;}
.y1d_c00054{bottom:406.620000px;}
.y1c_c00054{bottom:437.670000px;}
.y1b_c00054{bottom:468.720000px;}
.y1a_c00054{bottom:499.770000px;}
.y19_c00054{bottom:530.820000px;}
.y18_c00054{bottom:561.870000px;}
.y17_c00054{bottom:592.920000px;}
.y16_c00054{bottom:623.970000px;}
.y15_c00054{bottom:655.020000px;}
.y14_c00054{bottom:675.720000px;}
.y13_c00054{bottom:706.770000px;}
.y12_c00054{bottom:737.820000px;}
.y11_c00054{bottom:768.870000px;}
.y10_c00054{bottom:799.920000px;}
.yf_c00054{bottom:830.970000px;}
.ye_c00054{bottom:861.930000px;}
.yd_c00054{bottom:892.980000px;}
.yc_c00054{bottom:924.030000px;}
.yb_c00054{bottom:955.080000px;}
.ya_c00054{bottom:986.130000px;}
.y9_c00054{bottom:1017.180000px;}
.y8_c00054{bottom:1048.230000px;}
.y7_c00054{bottom:1079.280000px;}
.y6_c00054{bottom:1110.330000px;}
.y5_c00054{bottom:1131.030000px;}
.y4_c00054{bottom:1150.920000px;}
.y3_c00054{bottom:1166.404500px;}
.y2_c00054{bottom:1181.970000px;}
.y1_c00054{bottom:1197.450000px;}
.h3_c00054{height:52.971680px;}
.h2_c00054{height:52.998047px;}
.h4_c00054{height:70.664062px;}
.h0_c00054{height:1262.880000px;}
.h1_c00054{height:1263.000000px;}
.w0_c00054{width:893.070000px;}
.w1_c00054{width:893.250000px;}
.x0_c00054{left:0.000000px;}
.x3_c00054{left:127.620000px;}
.x2_c00054{left:425.160000px;}
.x1_c00054{left:446.580000px;}
.x4_c00054{left:747.540000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.lse_c00054{letter-spacing:-0.320000pt;}
.lsd_c00054{letter-spacing:-0.256000pt;}
.lsc_c00054{letter-spacing:-0.192000pt;}
.ls10_c00054{letter-spacing:-0.128000pt;}
.lsb_c00054{letter-spacing:-0.096000pt;}
.lsf_c00054{letter-spacing:-0.064000pt;}
.lsa_c00054{letter-spacing:0.000000pt;}
.ls1_c00054{letter-spacing:0.064000pt;}
.ls2_c00054{letter-spacing:0.128000pt;}
.ls8_c00054{letter-spacing:0.640000pt;}
.ls6_c00054{letter-spacing:2.240000pt;}
.ls0_c00054{letter-spacing:2.560000pt;}
.ls4_c00054{letter-spacing:3.846400pt;}
.ls9_c00054{letter-spacing:4.480000pt;}
.ls7_c00054{letter-spacing:6.080000pt;}
.ls5_c00054{letter-spacing:6.400000pt;}
.ls3_c00054{letter-spacing:8.640000pt;}
.ws1_c00054{word-spacing:-16.128000pt;}
.ws0_c00054{word-spacing:-16.064000pt;}
.ws2_c00054{word-spacing:-16.000000pt;}
.ws6_c00054{word-spacing:-15.872000pt;}
.ws5_c00054{word-spacing:-15.808000pt;}
.ws3_c00054{word-spacing:-15.744000pt;}
.ws4_c00054{word-spacing:-15.680000pt;}
.wsb_c00054{word-spacing:-0.064000pt;}
.ws7_c00054{word-spacing:0.000000pt;}
.ws2b_c00054{word-spacing:0.064000pt;}
.ws9_c00054{word-spacing:0.144000pt;}
.ws8_c00054{word-spacing:0.240000pt;}
.ws25_c00054{word-spacing:0.320000pt;}
.ws33_c00054{word-spacing:0.576000pt;}
.ws13_c00054{word-spacing:0.640000pt;}
.ws17_c00054{word-spacing:0.896000pt;}
.ws1a_c00054{word-spacing:0.960000pt;}
.ws32_c00054{word-spacing:1.792000pt;}
.ws1e_c00054{word-spacing:1.856000pt;}
.ws24_c00054{word-spacing:1.920000pt;}
.ws1d_c00054{word-spacing:2.176000pt;}
.ws23_c00054{word-spacing:2.240000pt;}
.ws1f_c00054{word-spacing:2.432000pt;}
.wse_c00054{word-spacing:2.560000pt;}
.wsd_c00054{word-spacing:2.752000pt;}
.wsf_c00054{word-spacing:2.816000pt;}
.wsc_c00054{word-spacing:2.880000pt;}
.ws18_c00054{word-spacing:3.456000pt;}
.ws19_c00054{word-spacing:3.776000pt;}
.ws34_c00054{word-spacing:4.160000pt;}
.ws35_c00054{word-spacing:4.480000pt;}
.ws2a_c00054{word-spacing:5.952000pt;}
.ws29_c00054{word-spacing:6.080000pt;}
.ws21_c00054{word-spacing:6.592000pt;}
.ws20_c00054{word-spacing:6.656000pt;}
.ws22_c00054{word-spacing:6.720000pt;}
.ws10_c00054{word-spacing:7.040000pt;}
.ws2c_c00054{word-spacing:7.296000pt;}
.ws2d_c00054{word-spacing:7.360000pt;}
.ws12_c00054{word-spacing:8.320000pt;}
.ws11_c00054{word-spacing:8.640000pt;}
.wsa_c00054{word-spacing:11.776000pt;}
.ws16_c00054{word-spacing:13.376000pt;}
.ws15_c00054{word-spacing:13.440000pt;}
.ws28_c00054{word-spacing:14.272000pt;}
.ws26_c00054{word-spacing:14.336000pt;}
.ws27_c00054{word-spacing:14.400000pt;}
.ws2f_c00054{word-spacing:14.656000pt;}
.ws2e_c00054{word-spacing:14.720000pt;}
.ws31_c00054{word-spacing:15.680000pt;}
.ws1c_c00054{word-spacing:18.240000pt;}
.ws1b_c00054{word-spacing:18.560000pt;}
.ws30_c00054{word-spacing:20.736000pt;}
.ws37_c00054{word-spacing:25.216000pt;}
.ws36_c00054{word-spacing:25.280000pt;}
.ws14_c00054{word-spacing:26.752000pt;}
._1_c00054{margin-left:-0.940800pt;}
._0_c00054{width:1.084800pt;}
._3_c00054{width:2.336000pt;}
._6_c00054{width:4.032000pt;}
._4_c00054{width:6.016000pt;}
._5_c00054{width:7.427200pt;}
._2_c00054{width:8.537600pt;}
.fs0_c00054{font-size:48.000000pt;}
.fs1_c00054{font-size:64.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y27_c00054{bottom:50.880000pt;}
.y26_c00054{bottom:113.040000pt;}
.y25_c00054{bottom:140.640000pt;}
.y24_c00054{bottom:168.240000pt;}
.y23_c00054{bottom:195.840000pt;}
.y22_c00054{bottom:223.440000pt;}
.y21_c00054{bottom:251.040000pt;}
.y20_c00054{bottom:278.640000pt;}
.y1f_c00054{bottom:306.240000pt;}
.y1e_c00054{bottom:333.840000pt;}
.y1d_c00054{bottom:361.440000pt;}
.y1c_c00054{bottom:389.040000pt;}
.y1b_c00054{bottom:416.640000pt;}
.y1a_c00054{bottom:444.240000pt;}
.y19_c00054{bottom:471.840000pt;}
.y18_c00054{bottom:499.440000pt;}
.y17_c00054{bottom:527.040000pt;}
.y16_c00054{bottom:554.640000pt;}
.y15_c00054{bottom:582.240000pt;}
.y14_c00054{bottom:600.640000pt;}
.y13_c00054{bottom:628.240000pt;}
.y12_c00054{bottom:655.840000pt;}
.y11_c00054{bottom:683.440000pt;}
.y10_c00054{bottom:711.040000pt;}
.yf_c00054{bottom:738.640000pt;}
.ye_c00054{bottom:766.160000pt;}
.yd_c00054{bottom:793.760000pt;}
.yc_c00054{bottom:821.360000pt;}
.yb_c00054{bottom:848.960000pt;}
.ya_c00054{bottom:876.560000pt;}
.y9_c00054{bottom:904.160000pt;}
.y8_c00054{bottom:931.760000pt;}
.y7_c00054{bottom:959.360000pt;}
.y6_c00054{bottom:986.960000pt;}
.y5_c00054{bottom:1005.360000pt;}
.y4_c00054{bottom:1023.040000pt;}
.y3_c00054{bottom:1036.804000pt;}
.y2_c00054{bottom:1050.640000pt;}
.y1_c00054{bottom:1064.400000pt;}
.h3_c00054{height:47.085938pt;}
.h2_c00054{height:47.109375pt;}
.h4_c00054{height:62.812500pt;}
.h0_c00054{height:1122.560000pt;}
.h1_c00054{height:1122.666667pt;}
.w0_c00054{width:793.840000pt;}
.w1_c00054{width:794.000000pt;}
.x0_c00054{left:0.000000pt;}
.x3_c00054{left:113.440000pt;}
.x2_c00054{left:377.920000pt;}
.x1_c00054{left:396.960000pt;}
.x4_c00054{left:664.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_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_92ebc9d0b9db08243292c999.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00055{vertical-align:-61.938000px;}
.v3_c00055{vertical-align:-20.880000px;}
.v0_c00055{vertical-align:0.000000px;}
.v2_c00055{vertical-align:27.000000px;}
.ls10_c00055{letter-spacing:-0.480960px;}
.lsa_c00055{letter-spacing:-0.288000px;}
.lsb_c00055{letter-spacing:-0.216000px;}
.lsf_c00055{letter-spacing:-0.120240px;}
.lsd_c00055{letter-spacing:-0.060120px;}
.ls9_c00055{letter-spacing:0.000000px;}
.ls1_c00055{letter-spacing:0.072000px;}
.ls4_c00055{letter-spacing:0.144000px;}
.lse_c00055{letter-spacing:0.180360px;}
.lsc_c00055{letter-spacing:0.191520px;}
.ls2_c00055{letter-spacing:1.080000px;}
.ls8_c00055{letter-spacing:5.400000px;}
.ls3_c00055{letter-spacing:11.520000px;}
.ls7_c00055{letter-spacing:15.840000px;}
.ls5_c00055{letter-spacing:18.360000px;}
.ls6_c00055{letter-spacing:19.440000px;}
.ls0_c00055{letter-spacing:319.518000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:-18.072000px;}
.ws2_c00055{word-spacing:-18.000000px;}
.ws1_c00055{word-spacing:-17.712000px;}
.ws3_c00055{word-spacing:-12.161520px;}
.ws4_c00055{word-spacing:-9.720000px;}
.ws33_c00055{word-spacing:-0.180360px;}
.ws6_c00055{word-spacing:-0.162000px;}
.ws25_c00055{word-spacing:-0.144000px;}
.ws9_c00055{word-spacing:-0.072000px;}
.ws32_c00055{word-spacing:-0.060120px;}
.ws5_c00055{word-spacing:0.000000px;}
.ws3a_c00055{word-spacing:0.060120px;}
.ws15_c00055{word-spacing:0.216000px;}
.ws8_c00055{word-spacing:0.288000px;}
.ws36_c00055{word-spacing:0.480960px;}
.ws11_c00055{word-spacing:0.936000px;}
.ws12_c00055{word-spacing:1.008000px;}
.ws13_c00055{word-spacing:1.080000px;}
.ws1e_c00055{word-spacing:1.440000px;}
.ws2e_c00055{word-spacing:2.088000px;}
.ws35_c00055{word-spacing:3.126240px;}
.ws34_c00055{word-spacing:3.426840px;}
.ws3c_c00055{word-spacing:3.486960px;}
.ws19_c00055{word-spacing:3.888000px;}
.ws1b_c00055{word-spacing:3.960000px;}
.ws3b_c00055{word-spacing:4.208400px;}
.ws18_c00055{word-spacing:4.320000px;}
.ws38_c00055{word-spacing:4.448880px;}
.ws39_c00055{word-spacing:4.509000px;}
.ws2c_c00055{word-spacing:5.328000px;}
.ws2d_c00055{word-spacing:5.400000px;}
.ws37_c00055{word-spacing:5.651280px;}
.wsa_c00055{word-spacing:6.048000px;}
.wsb_c00055{word-spacing:6.120000px;}
.ws1d_c00055{word-spacing:6.336000px;}
.ws1c_c00055{word-spacing:6.840000px;}
.ws2f_c00055{word-spacing:7.695360px;}
.ws22_c00055{word-spacing:8.208000px;}
.ws10_c00055{word-spacing:8.856000px;}
.wsf_c00055{word-spacing:8.928000px;}
.ws29_c00055{word-spacing:10.728000px;}
.ws27_c00055{word-spacing:11.088000px;}
.ws28_c00055{word-spacing:11.160000px;}
.ws14_c00055{word-spacing:11.520000px;}
.ws1f_c00055{word-spacing:11.808000px;}
.ws7_c00055{word-spacing:11.880000px;}
.ws30_c00055{word-spacing:12.144240px;}
.ws3d_c00055{word-spacing:13.226400px;}
.ws31_c00055{word-spacing:13.466880px;}
.ws2b_c00055{word-spacing:15.768000px;}
.ws2a_c00055{word-spacing:15.840000px;}
.ws20_c00055{word-spacing:18.288000px;}
.ws21_c00055{word-spacing:18.360000px;}
.ws26_c00055{word-spacing:19.008000px;}
.ws24_c00055{word-spacing:19.368000px;}
.ws23_c00055{word-spacing:19.440000px;}
.ws17_c00055{word-spacing:24.768000px;}
.wsc_c00055{word-spacing:25.488000px;}
.wsd_c00055{word-spacing:25.560000px;}
.wse_c00055{word-spacing:25.848000px;}
.ws1a_c00055{word-spacing:26.640000px;}
.ws16_c00055{word-spacing:42.120000px;}
._0_c00055{margin-left:-1.159200px;}
._1_c00055{width:1.000800px;}
._4_c00055{width:3.096000px;}
._9_c00055{width:4.470120px;}
._8_c00055{width:5.544000px;}
._2_c00055{width:11.520000px;}
._7_c00055{width:19.382400px;}
._5_c00055{width:24.816960px;}
._6_c00055{width:26.814240px;}
._3_c00055{width:42.552000px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs3_c00055{font-size:38.880000px;}
.fs2_c00055{font-size:47.880000px;}
.fs0_c00055{font-size:54.000000px;}
.fs4_c00055{font-size:60.120000px;}
.fs1_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y29_c00055{bottom:57.240000px;}
.y28_c00055{bottom:109.777860px;}
.y27_c00055{bottom:126.972180px;}
.y26_c00055{bottom:144.256680px;}
.y25_c00055{bottom:161.541180px;}
.y24_c00055{bottom:178.735500px;}
.y23_c00055{bottom:201.240000px;}
.y22_c00055{bottom:213.286680px;}
.y21_c00055{bottom:230.481000px;}
.y20_c00055{bottom:247.765500px;}
.y1f_c00055{bottom:270.270000px;}
.y2a_c00055{bottom:282.960000px;}
.y1e_c00055{bottom:334.170000px;}
.y1d_c00055{bottom:365.220000px;}
.y1c_c00055{bottom:396.270000px;}
.y1b_c00055{bottom:427.320000px;}
.y1a_c00055{bottom:458.370000px;}
.y19_c00055{bottom:489.420000px;}
.y18_c00055{bottom:520.470000px;}
.y17_c00055{bottom:551.520000px;}
.y16_c00055{bottom:582.570000px;}
.y15_c00055{bottom:613.620000px;}
.y14_c00055{bottom:644.670000px;}
.y13_c00055{bottom:675.720000px;}
.y12_c00055{bottom:706.770000px;}
.y11_c00055{bottom:737.820000px;}
.y10_c00055{bottom:768.870000px;}
.yf_c00055{bottom:799.920000px;}
.ye_c00055{bottom:830.970000px;}
.yd_c00055{bottom:861.930000px;}
.yc_c00055{bottom:892.980000px;}
.yb_c00055{bottom:924.030000px;}
.ya_c00055{bottom:955.080000px;}
.y9_c00055{bottom:986.130000px;}
.y8_c00055{bottom:1017.180000px;}
.y7_c00055{bottom:1048.230000px;}
.y6_c00055{bottom:1079.280000px;}
.y5_c00055{bottom:1110.330000px;}
.y4_c00055{bottom:1131.030000px;}
.y3_c00055{bottom:1150.915500px;}
.y2_c00055{bottom:1166.400000px;}
.y1_c00055{bottom:1197.450000px;}
.h5_c00055{height:38.158594px;}
.h2_c00055{height:52.998047px;}
.h6_c00055{height:59.004492px;}
.h3_c00055{height:70.664062px;}
.h4_c00055{height:73.991602px;}
.h0_c00055{height:1262.880000px;}
.h1_c00055{height:1263.000000px;}
.w0_c00055{width:893.070000px;}
.w1_c00055{width:893.250000px;}
.x0_c00055{left:0.000000px;}
.x2_c00055{left:127.620000px;}
.x1_c00055{left:446.580000px;}
@media print{
.v1_c00055{vertical-align:-55.056000pt;}
.v3_c00055{vertical-align:-18.560000pt;}
.v0_c00055{vertical-align:0.000000pt;}
.v2_c00055{vertical-align:24.000000pt;}
.ls10_c00055{letter-spacing:-0.427520pt;}
.lsa_c00055{letter-spacing:-0.256000pt;}
.lsb_c00055{letter-spacing:-0.192000pt;}
.lsf_c00055{letter-spacing:-0.106880pt;}
.lsd_c00055{letter-spacing:-0.053440pt;}
.ls9_c00055{letter-spacing:0.000000pt;}
.ls1_c00055{letter-spacing:0.064000pt;}
.ls4_c00055{letter-spacing:0.128000pt;}
.lse_c00055{letter-spacing:0.160320pt;}
.lsc_c00055{letter-spacing:0.170240pt;}
.ls2_c00055{letter-spacing:0.960000pt;}
.ls8_c00055{letter-spacing:4.800000pt;}
.ls3_c00055{letter-spacing:10.240000pt;}
.ls7_c00055{letter-spacing:14.080000pt;}
.ls5_c00055{letter-spacing:16.320000pt;}
.ls6_c00055{letter-spacing:17.280000pt;}
.ls0_c00055{letter-spacing:284.016000pt;}
.ws0_c00055{word-spacing:-16.064000pt;}
.ws2_c00055{word-spacing:-16.000000pt;}
.ws1_c00055{word-spacing:-15.744000pt;}
.ws3_c00055{word-spacing:-10.810240pt;}
.ws4_c00055{word-spacing:-8.640000pt;}
.ws33_c00055{word-spacing:-0.160320pt;}
.ws6_c00055{word-spacing:-0.144000pt;}
.ws25_c00055{word-spacing:-0.128000pt;}
.ws9_c00055{word-spacing:-0.064000pt;}
.ws32_c00055{word-spacing:-0.053440pt;}
.ws5_c00055{word-spacing:0.000000pt;}
.ws3a_c00055{word-spacing:0.053440pt;}
.ws15_c00055{word-spacing:0.192000pt;}
.ws8_c00055{word-spacing:0.256000pt;}
.ws36_c00055{word-spacing:0.427520pt;}
.ws11_c00055{word-spacing:0.832000pt;}
.ws12_c00055{word-spacing:0.896000pt;}
.ws13_c00055{word-spacing:0.960000pt;}
.ws1e_c00055{word-spacing:1.280000pt;}
.ws2e_c00055{word-spacing:1.856000pt;}
.ws35_c00055{word-spacing:2.778880pt;}
.ws34_c00055{word-spacing:3.046080pt;}
.ws3c_c00055{word-spacing:3.099520pt;}
.ws19_c00055{word-spacing:3.456000pt;}
.ws1b_c00055{word-spacing:3.520000pt;}
.ws3b_c00055{word-spacing:3.740800pt;}
.ws18_c00055{word-spacing:3.840000pt;}
.ws38_c00055{word-spacing:3.954560pt;}
.ws39_c00055{word-spacing:4.008000pt;}
.ws2c_c00055{word-spacing:4.736000pt;}
.ws2d_c00055{word-spacing:4.800000pt;}
.ws37_c00055{word-spacing:5.023360pt;}
.wsa_c00055{word-spacing:5.376000pt;}
.wsb_c00055{word-spacing:5.440000pt;}
.ws1d_c00055{word-spacing:5.632000pt;}
.ws1c_c00055{word-spacing:6.080000pt;}
.ws2f_c00055{word-spacing:6.840320pt;}
.ws22_c00055{word-spacing:7.296000pt;}
.ws10_c00055{word-spacing:7.872000pt;}
.wsf_c00055{word-spacing:7.936000pt;}
.ws29_c00055{word-spacing:9.536000pt;}
.ws27_c00055{word-spacing:9.856000pt;}
.ws28_c00055{word-spacing:9.920000pt;}
.ws14_c00055{word-spacing:10.240000pt;}
.ws1f_c00055{word-spacing:10.496000pt;}
.ws7_c00055{word-spacing:10.560000pt;}
.ws30_c00055{word-spacing:10.794880pt;}
.ws3d_c00055{word-spacing:11.756800pt;}
.ws31_c00055{word-spacing:11.970560pt;}
.ws2b_c00055{word-spacing:14.016000pt;}
.ws2a_c00055{word-spacing:14.080000pt;}
.ws20_c00055{word-spacing:16.256000pt;}
.ws21_c00055{word-spacing:16.320000pt;}
.ws26_c00055{word-spacing:16.896000pt;}
.ws24_c00055{word-spacing:17.216000pt;}
.ws23_c00055{word-spacing:17.280000pt;}
.ws17_c00055{word-spacing:22.016000pt;}
.wsc_c00055{word-spacing:22.656000pt;}
.wsd_c00055{word-spacing:22.720000pt;}
.wse_c00055{word-spacing:22.976000pt;}
.ws1a_c00055{word-spacing:23.680000pt;}
.ws16_c00055{word-spacing:37.440000pt;}
._0_c00055{margin-left:-1.030400pt;}
._1_c00055{width:0.889600pt;}
._4_c00055{width:2.752000pt;}
._9_c00055{width:3.973440pt;}
._8_c00055{width:4.928000pt;}
._2_c00055{width:10.240000pt;}
._7_c00055{width:17.228800pt;}
._5_c00055{width:22.059520pt;}
._6_c00055{width:23.834880pt;}
._3_c00055{width:37.824000pt;}
.fs3_c00055{font-size:34.560000pt;}
.fs2_c00055{font-size:42.560000pt;}
.fs0_c00055{font-size:48.000000pt;}
.fs4_c00055{font-size:53.440000pt;}
.fs1_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y29_c00055{bottom:50.880000pt;}
.y28_c00055{bottom:97.580320pt;}
.y27_c00055{bottom:112.864160pt;}
.y26_c00055{bottom:128.228160pt;}
.y25_c00055{bottom:143.592160pt;}
.y24_c00055{bottom:158.876000pt;}
.y23_c00055{bottom:178.880000pt;}
.y22_c00055{bottom:189.588160pt;}
.y21_c00055{bottom:204.872000pt;}
.y20_c00055{bottom:220.236000pt;}
.y1f_c00055{bottom:240.240000pt;}
.y2a_c00055{bottom:251.520000pt;}
.y1e_c00055{bottom:297.040000pt;}
.y1d_c00055{bottom:324.640000pt;}
.y1c_c00055{bottom:352.240000pt;}
.y1b_c00055{bottom:379.840000pt;}
.y1a_c00055{bottom:407.440000pt;}
.y19_c00055{bottom:435.040000pt;}
.y18_c00055{bottom:462.640000pt;}
.y17_c00055{bottom:490.240000pt;}
.y16_c00055{bottom:517.840000pt;}
.y15_c00055{bottom:545.440000pt;}
.y14_c00055{bottom:573.040000pt;}
.y13_c00055{bottom:600.640000pt;}
.y12_c00055{bottom:628.240000pt;}
.y11_c00055{bottom:655.840000pt;}
.y10_c00055{bottom:683.440000pt;}
.yf_c00055{bottom:711.040000pt;}
.ye_c00055{bottom:738.640000pt;}
.yd_c00055{bottom:766.160000pt;}
.yc_c00055{bottom:793.760000pt;}
.yb_c00055{bottom:821.360000pt;}
.ya_c00055{bottom:848.960000pt;}
.y9_c00055{bottom:876.560000pt;}
.y8_c00055{bottom:904.160000pt;}
.y7_c00055{bottom:931.760000pt;}
.y6_c00055{bottom:959.360000pt;}
.y5_c00055{bottom:986.960000pt;}
.y4_c00055{bottom:1005.360000pt;}
.y3_c00055{bottom:1023.036000pt;}
.y2_c00055{bottom:1036.800000pt;}
.y1_c00055{bottom:1064.400000pt;}
.h5_c00055{height:33.918750pt;}
.h2_c00055{height:47.109375pt;}
.h6_c00055{height:52.448437pt;}
.h3_c00055{height:62.812500pt;}
.h4_c00055{height:65.770312pt;}
.h0_c00055{height:1122.560000pt;}
.h1_c00055{height:1122.666667pt;}
.w0_c00055{width:793.840000pt;}
.w1_c00055{width:794.000000pt;}
.x0_c00055{left:0.000000pt;}
.x2_c00055{left:113.440000pt;}
.x1_c00055{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_843e4e2ea80ff8d61daef1f8.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00056{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00056{vertical-align:-20.880000px;}
.v0_c00056{vertical-align:0.000000px;}
.v1_c00056{vertical-align:27.000000px;}
.ls14_c00056{letter-spacing:-0.576000px;}
.lsf_c00056{letter-spacing:-0.360000px;}
.ls12_c00056{letter-spacing:-0.288000px;}
.ls15_c00056{letter-spacing:-0.216000px;}
.lse_c00056{letter-spacing:-0.108000px;}
.ls10_c00056{letter-spacing:-0.072000px;}
.ls16_c00056{letter-spacing:-0.060120px;}
.lsd_c00056{letter-spacing:0.000000px;}
.ls2_c00056{letter-spacing:0.072000px;}
.ls11_c00056{letter-spacing:0.144000px;}
.ls13_c00056{letter-spacing:0.191520px;}
.ls8_c00056{letter-spacing:0.360000px;}
.ls4_c00056{letter-spacing:1.432800px;}
.ls5_c00056{letter-spacing:1.440000px;}
.ls6_c00056{letter-spacing:3.600000px;}
.lsb_c00056{letter-spacing:3.960000px;}
.ls3_c00056{letter-spacing:4.320000px;}
.lsc_c00056{letter-spacing:6.480000px;}
.ls1_c00056{letter-spacing:11.887200px;}
.ls0_c00056{letter-spacing:12.240000px;}
.lsa_c00056{letter-spacing:14.040000px;}
.ls9_c00056{letter-spacing:15.840000px;}
.ls7_c00056{letter-spacing:18.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00056{word-spacing:-18.144000px;}
.ws1_c00056{word-spacing:-18.072000px;}
.ws2_c00056{word-spacing:-17.712000px;}
.ws0_c00056{word-spacing:-17.640000px;}
.ws3_c00056{word-spacing:-12.161520px;}
.ws5_c00056{word-spacing:-9.720000px;}
.ws24_c00056{word-spacing:-0.432000px;}
.ws13_c00056{word-spacing:-0.144000px;}
.ws1a_c00056{word-spacing:-0.072000px;}
.ws6_c00056{word-spacing:0.000000px;}
.ws8_c00056{word-spacing:0.162000px;}
.ws35_c00056{word-spacing:0.180360px;}
.ws2f_c00056{word-spacing:0.216000px;}
.ws7_c00056{word-spacing:0.270000px;}
.ws17_c00056{word-spacing:0.288000px;}
.ws14_c00056{word-spacing:0.360000px;}
.ws1f_c00056{word-spacing:0.648000px;}
.ws20_c00056{word-spacing:0.720000px;}
.ws10_c00056{word-spacing:1.368000px;}
.wsf_c00056{word-spacing:1.440000px;}
.ws34_c00056{word-spacing:1.563120px;}
.ws1c_c00056{word-spacing:3.528000px;}
.ws1b_c00056{word-spacing:3.600000px;}
.wsc_c00056{word-spacing:3.888000px;}
.wsb_c00056{word-spacing:4.248000px;}
.ws2e_c00056{word-spacing:4.608000px;}
.ws2d_c00056{word-spacing:4.680000px;}
.ws18_c00056{word-spacing:6.120000px;}
.ws16_c00056{word-spacing:6.408000px;}
.ws15_c00056{word-spacing:6.480000px;}
.ws19_c00056{word-spacing:6.840000px;}
.wse_c00056{word-spacing:7.488000px;}
.wsd_c00056{word-spacing:7.560000px;}
.ws21_c00056{word-spacing:7.920000px;}
.ws22_c00056{word-spacing:11.448000px;}
.ws32_c00056{word-spacing:11.520000px;}
.ws23_c00056{word-spacing:11.736000px;}
.ws9_c00056{word-spacing:11.880000px;}
.wsa_c00056{word-spacing:12.168000px;}
.ws33_c00056{word-spacing:12.240000px;}
.ws27_c00056{word-spacing:13.968000px;}
.ws28_c00056{word-spacing:14.040000px;}
.ws25_c00056{word-spacing:15.768000px;}
.ws26_c00056{word-spacing:15.840000px;}
.ws2a_c00056{word-spacing:17.208000px;}
.ws2b_c00056{word-spacing:17.280000px;}
.ws2c_c00056{word-spacing:17.856000px;}
.ws1e_c00056{word-spacing:17.928000px;}
.ws1d_c00056{word-spacing:18.000000px;}
.ws11_c00056{word-spacing:20.808000px;}
.ws12_c00056{word-spacing:20.952000px;}
.ws29_c00056{word-spacing:22.248000px;}
.ws30_c00056{word-spacing:27.648000px;}
.ws31_c00056{word-spacing:27.720000px;}
._1_c00056{margin-left:-1.058400px;}
._0_c00056{width:1.220400px;}
._7_c00056{width:2.865600px;}
._8_c00056{width:4.248000px;}
._4_c00056{width:5.954400px;}
._2_c00056{width:8.280000px;}
._b_c00056{width:11.520000px;}
._6_c00056{width:13.568400px;}
._5_c00056{width:15.386400px;}
._3_c00056{width:20.570400px;}
._9_c00056{width:26.690400px;}
._a_c00056{width:27.720000px;}
.fc0_c00056{color:rgb(0,0,0);}
.fs4_c00056{font-size:38.880000px;}
.fs3_c00056{font-size:47.880000px;}
.fs0_c00056{font-size:54.000000px;}
.fs5_c00056{font-size:60.120000px;}
.fs2_c00056{font-size:69.120000px;}
.fs1_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y27_c00056{bottom:57.240000px;}
.y26_c00056{bottom:109.795680px;}
.y25_c00056{bottom:132.210000px;}
.y28_c00056{bottom:144.900000px;}
.y24_c00056{bottom:190.170000px;}
.y23_c00056{bottom:221.220000px;}
.y22_c00056{bottom:252.270000px;}
.y21_c00056{bottom:283.320000px;}
.y20_c00056{bottom:314.370000px;}
.y1f_c00056{bottom:345.420000px;}
.y1e_c00056{bottom:376.470000px;}
.y1d_c00056{bottom:407.430000px;}
.y1c_c00056{bottom:438.480000px;}
.y1b_c00056{bottom:469.530000px;}
.y1a_c00056{bottom:500.580000px;}
.y19_c00056{bottom:531.630000px;}
.y18_c00056{bottom:562.680000px;}
.y17_c00056{bottom:593.730000px;}
.y16_c00056{bottom:624.780000px;}
.y15_c00056{bottom:655.830000px;}
.y14_c00056{bottom:686.880000px;}
.y13_c00056{bottom:717.930000px;}
.y12_c00056{bottom:748.980000px;}
.y11_c00056{bottom:769.500000px;}
.y10_c00056{bottom:799.920000px;}
.yf_c00056{bottom:830.970000px;}
.ye_c00056{bottom:861.930000px;}
.yd_c00056{bottom:892.980000px;}
.yc_c00056{bottom:924.030000px;}
.yb_c00056{bottom:955.080000px;}
.ya_c00056{bottom:986.130000px;}
.y9_c00056{bottom:1017.180000px;}
.y8_c00056{bottom:1048.230000px;}
.y7_c00056{bottom:1079.280000px;}
.y6_c00056{bottom:1110.330000px;}
.y5_c00056{bottom:1131.030000px;}
.y4_c00056{bottom:1150.920000px;}
.y3_c00056{bottom:1166.404500px;}
.y2_c00056{bottom:1181.970000px;}
.y1_c00056{bottom:1197.450000px;}
.h7_c00056{height:38.158594px;}
.h3_c00056{height:52.971680px;}
.h2_c00056{height:52.998047px;}
.h8_c00056{height:59.004492px;}
.h5_c00056{height:67.837500px;}
.h4_c00056{height:70.664062px;}
.h6_c00056{height:73.991602px;}
.h0_c00056{height:1262.880000px;}
.h1_c00056{height:1263.000000px;}
.w0_c00056{width:893.070000px;}
.w1_c00056{width:893.250000px;}
.x0_c00056{left:0.000000px;}
.x3_c00056{left:127.620000px;}
.x2_c00056{left:425.160000px;}
.x1_c00056{left:446.580000px;}
.x4_c00056{left:747.540000px;}
@media print{
.v2_c00056{vertical-align:-18.560000pt;}
.v0_c00056{vertical-align:0.000000pt;}
.v1_c00056{vertical-align:24.000000pt;}
.ls14_c00056{letter-spacing:-0.512000pt;}
.lsf_c00056{letter-spacing:-0.320000pt;}
.ls12_c00056{letter-spacing:-0.256000pt;}
.ls15_c00056{letter-spacing:-0.192000pt;}
.lse_c00056{letter-spacing:-0.096000pt;}
.ls10_c00056{letter-spacing:-0.064000pt;}
.ls16_c00056{letter-spacing:-0.053440pt;}
.lsd_c00056{letter-spacing:0.000000pt;}
.ls2_c00056{letter-spacing:0.064000pt;}
.ls11_c00056{letter-spacing:0.128000pt;}
.ls13_c00056{letter-spacing:0.170240pt;}
.ls8_c00056{letter-spacing:0.320000pt;}
.ls4_c00056{letter-spacing:1.273600pt;}
.ls5_c00056{letter-spacing:1.280000pt;}
.ls6_c00056{letter-spacing:3.200000pt;}
.lsb_c00056{letter-spacing:3.520000pt;}
.ls3_c00056{letter-spacing:3.840000pt;}
.lsc_c00056{letter-spacing:5.760000pt;}
.ls1_c00056{letter-spacing:10.566400pt;}
.ls0_c00056{letter-spacing:10.880000pt;}
.lsa_c00056{letter-spacing:12.480000pt;}
.ls9_c00056{letter-spacing:14.080000pt;}
.ls7_c00056{letter-spacing:16.000000pt;}
.ws4_c00056{word-spacing:-16.128000pt;}
.ws1_c00056{word-spacing:-16.064000pt;}
.ws2_c00056{word-spacing:-15.744000pt;}
.ws0_c00056{word-spacing:-15.680000pt;}
.ws3_c00056{word-spacing:-10.810240pt;}
.ws5_c00056{word-spacing:-8.640000pt;}
.ws24_c00056{word-spacing:-0.384000pt;}
.ws13_c00056{word-spacing:-0.128000pt;}
.ws1a_c00056{word-spacing:-0.064000pt;}
.ws6_c00056{word-spacing:0.000000pt;}
.ws8_c00056{word-spacing:0.144000pt;}
.ws35_c00056{word-spacing:0.160320pt;}
.ws2f_c00056{word-spacing:0.192000pt;}
.ws7_c00056{word-spacing:0.240000pt;}
.ws17_c00056{word-spacing:0.256000pt;}
.ws14_c00056{word-spacing:0.320000pt;}
.ws1f_c00056{word-spacing:0.576000pt;}
.ws20_c00056{word-spacing:0.640000pt;}
.ws10_c00056{word-spacing:1.216000pt;}
.wsf_c00056{word-spacing:1.280000pt;}
.ws34_c00056{word-spacing:1.389440pt;}
.ws1c_c00056{word-spacing:3.136000pt;}
.ws1b_c00056{word-spacing:3.200000pt;}
.wsc_c00056{word-spacing:3.456000pt;}
.wsb_c00056{word-spacing:3.776000pt;}
.ws2e_c00056{word-spacing:4.096000pt;}
.ws2d_c00056{word-spacing:4.160000pt;}
.ws18_c00056{word-spacing:5.440000pt;}
.ws16_c00056{word-spacing:5.696000pt;}
.ws15_c00056{word-spacing:5.760000pt;}
.ws19_c00056{word-spacing:6.080000pt;}
.wse_c00056{word-spacing:6.656000pt;}
.wsd_c00056{word-spacing:6.720000pt;}
.ws21_c00056{word-spacing:7.040000pt;}
.ws22_c00056{word-spacing:10.176000pt;}
.ws32_c00056{word-spacing:10.240000pt;}
.ws23_c00056{word-spacing:10.432000pt;}
.ws9_c00056{word-spacing:10.560000pt;}
.wsa_c00056{word-spacing:10.816000pt;}
.ws33_c00056{word-spacing:10.880000pt;}
.ws27_c00056{word-spacing:12.416000pt;}
.ws28_c00056{word-spacing:12.480000pt;}
.ws25_c00056{word-spacing:14.016000pt;}
.ws26_c00056{word-spacing:14.080000pt;}
.ws2a_c00056{word-spacing:15.296000pt;}
.ws2b_c00056{word-spacing:15.360000pt;}
.ws2c_c00056{word-spacing:15.872000pt;}
.ws1e_c00056{word-spacing:15.936000pt;}
.ws1d_c00056{word-spacing:16.000000pt;}
.ws11_c00056{word-spacing:18.496000pt;}
.ws12_c00056{word-spacing:18.624000pt;}
.ws29_c00056{word-spacing:19.776000pt;}
.ws30_c00056{word-spacing:24.576000pt;}
.ws31_c00056{word-spacing:24.640000pt;}
._1_c00056{margin-left:-0.940800pt;}
._0_c00056{width:1.084800pt;}
._7_c00056{width:2.547200pt;}
._8_c00056{width:3.776000pt;}
._4_c00056{width:5.292800pt;}
._2_c00056{width:7.360000pt;}
._b_c00056{width:10.240000pt;}
._6_c00056{width:12.060800pt;}
._5_c00056{width:13.676800pt;}
._3_c00056{width:18.284800pt;}
._9_c00056{width:23.724800pt;}
._a_c00056{width:24.640000pt;}
.fs4_c00056{font-size:34.560000pt;}
.fs3_c00056{font-size:42.560000pt;}
.fs0_c00056{font-size:48.000000pt;}
.fs5_c00056{font-size:53.440000pt;}
.fs2_c00056{font-size:61.440000pt;}
.fs1_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y27_c00056{bottom:50.880000pt;}
.y26_c00056{bottom:97.596160pt;}
.y25_c00056{bottom:117.520000pt;}
.y28_c00056{bottom:128.800000pt;}
.y24_c00056{bottom:169.040000pt;}
.y23_c00056{bottom:196.640000pt;}
.y22_c00056{bottom:224.240000pt;}
.y21_c00056{bottom:251.840000pt;}
.y20_c00056{bottom:279.440000pt;}
.y1f_c00056{bottom:307.040000pt;}
.y1e_c00056{bottom:334.640000pt;}
.y1d_c00056{bottom:362.160000pt;}
.y1c_c00056{bottom:389.760000pt;}
.y1b_c00056{bottom:417.360000pt;}
.y1a_c00056{bottom:444.960000pt;}
.y19_c00056{bottom:472.560000pt;}
.y18_c00056{bottom:500.160000pt;}
.y17_c00056{bottom:527.760000pt;}
.y16_c00056{bottom:555.360000pt;}
.y15_c00056{bottom:582.960000pt;}
.y14_c00056{bottom:610.560000pt;}
.y13_c00056{bottom:638.160000pt;}
.y12_c00056{bottom:665.760000pt;}
.y11_c00056{bottom:684.000000pt;}
.y10_c00056{bottom:711.040000pt;}
.yf_c00056{bottom:738.640000pt;}
.ye_c00056{bottom:766.160000pt;}
.yd_c00056{bottom:793.760000pt;}
.yc_c00056{bottom:821.360000pt;}
.yb_c00056{bottom:848.960000pt;}
.ya_c00056{bottom:876.560000pt;}
.y9_c00056{bottom:904.160000pt;}
.y8_c00056{bottom:931.760000pt;}
.y7_c00056{bottom:959.360000pt;}
.y6_c00056{bottom:986.960000pt;}
.y5_c00056{bottom:1005.360000pt;}
.y4_c00056{bottom:1023.040000pt;}
.y3_c00056{bottom:1036.804000pt;}
.y2_c00056{bottom:1050.640000pt;}
.y1_c00056{bottom:1064.400000pt;}
.h7_c00056{height:33.918750pt;}
.h3_c00056{height:47.085938pt;}
.h2_c00056{height:47.109375pt;}
.h8_c00056{height:52.448437pt;}
.h5_c00056{height:60.300000pt;}
.h4_c00056{height:62.812500pt;}
.h6_c00056{height:65.770312pt;}
.h0_c00056{height:1122.560000pt;}
.h1_c00056{height:1122.666667pt;}
.w0_c00056{width:793.840000pt;}
.w1_c00056{width:794.000000pt;}
.x0_c00056{left:0.000000pt;}
.x3_c00056{left:113.440000pt;}
.x2_c00056{left:377.920000pt;}
.x1_c00056{left:396.960000pt;}
.x4_c00056{left:664.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_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_78facb8e24aa4a3d89faeaed.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_cfb8b0044be8ed8fad4804a8.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00057{vertical-align:-61.938000px;}
.v0_c00057{vertical-align:0.000000px;}
.ls1c_c00057{letter-spacing:-0.661320px;}
.ls13_c00057{letter-spacing:-0.576000px;}
.ls1a_c00057{letter-spacing:-0.420840px;}
.ls1d_c00057{letter-spacing:-0.360000px;}
.ls17_c00057{letter-spacing:-0.300600px;}
.ls15_c00057{letter-spacing:-0.240480px;}
.ls18_c00057{letter-spacing:-0.180360px;}
.ls19_c00057{letter-spacing:-0.120240px;}
.ls14_c00057{letter-spacing:-0.072000px;}
.ls16_c00057{letter-spacing:-0.060120px;}
.ls12_c00057{letter-spacing:0.000000px;}
.ls1b_c00057{letter-spacing:0.060120px;}
.ls2_c00057{letter-spacing:0.072000px;}
.ls9_c00057{letter-spacing:0.090000px;}
.ls6_c00057{letter-spacing:0.120240px;}
.ls1_c00057{letter-spacing:0.144000px;}
.lsb_c00057{letter-spacing:0.180360px;}
.ls7_c00057{letter-spacing:1.170000px;}
.lsc_c00057{letter-spacing:5.470920px;}
.lsa_c00057{letter-spacing:5.850000px;}
.ls3_c00057{letter-spacing:9.090000px;}
.lsf_c00057{letter-spacing:10.890000px;}
.ls8_c00057{letter-spacing:11.970000px;}
.ls11_c00057{letter-spacing:12.960000px;}
.ls4_c00057{letter-spacing:29.610000px;}
.ls5_c00057{letter-spacing:29.970000px;}
.lse_c00057{letter-spacing:30.690000px;}
.lsd_c00057{letter-spacing:31.050000px;}
.ls10_c00057{letter-spacing:40.410000px;}
.ls0_c00057{letter-spacing:319.518000px;}
.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;}
}
.wsa_c00057{word-spacing:-18.144000px;}
.ws9_c00057{word-spacing:-18.072000px;}
.ws1_c00057{word-spacing:-17.928000px;}
.ws0_c00057{word-spacing:-17.424000px;}
.ws5_c00057{word-spacing:-15.210360px;}
.ws7_c00057{word-spacing:-15.090120px;}
.ws3_c00057{word-spacing:-14.969880px;}
.ws8_c00057{word-spacing:-14.909760px;}
.ws6_c00057{word-spacing:-14.849640px;}
.ws2_c00057{word-spacing:-14.789520px;}
.ws4_c00057{word-spacing:-14.729400px;}
.ws11_c00057{word-spacing:-0.432000px;}
.ws53_c00057{word-spacing:-0.360000px;}
.ws12_c00057{word-spacing:-0.180360px;}
.wsc_c00057{word-spacing:-0.162000px;}
.ws10_c00057{word-spacing:-0.144000px;}
.ws2a_c00057{word-spacing:-0.120240px;}
.wsf_c00057{word-spacing:-0.072000px;}
.ws14_c00057{word-spacing:-0.060120px;}
.wsb_c00057{word-spacing:0.000000px;}
.ws27_c00057{word-spacing:0.060120px;}
.ws20_c00057{word-spacing:0.120240px;}
.ws1b_c00057{word-spacing:0.180360px;}
.ws47_c00057{word-spacing:0.240480px;}
.ws4f_c00057{word-spacing:0.288000px;}
.ws13_c00057{word-spacing:0.300600px;}
.ws1d_c00057{word-spacing:0.420840px;}
.ws52_c00057{word-spacing:0.648000px;}
.ws41_c00057{word-spacing:0.661320px;}
.ws21_c00057{word-spacing:1.262520px;}
.ws37_c00057{word-spacing:2.044080px;}
.ws44_c00057{word-spacing:3.006000px;}
.ws3e_c00057{word-spacing:3.126240px;}
.ws2b_c00057{word-spacing:5.651280px;}
.ws30_c00057{word-spacing:5.891760px;}
.ws31_c00057{word-spacing:6.012000px;}
.ws2c_c00057{word-spacing:6.252480px;}
.ws2f_c00057{word-spacing:7.334640px;}
.ws16_c00057{word-spacing:8.056080px;}
.ws4a_c00057{word-spacing:8.777520px;}
.ws15_c00057{word-spacing:9.138240px;}
.ws45_c00057{word-spacing:10.941840px;}
.ws25_c00057{word-spacing:11.422800px;}
.ws24_c00057{word-spacing:12.084120px;}
.ws4e_c00057{word-spacing:12.528000px;}
.ws4d_c00057{word-spacing:12.600000px;}
.ws4c_c00057{word-spacing:12.960000px;}
.ws43_c00057{word-spacing:14.308560px;}
.ws35_c00057{word-spacing:14.549040px;}
.ws4b_c00057{word-spacing:14.669280px;}
.ws3c_c00057{word-spacing:17.434800px;}
.wse_c00057{word-spacing:18.288000px;}
.wsd_c00057{word-spacing:18.360000px;}
.ws23_c00057{word-spacing:18.637200px;}
.ws28_c00057{word-spacing:19.238400px;}
.ws50_c00057{word-spacing:19.800000px;}
.ws51_c00057{word-spacing:20.160000px;}
.ws3f_c00057{word-spacing:21.522960px;}
.ws22_c00057{word-spacing:22.244400px;}
.ws42_c00057{word-spacing:22.605120px;}
.ws36_c00057{word-spacing:23.206320px;}
.ws46_c00057{word-spacing:27.655200px;}
.ws18_c00057{word-spacing:29.699280px;}
.ws17_c00057{word-spacing:29.759400px;}
.ws19_c00057{word-spacing:29.819520px;}
.ws1e_c00057{word-spacing:30.060000px;}
.ws1c_c00057{word-spacing:30.120120px;}
.ws3a_c00057{word-spacing:30.420720px;}
.ws3b_c00057{word-spacing:30.781440px;}
.ws33_c00057{word-spacing:30.841560px;}
.ws32_c00057{word-spacing:31.142160px;}
.ws40_c00057{word-spacing:33.366600px;}
.ws39_c00057{word-spacing:35.049960px;}
.ws3d_c00057{word-spacing:35.771400px;}
.ws49_c00057{word-spacing:40.460760px;}
.ws48_c00057{word-spacing:40.520880px;}
.ws1f_c00057{word-spacing:46.593000px;}
.ws38_c00057{word-spacing:50.921640px;}
.ws2d_c00057{word-spacing:57.174120px;}
.ws2e_c00057{word-spacing:57.474720px;}
.ws34_c00057{word-spacing:61.743240px;}
.ws1a_c00057{word-spacing:66.132000px;}
.ws26_c00057{word-spacing:67.935600px;}
.ws29_c00057{word-spacing:95.650920px;}
._1_c00057{margin-left:-1.015200px;}
._0_c00057{width:1.584000px;}
._4_c00057{width:3.258720px;}
._5_c00057{width:19.591200px;}
._3_c00057{width:23.274000px;}
._2_c00057{width:30.071520px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:54.000000px;}
.fs2_c00057{font-size:60.120000px;}
.fs1_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.ya_c00057{bottom:3.240000px;}
.y1a_c00057{bottom:3.420000px;}
.y14_c00057{bottom:3.510000px;}
.y13_c00057{bottom:20.700000px;}
.y27_c00057{bottom:20.790000px;}
.y25_c00057{bottom:37.800000px;}
.y12_c00057{bottom:37.980000px;}
.y16_c00057{bottom:54.990000px;}
.yc_c00057{bottom:55.080000px;}
.y17_c00057{bottom:55.170000px;}
.yf_c00057{bottom:55.260000px;}
.y3c_c00057{bottom:57.240000px;}
.y1c_c00057{bottom:72.270000px;}
.y1f_c00057{bottom:72.450000px;}
.y3b_c00057{bottom:186.030000px;}
.y3a_c00057{bottom:217.080000px;}
.y39_c00057{bottom:248.130000px;}
.y38_c00057{bottom:279.180000px;}
.y37_c00057{bottom:310.230000px;}
.y36_c00057{bottom:341.280000px;}
.y35_c00057{bottom:369.990000px;}
.y32_c00057{bottom:386.010000px;}
.y33_c00057{bottom:406.530000px;}
.y34_c00057{bottom:406.710000px;}
.y31_c00057{bottom:439.200000px;}
.y2e_c00057{bottom:492.480000px;}
.y30_c00057{bottom:513.180000px;}
.y2f_c00057{bottom:530.280000px;}
.y2b_c00057{bottom:562.950000px;}
.y2d_c00057{bottom:600.925500px;}
.y2c_c00057{bottom:618.210000px;}
.y29_c00057{bottom:650.700000px;}
.y2a_c00057{bottom:688.680000px;}
.y24_c00057{bottom:721.170000px;}
.y26_c00057{bottom:741.780000px;}
.y28_c00057{bottom:741.960000px;}
.y1b_c00057{bottom:774.450000px;}
.y23_c00057{bottom:795.145500px;}
.y1e_c00057{bottom:812.245500px;}
.y21_c00057{bottom:812.425500px;}
.y22_c00057{bottom:812.430000px;}
.y1d_c00057{bottom:829.530000px;}
.y20_c00057{bottom:829.710000px;}
.y15_c00057{bottom:862.200000px;}
.y18_c00057{bottom:880.110000px;}
.y19_c00057{bottom:882.900000px;}
.yb_c00057{bottom:932.670000px;}
.ye_c00057{bottom:953.185500px;}
.y11_c00057{bottom:953.365500px;}
.yd_c00057{bottom:970.470000px;}
.y10_c00057{bottom:970.650000px;}
.y9_c00057{bottom:1003.950000px;}
.y8_c00057{bottom:1027.350000px;}
.y7_c00057{bottom:1048.050000px;}
.y6_c00057{bottom:1079.280000px;}
.y5_c00057{bottom:1110.330000px;}
.y4_c00057{bottom:1131.030000px;}
.y3_c00057{bottom:1150.915500px;}
.y2_c00057{bottom:1166.400000px;}
.y1_c00057{bottom:1197.450000px;}
.h5_c00057{height:17.190000px;}
.hb_c00057{height:51.750000px;}
.he_c00057{height:51.751500px;}
.h2_c00057{height:52.998047px;}
.h8_c00057{height:59.004492px;}
.h6_c00057{height:60.589687px;}
.h9_c00057{height:68.938500px;}
.hd_c00057{height:68.940000px;}
.h7_c00057{height:69.030000px;}
.h3_c00057{height:70.664062px;}
.h4_c00057{height:72.562500px;}
.ha_c00057{height:86.218500px;}
.hc_c00057{height:86.220000px;}
.h0_c00057{height:1262.880000px;}
.h1_c00057{height:1263.000000px;}
.w2_c00057{width:101.520000px;}
.w3_c00057{width:252.900000px;}
.w4_c00057{width:295.470000px;}
.w0_c00057{width:893.070000px;}
.w1_c00057{width:893.250000px;}
.x0_c00057{left:0.000000px;}
.xb_c00057{left:7.020000px;}
.xe_c00057{left:13.680000px;}
.x6_c00057{left:29.700000px;}
.xf_c00057{left:63.900000px;}
.x10_c00057{left:73.710000px;}
.x12_c00057{left:77.850000px;}
.x8_c00057{left:94.140000px;}
.xa_c00057{left:113.760000px;}
.x5_c00057{left:120.600000px;}
.x2_c00057{left:127.620000px;}
.x11_c00057{left:140.580000px;}
.x3_c00057{left:160.830000px;}
.x7_c00057{left:224.370000px;}
.xc_c00057{left:231.390000px;}
.x13_c00057{left:233.010000px;}
.x4_c00057{left:341.820000px;}
.x1_c00057{left:446.580000px;}
.x9_c00057{left:479.520000px;}
.xd_c00057{left:486.540000px;}
@media print{
.v1_c00057{vertical-align:-55.056000pt;}
.v0_c00057{vertical-align:0.000000pt;}
.ls1c_c00057{letter-spacing:-0.587840pt;}
.ls13_c00057{letter-spacing:-0.512000pt;}
.ls1a_c00057{letter-spacing:-0.374080pt;}
.ls1d_c00057{letter-spacing:-0.320000pt;}
.ls17_c00057{letter-spacing:-0.267200pt;}
.ls15_c00057{letter-spacing:-0.213760pt;}
.ls18_c00057{letter-spacing:-0.160320pt;}
.ls19_c00057{letter-spacing:-0.106880pt;}
.ls14_c00057{letter-spacing:-0.064000pt;}
.ls16_c00057{letter-spacing:-0.053440pt;}
.ls12_c00057{letter-spacing:0.000000pt;}
.ls1b_c00057{letter-spacing:0.053440pt;}
.ls2_c00057{letter-spacing:0.064000pt;}
.ls9_c00057{letter-spacing:0.080000pt;}
.ls6_c00057{letter-spacing:0.106880pt;}
.ls1_c00057{letter-spacing:0.128000pt;}
.lsb_c00057{letter-spacing:0.160320pt;}
.ls7_c00057{letter-spacing:1.040000pt;}
.lsc_c00057{letter-spacing:4.863040pt;}
.lsa_c00057{letter-spacing:5.200000pt;}
.ls3_c00057{letter-spacing:8.080000pt;}
.lsf_c00057{letter-spacing:9.680000pt;}
.ls8_c00057{letter-spacing:10.640000pt;}
.ls11_c00057{letter-spacing:11.520000pt;}
.ls4_c00057{letter-spacing:26.320000pt;}
.ls5_c00057{letter-spacing:26.640000pt;}
.lse_c00057{letter-spacing:27.280000pt;}
.lsd_c00057{letter-spacing:27.600000pt;}
.ls10_c00057{letter-spacing:35.920000pt;}
.ls0_c00057{letter-spacing:284.016000pt;}
.wsa_c00057{word-spacing:-16.128000pt;}
.ws9_c00057{word-spacing:-16.064000pt;}
.ws1_c00057{word-spacing:-15.936000pt;}
.ws0_c00057{word-spacing:-15.488000pt;}
.ws5_c00057{word-spacing:-13.520320pt;}
.ws7_c00057{word-spacing:-13.413440pt;}
.ws3_c00057{word-spacing:-13.306560pt;}
.ws8_c00057{word-spacing:-13.253120pt;}
.ws6_c00057{word-spacing:-13.199680pt;}
.ws2_c00057{word-spacing:-13.146240pt;}
.ws4_c00057{word-spacing:-13.092800pt;}
.ws11_c00057{word-spacing:-0.384000pt;}
.ws53_c00057{word-spacing:-0.320000pt;}
.ws12_c00057{word-spacing:-0.160320pt;}
.wsc_c00057{word-spacing:-0.144000pt;}
.ws10_c00057{word-spacing:-0.128000pt;}
.ws2a_c00057{word-spacing:-0.106880pt;}
.wsf_c00057{word-spacing:-0.064000pt;}
.ws14_c00057{word-spacing:-0.053440pt;}
.wsb_c00057{word-spacing:0.000000pt;}
.ws27_c00057{word-spacing:0.053440pt;}
.ws20_c00057{word-spacing:0.106880pt;}
.ws1b_c00057{word-spacing:0.160320pt;}
.ws47_c00057{word-spacing:0.213760pt;}
.ws4f_c00057{word-spacing:0.256000pt;}
.ws13_c00057{word-spacing:0.267200pt;}
.ws1d_c00057{word-spacing:0.374080pt;}
.ws52_c00057{word-spacing:0.576000pt;}
.ws41_c00057{word-spacing:0.587840pt;}
.ws21_c00057{word-spacing:1.122240pt;}
.ws37_c00057{word-spacing:1.816960pt;}
.ws44_c00057{word-spacing:2.672000pt;}
.ws3e_c00057{word-spacing:2.778880pt;}
.ws2b_c00057{word-spacing:5.023360pt;}
.ws30_c00057{word-spacing:5.237120pt;}
.ws31_c00057{word-spacing:5.344000pt;}
.ws2c_c00057{word-spacing:5.557760pt;}
.ws2f_c00057{word-spacing:6.519680pt;}
.ws16_c00057{word-spacing:7.160960pt;}
.ws4a_c00057{word-spacing:7.802240pt;}
.ws15_c00057{word-spacing:8.122880pt;}
.ws45_c00057{word-spacing:9.726080pt;}
.ws25_c00057{word-spacing:10.153600pt;}
.ws24_c00057{word-spacing:10.741440pt;}
.ws4e_c00057{word-spacing:11.136000pt;}
.ws4d_c00057{word-spacing:11.200000pt;}
.ws4c_c00057{word-spacing:11.520000pt;}
.ws43_c00057{word-spacing:12.718720pt;}
.ws35_c00057{word-spacing:12.932480pt;}
.ws4b_c00057{word-spacing:13.039360pt;}
.ws3c_c00057{word-spacing:15.497600pt;}
.wse_c00057{word-spacing:16.256000pt;}
.wsd_c00057{word-spacing:16.320000pt;}
.ws23_c00057{word-spacing:16.566400pt;}
.ws28_c00057{word-spacing:17.100800pt;}
.ws50_c00057{word-spacing:17.600000pt;}
.ws51_c00057{word-spacing:17.920000pt;}
.ws3f_c00057{word-spacing:19.131520pt;}
.ws22_c00057{word-spacing:19.772800pt;}
.ws42_c00057{word-spacing:20.093440pt;}
.ws36_c00057{word-spacing:20.627840pt;}
.ws46_c00057{word-spacing:24.582400pt;}
.ws18_c00057{word-spacing:26.399360pt;}
.ws17_c00057{word-spacing:26.452800pt;}
.ws19_c00057{word-spacing:26.506240pt;}
.ws1e_c00057{word-spacing:26.720000pt;}
.ws1c_c00057{word-spacing:26.773440pt;}
.ws3a_c00057{word-spacing:27.040640pt;}
.ws3b_c00057{word-spacing:27.361280pt;}
.ws33_c00057{word-spacing:27.414720pt;}
.ws32_c00057{word-spacing:27.681920pt;}
.ws40_c00057{word-spacing:29.659200pt;}
.ws39_c00057{word-spacing:31.155520pt;}
.ws3d_c00057{word-spacing:31.796800pt;}
.ws49_c00057{word-spacing:35.965120pt;}
.ws48_c00057{word-spacing:36.018560pt;}
.ws1f_c00057{word-spacing:41.416000pt;}
.ws38_c00057{word-spacing:45.263680pt;}
.ws2d_c00057{word-spacing:50.821440pt;}
.ws2e_c00057{word-spacing:51.088640pt;}
.ws34_c00057{word-spacing:54.882880pt;}
.ws1a_c00057{word-spacing:58.784000pt;}
.ws26_c00057{word-spacing:60.387200pt;}
.ws29_c00057{word-spacing:85.023040pt;}
._1_c00057{margin-left:-0.902400pt;}
._0_c00057{width:1.408000pt;}
._4_c00057{width:2.896640pt;}
._5_c00057{width:17.414400pt;}
._3_c00057{width:20.688000pt;}
._2_c00057{width:26.730240pt;}
.fs0_c00057{font-size:48.000000pt;}
.fs2_c00057{font-size:53.440000pt;}
.fs1_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.ya_c00057{bottom:2.880000pt;}
.y1a_c00057{bottom:3.040000pt;}
.y14_c00057{bottom:3.120000pt;}
.y13_c00057{bottom:18.400000pt;}
.y27_c00057{bottom:18.480000pt;}
.y25_c00057{bottom:33.600000pt;}
.y12_c00057{bottom:33.760000pt;}
.y16_c00057{bottom:48.880000pt;}
.yc_c00057{bottom:48.960000pt;}
.y17_c00057{bottom:49.040000pt;}
.yf_c00057{bottom:49.120000pt;}
.y3c_c00057{bottom:50.880000pt;}
.y1c_c00057{bottom:64.240000pt;}
.y1f_c00057{bottom:64.400000pt;}
.y3b_c00057{bottom:165.360000pt;}
.y3a_c00057{bottom:192.960000pt;}
.y39_c00057{bottom:220.560000pt;}
.y38_c00057{bottom:248.160000pt;}
.y37_c00057{bottom:275.760000pt;}
.y36_c00057{bottom:303.360000pt;}
.y35_c00057{bottom:328.880000pt;}
.y32_c00057{bottom:343.120000pt;}
.y33_c00057{bottom:361.360000pt;}
.y34_c00057{bottom:361.520000pt;}
.y31_c00057{bottom:390.400000pt;}
.y2e_c00057{bottom:437.760000pt;}
.y30_c00057{bottom:456.160000pt;}
.y2f_c00057{bottom:471.360000pt;}
.y2b_c00057{bottom:500.400000pt;}
.y2d_c00057{bottom:534.156000pt;}
.y2c_c00057{bottom:549.520000pt;}
.y29_c00057{bottom:578.400000pt;}
.y2a_c00057{bottom:612.160000pt;}
.y24_c00057{bottom:641.040000pt;}
.y26_c00057{bottom:659.360000pt;}
.y28_c00057{bottom:659.520000pt;}
.y1b_c00057{bottom:688.400000pt;}
.y23_c00057{bottom:706.796000pt;}
.y1e_c00057{bottom:721.996000pt;}
.y21_c00057{bottom:722.156000pt;}
.y22_c00057{bottom:722.160000pt;}
.y1d_c00057{bottom:737.360000pt;}
.y20_c00057{bottom:737.520000pt;}
.y15_c00057{bottom:766.400000pt;}
.y18_c00057{bottom:782.320000pt;}
.y19_c00057{bottom:784.800000pt;}
.yb_c00057{bottom:829.040000pt;}
.ye_c00057{bottom:847.276000pt;}
.y11_c00057{bottom:847.436000pt;}
.yd_c00057{bottom:862.640000pt;}
.y10_c00057{bottom:862.800000pt;}
.y9_c00057{bottom:892.400000pt;}
.y8_c00057{bottom:913.200000pt;}
.y7_c00057{bottom:931.600000pt;}
.y6_c00057{bottom:959.360000pt;}
.y5_c00057{bottom:986.960000pt;}
.y4_c00057{bottom:1005.360000pt;}
.y3_c00057{bottom:1023.036000pt;}
.y2_c00057{bottom:1036.800000pt;}
.y1_c00057{bottom:1064.400000pt;}
.h5_c00057{height:15.280000pt;}
.hb_c00057{height:46.000000pt;}
.he_c00057{height:46.001333pt;}
.h2_c00057{height:47.109375pt;}
.h8_c00057{height:52.448437pt;}
.h6_c00057{height:53.857500pt;}
.h9_c00057{height:61.278667pt;}
.hd_c00057{height:61.280000pt;}
.h7_c00057{height:61.360000pt;}
.h3_c00057{height:62.812500pt;}
.h4_c00057{height:64.500000pt;}
.ha_c00057{height:76.638667pt;}
.hc_c00057{height:76.640000pt;}
.h0_c00057{height:1122.560000pt;}
.h1_c00057{height:1122.666667pt;}
.w2_c00057{width:90.240000pt;}
.w3_c00057{width:224.800000pt;}
.w4_c00057{width:262.640000pt;}
.w0_c00057{width:793.840000pt;}
.w1_c00057{width:794.000000pt;}
.x0_c00057{left:0.000000pt;}
.xb_c00057{left:6.240000pt;}
.xe_c00057{left:12.160000pt;}
.x6_c00057{left:26.400000pt;}
.xf_c00057{left:56.800000pt;}
.x10_c00057{left:65.520000pt;}
.x12_c00057{left:69.200000pt;}
.x8_c00057{left:83.680000pt;}
.xa_c00057{left:101.120000pt;}
.x5_c00057{left:107.200000pt;}
.x2_c00057{left:113.440000pt;}
.x11_c00057{left:124.960000pt;}
.x3_c00057{left:142.960000pt;}
.x7_c00057{left:199.440000pt;}
.xc_c00057{left:205.680000pt;}
.x13_c00057{left:207.120000pt;}
.x4_c00057{left:303.840000pt;}
.x1_c00057{left:396.960000pt;}
.x9_c00057{left:426.240000pt;}
.xd_c00057{left:432.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_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_c58038fbb702ba4b755df924.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00058{vertical-align:-20.880000px;}
.v0_c00058{vertical-align:0.000000px;}
.v1_c00058{vertical-align:27.000000px;}
.ls15_c00058{letter-spacing:-0.240480px;}
.ls11_c00058{letter-spacing:-0.180360px;}
.ls14_c00058{letter-spacing:-0.120240px;}
.lse_c00058{letter-spacing:-0.108000px;}
.ls12_c00058{letter-spacing:-0.060120px;}
.lsd_c00058{letter-spacing:0.000000px;}
.ls1_c00058{letter-spacing:0.072000px;}
.lsc_c00058{letter-spacing:0.120240px;}
.ls5_c00058{letter-spacing:0.144000px;}
.lsb_c00058{letter-spacing:0.156312px;}
.ls13_c00058{letter-spacing:0.180360px;}
.lsf_c00058{letter-spacing:0.191520px;}
.ls10_c00058{letter-spacing:0.360000px;}
.ls2_c00058{letter-spacing:1.080000px;}
.ls8_c00058{letter-spacing:5.760000px;}
.ls6_c00058{letter-spacing:6.472800px;}
.ls4_c00058{letter-spacing:9.720000px;}
.ls0_c00058{letter-spacing:11.160000px;}
.lsa_c00058{letter-spacing:11.520000px;}
.ls9_c00058{letter-spacing:12.600000px;}
.ls3_c00058{letter-spacing:18.000000px;}
.ls7_c00058{letter-spacing:18.360000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00058{word-spacing:-18.144000px;}
.ws1_c00058{word-spacing:-18.072000px;}
.ws4_c00058{word-spacing:-14.909760px;}
.ws5_c00058{word-spacing:-14.789520px;}
.ws0_c00058{word-spacing:-12.161520px;}
.ws3_c00058{word-spacing:-9.720000px;}
.ws12_c00058{word-spacing:-0.504000px;}
.ws11_c00058{word-spacing:-0.360000px;}
.ws2f_c00058{word-spacing:-0.144000px;}
.ws16_c00058{word-spacing:-0.072000px;}
.ws33_c00058{word-spacing:-0.060120px;}
.ws6_c00058{word-spacing:0.000000px;}
.ws8_c00058{word-spacing:0.162000px;}
.ws32_c00058{word-spacing:0.180360px;}
.ws7_c00058{word-spacing:0.270000px;}
.wsb_c00058{word-spacing:0.288000px;}
.ws34_c00058{word-spacing:0.360720px;}
.ws1d_c00058{word-spacing:0.720000px;}
.wsd_c00058{word-spacing:1.296000px;}
.wsc_c00058{word-spacing:1.368000px;}
.wse_c00058{word-spacing:1.440000px;}
.ws15_c00058{word-spacing:1.800000px;}
.ws31_c00058{word-spacing:3.366720px;}
.ws30_c00058{word-spacing:3.486960px;}
.ws1c_c00058{word-spacing:3.528000px;}
.ws13_c00058{word-spacing:3.600000px;}
.ws1b_c00058{word-spacing:3.960000px;}
.ws23_c00058{word-spacing:4.608000px;}
.ws28_c00058{word-spacing:5.400000px;}
.ws2a_c00058{word-spacing:5.688000px;}
.ws29_c00058{word-spacing:5.760000px;}
.ws2c_c00058{word-spacing:6.048000px;}
.ws2b_c00058{word-spacing:6.120000px;}
.ws1f_c00058{word-spacing:6.336000px;}
.ws21_c00058{word-spacing:6.408000px;}
.ws20_c00058{word-spacing:6.480000px;}
.ws1e_c00058{word-spacing:7.200000px;}
.ws22_c00058{word-spacing:7.488000px;}
.ws14_c00058{word-spacing:9.720000px;}
.wsa_c00058{word-spacing:11.448000px;}
.ws9_c00058{word-spacing:11.520000px;}
.ws2d_c00058{word-spacing:12.600000px;}
.ws17_c00058{word-spacing:14.688000px;}
.ws18_c00058{word-spacing:14.760000px;}
.ws2e_c00058{word-spacing:16.056000px;}
.ws10_c00058{word-spacing:17.568000px;}
.wsf_c00058{word-spacing:17.640000px;}
.ws27_c00058{word-spacing:18.360000px;}
.ws26_c00058{word-spacing:18.720000px;}
.ws1a_c00058{word-spacing:21.888000px;}
.ws19_c00058{word-spacing:21.960000px;}
.ws24_c00058{word-spacing:26.208000px;}
.ws25_c00058{word-spacing:26.280000px;}
._1_c00058{margin-left:-1.058400px;}
._0_c00058{width:1.220400px;}
._2_c00058{width:3.002400px;}
._7_c00058{width:5.306400px;}
._3_c00058{width:9.360000px;}
._9_c00058{width:11.455200px;}
._8_c00058{width:12.672000px;}
._4_c00058{width:14.594400px;}
._5_c00058{width:21.844800px;}
._6_c00058{width:25.675200px;}
.fc0_c00058{color:rgb(0,0,0);}
.fs3_c00058{font-size:38.880000px;}
.fs2_c00058{font-size:47.880000px;}
.fs0_c00058{font-size:54.000000px;}
.fs4_c00058{font-size:60.120000px;}
.fs1_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y27_c00058{bottom:57.240000px;}
.y26_c00058{bottom:115.020000px;}
.y25_c00058{bottom:132.210000px;}
.y24_c00058{bottom:144.265500px;}
.y23_c00058{bottom:166.770000px;}
.y28_c00058{bottom:179.460000px;}
.y22_c00058{bottom:241.020000px;}
.y21_c00058{bottom:272.070000px;}
.y20_c00058{bottom:303.120000px;}
.y1f_c00058{bottom:334.170000px;}
.y1e_c00058{bottom:365.220000px;}
.y1d_c00058{bottom:396.270000px;}
.y1c_c00058{bottom:427.320000px;}
.y1b_c00058{bottom:458.370000px;}
.y1a_c00058{bottom:489.420000px;}
.y19_c00058{bottom:520.470000px;}
.y18_c00058{bottom:551.520000px;}
.y17_c00058{bottom:582.570000px;}
.y16_c00058{bottom:613.620000px;}
.y15_c00058{bottom:644.670000px;}
.y14_c00058{bottom:675.720000px;}
.y13_c00058{bottom:706.770000px;}
.y12_c00058{bottom:737.820000px;}
.y11_c00058{bottom:768.870000px;}
.y10_c00058{bottom:799.920000px;}
.yf_c00058{bottom:830.970000px;}
.ye_c00058{bottom:861.930000px;}
.yd_c00058{bottom:892.980000px;}
.yc_c00058{bottom:924.030000px;}
.yb_c00058{bottom:955.080000px;}
.ya_c00058{bottom:986.130000px;}
.y9_c00058{bottom:1017.180000px;}
.y8_c00058{bottom:1048.230000px;}
.y7_c00058{bottom:1079.280000px;}
.y6_c00058{bottom:1110.330000px;}
.y5_c00058{bottom:1131.030000px;}
.y4_c00058{bottom:1150.920000px;}
.y3_c00058{bottom:1166.404500px;}
.y2_c00058{bottom:1181.970000px;}
.y1_c00058{bottom:1197.450000px;}
.h6_c00058{height:38.158594px;}
.h3_c00058{height:52.971680px;}
.h2_c00058{height:52.998047px;}
.h7_c00058{height:59.004492px;}
.h4_c00058{height:70.664062px;}
.h5_c00058{height:73.991602px;}
.h0_c00058{height:1262.880000px;}
.h1_c00058{height:1263.000000px;}
.w0_c00058{width:893.070000px;}
.w1_c00058{width:893.250000px;}
.x0_c00058{left:0.000000px;}
.x3_c00058{left:127.620000px;}
.x2_c00058{left:425.160000px;}
.x1_c00058{left:446.580000px;}
.x4_c00058{left:747.540000px;}
@media print{
.v2_c00058{vertical-align:-18.560000pt;}
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:24.000000pt;}
.ls15_c00058{letter-spacing:-0.213760pt;}
.ls11_c00058{letter-spacing:-0.160320pt;}
.ls14_c00058{letter-spacing:-0.106880pt;}
.lse_c00058{letter-spacing:-0.096000pt;}
.ls12_c00058{letter-spacing:-0.053440pt;}
.lsd_c00058{letter-spacing:0.000000pt;}
.ls1_c00058{letter-spacing:0.064000pt;}
.lsc_c00058{letter-spacing:0.106880pt;}
.ls5_c00058{letter-spacing:0.128000pt;}
.lsb_c00058{letter-spacing:0.138944pt;}
.ls13_c00058{letter-spacing:0.160320pt;}
.lsf_c00058{letter-spacing:0.170240pt;}
.ls10_c00058{letter-spacing:0.320000pt;}
.ls2_c00058{letter-spacing:0.960000pt;}
.ls8_c00058{letter-spacing:5.120000pt;}
.ls6_c00058{letter-spacing:5.753600pt;}
.ls4_c00058{letter-spacing:8.640000pt;}
.ls0_c00058{letter-spacing:9.920000pt;}
.lsa_c00058{letter-spacing:10.240000pt;}
.ls9_c00058{letter-spacing:11.200000pt;}
.ls3_c00058{letter-spacing:16.000000pt;}
.ls7_c00058{letter-spacing:16.320000pt;}
.ws2_c00058{word-spacing:-16.128000pt;}
.ws1_c00058{word-spacing:-16.064000pt;}
.ws4_c00058{word-spacing:-13.253120pt;}
.ws5_c00058{word-spacing:-13.146240pt;}
.ws0_c00058{word-spacing:-10.810240pt;}
.ws3_c00058{word-spacing:-8.640000pt;}
.ws12_c00058{word-spacing:-0.448000pt;}
.ws11_c00058{word-spacing:-0.320000pt;}
.ws2f_c00058{word-spacing:-0.128000pt;}
.ws16_c00058{word-spacing:-0.064000pt;}
.ws33_c00058{word-spacing:-0.053440pt;}
.ws6_c00058{word-spacing:0.000000pt;}
.ws8_c00058{word-spacing:0.144000pt;}
.ws32_c00058{word-spacing:0.160320pt;}
.ws7_c00058{word-spacing:0.240000pt;}
.wsb_c00058{word-spacing:0.256000pt;}
.ws34_c00058{word-spacing:0.320640pt;}
.ws1d_c00058{word-spacing:0.640000pt;}
.wsd_c00058{word-spacing:1.152000pt;}
.wsc_c00058{word-spacing:1.216000pt;}
.wse_c00058{word-spacing:1.280000pt;}
.ws15_c00058{word-spacing:1.600000pt;}
.ws31_c00058{word-spacing:2.992640pt;}
.ws30_c00058{word-spacing:3.099520pt;}
.ws1c_c00058{word-spacing:3.136000pt;}
.ws13_c00058{word-spacing:3.200000pt;}
.ws1b_c00058{word-spacing:3.520000pt;}
.ws23_c00058{word-spacing:4.096000pt;}
.ws28_c00058{word-spacing:4.800000pt;}
.ws2a_c00058{word-spacing:5.056000pt;}
.ws29_c00058{word-spacing:5.120000pt;}
.ws2c_c00058{word-spacing:5.376000pt;}
.ws2b_c00058{word-spacing:5.440000pt;}
.ws1f_c00058{word-spacing:5.632000pt;}
.ws21_c00058{word-spacing:5.696000pt;}
.ws20_c00058{word-spacing:5.760000pt;}
.ws1e_c00058{word-spacing:6.400000pt;}
.ws22_c00058{word-spacing:6.656000pt;}
.ws14_c00058{word-spacing:8.640000pt;}
.wsa_c00058{word-spacing:10.176000pt;}
.ws9_c00058{word-spacing:10.240000pt;}
.ws2d_c00058{word-spacing:11.200000pt;}
.ws17_c00058{word-spacing:13.056000pt;}
.ws18_c00058{word-spacing:13.120000pt;}
.ws2e_c00058{word-spacing:14.272000pt;}
.ws10_c00058{word-spacing:15.616000pt;}
.wsf_c00058{word-spacing:15.680000pt;}
.ws27_c00058{word-spacing:16.320000pt;}
.ws26_c00058{word-spacing:16.640000pt;}
.ws1a_c00058{word-spacing:19.456000pt;}
.ws19_c00058{word-spacing:19.520000pt;}
.ws24_c00058{word-spacing:23.296000pt;}
.ws25_c00058{word-spacing:23.360000pt;}
._1_c00058{margin-left:-0.940800pt;}
._0_c00058{width:1.084800pt;}
._2_c00058{width:2.668800pt;}
._7_c00058{width:4.716800pt;}
._3_c00058{width:8.320000pt;}
._9_c00058{width:10.182400pt;}
._8_c00058{width:11.264000pt;}
._4_c00058{width:12.972800pt;}
._5_c00058{width:19.417600pt;}
._6_c00058{width:22.822400pt;}
.fs3_c00058{font-size:34.560000pt;}
.fs2_c00058{font-size:42.560000pt;}
.fs0_c00058{font-size:48.000000pt;}
.fs4_c00058{font-size:53.440000pt;}
.fs1_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y27_c00058{bottom:50.880000pt;}
.y26_c00058{bottom:102.240000pt;}
.y25_c00058{bottom:117.520000pt;}
.y24_c00058{bottom:128.236000pt;}
.y23_c00058{bottom:148.240000pt;}
.y28_c00058{bottom:159.520000pt;}
.y22_c00058{bottom:214.240000pt;}
.y21_c00058{bottom:241.840000pt;}
.y20_c00058{bottom:269.440000pt;}
.y1f_c00058{bottom:297.040000pt;}
.y1e_c00058{bottom:324.640000pt;}
.y1d_c00058{bottom:352.240000pt;}
.y1c_c00058{bottom:379.840000pt;}
.y1b_c00058{bottom:407.440000pt;}
.y1a_c00058{bottom:435.040000pt;}
.y19_c00058{bottom:462.640000pt;}
.y18_c00058{bottom:490.240000pt;}
.y17_c00058{bottom:517.840000pt;}
.y16_c00058{bottom:545.440000pt;}
.y15_c00058{bottom:573.040000pt;}
.y14_c00058{bottom:600.640000pt;}
.y13_c00058{bottom:628.240000pt;}
.y12_c00058{bottom:655.840000pt;}
.y11_c00058{bottom:683.440000pt;}
.y10_c00058{bottom:711.040000pt;}
.yf_c00058{bottom:738.640000pt;}
.ye_c00058{bottom:766.160000pt;}
.yd_c00058{bottom:793.760000pt;}
.yc_c00058{bottom:821.360000pt;}
.yb_c00058{bottom:848.960000pt;}
.ya_c00058{bottom:876.560000pt;}
.y9_c00058{bottom:904.160000pt;}
.y8_c00058{bottom:931.760000pt;}
.y7_c00058{bottom:959.360000pt;}
.y6_c00058{bottom:986.960000pt;}
.y5_c00058{bottom:1005.360000pt;}
.y4_c00058{bottom:1023.040000pt;}
.y3_c00058{bottom:1036.804000pt;}
.y2_c00058{bottom:1050.640000pt;}
.y1_c00058{bottom:1064.400000pt;}
.h6_c00058{height:33.918750pt;}
.h3_c00058{height:47.085938pt;}
.h2_c00058{height:47.109375pt;}
.h7_c00058{height:52.448437pt;}
.h4_c00058{height:62.812500pt;}
.h5_c00058{height:65.770312pt;}
.h0_c00058{height:1122.560000pt;}
.h1_c00058{height:1122.666667pt;}
.w0_c00058{width:793.840000pt;}
.w1_c00058{width:794.000000pt;}
.x0_c00058{left:0.000000pt;}
.x3_c00058{left:113.440000pt;}
.x2_c00058{left:377.920000pt;}
.x1_c00058{left:396.960000pt;}
.x4_c00058{left:664.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_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_56ec340fdcd9fcbebf592776.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_6ebbdf2c1e448ff76999ef8d.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_30c5730bfa9379199a5dfeec.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00059;src:url('chunks/assets/font_69596b57228382c4bf98acf3.woff2')format("woff");}.ff4_c00059{font-family:ff4_c00059;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:ff5_c00059;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00059{font-family:ff5_c00059;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00059;src:url('chunks/assets/font_892344ae2d22c285d765ab82.woff2')format("woff");}.ff6_c00059{font-family:ff6_c00059;line-height:3.333984;font-style:normal;font-weight: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_c00059;src:url('chunks/assets/font_41cdfaee018e77dac7eea901.woff2')format("woff");}.ff7_c00059{font-family:ff7_c00059;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00059{vertical-align:-61.938000px;}
.v9_c00059{vertical-align:-20.880000px;}
.v4_c00059{vertical-align:-13.680000px;}
.v6_c00059{vertical-align:-10.440000px;}
.v0_c00059{vertical-align:0.000000px;}
.v7_c00059{vertical-align:10.440000px;}
.v3_c00059{vertical-align:13.680000px;}
.v2_c00059{vertical-align:27.000000px;}
.v5_c00059{vertical-align:28.440000px;}
.v8_c00059{vertical-align:36.360000px;}
.ls1a_c00059{letter-spacing:-0.288000px;}
.ls19_c00059{letter-spacing:-0.216000px;}
.ls1b_c00059{letter-spacing:-0.144000px;}
.ls1e_c00059{letter-spacing:-0.120240px;}
.ls17_c00059{letter-spacing:-0.072000px;}
.ls1c_c00059{letter-spacing:-0.060120px;}
.ls15_c00059{letter-spacing:0.000000px;}
.ls1_c00059{letter-spacing:0.072000px;}
.ls14_c00059{letter-spacing:0.120240px;}
.ls16_c00059{letter-spacing:0.144000px;}
.ls1d_c00059{letter-spacing:0.180360px;}
.ls18_c00059{letter-spacing:0.191520px;}
.ls11_c00059{letter-spacing:1.512000px;}
.lsd_c00059{letter-spacing:1.656000px;}
.ls7_c00059{letter-spacing:1.800000px;}
.lsb_c00059{letter-spacing:2.298600px;}
.ls8_c00059{letter-spacing:3.240000px;}
.ls2_c00059{letter-spacing:4.320000px;}
.lse_c00059{letter-spacing:6.847200px;}
.ls6_c00059{letter-spacing:8.280000px;}
.ls3_c00059{letter-spacing:11.160000px;}
.ls13_c00059{letter-spacing:11.963880px;}
.ls12_c00059{letter-spacing:15.696000px;}
.ls10_c00059{letter-spacing:16.056000px;}
.lsa_c00059{letter-spacing:20.016000px;}
.lsf_c00059{letter-spacing:21.744000px;}
.ls9_c00059{letter-spacing:23.040000px;}
.ls5_c00059{letter-spacing:30.744000px;}
.ls4_c00059{letter-spacing:30.960000px;}
.lsc_c00059{letter-spacing:102.113280px;}
.ls0_c00059{letter-spacing:319.518000px;}
.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;}
}
.ws6_c00059{word-spacing:-72.000000px;}
.ws9_c00059{word-spacing:-71.856000px;}
.ws7_c00059{word-spacing:-51.120000px;}
.ws1_c00059{word-spacing:-18.144000px;}
.ws0_c00059{word-spacing:-18.072000px;}
.ws2_c00059{word-spacing:-17.928000px;}
.ws8_c00059{word-spacing:-17.856000px;}
.ws4_c00059{word-spacing:-17.784000px;}
.ws5_c00059{word-spacing:-17.712000px;}
.ws3_c00059{word-spacing:-12.161520px;}
.wsa_c00059{word-spacing:-9.720000px;}
.ws26_c00059{word-spacing:-0.420840px;}
.wsc_c00059{word-spacing:-0.162000px;}
.ws12_c00059{word-spacing:-0.072000px;}
.wsb_c00059{word-spacing:0.000000px;}
.ws28_c00059{word-spacing:0.180360px;}
.ws27_c00059{word-spacing:0.240480px;}
.ws11_c00059{word-spacing:4.248000px;}
.ws10_c00059{word-spacing:4.320000px;}
.ws25_c00059{word-spacing:4.809600px;}
.ws1a_c00059{word-spacing:4.968000px;}
.ws15_c00059{word-spacing:6.048000px;}
.ws17_c00059{word-spacing:6.480000px;}
.ws16_c00059{word-spacing:6.768000px;}
.ws23_c00059{word-spacing:7.128000px;}
.ws22_c00059{word-spacing:8.280000px;}
.wsf_c00059{word-spacing:9.648000px;}
.wse_c00059{word-spacing:9.720000px;}
.ws13_c00059{word-spacing:10.728000px;}
.ws14_c00059{word-spacing:11.160000px;}
.ws24_c00059{word-spacing:12.024000px;}
.ws21_c00059{word-spacing:14.400000px;}
.ws20_c00059{word-spacing:14.688000px;}
.ws1e_c00059{word-spacing:15.048000px;}
.ws1f_c00059{word-spacing:15.120000px;}
.wsd_c00059{word-spacing:15.408000px;}
.ws1b_c00059{word-spacing:15.768000px;}
.ws1c_c00059{word-spacing:16.128000px;}
.ws1d_c00059{word-spacing:16.200000px;}
.ws18_c00059{word-spacing:30.528000px;}
.ws19_c00059{word-spacing:30.600000px;}
._5_c00059{margin-left:-32.544000px;}
._6_c00059{margin-left:-2.626560px;}
._0_c00059{margin-left:-1.080000px;}
._1_c00059{width:1.080000px;}
._3_c00059{width:2.088000px;}
._4_c00059{width:8.712000px;}
._2_c00059{width:15.552000px;}
._7_c00059{width:17.344800px;}
._9_c00059{width:20.232000px;}
._8_c00059{width:21.960000px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs5_c00059{font-size:38.880000px;}
.fs4_c00059{font-size:42.120000px;}
.fs2_c00059{font-size:47.880000px;}
.fs3_c00059{font-size:51.120000px;}
.fs0_c00059{font-size:54.000000px;}
.fs6_c00059{font-size:60.120000px;}
.fs1_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y26_c00059{bottom:57.240000px;}
.y25_c00059{bottom:109.791180px;}
.y24_c00059{bottom:126.985500px;}
.y23_c00059{bottom:149.490000px;}
.y27_c00059{bottom:162.180000px;}
.y22_c00059{bottom:238.860000px;}
.y21_c00059{bottom:270.540000px;}
.y20_c00059{bottom:302.220000px;}
.y1f_c00059{bottom:323.370000px;}
.y1e_c00059{bottom:350.460000px;}
.y1d_c00059{bottom:359.550000px;}
.y1c_c00059{bottom:395.370000px;}
.y1b_c00059{bottom:427.320000px;}
.y1a_c00059{bottom:458.370000px;}
.y19_c00059{bottom:489.420000px;}
.y18_c00059{bottom:520.470000px;}
.y17_c00059{bottom:551.520000px;}
.y16_c00059{bottom:582.570000px;}
.y15_c00059{bottom:613.620000px;}
.y14_c00059{bottom:644.670000px;}
.y13_c00059{bottom:675.720000px;}
.y12_c00059{bottom:706.770000px;}
.y11_c00059{bottom:737.820000px;}
.y10_c00059{bottom:768.690000px;}
.yf_c00059{bottom:799.920000px;}
.ye_c00059{bottom:830.970000px;}
.yd_c00059{bottom:861.930000px;}
.yc_c00059{bottom:892.980000px;}
.yb_c00059{bottom:924.030000px;}
.ya_c00059{bottom:955.080000px;}
.y9_c00059{bottom:986.130000px;}
.y8_c00059{bottom:1017.180000px;}
.y7_c00059{bottom:1048.230000px;}
.y6_c00059{bottom:1079.280000px;}
.y5_c00059{bottom:1110.330000px;}
.y4_c00059{bottom:1131.030000px;}
.y3_c00059{bottom:1150.915500px;}
.y2_c00059{bottom:1166.400000px;}
.y1_c00059{bottom:1197.450000px;}
.ha_c00059{height:38.158594px;}
.h2_c00059{height:52.998047px;}
.hb_c00059{height:59.004492px;}
.h3_c00059{height:70.664062px;}
.h4_c00059{height:72.562500px;}
.h5_c00059{height:73.991602px;}
.h6_c00059{height:75.093750px;}
.h8_c00059{height:107.024062px;}
.h9_c00059{height:143.542969px;}
.h7_c00059{height:157.222969px;}
.h0_c00059{height:1262.880000px;}
.h1_c00059{height:1263.000000px;}
.w0_c00059{width:893.070000px;}
.w1_c00059{width:893.250000px;}
.x0_c00059{left:0.000000px;}
.x2_c00059{left:127.620000px;}
.x3_c00059{left:380.970000px;}
.x4_c00059{left:441.540000px;}
.x1_c00059{left:446.580000px;}
@media print{
.v1_c00059{vertical-align:-55.056000pt;}
.v9_c00059{vertical-align:-18.560000pt;}
.v4_c00059{vertical-align:-12.160000pt;}
.v6_c00059{vertical-align:-9.280000pt;}
.v0_c00059{vertical-align:0.000000pt;}
.v7_c00059{vertical-align:9.280000pt;}
.v3_c00059{vertical-align:12.160000pt;}
.v2_c00059{vertical-align:24.000000pt;}
.v5_c00059{vertical-align:25.280000pt;}
.v8_c00059{vertical-align:32.320000pt;}
.ls1a_c00059{letter-spacing:-0.256000pt;}
.ls19_c00059{letter-spacing:-0.192000pt;}
.ls1b_c00059{letter-spacing:-0.128000pt;}
.ls1e_c00059{letter-spacing:-0.106880pt;}
.ls17_c00059{letter-spacing:-0.064000pt;}
.ls1c_c00059{letter-spacing:-0.053440pt;}
.ls15_c00059{letter-spacing:0.000000pt;}
.ls1_c00059{letter-spacing:0.064000pt;}
.ls14_c00059{letter-spacing:0.106880pt;}
.ls16_c00059{letter-spacing:0.128000pt;}
.ls1d_c00059{letter-spacing:0.160320pt;}
.ls18_c00059{letter-spacing:0.170240pt;}
.ls11_c00059{letter-spacing:1.344000pt;}
.lsd_c00059{letter-spacing:1.472000pt;}
.ls7_c00059{letter-spacing:1.600000pt;}
.lsb_c00059{letter-spacing:2.043200pt;}
.ls8_c00059{letter-spacing:2.880000pt;}
.ls2_c00059{letter-spacing:3.840000pt;}
.lse_c00059{letter-spacing:6.086400pt;}
.ls6_c00059{letter-spacing:7.360000pt;}
.ls3_c00059{letter-spacing:9.920000pt;}
.ls13_c00059{letter-spacing:10.634560pt;}
.ls12_c00059{letter-spacing:13.952000pt;}
.ls10_c00059{letter-spacing:14.272000pt;}
.lsa_c00059{letter-spacing:17.792000pt;}
.lsf_c00059{letter-spacing:19.328000pt;}
.ls9_c00059{letter-spacing:20.480000pt;}
.ls5_c00059{letter-spacing:27.328000pt;}
.ls4_c00059{letter-spacing:27.520000pt;}
.lsc_c00059{letter-spacing:90.767360pt;}
.ls0_c00059{letter-spacing:284.016000pt;}
.ws6_c00059{word-spacing:-64.000000pt;}
.ws9_c00059{word-spacing:-63.872000pt;}
.ws7_c00059{word-spacing:-45.440000pt;}
.ws1_c00059{word-spacing:-16.128000pt;}
.ws0_c00059{word-spacing:-16.064000pt;}
.ws2_c00059{word-spacing:-15.936000pt;}
.ws8_c00059{word-spacing:-15.872000pt;}
.ws4_c00059{word-spacing:-15.808000pt;}
.ws5_c00059{word-spacing:-15.744000pt;}
.ws3_c00059{word-spacing:-10.810240pt;}
.wsa_c00059{word-spacing:-8.640000pt;}
.ws26_c00059{word-spacing:-0.374080pt;}
.wsc_c00059{word-spacing:-0.144000pt;}
.ws12_c00059{word-spacing:-0.064000pt;}
.wsb_c00059{word-spacing:0.000000pt;}
.ws28_c00059{word-spacing:0.160320pt;}
.ws27_c00059{word-spacing:0.213760pt;}
.ws11_c00059{word-spacing:3.776000pt;}
.ws10_c00059{word-spacing:3.840000pt;}
.ws25_c00059{word-spacing:4.275200pt;}
.ws1a_c00059{word-spacing:4.416000pt;}
.ws15_c00059{word-spacing:5.376000pt;}
.ws17_c00059{word-spacing:5.760000pt;}
.ws16_c00059{word-spacing:6.016000pt;}
.ws23_c00059{word-spacing:6.336000pt;}
.ws22_c00059{word-spacing:7.360000pt;}
.wsf_c00059{word-spacing:8.576000pt;}
.wse_c00059{word-spacing:8.640000pt;}
.ws13_c00059{word-spacing:9.536000pt;}
.ws14_c00059{word-spacing:9.920000pt;}
.ws24_c00059{word-spacing:10.688000pt;}
.ws21_c00059{word-spacing:12.800000pt;}
.ws20_c00059{word-spacing:13.056000pt;}
.ws1e_c00059{word-spacing:13.376000pt;}
.ws1f_c00059{word-spacing:13.440000pt;}
.wsd_c00059{word-spacing:13.696000pt;}
.ws1b_c00059{word-spacing:14.016000pt;}
.ws1c_c00059{word-spacing:14.336000pt;}
.ws1d_c00059{word-spacing:14.400000pt;}
.ws18_c00059{word-spacing:27.136000pt;}
.ws19_c00059{word-spacing:27.200000pt;}
._5_c00059{margin-left:-28.928000pt;}
._6_c00059{margin-left:-2.334720pt;}
._0_c00059{margin-left:-0.960000pt;}
._1_c00059{width:0.960000pt;}
._3_c00059{width:1.856000pt;}
._4_c00059{width:7.744000pt;}
._2_c00059{width:13.824000pt;}
._7_c00059{width:15.417600pt;}
._9_c00059{width:17.984000pt;}
._8_c00059{width:19.520000pt;}
.fs5_c00059{font-size:34.560000pt;}
.fs4_c00059{font-size:37.440000pt;}
.fs2_c00059{font-size:42.560000pt;}
.fs3_c00059{font-size:45.440000pt;}
.fs0_c00059{font-size:48.000000pt;}
.fs6_c00059{font-size:53.440000pt;}
.fs1_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y26_c00059{bottom:50.880000pt;}
.y25_c00059{bottom:97.592160pt;}
.y24_c00059{bottom:112.876000pt;}
.y23_c00059{bottom:132.880000pt;}
.y27_c00059{bottom:144.160000pt;}
.y22_c00059{bottom:212.320000pt;}
.y21_c00059{bottom:240.480000pt;}
.y20_c00059{bottom:268.640000pt;}
.y1f_c00059{bottom:287.440000pt;}
.y1e_c00059{bottom:311.520000pt;}
.y1d_c00059{bottom:319.600000pt;}
.y1c_c00059{bottom:351.440000pt;}
.y1b_c00059{bottom:379.840000pt;}
.y1a_c00059{bottom:407.440000pt;}
.y19_c00059{bottom:435.040000pt;}
.y18_c00059{bottom:462.640000pt;}
.y17_c00059{bottom:490.240000pt;}
.y16_c00059{bottom:517.840000pt;}
.y15_c00059{bottom:545.440000pt;}
.y14_c00059{bottom:573.040000pt;}
.y13_c00059{bottom:600.640000pt;}
.y12_c00059{bottom:628.240000pt;}
.y11_c00059{bottom:655.840000pt;}
.y10_c00059{bottom:683.280000pt;}
.yf_c00059{bottom:711.040000pt;}
.ye_c00059{bottom:738.640000pt;}
.yd_c00059{bottom:766.160000pt;}
.yc_c00059{bottom:793.760000pt;}
.yb_c00059{bottom:821.360000pt;}
.ya_c00059{bottom:848.960000pt;}
.y9_c00059{bottom:876.560000pt;}
.y8_c00059{bottom:904.160000pt;}
.y7_c00059{bottom:931.760000pt;}
.y6_c00059{bottom:959.360000pt;}
.y5_c00059{bottom:986.960000pt;}
.y4_c00059{bottom:1005.360000pt;}
.y3_c00059{bottom:1023.036000pt;}
.y2_c00059{bottom:1036.800000pt;}
.y1_c00059{bottom:1064.400000pt;}
.ha_c00059{height:33.918750pt;}
.h2_c00059{height:47.109375pt;}
.hb_c00059{height:52.448437pt;}
.h3_c00059{height:62.812500pt;}
.h4_c00059{height:64.500000pt;}
.h5_c00059{height:65.770312pt;}
.h6_c00059{height:66.750000pt;}
.h8_c00059{height:95.132500pt;}
.h9_c00059{height:127.593750pt;}
.h7_c00059{height:139.753750pt;}
.h0_c00059{height:1122.560000pt;}
.h1_c00059{height:1122.666667pt;}
.w0_c00059{width:793.840000pt;}
.w1_c00059{width:794.000000pt;}
.x0_c00059{left:0.000000pt;}
.x2_c00059{left:113.440000pt;}
.x3_c00059{left:338.640000pt;}
.x4_c00059{left:392.480000pt;}
.x1_c00059{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e0e1587ee371ca494d7321f.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_89c2d2ca272ae82b54847f75.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;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_c00060;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00060{vertical-align:-20.880000px;}
.v0_c00060{vertical-align:0.000000px;}
.v1_c00060{vertical-align:27.000000px;}
.lsc_c00060{letter-spacing:-0.576000px;}
.lsd_c00060{letter-spacing:-0.216000px;}
.ls10_c00060{letter-spacing:-0.120240px;}
.lsb_c00060{letter-spacing:-0.108000px;}
.lsf_c00060{letter-spacing:-0.060120px;}
.lsa_c00060{letter-spacing:0.000000px;}
.ls1_c00060{letter-spacing:0.072000px;}
.ls9_c00060{letter-spacing:0.120240px;}
.lse_c00060{letter-spacing:0.191520px;}
.ls6_c00060{letter-spacing:0.432000px;}
.ls5_c00060{letter-spacing:8.287200px;}
.ls8_c00060{letter-spacing:9.360000px;}
.ls4_c00060{letter-spacing:11.160000px;}
.ls3_c00060{letter-spacing:11.174400px;}
.ls7_c00060{letter-spacing:12.240000px;}
.ls0_c00060{letter-spacing:15.120000px;}
.ls2_c00060{letter-spacing:30.744000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:-18.072000px;}
.ws1_c00060{word-spacing:-12.161520px;}
.ws2_c00060{word-spacing:-9.720000px;}
.ws17_c00060{word-spacing:-0.432000px;}
.ws24_c00060{word-spacing:-0.180360px;}
.ws9_c00060{word-spacing:-0.072000px;}
.ws3_c00060{word-spacing:0.000000px;}
.ws5_c00060{word-spacing:0.162000px;}
.ws26_c00060{word-spacing:0.180360px;}
.ws25_c00060{word-spacing:0.240480px;}
.ws4_c00060{word-spacing:0.270000px;}
.ws7_c00060{word-spacing:0.648000px;}
.ws6_c00060{word-spacing:0.720000px;}
.wsc_c00060{word-spacing:1.728000px;}
.wsd_c00060{word-spacing:1.800000px;}
.ws1a_c00060{word-spacing:2.808000px;}
.ws13_c00060{word-spacing:3.168000px;}
.ws1b_c00060{word-spacing:3.240000px;}
.ws19_c00060{word-spacing:3.528000px;}
.ws16_c00060{word-spacing:4.680000px;}
.wsb_c00060{word-spacing:5.328000px;}
.ws23_c00060{word-spacing:5.688000px;}
.ws1f_c00060{word-spacing:6.480000px;}
.ws14_c00060{word-spacing:8.208000px;}
.ws15_c00060{word-spacing:8.280000px;}
.ws18_c00060{word-spacing:8.568000px;}
.ws21_c00060{word-spacing:9.000000px;}
.ws20_c00060{word-spacing:9.288000px;}
.ws22_c00060{word-spacing:9.360000px;}
.ws11_c00060{word-spacing:11.088000px;}
.ws12_c00060{word-spacing:11.736000px;}
.ws1c_c00060{word-spacing:12.168000px;}
.ws1d_c00060{word-spacing:12.240000px;}
.ws8_c00060{word-spacing:15.048000px;}
.wsa_c00060{word-spacing:15.120000px;}
.ws1e_c00060{word-spacing:18.000000px;}
.ws10_c00060{word-spacing:24.120000px;}
.wse_c00060{word-spacing:24.480000px;}
.wsf_c00060{word-spacing:25.056000px;}
._1_c00060{margin-left:-1.058400px;}
._0_c00060{width:1.220400px;}
._5_c00060{width:2.642400px;}
._4_c00060{width:3.844800px;}
._6_c00060{width:5.810400px;}
._3_c00060{width:11.160000px;}
._2_c00060{width:14.716800px;}
.fc0_c00060{color:rgb(0,0,0);}
.fs3_c00060{font-size:38.880000px;}
.fs2_c00060{font-size:47.880000px;}
.fs0_c00060{font-size:54.000000px;}
.fs4_c00060{font-size:60.120000px;}
.fs1_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y27_c00060{bottom:57.240000px;}
.y26_c00060{bottom:109.795680px;}
.y25_c00060{bottom:132.210000px;}
.y28_c00060{bottom:144.900000px;}
.y24_c00060{bottom:189.270000px;}
.y23_c00060{bottom:220.320000px;}
.y22_c00060{bottom:251.370000px;}
.y21_c00060{bottom:282.420000px;}
.y20_c00060{bottom:313.470000px;}
.y1f_c00060{bottom:344.520000px;}
.y1e_c00060{bottom:375.570000px;}
.y1d_c00060{bottom:406.620000px;}
.y1c_c00060{bottom:437.670000px;}
.y1b_c00060{bottom:468.720000px;}
.y1a_c00060{bottom:499.770000px;}
.y19_c00060{bottom:520.470000px;}
.y18_c00060{bottom:551.520000px;}
.y17_c00060{bottom:582.570000px;}
.y16_c00060{bottom:613.620000px;}
.y15_c00060{bottom:644.670000px;}
.y14_c00060{bottom:675.720000px;}
.y13_c00060{bottom:706.770000px;}
.y12_c00060{bottom:737.820000px;}
.y11_c00060{bottom:768.870000px;}
.y10_c00060{bottom:799.920000px;}
.yf_c00060{bottom:830.970000px;}
.ye_c00060{bottom:861.930000px;}
.yd_c00060{bottom:892.980000px;}
.yc_c00060{bottom:924.030000px;}
.yb_c00060{bottom:955.080000px;}
.ya_c00060{bottom:986.130000px;}
.y9_c00060{bottom:1017.180000px;}
.y8_c00060{bottom:1048.230000px;}
.y7_c00060{bottom:1079.280000px;}
.y6_c00060{bottom:1110.330000px;}
.y5_c00060{bottom:1131.030000px;}
.y4_c00060{bottom:1150.920000px;}
.y3_c00060{bottom:1166.404500px;}
.y2_c00060{bottom:1181.970000px;}
.y1_c00060{bottom:1197.450000px;}
.h7_c00060{height:38.158594px;}
.h3_c00060{height:52.971680px;}
.h2_c00060{height:52.998047px;}
.h8_c00060{height:59.004492px;}
.h4_c00060{height:70.664062px;}
.h6_c00060{height:73.991602px;}
.h5_c00060{height:75.093750px;}
.h0_c00060{height:1262.880000px;}
.h1_c00060{height:1263.000000px;}
.w0_c00060{width:893.070000px;}
.w1_c00060{width:893.250000px;}
.x0_c00060{left:0.000000px;}
.x3_c00060{left:127.620000px;}
.x2_c00060{left:425.160000px;}
.x1_c00060{left:446.580000px;}
.x4_c00060{left:747.540000px;}
@media print{
.v2_c00060{vertical-align:-18.560000pt;}
.v0_c00060{vertical-align:0.000000pt;}
.v1_c00060{vertical-align:24.000000pt;}
.lsc_c00060{letter-spacing:-0.512000pt;}
.lsd_c00060{letter-spacing:-0.192000pt;}
.ls10_c00060{letter-spacing:-0.106880pt;}
.lsb_c00060{letter-spacing:-0.096000pt;}
.lsf_c00060{letter-spacing:-0.053440pt;}
.lsa_c00060{letter-spacing:0.000000pt;}
.ls1_c00060{letter-spacing:0.064000pt;}
.ls9_c00060{letter-spacing:0.106880pt;}
.lse_c00060{letter-spacing:0.170240pt;}
.ls6_c00060{letter-spacing:0.384000pt;}
.ls5_c00060{letter-spacing:7.366400pt;}
.ls8_c00060{letter-spacing:8.320000pt;}
.ls4_c00060{letter-spacing:9.920000pt;}
.ls3_c00060{letter-spacing:9.932800pt;}
.ls7_c00060{letter-spacing:10.880000pt;}
.ls0_c00060{letter-spacing:13.440000pt;}
.ls2_c00060{letter-spacing:27.328000pt;}
.ws0_c00060{word-spacing:-16.064000pt;}
.ws1_c00060{word-spacing:-10.810240pt;}
.ws2_c00060{word-spacing:-8.640000pt;}
.ws17_c00060{word-spacing:-0.384000pt;}
.ws24_c00060{word-spacing:-0.160320pt;}
.ws9_c00060{word-spacing:-0.064000pt;}
.ws3_c00060{word-spacing:0.000000pt;}
.ws5_c00060{word-spacing:0.144000pt;}
.ws26_c00060{word-spacing:0.160320pt;}
.ws25_c00060{word-spacing:0.213760pt;}
.ws4_c00060{word-spacing:0.240000pt;}
.ws7_c00060{word-spacing:0.576000pt;}
.ws6_c00060{word-spacing:0.640000pt;}
.wsc_c00060{word-spacing:1.536000pt;}
.wsd_c00060{word-spacing:1.600000pt;}
.ws1a_c00060{word-spacing:2.496000pt;}
.ws13_c00060{word-spacing:2.816000pt;}
.ws1b_c00060{word-spacing:2.880000pt;}
.ws19_c00060{word-spacing:3.136000pt;}
.ws16_c00060{word-spacing:4.160000pt;}
.wsb_c00060{word-spacing:4.736000pt;}
.ws23_c00060{word-spacing:5.056000pt;}
.ws1f_c00060{word-spacing:5.760000pt;}
.ws14_c00060{word-spacing:7.296000pt;}
.ws15_c00060{word-spacing:7.360000pt;}
.ws18_c00060{word-spacing:7.616000pt;}
.ws21_c00060{word-spacing:8.000000pt;}
.ws20_c00060{word-spacing:8.256000pt;}
.ws22_c00060{word-spacing:8.320000pt;}
.ws11_c00060{word-spacing:9.856000pt;}
.ws12_c00060{word-spacing:10.432000pt;}
.ws1c_c00060{word-spacing:10.816000pt;}
.ws1d_c00060{word-spacing:10.880000pt;}
.ws8_c00060{word-spacing:13.376000pt;}
.wsa_c00060{word-spacing:13.440000pt;}
.ws1e_c00060{word-spacing:16.000000pt;}
.ws10_c00060{word-spacing:21.440000pt;}
.wse_c00060{word-spacing:21.760000pt;}
.wsf_c00060{word-spacing:22.272000pt;}
._1_c00060{margin-left:-0.940800pt;}
._0_c00060{width:1.084800pt;}
._5_c00060{width:2.348800pt;}
._4_c00060{width:3.417600pt;}
._6_c00060{width:5.164800pt;}
._3_c00060{width:9.920000pt;}
._2_c00060{width:13.081600pt;}
.fs3_c00060{font-size:34.560000pt;}
.fs2_c00060{font-size:42.560000pt;}
.fs0_c00060{font-size:48.000000pt;}
.fs4_c00060{font-size:53.440000pt;}
.fs1_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y27_c00060{bottom:50.880000pt;}
.y26_c00060{bottom:97.596160pt;}
.y25_c00060{bottom:117.520000pt;}
.y28_c00060{bottom:128.800000pt;}
.y24_c00060{bottom:168.240000pt;}
.y23_c00060{bottom:195.840000pt;}
.y22_c00060{bottom:223.440000pt;}
.y21_c00060{bottom:251.040000pt;}
.y20_c00060{bottom:278.640000pt;}
.y1f_c00060{bottom:306.240000pt;}
.y1e_c00060{bottom:333.840000pt;}
.y1d_c00060{bottom:361.440000pt;}
.y1c_c00060{bottom:389.040000pt;}
.y1b_c00060{bottom:416.640000pt;}
.y1a_c00060{bottom:444.240000pt;}
.y19_c00060{bottom:462.640000pt;}
.y18_c00060{bottom:490.240000pt;}
.y17_c00060{bottom:517.840000pt;}
.y16_c00060{bottom:545.440000pt;}
.y15_c00060{bottom:573.040000pt;}
.y14_c00060{bottom:600.640000pt;}
.y13_c00060{bottom:628.240000pt;}
.y12_c00060{bottom:655.840000pt;}
.y11_c00060{bottom:683.440000pt;}
.y10_c00060{bottom:711.040000pt;}
.yf_c00060{bottom:738.640000pt;}
.ye_c00060{bottom:766.160000pt;}
.yd_c00060{bottom:793.760000pt;}
.yc_c00060{bottom:821.360000pt;}
.yb_c00060{bottom:848.960000pt;}
.ya_c00060{bottom:876.560000pt;}
.y9_c00060{bottom:904.160000pt;}
.y8_c00060{bottom:931.760000pt;}
.y7_c00060{bottom:959.360000pt;}
.y6_c00060{bottom:986.960000pt;}
.y5_c00060{bottom:1005.360000pt;}
.y4_c00060{bottom:1023.040000pt;}
.y3_c00060{bottom:1036.804000pt;}
.y2_c00060{bottom:1050.640000pt;}
.y1_c00060{bottom:1064.400000pt;}
.h7_c00060{height:33.918750pt;}
.h3_c00060{height:47.085938pt;}
.h2_c00060{height:47.109375pt;}
.h8_c00060{height:52.448437pt;}
.h4_c00060{height:62.812500pt;}
.h6_c00060{height:65.770313pt;}
.h5_c00060{height:66.750000pt;}
.h0_c00060{height:1122.560000pt;}
.h1_c00060{height:1122.666667pt;}
.w0_c00060{width:793.840000pt;}
.w1_c00060{width:794.000000pt;}
.x0_c00060{left:0.000000pt;}
.x3_c00060{left:113.440000pt;}
.x2_c00060{left:377.920000pt;}
.x1_c00060{left:396.960000pt;}
.x4_c00060{left:664.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_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_357fe1d2793882751f31a334.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_a80fb1a5cf7980744e6bb85f.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;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_c00061;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00061;src:url('chunks/assets/font_d669001e5ed9826d501adb18.woff2')format("woff");}.ff5_c00061{font-family:ff5_c00061;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00061;src:url('chunks/assets/font_cf3e6a2a68de1b82772ce31a.woff2')format("woff");}.ff6_c00061{font-family:ff6_c00061;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00061{vertical-align:-164.880000px;}
.v1_c00061{vertical-align:-61.938000px;}
.ve_c00061{vertical-align:-20.880000px;}
.v6_c00061{vertical-align:-10.812960px;}
.v8_c00061{vertical-align:-5.776560px;}
.v5_c00061{vertical-align:-2.147040px;}
.v0_c00061{vertical-align:0.000000px;}
.va_c00061{vertical-align:5.040000px;}
.v7_c00061{vertical-align:7.923600px;}
.v2_c00061{vertical-align:27.000000px;}
.vd_c00061{vertical-align:28.425600px;}
.vb_c00061{vertical-align:31.320000px;}
.v9_c00061{vertical-align:36.360000px;}
.vc_c00061{vertical-align:42.120000px;}
.v4_c00061{vertical-align:44.280000px;}
.ls1a_c00061{letter-spacing:-0.360000px;}
.ls1c_c00061{letter-spacing:-0.288000px;}
.ls1b_c00061{letter-spacing:-0.144000px;}
.ls18_c00061{letter-spacing:-0.072000px;}
.ls1d_c00061{letter-spacing:-0.060120px;}
.ls16_c00061{letter-spacing:0.000000px;}
.lse_c00061{letter-spacing:0.056880px;}
.ls1_c00061{letter-spacing:0.072000px;}
.ls15_c00061{letter-spacing:0.120240px;}
.ls19_c00061{letter-spacing:0.144000px;}
.ls9_c00061{letter-spacing:0.146160px;}
.ls1e_c00061{letter-spacing:0.180360px;}
.ls17_c00061{letter-spacing:0.191520px;}
.ls4_c00061{letter-spacing:0.360000px;}
.ls3_c00061{letter-spacing:1.800000px;}
.lsa_c00061{letter-spacing:2.205000px;}
.ls6_c00061{letter-spacing:3.096000px;}
.lsb_c00061{letter-spacing:3.220560px;}
.lsc_c00061{letter-spacing:9.000000px;}
.ls11_c00061{letter-spacing:16.272000px;}
.ls12_c00061{letter-spacing:18.720000px;}
.ls10_c00061{letter-spacing:19.092960px;}
.ls8_c00061{letter-spacing:20.016000px;}
.lsd_c00061{letter-spacing:21.456000px;}
.ls7_c00061{letter-spacing:23.321520px;}
.ls14_c00061{letter-spacing:23.400000px;}
.ls13_c00061{letter-spacing:23.760000px;}
.lsf_c00061{letter-spacing:25.416000px;}
.ls2_c00061{letter-spacing:30.744000px;}
.ls0_c00061{letter-spacing:319.518000px;}
.ls5_c00061{letter-spacing:337.320000px;}
.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;}
}
.ws7_c00061{word-spacing:-72.000000px;}
.ws9_c00061{word-spacing:-71.856000px;}
.ws3_c00061{word-spacing:-51.120000px;}
.wsb_c00061{word-spacing:-18.144000px;}
.ws0_c00061{word-spacing:-18.072000px;}
.ws1_c00061{word-spacing:-18.000000px;}
.ws6_c00061{word-spacing:-17.928000px;}
.wsa_c00061{word-spacing:-15.912000px;}
.wsd_c00061{word-spacing:-15.210360px;}
.ws2_c00061{word-spacing:-12.161520px;}
.ws4_c00061{word-spacing:-11.246400px;}
.wsc_c00061{word-spacing:-9.720000px;}
.ws14_c00061{word-spacing:-0.432000px;}
.ws2a_c00061{word-spacing:-0.420840px;}
.ws1c_c00061{word-spacing:-0.360000px;}
.ws27_c00061{word-spacing:-0.240480px;}
.ws29_c00061{word-spacing:-0.180360px;}
.wsf_c00061{word-spacing:-0.162000px;}
.ws13_c00061{word-spacing:-0.072000px;}
.wse_c00061{word-spacing:0.000000px;}
.ws28_c00061{word-spacing:0.180360px;}
.ws12_c00061{word-spacing:0.288000px;}
.ws11_c00061{word-spacing:0.360000px;}
.ws10_c00061{word-spacing:1.728000px;}
.ws1f_c00061{word-spacing:2.088000px;}
.ws19_c00061{word-spacing:2.448000px;}
.ws22_c00061{word-spacing:2.520000px;}
.ws1e_c00061{word-spacing:4.248000px;}
.ws1a_c00061{word-spacing:4.320000px;}
.ws16_c00061{word-spacing:9.000000px;}
.ws1d_c00061{word-spacing:13.248000px;}
.ws15_c00061{word-spacing:14.328000px;}
.ws8_c00061{word-spacing:14.340240px;}
.ws5_c00061{word-spacing:14.698080px;}
.ws26_c00061{word-spacing:16.488000px;}
.ws25_c00061{word-spacing:16.848000px;}
.ws24_c00061{word-spacing:16.920000px;}
.ws23_c00061{word-spacing:17.568000px;}
.ws1b_c00061{word-spacing:18.720000px;}
.ws20_c00061{word-spacing:23.616000px;}
.ws21_c00061{word-spacing:23.688000px;}
.ws17_c00061{word-spacing:26.136000px;}
.ws18_c00061{word-spacing:26.208000px;}
._2_c00061{margin-left:-24.513840px;}
._0_c00061{margin-left:-1.238400px;}
._3_c00061{width:1.022400px;}
._1_c00061{width:2.390400px;}
._6_c00061{width:16.704000px;}
._5_c00061{width:19.584000px;}
._4_c00061{width:22.464000px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs5_c00061{font-size:38.880000px;}
.fs4_c00061{font-size:42.120000px;}
.fs2_c00061{font-size:47.880000px;}
.fs3_c00061{font-size:51.120000px;}
.fs0_c00061{font-size:54.000000px;}
.fs6_c00061{font-size:60.120000px;}
.fs1_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y26_c00061{bottom:57.240000px;}
.y25_c00061{bottom:115.020000px;}
.y24_c00061{bottom:132.210000px;}
.y23_c00061{bottom:149.490000px;}
.y27_c00061{bottom:162.180000px;}
.y22_c00061{bottom:235.440000px;}
.y21_c00061{bottom:266.490000px;}
.y20_c00061{bottom:297.540000px;}
.y1f_c00061{bottom:328.590000px;}
.y1e_c00061{bottom:359.640000px;}
.y1d_c00061{bottom:390.690000px;}
.y1c_c00061{bottom:421.740000px;}
.y1b_c00061{bottom:452.790000px;}
.y1a_c00061{bottom:483.840000px;}
.y19_c00061{bottom:514.890000px;}
.y18_c00061{bottom:535.590000px;}
.y17_c00061{bottom:562.682700px;}
.y16_c00061{bottom:571.770000px;}
.y15_c00061{bottom:605.700000px;}
.y14_c00061{bottom:636.750000px;}
.y13_c00061{bottom:667.800000px;}
.y12_c00061{bottom:698.850000px;}
.y11_c00061{bottom:730.080000px;}
.y10_c00061{bottom:739.170000px;}
.yf_c00061{bottom:784.440000px;}
.ye_c00061{bottom:815.490000px;}
.yd_c00061{bottom:846.540000px;}
.yc_c00061{bottom:877.590000px;}
.yb_c00061{bottom:908.640000px;}
.ya_c00061{bottom:939.690000px;}
.y9_c00061{bottom:966.870000px;}
.y8_c00061{bottom:1017.180000px;}
.y7_c00061{bottom:1048.230000px;}
.y6_c00061{bottom:1079.280000px;}
.y5_c00061{bottom:1110.330000px;}
.y4_c00061{bottom:1131.030000px;}
.y3_c00061{bottom:1150.915500px;}
.y2_c00061{bottom:1166.400000px;}
.y1_c00061{bottom:1197.450000px;}
.ha_c00061{height:38.158594px;}
.h2_c00061{height:52.998047px;}
.h3_c00061{height:70.664062px;}
.h5_c00061{height:73.991602px;}
.h4_c00061{height:75.093750px;}
.h6_c00061{height:107.024062px;}
.h9_c00061{height:109.839108px;}
.h8_c00061{height:144.035508px;}
.h7_c00061{height:151.959108px;}
.h0_c00061{height:1262.880000px;}
.h1_c00061{height:1263.000000px;}
.w0_c00061{width:893.070000px;}
.w1_c00061{width:893.250000px;}
.x0_c00061{left:0.000000px;}
.x2_c00061{left:127.620000px;}
.x7_c00061{left:154.620000px;}
.x8_c00061{left:389.430000px;}
.x5_c00061{left:390.510000px;}
.x9_c00061{left:435.415320px;}
.x1_c00061{left:446.580000px;}
.x3_c00061{left:450.090000px;}
.x6_c00061{left:452.520000px;}
.x4_c00061{left:460.080000px;}
@media print{
.v3_c00061{vertical-align:-146.560000pt;}
.v1_c00061{vertical-align:-55.056000pt;}
.ve_c00061{vertical-align:-18.560000pt;}
.v6_c00061{vertical-align:-9.611520pt;}
.v8_c00061{vertical-align:-5.134720pt;}
.v5_c00061{vertical-align:-1.908480pt;}
.v0_c00061{vertical-align:0.000000pt;}
.va_c00061{vertical-align:4.480000pt;}
.v7_c00061{vertical-align:7.043200pt;}
.v2_c00061{vertical-align:24.000000pt;}
.vd_c00061{vertical-align:25.267200pt;}
.vb_c00061{vertical-align:27.840000pt;}
.v9_c00061{vertical-align:32.320000pt;}
.vc_c00061{vertical-align:37.440000pt;}
.v4_c00061{vertical-align:39.360000pt;}
.ls1a_c00061{letter-spacing:-0.320000pt;}
.ls1c_c00061{letter-spacing:-0.256000pt;}
.ls1b_c00061{letter-spacing:-0.128000pt;}
.ls18_c00061{letter-spacing:-0.064000pt;}
.ls1d_c00061{letter-spacing:-0.053440pt;}
.ls16_c00061{letter-spacing:0.000000pt;}
.lse_c00061{letter-spacing:0.050560pt;}
.ls1_c00061{letter-spacing:0.064000pt;}
.ls15_c00061{letter-spacing:0.106880pt;}
.ls19_c00061{letter-spacing:0.128000pt;}
.ls9_c00061{letter-spacing:0.129920pt;}
.ls1e_c00061{letter-spacing:0.160320pt;}
.ls17_c00061{letter-spacing:0.170240pt;}
.ls4_c00061{letter-spacing:0.320000pt;}
.ls3_c00061{letter-spacing:1.600000pt;}
.lsa_c00061{letter-spacing:1.960000pt;}
.ls6_c00061{letter-spacing:2.752000pt;}
.lsb_c00061{letter-spacing:2.862720pt;}
.lsc_c00061{letter-spacing:8.000000pt;}
.ls11_c00061{letter-spacing:14.464000pt;}
.ls12_c00061{letter-spacing:16.640000pt;}
.ls10_c00061{letter-spacing:16.971520pt;}
.ls8_c00061{letter-spacing:17.792000pt;}
.lsd_c00061{letter-spacing:19.072000pt;}
.ls7_c00061{letter-spacing:20.730240pt;}
.ls14_c00061{letter-spacing:20.800000pt;}
.ls13_c00061{letter-spacing:21.120000pt;}
.lsf_c00061{letter-spacing:22.592000pt;}
.ls2_c00061{letter-spacing:27.328000pt;}
.ls0_c00061{letter-spacing:284.016000pt;}
.ls5_c00061{letter-spacing:299.840000pt;}
.ws7_c00061{word-spacing:-64.000000pt;}
.ws9_c00061{word-spacing:-63.872000pt;}
.ws3_c00061{word-spacing:-45.440000pt;}
.wsb_c00061{word-spacing:-16.128000pt;}
.ws0_c00061{word-spacing:-16.064000pt;}
.ws1_c00061{word-spacing:-16.000000pt;}
.ws6_c00061{word-spacing:-15.936000pt;}
.wsa_c00061{word-spacing:-14.144000pt;}
.wsd_c00061{word-spacing:-13.520320pt;}
.ws2_c00061{word-spacing:-10.810240pt;}
.ws4_c00061{word-spacing:-9.996800pt;}
.wsc_c00061{word-spacing:-8.640000pt;}
.ws14_c00061{word-spacing:-0.384000pt;}
.ws2a_c00061{word-spacing:-0.374080pt;}
.ws1c_c00061{word-spacing:-0.320000pt;}
.ws27_c00061{word-spacing:-0.213760pt;}
.ws29_c00061{word-spacing:-0.160320pt;}
.wsf_c00061{word-spacing:-0.144000pt;}
.ws13_c00061{word-spacing:-0.064000pt;}
.wse_c00061{word-spacing:0.000000pt;}
.ws28_c00061{word-spacing:0.160320pt;}
.ws12_c00061{word-spacing:0.256000pt;}
.ws11_c00061{word-spacing:0.320000pt;}
.ws10_c00061{word-spacing:1.536000pt;}
.ws1f_c00061{word-spacing:1.856000pt;}
.ws19_c00061{word-spacing:2.176000pt;}
.ws22_c00061{word-spacing:2.240000pt;}
.ws1e_c00061{word-spacing:3.776000pt;}
.ws1a_c00061{word-spacing:3.840000pt;}
.ws16_c00061{word-spacing:8.000000pt;}
.ws1d_c00061{word-spacing:11.776000pt;}
.ws15_c00061{word-spacing:12.736000pt;}
.ws8_c00061{word-spacing:12.746880pt;}
.ws5_c00061{word-spacing:13.064960pt;}
.ws26_c00061{word-spacing:14.656000pt;}
.ws25_c00061{word-spacing:14.976000pt;}
.ws24_c00061{word-spacing:15.040000pt;}
.ws23_c00061{word-spacing:15.616000pt;}
.ws1b_c00061{word-spacing:16.640000pt;}
.ws20_c00061{word-spacing:20.992000pt;}
.ws21_c00061{word-spacing:21.056000pt;}
.ws17_c00061{word-spacing:23.232000pt;}
.ws18_c00061{word-spacing:23.296000pt;}
._2_c00061{margin-left:-21.790080pt;}
._0_c00061{margin-left:-1.100800pt;}
._3_c00061{width:0.908800pt;}
._1_c00061{width:2.124800pt;}
._6_c00061{width:14.848000pt;}
._5_c00061{width:17.408000pt;}
._4_c00061{width:19.968000pt;}
.fs5_c00061{font-size:34.560000pt;}
.fs4_c00061{font-size:37.440000pt;}
.fs2_c00061{font-size:42.560000pt;}
.fs3_c00061{font-size:45.440000pt;}
.fs0_c00061{font-size:48.000000pt;}
.fs6_c00061{font-size:53.440000pt;}
.fs1_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y26_c00061{bottom:50.880000pt;}
.y25_c00061{bottom:102.240000pt;}
.y24_c00061{bottom:117.520000pt;}
.y23_c00061{bottom:132.880000pt;}
.y27_c00061{bottom:144.160000pt;}
.y22_c00061{bottom:209.280000pt;}
.y21_c00061{bottom:236.880000pt;}
.y20_c00061{bottom:264.480000pt;}
.y1f_c00061{bottom:292.080000pt;}
.y1e_c00061{bottom:319.680000pt;}
.y1d_c00061{bottom:347.280000pt;}
.y1c_c00061{bottom:374.880000pt;}
.y1b_c00061{bottom:402.480000pt;}
.y1a_c00061{bottom:430.080000pt;}
.y19_c00061{bottom:457.680000pt;}
.y18_c00061{bottom:476.080000pt;}
.y17_c00061{bottom:500.162400pt;}
.y16_c00061{bottom:508.240000pt;}
.y15_c00061{bottom:538.400000pt;}
.y14_c00061{bottom:566.000000pt;}
.y13_c00061{bottom:593.600000pt;}
.y12_c00061{bottom:621.200000pt;}
.y11_c00061{bottom:648.960000pt;}
.y10_c00061{bottom:657.040000pt;}
.yf_c00061{bottom:697.280000pt;}
.ye_c00061{bottom:724.880000pt;}
.yd_c00061{bottom:752.480000pt;}
.yc_c00061{bottom:780.080000pt;}
.yb_c00061{bottom:807.680000pt;}
.ya_c00061{bottom:835.280000pt;}
.y9_c00061{bottom:859.440000pt;}
.y8_c00061{bottom:904.160000pt;}
.y7_c00061{bottom:931.760000pt;}
.y6_c00061{bottom:959.360000pt;}
.y5_c00061{bottom:986.960000pt;}
.y4_c00061{bottom:1005.360000pt;}
.y3_c00061{bottom:1023.036000pt;}
.y2_c00061{bottom:1036.800000pt;}
.y1_c00061{bottom:1064.400000pt;}
.ha_c00061{height:33.918750pt;}
.h2_c00061{height:47.109375pt;}
.h3_c00061{height:62.812500pt;}
.h5_c00061{height:65.770312pt;}
.h4_c00061{height:66.750000pt;}
.h6_c00061{height:95.132500pt;}
.h9_c00061{height:97.634763pt;}
.h8_c00061{height:128.031562pt;}
.h7_c00061{height:135.074763pt;}
.h0_c00061{height:1122.560000pt;}
.h1_c00061{height:1122.666667pt;}
.w0_c00061{width:793.840000pt;}
.w1_c00061{width:794.000000pt;}
.x0_c00061{left:0.000000pt;}
.x2_c00061{left:113.440000pt;}
.x7_c00061{left:137.440000pt;}
.x8_c00061{left:346.160000pt;}
.x5_c00061{left:347.120000pt;}
.x9_c00061{left:387.035840pt;}
.x1_c00061{left:396.960000pt;}
.x3_c00061{left:400.080000pt;}
.x6_c00061{left:402.240000pt;}
.x4_c00061{left:408.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20700139d711f3fab5b9ba8f.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.284180;font-style:normal;font-weight:normal;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_e286679fb40fc9debde4758f.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_684a70dccd1f7e39d36b37a4.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00062;src:url('chunks/assets/font_a81fb89f6ce0109880be6617.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;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_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00062{vertical-align:-20.880000px;}
.v2_c00062{vertical-align:-14.760000px;}
.v0_c00062{vertical-align:0.000000px;}
.v3_c00062{vertical-align:14.760000px;}
.v1_c00062{vertical-align:27.000000px;}
.ls1d_c00062{letter-spacing:-0.576000px;}
.ls19_c00062{letter-spacing:-0.360000px;}
.ls1b_c00062{letter-spacing:-0.288000px;}
.ls1c_c00062{letter-spacing:-0.216000px;}
.ls1e_c00062{letter-spacing:-0.144000px;}
.ls17_c00062{letter-spacing:-0.108000px;}
.ls1a_c00062{letter-spacing:-0.072000px;}
.ls16_c00062{letter-spacing:0.000000px;}
.ls1_c00062{letter-spacing:0.072000px;}
.ls15_c00062{letter-spacing:0.120240px;}
.ls6_c00062{letter-spacing:0.144000px;}
.ls1f_c00062{letter-spacing:0.180360px;}
.ls18_c00062{letter-spacing:0.191520px;}
.ls4_c00062{letter-spacing:1.080000px;}
.ls5_c00062{letter-spacing:1.800000px;}
.ls8_c00062{letter-spacing:3.600000px;}
.ls7_c00062{letter-spacing:3.960000px;}
.ls14_c00062{letter-spacing:4.736880px;}
.ls9_c00062{letter-spacing:7.920000px;}
.ls2_c00062{letter-spacing:8.640000px;}
.lse_c00062{letter-spacing:16.056000px;}
.lsd_c00062{letter-spacing:18.000000px;}
.ls0_c00062{letter-spacing:18.720000px;}
.lsc_c00062{letter-spacing:20.016000px;}
.ls13_c00062{letter-spacing:20.576880px;}
.ls11_c00062{letter-spacing:21.600000px;}
.lsb_c00062{letter-spacing:21.744000px;}
.ls10_c00062{letter-spacing:22.248000px;}
.lsf_c00062{letter-spacing:22.320000px;}
.ls3_c00062{letter-spacing:23.040000px;}
.ls12_c00062{letter-spacing:24.536880px;}
.lsa_c00062{letter-spacing:25.920000px;}
.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:-72.000000px;}
.ws6_c00062{word-spacing:-71.928000px;}
.ws4_c00062{word-spacing:-18.144000px;}
.ws5_c00062{word-spacing:-18.072000px;}
.ws1_c00062{word-spacing:-18.000000px;}
.ws2_c00062{word-spacing:-17.928000px;}
.ws7_c00062{word-spacing:-17.856000px;}
.ws3_c00062{word-spacing:-17.712000px;}
.ws8_c00062{word-spacing:-15.984000px;}
.ws0_c00062{word-spacing:-12.161520px;}
.wsb_c00062{word-spacing:-9.720000px;}
.ws9_c00062{word-spacing:-3.960000px;}
.ws2a_c00062{word-spacing:-0.504000px;}
.ws2b_c00062{word-spacing:-0.432000px;}
.ws28_c00062{word-spacing:-0.144000px;}
.ws11_c00062{word-spacing:-0.072000px;}
.ws33_c00062{word-spacing:-0.060120px;}
.wsc_c00062{word-spacing:0.000000px;}
.wse_c00062{word-spacing:0.162000px;}
.ws1f_c00062{word-spacing:0.216000px;}
.wsd_c00062{word-spacing:0.270000px;}
.ws14_c00062{word-spacing:0.360000px;}
.ws24_c00062{word-spacing:0.576000px;}
.wsf_c00062{word-spacing:0.648000px;}
.ws1a_c00062{word-spacing:1.008000px;}
.ws19_c00062{word-spacing:1.080000px;}
.ws1d_c00062{word-spacing:1.656000px;}
.ws1e_c00062{word-spacing:1.728000px;}
.ws1b_c00062{word-spacing:1.800000px;}
.ws1c_c00062{word-spacing:1.872000px;}
.ws2c_c00062{word-spacing:2.448000px;}
.ws26_c00062{word-spacing:3.168000px;}
.ws22_c00062{word-spacing:3.528000px;}
.ws27_c00062{word-spacing:3.600000px;}
.ws20_c00062{word-spacing:3.888000px;}
.ws21_c00062{word-spacing:3.960000px;}
.ws2f_c00062{word-spacing:4.248000px;}
.ws32_c00062{word-spacing:5.328000px;}
.ws15_c00062{word-spacing:7.128000px;}
.ws23_c00062{word-spacing:7.848000px;}
.ws25_c00062{word-spacing:7.920000px;}
.ws12_c00062{word-spacing:8.208000px;}
.ws13_c00062{word-spacing:8.640000px;}
.ws2d_c00062{word-spacing:16.128000px;}
.ws10_c00062{word-spacing:18.720000px;}
.ws2e_c00062{word-spacing:21.528000px;}
.ws30_c00062{word-spacing:22.176000px;}
.ws31_c00062{word-spacing:22.248000px;}
.ws16_c00062{word-spacing:22.968000px;}
.ws17_c00062{word-spacing:23.040000px;}
.ws29_c00062{word-spacing:25.920000px;}
.ws18_c00062{word-spacing:26.568000px;}
._6_c00062{margin-left:-11.736000px;}
._7_c00062{margin-left:-3.938400px;}
._1_c00062{margin-left:-1.058400px;}
._0_c00062{width:1.220400px;}
._2_c00062{width:3.146400px;}
._8_c00062{width:4.320000px;}
._4_c00062{width:8.042400px;}
._5_c00062{width:20.016000px;}
._3_c00062{width:22.348800px;}
.fc0_c00062{color:rgb(0,0,0);}
.fs4_c00062{font-size:38.880000px;}
.fs2_c00062{font-size:47.880000px;}
.fs3_c00062{font-size:51.120000px;}
.fs0_c00062{font-size:54.000000px;}
.fs5_c00062{font-size:60.120000px;}
.fs1_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y28_c00062{bottom:57.240000px;}
.y27_c00062{bottom:115.020000px;}
.y29_c00062{bottom:127.710000px;}
.y26_c00062{bottom:186.210000px;}
.y25_c00062{bottom:206.910000px;}
.y24_c00062{bottom:227.610000px;}
.y23_c00062{bottom:248.310000px;}
.y22_c00062{bottom:279.540000px;}
.y21_c00062{bottom:311.040000px;}
.y20_c00062{bottom:342.090000px;}
.y1f_c00062{bottom:373.140000px;}
.y1e_c00062{bottom:404.190000px;}
.y1d_c00062{bottom:435.240000px;}
.y1c_c00062{bottom:466.470000px;}
.y1b_c00062{bottom:487.440000px;}
.y1a_c00062{bottom:508.680000px;}
.y19_c00062{bottom:529.740000px;}
.y18_c00062{bottom:550.890000px;}
.y17_c00062{bottom:582.120000px;}
.y16_c00062{bottom:613.620000px;}
.y15_c00062{bottom:644.670000px;}
.y14_c00062{bottom:675.720000px;}
.y13_c00062{bottom:706.770000px;}
.y12_c00062{bottom:737.820000px;}
.y11_c00062{bottom:768.870000px;}
.y10_c00062{bottom:799.920000px;}
.yf_c00062{bottom:830.970000px;}
.ye_c00062{bottom:861.930000px;}
.yd_c00062{bottom:892.980000px;}
.yc_c00062{bottom:924.030000px;}
.yb_c00062{bottom:955.080000px;}
.ya_c00062{bottom:986.130000px;}
.y9_c00062{bottom:1017.180000px;}
.y8_c00062{bottom:1048.230000px;}
.y7_c00062{bottom:1079.280000px;}
.y6_c00062{bottom:1110.330000px;}
.y5_c00062{bottom:1131.030000px;}
.y4_c00062{bottom:1150.920000px;}
.y3_c00062{bottom:1166.404500px;}
.y2_c00062{bottom:1181.970000px;}
.y1_c00062{bottom:1197.450000px;}
.h7_c00062{height:38.158594px;}
.h3_c00062{height:52.971680px;}
.h2_c00062{height:52.998047px;}
.h4_c00062{height:70.664062px;}
.h5_c00062{height:73.991602px;}
.h6_c00062{height:143.542969px;}
.h0_c00062{height:1262.880000px;}
.h1_c00062{height:1263.000000px;}
.w0_c00062{width:893.070000px;}
.w1_c00062{width:893.250000px;}
.x0_c00062{left:0.000000px;}
.x3_c00062{left:127.620000px;}
.x5_c00062{left:360.540000px;}
.x4_c00062{left:383.580000px;}
.x2_c00062{left:425.160000px;}
.x1_c00062{left:446.580000px;}
.x6_c00062{left:747.540000px;}
@media print{
.v4_c00062{vertical-align:-18.560000pt;}
.v2_c00062{vertical-align:-13.120000pt;}
.v0_c00062{vertical-align:0.000000pt;}
.v3_c00062{vertical-align:13.120000pt;}
.v1_c00062{vertical-align:24.000000pt;}
.ls1d_c00062{letter-spacing:-0.512000pt;}
.ls19_c00062{letter-spacing:-0.320000pt;}
.ls1b_c00062{letter-spacing:-0.256000pt;}
.ls1c_c00062{letter-spacing:-0.192000pt;}
.ls1e_c00062{letter-spacing:-0.128000pt;}
.ls17_c00062{letter-spacing:-0.096000pt;}
.ls1a_c00062{letter-spacing:-0.064000pt;}
.ls16_c00062{letter-spacing:0.000000pt;}
.ls1_c00062{letter-spacing:0.064000pt;}
.ls15_c00062{letter-spacing:0.106880pt;}
.ls6_c00062{letter-spacing:0.128000pt;}
.ls1f_c00062{letter-spacing:0.160320pt;}
.ls18_c00062{letter-spacing:0.170240pt;}
.ls4_c00062{letter-spacing:0.960000pt;}
.ls5_c00062{letter-spacing:1.600000pt;}
.ls8_c00062{letter-spacing:3.200000pt;}
.ls7_c00062{letter-spacing:3.520000pt;}
.ls14_c00062{letter-spacing:4.210560pt;}
.ls9_c00062{letter-spacing:7.040000pt;}
.ls2_c00062{letter-spacing:7.680000pt;}
.lse_c00062{letter-spacing:14.272000pt;}
.lsd_c00062{letter-spacing:16.000000pt;}
.ls0_c00062{letter-spacing:16.640000pt;}
.lsc_c00062{letter-spacing:17.792000pt;}
.ls13_c00062{letter-spacing:18.290560pt;}
.ls11_c00062{letter-spacing:19.200000pt;}
.lsb_c00062{letter-spacing:19.328000pt;}
.ls10_c00062{letter-spacing:19.776000pt;}
.lsf_c00062{letter-spacing:19.840000pt;}
.ls3_c00062{letter-spacing:20.480000pt;}
.ls12_c00062{letter-spacing:21.810560pt;}
.lsa_c00062{letter-spacing:23.040000pt;}
.wsa_c00062{word-spacing:-64.000000pt;}
.ws6_c00062{word-spacing:-63.936000pt;}
.ws4_c00062{word-spacing:-16.128000pt;}
.ws5_c00062{word-spacing:-16.064000pt;}
.ws1_c00062{word-spacing:-16.000000pt;}
.ws2_c00062{word-spacing:-15.936000pt;}
.ws7_c00062{word-spacing:-15.872000pt;}
.ws3_c00062{word-spacing:-15.744000pt;}
.ws8_c00062{word-spacing:-14.208000pt;}
.ws0_c00062{word-spacing:-10.810240pt;}
.wsb_c00062{word-spacing:-8.640000pt;}
.ws9_c00062{word-spacing:-3.520000pt;}
.ws2a_c00062{word-spacing:-0.448000pt;}
.ws2b_c00062{word-spacing:-0.384000pt;}
.ws28_c00062{word-spacing:-0.128000pt;}
.ws11_c00062{word-spacing:-0.064000pt;}
.ws33_c00062{word-spacing:-0.053440pt;}
.wsc_c00062{word-spacing:0.000000pt;}
.wse_c00062{word-spacing:0.144000pt;}
.ws1f_c00062{word-spacing:0.192000pt;}
.wsd_c00062{word-spacing:0.240000pt;}
.ws14_c00062{word-spacing:0.320000pt;}
.ws24_c00062{word-spacing:0.512000pt;}
.wsf_c00062{word-spacing:0.576000pt;}
.ws1a_c00062{word-spacing:0.896000pt;}
.ws19_c00062{word-spacing:0.960000pt;}
.ws1d_c00062{word-spacing:1.472000pt;}
.ws1e_c00062{word-spacing:1.536000pt;}
.ws1b_c00062{word-spacing:1.600000pt;}
.ws1c_c00062{word-spacing:1.664000pt;}
.ws2c_c00062{word-spacing:2.176000pt;}
.ws26_c00062{word-spacing:2.816000pt;}
.ws22_c00062{word-spacing:3.136000pt;}
.ws27_c00062{word-spacing:3.200000pt;}
.ws20_c00062{word-spacing:3.456000pt;}
.ws21_c00062{word-spacing:3.520000pt;}
.ws2f_c00062{word-spacing:3.776000pt;}
.ws32_c00062{word-spacing:4.736000pt;}
.ws15_c00062{word-spacing:6.336000pt;}
.ws23_c00062{word-spacing:6.976000pt;}
.ws25_c00062{word-spacing:7.040000pt;}
.ws12_c00062{word-spacing:7.296000pt;}
.ws13_c00062{word-spacing:7.680000pt;}
.ws2d_c00062{word-spacing:14.336000pt;}
.ws10_c00062{word-spacing:16.640000pt;}
.ws2e_c00062{word-spacing:19.136000pt;}
.ws30_c00062{word-spacing:19.712000pt;}
.ws31_c00062{word-spacing:19.776000pt;}
.ws16_c00062{word-spacing:20.416000pt;}
.ws17_c00062{word-spacing:20.480000pt;}
.ws29_c00062{word-spacing:23.040000pt;}
.ws18_c00062{word-spacing:23.616000pt;}
._6_c00062{margin-left:-10.432000pt;}
._7_c00062{margin-left:-3.500800pt;}
._1_c00062{margin-left:-0.940800pt;}
._0_c00062{width:1.084800pt;}
._2_c00062{width:2.796800pt;}
._8_c00062{width:3.840000pt;}
._4_c00062{width:7.148800pt;}
._5_c00062{width:17.792000pt;}
._3_c00062{width:19.865600pt;}
.fs4_c00062{font-size:34.560000pt;}
.fs2_c00062{font-size:42.560000pt;}
.fs3_c00062{font-size:45.440000pt;}
.fs0_c00062{font-size:48.000000pt;}
.fs5_c00062{font-size:53.440000pt;}
.fs1_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y28_c00062{bottom:50.880000pt;}
.y27_c00062{bottom:102.240000pt;}
.y29_c00062{bottom:113.520000pt;}
.y26_c00062{bottom:165.520000pt;}
.y25_c00062{bottom:183.920000pt;}
.y24_c00062{bottom:202.320000pt;}
.y23_c00062{bottom:220.720000pt;}
.y22_c00062{bottom:248.480000pt;}
.y21_c00062{bottom:276.480000pt;}
.y20_c00062{bottom:304.080000pt;}
.y1f_c00062{bottom:331.680000pt;}
.y1e_c00062{bottom:359.280000pt;}
.y1d_c00062{bottom:386.880000pt;}
.y1c_c00062{bottom:414.640000pt;}
.y1b_c00062{bottom:433.280000pt;}
.y1a_c00062{bottom:452.160000pt;}
.y19_c00062{bottom:470.880000pt;}
.y18_c00062{bottom:489.680000pt;}
.y17_c00062{bottom:517.440000pt;}
.y16_c00062{bottom:545.440000pt;}
.y15_c00062{bottom:573.040000pt;}
.y14_c00062{bottom:600.640000pt;}
.y13_c00062{bottom:628.240000pt;}
.y12_c00062{bottom:655.840000pt;}
.y11_c00062{bottom:683.440000pt;}
.y10_c00062{bottom:711.040000pt;}
.yf_c00062{bottom:738.640000pt;}
.ye_c00062{bottom:766.160000pt;}
.yd_c00062{bottom:793.760000pt;}
.yc_c00062{bottom:821.360000pt;}
.yb_c00062{bottom:848.960000pt;}
.ya_c00062{bottom:876.560000pt;}
.y9_c00062{bottom:904.160000pt;}
.y8_c00062{bottom:931.760000pt;}
.y7_c00062{bottom:959.360000pt;}
.y6_c00062{bottom:986.960000pt;}
.y5_c00062{bottom:1005.360000pt;}
.y4_c00062{bottom:1023.040000pt;}
.y3_c00062{bottom:1036.804000pt;}
.y2_c00062{bottom:1050.640000pt;}
.y1_c00062{bottom:1064.400000pt;}
.h7_c00062{height:33.918750pt;}
.h3_c00062{height:47.085938pt;}
.h2_c00062{height:47.109375pt;}
.h4_c00062{height:62.812500pt;}
.h5_c00062{height:65.770313pt;}
.h6_c00062{height:127.593750pt;}
.h0_c00062{height:1122.560000pt;}
.h1_c00062{height:1122.666667pt;}
.w0_c00062{width:793.840000pt;}
.w1_c00062{width:794.000000pt;}
.x0_c00062{left:0.000000pt;}
.x3_c00062{left:113.440000pt;}
.x5_c00062{left:320.480000pt;}
.x4_c00062{left:340.960000pt;}
.x2_c00062{left:377.920000pt;}
.x1_c00062{left:396.960000pt;}
.x6_c00062{left:664.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_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_1d71598b6ec369911c7c3095.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_33aa245ddaa4fcf81c6188a2.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;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_c00063;src:url('chunks/assets/font_72df08442517828fba6538e8.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;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:ff5_c00063;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00063;src:url('chunks/assets/font_b29fe9ee02fc34e4335d0d4d.woff2')format("woff");}.ff6_c00063{font-family:ff6_c00063;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00063;src:url('chunks/assets/font_28621e8a8706c217050a4dee.woff2')format("woff");}.ff7_c00063{font-family:ff7_c00063;line-height:3.333984;font-style:normal;font-weight: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_c00063;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8_c00063{font-family:ff8_c00063;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00063{vertical-align:-61.938000px;}
.v8_c00063{vertical-align:-20.880000px;}
.v4_c00063{vertical-align:-14.760000px;}
.v7_c00063{vertical-align:-2.880000px;}
.v0_c00063{vertical-align:0.000000px;}
.v3_c00063{vertical-align:2.880000px;}
.v5_c00063{vertical-align:14.760000px;}
.v6_c00063{vertical-align:17.640000px;}
.v2_c00063{vertical-align:27.000000px;}
.ls1f_c00063{letter-spacing:-0.661320px;}
.ls18_c00063{letter-spacing:-0.576000px;}
.ls19_c00063{letter-spacing:-0.288000px;}
.ls17_c00063{letter-spacing:-0.216000px;}
.ls1a_c00063{letter-spacing:-0.144000px;}
.ls1b_c00063{letter-spacing:-0.072000px;}
.ls1d_c00063{letter-spacing:-0.060120px;}
.ls15_c00063{letter-spacing:0.000000px;}
.ls1_c00063{letter-spacing:0.072000px;}
.ls14_c00063{letter-spacing:0.120240px;}
.ls1c_c00063{letter-spacing:0.144000px;}
.ls1e_c00063{letter-spacing:0.180360px;}
.ls16_c00063{letter-spacing:0.191520px;}
.lsb_c00063{letter-spacing:1.080000px;}
.ls3_c00063{letter-spacing:1.447200px;}
.ls12_c00063{letter-spacing:2.088000px;}
.ls4_c00063{letter-spacing:2.520000px;}
.ls7_c00063{letter-spacing:4.193280px;}
.ls10_c00063{letter-spacing:4.736880px;}
.lsa_c00063{letter-spacing:5.400000px;}
.ls11_c00063{letter-spacing:10.440000px;}
.ls6_c00063{letter-spacing:12.096000px;}
.ls13_c00063{letter-spacing:14.400000px;}
.ls5_c00063{letter-spacing:15.041520px;}
.lse_c00063{letter-spacing:16.056000px;}
.lsd_c00063{letter-spacing:18.000000px;}
.lsf_c00063{letter-spacing:20.576880px;}
.ls8_c00063{letter-spacing:21.240000px;}
.ls9_c00063{letter-spacing:23.904000px;}
.lsc_c00063{letter-spacing:24.536880px;}
.ls2_c00063{letter-spacing:30.744000px;}
.ls0_c00063{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00063{word-spacing:-72.000000px;}
.ws4_c00063{word-spacing:-18.072000px;}
.ws3_c00063{word-spacing:-18.000000px;}
.ws6_c00063{word-spacing:-17.928000px;}
.ws5_c00063{word-spacing:-17.856000px;}
.ws1_c00063{word-spacing:-15.840000px;}
.ws8_c00063{word-spacing:-14.368680px;}
.ws0_c00063{word-spacing:-12.161520px;}
.ws7_c00063{word-spacing:-9.720000px;}
.ws1b_c00063{word-spacing:-0.432000px;}
.ws22_c00063{word-spacing:-0.420840px;}
.ws21_c00063{word-spacing:-0.180360px;}
.wsa_c00063{word-spacing:-0.162000px;}
.wsc_c00063{word-spacing:-0.072000px;}
.ws9_c00063{word-spacing:0.000000px;}
.ws18_c00063{word-spacing:0.288000px;}
.ws17_c00063{word-spacing:0.648000px;}
.ws16_c00063{word-spacing:1.008000px;}
.wsb_c00063{word-spacing:1.080000px;}
.ws10_c00063{word-spacing:1.368000px;}
.wse_c00063{word-spacing:1.440000px;}
.wsf_c00063{word-spacing:1.656000px;}
.ws20_c00063{word-spacing:1.728000px;}
.ws1f_c00063{word-spacing:1.800000px;}
.wsd_c00063{word-spacing:2.448000px;}
.ws11_c00063{word-spacing:2.520000px;}
.ws15_c00063{word-spacing:5.400000px;}
.ws1a_c00063{word-spacing:10.296000px;}
.ws19_c00063{word-spacing:10.440000px;}
.ws1c_c00063{word-spacing:14.256000px;}
.ws1e_c00063{word-spacing:14.328000px;}
.ws1d_c00063{word-spacing:14.976000px;}
.ws12_c00063{word-spacing:21.168000px;}
.ws14_c00063{word-spacing:21.240000px;}
.ws13_c00063{word-spacing:21.600000px;}
._6_c00063{margin-left:-11.736000px;}
._3_c00063{margin-left:-5.817600px;}
._4_c00063{margin-left:-3.240000px;}
._1_c00063{margin-left:-1.087200px;}
._0_c00063{width:1.080000px;}
._2_c00063{width:2.880000px;}
._8_c00063{width:14.133600px;}
._7_c00063{width:20.016000px;}
._5_c00063{width:21.103200px;}
.fc0_c00063{color:rgb(0,0,0);}
.fs4_c00063{font-size:38.880000px;}
.fs2_c00063{font-size:47.880000px;}
.fs3_c00063{font-size:51.120000px;}
.fs0_c00063{font-size:54.000000px;}
.fs5_c00063{font-size:60.120000px;}
.fs1_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y28_c00063{bottom:57.240000px;}
.y27_c00063{bottom:115.020000px;}
.y26_c00063{bottom:132.210000px;}
.y29_c00063{bottom:144.900000px;}
.y25_c00063{bottom:174.690000px;}
.y24_c00063{bottom:205.920000px;}
.y23_c00063{bottom:237.420000px;}
.y22_c00063{bottom:268.560000px;}
.y21_c00063{bottom:300.240000px;}
.y20_c00063{bottom:332.640000px;}
.y1f_c00063{bottom:363.510000px;}
.y1e_c00063{bottom:395.190000px;}
.y1d_c00063{bottom:426.690000px;}
.y1c_c00063{bottom:457.740000px;}
.y1b_c00063{bottom:488.790000px;}
.y1a_c00063{bottom:519.840000px;}
.y19_c00063{bottom:540.540000px;}
.y18_c00063{bottom:571.590000px;}
.y17_c00063{bottom:602.640000px;}
.y16_c00063{bottom:633.690000px;}
.y15_c00063{bottom:664.740000px;}
.y14_c00063{bottom:695.790000px;}
.y13_c00063{bottom:726.840000px;}
.y12_c00063{bottom:757.890000px;}
.y11_c00063{bottom:788.940000px;}
.y10_c00063{bottom:819.990000px;}
.yf_c00063{bottom:851.040000px;}
.ye_c00063{bottom:882.180000px;}
.yd_c00063{bottom:913.680000px;}
.yc_c00063{bottom:944.730000px;}
.yb_c00063{bottom:975.780000px;}
.ya_c00063{bottom:1006.830000px;}
.y9_c00063{bottom:1027.530000px;}
.y8_c00063{bottom:1048.230000px;}
.y7_c00063{bottom:1068.930000px;}
.y6_c00063{bottom:1089.630000px;}
.y5_c00063{bottom:1110.330000px;}
.y4_c00063{bottom:1131.030000px;}
.y3_c00063{bottom:1150.915500px;}
.y2_c00063{bottom:1166.400000px;}
.y1_c00063{bottom:1197.450000px;}
.h8_c00063{height:38.158594px;}
.h2_c00063{height:52.998047px;}
.h3_c00063{height:70.664062px;}
.h4_c00063{height:73.991602px;}
.h5_c00063{height:75.093750px;}
.h7_c00063{height:140.662969px;}
.h6_c00063{height:143.542969px;}
.h0_c00063{height:1262.880000px;}
.h1_c00063{height:1263.000000px;}
.w0_c00063{width:893.070000px;}
.w1_c00063{width:893.250000px;}
.x0_c00063{left:0.000000px;}
.x2_c00063{left:127.620000px;}
.x3_c00063{left:154.620000px;}
.x4_c00063{left:181.620000px;}
.x5_c00063{left:360.540000px;}
.x1_c00063{left:446.580000px;}
@media print{
.v1_c00063{vertical-align:-55.056000pt;}
.v8_c00063{vertical-align:-18.560000pt;}
.v4_c00063{vertical-align:-13.120000pt;}
.v7_c00063{vertical-align:-2.560000pt;}
.v0_c00063{vertical-align:0.000000pt;}
.v3_c00063{vertical-align:2.560000pt;}
.v5_c00063{vertical-align:13.120000pt;}
.v6_c00063{vertical-align:15.680000pt;}
.v2_c00063{vertical-align:24.000000pt;}
.ls1f_c00063{letter-spacing:-0.587840pt;}
.ls18_c00063{letter-spacing:-0.512000pt;}
.ls19_c00063{letter-spacing:-0.256000pt;}
.ls17_c00063{letter-spacing:-0.192000pt;}
.ls1a_c00063{letter-spacing:-0.128000pt;}
.ls1b_c00063{letter-spacing:-0.064000pt;}
.ls1d_c00063{letter-spacing:-0.053440pt;}
.ls15_c00063{letter-spacing:0.000000pt;}
.ls1_c00063{letter-spacing:0.064000pt;}
.ls14_c00063{letter-spacing:0.106880pt;}
.ls1c_c00063{letter-spacing:0.128000pt;}
.ls1e_c00063{letter-spacing:0.160320pt;}
.ls16_c00063{letter-spacing:0.170240pt;}
.lsb_c00063{letter-spacing:0.960000pt;}
.ls3_c00063{letter-spacing:1.286400pt;}
.ls12_c00063{letter-spacing:1.856000pt;}
.ls4_c00063{letter-spacing:2.240000pt;}
.ls7_c00063{letter-spacing:3.727360pt;}
.ls10_c00063{letter-spacing:4.210560pt;}
.lsa_c00063{letter-spacing:4.800000pt;}
.ls11_c00063{letter-spacing:9.280000pt;}
.ls6_c00063{letter-spacing:10.752000pt;}
.ls13_c00063{letter-spacing:12.800000pt;}
.ls5_c00063{letter-spacing:13.370240pt;}
.lse_c00063{letter-spacing:14.272000pt;}
.lsd_c00063{letter-spacing:16.000000pt;}
.lsf_c00063{letter-spacing:18.290560pt;}
.ls8_c00063{letter-spacing:18.880000pt;}
.ls9_c00063{letter-spacing:21.248000pt;}
.lsc_c00063{letter-spacing:21.810560pt;}
.ls2_c00063{letter-spacing:27.328000pt;}
.ls0_c00063{letter-spacing:284.016000pt;}
.ws2_c00063{word-spacing:-64.000000pt;}
.ws4_c00063{word-spacing:-16.064000pt;}
.ws3_c00063{word-spacing:-16.000000pt;}
.ws6_c00063{word-spacing:-15.936000pt;}
.ws5_c00063{word-spacing:-15.872000pt;}
.ws1_c00063{word-spacing:-14.080000pt;}
.ws8_c00063{word-spacing:-12.772160pt;}
.ws0_c00063{word-spacing:-10.810240pt;}
.ws7_c00063{word-spacing:-8.640000pt;}
.ws1b_c00063{word-spacing:-0.384000pt;}
.ws22_c00063{word-spacing:-0.374080pt;}
.ws21_c00063{word-spacing:-0.160320pt;}
.wsa_c00063{word-spacing:-0.144000pt;}
.wsc_c00063{word-spacing:-0.064000pt;}
.ws9_c00063{word-spacing:0.000000pt;}
.ws18_c00063{word-spacing:0.256000pt;}
.ws17_c00063{word-spacing:0.576000pt;}
.ws16_c00063{word-spacing:0.896000pt;}
.wsb_c00063{word-spacing:0.960000pt;}
.ws10_c00063{word-spacing:1.216000pt;}
.wse_c00063{word-spacing:1.280000pt;}
.wsf_c00063{word-spacing:1.472000pt;}
.ws20_c00063{word-spacing:1.536000pt;}
.ws1f_c00063{word-spacing:1.600000pt;}
.wsd_c00063{word-spacing:2.176000pt;}
.ws11_c00063{word-spacing:2.240000pt;}
.ws15_c00063{word-spacing:4.800000pt;}
.ws1a_c00063{word-spacing:9.152000pt;}
.ws19_c00063{word-spacing:9.280000pt;}
.ws1c_c00063{word-spacing:12.672000pt;}
.ws1e_c00063{word-spacing:12.736000pt;}
.ws1d_c00063{word-spacing:13.312000pt;}
.ws12_c00063{word-spacing:18.816000pt;}
.ws14_c00063{word-spacing:18.880000pt;}
.ws13_c00063{word-spacing:19.200000pt;}
._6_c00063{margin-left:-10.432000pt;}
._3_c00063{margin-left:-5.171200pt;}
._4_c00063{margin-left:-2.880000pt;}
._1_c00063{margin-left:-0.966400pt;}
._0_c00063{width:0.960000pt;}
._2_c00063{width:2.560000pt;}
._8_c00063{width:12.563200pt;}
._7_c00063{width:17.792000pt;}
._5_c00063{width:18.758400pt;}
.fs4_c00063{font-size:34.560000pt;}
.fs2_c00063{font-size:42.560000pt;}
.fs3_c00063{font-size:45.440000pt;}
.fs0_c00063{font-size:48.000000pt;}
.fs5_c00063{font-size:53.440000pt;}
.fs1_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y28_c00063{bottom:50.880000pt;}
.y27_c00063{bottom:102.240000pt;}
.y26_c00063{bottom:117.520000pt;}
.y29_c00063{bottom:128.800000pt;}
.y25_c00063{bottom:155.280000pt;}
.y24_c00063{bottom:183.040000pt;}
.y23_c00063{bottom:211.040000pt;}
.y22_c00063{bottom:238.720000pt;}
.y21_c00063{bottom:266.880000pt;}
.y20_c00063{bottom:295.680000pt;}
.y1f_c00063{bottom:323.120000pt;}
.y1e_c00063{bottom:351.280000pt;}
.y1d_c00063{bottom:379.280000pt;}
.y1c_c00063{bottom:406.880000pt;}
.y1b_c00063{bottom:434.480000pt;}
.y1a_c00063{bottom:462.080000pt;}
.y19_c00063{bottom:480.480000pt;}
.y18_c00063{bottom:508.080000pt;}
.y17_c00063{bottom:535.680000pt;}
.y16_c00063{bottom:563.280000pt;}
.y15_c00063{bottom:590.880000pt;}
.y14_c00063{bottom:618.480000pt;}
.y13_c00063{bottom:646.080000pt;}
.y12_c00063{bottom:673.680000pt;}
.y11_c00063{bottom:701.280000pt;}
.y10_c00063{bottom:728.880000pt;}
.yf_c00063{bottom:756.480000pt;}
.ye_c00063{bottom:784.160000pt;}
.yd_c00063{bottom:812.160000pt;}
.yc_c00063{bottom:839.760000pt;}
.yb_c00063{bottom:867.360000pt;}
.ya_c00063{bottom:894.960000pt;}
.y9_c00063{bottom:913.360000pt;}
.y8_c00063{bottom:931.760000pt;}
.y7_c00063{bottom:950.160000pt;}
.y6_c00063{bottom:968.560000pt;}
.y5_c00063{bottom:986.960000pt;}
.y4_c00063{bottom:1005.360000pt;}
.y3_c00063{bottom:1023.036000pt;}
.y2_c00063{bottom:1036.800000pt;}
.y1_c00063{bottom:1064.400000pt;}
.h8_c00063{height:33.918750pt;}
.h2_c00063{height:47.109375pt;}
.h3_c00063{height:62.812500pt;}
.h4_c00063{height:65.770313pt;}
.h5_c00063{height:66.750000pt;}
.h7_c00063{height:125.033750pt;}
.h6_c00063{height:127.593750pt;}
.h0_c00063{height:1122.560000pt;}
.h1_c00063{height:1122.666667pt;}
.w0_c00063{width:793.840000pt;}
.w1_c00063{width:794.000000pt;}
.x0_c00063{left:0.000000pt;}
.x2_c00063{left:113.440000pt;}
.x3_c00063{left:137.440000pt;}
.x4_c00063{left:161.440000pt;}
.x5_c00063{left:320.480000pt;}
.x1_c00063{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_116bf268ee2706836d288502.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_1cc1d2612b26058208806da3.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;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_c00064;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_fcda9270ff03ce393a900f15.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00064;src:url('chunks/assets/font_fabaad53e79d09b76b0ebde0.woff2')format("woff");}.ff6_c00064{font-family:ff6_c00064;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00064;src:url('chunks/assets/font_c5c06ad185e2a8dedbd71c74.woff2')format("woff");}.ff7_c00064{font-family:ff7_c00064;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_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vc_c00064{vertical-align:-132.120000px;}
.v8_c00064{vertical-align:-129.240000px;}
.vb_c00064{vertical-align:-28.421280px;}
.vd_c00064{vertical-align:-20.880000px;}
.v9_c00064{vertical-align:-17.280000px;}
.v1_c00064{vertical-align:-14.760000px;}
.v4_c00064{vertical-align:-2.880000px;}
.v0_c00064{vertical-align:0.000000px;}
.v3_c00064{vertical-align:2.880000px;}
.v2_c00064{vertical-align:14.760000px;}
.v7_c00064{vertical-align:17.640000px;}
.v6_c00064{vertical-align:23.400000px;}
.v5_c00064{vertical-align:27.000000px;}
.va_c00064{vertical-align:45.701280px;}
.ls21_c00064{letter-spacing:-0.144000px;}
.ls1d_c00064{letter-spacing:-0.108000px;}
.ls1f_c00064{letter-spacing:-0.072000px;}
.ls22_c00064{letter-spacing:-0.060120px;}
.ls1c_c00064{letter-spacing:0.000000px;}
.ls8_c00064{letter-spacing:0.072000px;}
.ls1a_c00064{letter-spacing:0.120240px;}
.ls1e_c00064{letter-spacing:0.144000px;}
.ls23_c00064{letter-spacing:0.180360px;}
.ls20_c00064{letter-spacing:0.191520px;}
.ls9_c00064{letter-spacing:0.360000px;}
.ls1b_c00064{letter-spacing:0.583164px;}
.ls7_c00064{letter-spacing:1.656000px;}
.ls12_c00064{letter-spacing:1.840320px;}
.lse_c00064{letter-spacing:2.520000px;}
.lsb_c00064{letter-spacing:2.801520px;}
.lsd_c00064{letter-spacing:2.806560px;}
.ls18_c00064{letter-spacing:2.810160px;}
.ls2_c00064{letter-spacing:2.880000px;}
.lsa_c00064{letter-spacing:4.320000px;}
.ls1_c00064{letter-spacing:4.736880px;}
.lsf_c00064{letter-spacing:4.824720px;}
.ls17_c00064{letter-spacing:5.096880px;}
.ls15_c00064{letter-spacing:7.920000px;}
.ls13_c00064{letter-spacing:12.240000px;}
.ls14_c00064{letter-spacing:12.744720px;}
.ls5_c00064{letter-spacing:19.800000px;}
.ls16_c00064{letter-spacing:19.872000px;}
.ls11_c00064{letter-spacing:20.016000px;}
.ls19_c00064{letter-spacing:20.160000px;}
.ls6_c00064{letter-spacing:22.176000px;}
.ls0_c00064{letter-spacing:23.904000px;}
.ls3_c00064{letter-spacing:44.696880px;}
.ls4_c00064{letter-spacing:65.952000px;}
.ls10_c00064{letter-spacing:129.240000px;}
.lsc_c00064{letter-spacing:379.440000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:-72.000000px;}
.ws7_c00064{word-spacing:-71.856000px;}
.ws8_c00064{word-spacing:-51.120000px;}
.ws5_c00064{word-spacing:-18.072000px;}
.ws4_c00064{word-spacing:-17.928000px;}
.ws1_c00064{word-spacing:-15.840000px;}
.ws6_c00064{word-spacing:-12.161520px;}
.ws9_c00064{word-spacing:-9.720000px;}
.ws3_c00064{word-spacing:-3.888000px;}
.wse_c00064{word-spacing:-0.144000px;}
.wsd_c00064{word-spacing:-0.072000px;}
.ws1a_c00064{word-spacing:-0.060120px;}
.wsa_c00064{word-spacing:0.000000px;}
.wsc_c00064{word-spacing:0.162000px;}
.ws19_c00064{word-spacing:0.180360px;}
.wsb_c00064{word-spacing:0.270000px;}
.wsf_c00064{word-spacing:0.288000px;}
.ws11_c00064{word-spacing:0.360000px;}
.ws16_c00064{word-spacing:1.080000px;}
.ws15_c00064{word-spacing:1.440000px;}
.ws14_c00064{word-spacing:2.520000px;}
.ws2_c00064{word-spacing:4.176000px;}
.ws10_c00064{word-spacing:10.008000px;}
.ws13_c00064{word-spacing:14.688000px;}
.ws12_c00064{word-spacing:14.760000px;}
.ws18_c00064{word-spacing:19.008000px;}
.ws17_c00064{word-spacing:19.080000px;}
._5_c00064{margin-left:-12.092400px;}
._7_c00064{margin-left:-8.588160px;}
._8_c00064{margin-left:-7.300800px;}
._6_c00064{margin-left:-5.616000px;}
._2_c00064{margin-left:-3.369600px;}
._d_c00064{margin-left:-2.300400px;}
._1_c00064{margin-left:-1.058400px;}
._0_c00064{width:1.220400px;}
._a_c00064{width:2.414160px;}
._4_c00064{width:10.296000px;}
._c_c00064{width:12.369600px;}
._b_c00064{width:15.652800px;}
._3_c00064{width:20.088000px;}
._9_c00064{width:22.082400px;}
.fc0_c00064{color:rgb(0,0,0);}
.fs4_c00064{font-size:38.880000px;}
.fs3_c00064{font-size:47.880000px;}
.fs2_c00064{font-size:51.120000px;}
.fs0_c00064{font-size:54.000000px;}
.fs5_c00064{font-size:60.120000px;}
.fs1_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y27_c00064{bottom:57.240000px;}
.y26_c00064{bottom:115.020000px;}
.y25_c00064{bottom:132.210000px;}
.y28_c00064{bottom:144.900000px;}
.y24_c00064{bottom:192.870000px;}
.y23_c00064{bottom:223.920000px;}
.y22_c00064{bottom:255.150000px;}
.y21_c00064{bottom:286.830000px;}
.y20_c00064{bottom:318.420000px;}
.y1f_c00064{bottom:350.100000px;}
.y1e_c00064{bottom:381.600000px;}
.y1d_c00064{bottom:412.650000px;}
.y1c_c00064{bottom:443.700000px;}
.y1b_c00064{bottom:474.750000px;}
.y1a_c00064{bottom:505.800000px;}
.y19_c00064{bottom:572.220000px;}
.y18_c00064{bottom:605.520000px;}
.y17_c00064{bottom:637.020000px;}
.y16_c00064{bottom:669.330000px;}
.y15_c00064{bottom:700.920000px;}
.y14_c00064{bottom:732.150000px;}
.y13_c00064{bottom:763.650000px;}
.y12_c00064{bottom:794.790000px;}
.y11_c00064{bottom:826.470000px;}
.y10_c00064{bottom:858.150000px;}
.ye_c00064{bottom:889.380000px;}
.yf_c00064{bottom:890.100000px;}
.yd_c00064{bottom:921.060000px;}
.yc_c00064{bottom:952.200000px;}
.yb_c00064{bottom:983.880000px;}
.ya_c00064{bottom:1015.380000px;}
.y8_c00064{bottom:1046.610000px;}
.y9_c00064{bottom:1047.330000px;}
.y7_c00064{bottom:1078.290000px;}
.y6_c00064{bottom:1109.880000px;}
.y5_c00064{bottom:1131.030000px;}
.y4_c00064{bottom:1150.920000px;}
.y3_c00064{bottom:1166.404500px;}
.y2_c00064{bottom:1181.970000px;}
.y1_c00064{bottom:1197.450000px;}
.h8_c00064{height:38.158594px;}
.h3_c00064{height:52.971680px;}
.h2_c00064{height:52.998047px;}
.h4_c00064{height:70.664062px;}
.h7_c00064{height:73.991602px;}
.h6_c00064{height:75.093750px;}
.h5_c00064{height:143.542969px;}
.h0_c00064{height:1262.880000px;}
.h1_c00064{height:1263.000000px;}
.w0_c00064{width:893.070000px;}
.w1_c00064{width:893.250000px;}
.x0_c00064{left:0.000000px;}
.x3_c00064{left:127.620000px;}
.x4_c00064{left:154.620000px;}
.x5_c00064{left:337.770000px;}
.x7_c00064{left:356.940000px;}
.x9_c00064{left:362.340000px;}
.x6_c00064{left:370.710000px;}
.x8_c00064{left:410.670000px;}
.x2_c00064{left:425.160000px;}
.x1_c00064{left:446.580000px;}
.xa_c00064{left:747.540000px;}
@media print{
.vc_c00064{vertical-align:-117.440000pt;}
.v8_c00064{vertical-align:-114.880000pt;}
.vb_c00064{vertical-align:-25.263360pt;}
.vd_c00064{vertical-align:-18.560000pt;}
.v9_c00064{vertical-align:-15.360000pt;}
.v1_c00064{vertical-align:-13.120000pt;}
.v4_c00064{vertical-align:-2.560000pt;}
.v0_c00064{vertical-align:0.000000pt;}
.v3_c00064{vertical-align:2.560000pt;}
.v2_c00064{vertical-align:13.120000pt;}
.v7_c00064{vertical-align:15.680000pt;}
.v6_c00064{vertical-align:20.800000pt;}
.v5_c00064{vertical-align:24.000000pt;}
.va_c00064{vertical-align:40.623360pt;}
.ls21_c00064{letter-spacing:-0.128000pt;}
.ls1d_c00064{letter-spacing:-0.096000pt;}
.ls1f_c00064{letter-spacing:-0.064000pt;}
.ls22_c00064{letter-spacing:-0.053440pt;}
.ls1c_c00064{letter-spacing:0.000000pt;}
.ls8_c00064{letter-spacing:0.064000pt;}
.ls1a_c00064{letter-spacing:0.106880pt;}
.ls1e_c00064{letter-spacing:0.128000pt;}
.ls23_c00064{letter-spacing:0.160320pt;}
.ls20_c00064{letter-spacing:0.170240pt;}
.ls9_c00064{letter-spacing:0.320000pt;}
.ls1b_c00064{letter-spacing:0.518368pt;}
.ls7_c00064{letter-spacing:1.472000pt;}
.ls12_c00064{letter-spacing:1.635840pt;}
.lse_c00064{letter-spacing:2.240000pt;}
.lsb_c00064{letter-spacing:2.490240pt;}
.lsd_c00064{letter-spacing:2.494720pt;}
.ls18_c00064{letter-spacing:2.497920pt;}
.ls2_c00064{letter-spacing:2.560000pt;}
.lsa_c00064{letter-spacing:3.840000pt;}
.ls1_c00064{letter-spacing:4.210560pt;}
.lsf_c00064{letter-spacing:4.288640pt;}
.ls17_c00064{letter-spacing:4.530560pt;}
.ls15_c00064{letter-spacing:7.040000pt;}
.ls13_c00064{letter-spacing:10.880000pt;}
.ls14_c00064{letter-spacing:11.328640pt;}
.ls5_c00064{letter-spacing:17.600000pt;}
.ls16_c00064{letter-spacing:17.664000pt;}
.ls11_c00064{letter-spacing:17.792000pt;}
.ls19_c00064{letter-spacing:17.920000pt;}
.ls6_c00064{letter-spacing:19.712000pt;}
.ls0_c00064{letter-spacing:21.248000pt;}
.ls3_c00064{letter-spacing:39.730560pt;}
.ls4_c00064{letter-spacing:58.624000pt;}
.ls10_c00064{letter-spacing:114.880000pt;}
.lsc_c00064{letter-spacing:337.280000pt;}
.ws0_c00064{word-spacing:-64.000000pt;}
.ws7_c00064{word-spacing:-63.872000pt;}
.ws8_c00064{word-spacing:-45.440000pt;}
.ws5_c00064{word-spacing:-16.064000pt;}
.ws4_c00064{word-spacing:-15.936000pt;}
.ws1_c00064{word-spacing:-14.080000pt;}
.ws6_c00064{word-spacing:-10.810240pt;}
.ws9_c00064{word-spacing:-8.640000pt;}
.ws3_c00064{word-spacing:-3.456000pt;}
.wse_c00064{word-spacing:-0.128000pt;}
.wsd_c00064{word-spacing:-0.064000pt;}
.ws1a_c00064{word-spacing:-0.053440pt;}
.wsa_c00064{word-spacing:0.000000pt;}
.wsc_c00064{word-spacing:0.144000pt;}
.ws19_c00064{word-spacing:0.160320pt;}
.wsb_c00064{word-spacing:0.240000pt;}
.wsf_c00064{word-spacing:0.256000pt;}
.ws11_c00064{word-spacing:0.320000pt;}
.ws16_c00064{word-spacing:0.960000pt;}
.ws15_c00064{word-spacing:1.280000pt;}
.ws14_c00064{word-spacing:2.240000pt;}
.ws2_c00064{word-spacing:3.712000pt;}
.ws10_c00064{word-spacing:8.896000pt;}
.ws13_c00064{word-spacing:13.056000pt;}
.ws12_c00064{word-spacing:13.120000pt;}
.ws18_c00064{word-spacing:16.896000pt;}
.ws17_c00064{word-spacing:16.960000pt;}
._5_c00064{margin-left:-10.748800pt;}
._7_c00064{margin-left:-7.633920pt;}
._8_c00064{margin-left:-6.489600pt;}
._6_c00064{margin-left:-4.992000pt;}
._2_c00064{margin-left:-2.995200pt;}
._d_c00064{margin-left:-2.044800pt;}
._1_c00064{margin-left:-0.940800pt;}
._0_c00064{width:1.084800pt;}
._a_c00064{width:2.145920pt;}
._4_c00064{width:9.152000pt;}
._c_c00064{width:10.995200pt;}
._b_c00064{width:13.913600pt;}
._3_c00064{width:17.856000pt;}
._9_c00064{width:19.628800pt;}
.fs4_c00064{font-size:34.560000pt;}
.fs3_c00064{font-size:42.560000pt;}
.fs2_c00064{font-size:45.440000pt;}
.fs0_c00064{font-size:48.000000pt;}
.fs5_c00064{font-size:53.440000pt;}
.fs1_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y27_c00064{bottom:50.880000pt;}
.y26_c00064{bottom:102.240000pt;}
.y25_c00064{bottom:117.520000pt;}
.y28_c00064{bottom:128.800000pt;}
.y24_c00064{bottom:171.440000pt;}
.y23_c00064{bottom:199.040000pt;}
.y22_c00064{bottom:226.800000pt;}
.y21_c00064{bottom:254.960000pt;}
.y20_c00064{bottom:283.040000pt;}
.y1f_c00064{bottom:311.200000pt;}
.y1e_c00064{bottom:339.200000pt;}
.y1d_c00064{bottom:366.800000pt;}
.y1c_c00064{bottom:394.400000pt;}
.y1b_c00064{bottom:422.000000pt;}
.y1a_c00064{bottom:449.600000pt;}
.y19_c00064{bottom:508.640000pt;}
.y18_c00064{bottom:538.240000pt;}
.y17_c00064{bottom:566.240000pt;}
.y16_c00064{bottom:594.960000pt;}
.y15_c00064{bottom:623.040000pt;}
.y14_c00064{bottom:650.800000pt;}
.y13_c00064{bottom:678.800000pt;}
.y12_c00064{bottom:706.480000pt;}
.y11_c00064{bottom:734.640000pt;}
.y10_c00064{bottom:762.800000pt;}
.ye_c00064{bottom:790.560000pt;}
.yf_c00064{bottom:791.200000pt;}
.yd_c00064{bottom:818.720000pt;}
.yc_c00064{bottom:846.400000pt;}
.yb_c00064{bottom:874.560000pt;}
.ya_c00064{bottom:902.560000pt;}
.y8_c00064{bottom:930.320000pt;}
.y9_c00064{bottom:930.960000pt;}
.y7_c00064{bottom:958.480000pt;}
.y6_c00064{bottom:986.560000pt;}
.y5_c00064{bottom:1005.360000pt;}
.y4_c00064{bottom:1023.040000pt;}
.y3_c00064{bottom:1036.804000pt;}
.y2_c00064{bottom:1050.640000pt;}
.y1_c00064{bottom:1064.400000pt;}
.h8_c00064{height:33.918750pt;}
.h3_c00064{height:47.085938pt;}
.h2_c00064{height:47.109375pt;}
.h4_c00064{height:62.812500pt;}
.h7_c00064{height:65.770312pt;}
.h6_c00064{height:66.750000pt;}
.h5_c00064{height:127.593750pt;}
.h0_c00064{height:1122.560000pt;}
.h1_c00064{height:1122.666667pt;}
.w0_c00064{width:793.840000pt;}
.w1_c00064{width:794.000000pt;}
.x0_c00064{left:0.000000pt;}
.x3_c00064{left:113.440000pt;}
.x4_c00064{left:137.440000pt;}
.x5_c00064{left:300.240000pt;}
.x7_c00064{left:317.280000pt;}
.x9_c00064{left:322.080000pt;}
.x6_c00064{left:329.520000pt;}
.x8_c00064{left:365.040000pt;}
.x2_c00064{left:377.920000pt;}
.x1_c00064{left:396.960000pt;}
.xa_c00064{left:664.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_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_e13c42fded597ca549989114.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_61ed93f2f711d61d8becc286.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_acac73b65c86e0b5023b8f55.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00065;src:url('chunks/assets/font_f936cd344a53e2e431415606.woff2')format("woff");}.ff5_c00065{font-family:ff5_c00065;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:ff6_c00065;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00065{font-family:ff6_c00065;line-height:1.432129;font-style:normal;font-weight: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_c00065;src:url('chunks/assets/font_5cc74d4fdda03c349bec8609.woff2')format("woff");}.ff7_c00065{font-family:ff7_c00065;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00065{vertical-align:-90.720000px;}
.v1_c00065{vertical-align:-61.938000px;}
.v9_c00065{vertical-align:-28.440000px;}
.vb_c00065{vertical-align:-16.200000px;}
.v3_c00065{vertical-align:-14.760000px;}
.vc_c00065{vertical-align:-13.680000px;}
.v5_c00065{vertical-align:-2.880000px;}
.v0_c00065{vertical-align:0.000000px;}
.v6_c00065{vertical-align:2.880000px;}
.v8_c00065{vertical-align:13.680000px;}
.v4_c00065{vertical-align:14.760000px;}
.va_c00065{vertical-align:16.200000px;}
.v7_c00065{vertical-align:17.640000px;}
.ls21_c00065{letter-spacing:-0.576000px;}
.ls22_c00065{letter-spacing:-0.288000px;}
.ls20_c00065{letter-spacing:-0.216000px;}
.ls1e_c00065{letter-spacing:-0.072000px;}
.ls1d_c00065{letter-spacing:0.000000px;}
.lsf_c00065{letter-spacing:0.072000px;}
.ls1f_c00065{letter-spacing:0.144000px;}
.lsc_c00065{letter-spacing:0.360000px;}
.ls7_c00065{letter-spacing:1.656000px;}
.ls3_c00065{letter-spacing:1.942560px;}
.lsb_c00065{letter-spacing:2.088000px;}
.ls9_c00065{letter-spacing:2.160000px;}
.ls1b_c00065{letter-spacing:2.448000px;}
.ls4_c00065{letter-spacing:2.795760px;}
.ls1c_c00065{letter-spacing:4.320000px;}
.ls15_c00065{letter-spacing:4.376880px;}
.ls2_c00065{letter-spacing:4.736880px;}
.ls17_c00065{letter-spacing:5.688000px;}
.ls19_c00065{letter-spacing:5.832000px;}
.ls13_c00065{letter-spacing:6.192000px;}
.ls8_c00065{letter-spacing:11.520000px;}
.lsa_c00065{letter-spacing:11.880000px;}
.lse_c00065{letter-spacing:13.320000px;}
.ls12_c00065{letter-spacing:16.056000px;}
.ls1a_c00065{letter-spacing:19.872000px;}
.ls16_c00065{letter-spacing:20.016000px;}
.ls5_c00065{letter-spacing:20.232000px;}
.ls14_c00065{letter-spacing:20.576880px;}
.lsd_c00065{letter-spacing:22.680000px;}
.ls6_c00065{letter-spacing:23.904000px;}
.ls11_c00065{letter-spacing:24.536880px;}
.ls10_c00065{letter-spacing:30.744000px;}
.ls18_c00065{letter-spacing:54.864000px;}
.ls0_c00065{letter-spacing:319.518000px;}
.ls1_c00065{letter-spacing:821.520000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:-72.000000px;}
.ws4_c00065{word-spacing:-18.144000px;}
.ws7_c00065{word-spacing:-18.072000px;}
.ws2_c00065{word-spacing:-17.928000px;}
.ws5_c00065{word-spacing:-17.784000px;}
.ws8_c00065{word-spacing:-17.712000px;}
.ws6_c00065{word-spacing:-17.424000px;}
.ws3_c00065{word-spacing:-15.840000px;}
.ws10_c00065{word-spacing:-0.360000px;}
.wsa_c00065{word-spacing:-0.162000px;}
.ws14_c00065{word-spacing:-0.144000px;}
.wsb_c00065{word-spacing:-0.072000px;}
.ws9_c00065{word-spacing:0.000000px;}
.ws19_c00065{word-spacing:3.888000px;}
.ws17_c00065{word-spacing:3.960000px;}
.ws1_c00065{word-spacing:4.176000px;}
.ws16_c00065{word-spacing:4.248000px;}
.ws12_c00065{word-spacing:6.696000px;}
.ws11_c00065{word-spacing:6.768000px;}
.ws1e_c00065{word-spacing:11.448000px;}
.wsc_c00065{word-spacing:11.520000px;}
.wsf_c00065{word-spacing:13.248000px;}
.wse_c00065{word-spacing:13.320000px;}
.ws1d_c00065{word-spacing:17.208000px;}
.ws1c_c00065{word-spacing:18.288000px;}
.ws1b_c00065{word-spacing:18.360000px;}
.ws1a_c00065{word-spacing:20.808000px;}
.ws15_c00065{word-spacing:21.240000px;}
.ws13_c00065{word-spacing:22.248000px;}
.wsd_c00065{word-spacing:22.608000px;}
.ws18_c00065{word-spacing:31.608000px;}
._8_c00065{margin-left:-32.976000px;}
._b_c00065{margin-left:-30.816000px;}
._c_c00065{margin-left:-25.200000px;}
._3_c00065{margin-left:-9.360000px;}
._9_c00065{margin-left:-7.992000px;}
._7_c00065{margin-left:-4.176000px;}
._1_c00065{margin-left:-3.168000px;}
._6_c00065{margin-left:-1.080000px;}
._11_c00065{width:1.008000px;}
._0_c00065{width:2.016000px;}
._10_c00065{width:3.888000px;}
._f_c00065{width:6.192000px;}
._a_c00065{width:9.936000px;}
._2_c00065{width:11.880000px;}
._e_c00065{width:16.056000px;}
._d_c00065{width:18.216000px;}
._5_c00065{width:20.016000px;}
._4_c00065{width:22.248000px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs2_c00065{font-size:51.120000px;}
.fs0_c00065{font-size:54.000000px;}
.fs1_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y24_c00065{bottom:57.240000px;}
.y23_c00065{bottom:122.580000px;}
.y22_c00065{bottom:153.630000px;}
.y21_c00065{bottom:186.030000px;}
.y20_c00065{bottom:217.080000px;}
.y1f_c00065{bottom:248.040000px;}
.y1e_c00065{bottom:280.440000px;}
.y1d_c00065{bottom:311.490000px;}
.y1c_c00065{bottom:342.540000px;}
.y1b_c00065{bottom:373.590000px;}
.y1a_c00065{bottom:404.550000px;}
.y19_c00065{bottom:436.950000px;}
.y18_c00065{bottom:468.000000px;}
.y17_c00065{bottom:502.200000px;}
.y16_c00065{bottom:535.500000px;}
.y15_c00065{bottom:568.710000px;}
.y14_c00065{bottom:599.760000px;}
.y13_c00065{bottom:632.160000px;}
.y12_c00065{bottom:663.210000px;}
.y11_c00065{bottom:694.260000px;}
.y10_c00065{bottom:725.400000px;}
.yf_c00065{bottom:757.980000px;}
.ye_c00065{bottom:789.120000px;}
.yd_c00065{bottom:822.330000px;}
.yc_c00065{bottom:853.560000px;}
.yb_c00065{bottom:885.240000px;}
.ya_c00065{bottom:916.920000px;}
.y9_c00065{bottom:948.510000px;}
.y8_c00065{bottom:980.190000px;}
.y7_c00065{bottom:1012.590000px;}
.y6_c00065{bottom:1043.460000px;}
.y5_c00065{bottom:1074.960000px;}
.y4_c00065{bottom:1131.030000px;}
.y3_c00065{bottom:1150.915500px;}
.y2_c00065{bottom:1166.400000px;}
.y1_c00065{bottom:1197.450000px;}
.h2_c00065{height:52.998047px;}
.h3_c00065{height:70.664062px;}
.h6_c00065{height:75.093750px;}
.h5_c00065{height:140.662969px;}
.h4_c00065{height:143.542969px;}
.h8_c00065{height:157.222969px;}
.h7_c00065{height:159.742969px;}
.h0_c00065{height:1262.880000px;}
.h1_c00065{height:1263.000000px;}
.w0_c00065{width:893.070000px;}
.w1_c00065{width:893.250000px;}
.x0_c00065{left:0.000000px;}
.x2_c00065{left:127.620000px;}
.x3_c00065{left:154.620000px;}
.x4_c00065{left:181.620000px;}
.x6_c00065{left:208.620000px;}
.x5_c00065{left:356.040000px;}
.x1_c00065{left:446.580000px;}
@media print{
.v2_c00065{vertical-align:-80.640000pt;}
.v1_c00065{vertical-align:-55.056000pt;}
.v9_c00065{vertical-align:-25.280000pt;}
.vb_c00065{vertical-align:-14.400000pt;}
.v3_c00065{vertical-align:-13.120000pt;}
.vc_c00065{vertical-align:-12.160000pt;}
.v5_c00065{vertical-align:-2.560000pt;}
.v0_c00065{vertical-align:0.000000pt;}
.v6_c00065{vertical-align:2.560000pt;}
.v8_c00065{vertical-align:12.160000pt;}
.v4_c00065{vertical-align:13.120000pt;}
.va_c00065{vertical-align:14.400000pt;}
.v7_c00065{vertical-align:15.680000pt;}
.ls21_c00065{letter-spacing:-0.512000pt;}
.ls22_c00065{letter-spacing:-0.256000pt;}
.ls20_c00065{letter-spacing:-0.192000pt;}
.ls1e_c00065{letter-spacing:-0.064000pt;}
.ls1d_c00065{letter-spacing:0.000000pt;}
.lsf_c00065{letter-spacing:0.064000pt;}
.ls1f_c00065{letter-spacing:0.128000pt;}
.lsc_c00065{letter-spacing:0.320000pt;}
.ls7_c00065{letter-spacing:1.472000pt;}
.ls3_c00065{letter-spacing:1.726720pt;}
.lsb_c00065{letter-spacing:1.856000pt;}
.ls9_c00065{letter-spacing:1.920000pt;}
.ls1b_c00065{letter-spacing:2.176000pt;}
.ls4_c00065{letter-spacing:2.485120pt;}
.ls1c_c00065{letter-spacing:3.840000pt;}
.ls15_c00065{letter-spacing:3.890560pt;}
.ls2_c00065{letter-spacing:4.210560pt;}
.ls17_c00065{letter-spacing:5.056000pt;}
.ls19_c00065{letter-spacing:5.184000pt;}
.ls13_c00065{letter-spacing:5.504000pt;}
.ls8_c00065{letter-spacing:10.240000pt;}
.lsa_c00065{letter-spacing:10.560000pt;}
.lse_c00065{letter-spacing:11.840000pt;}
.ls12_c00065{letter-spacing:14.272000pt;}
.ls1a_c00065{letter-spacing:17.664000pt;}
.ls16_c00065{letter-spacing:17.792000pt;}
.ls5_c00065{letter-spacing:17.984000pt;}
.ls14_c00065{letter-spacing:18.290560pt;}
.lsd_c00065{letter-spacing:20.160000pt;}
.ls6_c00065{letter-spacing:21.248000pt;}
.ls11_c00065{letter-spacing:21.810560pt;}
.ls10_c00065{letter-spacing:27.328000pt;}
.ls18_c00065{letter-spacing:48.768000pt;}
.ls0_c00065{letter-spacing:284.016000pt;}
.ls1_c00065{letter-spacing:730.240000pt;}
.ws0_c00065{word-spacing:-64.000000pt;}
.ws4_c00065{word-spacing:-16.128000pt;}
.ws7_c00065{word-spacing:-16.064000pt;}
.ws2_c00065{word-spacing:-15.936000pt;}
.ws5_c00065{word-spacing:-15.808000pt;}
.ws8_c00065{word-spacing:-15.744000pt;}
.ws6_c00065{word-spacing:-15.488000pt;}
.ws3_c00065{word-spacing:-14.080000pt;}
.ws10_c00065{word-spacing:-0.320000pt;}
.wsa_c00065{word-spacing:-0.144000pt;}
.ws14_c00065{word-spacing:-0.128000pt;}
.wsb_c00065{word-spacing:-0.064000pt;}
.ws9_c00065{word-spacing:0.000000pt;}
.ws19_c00065{word-spacing:3.456000pt;}
.ws17_c00065{word-spacing:3.520000pt;}
.ws1_c00065{word-spacing:3.712000pt;}
.ws16_c00065{word-spacing:3.776000pt;}
.ws12_c00065{word-spacing:5.952000pt;}
.ws11_c00065{word-spacing:6.016000pt;}
.ws1e_c00065{word-spacing:10.176000pt;}
.wsc_c00065{word-spacing:10.240000pt;}
.wsf_c00065{word-spacing:11.776000pt;}
.wse_c00065{word-spacing:11.840000pt;}
.ws1d_c00065{word-spacing:15.296000pt;}
.ws1c_c00065{word-spacing:16.256000pt;}
.ws1b_c00065{word-spacing:16.320000pt;}
.ws1a_c00065{word-spacing:18.496000pt;}
.ws15_c00065{word-spacing:18.880000pt;}
.ws13_c00065{word-spacing:19.776000pt;}
.wsd_c00065{word-spacing:20.096000pt;}
.ws18_c00065{word-spacing:28.096000pt;}
._8_c00065{margin-left:-29.312000pt;}
._b_c00065{margin-left:-27.392000pt;}
._c_c00065{margin-left:-22.400000pt;}
._3_c00065{margin-left:-8.320000pt;}
._9_c00065{margin-left:-7.104000pt;}
._7_c00065{margin-left:-3.712000pt;}
._1_c00065{margin-left:-2.816000pt;}
._6_c00065{margin-left:-0.960000pt;}
._11_c00065{width:0.896000pt;}
._0_c00065{width:1.792000pt;}
._10_c00065{width:3.456000pt;}
._f_c00065{width:5.504000pt;}
._a_c00065{width:8.832000pt;}
._2_c00065{width:10.560000pt;}
._e_c00065{width:14.272000pt;}
._d_c00065{width:16.192000pt;}
._5_c00065{width:17.792000pt;}
._4_c00065{width:19.776000pt;}
.fs2_c00065{font-size:45.440000pt;}
.fs0_c00065{font-size:48.000000pt;}
.fs1_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y24_c00065{bottom:50.880000pt;}
.y23_c00065{bottom:108.960000pt;}
.y22_c00065{bottom:136.560000pt;}
.y21_c00065{bottom:165.360000pt;}
.y20_c00065{bottom:192.960000pt;}
.y1f_c00065{bottom:220.480000pt;}
.y1e_c00065{bottom:249.280000pt;}
.y1d_c00065{bottom:276.880000pt;}
.y1c_c00065{bottom:304.480000pt;}
.y1b_c00065{bottom:332.080000pt;}
.y1a_c00065{bottom:359.600000pt;}
.y19_c00065{bottom:388.400000pt;}
.y18_c00065{bottom:416.000000pt;}
.y17_c00065{bottom:446.400000pt;}
.y16_c00065{bottom:476.000000pt;}
.y15_c00065{bottom:505.520000pt;}
.y14_c00065{bottom:533.120000pt;}
.y13_c00065{bottom:561.920000pt;}
.y12_c00065{bottom:589.520000pt;}
.y11_c00065{bottom:617.120000pt;}
.y10_c00065{bottom:644.800000pt;}
.yf_c00065{bottom:673.760000pt;}
.ye_c00065{bottom:701.440000pt;}
.yd_c00065{bottom:730.960000pt;}
.yc_c00065{bottom:758.720000pt;}
.yb_c00065{bottom:786.880000pt;}
.ya_c00065{bottom:815.040000pt;}
.y9_c00065{bottom:843.120000pt;}
.y8_c00065{bottom:871.280000pt;}
.y7_c00065{bottom:900.080000pt;}
.y6_c00065{bottom:927.520000pt;}
.y5_c00065{bottom:955.520000pt;}
.y4_c00065{bottom:1005.360000pt;}
.y3_c00065{bottom:1023.036000pt;}
.y2_c00065{bottom:1036.800000pt;}
.y1_c00065{bottom:1064.400000pt;}
.h2_c00065{height:47.109375pt;}
.h3_c00065{height:62.812500pt;}
.h6_c00065{height:66.750000pt;}
.h5_c00065{height:125.033750pt;}
.h4_c00065{height:127.593750pt;}
.h8_c00065{height:139.753750pt;}
.h7_c00065{height:141.993750pt;}
.h0_c00065{height:1122.560000pt;}
.h1_c00065{height:1122.666667pt;}
.w0_c00065{width:793.840000pt;}
.w1_c00065{width:794.000000pt;}
.x0_c00065{left:0.000000pt;}
.x2_c00065{left:113.440000pt;}
.x3_c00065{left:137.440000pt;}
.x4_c00065{left:161.440000pt;}
.x6_c00065{left:185.440000pt;}
.x5_c00065{left:316.480000pt;}
.x1_c00065{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20ef072ea12ff8a4f00e8bbd.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.284180;font-style:normal;font-weight:normal;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_a18dc092c606d2f0538d4870.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;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_c00066;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_3fc17e064727f0ebf673c617.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00066;src:url('chunks/assets/font_8e01b128b156384ab589dfef.woff2')format("woff");}.ff6_c00066{font-family:ff6_c00066;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00066{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00066{vertical-align:-132.840000px;}
.v14_c00066{vertical-align:-128.160000px;}
.v3_c00066{vertical-align:-16.200000px;}
.v15_c00066{vertical-align:-14.760000px;}
.vc_c00066{vertical-align:-13.320000px;}
.v17_c00066{vertical-align:-10.800000px;}
.v4_c00066{vertical-align:-2.880000px;}
.v0_c00066{vertical-align:0.000000px;}
.v7_c00066{vertical-align:1.073520px;}
.vd_c00066{vertical-align:2.880000px;}
.v11_c00066{vertical-align:7.920000px;}
.ve_c00066{vertical-align:13.680000px;}
.v16_c00066{vertical-align:14.760000px;}
.v2_c00066{vertical-align:16.200000px;}
.v8_c00066{vertical-align:17.646480px;}
.v10_c00066{vertical-align:18.720000px;}
.v5_c00066{vertical-align:23.400000px;}
.vb_c00066{vertical-align:27.022320px;}
.v9_c00066{vertical-align:35.286480px;}
.v12_c00066{vertical-align:36.720000px;}
.va_c00066{vertical-align:38.166480px;}
.vf_c00066{vertical-align:41.040000px;}
.v13_c00066{vertical-align:45.360000px;}
.v6_c00066{vertical-align:48.600000px;}
.ls33_c00066{letter-spacing:-0.144000px;}
.ls30_c00066{letter-spacing:-0.108000px;}
.ls31_c00066{letter-spacing:-0.072000px;}
.ls2f_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:0.072000px;}
.lsc_c00066{letter-spacing:0.144000px;}
.ls32_c00066{letter-spacing:0.216000px;}
.ls2c_c00066{letter-spacing:0.360000px;}
.ls28_c00066{letter-spacing:0.720000px;}
.lsf_c00066{letter-spacing:1.080000px;}
.ls20_c00066{letter-spacing:1.584000px;}
.ls13_c00066{letter-spacing:1.800000px;}
.ls2d_c00066{letter-spacing:2.016000px;}
.ls16_c00066{letter-spacing:2.088000px;}
.ls5_c00066{letter-spacing:2.160000px;}
.lse_c00066{letter-spacing:2.801520px;}
.ls1e_c00066{letter-spacing:2.880000px;}
.ls2b_c00066{letter-spacing:3.240000px;}
.ls1b_c00066{letter-spacing:3.600000px;}
.ls24_c00066{letter-spacing:3.816000px;}
.ls10_c00066{letter-spacing:4.452480px;}
.ls2e_c00066{letter-spacing:4.736880px;}
.ls22_c00066{letter-spacing:5.040000px;}
.lsd_c00066{letter-spacing:5.832000px;}
.ls25_c00066{letter-spacing:6.041520px;}
.ls8_c00066{letter-spacing:6.192000px;}
.ls3_c00066{letter-spacing:6.840000px;}
.ls12_c00066{letter-spacing:7.920000px;}
.ls1d_c00066{letter-spacing:8.136000px;}
.lsa_c00066{letter-spacing:12.024000px;}
.ls19_c00066{letter-spacing:15.696000px;}
.ls7_c00066{letter-spacing:16.056000px;}
.ls23_c00066{letter-spacing:16.481520px;}
.ls9_c00066{letter-spacing:17.640000px;}
.ls18_c00066{letter-spacing:18.000000px;}
.ls1a_c00066{letter-spacing:18.072000px;}
.ls21_c00066{letter-spacing:18.641520px;}
.ls15_c00066{letter-spacing:20.016000px;}
.ls1c_c00066{letter-spacing:20.520000px;}
.ls27_c00066{letter-spacing:20.576880px;}
.ls2a_c00066{letter-spacing:20.936880px;}
.ls26_c00066{letter-spacing:21.240000px;}
.ls4_c00066{letter-spacing:21.744000px;}
.ls29_c00066{letter-spacing:22.176000px;}
.ls17_c00066{letter-spacing:22.680000px;}
.lsb_c00066{letter-spacing:22.961520px;}
.ls2_c00066{letter-spacing:23.904000px;}
.ls6_c00066{letter-spacing:25.776000px;}
.ls1f_c00066{letter-spacing:25.992000px;}
.ls1_c00066{letter-spacing:30.744000px;}
.ls11_c00066{letter-spacing:33.662160px;}
.ls14_c00066{letter-spacing:33.922080px;}
.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;}
}
.ws7_c00066{word-spacing:-72.216000px;}
.ws1_c00066{word-spacing:-72.000000px;}
.ws3_c00066{word-spacing:-51.120000px;}
.ws0_c00066{word-spacing:-18.000000px;}
.ws2_c00066{word-spacing:-17.928000px;}
.ws8_c00066{word-spacing:-17.856000px;}
.ws9_c00066{word-spacing:-15.840000px;}
.ws4_c00066{word-spacing:-3.888000px;}
.ws1c_c00066{word-spacing:-0.432000px;}
.wsd_c00066{word-spacing:-0.072000px;}
.wsa_c00066{word-spacing:0.000000px;}
.wsc_c00066{word-spacing:0.162000px;}
.wsb_c00066{word-spacing:0.270000px;}
.ws1d_c00066{word-spacing:2.088000px;}
.ws1e_c00066{word-spacing:2.160000px;}
.ws15_c00066{word-spacing:3.168000px;}
.ws5_c00066{word-spacing:3.816000px;}
.ws6_c00066{word-spacing:4.176000px;}
.ws17_c00066{word-spacing:6.336000px;}
.ws16_c00066{word-spacing:6.408000px;}
.ws18_c00066{word-spacing:6.768000px;}
.ws12_c00066{word-spacing:8.496000px;}
.ws11_c00066{word-spacing:8.568000px;}
.ws13_c00066{word-spacing:8.640000px;}
.ws19_c00066{word-spacing:10.080000px;}
.wse_c00066{word-spacing:14.328000px;}
.wsf_c00066{word-spacing:14.400000px;}
.ws10_c00066{word-spacing:18.000000px;}
.ws14_c00066{word-spacing:22.248000px;}
.ws1a_c00066{word-spacing:32.688000px;}
.ws1b_c00066{word-spacing:32.760000px;}
.ws20_c00066{word-spacing:34.488000px;}
.ws1f_c00066{word-spacing:34.560000px;}
._6_c00066{margin-left:-50.616000px;}
._11_c00066{margin-left:-34.056000px;}
._12_c00066{margin-left:-32.400000px;}
._b_c00066{margin-left:-30.960000px;}
._7_c00066{margin-left:-24.912000px;}
._d_c00066{margin-left:-23.304240px;}
._14_c00066{margin-left:-11.736000px;}
._15_c00066{margin-left:-3.240000px;}
._1_c00066{margin-left:-1.058400px;}
._0_c00066{width:1.220400px;}
._8_c00066{width:2.739600px;}
._e_c00066{width:7.848000px;}
._5_c00066{width:9.936000px;}
._2_c00066{width:14.169600px;}
._a_c00066{width:16.056000px;}
._9_c00066{width:17.640000px;}
._c_c00066{width:20.088000px;}
._3_c00066{width:21.844800px;}
._10_c00066{width:24.048000px;}
._4_c00066{width:242.496000px;}
._13_c00066{width:622.152000px;}
._f_c00066{width:856.080000px;}
.fc0_c00066{color:rgb(0,0,0);}
.fs3_c00066{font-size:42.120000px;}
.fs2_c00066{font-size:51.120000px;}
.fs0_c00066{font-size:54.000000px;}
.fs1_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y29_c00066{bottom:57.240000px;}
.y28_c00066{bottom:131.850000px;}
.y27_c00066{bottom:163.080000px;}
.y26_c00066{bottom:194.760000px;}
.y25_c00066{bottom:258.480000px;}
.y23_c00066{bottom:289.440000px;}
.y24_c00066{bottom:289.980000px;}
.y21_c00066{bottom:301.320000px;}
.y22_c00066{bottom:318.330000px;}
.y20_c00066{bottom:380.160000px;}
.y1f_c00066{bottom:412.020000px;}
.y1d_c00066{bottom:445.320000px;}
.y1e_c00066{bottom:448.650000px;}
.y1c_c00066{bottom:477.810000px;}
.y1a_c00066{bottom:507.690000px;}
.y1b_c00066{bottom:510.744420px;}
.y19_c00066{bottom:527.310000px;}
.y17_c00066{bottom:551.610000px;}
.y18_c00066{bottom:551.878380px;}
.y16_c00066{bottom:571.230000px;}
.y15_c00066{bottom:599.310000px;}
.y14_c00066{bottom:632.160000px;}
.y13_c00066{bottom:665.370000px;}
.y12_c00066{bottom:698.940000px;}
.y11_c00066{bottom:768.870000px;}
.y10_c00066{bottom:799.920000px;}
.yf_c00066{bottom:830.970000px;}
.ye_c00066{bottom:861.930000px;}
.yd_c00066{bottom:892.980000px;}
.yc_c00066{bottom:924.030000px;}
.yb_c00066{bottom:955.080000px;}
.ya_c00066{bottom:986.130000px;}
.y9_c00066{bottom:1017.180000px;}
.y8_c00066{bottom:1048.230000px;}
.y7_c00066{bottom:1079.280000px;}
.y6_c00066{bottom:1110.330000px;}
.y5_c00066{bottom:1131.030000px;}
.y4_c00066{bottom:1150.920000px;}
.y3_c00066{bottom:1166.404500px;}
.y2_c00066{bottom:1181.970000px;}
.y1_c00066{bottom:1197.450000px;}
.h3_c00066{height:52.971680px;}
.h2_c00066{height:52.998047px;}
.h4_c00066{height:70.664062px;}
.h5_c00066{height:75.093750px;}
.h9_c00066{height:101.915508px;}
.h8_c00066{height:102.989028px;}
.hc_c00066{height:143.542969px;}
.h6_c00066{height:156.862969px;}
.h7_c00066{height:159.742969px;}
.hb_c00066{height:183.885289px;}
.ha_c00066{height:195.029449px;}
.hd_c00066{height:200.782969px;}
.he_c00066{height:248.302969px;}
.h0_c00066{height:1262.880000px;}
.h1_c00066{height:1263.000000px;}
.w0_c00066{width:893.070000px;}
.w1_c00066{width:893.250000px;}
.x0_c00066{left:0.000000px;}
.x3_c00066{left:127.620000px;}
.x4_c00066{left:154.620000px;}
.x5_c00066{left:181.620000px;}
.x7_c00066{left:298.980000px;}
.xa_c00066{left:300.150000px;}
.x8_c00066{left:301.320000px;}
.x9_c00066{left:310.138200px;}
.xe_c00066{left:329.040000px;}
.x6_c00066{left:331.020000px;}
.xd_c00066{left:336.060000px;}
.xb_c00066{left:352.800000px;}
.x10_c00066{left:368.370000px;}
.x2_c00066{left:425.160000px;}
.x1_c00066{left:446.580000px;}
.xf_c00066{left:448.110000px;}
.xc_c00066{left:452.430000px;}
.x11_c00066{left:528.840000px;}
.x12_c00066{left:747.540000px;}
@media print{
.v1_c00066{vertical-align:-118.080000pt;}
.v14_c00066{vertical-align:-113.920000pt;}
.v3_c00066{vertical-align:-14.400000pt;}
.v15_c00066{vertical-align:-13.120000pt;}
.vc_c00066{vertical-align:-11.840000pt;}
.v17_c00066{vertical-align:-9.600000pt;}
.v4_c00066{vertical-align:-2.560000pt;}
.v0_c00066{vertical-align:0.000000pt;}
.v7_c00066{vertical-align:0.954240pt;}
.vd_c00066{vertical-align:2.560000pt;}
.v11_c00066{vertical-align:7.040000pt;}
.ve_c00066{vertical-align:12.160000pt;}
.v16_c00066{vertical-align:13.120000pt;}
.v2_c00066{vertical-align:14.400000pt;}
.v8_c00066{vertical-align:15.685760pt;}
.v10_c00066{vertical-align:16.640000pt;}
.v5_c00066{vertical-align:20.800000pt;}
.vb_c00066{vertical-align:24.019840pt;}
.v9_c00066{vertical-align:31.365760pt;}
.v12_c00066{vertical-align:32.640000pt;}
.va_c00066{vertical-align:33.925760pt;}
.vf_c00066{vertical-align:36.480000pt;}
.v13_c00066{vertical-align:40.320000pt;}
.v6_c00066{vertical-align:43.200000pt;}
.ls33_c00066{letter-spacing:-0.128000pt;}
.ls30_c00066{letter-spacing:-0.096000pt;}
.ls31_c00066{letter-spacing:-0.064000pt;}
.ls2f_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:0.064000pt;}
.lsc_c00066{letter-spacing:0.128000pt;}
.ls32_c00066{letter-spacing:0.192000pt;}
.ls2c_c00066{letter-spacing:0.320000pt;}
.ls28_c00066{letter-spacing:0.640000pt;}
.lsf_c00066{letter-spacing:0.960000pt;}
.ls20_c00066{letter-spacing:1.408000pt;}
.ls13_c00066{letter-spacing:1.600000pt;}
.ls2d_c00066{letter-spacing:1.792000pt;}
.ls16_c00066{letter-spacing:1.856000pt;}
.ls5_c00066{letter-spacing:1.920000pt;}
.lse_c00066{letter-spacing:2.490240pt;}
.ls1e_c00066{letter-spacing:2.560000pt;}
.ls2b_c00066{letter-spacing:2.880000pt;}
.ls1b_c00066{letter-spacing:3.200000pt;}
.ls24_c00066{letter-spacing:3.392000pt;}
.ls10_c00066{letter-spacing:3.957760pt;}
.ls2e_c00066{letter-spacing:4.210560pt;}
.ls22_c00066{letter-spacing:4.480000pt;}
.lsd_c00066{letter-spacing:5.184000pt;}
.ls25_c00066{letter-spacing:5.370240pt;}
.ls8_c00066{letter-spacing:5.504000pt;}
.ls3_c00066{letter-spacing:6.080000pt;}
.ls12_c00066{letter-spacing:7.040000pt;}
.ls1d_c00066{letter-spacing:7.232000pt;}
.lsa_c00066{letter-spacing:10.688000pt;}
.ls19_c00066{letter-spacing:13.952000pt;}
.ls7_c00066{letter-spacing:14.272000pt;}
.ls23_c00066{letter-spacing:14.650240pt;}
.ls9_c00066{letter-spacing:15.680000pt;}
.ls18_c00066{letter-spacing:16.000000pt;}
.ls1a_c00066{letter-spacing:16.064000pt;}
.ls21_c00066{letter-spacing:16.570240pt;}
.ls15_c00066{letter-spacing:17.792000pt;}
.ls1c_c00066{letter-spacing:18.240000pt;}
.ls27_c00066{letter-spacing:18.290560pt;}
.ls2a_c00066{letter-spacing:18.610560pt;}
.ls26_c00066{letter-spacing:18.880000pt;}
.ls4_c00066{letter-spacing:19.328000pt;}
.ls29_c00066{letter-spacing:19.712000pt;}
.ls17_c00066{letter-spacing:20.160000pt;}
.lsb_c00066{letter-spacing:20.410240pt;}
.ls2_c00066{letter-spacing:21.248000pt;}
.ls6_c00066{letter-spacing:22.912000pt;}
.ls1f_c00066{letter-spacing:23.104000pt;}
.ls1_c00066{letter-spacing:27.328000pt;}
.ls11_c00066{letter-spacing:29.921920pt;}
.ls14_c00066{letter-spacing:30.152960pt;}
.ws7_c00066{word-spacing:-64.192000pt;}
.ws1_c00066{word-spacing:-64.000000pt;}
.ws3_c00066{word-spacing:-45.440000pt;}
.ws0_c00066{word-spacing:-16.000000pt;}
.ws2_c00066{word-spacing:-15.936000pt;}
.ws8_c00066{word-spacing:-15.872000pt;}
.ws9_c00066{word-spacing:-14.080000pt;}
.ws4_c00066{word-spacing:-3.456000pt;}
.ws1c_c00066{word-spacing:-0.384000pt;}
.wsd_c00066{word-spacing:-0.064000pt;}
.wsa_c00066{word-spacing:0.000000pt;}
.wsc_c00066{word-spacing:0.144000pt;}
.wsb_c00066{word-spacing:0.240000pt;}
.ws1d_c00066{word-spacing:1.856000pt;}
.ws1e_c00066{word-spacing:1.920000pt;}
.ws15_c00066{word-spacing:2.816000pt;}
.ws5_c00066{word-spacing:3.392000pt;}
.ws6_c00066{word-spacing:3.712000pt;}
.ws17_c00066{word-spacing:5.632000pt;}
.ws16_c00066{word-spacing:5.696000pt;}
.ws18_c00066{word-spacing:6.016000pt;}
.ws12_c00066{word-spacing:7.552000pt;}
.ws11_c00066{word-spacing:7.616000pt;}
.ws13_c00066{word-spacing:7.680000pt;}
.ws19_c00066{word-spacing:8.960000pt;}
.wse_c00066{word-spacing:12.736000pt;}
.wsf_c00066{word-spacing:12.800000pt;}
.ws10_c00066{word-spacing:16.000000pt;}
.ws14_c00066{word-spacing:19.776000pt;}
.ws1a_c00066{word-spacing:29.056000pt;}
.ws1b_c00066{word-spacing:29.120000pt;}
.ws20_c00066{word-spacing:30.656000pt;}
.ws1f_c00066{word-spacing:30.720000pt;}
._6_c00066{margin-left:-44.992000pt;}
._11_c00066{margin-left:-30.272000pt;}
._12_c00066{margin-left:-28.800000pt;}
._b_c00066{margin-left:-27.520000pt;}
._7_c00066{margin-left:-22.144000pt;}
._d_c00066{margin-left:-20.714880pt;}
._14_c00066{margin-left:-10.432000pt;}
._15_c00066{margin-left:-2.880000pt;}
._1_c00066{margin-left:-0.940800pt;}
._0_c00066{width:1.084800pt;}
._8_c00066{width:2.435200pt;}
._e_c00066{width:6.976000pt;}
._5_c00066{width:8.832000pt;}
._2_c00066{width:12.595200pt;}
._a_c00066{width:14.272000pt;}
._9_c00066{width:15.680000pt;}
._c_c00066{width:17.856000pt;}
._3_c00066{width:19.417600pt;}
._10_c00066{width:21.376000pt;}
._4_c00066{width:215.552000pt;}
._13_c00066{width:553.024000pt;}
._f_c00066{width:760.960000pt;}
.fs3_c00066{font-size:37.440000pt;}
.fs2_c00066{font-size:45.440000pt;}
.fs0_c00066{font-size:48.000000pt;}
.fs1_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y29_c00066{bottom:50.880000pt;}
.y28_c00066{bottom:117.200000pt;}
.y27_c00066{bottom:144.960000pt;}
.y26_c00066{bottom:173.120000pt;}
.y25_c00066{bottom:229.760000pt;}
.y23_c00066{bottom:257.280000pt;}
.y24_c00066{bottom:257.760000pt;}
.y21_c00066{bottom:267.840000pt;}
.y22_c00066{bottom:282.960000pt;}
.y20_c00066{bottom:337.920000pt;}
.y1f_c00066{bottom:366.240000pt;}
.y1d_c00066{bottom:395.840000pt;}
.y1e_c00066{bottom:398.800000pt;}
.y1c_c00066{bottom:424.720000pt;}
.y1a_c00066{bottom:451.280000pt;}
.y1b_c00066{bottom:453.995040pt;}
.y19_c00066{bottom:468.720000pt;}
.y17_c00066{bottom:490.320000pt;}
.y18_c00066{bottom:490.558560pt;}
.y16_c00066{bottom:507.760000pt;}
.y15_c00066{bottom:532.720000pt;}
.y14_c00066{bottom:561.920000pt;}
.y13_c00066{bottom:591.440000pt;}
.y12_c00066{bottom:621.280000pt;}
.y11_c00066{bottom:683.440000pt;}
.y10_c00066{bottom:711.040000pt;}
.yf_c00066{bottom:738.640000pt;}
.ye_c00066{bottom:766.160000pt;}
.yd_c00066{bottom:793.760000pt;}
.yc_c00066{bottom:821.360000pt;}
.yb_c00066{bottom:848.960000pt;}
.ya_c00066{bottom:876.560000pt;}
.y9_c00066{bottom:904.160000pt;}
.y8_c00066{bottom:931.760000pt;}
.y7_c00066{bottom:959.360000pt;}
.y6_c00066{bottom:986.960000pt;}
.y5_c00066{bottom:1005.360000pt;}
.y4_c00066{bottom:1023.040000pt;}
.y3_c00066{bottom:1036.804000pt;}
.y2_c00066{bottom:1050.640000pt;}
.y1_c00066{bottom:1064.400000pt;}
.h3_c00066{height:47.085938pt;}
.h2_c00066{height:47.109375pt;}
.h4_c00066{height:62.812500pt;}
.h5_c00066{height:66.750000pt;}
.h9_c00066{height:90.591562pt;}
.h8_c00066{height:91.545802pt;}
.hc_c00066{height:127.593750pt;}
.h6_c00066{height:139.433750pt;}
.h7_c00066{height:141.993750pt;}
.hb_c00066{height:163.453590pt;}
.ha_c00066{height:173.359510pt;}
.hd_c00066{height:178.473750pt;}
.he_c00066{height:220.713750pt;}
.h0_c00066{height:1122.560000pt;}
.h1_c00066{height:1122.666667pt;}
.w0_c00066{width:793.840000pt;}
.w1_c00066{width:794.000000pt;}
.x0_c00066{left:0.000000pt;}
.x3_c00066{left:113.440000pt;}
.x4_c00066{left:137.440000pt;}
.x5_c00066{left:161.440000pt;}
.x7_c00066{left:265.760000pt;}
.xa_c00066{left:266.800000pt;}
.x8_c00066{left:267.840000pt;}
.x9_c00066{left:275.678400pt;}
.xe_c00066{left:292.480000pt;}
.x6_c00066{left:294.240000pt;}
.xd_c00066{left:298.720000pt;}
.xb_c00066{left:313.600000pt;}
.x10_c00066{left:327.440000pt;}
.x2_c00066{left:377.920000pt;}
.x1_c00066{left:396.960000pt;}
.xf_c00066{left:398.320000pt;}
.xc_c00066{left:402.160000pt;}
.x11_c00066{left:470.080000pt;}
.x12_c00066{left:664.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_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_fe3c62b2190c31b560ba73c2.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_3242d874bf05afffa8507d09.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_77fa6edfa5dd44e9b502d4f5.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00067;src:url('chunks/assets/font_f6b4c1e0d70107b5b5434909.woff2')format("woff");}.ff5_c00067{font-family:ff5_c00067;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:ff6_c00067;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00067{font-family:ff6_c00067;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00067;src:url('chunks/assets/font_d0f8328908272d198b1699ac.woff2')format("woff");}.ff7_c00067{font-family:ff7_c00067;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_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7_c00067{vertical-align:-150.840000px;}
.vf_c00067{vertical-align:-107.280000px;}
.v1_c00067{vertical-align:-61.938000px;}
.v12_c00067{vertical-align:-20.880000px;}
.v2_c00067{vertical-align:-14.760000px;}
.vd_c00067{vertical-align:-7.923600px;}
.v10_c00067{vertical-align:-5.815680px;}
.v6_c00067{vertical-align:-2.880000px;}
.v0_c00067{vertical-align:0.000000px;}
.v5_c00067{vertical-align:2.880000px;}
.vc_c00067{vertical-align:7.923600px;}
.va_c00067{vertical-align:13.309200px;}
.v3_c00067{vertical-align:14.760000px;}
.v8_c00067{vertical-align:16.200000px;}
.ve_c00067{vertical-align:20.880000px;}
.v4_c00067{vertical-align:26.280000px;}
.v9_c00067{vertical-align:28.080000px;}
.vb_c00067{vertical-align:34.189200px;}
.v11_c00067{vertical-align:38.880000px;}
.ls28_c00067{letter-spacing:-0.576000px;}
.ls30_c00067{letter-spacing:-0.420840px;}
.ls2d_c00067{letter-spacing:-0.144000px;}
.ls2f_c00067{letter-spacing:-0.120240px;}
.ls2c_c00067{letter-spacing:-0.072000px;}
.ls27_c00067{letter-spacing:0.000000px;}
.ls2a_c00067{letter-spacing:0.051120px;}
.ls4_c00067{letter-spacing:0.072000px;}
.ls2b_c00067{letter-spacing:0.102240px;}
.ls26_c00067{letter-spacing:0.120240px;}
.ls25_c00067{letter-spacing:0.144000px;}
.ls2e_c00067{letter-spacing:0.180360px;}
.ls29_c00067{letter-spacing:0.191520px;}
.ls7_c00067{letter-spacing:0.360000px;}
.ls22_c00067{letter-spacing:1.080000px;}
.ls1e_c00067{letter-spacing:1.368000px;}
.ls19_c00067{letter-spacing:1.800000px;}
.lsf_c00067{letter-spacing:1.859760px;}
.ls17_c00067{letter-spacing:1.944000px;}
.ls8_c00067{letter-spacing:2.016000px;}
.ls9_c00067{letter-spacing:2.023200px;}
.ls5_c00067{letter-spacing:2.030400px;}
.ls23_c00067{letter-spacing:2.088000px;}
.ls13_c00067{letter-spacing:2.298600px;}
.ls20_c00067{letter-spacing:2.520000px;}
.ls1c_c00067{letter-spacing:2.600640px;}
.ls12_c00067{letter-spacing:2.665320px;}
.ls6_c00067{letter-spacing:3.161520px;}
.ls11_c00067{letter-spacing:3.220560px;}
.ls14_c00067{letter-spacing:4.652640px;}
.ls1d_c00067{letter-spacing:4.674240px;}
.ls1b_c00067{letter-spacing:4.679880px;}
.ls1_c00067{letter-spacing:4.736880px;}
.ls24_c00067{letter-spacing:5.040000px;}
.ls2_c00067{letter-spacing:5.400000px;}
.ls18_c00067{letter-spacing:6.480000px;}
.lse_c00067{letter-spacing:8.434800px;}
.ls15_c00067{letter-spacing:9.138600px;}
.ls3_c00067{letter-spacing:11.880000px;}
.ls21_c00067{letter-spacing:11.952000px;}
.lsa_c00067{letter-spacing:12.240000px;}
.lsd_c00067{letter-spacing:18.072000px;}
.ls1a_c00067{letter-spacing:21.528000px;}
.lsc_c00067{letter-spacing:22.961520px;}
.ls10_c00067{letter-spacing:23.178600px;}
.ls1f_c00067{letter-spacing:23.904000px;}
.ls16_c00067{letter-spacing:30.744000px;}
.ls0_c00067{letter-spacing:319.518000px;}
.lsb_c00067{letter-spacing:460.440000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:-72.000000px;}
.ws5_c00067{word-spacing:-51.222240px;}
.ws8_c00067{word-spacing:-51.171120px;}
.ws6_c00067{word-spacing:-51.120000px;}
.ws2_c00067{word-spacing:-18.072000px;}
.ws7_c00067{word-spacing:-17.928000px;}
.ws9_c00067{word-spacing:-17.856000px;}
.ws1_c00067{word-spacing:-17.424000px;}
.ws3_c00067{word-spacing:-15.840000px;}
.ws4_c00067{word-spacing:-12.161520px;}
.wsa_c00067{word-spacing:-9.720000px;}
.ws15_c00067{word-spacing:-0.432000px;}
.ws23_c00067{word-spacing:-0.420840px;}
.ws26_c00067{word-spacing:-0.360720px;}
.wsc_c00067{word-spacing:-0.162000px;}
.ws1b_c00067{word-spacing:-0.144000px;}
.ws14_c00067{word-spacing:-0.072000px;}
.ws18_c00067{word-spacing:-0.051120px;}
.wsb_c00067{word-spacing:0.000000px;}
.ws11_c00067{word-spacing:0.216000px;}
.ws24_c00067{word-spacing:0.240480px;}
.ws13_c00067{word-spacing:0.288000px;}
.ws12_c00067{word-spacing:0.360000px;}
.ws25_c00067{word-spacing:0.420840px;}
.ws1f_c00067{word-spacing:2.448000px;}
.ws21_c00067{word-spacing:4.680000px;}
.wsd_c00067{word-spacing:4.968000px;}
.wse_c00067{word-spacing:5.040000px;}
.ws19_c00067{word-spacing:6.408000px;}
.ws1a_c00067{word-spacing:6.480000px;}
.ws1d_c00067{word-spacing:7.776000px;}
.ws1e_c00067{word-spacing:7.920000px;}
.ws22_c00067{word-spacing:11.160000px;}
.wsf_c00067{word-spacing:11.808000px;}
.ws10_c00067{word-spacing:11.880000px;}
.ws16_c00067{word-spacing:12.096000px;}
.ws17_c00067{word-spacing:12.240000px;}
.ws20_c00067{word-spacing:12.888000px;}
.ws1c_c00067{word-spacing:18.720000px;}
._5_c00067{margin-left:-25.392960px;}
._7_c00067{margin-left:-23.309880px;}
._1_c00067{margin-left:-12.168000px;}
._0_c00067{margin-left:-1.152000px;}
._3_c00067{width:1.656000px;}
._2_c00067{width:5.040000px;}
._b_c00067{width:7.391400px;}
._a_c00067{width:8.434800px;}
._6_c00067{width:9.455040px;}
._4_c00067{width:10.560960px;}
._9_c00067{width:178.680960px;}
._8_c00067{width:338.472000px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs5_c00067{font-size:38.880000px;}
.fs4_c00067{font-size:42.120000px;}
.fs3_c00067{font-size:47.880000px;}
.fs2_c00067{font-size:51.120000px;}
.fs0_c00067{font-size:54.000000px;}
.fs6_c00067{font-size:60.120000px;}
.fs1_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y24_c00067{bottom:57.240000px;}
.y23_c00067{bottom:115.020000px;}
.y25_c00067{bottom:127.710000px;}
.y22_c00067{bottom:196.650000px;}
.y21_c00067{bottom:227.880000px;}
.y20_c00067{bottom:259.380000px;}
.y1f_c00067{bottom:290.430000px;}
.y1e_c00067{bottom:321.480000px;}
.y1d_c00067{bottom:352.530000px;}
.y1c_c00067{bottom:383.580000px;}
.y1b_c00067{bottom:414.630000px;}
.y1a_c00067{bottom:445.680000px;}
.y19_c00067{bottom:476.730000px;}
.y18_c00067{bottom:507.780000px;}
.y17_c00067{bottom:541.080000px;}
.y16_c00067{bottom:576.450000px;}
.y15_c00067{bottom:609.480000px;}
.y14_c00067{bottom:640.530000px;}
.y13_c00067{bottom:671.580000px;}
.y12_c00067{bottom:702.630000px;}
.y11_c00067{bottom:733.770000px;}
.y10_c00067{bottom:764.920320px;}
.yf_c00067{bottom:812.610000px;}
.ye_c00067{bottom:844.200000px;}
.yd_c00067{bottom:875.700000px;}
.yb_c00067{bottom:905.852700px;}
.yc_c00067{bottom:905.852760px;}
.ya_c00067{bottom:952.110000px;}
.y9_c00067{bottom:983.340000px;}
.y8_c00067{bottom:1015.020000px;}
.y7_c00067{bottom:1046.250000px;}
.y6_c00067{bottom:1078.110000px;}
.y5_c00067{bottom:1109.880000px;}
.y4_c00067{bottom:1131.030000px;}
.y3_c00067{bottom:1150.915500px;}
.y2_c00067{bottom:1166.400000px;}
.y1_c00067{bottom:1197.450000px;}
.ha_c00067{height:38.158594px;}
.h2_c00067{height:52.998047px;}
.h3_c00067{height:70.664062px;}
.h5_c00067{height:73.991602px;}
.h8_c00067{height:75.093750px;}
.h7_c00067{height:107.668068px;}
.h9_c00067{height:109.862783px;}
.h4_c00067{height:143.542969px;}
.h6_c00067{height:193.932169px;}
.h0_c00067{height:1262.880000px;}
.h1_c00067{height:1263.000000px;}
.w0_c00067{width:893.070000px;}
.w1_c00067{width:893.250000px;}
.x0_c00067{left:0.000000px;}
.x2_c00067{left:127.620000px;}
.x6_c00067{left:154.620000px;}
.x7_c00067{left:181.620000px;}
.x5_c00067{left:368.186610px;}
.x3_c00067{left:388.798380px;}
.x1_c00067{left:446.580000px;}
.x4_c00067{left:459.259230px;}
@media print{
.v7_c00067{vertical-align:-134.080000pt;}
.vf_c00067{vertical-align:-95.360000pt;}
.v1_c00067{vertical-align:-55.056000pt;}
.v12_c00067{vertical-align:-18.560000pt;}
.v2_c00067{vertical-align:-13.120000pt;}
.vd_c00067{vertical-align:-7.043200pt;}
.v10_c00067{vertical-align:-5.169493pt;}
.v6_c00067{vertical-align:-2.560000pt;}
.v0_c00067{vertical-align:0.000000pt;}
.v5_c00067{vertical-align:2.560000pt;}
.vc_c00067{vertical-align:7.043200pt;}
.va_c00067{vertical-align:11.830400pt;}
.v3_c00067{vertical-align:13.120000pt;}
.v8_c00067{vertical-align:14.400000pt;}
.ve_c00067{vertical-align:18.560000pt;}
.v4_c00067{vertical-align:23.360000pt;}
.v9_c00067{vertical-align:24.960000pt;}
.vb_c00067{vertical-align:30.390400pt;}
.v11_c00067{vertical-align:34.560000pt;}
.ls28_c00067{letter-spacing:-0.512000pt;}
.ls30_c00067{letter-spacing:-0.374080pt;}
.ls2d_c00067{letter-spacing:-0.128000pt;}
.ls2f_c00067{letter-spacing:-0.106880pt;}
.ls2c_c00067{letter-spacing:-0.064000pt;}
.ls27_c00067{letter-spacing:0.000000pt;}
.ls2a_c00067{letter-spacing:0.045440pt;}
.ls4_c00067{letter-spacing:0.064000pt;}
.ls2b_c00067{letter-spacing:0.090880pt;}
.ls26_c00067{letter-spacing:0.106880pt;}
.ls25_c00067{letter-spacing:0.128000pt;}
.ls2e_c00067{letter-spacing:0.160320pt;}
.ls29_c00067{letter-spacing:0.170240pt;}
.ls7_c00067{letter-spacing:0.320000pt;}
.ls22_c00067{letter-spacing:0.960000pt;}
.ls1e_c00067{letter-spacing:1.216000pt;}
.ls19_c00067{letter-spacing:1.600000pt;}
.lsf_c00067{letter-spacing:1.653120pt;}
.ls17_c00067{letter-spacing:1.728000pt;}
.ls8_c00067{letter-spacing:1.792000pt;}
.ls9_c00067{letter-spacing:1.798400pt;}
.ls5_c00067{letter-spacing:1.804800pt;}
.ls23_c00067{letter-spacing:1.856000pt;}
.ls13_c00067{letter-spacing:2.043200pt;}
.ls20_c00067{letter-spacing:2.240000pt;}
.ls1c_c00067{letter-spacing:2.311680pt;}
.ls12_c00067{letter-spacing:2.369173pt;}
.ls6_c00067{letter-spacing:2.810240pt;}
.ls11_c00067{letter-spacing:2.862720pt;}
.ls14_c00067{letter-spacing:4.135680pt;}
.ls1d_c00067{letter-spacing:4.154880pt;}
.ls1b_c00067{letter-spacing:4.159893pt;}
.ls1_c00067{letter-spacing:4.210560pt;}
.ls24_c00067{letter-spacing:4.480000pt;}
.ls2_c00067{letter-spacing:4.800000pt;}
.ls18_c00067{letter-spacing:5.760000pt;}
.lse_c00067{letter-spacing:7.497600pt;}
.ls15_c00067{letter-spacing:8.123200pt;}
.ls3_c00067{letter-spacing:10.560000pt;}
.ls21_c00067{letter-spacing:10.624000pt;}
.lsa_c00067{letter-spacing:10.880000pt;}
.lsd_c00067{letter-spacing:16.064000pt;}
.ls1a_c00067{letter-spacing:19.136000pt;}
.lsc_c00067{letter-spacing:20.410240pt;}
.ls10_c00067{letter-spacing:20.603200pt;}
.ls1f_c00067{letter-spacing:21.248000pt;}
.ls16_c00067{letter-spacing:27.328000pt;}
.ls0_c00067{letter-spacing:284.016000pt;}
.lsb_c00067{letter-spacing:409.280000pt;}
.ws0_c00067{word-spacing:-64.000000pt;}
.ws5_c00067{word-spacing:-45.530880pt;}
.ws8_c00067{word-spacing:-45.485440pt;}
.ws6_c00067{word-spacing:-45.440000pt;}
.ws2_c00067{word-spacing:-16.064000pt;}
.ws7_c00067{word-spacing:-15.936000pt;}
.ws9_c00067{word-spacing:-15.872000pt;}
.ws1_c00067{word-spacing:-15.488000pt;}
.ws3_c00067{word-spacing:-14.080000pt;}
.ws4_c00067{word-spacing:-10.810240pt;}
.wsa_c00067{word-spacing:-8.640000pt;}
.ws15_c00067{word-spacing:-0.384000pt;}
.ws23_c00067{word-spacing:-0.374080pt;}
.ws26_c00067{word-spacing:-0.320640pt;}
.wsc_c00067{word-spacing:-0.144000pt;}
.ws1b_c00067{word-spacing:-0.128000pt;}
.ws14_c00067{word-spacing:-0.064000pt;}
.ws18_c00067{word-spacing:-0.045440pt;}
.wsb_c00067{word-spacing:0.000000pt;}
.ws11_c00067{word-spacing:0.192000pt;}
.ws24_c00067{word-spacing:0.213760pt;}
.ws13_c00067{word-spacing:0.256000pt;}
.ws12_c00067{word-spacing:0.320000pt;}
.ws25_c00067{word-spacing:0.374080pt;}
.ws1f_c00067{word-spacing:2.176000pt;}
.ws21_c00067{word-spacing:4.160000pt;}
.wsd_c00067{word-spacing:4.416000pt;}
.wse_c00067{word-spacing:4.480000pt;}
.ws19_c00067{word-spacing:5.696000pt;}
.ws1a_c00067{word-spacing:5.760000pt;}
.ws1d_c00067{word-spacing:6.912000pt;}
.ws1e_c00067{word-spacing:7.040000pt;}
.ws22_c00067{word-spacing:9.920000pt;}
.wsf_c00067{word-spacing:10.496000pt;}
.ws10_c00067{word-spacing:10.560000pt;}
.ws16_c00067{word-spacing:10.752000pt;}
.ws17_c00067{word-spacing:10.880000pt;}
.ws20_c00067{word-spacing:11.456000pt;}
.ws1c_c00067{word-spacing:16.640000pt;}
._5_c00067{margin-left:-22.571520pt;}
._7_c00067{margin-left:-20.719893pt;}
._1_c00067{margin-left:-10.816000pt;}
._0_c00067{margin-left:-1.024000pt;}
._3_c00067{width:1.472000pt;}
._2_c00067{width:4.480000pt;}
._b_c00067{width:6.570133pt;}
._a_c00067{width:7.497600pt;}
._6_c00067{width:8.404480pt;}
._4_c00067{width:9.387520pt;}
._9_c00067{width:158.827520pt;}
._8_c00067{width:300.864000pt;}
.fs5_c00067{font-size:34.560000pt;}
.fs4_c00067{font-size:37.440000pt;}
.fs3_c00067{font-size:42.560000pt;}
.fs2_c00067{font-size:45.440000pt;}
.fs0_c00067{font-size:48.000000pt;}
.fs6_c00067{font-size:53.440000pt;}
.fs1_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y24_c00067{bottom:50.880000pt;}
.y23_c00067{bottom:102.240000pt;}
.y25_c00067{bottom:113.520000pt;}
.y22_c00067{bottom:174.800000pt;}
.y21_c00067{bottom:202.560000pt;}
.y20_c00067{bottom:230.560000pt;}
.y1f_c00067{bottom:258.160000pt;}
.y1e_c00067{bottom:285.760000pt;}
.y1d_c00067{bottom:313.360000pt;}
.y1c_c00067{bottom:340.960000pt;}
.y1b_c00067{bottom:368.560000pt;}
.y1a_c00067{bottom:396.160000pt;}
.y19_c00067{bottom:423.760000pt;}
.y18_c00067{bottom:451.360000pt;}
.y17_c00067{bottom:480.960000pt;}
.y16_c00067{bottom:512.400000pt;}
.y15_c00067{bottom:541.760000pt;}
.y14_c00067{bottom:569.360000pt;}
.y13_c00067{bottom:596.960000pt;}
.y12_c00067{bottom:624.560000pt;}
.y11_c00067{bottom:652.240000pt;}
.y10_c00067{bottom:679.929173pt;}
.yf_c00067{bottom:722.320000pt;}
.ye_c00067{bottom:750.400000pt;}
.yd_c00067{bottom:778.400000pt;}
.yb_c00067{bottom:805.202400pt;}
.yc_c00067{bottom:805.202453pt;}
.ya_c00067{bottom:846.320000pt;}
.y9_c00067{bottom:874.080000pt;}
.y8_c00067{bottom:902.240000pt;}
.y7_c00067{bottom:930.000000pt;}
.y6_c00067{bottom:958.320000pt;}
.y5_c00067{bottom:986.560000pt;}
.y4_c00067{bottom:1005.360000pt;}
.y3_c00067{bottom:1023.036000pt;}
.y2_c00067{bottom:1036.800000pt;}
.y1_c00067{bottom:1064.400000pt;}
.ha_c00067{height:33.918750pt;}
.h2_c00067{height:47.109375pt;}
.h3_c00067{height:62.812500pt;}
.h5_c00067{height:65.770313pt;}
.h8_c00067{height:66.750000pt;}
.h7_c00067{height:95.704949pt;}
.h9_c00067{height:97.655807pt;}
.h4_c00067{height:127.593750pt;}
.h6_c00067{height:172.384150pt;}
.h0_c00067{height:1122.560000pt;}
.h1_c00067{height:1122.666667pt;}
.w0_c00067{width:793.840000pt;}
.w1_c00067{width:794.000000pt;}
.x0_c00067{left:0.000000pt;}
.x2_c00067{left:113.440000pt;}
.x6_c00067{left:137.440000pt;}
.x7_c00067{left:161.440000pt;}
.x5_c00067{left:327.276987pt;}
.x3_c00067{left:345.598560pt;}
.x1_c00067{left:396.960000pt;}
.x4_c00067{left:408.230427pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcc071dcbabfabe783c7c1d3.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_998bcac0ff63beee9baba2d9.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:3.333984;font-style:normal;font-weight:normal;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_7631479336e5adb5efd590e9.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_f1fe9023afb7f45ae441df21.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;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:ff6_c00068;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00068{font-family:ff6_c00068;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v14_c00068{vertical-align:-126.360000px;}
.v2_c00068{vertical-align:-16.200000px;}
.v3_c00068{vertical-align:-14.760000px;}
.v11_c00068{vertical-align:-10.800000px;}
.v5_c00068{vertical-align:-2.880000px;}
.v7_c00068{vertical-align:-1.080000px;}
.v0_c00068{vertical-align:0.000000px;}
.v6_c00068{vertical-align:1.080000px;}
.ve_c00068{vertical-align:2.880000px;}
.vc_c00068{vertical-align:7.920000px;}
.v4_c00068{vertical-align:12.612960px;}
.vb_c00068{vertical-align:13.680000px;}
.v15_c00068{vertical-align:14.760000px;}
.v1_c00068{vertical-align:16.200000px;}
.v13_c00068{vertical-align:17.640000px;}
.va_c00068{vertical-align:18.720000px;}
.v8_c00068{vertical-align:21.600000px;}
.vd_c00068{vertical-align:36.720000px;}
.v12_c00068{vertical-align:47.520000px;}
.v9_c00068{vertical-align:54.360000px;}
.vf_c00068{vertical-align:57.240000px;}
.v10_c00068{vertical-align:75.960000px;}
.ls23_c00068{letter-spacing:-0.360000px;}
.ls25_c00068{letter-spacing:-0.288000px;}
.ls24_c00068{letter-spacing:-0.216000px;}
.ls22_c00068{letter-spacing:-0.144000px;}
.ls20_c00068{letter-spacing:-0.108000px;}
.ls21_c00068{letter-spacing:-0.072000px;}
.ls1f_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:0.072000px;}
.lsb_c00068{letter-spacing:0.144000px;}
.ls16_c00068{letter-spacing:2.016000px;}
.ls5_c00068{letter-spacing:2.088000px;}
.ls1b_c00068{letter-spacing:2.160000px;}
.ls6_c00068{letter-spacing:2.664000px;}
.ls13_c00068{letter-spacing:2.801520px;}
.ls19_c00068{letter-spacing:3.161520px;}
.ls10_c00068{letter-spacing:3.600000px;}
.ls12_c00068{letter-spacing:5.040000px;}
.ls4_c00068{letter-spacing:5.832000px;}
.lsf_c00068{letter-spacing:12.024000px;}
.lsa_c00068{letter-spacing:13.320000px;}
.ls2_c00068{letter-spacing:16.056000px;}
.ls1a_c00068{letter-spacing:16.920000px;}
.ls7_c00068{letter-spacing:18.360000px;}
.ls17_c00068{letter-spacing:18.641520px;}
.ls11_c00068{letter-spacing:19.001520px;}
.lsc_c00068{letter-spacing:19.872000px;}
.lsd_c00068{letter-spacing:20.016000px;}
.ls14_c00068{letter-spacing:20.160000px;}
.ls1e_c00068{letter-spacing:21.888000px;}
.ls1_c00068{letter-spacing:22.032000px;}
.ls1c_c00068{letter-spacing:23.904000px;}
.ls18_c00068{letter-spacing:30.744000px;}
.ls3_c00068{letter-spacing:32.509440px;}
.ls1d_c00068{letter-spacing:36.000000px;}
.ls9_c00068{letter-spacing:40.032000px;}
.ls8_c00068{letter-spacing:42.624000px;}
.lse_c00068{letter-spacing:178.481520px;}
.ls15_c00068{letter-spacing:183.161520px;}
.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;}
}
.ws1_c00068{word-spacing:-72.000000px;}
.ws3_c00068{word-spacing:-71.928000px;}
.ws2_c00068{word-spacing:-20.805840px;}
.ws9_c00068{word-spacing:-18.144000px;}
.ws8_c00068{word-spacing:-18.072000px;}
.ws0_c00068{word-spacing:-18.000000px;}
.ws4_c00068{word-spacing:-17.928000px;}
.ws5_c00068{word-spacing:-17.856000px;}
.ws7_c00068{word-spacing:-17.784000px;}
.ws6_c00068{word-spacing:-15.840000px;}
.ws25_c00068{word-spacing:-0.432000px;}
.wsf_c00068{word-spacing:-0.144000px;}
.wse_c00068{word-spacing:-0.072000px;}
.wsa_c00068{word-spacing:0.000000px;}
.wsc_c00068{word-spacing:0.162000px;}
.wsb_c00068{word-spacing:0.270000px;}
.wsd_c00068{word-spacing:0.288000px;}
.ws22_c00068{word-spacing:0.360000px;}
.ws19_c00068{word-spacing:0.720000px;}
.ws18_c00068{word-spacing:1.368000px;}
.ws17_c00068{word-spacing:1.440000px;}
.ws1d_c00068{word-spacing:1.728000px;}
.ws1e_c00068{word-spacing:2.088000px;}
.ws1f_c00068{word-spacing:2.160000px;}
.ws20_c00068{word-spacing:5.328000px;}
.ws16_c00068{word-spacing:6.768000px;}
.ws15_c00068{word-spacing:6.840000px;}
.ws23_c00068{word-spacing:13.248000px;}
.ws11_c00068{word-spacing:13.320000px;}
.ws12_c00068{word-spacing:13.680000px;}
.ws13_c00068{word-spacing:14.328000px;}
.ws14_c00068{word-spacing:14.400000px;}
.ws24_c00068{word-spacing:16.560000px;}
.ws1b_c00068{word-spacing:16.848000px;}
.ws1a_c00068{word-spacing:16.920000px;}
.ws1c_c00068{word-spacing:17.208000px;}
.ws21_c00068{word-spacing:17.568000px;}
.ws10_c00068{word-spacing:18.288000px;}
._8_c00068{margin-left:-31.964400px;}
._9_c00068{margin-left:-30.740400px;}
._5_c00068{margin-left:-29.588400px;}
._2_c00068{margin-left:-24.912000px;}
._c_c00068{margin-left:-2.923200px;}
._1_c00068{margin-left:-1.058400px;}
._0_c00068{width:1.220400px;}
._b_c00068{width:2.332800px;}
._a_c00068{width:3.888000px;}
._6_c00068{width:5.328000px;}
._3_c00068{width:12.384000px;}
._4_c00068{width:13.464000px;}
._7_c00068{width:16.056000px;}
._e_c00068{width:19.944000px;}
._f_c00068{width:21.718800px;}
._d_c00068{width:171.914400px;}
.fc0_c00068{color:rgb(0,0,0);}
.fs2_c00068{font-size:51.120000px;}
.fs0_c00068{font-size:54.000000px;}
.fs1_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y29_c00068{bottom:57.240000px;}
.y28_c00068{bottom:149.580000px;}
.y27_c00068{bottom:212.850000px;}
.y26_c00068{bottom:244.080000px;}
.y25_c00068{bottom:275.580000px;}
.y24_c00068{bottom:306.630000px;}
.y23_c00068{bottom:337.680000px;}
.y22_c00068{bottom:368.730000px;}
.y21_c00068{bottom:399.780000px;}
.y20_c00068{bottom:430.830000px;}
.y1f_c00068{bottom:461.970000px;}
.y1e_c00068{bottom:493.470000px;}
.y1d_c00068{bottom:524.700000px;}
.y1c_c00068{bottom:556.200000px;}
.y1b_c00068{bottom:587.250000px;}
.y1a_c00068{bottom:618.300000px;}
.y19_c00068{bottom:649.530000px;}
.y18_c00068{bottom:680.940000px;}
.y17_c00068{bottom:729.270000px;}
.y16_c00068{bottom:741.870000px;}
.y15_c00068{bottom:804.960000px;}
.y14_c00068{bottom:816.840000px;}
.y13_c00068{bottom:862.650000px;}
.y12_c00068{bottom:885.510000px;}
.y11_c00068{bottom:906.120000px;}
.y10_c00068{bottom:927.270000px;}
.yf_c00068{bottom:948.420000px;}
.yd_c00068{bottom:969.030000px;}
.ye_c00068{bottom:969.750000px;}
.yc_c00068{bottom:988.826760px;}
.yb_c00068{bottom:991.980000px;}
.ya_c00068{bottom:1013.130000px;}
.y9_c00068{bottom:1042.916760px;}
.y8_c00068{bottom:1046.070000px;}
.y7_c00068{bottom:1079.280000px;}
.y6_c00068{bottom:1110.330000px;}
.y5_c00068{bottom:1131.030000px;}
.y4_c00068{bottom:1150.920000px;}
.y3_c00068{bottom:1166.404500px;}
.y2_c00068{bottom:1181.970000px;}
.y1_c00068{bottom:1197.450000px;}
.h3_c00068{height:52.971680px;}
.h2_c00068{height:52.998047px;}
.h4_c00068{height:70.664062px;}
.hc_c00068{height:75.093750px;}
.h8_c00068{height:101.915508px;}
.h7_c00068{height:143.542969px;}
.h9_c00068{height:154.342969px;}
.hb_c00068{height:157.222969px;}
.h5_c00068{height:159.742969px;}
.h6_c00068{height:172.355929px;}
.ha_c00068{height:200.782969px;}
.h0_c00068{height:1262.880000px;}
.h1_c00068{height:1263.000000px;}
.w0_c00068{width:893.070000px;}
.w1_c00068{width:893.250000px;}
.x0_c00068{left:0.000000px;}
.x3_c00068{left:127.620000px;}
.x6_c00068{left:142.562520px;}
.xc_c00068{left:154.620000px;}
.x4_c00068{left:198.810000px;}
.x7_c00068{left:243.720000px;}
.x5_c00068{left:246.692520px;}
.xa_c00068{left:334.080000px;}
.x8_c00068{left:347.670000px;}
.xd_c00068{left:407.790000px;}
.x2_c00068{left:425.160000px;}
.xb_c00068{left:438.480000px;}
.x1_c00068{left:446.580000px;}
.x9_c00068{left:453.420000px;}
.xe_c00068{left:747.540000px;}
@media print{
.v14_c00068{vertical-align:-112.320000pt;}
.v2_c00068{vertical-align:-14.400000pt;}
.v3_c00068{vertical-align:-13.120000pt;}
.v11_c00068{vertical-align:-9.600000pt;}
.v5_c00068{vertical-align:-2.560000pt;}
.v7_c00068{vertical-align:-0.960000pt;}
.v0_c00068{vertical-align:0.000000pt;}
.v6_c00068{vertical-align:0.960000pt;}
.ve_c00068{vertical-align:2.560000pt;}
.vc_c00068{vertical-align:7.040000pt;}
.v4_c00068{vertical-align:11.211520pt;}
.vb_c00068{vertical-align:12.160000pt;}
.v15_c00068{vertical-align:13.120000pt;}
.v1_c00068{vertical-align:14.400000pt;}
.v13_c00068{vertical-align:15.680000pt;}
.va_c00068{vertical-align:16.640000pt;}
.v8_c00068{vertical-align:19.200000pt;}
.vd_c00068{vertical-align:32.640000pt;}
.v12_c00068{vertical-align:42.240000pt;}
.v9_c00068{vertical-align:48.320000pt;}
.vf_c00068{vertical-align:50.880000pt;}
.v10_c00068{vertical-align:67.520000pt;}
.ls23_c00068{letter-spacing:-0.320000pt;}
.ls25_c00068{letter-spacing:-0.256000pt;}
.ls24_c00068{letter-spacing:-0.192000pt;}
.ls22_c00068{letter-spacing:-0.128000pt;}
.ls20_c00068{letter-spacing:-0.096000pt;}
.ls21_c00068{letter-spacing:-0.064000pt;}
.ls1f_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:0.064000pt;}
.lsb_c00068{letter-spacing:0.128000pt;}
.ls16_c00068{letter-spacing:1.792000pt;}
.ls5_c00068{letter-spacing:1.856000pt;}
.ls1b_c00068{letter-spacing:1.920000pt;}
.ls6_c00068{letter-spacing:2.368000pt;}
.ls13_c00068{letter-spacing:2.490240pt;}
.ls19_c00068{letter-spacing:2.810240pt;}
.ls10_c00068{letter-spacing:3.200000pt;}
.ls12_c00068{letter-spacing:4.480000pt;}
.ls4_c00068{letter-spacing:5.184000pt;}
.lsf_c00068{letter-spacing:10.688000pt;}
.lsa_c00068{letter-spacing:11.840000pt;}
.ls2_c00068{letter-spacing:14.272000pt;}
.ls1a_c00068{letter-spacing:15.040000pt;}
.ls7_c00068{letter-spacing:16.320000pt;}
.ls17_c00068{letter-spacing:16.570240pt;}
.ls11_c00068{letter-spacing:16.890240pt;}
.lsc_c00068{letter-spacing:17.664000pt;}
.lsd_c00068{letter-spacing:17.792000pt;}
.ls14_c00068{letter-spacing:17.920000pt;}
.ls1e_c00068{letter-spacing:19.456000pt;}
.ls1_c00068{letter-spacing:19.584000pt;}
.ls1c_c00068{letter-spacing:21.248000pt;}
.ls18_c00068{letter-spacing:27.328000pt;}
.ls3_c00068{letter-spacing:28.897280pt;}
.ls1d_c00068{letter-spacing:32.000000pt;}
.ls9_c00068{letter-spacing:35.584000pt;}
.ls8_c00068{letter-spacing:37.888000pt;}
.lse_c00068{letter-spacing:158.650240pt;}
.ls15_c00068{letter-spacing:162.810240pt;}
.ws1_c00068{word-spacing:-64.000000pt;}
.ws3_c00068{word-spacing:-63.936000pt;}
.ws2_c00068{word-spacing:-18.494080pt;}
.ws9_c00068{word-spacing:-16.128000pt;}
.ws8_c00068{word-spacing:-16.064000pt;}
.ws0_c00068{word-spacing:-16.000000pt;}
.ws4_c00068{word-spacing:-15.936000pt;}
.ws5_c00068{word-spacing:-15.872000pt;}
.ws7_c00068{word-spacing:-15.808000pt;}
.ws6_c00068{word-spacing:-14.080000pt;}
.ws25_c00068{word-spacing:-0.384000pt;}
.wsf_c00068{word-spacing:-0.128000pt;}
.wse_c00068{word-spacing:-0.064000pt;}
.wsa_c00068{word-spacing:0.000000pt;}
.wsc_c00068{word-spacing:0.144000pt;}
.wsb_c00068{word-spacing:0.240000pt;}
.wsd_c00068{word-spacing:0.256000pt;}
.ws22_c00068{word-spacing:0.320000pt;}
.ws19_c00068{word-spacing:0.640000pt;}
.ws18_c00068{word-spacing:1.216000pt;}
.ws17_c00068{word-spacing:1.280000pt;}
.ws1d_c00068{word-spacing:1.536000pt;}
.ws1e_c00068{word-spacing:1.856000pt;}
.ws1f_c00068{word-spacing:1.920000pt;}
.ws20_c00068{word-spacing:4.736000pt;}
.ws16_c00068{word-spacing:6.016000pt;}
.ws15_c00068{word-spacing:6.080000pt;}
.ws23_c00068{word-spacing:11.776000pt;}
.ws11_c00068{word-spacing:11.840000pt;}
.ws12_c00068{word-spacing:12.160000pt;}
.ws13_c00068{word-spacing:12.736000pt;}
.ws14_c00068{word-spacing:12.800000pt;}
.ws24_c00068{word-spacing:14.720000pt;}
.ws1b_c00068{word-spacing:14.976000pt;}
.ws1a_c00068{word-spacing:15.040000pt;}
.ws1c_c00068{word-spacing:15.296000pt;}
.ws21_c00068{word-spacing:15.616000pt;}
.ws10_c00068{word-spacing:16.256000pt;}
._8_c00068{margin-left:-28.412800pt;}
._9_c00068{margin-left:-27.324800pt;}
._5_c00068{margin-left:-26.300800pt;}
._2_c00068{margin-left:-22.144000pt;}
._c_c00068{margin-left:-2.598400pt;}
._1_c00068{margin-left:-0.940800pt;}
._0_c00068{width:1.084800pt;}
._b_c00068{width:2.073600pt;}
._a_c00068{width:3.456000pt;}
._6_c00068{width:4.736000pt;}
._3_c00068{width:11.008000pt;}
._4_c00068{width:11.968000pt;}
._7_c00068{width:14.272000pt;}
._e_c00068{width:17.728000pt;}
._f_c00068{width:19.305600pt;}
._d_c00068{width:152.812800pt;}
.fs2_c00068{font-size:45.440000pt;}
.fs0_c00068{font-size:48.000000pt;}
.fs1_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y29_c00068{bottom:50.880000pt;}
.y28_c00068{bottom:132.960000pt;}
.y27_c00068{bottom:189.200000pt;}
.y26_c00068{bottom:216.960000pt;}
.y25_c00068{bottom:244.960000pt;}
.y24_c00068{bottom:272.560000pt;}
.y23_c00068{bottom:300.160000pt;}
.y22_c00068{bottom:327.760000pt;}
.y21_c00068{bottom:355.360000pt;}
.y20_c00068{bottom:382.960000pt;}
.y1f_c00068{bottom:410.640000pt;}
.y1e_c00068{bottom:438.640000pt;}
.y1d_c00068{bottom:466.400000pt;}
.y1c_c00068{bottom:494.400000pt;}
.y1b_c00068{bottom:522.000000pt;}
.y1a_c00068{bottom:549.600000pt;}
.y19_c00068{bottom:577.360000pt;}
.y18_c00068{bottom:605.280000pt;}
.y17_c00068{bottom:648.240000pt;}
.y16_c00068{bottom:659.440000pt;}
.y15_c00068{bottom:715.520000pt;}
.y14_c00068{bottom:726.080000pt;}
.y13_c00068{bottom:766.800000pt;}
.y12_c00068{bottom:787.120000pt;}
.y11_c00068{bottom:805.440000pt;}
.y10_c00068{bottom:824.240000pt;}
.yf_c00068{bottom:843.040000pt;}
.yd_c00068{bottom:861.360000pt;}
.ye_c00068{bottom:862.000000pt;}
.yc_c00068{bottom:878.957120pt;}
.yb_c00068{bottom:881.760000pt;}
.ya_c00068{bottom:900.560000pt;}
.y9_c00068{bottom:927.037120pt;}
.y8_c00068{bottom:929.840000pt;}
.y7_c00068{bottom:959.360000pt;}
.y6_c00068{bottom:986.960000pt;}
.y5_c00068{bottom:1005.360000pt;}
.y4_c00068{bottom:1023.040000pt;}
.y3_c00068{bottom:1036.804000pt;}
.y2_c00068{bottom:1050.640000pt;}
.y1_c00068{bottom:1064.400000pt;}
.h3_c00068{height:47.085938pt;}
.h2_c00068{height:47.109375pt;}
.h4_c00068{height:62.812500pt;}
.hc_c00068{height:66.750000pt;}
.h8_c00068{height:90.591562pt;}
.h7_c00068{height:127.593750pt;}
.h9_c00068{height:137.193750pt;}
.hb_c00068{height:139.753750pt;}
.h5_c00068{height:141.993750pt;}
.h6_c00068{height:153.205270pt;}
.ha_c00068{height:178.473750pt;}
.h0_c00068{height:1122.560000pt;}
.h1_c00068{height:1122.666667pt;}
.w0_c00068{width:793.840000pt;}
.w1_c00068{width:794.000000pt;}
.x0_c00068{left:0.000000pt;}
.x3_c00068{left:113.440000pt;}
.x6_c00068{left:126.722240pt;}
.xc_c00068{left:137.440000pt;}
.x4_c00068{left:176.720000pt;}
.x7_c00068{left:216.640000pt;}
.x5_c00068{left:219.282240pt;}
.xa_c00068{left:296.960000pt;}
.x8_c00068{left:309.040000pt;}
.xd_c00068{left:362.480000pt;}
.x2_c00068{left:377.920000pt;}
.xb_c00068{left:389.760000pt;}
.x1_c00068{left:396.960000pt;}
.x9_c00068{left:403.040000pt;}
.xe_c00068{left:664.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_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_0316b6ac209ab56c56b05159.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_69106809b63d5482cff5e050.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_ffe0719521b72fcd30a54e9f.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_cbc63305c55987e27a052162.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00069;src:url('chunks/assets/font_f9f611ef071c93a3f6065dc2.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;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:ff6_c00069;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00069{font-family:ff6_c00069;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9_c00069{vertical-align:-156.960000px;}
.v1_c00069{vertical-align:-61.938000px;}
.v6_c00069{vertical-align:-28.440000px;}
.v13_c00069{vertical-align:-20.880000px;}
.v8_c00069{vertical-align:-16.200000px;}
.v3_c00069{vertical-align:-14.760000px;}
.vb_c00069{vertical-align:-12.217680px;}
.v10_c00069{vertical-align:-10.440000px;}
.v0_c00069{vertical-align:0.000000px;}
.v2_c00069{vertical-align:2.880000px;}
.v11_c00069{vertical-align:10.440000px;}
.v5_c00069{vertical-align:13.680000px;}
.v4_c00069{vertical-align:14.760000px;}
.v7_c00069{vertical-align:16.200000px;}
.vc_c00069{vertical-align:24.131520px;}
.vd_c00069{vertical-align:27.000000px;}
.ve_c00069{vertical-align:36.349200px;}
.va_c00069{vertical-align:42.120000px;}
.v12_c00069{vertical-align:46.800000px;}
.vf_c00069{vertical-align:78.469200px;}
.ls1f_c00069{letter-spacing:-0.144000px;}
.ls1d_c00069{letter-spacing:-0.072000px;}
.ls21_c00069{letter-spacing:-0.060120px;}
.ls20_c00069{letter-spacing:-0.051120px;}
.ls1c_c00069{letter-spacing:0.000000px;}
.ls10_c00069{letter-spacing:0.066960px;}
.ls12_c00069{letter-spacing:0.072000px;}
.lsd_c00069{letter-spacing:0.117360px;}
.ls1b_c00069{letter-spacing:0.120240px;}
.ls11_c00069{letter-spacing:0.144000px;}
.ls1e_c00069{letter-spacing:0.191520px;}
.lsf_c00069{letter-spacing:1.800000px;}
.ls13_c00069{letter-spacing:1.807200px;}
.ls1a_c00069{letter-spacing:1.938600px;}
.lse_c00069{letter-spacing:2.088000px;}
.ls16_c00069{letter-spacing:2.160000px;}
.ls19_c00069{letter-spacing:2.298600px;}
.ls1_c00069{letter-spacing:2.801520px;}
.ls14_c00069{letter-spacing:4.320000px;}
.ls8_c00069{letter-spacing:4.736880px;}
.lsc_c00069{letter-spacing:4.754160px;}
.lsb_c00069{letter-spacing:5.112000px;}
.ls3_c00069{letter-spacing:5.760000px;}
.ls6_c00069{letter-spacing:5.832000px;}
.ls5_c00069{letter-spacing:16.056000px;}
.ls17_c00069{letter-spacing:20.016000px;}
.ls7_c00069{letter-spacing:20.936880px;}
.ls18_c00069{letter-spacing:21.384000px;}
.lsa_c00069{letter-spacing:21.600000px;}
.ls2_c00069{letter-spacing:22.248000px;}
.ls4_c00069{letter-spacing:24.536880px;}
.ls15_c00069{letter-spacing:30.744000px;}
.ls9_c00069{letter-spacing:239.400000px;}
.ls0_c00069{letter-spacing:319.518000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00069{word-spacing:-72.000000px;}
.ws7_c00069{word-spacing:-71.856000px;}
.ws3_c00069{word-spacing:-51.120000px;}
.ws8_c00069{word-spacing:-51.068880px;}
.ws5_c00069{word-spacing:-18.144000px;}
.ws2_c00069{word-spacing:-18.072000px;}
.ws4_c00069{word-spacing:-17.928000px;}
.ws0_c00069{word-spacing:-15.840000px;}
.ws6_c00069{word-spacing:-12.161520px;}
.ws9_c00069{word-spacing:-9.720000px;}
.ws20_c00069{word-spacing:-0.360720px;}
.ws11_c00069{word-spacing:-0.360000px;}
.wsb_c00069{word-spacing:-0.162000px;}
.ws12_c00069{word-spacing:-0.144000px;}
.wsd_c00069{word-spacing:-0.072000px;}
.wsa_c00069{word-spacing:0.000000px;}
.ws1f_c00069{word-spacing:0.180360px;}
.ws14_c00069{word-spacing:1.368000px;}
.ws15_c00069{word-spacing:1.440000px;}
.ws1b_c00069{word-spacing:1.728000px;}
.ws13_c00069{word-spacing:1.800000px;}
.ws18_c00069{word-spacing:3.168000px;}
.ws17_c00069{word-spacing:3.240000px;}
.ws1c_c00069{word-spacing:4.248000px;}
.ws1d_c00069{word-spacing:4.320000px;}
.wse_c00069{word-spacing:5.760000px;}
.ws10_c00069{word-spacing:6.408000px;}
.wsf_c00069{word-spacing:6.480000px;}
.wsc_c00069{word-spacing:7.128000px;}
.ws1e_c00069{word-spacing:11.808000px;}
.ws16_c00069{word-spacing:16.488000px;}
.ws1a_c00069{word-spacing:33.768000px;}
.ws19_c00069{word-spacing:34.128000px;}
._4_c00069{margin-left:-33.768000px;}
._7_c00069{margin-left:-30.816000px;}
._8_c00069{margin-left:-25.272000px;}
._c_c00069{margin-left:-11.736000px;}
._5_c00069{margin-left:-7.992000px;}
._2_c00069{margin-left:-4.176000px;}
._b_c00069{margin-left:-2.304000px;}
._0_c00069{margin-left:-1.159200px;}
._e_c00069{width:1.482480px;}
._9_c00069{width:2.736000px;}
._1_c00069{width:5.400000px;}
._a_c00069{width:6.696000px;}
._6_c00069{width:9.936000px;}
._d_c00069{width:18.799200px;}
._3_c00069{width:20.088000px;}
._10_c00069{width:22.392000px;}
._f_c00069{width:61.560000px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs5_c00069{font-size:38.880000px;}
.fs4_c00069{font-size:42.120000px;}
.fs3_c00069{font-size:47.880000px;}
.fs2_c00069{font-size:51.120000px;}
.fs0_c00069{font-size:54.000000px;}
.fs6_c00069{font-size:60.120000px;}
.fs1_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y2c_c00069{bottom:57.240000px;}
.y2b_c00069{bottom:115.020000px;}
.y2d_c00069{bottom:127.710000px;}
.y2a_c00069{bottom:166.500000px;}
.y29_c00069{bottom:166.502700px;}
.y28_c00069{bottom:175.590000px;}
.y27_c00069{bottom:211.410000px;}
.y26_c00069{bottom:242.640000px;}
.y25_c00069{bottom:274.140000px;}
.y24_c00069{bottom:305.190000px;}
.y23_c00069{bottom:336.420000px;}
.y22_c00069{bottom:367.830000px;}
.y21_c00069{bottom:398.880000px;}
.y20_c00069{bottom:419.580000px;}
.y1f_c00069{bottom:450.630000px;}
.y1e_c00069{bottom:481.680000px;}
.y1d_c00069{bottom:512.730000px;}
.y1c_c00069{bottom:543.780000px;}
.y1b_c00069{bottom:574.830000px;}
.y1a_c00069{bottom:605.880000px;}
.y19_c00069{bottom:636.930000px;}
.y18_c00069{bottom:667.980000px;}
.y17_c00069{bottom:699.030000px;}
.y16_c00069{bottom:730.080000px;}
.y15_c00069{bottom:761.130000px;}
.y13_c00069{bottom:792.349770px;}
.y14_c00069{bottom:795.404190px;}
.y11_c00069{bottom:801.450000px;}
.y12_c00069{bottom:815.034270px;}
.y10_c00069{bottom:830.340000px;}
.yf_c00069{bottom:850.950000px;}
.ye_c00069{bottom:872.100000px;}
.yc_c00069{bottom:903.332700px;}
.yd_c00069{bottom:906.387120px;}
.yb_c00069{bottom:926.004420px;}
.ya_c00069{bottom:951.660000px;}
.y9_c00069{bottom:982.800000px;}
.y8_c00069{bottom:1014.300000px;}
.y7_c00069{bottom:1045.530000px;}
.y6_c00069{bottom:1077.120000px;}
.y5_c00069{bottom:1110.330000px;}
.y4_c00069{bottom:1131.030000px;}
.y3_c00069{bottom:1150.915500px;}
.y2_c00069{bottom:1166.400000px;}
.y1_c00069{bottom:1197.450000px;}
.hd_c00069{height:38.158594px;}
.h2_c00069{height:52.998047px;}
.h3_c00069{height:70.664062px;}
.h8_c00069{height:73.991602px;}
.h9_c00069{height:75.093750px;}
.h6_c00069{height:101.915508px;}
.hc_c00069{height:107.024063px;}
.h5_c00069{height:143.542969px;}
.h7_c00069{height:144.034908px;}
.ha_c00069{height:144.035508px;}
.h4_c00069{height:159.742969px;}
.hb_c00069{height:180.384708px;}
.h0_c00069{height:1262.880000px;}
.h1_c00069{height:1263.000000px;}
.w0_c00069{width:893.070000px;}
.w1_c00069{width:893.250000px;}
.x0_c00069{left:0.000000px;}
.x2_c00069{left:127.620000px;}
.x8_c00069{left:335.160000px;}
.x6_c00069{left:389.430000px;}
.x4_c00069{left:424.337940px;}
.x3_c00069{left:427.405140px;}
.x9_c00069{left:430.468380px;}
.x7_c00069{left:438.025140px;}
.x5_c00069{left:445.131000px;}
.x1_c00069{left:446.580000px;}
.xa_c00069{left:474.570000px;}
@media print{
.v9_c00069{vertical-align:-139.520000pt;}
.v1_c00069{vertical-align:-55.056000pt;}
.v6_c00069{vertical-align:-25.280000pt;}
.v13_c00069{vertical-align:-18.560000pt;}
.v8_c00069{vertical-align:-14.400000pt;}
.v3_c00069{vertical-align:-13.120000pt;}
.vb_c00069{vertical-align:-10.860160pt;}
.v10_c00069{vertical-align:-9.280000pt;}
.v0_c00069{vertical-align:0.000000pt;}
.v2_c00069{vertical-align:2.560000pt;}
.v11_c00069{vertical-align:9.280000pt;}
.v5_c00069{vertical-align:12.160000pt;}
.v4_c00069{vertical-align:13.120000pt;}
.v7_c00069{vertical-align:14.400000pt;}
.vc_c00069{vertical-align:21.450240pt;}
.vd_c00069{vertical-align:24.000000pt;}
.ve_c00069{vertical-align:32.310400pt;}
.va_c00069{vertical-align:37.440000pt;}
.v12_c00069{vertical-align:41.600000pt;}
.vf_c00069{vertical-align:69.750400pt;}
.ls1f_c00069{letter-spacing:-0.128000pt;}
.ls1d_c00069{letter-spacing:-0.064000pt;}
.ls21_c00069{letter-spacing:-0.053440pt;}
.ls20_c00069{letter-spacing:-0.045440pt;}
.ls1c_c00069{letter-spacing:0.000000pt;}
.ls10_c00069{letter-spacing:0.059520pt;}
.ls12_c00069{letter-spacing:0.064000pt;}
.lsd_c00069{letter-spacing:0.104320pt;}
.ls1b_c00069{letter-spacing:0.106880pt;}
.ls11_c00069{letter-spacing:0.128000pt;}
.ls1e_c00069{letter-spacing:0.170240pt;}
.lsf_c00069{letter-spacing:1.600000pt;}
.ls13_c00069{letter-spacing:1.606400pt;}
.ls1a_c00069{letter-spacing:1.723200pt;}
.lse_c00069{letter-spacing:1.856000pt;}
.ls16_c00069{letter-spacing:1.920000pt;}
.ls19_c00069{letter-spacing:2.043200pt;}
.ls1_c00069{letter-spacing:2.490240pt;}
.ls14_c00069{letter-spacing:3.840000pt;}
.ls8_c00069{letter-spacing:4.210560pt;}
.lsc_c00069{letter-spacing:4.225920pt;}
.lsb_c00069{letter-spacing:4.544000pt;}
.ls3_c00069{letter-spacing:5.120000pt;}
.ls6_c00069{letter-spacing:5.184000pt;}
.ls5_c00069{letter-spacing:14.272000pt;}
.ls17_c00069{letter-spacing:17.792000pt;}
.ls7_c00069{letter-spacing:18.610560pt;}
.ls18_c00069{letter-spacing:19.008000pt;}
.lsa_c00069{letter-spacing:19.200000pt;}
.ls2_c00069{letter-spacing:19.776000pt;}
.ls4_c00069{letter-spacing:21.810560pt;}
.ls15_c00069{letter-spacing:27.328000pt;}
.ls9_c00069{letter-spacing:212.800000pt;}
.ls0_c00069{letter-spacing:284.016000pt;}
.ws1_c00069{word-spacing:-64.000000pt;}
.ws7_c00069{word-spacing:-63.872000pt;}
.ws3_c00069{word-spacing:-45.440000pt;}
.ws8_c00069{word-spacing:-45.394560pt;}
.ws5_c00069{word-spacing:-16.128000pt;}
.ws2_c00069{word-spacing:-16.064000pt;}
.ws4_c00069{word-spacing:-15.936000pt;}
.ws0_c00069{word-spacing:-14.080000pt;}
.ws6_c00069{word-spacing:-10.810240pt;}
.ws9_c00069{word-spacing:-8.640000pt;}
.ws20_c00069{word-spacing:-0.320640pt;}
.ws11_c00069{word-spacing:-0.320000pt;}
.wsb_c00069{word-spacing:-0.144000pt;}
.ws12_c00069{word-spacing:-0.128000pt;}
.wsd_c00069{word-spacing:-0.064000pt;}
.wsa_c00069{word-spacing:0.000000pt;}
.ws1f_c00069{word-spacing:0.160320pt;}
.ws14_c00069{word-spacing:1.216000pt;}
.ws15_c00069{word-spacing:1.280000pt;}
.ws1b_c00069{word-spacing:1.536000pt;}
.ws13_c00069{word-spacing:1.600000pt;}
.ws18_c00069{word-spacing:2.816000pt;}
.ws17_c00069{word-spacing:2.880000pt;}
.ws1c_c00069{word-spacing:3.776000pt;}
.ws1d_c00069{word-spacing:3.840000pt;}
.wse_c00069{word-spacing:5.120000pt;}
.ws10_c00069{word-spacing:5.696000pt;}
.wsf_c00069{word-spacing:5.760000pt;}
.wsc_c00069{word-spacing:6.336000pt;}
.ws1e_c00069{word-spacing:10.496000pt;}
.ws16_c00069{word-spacing:14.656000pt;}
.ws1a_c00069{word-spacing:30.016000pt;}
.ws19_c00069{word-spacing:30.336000pt;}
._4_c00069{margin-left:-30.016000pt;}
._7_c00069{margin-left:-27.392000pt;}
._8_c00069{margin-left:-22.464000pt;}
._c_c00069{margin-left:-10.432000pt;}
._5_c00069{margin-left:-7.104000pt;}
._2_c00069{margin-left:-3.712000pt;}
._b_c00069{margin-left:-2.048000pt;}
._0_c00069{margin-left:-1.030400pt;}
._e_c00069{width:1.317760pt;}
._9_c00069{width:2.432000pt;}
._1_c00069{width:4.800000pt;}
._a_c00069{width:5.952000pt;}
._6_c00069{width:8.832000pt;}
._d_c00069{width:16.710400pt;}
._3_c00069{width:17.856000pt;}
._10_c00069{width:19.904000pt;}
._f_c00069{width:54.720000pt;}
.fs5_c00069{font-size:34.560000pt;}
.fs4_c00069{font-size:37.440000pt;}
.fs3_c00069{font-size:42.560000pt;}
.fs2_c00069{font-size:45.440000pt;}
.fs0_c00069{font-size:48.000000pt;}
.fs6_c00069{font-size:53.440000pt;}
.fs1_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y2c_c00069{bottom:50.880000pt;}
.y2b_c00069{bottom:102.240000pt;}
.y2d_c00069{bottom:113.520000pt;}
.y2a_c00069{bottom:148.000000pt;}
.y29_c00069{bottom:148.002400pt;}
.y28_c00069{bottom:156.080000pt;}
.y27_c00069{bottom:187.920000pt;}
.y26_c00069{bottom:215.680000pt;}
.y25_c00069{bottom:243.680000pt;}
.y24_c00069{bottom:271.280000pt;}
.y23_c00069{bottom:299.040000pt;}
.y22_c00069{bottom:326.960000pt;}
.y21_c00069{bottom:354.560000pt;}
.y20_c00069{bottom:372.960000pt;}
.y1f_c00069{bottom:400.560000pt;}
.y1e_c00069{bottom:428.160000pt;}
.y1d_c00069{bottom:455.760000pt;}
.y1c_c00069{bottom:483.360000pt;}
.y1b_c00069{bottom:510.960000pt;}
.y1a_c00069{bottom:538.560000pt;}
.y19_c00069{bottom:566.160000pt;}
.y18_c00069{bottom:593.760000pt;}
.y17_c00069{bottom:621.360000pt;}
.y16_c00069{bottom:648.960000pt;}
.y15_c00069{bottom:676.560000pt;}
.y13_c00069{bottom:704.310907pt;}
.y14_c00069{bottom:707.025947pt;}
.y11_c00069{bottom:712.400000pt;}
.y12_c00069{bottom:724.474907pt;}
.y10_c00069{bottom:738.080000pt;}
.yf_c00069{bottom:756.400000pt;}
.ye_c00069{bottom:775.200000pt;}
.yc_c00069{bottom:802.962400pt;}
.yd_c00069{bottom:805.677440pt;}
.yb_c00069{bottom:823.115040pt;}
.ya_c00069{bottom:845.920000pt;}
.y9_c00069{bottom:873.600000pt;}
.y8_c00069{bottom:901.600000pt;}
.y7_c00069{bottom:929.360000pt;}
.y6_c00069{bottom:957.440000pt;}
.y5_c00069{bottom:986.960000pt;}
.y4_c00069{bottom:1005.360000pt;}
.y3_c00069{bottom:1023.036000pt;}
.y2_c00069{bottom:1036.800000pt;}
.y1_c00069{bottom:1064.400000pt;}
.hd_c00069{height:33.918750pt;}
.h2_c00069{height:47.109375pt;}
.h3_c00069{height:62.812500pt;}
.h8_c00069{height:65.770312pt;}
.h9_c00069{height:66.750000pt;}
.h6_c00069{height:90.591562pt;}
.hc_c00069{height:95.132500pt;}
.h5_c00069{height:127.593750pt;}
.h7_c00069{height:128.031029pt;}
.ha_c00069{height:128.031563pt;}
.h4_c00069{height:141.993750pt;}
.hb_c00069{height:160.341962pt;}
.h0_c00069{height:1122.560000pt;}
.h1_c00069{height:1122.666667pt;}
.w0_c00069{width:793.840000pt;}
.w1_c00069{width:794.000000pt;}
.x0_c00069{left:0.000000pt;}
.x2_c00069{left:113.440000pt;}
.x8_c00069{left:297.920000pt;}
.x6_c00069{left:346.160000pt;}
.x4_c00069{left:377.189280pt;}
.x3_c00069{left:379.915680pt;}
.x9_c00069{left:382.638560pt;}
.x7_c00069{left:389.355680pt;}
.x5_c00069{left:395.672000pt;}
.x1_c00069{left:396.960000pt;}
.xa_c00069{left:421.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_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_a9c316074d436a219908c044.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.284180;font-style:normal;font-weight:normal;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_1abecb57fbf3b36bdf268177.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_2b0c8eea3685597d0ee20c45.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_8d7917d7b1a07a363537c192.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;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:ff6_c00070;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00070{font-family:ff6_c00070;line-height:1.432129;font-style:normal;font-weight: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_c00070;src:url('chunks/assets/font_73224d6e7917a0055b1f7718.woff2')format("woff");}.ff7_c00070{font-family:ff7_c00070;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v9_c00070{vertical-align:-144.360000px;}
.vd_c00070{vertical-align:-102.240000px;}
.v4_c00070{vertical-align:-10.440000px;}
.v2_c00070{vertical-align:-2.880000px;}
.v0_c00070{vertical-align:0.000000px;}
.v1_c00070{vertical-align:2.880000px;}
.v5_c00070{vertical-align:10.440000px;}
.v8_c00070{vertical-align:36.349200px;}
.v3_c00070{vertical-align:42.120000px;}
.v6_c00070{vertical-align:46.800000px;}
.vb_c00070{vertical-align:70.189920px;}
.ve_c00070{vertical-align:78.469200px;}
.v7_c00070{vertical-align:88.920000px;}
.vc_c00070{vertical-align:112.309920px;}
.va_c00070{vertical-align:128.869200px;}
.ls27_c00070{letter-spacing:-0.576000px;}
.ls29_c00070{letter-spacing:-0.288000px;}
.ls2c_c00070{letter-spacing:-0.180360px;}
.ls26_c00070{letter-spacing:-0.144000px;}
.ls2b_c00070{letter-spacing:-0.120240px;}
.ls24_c00070{letter-spacing:-0.108000px;}
.ls25_c00070{letter-spacing:-0.072000px;}
.ls2d_c00070{letter-spacing:-0.060120px;}
.ls23_c00070{letter-spacing:0.000000px;}
.ls2_c00070{letter-spacing:0.072000px;}
.ls28_c00070{letter-spacing:0.102240px;}
.ls22_c00070{letter-spacing:0.120240px;}
.ls18_c00070{letter-spacing:0.126360px;}
.ls20_c00070{letter-spacing:0.140040px;}
.ls1e_c00070{letter-spacing:0.144000px;}
.ls21_c00070{letter-spacing:0.153360px;}
.ls2a_c00070{letter-spacing:0.180360px;}
.ls14_c00070{letter-spacing:0.664560px;}
.ls15_c00070{letter-spacing:1.175760px;}
.ls9_c00070{letter-spacing:1.512000px;}
.ls19_c00070{letter-spacing:1.558440px;}
.ls10_c00070{letter-spacing:1.584000px;}
.ls1_c00070{letter-spacing:1.800000px;}
.ls17_c00070{letter-spacing:1.937520px;}
.ls5_c00070{letter-spacing:1.938600px;}
.ls0_c00070{letter-spacing:1.944000px;}
.ls4_c00070{letter-spacing:2.298600px;}
.lse_c00070{letter-spacing:2.520000px;}
.ls1d_c00070{letter-spacing:2.618640px;}
.ls1f_c00070{letter-spacing:2.880000px;}
.ls11_c00070{letter-spacing:3.240000px;}
.ls1c_c00070{letter-spacing:6.258600px;}
.ls1b_c00070{letter-spacing:13.818600px;}
.lsd_c00070{letter-spacing:16.056000px;}
.lsc_c00070{letter-spacing:18.000000px;}
.ls8_c00070{letter-spacing:20.016000px;}
.ls7_c00070{letter-spacing:20.088000px;}
.ls16_c00070{letter-spacing:20.217120px;}
.ls3_c00070{letter-spacing:21.384000px;}
.ls6_c00070{letter-spacing:21.738600px;}
.lsb_c00070{letter-spacing:21.744000px;}
.lsf_c00070{letter-spacing:21.888000px;}
.ls13_c00070{letter-spacing:22.680000px;}
.ls12_c00070{letter-spacing:30.744000px;}
.ls1a_c00070{letter-spacing:73.991160px;}
.lsa_c00070{letter-spacing:838.800000px;}
.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;}
}
.ws7_c00070{word-spacing:-71.928000px;}
.ws4_c00070{word-spacing:-71.856000px;}
.ws6_c00070{word-spacing:-51.222240px;}
.ws2_c00070{word-spacing:-51.120000px;}
.wsb_c00070{word-spacing:-42.120000px;}
.ws1_c00070{word-spacing:-18.144000px;}
.ws9_c00070{word-spacing:-18.072000px;}
.wsd_c00070{word-spacing:-18.000000px;}
.ws3_c00070{word-spacing:-17.928000px;}
.ws8_c00070{word-spacing:-17.856000px;}
.ws5_c00070{word-spacing:-17.424000px;}
.ws0_c00070{word-spacing:-15.840000px;}
.ws12_c00070{word-spacing:-15.210360px;}
.wsf_c00070{word-spacing:-15.030000px;}
.ws11_c00070{word-spacing:-14.969880px;}
.wse_c00070{word-spacing:-14.909760px;}
.ws10_c00070{word-spacing:-14.849640px;}
.wsa_c00070{word-spacing:-11.246400px;}
.ws28_c00070{word-spacing:-0.432000px;}
.ws29_c00070{word-spacing:-0.144000px;}
.ws16_c00070{word-spacing:-0.072000px;}
.ws2a_c00070{word-spacing:-0.060120px;}
.ws13_c00070{word-spacing:0.000000px;}
.ws2c_c00070{word-spacing:0.120240px;}
.ws15_c00070{word-spacing:0.162000px;}
.ws2b_c00070{word-spacing:0.240480px;}
.ws14_c00070{word-spacing:0.270000px;}
.ws27_c00070{word-spacing:0.288000px;}
.ws1f_c00070{word-spacing:0.576000px;}
.ws1b_c00070{word-spacing:1.368000px;}
.ws1c_c00070{word-spacing:1.728000px;}
.ws1a_c00070{word-spacing:1.800000px;}
.ws21_c00070{word-spacing:2.160000px;}
.ws25_c00070{word-spacing:3.168000px;}
.ws24_c00070{word-spacing:3.240000px;}
.ws20_c00070{word-spacing:3.528000px;}
.wsc_c00070{word-spacing:3.888000px;}
.ws18_c00070{word-spacing:7.560000px;}
.ws17_c00070{word-spacing:7.848000px;}
.ws19_c00070{word-spacing:7.920000px;}
.ws23_c00070{word-spacing:9.216000px;}
.ws22_c00070{word-spacing:9.288000px;}
.ws26_c00070{word-spacing:14.040000px;}
.ws1e_c00070{word-spacing:15.768000px;}
.ws1d_c00070{word-spacing:15.840000px;}
._6_c00070{margin-left:-8.550000px;}
._7_c00070{margin-left:-2.770560px;}
._1_c00070{margin-left:-1.058400px;}
._0_c00070{width:1.220400px;}
._3_c00070{width:2.455200px;}
._2_c00070{width:8.524800px;}
._4_c00070{width:9.936000px;}
._8_c00070{width:12.435840px;}
._9_c00070{width:14.976000px;}
._a_c00070{width:17.352000px;}
._5_c00070{width:18.720000px;}
._b_c00070{width:20.870880px;}
._c_c00070{width:257.904000px;}
.fc0_c00070{color:rgb(0,0,0);}
.fs3_c00070{font-size:42.120000px;}
.fs2_c00070{font-size:51.120000px;}
.fs0_c00070{font-size:54.000000px;}
.fs4_c00070{font-size:60.120000px;}
.fs1_c00070{font-size:72.000000px;}
.y0_c00070{bottom:0.000000px;}
.y30_c00070{bottom:4.050000px;}
.y2c_c00070{bottom:4.140000px;}
.y2a_c00070{bottom:5.670000px;}
.y31_c00070{bottom:7.290000px;}
.y2d_c00070{bottom:7.380000px;}
.y33_c00070{bottom:57.240000px;}
.y32_c00070{bottom:112.590000px;}
.y2f_c00070{bottom:128.610000px;}
.y2e_c00070{bottom:151.200000px;}
.y2b_c00070{bottom:173.790000px;}
.y29_c00070{bottom:197.190000px;}
.y28_c00070{bottom:223.020000px;}
.y27_c00070{bottom:254.250000px;}
.y26_c00070{bottom:281.522700px;}
.y25_c00070{bottom:326.700000px;}
.y23_c00070{bottom:356.312520px;}
.y24_c00070{bottom:364.770000px;}
.y20_c00070{bottom:364.772700px;}
.y22_c00070{bottom:370.170000px;}
.y1f_c00070{bottom:373.860000px;}
.y21_c00070{bottom:383.132520px;}
.y1e_c00070{bottom:421.020000px;}
.y1d_c00070{bottom:452.070000px;}
.y1c_c00070{bottom:484.020000px;}
.y1b_c00070{bottom:514.890000px;}
.y1a_c00070{bottom:546.390000px;}
.y19_c00070{bottom:577.440000px;}
.y18_c00070{bottom:608.490000px;}
.y17_c00070{bottom:639.540000px;}
.y16_c00070{bottom:670.590000px;}
.y15_c00070{bottom:701.640000px;}
.y14_c00070{bottom:732.690000px;}
.y13_c00070{bottom:759.962700px;}
.y12_c00070{bottom:779.580000px;}
.y11_c00070{bottom:805.320000px;}
.y10_c00070{bottom:833.042700px;}
.yf_c00070{bottom:878.220000px;}
.ye_c00070{bottom:909.270000px;}
.yd_c00070{bottom:940.320000px;}
.yb_c00070{bottom:970.650000px;}
.yc_c00070{bottom:970.652700px;}
.ya_c00070{bottom:979.740000px;}
.y9_c00070{bottom:1016.910000px;}
.y8_c00070{bottom:1047.780000px;}
.y7_c00070{bottom:1079.280000px;}
.y6_c00070{bottom:1110.330000px;}
.y5_c00070{bottom:1131.030000px;}
.y4_c00070{bottom:1150.920000px;}
.y3_c00070{bottom:1166.404500px;}
.y2_c00070{bottom:1181.970000px;}
.y1_c00070{bottom:1197.450000px;}
.h13_c00070{height:19.620000px;}
.h17_c00070{height:21.060000px;}
.h15_c00070{height:21.150000px;}
.h3_c00070{height:52.971680px;}
.h2_c00070{height:52.998047px;}
.h16_c00070{height:59.004492px;}
.h14_c00070{height:60.589687px;}
.h4_c00070{height:70.664062px;}
.h12_c00070{height:72.562500px;}
.hc_c00070{height:75.093750px;}
.he_c00070{height:83.972637px;}
.ha_c00070{height:101.915508px;}
.h9_c00070{height:107.013262px;}
.h10_c00070{height:107.024062px;}
.h6_c00070{height:140.662969px;}
.h5_c00070{height:143.542969px;}
.h7_c00070{height:144.035508px;}
.hb_c00070{height:179.892169px;}
.h11_c00070{height:180.384708px;}
.h8_c00070{height:180.395508px;}
.hd_c00070{height:212.841837px;}
.hf_c00070{height:214.225428px;}
.h0_c00070{height:1262.880000px;}
.h1_c00070{height:1263.000000px;}
.w2_c00070{width:184.590000px;}
.w3_c00070{width:193.590000px;}
.w0_c00070{width:893.070000px;}
.w1_c00070{width:893.250000px;}
.x0_c00070{left:0.000000px;}
.x14_c00070{left:26.820000px;}
.x16_c00070{left:32.850000px;}
.x17_c00070{left:53.460000px;}
.x18_c00070{left:66.240000px;}
.x19_c00070{left:70.380000px;}
.x3_c00070{left:127.620000px;}
.x12_c00070{left:248.220000px;}
.x13_c00070{left:268.380000px;}
.xa_c00070{left:283.590000px;}
.xb_c00070{left:322.905270px;}
.x4_c00070{left:360.990000px;}
.x9_c00070{left:377.190000px;}
.x7_c00070{left:390.330000px;}
.x5_c00070{left:403.830000px;}
.x2_c00070{left:425.160000px;}
.x10_c00070{left:429.392100px;}
.x8_c00070{left:437.132100px;}
.xd_c00070{left:441.540000px;}
.x1_c00070{left:446.580000px;}
.x11_c00070{left:449.997840px;}
.xc_c00070{left:453.328020px;}
.x15_c00070{left:455.220000px;}
.x6_c00070{left:470.072160px;}
.xe_c00070{left:508.320000px;}
.xf_c00070{left:551.340000px;}
.x1a_c00070{left:747.540000px;}
@media print{
.v9_c00070{vertical-align:-128.320000pt;}
.vd_c00070{vertical-align:-90.880000pt;}
.v4_c00070{vertical-align:-9.280000pt;}
.v2_c00070{vertical-align:-2.560000pt;}
.v0_c00070{vertical-align:0.000000pt;}
.v1_c00070{vertical-align:2.560000pt;}
.v5_c00070{vertical-align:9.280000pt;}
.v8_c00070{vertical-align:32.310400pt;}
.v3_c00070{vertical-align:37.440000pt;}
.v6_c00070{vertical-align:41.600000pt;}
.vb_c00070{vertical-align:62.391040pt;}
.ve_c00070{vertical-align:69.750400pt;}
.v7_c00070{vertical-align:79.040000pt;}
.vc_c00070{vertical-align:99.831040pt;}
.va_c00070{vertical-align:114.550400pt;}
.ls27_c00070{letter-spacing:-0.512000pt;}
.ls29_c00070{letter-spacing:-0.256000pt;}
.ls2c_c00070{letter-spacing:-0.160320pt;}
.ls26_c00070{letter-spacing:-0.128000pt;}
.ls2b_c00070{letter-spacing:-0.106880pt;}
.ls24_c00070{letter-spacing:-0.096000pt;}
.ls25_c00070{letter-spacing:-0.064000pt;}
.ls2d_c00070{letter-spacing:-0.053440pt;}
.ls23_c00070{letter-spacing:0.000000pt;}
.ls2_c00070{letter-spacing:0.064000pt;}
.ls28_c00070{letter-spacing:0.090880pt;}
.ls22_c00070{letter-spacing:0.106880pt;}
.ls18_c00070{letter-spacing:0.112320pt;}
.ls20_c00070{letter-spacing:0.124480pt;}
.ls1e_c00070{letter-spacing:0.128000pt;}
.ls21_c00070{letter-spacing:0.136320pt;}
.ls2a_c00070{letter-spacing:0.160320pt;}
.ls14_c00070{letter-spacing:0.590720pt;}
.ls15_c00070{letter-spacing:1.045120pt;}
.ls9_c00070{letter-spacing:1.344000pt;}
.ls19_c00070{letter-spacing:1.385280pt;}
.ls10_c00070{letter-spacing:1.408000pt;}
.ls1_c00070{letter-spacing:1.600000pt;}
.ls17_c00070{letter-spacing:1.722240pt;}
.ls5_c00070{letter-spacing:1.723200pt;}
.ls0_c00070{letter-spacing:1.728000pt;}
.ls4_c00070{letter-spacing:2.043200pt;}
.lse_c00070{letter-spacing:2.240000pt;}
.ls1d_c00070{letter-spacing:2.327680pt;}
.ls1f_c00070{letter-spacing:2.560000pt;}
.ls11_c00070{letter-spacing:2.880000pt;}
.ls1c_c00070{letter-spacing:5.563200pt;}
.ls1b_c00070{letter-spacing:12.283200pt;}
.lsd_c00070{letter-spacing:14.272000pt;}
.lsc_c00070{letter-spacing:16.000000pt;}
.ls8_c00070{letter-spacing:17.792000pt;}
.ls7_c00070{letter-spacing:17.856000pt;}
.ls16_c00070{letter-spacing:17.970773pt;}
.ls3_c00070{letter-spacing:19.008000pt;}
.ls6_c00070{letter-spacing:19.323200pt;}
.lsb_c00070{letter-spacing:19.328000pt;}
.lsf_c00070{letter-spacing:19.456000pt;}
.ls13_c00070{letter-spacing:20.160000pt;}
.ls12_c00070{letter-spacing:27.328000pt;}
.ls1a_c00070{letter-spacing:65.769920pt;}
.lsa_c00070{letter-spacing:745.600000pt;}
.ws7_c00070{word-spacing:-63.936000pt;}
.ws4_c00070{word-spacing:-63.872000pt;}
.ws6_c00070{word-spacing:-45.530880pt;}
.ws2_c00070{word-spacing:-45.440000pt;}
.wsb_c00070{word-spacing:-37.440000pt;}
.ws1_c00070{word-spacing:-16.128000pt;}
.ws9_c00070{word-spacing:-16.064000pt;}
.wsd_c00070{word-spacing:-16.000000pt;}
.ws3_c00070{word-spacing:-15.936000pt;}
.ws8_c00070{word-spacing:-15.872000pt;}
.ws5_c00070{word-spacing:-15.488000pt;}
.ws0_c00070{word-spacing:-14.080000pt;}
.ws12_c00070{word-spacing:-13.520320pt;}
.wsf_c00070{word-spacing:-13.360000pt;}
.ws11_c00070{word-spacing:-13.306560pt;}
.wse_c00070{word-spacing:-13.253120pt;}
.ws10_c00070{word-spacing:-13.199680pt;}
.wsa_c00070{word-spacing:-9.996800pt;}
.ws28_c00070{word-spacing:-0.384000pt;}
.ws29_c00070{word-spacing:-0.128000pt;}
.ws16_c00070{word-spacing:-0.064000pt;}
.ws2a_c00070{word-spacing:-0.053440pt;}
.ws13_c00070{word-spacing:0.000000pt;}
.ws2c_c00070{word-spacing:0.106880pt;}
.ws15_c00070{word-spacing:0.144000pt;}
.ws2b_c00070{word-spacing:0.213760pt;}
.ws14_c00070{word-spacing:0.240000pt;}
.ws27_c00070{word-spacing:0.256000pt;}
.ws1f_c00070{word-spacing:0.512000pt;}
.ws1b_c00070{word-spacing:1.216000pt;}
.ws1c_c00070{word-spacing:1.536000pt;}
.ws1a_c00070{word-spacing:1.600000pt;}
.ws21_c00070{word-spacing:1.920000pt;}
.ws25_c00070{word-spacing:2.816000pt;}
.ws24_c00070{word-spacing:2.880000pt;}
.ws20_c00070{word-spacing:3.136000pt;}
.wsc_c00070{word-spacing:3.456000pt;}
.ws18_c00070{word-spacing:6.720000pt;}
.ws17_c00070{word-spacing:6.976000pt;}
.ws19_c00070{word-spacing:7.040000pt;}
.ws23_c00070{word-spacing:8.192000pt;}
.ws22_c00070{word-spacing:8.256000pt;}
.ws26_c00070{word-spacing:12.480000pt;}
.ws1e_c00070{word-spacing:14.016000pt;}
.ws1d_c00070{word-spacing:14.080000pt;}
._6_c00070{margin-left:-7.600000pt;}
._7_c00070{margin-left:-2.462720pt;}
._1_c00070{margin-left:-0.940800pt;}
._0_c00070{width:1.084800pt;}
._3_c00070{width:2.182400pt;}
._2_c00070{width:7.577600pt;}
._4_c00070{width:8.832000pt;}
._8_c00070{width:11.054080pt;}
._9_c00070{width:13.312000pt;}
._a_c00070{width:15.424000pt;}
._5_c00070{width:16.640000pt;}
._b_c00070{width:18.551893pt;}
._c_c00070{width:229.248000pt;}
.fs3_c00070{font-size:37.440000pt;}
.fs2_c00070{font-size:45.440000pt;}
.fs0_c00070{font-size:48.000000pt;}
.fs4_c00070{font-size:53.440000pt;}
.fs1_c00070{font-size:64.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y30_c00070{bottom:3.600000pt;}
.y2c_c00070{bottom:3.680000pt;}
.y2a_c00070{bottom:5.040000pt;}
.y31_c00070{bottom:6.480000pt;}
.y2d_c00070{bottom:6.560000pt;}
.y33_c00070{bottom:50.880000pt;}
.y32_c00070{bottom:100.080000pt;}
.y2f_c00070{bottom:114.320000pt;}
.y2e_c00070{bottom:134.400000pt;}
.y2b_c00070{bottom:154.480000pt;}
.y29_c00070{bottom:175.280000pt;}
.y28_c00070{bottom:198.240000pt;}
.y27_c00070{bottom:226.000000pt;}
.y26_c00070{bottom:250.242400pt;}
.y25_c00070{bottom:290.400000pt;}
.y23_c00070{bottom:316.722240pt;}
.y24_c00070{bottom:324.240000pt;}
.y20_c00070{bottom:324.242400pt;}
.y22_c00070{bottom:329.040000pt;}
.y1f_c00070{bottom:332.320000pt;}
.y21_c00070{bottom:340.562240pt;}
.y1e_c00070{bottom:374.240000pt;}
.y1d_c00070{bottom:401.840000pt;}
.y1c_c00070{bottom:430.240000pt;}
.y1b_c00070{bottom:457.680000pt;}
.y1a_c00070{bottom:485.680000pt;}
.y19_c00070{bottom:513.280000pt;}
.y18_c00070{bottom:540.880000pt;}
.y17_c00070{bottom:568.480000pt;}
.y16_c00070{bottom:596.080000pt;}
.y15_c00070{bottom:623.680000pt;}
.y14_c00070{bottom:651.280000pt;}
.y13_c00070{bottom:675.522400pt;}
.y12_c00070{bottom:692.960000pt;}
.y11_c00070{bottom:715.840000pt;}
.y10_c00070{bottom:740.482400pt;}
.yf_c00070{bottom:780.640000pt;}
.ye_c00070{bottom:808.240000pt;}
.yd_c00070{bottom:835.840000pt;}
.yb_c00070{bottom:862.800000pt;}
.yc_c00070{bottom:862.802400pt;}
.ya_c00070{bottom:870.880000pt;}
.y9_c00070{bottom:903.920000pt;}
.y8_c00070{bottom:931.360000pt;}
.y7_c00070{bottom:959.360000pt;}
.y6_c00070{bottom:986.960000pt;}
.y5_c00070{bottom:1005.360000pt;}
.y4_c00070{bottom:1023.040000pt;}
.y3_c00070{bottom:1036.804000pt;}
.y2_c00070{bottom:1050.640000pt;}
.y1_c00070{bottom:1064.400000pt;}
.h13_c00070{height:17.440000pt;}
.h17_c00070{height:18.720000pt;}
.h15_c00070{height:18.800000pt;}
.h3_c00070{height:47.085938pt;}
.h2_c00070{height:47.109375pt;}
.h16_c00070{height:52.448437pt;}
.h14_c00070{height:53.857500pt;}
.h4_c00070{height:62.812500pt;}
.h12_c00070{height:64.500000pt;}
.hc_c00070{height:66.750000pt;}
.he_c00070{height:74.642344pt;}
.ha_c00070{height:90.591562pt;}
.h9_c00070{height:95.122900pt;}
.h10_c00070{height:95.132500pt;}
.h6_c00070{height:125.033750pt;}
.h5_c00070{height:127.593750pt;}
.h7_c00070{height:128.031563pt;}
.hb_c00070{height:159.904150pt;}
.h11_c00070{height:160.341962pt;}
.h8_c00070{height:160.351562pt;}
.hd_c00070{height:189.192744pt;}
.hf_c00070{height:190.422602pt;}
.h0_c00070{height:1122.560000pt;}
.h1_c00070{height:1122.666667pt;}
.w2_c00070{width:164.080000pt;}
.w3_c00070{width:172.080000pt;}
.w0_c00070{width:793.840000pt;}
.w1_c00070{width:794.000000pt;}
.x0_c00070{left:0.000000pt;}
.x14_c00070{left:23.840000pt;}
.x16_c00070{left:29.200000pt;}
.x17_c00070{left:47.520000pt;}
.x18_c00070{left:58.880000pt;}
.x19_c00070{left:62.560000pt;}
.x3_c00070{left:113.440000pt;}
.x12_c00070{left:220.640000pt;}
.x13_c00070{left:238.560000pt;}
.xa_c00070{left:252.080000pt;}
.xb_c00070{left:287.026907pt;}
.x4_c00070{left:320.880000pt;}
.x9_c00070{left:335.280000pt;}
.x7_c00070{left:346.960000pt;}
.x5_c00070{left:358.960000pt;}
.x2_c00070{left:377.920000pt;}
.x10_c00070{left:381.681867pt;}
.x8_c00070{left:388.561867pt;}
.xd_c00070{left:392.480000pt;}
.x1_c00070{left:396.960000pt;}
.x11_c00070{left:399.998080pt;}
.xc_c00070{left:402.958240pt;}
.x15_c00070{left:404.640000pt;}
.x6_c00070{left:417.841920pt;}
.xe_c00070{left:451.840000pt;}
.xf_c00070{left:490.080000pt;}
.x1a_c00070{left:664.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_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_1ad5a192480a85bd5b916c2b.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_330e0277e197349fa473643f.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;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_c00071;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00071;src:url('chunks/assets/font_4b31792169362ce40839a774.woff2')format("woff");}.ff5_c00071{font-family:ff5_c00071;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00071;src:url('chunks/assets/font_b7796f86197061631851766c.woff2')format("woff");}.ff6_c00071{font-family:ff6_c00071;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00071{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v13_c00071{vertical-align:-144.360000px;}
.vc_c00071{vertical-align:-142.920000px;}
.v14_c00071{vertical-align:-102.240000px;}
.v1_c00071{vertical-align:-61.938000px;}
.v11_c00071{vertical-align:-27.720000px;}
.vf_c00071{vertical-align:-23.040000px;}
.v9_c00071{vertical-align:-18.723600px;}
.vd_c00071{vertical-align:-14.760000px;}
.v12_c00071{vertical-align:-12.240000px;}
.v7_c00071{vertical-align:-10.800000px;}
.v2_c00071{vertical-align:-2.880000px;}
.v0_c00071{vertical-align:0.000000px;}
.v3_c00071{vertical-align:2.880000px;}
.v8_c00071{vertical-align:7.923600px;}
.ve_c00071{vertical-align:14.760000px;}
.v5_c00071{vertical-align:16.200000px;}
.v6_c00071{vertical-align:25.920000px;}
.vb_c00071{vertical-align:28.425600px;}
.v4_c00071{vertical-align:36.349200px;}
.v19_c00071{vertical-align:42.120000px;}
.va_c00071{vertical-align:47.160000px;}
.v1a_c00071{vertical-align:56.896560px;}
.v10_c00071{vertical-align:61.548480px;}
.v17_c00071{vertical-align:71.629800px;}
.v15_c00071{vertical-align:78.469200px;}
.v16_c00071{vertical-align:97.560000px;}
.v18_c00071{vertical-align:113.749800px;}
.ls2d_c00071{letter-spacing:-0.072000px;}
.ls2a_c00071{letter-spacing:0.000000px;}
.lse_c00071{letter-spacing:0.072000px;}
.ls22_c00071{letter-spacing:0.102240px;}
.lsa_c00071{letter-spacing:0.109440px;}
.ls2e_c00071{letter-spacing:0.126360px;}
.ls2b_c00071{letter-spacing:0.144000px;}
.ls15_c00071{letter-spacing:0.155520px;}
.ls2c_c00071{letter-spacing:0.432000px;}
.ls29_c00071{letter-spacing:1.201680px;}
.ls7_c00071{letter-spacing:1.584000px;}
.ls3_c00071{letter-spacing:1.800000px;}
.ls2_c00071{letter-spacing:1.944000px;}
.ls17_c00071{letter-spacing:2.088000px;}
.ls21_c00071{letter-spacing:2.618640px;}
.ls27_c00071{letter-spacing:2.880000px;}
.lsb_c00071{letter-spacing:3.003840px;}
.ls12_c00071{letter-spacing:3.161520px;}
.lsc_c00071{letter-spacing:3.645000px;}
.ls14_c00071{letter-spacing:3.888000px;}
.lsd_c00071{letter-spacing:4.663440px;}
.ls1f_c00071{letter-spacing:4.680000px;}
.ls16_c00071{letter-spacing:4.725000px;}
.ls18_c00071{letter-spacing:4.736880px;}
.ls13_c00071{letter-spacing:5.085000px;}
.ls19_c00071{letter-spacing:8.280000px;}
.ls1d_c00071{letter-spacing:15.041520px;}
.ls1c_c00071{letter-spacing:16.056000px;}
.ls28_c00071{letter-spacing:16.460640px;}
.ls9_c00071{letter-spacing:18.072000px;}
.ls1b_c00071{letter-spacing:19.001520px;}
.ls6_c00071{letter-spacing:20.016000px;}
.ls1a_c00071{letter-spacing:20.160000px;}
.ls1e_c00071{letter-spacing:20.576880px;}
.ls23_c00071{letter-spacing:20.989440px;}
.ls5_c00071{letter-spacing:21.888000px;}
.ls8_c00071{letter-spacing:22.680000px;}
.ls26_c00071{letter-spacing:22.778640px;}
.ls24_c00071{letter-spacing:23.321520px;}
.ls1_c00071{letter-spacing:23.904000px;}
.ls11_c00071{letter-spacing:24.536880px;}
.ls4_c00071{letter-spacing:27.720000px;}
.lsf_c00071{letter-spacing:30.744000px;}
.ls25_c00071{letter-spacing:41.535240px;}
.ls10_c00071{letter-spacing:256.680000px;}
.ls20_c00071{letter-spacing:285.840000px;}
.ls0_c00071{letter-spacing:319.518000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:-72.000000px;}
.ws2_c00071{word-spacing:-51.222240px;}
.ws4_c00071{word-spacing:-51.120000px;}
.ws8_c00071{word-spacing:-42.246360px;}
.ws5_c00071{word-spacing:-18.144000px;}
.ws3_c00071{word-spacing:-17.928000px;}
.ws1_c00071{word-spacing:-15.840000px;}
.ws6_c00071{word-spacing:-3.672000px;}
.ws7_c00071{word-spacing:-3.312000px;}
.wsf_c00071{word-spacing:-0.432000px;}
.wsa_c00071{word-spacing:-0.162000px;}
.ws12_c00071{word-spacing:-0.144000px;}
.ws10_c00071{word-spacing:-0.072000px;}
.ws9_c00071{word-spacing:0.000000px;}
.wsb_c00071{word-spacing:1.728000px;}
.ws18_c00071{word-spacing:2.880000px;}
.ws1a_c00071{word-spacing:4.608000px;}
.ws19_c00071{word-spacing:4.680000px;}
.ws14_c00071{word-spacing:7.848000px;}
.ws13_c00071{word-spacing:7.920000px;}
.ws15_c00071{word-spacing:8.280000px;}
.ws11_c00071{word-spacing:10.440000px;}
.ws17_c00071{word-spacing:20.376000px;}
.ws16_c00071{word-spacing:20.520000px;}
.ws1b_c00071{word-spacing:20.808000px;}
.wsc_c00071{word-spacing:27.576000px;}
.wsd_c00071{word-spacing:27.648000px;}
.wse_c00071{word-spacing:27.720000px;}
._5_c00071{margin-left:-25.416000px;}
._6_c00071{margin-left:-23.668560px;}
._7_c00071{margin-left:-12.297600px;}
._a_c00071{margin-left:-11.093040px;}
._b_c00071{margin-left:-6.760800px;}
._8_c00071{margin-left:-5.184000px;}
._9_c00071{margin-left:-3.240000px;}
._0_c00071{margin-left:-1.087200px;}
._3_c00071{width:1.008000px;}
._1_c00071{width:2.685600px;}
._d_c00071{width:8.485920px;}
._4_c00071{width:10.224000px;}
._f_c00071{width:11.232000px;}
._c_c00071{width:12.950880px;}
._e_c00071{width:18.348480px;}
._2_c00071{width:20.870880px;}
._10_c00071{width:662.112000px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs3_c00071{font-size:42.120000px;}
.fs2_c00071{font-size:51.120000px;}
.fs0_c00071{font-size:54.000000px;}
.fs1_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y2b_c00071{bottom:57.240000px;}
.y2a_c00071{bottom:113.310000px;}
.y29_c00071{bottom:144.360000px;}
.y27_c00071{bottom:171.632700px;}
.y28_c00071{bottom:171.636840px;}
.y26_c00071{bottom:216.810000px;}
.y25_c00071{bottom:243.992700px;}
.y24_c00071{bottom:253.080000px;}
.y23_c00071{bottom:289.170000px;}
.y22_c00071{bottom:316.352550px;}
.y1f_c00071{bottom:325.172700px;}
.y21_c00071{bottom:330.210000px;}
.y20_c00071{bottom:341.102550px;}
.y1e_c00071{bottom:344.790000px;}
.y1d_c00071{bottom:375.752700px;}
.y1c_c00071{bottom:420.930000px;}
.y1b_c00071{bottom:451.980000px;}
.y1a_c00071{bottom:483.120000px;}
.y19_c00071{bottom:514.620000px;}
.y18_c00071{bottom:545.850000px;}
.y17_c00071{bottom:577.350000px;}
.y16_c00071{bottom:608.400000px;}
.y15_c00071{bottom:639.540000px;}
.y14_c00071{bottom:672.030000px;}
.y13_c00071{bottom:740.790000px;}
.y11_c00071{bottom:770.760000px;}
.y12_c00071{bottom:770.762700px;}
.y10_c00071{bottom:779.850000px;}
.yf_c00071{bottom:817.560000px;}
.ye_c00071{bottom:848.610000px;}
.yd_c00071{bottom:875.882700px;}
.yc_c00071{bottom:895.500000px;}
.yb_c00071{bottom:921.060000px;}
.ya_c00071{bottom:952.200000px;}
.y9_c00071{bottom:983.880000px;}
.y8_c00071{bottom:1015.560000px;}
.y7_c00071{bottom:1047.240000px;}
.y6_c00071{bottom:1079.550000px;}
.y5_c00071{bottom:1110.330000px;}
.y4_c00071{bottom:1131.030000px;}
.y3_c00071{bottom:1150.915500px;}
.y2_c00071{bottom:1166.400000px;}
.y1_c00071{bottom:1197.450000px;}
.h2_c00071{height:52.998047px;}
.h3_c00071{height:70.664062px;}
.h4_c00071{height:75.093750px;}
.hf_c00071{height:83.972637px;}
.h7_c00071{height:101.915508px;}
.h13_c00071{height:106.996702px;}
.hd_c00071{height:107.013263px;}
.hb_c00071{height:109.839108px;}
.h5_c00071{height:140.662969px;}
.h6_c00071{height:143.542969px;}
.h11_c00071{height:144.035508px;}
.h9_c00071{height:159.742969px;}
.h8_c00071{height:179.892169px;}
.hc_c00071{height:180.384708px;}
.h12_c00071{height:180.401268px;}
.ha_c00071{height:196.102969px;}
.he_c00071{height:203.121837px;}
.h10_c00071{height:215.665308px;}
.h0_c00071{height:1262.880000px;}
.h1_c00071{height:1263.000000px;}
.w0_c00071{width:893.070000px;}
.w1_c00071{width:893.250000px;}
.x0_c00071{left:0.000000px;}
.x2_c00071{left:127.620000px;}
.x3_c00071{left:154.620000px;}
.x4_c00071{left:181.620000px;}
.x6_c00071{left:241.290000px;}
.xb_c00071{left:315.990000px;}
.x8_c00071{left:321.300000px;}
.x10_c00071{left:369.540000px;}
.x5_c00071{left:377.190000px;}
.x12_c00071{left:387.272100px;}
.x7_c00071{left:399.777840px;}
.xd_c00071{left:423.720000px;}
.xc_c00071{left:427.771200px;}
.x9_c00071{left:429.392100px;}
.x1_c00071{left:446.580000px;}
.xa_c00071{left:449.997840px;}
.x13_c00071{left:452.336940px;}
.xe_c00071{left:468.362100px;}
.x11_c00071{left:470.427840px;}
.xf_c00071{left:488.877840px;}
@media print{
.v13_c00071{vertical-align:-128.320000pt;}
.vc_c00071{vertical-align:-127.040000pt;}
.v14_c00071{vertical-align:-90.880000pt;}
.v1_c00071{vertical-align:-55.056000pt;}
.v11_c00071{vertical-align:-24.640000pt;}
.vf_c00071{vertical-align:-20.480000pt;}
.v9_c00071{vertical-align:-16.643200pt;}
.vd_c00071{vertical-align:-13.120000pt;}
.v12_c00071{vertical-align:-10.880000pt;}
.v7_c00071{vertical-align:-9.600000pt;}
.v2_c00071{vertical-align:-2.560000pt;}
.v0_c00071{vertical-align:0.000000pt;}
.v3_c00071{vertical-align:2.560000pt;}
.v8_c00071{vertical-align:7.043200pt;}
.ve_c00071{vertical-align:13.120000pt;}
.v5_c00071{vertical-align:14.400000pt;}
.v6_c00071{vertical-align:23.040000pt;}
.vb_c00071{vertical-align:25.267200pt;}
.v4_c00071{vertical-align:32.310400pt;}
.v19_c00071{vertical-align:37.440000pt;}
.va_c00071{vertical-align:41.920000pt;}
.v1a_c00071{vertical-align:50.574720pt;}
.v10_c00071{vertical-align:54.709760pt;}
.v17_c00071{vertical-align:63.670933pt;}
.v15_c00071{vertical-align:69.750400pt;}
.v16_c00071{vertical-align:86.720000pt;}
.v18_c00071{vertical-align:101.110933pt;}
.ls2d_c00071{letter-spacing:-0.064000pt;}
.ls2a_c00071{letter-spacing:0.000000pt;}
.lse_c00071{letter-spacing:0.064000pt;}
.ls22_c00071{letter-spacing:0.090880pt;}
.lsa_c00071{letter-spacing:0.097280pt;}
.ls2e_c00071{letter-spacing:0.112320pt;}
.ls2b_c00071{letter-spacing:0.128000pt;}
.ls15_c00071{letter-spacing:0.138240pt;}
.ls2c_c00071{letter-spacing:0.384000pt;}
.ls29_c00071{letter-spacing:1.068160pt;}
.ls7_c00071{letter-spacing:1.408000pt;}
.ls3_c00071{letter-spacing:1.600000pt;}
.ls2_c00071{letter-spacing:1.728000pt;}
.ls17_c00071{letter-spacing:1.856000pt;}
.ls21_c00071{letter-spacing:2.327680pt;}
.ls27_c00071{letter-spacing:2.560000pt;}
.lsb_c00071{letter-spacing:2.670080pt;}
.ls12_c00071{letter-spacing:2.810240pt;}
.lsc_c00071{letter-spacing:3.240000pt;}
.ls14_c00071{letter-spacing:3.456000pt;}
.lsd_c00071{letter-spacing:4.145280pt;}
.ls1f_c00071{letter-spacing:4.160000pt;}
.ls16_c00071{letter-spacing:4.200000pt;}
.ls18_c00071{letter-spacing:4.210560pt;}
.ls13_c00071{letter-spacing:4.520000pt;}
.ls19_c00071{letter-spacing:7.360000pt;}
.ls1d_c00071{letter-spacing:13.370240pt;}
.ls1c_c00071{letter-spacing:14.272000pt;}
.ls28_c00071{letter-spacing:14.631680pt;}
.ls9_c00071{letter-spacing:16.064000pt;}
.ls1b_c00071{letter-spacing:16.890240pt;}
.ls6_c00071{letter-spacing:17.792000pt;}
.ls1a_c00071{letter-spacing:17.920000pt;}
.ls1e_c00071{letter-spacing:18.290560pt;}
.ls23_c00071{letter-spacing:18.657280pt;}
.ls5_c00071{letter-spacing:19.456000pt;}
.ls8_c00071{letter-spacing:20.160000pt;}
.ls26_c00071{letter-spacing:20.247680pt;}
.ls24_c00071{letter-spacing:20.730240pt;}
.ls1_c00071{letter-spacing:21.248000pt;}
.ls11_c00071{letter-spacing:21.810560pt;}
.ls4_c00071{letter-spacing:24.640000pt;}
.lsf_c00071{letter-spacing:27.328000pt;}
.ls25_c00071{letter-spacing:36.920213pt;}
.ls10_c00071{letter-spacing:228.160000pt;}
.ls20_c00071{letter-spacing:254.080000pt;}
.ls0_c00071{letter-spacing:284.016000pt;}
.ws0_c00071{word-spacing:-64.000000pt;}
.ws2_c00071{word-spacing:-45.530880pt;}
.ws4_c00071{word-spacing:-45.440000pt;}
.ws8_c00071{word-spacing:-37.552320pt;}
.ws5_c00071{word-spacing:-16.128000pt;}
.ws3_c00071{word-spacing:-15.936000pt;}
.ws1_c00071{word-spacing:-14.080000pt;}
.ws6_c00071{word-spacing:-3.264000pt;}
.ws7_c00071{word-spacing:-2.944000pt;}
.wsf_c00071{word-spacing:-0.384000pt;}
.wsa_c00071{word-spacing:-0.144000pt;}
.ws12_c00071{word-spacing:-0.128000pt;}
.ws10_c00071{word-spacing:-0.064000pt;}
.ws9_c00071{word-spacing:0.000000pt;}
.wsb_c00071{word-spacing:1.536000pt;}
.ws18_c00071{word-spacing:2.560000pt;}
.ws1a_c00071{word-spacing:4.096000pt;}
.ws19_c00071{word-spacing:4.160000pt;}
.ws14_c00071{word-spacing:6.976000pt;}
.ws13_c00071{word-spacing:7.040000pt;}
.ws15_c00071{word-spacing:7.360000pt;}
.ws11_c00071{word-spacing:9.280000pt;}
.ws17_c00071{word-spacing:18.112000pt;}
.ws16_c00071{word-spacing:18.240000pt;}
.ws1b_c00071{word-spacing:18.496000pt;}
.wsc_c00071{word-spacing:24.512000pt;}
.wsd_c00071{word-spacing:24.576000pt;}
.wse_c00071{word-spacing:24.640000pt;}
._5_c00071{margin-left:-22.592000pt;}
._6_c00071{margin-left:-21.038720pt;}
._7_c00071{margin-left:-10.931200pt;}
._a_c00071{margin-left:-9.860480pt;}
._b_c00071{margin-left:-6.009600pt;}
._8_c00071{margin-left:-4.608000pt;}
._9_c00071{margin-left:-2.880000pt;}
._0_c00071{margin-left:-0.966400pt;}
._3_c00071{width:0.896000pt;}
._1_c00071{width:2.387200pt;}
._d_c00071{width:7.543040pt;}
._4_c00071{width:9.088000pt;}
._f_c00071{width:9.984000pt;}
._c_c00071{width:11.511893pt;}
._e_c00071{width:16.309760pt;}
._2_c00071{width:18.551893pt;}
._10_c00071{width:588.544000pt;}
.fs3_c00071{font-size:37.440000pt;}
.fs2_c00071{font-size:45.440000pt;}
.fs0_c00071{font-size:48.000000pt;}
.fs1_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y2b_c00071{bottom:50.880000pt;}
.y2a_c00071{bottom:100.720000pt;}
.y29_c00071{bottom:128.320000pt;}
.y27_c00071{bottom:152.562400pt;}
.y28_c00071{bottom:152.566080pt;}
.y26_c00071{bottom:192.720000pt;}
.y25_c00071{bottom:216.882400pt;}
.y24_c00071{bottom:224.960000pt;}
.y23_c00071{bottom:257.040000pt;}
.y22_c00071{bottom:281.202267pt;}
.y1f_c00071{bottom:289.042400pt;}
.y21_c00071{bottom:293.520000pt;}
.y20_c00071{bottom:303.202267pt;}
.y1e_c00071{bottom:306.480000pt;}
.y1d_c00071{bottom:334.002400pt;}
.y1c_c00071{bottom:374.160000pt;}
.y1b_c00071{bottom:401.760000pt;}
.y1a_c00071{bottom:429.440000pt;}
.y19_c00071{bottom:457.440000pt;}
.y18_c00071{bottom:485.200000pt;}
.y17_c00071{bottom:513.200000pt;}
.y16_c00071{bottom:540.800000pt;}
.y15_c00071{bottom:568.480000pt;}
.y14_c00071{bottom:597.360000pt;}
.y13_c00071{bottom:658.480000pt;}
.y11_c00071{bottom:685.120000pt;}
.y12_c00071{bottom:685.122400pt;}
.y10_c00071{bottom:693.200000pt;}
.yf_c00071{bottom:726.720000pt;}
.ye_c00071{bottom:754.320000pt;}
.yd_c00071{bottom:778.562400pt;}
.yc_c00071{bottom:796.000000pt;}
.yb_c00071{bottom:818.720000pt;}
.ya_c00071{bottom:846.400000pt;}
.y9_c00071{bottom:874.560000pt;}
.y8_c00071{bottom:902.720000pt;}
.y7_c00071{bottom:930.880000pt;}
.y6_c00071{bottom:959.600000pt;}
.y5_c00071{bottom:986.960000pt;}
.y4_c00071{bottom:1005.360000pt;}
.y3_c00071{bottom:1023.036000pt;}
.y2_c00071{bottom:1036.800000pt;}
.y1_c00071{bottom:1064.400000pt;}
.h2_c00071{height:47.109375pt;}
.h3_c00071{height:62.812500pt;}
.h4_c00071{height:66.750000pt;}
.hf_c00071{height:74.642344pt;}
.h7_c00071{height:90.591562pt;}
.h13_c00071{height:95.108180pt;}
.hd_c00071{height:95.122900pt;}
.hb_c00071{height:97.634763pt;}
.h5_c00071{height:125.033750pt;}
.h6_c00071{height:127.593750pt;}
.h11_c00071{height:128.031562pt;}
.h9_c00071{height:141.993750pt;}
.h8_c00071{height:159.904150pt;}
.hc_c00071{height:160.341962pt;}
.h12_c00071{height:160.356683pt;}
.ha_c00071{height:174.313750pt;}
.he_c00071{height:180.552744pt;}
.h10_c00071{height:191.702496pt;}
.h0_c00071{height:1122.560000pt;}
.h1_c00071{height:1122.666667pt;}
.w0_c00071{width:793.840000pt;}
.w1_c00071{width:794.000000pt;}
.x0_c00071{left:0.000000pt;}
.x2_c00071{left:113.440000pt;}
.x3_c00071{left:137.440000pt;}
.x4_c00071{left:161.440000pt;}
.x6_c00071{left:214.480000pt;}
.xb_c00071{left:280.880000pt;}
.x8_c00071{left:285.600000pt;}
.x10_c00071{left:328.480000pt;}
.x5_c00071{left:335.280000pt;}
.x12_c00071{left:344.241867pt;}
.x7_c00071{left:355.358080pt;}
.xd_c00071{left:376.640000pt;}
.xc_c00071{left:380.241067pt;}
.x9_c00071{left:381.681867pt;}
.x1_c00071{left:396.960000pt;}
.xa_c00071{left:399.998080pt;}
.x13_c00071{left:402.077280pt;}
.xe_c00071{left:416.321867pt;}
.x11_c00071{left:418.158080pt;}
.xf_c00071{left:434.558080pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9582a8997d9af16e04cd911.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_814a681e4406ff2810d38254.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_a2765c5615a9501860751ca0.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_180969ac710fb9534a7ff009.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00072;src:url('chunks/assets/font_cbc9d1c1963ca4606f824715.woff2')format("woff");}.ff6_c00072{font-family:ff6_c00072;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00072;src:url('chunks/assets/font_a6b5148d630b54df20ff5227.woff2')format("woff");}.ff7_c00072{font-family:ff7_c00072;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:ff8_c00072;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00072{font-family:ff8_c00072;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00072{vertical-align:-83.520000px;}
.vc_c00072{vertical-align:-28.421280px;}
.vd_c00072{vertical-align:-20.880000px;}
.va_c00072{vertical-align:-17.280000px;}
.v2_c00072{vertical-align:-14.760000px;}
.v8_c00072{vertical-align:-2.880000px;}
.v0_c00072{vertical-align:0.000000px;}
.v7_c00072{vertical-align:2.880000px;}
.v4_c00072{vertical-align:13.680000px;}
.v9_c00072{vertical-align:23.400000px;}
.v6_c00072{vertical-align:27.000000px;}
.vb_c00072{vertical-align:45.701280px;}
.v5_c00072{vertical-align:48.240000px;}
.v3_c00072{vertical-align:69.120000px;}
.ls1f_c00072{letter-spacing:-0.360000px;}
.ls1e_c00072{letter-spacing:-0.216000px;}
.ls18_c00072{letter-spacing:-0.144000px;}
.ls19_c00072{letter-spacing:-0.120240px;}
.ls17_c00072{letter-spacing:-0.108000px;}
.ls1d_c00072{letter-spacing:-0.072000px;}
.ls1a_c00072{letter-spacing:-0.060120px;}
.ls16_c00072{letter-spacing:0.000000px;}
.ls6_c00072{letter-spacing:0.072000px;}
.ls15_c00072{letter-spacing:0.120240px;}
.ls1_c00072{letter-spacing:0.144000px;}
.ls1b_c00072{letter-spacing:0.180360px;}
.ls1c_c00072{letter-spacing:0.191520px;}
.ls10_c00072{letter-spacing:0.360000px;}
.ls4_c00072{letter-spacing:1.584000px;}
.lsc_c00072{letter-spacing:2.088000px;}
.ls14_c00072{letter-spacing:2.160000px;}
.ls12_c00072{letter-spacing:2.520000px;}
.ls13_c00072{letter-spacing:2.527200px;}
.lsf_c00072{letter-spacing:2.801520px;}
.ls11_c00072{letter-spacing:2.806560px;}
.ls8_c00072{letter-spacing:5.040000px;}
.ls5_c00072{letter-spacing:9.720000px;}
.ls3_c00072{letter-spacing:13.680000px;}
.ls7_c00072{letter-spacing:15.480000px;}
.ls2_c00072{letter-spacing:16.841520px;}
.lse_c00072{letter-spacing:19.800000px;}
.lsa_c00072{letter-spacing:30.744000px;}
.ls9_c00072{letter-spacing:30.960000px;}
.lsb_c00072{letter-spacing:42.837120px;}
.lsd_c00072{letter-spacing:62.712000px;}
.ls0_c00072{letter-spacing:418.680000px;}
.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;}
}
.ws2_c00072{word-spacing:-72.000000px;}
.wsc_c00072{word-spacing:-51.120000px;}
.ws8_c00072{word-spacing:-18.144000px;}
.ws6_c00072{word-spacing:-18.072000px;}
.ws9_c00072{word-spacing:-18.000000px;}
.ws5_c00072{word-spacing:-17.928000px;}
.ws0_c00072{word-spacing:-17.856000px;}
.ws7_c00072{word-spacing:-17.784000px;}
.wsa_c00072{word-spacing:-15.912000px;}
.wsb_c00072{word-spacing:-15.840000px;}
.ws3_c00072{word-spacing:-15.210360px;}
.wse_c00072{word-spacing:-15.030000px;}
.ws1_c00072{word-spacing:-14.909760px;}
.ws4_c00072{word-spacing:-12.161520px;}
.wsd_c00072{word-spacing:-9.720000px;}
.ws35_c00072{word-spacing:-0.420840px;}
.ws2e_c00072{word-spacing:-0.360000px;}
.ws16_c00072{word-spacing:-0.240480px;}
.ws18_c00072{word-spacing:-0.180360px;}
.ws12_c00072{word-spacing:-0.144000px;}
.ws19_c00072{word-spacing:-0.072000px;}
.wsf_c00072{word-spacing:0.000000px;}
.ws13_c00072{word-spacing:0.060120px;}
.ws15_c00072{word-spacing:0.120240px;}
.ws11_c00072{word-spacing:0.162000px;}
.ws14_c00072{word-spacing:0.180360px;}
.ws22_c00072{word-spacing:0.216000px;}
.ws17_c00072{word-spacing:0.240480px;}
.ws10_c00072{word-spacing:0.270000px;}
.ws27_c00072{word-spacing:0.360000px;}
.ws31_c00072{word-spacing:1.368000px;}
.ws32_c00072{word-spacing:1.440000px;}
.ws2f_c00072{word-spacing:2.088000px;}
.ws2c_c00072{word-spacing:2.448000px;}
.ws2b_c00072{word-spacing:2.520000px;}
.ws2a_c00072{word-spacing:4.680000px;}
.ws21_c00072{word-spacing:4.896000px;}
.ws20_c00072{word-spacing:4.968000px;}
.ws1f_c00072{word-spacing:5.040000px;}
.ws33_c00072{word-spacing:6.048000px;}
.ws34_c00072{word-spacing:6.768000px;}
.ws29_c00072{word-spacing:8.208000px;}
.ws28_c00072{word-spacing:8.280000px;}
.ws26_c00072{word-spacing:8.568000px;}
.ws1b_c00072{word-spacing:9.648000px;}
.ws1a_c00072{word-spacing:9.720000px;}
.ws2d_c00072{word-spacing:12.240000px;}
.ws30_c00072{word-spacing:14.400000px;}
.ws1c_c00072{word-spacing:15.480000px;}
.ws1e_c00072{word-spacing:25.488000px;}
.ws1d_c00072{word-spacing:25.560000px;}
.ws23_c00072{word-spacing:30.600000px;}
.ws25_c00072{word-spacing:30.816000px;}
.ws24_c00072{word-spacing:30.960000px;}
._4_c00072{margin-left:-34.056000px;}
._3_c00072{margin-left:-32.976000px;}
._a_c00072{margin-left:-8.588160px;}
._2_c00072{margin-left:-6.552000px;}
._9_c00072{margin-left:-4.276800px;}
._1_c00072{margin-left:-1.058400px;}
._0_c00072{width:1.220400px;}
._5_c00072{width:9.626400px;}
._6_c00072{width:25.272000px;}
._8_c00072{width:30.218400px;}
._7_c00072{width:31.392000px;}
.fc0_c00072{color:rgb(0,0,0);}
.fs3_c00072{font-size:38.880000px;}
.fs5_c00072{font-size:47.880000px;}
.fs4_c00072{font-size:51.120000px;}
.fs0_c00072{font-size:54.000000px;}
.fs2_c00072{font-size:60.120000px;}
.fs1_c00072{font-size:72.000000px;}
.y0_c00072{bottom:0.000000px;}
.yc_c00072{bottom:3.960000px;}
.y7_c00072{bottom:7.740000px;}
.y10_c00072{bottom:17.550000px;}
.yf_c00072{bottom:18.090000px;}
.yb_c00072{bottom:29.610000px;}
.ye_c00072{bottom:30.150000px;}
.ya_c00072{bottom:48.150000px;}
.y32_c00072{bottom:57.240000px;}
.y31_c00072{bottom:115.020000px;}
.y33_c00072{bottom:127.710000px;}
.y30_c00072{bottom:156.690000px;}
.y2f_c00072{bottom:187.740000px;}
.y2e_c00072{bottom:218.790000px;}
.y2d_c00072{bottom:249.840000px;}
.y2c_c00072{bottom:280.890000px;}
.y2b_c00072{bottom:311.940000px;}
.y2a_c00072{bottom:342.990000px;}
.y29_c00072{bottom:374.040000px;}
.y28_c00072{bottom:405.090000px;}
.y27_c00072{bottom:436.140000px;}
.y26_c00072{bottom:467.190000px;}
.y25_c00072{bottom:498.240000px;}
.y24_c00072{bottom:529.290000px;}
.y23_c00072{bottom:560.340000px;}
.y21_c00072{bottom:591.840000px;}
.y22_c00072{bottom:592.560000px;}
.y20_c00072{bottom:624.150000px;}
.y1e_c00072{bottom:655.380000px;}
.y1f_c00072{bottom:656.100000px;}
.y1d_c00072{bottom:687.060000px;}
.y1c_c00072{bottom:718.110000px;}
.y1b_c00072{bottom:738.810000px;}
.y1a_c00072{bottom:769.860000px;}
.y19_c00072{bottom:800.910000px;}
.y18_c00072{bottom:831.960000px;}
.y17_c00072{bottom:863.010000px;}
.y16_c00072{bottom:894.060000px;}
.y15_c00072{bottom:925.110000px;}
.y14_c00072{bottom:956.160000px;}
.y13_c00072{bottom:984.775500px;}
.y12_c00072{bottom:1002.060000px;}
.y9_c00072{bottom:1018.080000px;}
.yd_c00072{bottom:1034.100000px;}
.y11_c00072{bottom:1048.230000px;}
.y6_c00072{bottom:1082.250000px;}
.y8_c00072{bottom:1089.270000px;}
.y5_c00072{bottom:1131.030000px;}
.y4_c00072{bottom:1150.920000px;}
.y3_c00072{bottom:1166.404500px;}
.y2_c00072{bottom:1181.970000px;}
.y1_c00072{bottom:1197.450000px;}
.h5_c00072{height:21.688500px;}
.h10_c00072{height:38.158594px;}
.h7_c00072{height:39.183750px;}
.h3_c00072{height:52.971680px;}
.h2_c00072{height:52.998047px;}
.h9_c00072{height:59.004492px;}
.h6_c00072{height:60.589687px;}
.h8_c00072{height:61.920000px;}
.h4_c00072{height:70.664062px;}
.he_c00072{height:73.991602px;}
.hf_c00072{height:75.093750px;}
.ha_c00072{height:143.542969px;}
.hd_c00072{height:157.222969px;}
.hb_c00072{height:211.582969px;}
.hc_c00072{height:259.822969px;}
.h0_c00072{height:1262.880000px;}
.h1_c00072{height:1263.000000px;}
.w3_c00072{width:178.560000px;}
.w2_c00072{width:189.000000px;}
.w0_c00072{width:893.070000px;}
.w1_c00072{width:893.250000px;}
.x0_c00072{left:0.000000px;}
.x9_c00072{left:34.470000px;}
.x7_c00072{left:43.920000px;}
.xc_c00072{left:46.260000px;}
.x5_c00072{left:56.790000px;}
.xd_c00072{left:66.780000px;}
.xa_c00072{left:84.060000px;}
.xe_c00072{left:120.240000px;}
.x3_c00072{left:127.620000px;}
.x4_c00072{left:288.270000px;}
.x11_c00072{left:318.690000px;}
.xb_c00072{left:393.120000px;}
.x2_c00072{left:425.160000px;}
.x1_c00072{left:446.580000px;}
.x6_c00072{left:479.520000px;}
.x8_c00072{left:606.780000px;}
.xf_c00072{left:611.730000px;}
.x10_c00072{left:682.920000px;}
.x12_c00072{left:747.540000px;}
@media print{
.v1_c00072{vertical-align:-74.240000pt;}
.vc_c00072{vertical-align:-25.263360pt;}
.vd_c00072{vertical-align:-18.560000pt;}
.va_c00072{vertical-align:-15.360000pt;}
.v2_c00072{vertical-align:-13.120000pt;}
.v8_c00072{vertical-align:-2.560000pt;}
.v0_c00072{vertical-align:0.000000pt;}
.v7_c00072{vertical-align:2.560000pt;}
.v4_c00072{vertical-align:12.160000pt;}
.v9_c00072{vertical-align:20.800000pt;}
.v6_c00072{vertical-align:24.000000pt;}
.vb_c00072{vertical-align:40.623360pt;}
.v5_c00072{vertical-align:42.880000pt;}
.v3_c00072{vertical-align:61.440000pt;}
.ls1f_c00072{letter-spacing:-0.320000pt;}
.ls1e_c00072{letter-spacing:-0.192000pt;}
.ls18_c00072{letter-spacing:-0.128000pt;}
.ls19_c00072{letter-spacing:-0.106880pt;}
.ls17_c00072{letter-spacing:-0.096000pt;}
.ls1d_c00072{letter-spacing:-0.064000pt;}
.ls1a_c00072{letter-spacing:-0.053440pt;}
.ls16_c00072{letter-spacing:0.000000pt;}
.ls6_c00072{letter-spacing:0.064000pt;}
.ls15_c00072{letter-spacing:0.106880pt;}
.ls1_c00072{letter-spacing:0.128000pt;}
.ls1b_c00072{letter-spacing:0.160320pt;}
.ls1c_c00072{letter-spacing:0.170240pt;}
.ls10_c00072{letter-spacing:0.320000pt;}
.ls4_c00072{letter-spacing:1.408000pt;}
.lsc_c00072{letter-spacing:1.856000pt;}
.ls14_c00072{letter-spacing:1.920000pt;}
.ls12_c00072{letter-spacing:2.240000pt;}
.ls13_c00072{letter-spacing:2.246400pt;}
.lsf_c00072{letter-spacing:2.490240pt;}
.ls11_c00072{letter-spacing:2.494720pt;}
.ls8_c00072{letter-spacing:4.480000pt;}
.ls5_c00072{letter-spacing:8.640000pt;}
.ls3_c00072{letter-spacing:12.160000pt;}
.ls7_c00072{letter-spacing:13.760000pt;}
.ls2_c00072{letter-spacing:14.970240pt;}
.lse_c00072{letter-spacing:17.600000pt;}
.lsa_c00072{letter-spacing:27.328000pt;}
.ls9_c00072{letter-spacing:27.520000pt;}
.lsb_c00072{letter-spacing:38.077440pt;}
.lsd_c00072{letter-spacing:55.744000pt;}
.ls0_c00072{letter-spacing:372.160000pt;}
.ws2_c00072{word-spacing:-64.000000pt;}
.wsc_c00072{word-spacing:-45.440000pt;}
.ws8_c00072{word-spacing:-16.128000pt;}
.ws6_c00072{word-spacing:-16.064000pt;}
.ws9_c00072{word-spacing:-16.000000pt;}
.ws5_c00072{word-spacing:-15.936000pt;}
.ws0_c00072{word-spacing:-15.872000pt;}
.ws7_c00072{word-spacing:-15.808000pt;}
.wsa_c00072{word-spacing:-14.144000pt;}
.wsb_c00072{word-spacing:-14.080000pt;}
.ws3_c00072{word-spacing:-13.520320pt;}
.wse_c00072{word-spacing:-13.360000pt;}
.ws1_c00072{word-spacing:-13.253120pt;}
.ws4_c00072{word-spacing:-10.810240pt;}
.wsd_c00072{word-spacing:-8.640000pt;}
.ws35_c00072{word-spacing:-0.374080pt;}
.ws2e_c00072{word-spacing:-0.320000pt;}
.ws16_c00072{word-spacing:-0.213760pt;}
.ws18_c00072{word-spacing:-0.160320pt;}
.ws12_c00072{word-spacing:-0.128000pt;}
.ws19_c00072{word-spacing:-0.064000pt;}
.wsf_c00072{word-spacing:0.000000pt;}
.ws13_c00072{word-spacing:0.053440pt;}
.ws15_c00072{word-spacing:0.106880pt;}
.ws11_c00072{word-spacing:0.144000pt;}
.ws14_c00072{word-spacing:0.160320pt;}
.ws22_c00072{word-spacing:0.192000pt;}
.ws17_c00072{word-spacing:0.213760pt;}
.ws10_c00072{word-spacing:0.240000pt;}
.ws27_c00072{word-spacing:0.320000pt;}
.ws31_c00072{word-spacing:1.216000pt;}
.ws32_c00072{word-spacing:1.280000pt;}
.ws2f_c00072{word-spacing:1.856000pt;}
.ws2c_c00072{word-spacing:2.176000pt;}
.ws2b_c00072{word-spacing:2.240000pt;}
.ws2a_c00072{word-spacing:4.160000pt;}
.ws21_c00072{word-spacing:4.352000pt;}
.ws20_c00072{word-spacing:4.416000pt;}
.ws1f_c00072{word-spacing:4.480000pt;}
.ws33_c00072{word-spacing:5.376000pt;}
.ws34_c00072{word-spacing:6.016000pt;}
.ws29_c00072{word-spacing:7.296000pt;}
.ws28_c00072{word-spacing:7.360000pt;}
.ws26_c00072{word-spacing:7.616000pt;}
.ws1b_c00072{word-spacing:8.576000pt;}
.ws1a_c00072{word-spacing:8.640000pt;}
.ws2d_c00072{word-spacing:10.880000pt;}
.ws30_c00072{word-spacing:12.800000pt;}
.ws1c_c00072{word-spacing:13.760000pt;}
.ws1e_c00072{word-spacing:22.656000pt;}
.ws1d_c00072{word-spacing:22.720000pt;}
.ws23_c00072{word-spacing:27.200000pt;}
.ws25_c00072{word-spacing:27.392000pt;}
.ws24_c00072{word-spacing:27.520000pt;}
._4_c00072{margin-left:-30.272000pt;}
._3_c00072{margin-left:-29.312000pt;}
._a_c00072{margin-left:-7.633920pt;}
._2_c00072{margin-left:-5.824000pt;}
._9_c00072{margin-left:-3.801600pt;}
._1_c00072{margin-left:-0.940800pt;}
._0_c00072{width:1.084800pt;}
._5_c00072{width:8.556800pt;}
._6_c00072{width:22.464000pt;}
._8_c00072{width:26.860800pt;}
._7_c00072{width:27.904000pt;}
.fs3_c00072{font-size:34.560000pt;}
.fs5_c00072{font-size:42.560000pt;}
.fs4_c00072{font-size:45.440000pt;}
.fs0_c00072{font-size:48.000000pt;}
.fs2_c00072{font-size:53.440000pt;}
.fs1_c00072{font-size:64.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.yc_c00072{bottom:3.520000pt;}
.y7_c00072{bottom:6.880000pt;}
.y10_c00072{bottom:15.600000pt;}
.yf_c00072{bottom:16.080000pt;}
.yb_c00072{bottom:26.320000pt;}
.ye_c00072{bottom:26.800000pt;}
.ya_c00072{bottom:42.800000pt;}
.y32_c00072{bottom:50.880000pt;}
.y31_c00072{bottom:102.240000pt;}
.y33_c00072{bottom:113.520000pt;}
.y30_c00072{bottom:139.280000pt;}
.y2f_c00072{bottom:166.880000pt;}
.y2e_c00072{bottom:194.480000pt;}
.y2d_c00072{bottom:222.080000pt;}
.y2c_c00072{bottom:249.680000pt;}
.y2b_c00072{bottom:277.280000pt;}
.y2a_c00072{bottom:304.880000pt;}
.y29_c00072{bottom:332.480000pt;}
.y28_c00072{bottom:360.080000pt;}
.y27_c00072{bottom:387.680000pt;}
.y26_c00072{bottom:415.280000pt;}
.y25_c00072{bottom:442.880000pt;}
.y24_c00072{bottom:470.480000pt;}
.y23_c00072{bottom:498.080000pt;}
.y21_c00072{bottom:526.080000pt;}
.y22_c00072{bottom:526.720000pt;}
.y20_c00072{bottom:554.800000pt;}
.y1e_c00072{bottom:582.560000pt;}
.y1f_c00072{bottom:583.200000pt;}
.y1d_c00072{bottom:610.720000pt;}
.y1c_c00072{bottom:638.320000pt;}
.y1b_c00072{bottom:656.720000pt;}
.y1a_c00072{bottom:684.320000pt;}
.y19_c00072{bottom:711.920000pt;}
.y18_c00072{bottom:739.520000pt;}
.y17_c00072{bottom:767.120000pt;}
.y16_c00072{bottom:794.720000pt;}
.y15_c00072{bottom:822.320000pt;}
.y14_c00072{bottom:849.920000pt;}
.y13_c00072{bottom:875.356000pt;}
.y12_c00072{bottom:890.720000pt;}
.y9_c00072{bottom:904.960000pt;}
.yd_c00072{bottom:919.200000pt;}
.y11_c00072{bottom:931.760000pt;}
.y6_c00072{bottom:962.000000pt;}
.y8_c00072{bottom:968.240000pt;}
.y5_c00072{bottom:1005.360000pt;}
.y4_c00072{bottom:1023.040000pt;}
.y3_c00072{bottom:1036.804000pt;}
.y2_c00072{bottom:1050.640000pt;}
.y1_c00072{bottom:1064.400000pt;}
.h5_c00072{height:19.278667pt;}
.h10_c00072{height:33.918750pt;}
.h7_c00072{height:34.830000pt;}
.h3_c00072{height:47.085938pt;}
.h2_c00072{height:47.109375pt;}
.h9_c00072{height:52.448437pt;}
.h6_c00072{height:53.857500pt;}
.h8_c00072{height:55.040000pt;}
.h4_c00072{height:62.812500pt;}
.he_c00072{height:65.770312pt;}
.hf_c00072{height:66.750000pt;}
.ha_c00072{height:127.593750pt;}
.hd_c00072{height:139.753750pt;}
.hb_c00072{height:188.073750pt;}
.hc_c00072{height:230.953750pt;}
.h0_c00072{height:1122.560000pt;}
.h1_c00072{height:1122.666667pt;}
.w3_c00072{width:158.720000pt;}
.w2_c00072{width:168.000000pt;}
.w0_c00072{width:793.840000pt;}
.w1_c00072{width:794.000000pt;}
.x0_c00072{left:0.000000pt;}
.x9_c00072{left:30.640000pt;}
.x7_c00072{left:39.040000pt;}
.xc_c00072{left:41.120000pt;}
.x5_c00072{left:50.480000pt;}
.xd_c00072{left:59.360000pt;}
.xa_c00072{left:74.720000pt;}
.xe_c00072{left:106.880000pt;}
.x3_c00072{left:113.440000pt;}
.x4_c00072{left:256.240000pt;}
.x11_c00072{left:283.280000pt;}
.xb_c00072{left:349.440000pt;}
.x2_c00072{left:377.920000pt;}
.x1_c00072{left:396.960000pt;}
.x6_c00072{left:426.240000pt;}
.x8_c00072{left:539.360000pt;}
.xf_c00072{left:543.760000pt;}
.x10_c00072{left:607.040000pt;}
.x12_c00072{left:664.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_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_fba11379a728e82ec1d97389.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_411af5bd5257b57331d3be5c.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;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_c00073;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00073;src:url('chunks/assets/font_3b673323de8abe329df60582.woff2')format("woff");}.ff5_c00073{font-family:ff5_c00073;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00073;src:url('chunks/assets/font_54cc8c3d0ba6c7a9c8812451.woff2')format("woff");}.ff6_c00073{font-family:ff6_c00073;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00073{vertical-align:-127.080000px;}
.v1_c00073{vertical-align:-61.938000px;}
.vb_c00073{vertical-align:-28.421280px;}
.vc_c00073{vertical-align:-20.880000px;}
.v9_c00073{vertical-align:-17.280000px;}
.v2_c00073{vertical-align:-14.760000px;}
.v7_c00073{vertical-align:-2.880000px;}
.v0_c00073{vertical-align:0.000000px;}
.v5_c00073{vertical-align:2.880000px;}
.v3_c00073{vertical-align:14.760000px;}
.v6_c00073{vertical-align:17.640000px;}
.v8_c00073{vertical-align:26.280000px;}
.va_c00073{vertical-align:45.701280px;}
.ls19_c00073{letter-spacing:-0.360000px;}
.ls1a_c00073{letter-spacing:-0.144000px;}
.ls17_c00073{letter-spacing:0.000000px;}
.ls2_c00073{letter-spacing:0.072000px;}
.ls16_c00073{letter-spacing:0.120240px;}
.ls18_c00073{letter-spacing:0.144000px;}
.ls1c_c00073{letter-spacing:0.180360px;}
.ls1b_c00073{letter-spacing:0.191520px;}
.ls3_c00073{letter-spacing:0.720000px;}
.ls15_c00073{letter-spacing:1.800000px;}
.ls14_c00073{letter-spacing:2.016000px;}
.ls6_c00073{letter-spacing:2.088000px;}
.ls9_c00073{letter-spacing:2.801520px;}
.ls7_c00073{letter-spacing:3.161520px;}
.lse_c00073{letter-spacing:4.320000px;}
.ls5_c00073{letter-spacing:4.334400px;}
.lsb_c00073{letter-spacing:4.736880px;}
.ls1_c00073{letter-spacing:8.280000px;}
.ls10_c00073{letter-spacing:11.952000px;}
.lsa_c00073{letter-spacing:12.312000px;}
.lsc_c00073{letter-spacing:19.800000px;}
.lsd_c00073{letter-spacing:20.016000px;}
.ls11_c00073{letter-spacing:20.160000px;}
.ls8_c00073{letter-spacing:21.888000px;}
.ls12_c00073{letter-spacing:22.606560px;}
.lsf_c00073{letter-spacing:22.961520px;}
.ls13_c00073{letter-spacing:23.904000px;}
.ls4_c00073{letter-spacing:30.744000px;}
.ls0_c00073{letter-spacing:319.518000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00073{word-spacing:-72.072000px;}
.ws2_c00073{word-spacing:-72.000000px;}
.ws3_c00073{word-spacing:-71.856000px;}
.ws5_c00073{word-spacing:-51.120000px;}
.ws0_c00073{word-spacing:-18.144000px;}
.ws1_c00073{word-spacing:-18.072000px;}
.ws6_c00073{word-spacing:-18.000000px;}
.ws4_c00073{word-spacing:-15.840000px;}
.ws8_c00073{word-spacing:-12.161520px;}
.ws9_c00073{word-spacing:-9.720000px;}
.ws1b_c00073{word-spacing:-0.360000px;}
.wsb_c00073{word-spacing:-0.162000px;}
.ws17_c00073{word-spacing:-0.072000px;}
.ws22_c00073{word-spacing:-0.060120px;}
.wsa_c00073{word-spacing:0.000000px;}
.ws14_c00073{word-spacing:0.288000px;}
.ws1a_c00073{word-spacing:0.360000px;}
.wse_c00073{word-spacing:0.648000px;}
.wsf_c00073{word-spacing:0.720000px;}
.ws11_c00073{word-spacing:1.656000px;}
.ws21_c00073{word-spacing:1.800000px;}
.ws10_c00073{word-spacing:2.088000px;}
.ws18_c00073{word-spacing:4.248000px;}
.ws19_c00073{word-spacing:4.320000px;}
.ws16_c00073{word-spacing:5.328000px;}
.ws20_c00073{word-spacing:6.120000px;}
.wsd_c00073{word-spacing:8.208000px;}
.wsc_c00073{word-spacing:8.280000px;}
.ws15_c00073{word-spacing:8.568000px;}
.ws1e_c00073{word-spacing:13.968000px;}
.ws1d_c00073{word-spacing:14.040000px;}
.ws13_c00073{word-spacing:14.688000px;}
.ws12_c00073{word-spacing:31.248000px;}
.ws1c_c00073{word-spacing:39.528000px;}
.ws1f_c00073{word-spacing:46.728000px;}
._8_c00073{margin-left:-8.588160px;}
._7_c00073{margin-left:-5.040000px;}
._6_c00073{margin-left:-2.880000px;}
._1_c00073{margin-left:-1.015200px;}
._0_c00073{width:1.080000px;}
._5_c00073{width:2.304000px;}
._9_c00073{width:3.384000px;}
._2_c00073{width:19.944000px;}
._3_c00073{width:21.031200px;}
._4_c00073{width:160.776000px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs4_c00073{font-size:38.880000px;}
.fs3_c00073{font-size:47.880000px;}
.fs2_c00073{font-size:51.120000px;}
.fs0_c00073{font-size:54.000000px;}
.fs5_c00073{font-size:60.120000px;}
.fs1_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y24_c00073{bottom:57.240000px;}
.y23_c00073{bottom:115.020000px;}
.y25_c00073{bottom:127.710000px;}
.y22_c00073{bottom:171.540000px;}
.y21_c00073{bottom:203.220000px;}
.y20_c00073{bottom:234.270000px;}
.y1f_c00073{bottom:265.320000px;}
.y1e_c00073{bottom:296.370000px;}
.y1d_c00073{bottom:327.420000px;}
.y1c_c00073{bottom:358.470000px;}
.y1b_c00073{bottom:389.610000px;}
.y1a_c00073{bottom:421.650000px;}
.y19_c00073{bottom:453.960000px;}
.y18_c00073{bottom:485.010000px;}
.y17_c00073{bottom:516.060000px;}
.y16_c00073{bottom:547.110000px;}
.y15_c00073{bottom:578.700000px;}
.y14_c00073{bottom:642.780000px;}
.y13_c00073{bottom:673.920000px;}
.y12_c00073{bottom:705.600000px;}
.y11_c00073{bottom:737.370000px;}
.y10_c00073{bottom:768.870000px;}
.yf_c00073{bottom:799.920000px;}
.ye_c00073{bottom:830.970000px;}
.yd_c00073{bottom:861.930000px;}
.yc_c00073{bottom:892.980000px;}
.yb_c00073{bottom:924.030000px;}
.ya_c00073{bottom:955.080000px;}
.y9_c00073{bottom:986.130000px;}
.y8_c00073{bottom:1017.180000px;}
.y7_c00073{bottom:1048.230000px;}
.y6_c00073{bottom:1079.280000px;}
.y5_c00073{bottom:1110.330000px;}
.y4_c00073{bottom:1131.030000px;}
.y3_c00073{bottom:1150.915500px;}
.y2_c00073{bottom:1166.400000px;}
.y1_c00073{bottom:1197.450000px;}
.h7_c00073{height:38.158594px;}
.h2_c00073{height:52.998047px;}
.h3_c00073{height:70.664062px;}
.h6_c00073{height:73.991602px;}
.h4_c00073{height:75.093750px;}
.h5_c00073{height:143.542969px;}
.h0_c00073{height:1262.880000px;}
.h1_c00073{height:1263.000000px;}
.w0_c00073{width:893.070000px;}
.w1_c00073{width:893.250000px;}
.x0_c00073{left:0.000000px;}
.x2_c00073{left:127.620000px;}
.x5_c00073{left:154.620000px;}
.x4_c00073{left:290.070000px;}
.x6_c00073{left:344.070000px;}
.x7_c00073{left:358.650000px;}
.x3_c00073{left:407.520000px;}
.x1_c00073{left:446.580000px;}
@media print{
.v4_c00073{vertical-align:-112.960000pt;}
.v1_c00073{vertical-align:-55.056000pt;}
.vb_c00073{vertical-align:-25.263360pt;}
.vc_c00073{vertical-align:-18.560000pt;}
.v9_c00073{vertical-align:-15.360000pt;}
.v2_c00073{vertical-align:-13.120000pt;}
.v7_c00073{vertical-align:-2.560000pt;}
.v0_c00073{vertical-align:0.000000pt;}
.v5_c00073{vertical-align:2.560000pt;}
.v3_c00073{vertical-align:13.120000pt;}
.v6_c00073{vertical-align:15.680000pt;}
.v8_c00073{vertical-align:23.360000pt;}
.va_c00073{vertical-align:40.623360pt;}
.ls19_c00073{letter-spacing:-0.320000pt;}
.ls1a_c00073{letter-spacing:-0.128000pt;}
.ls17_c00073{letter-spacing:0.000000pt;}
.ls2_c00073{letter-spacing:0.064000pt;}
.ls16_c00073{letter-spacing:0.106880pt;}
.ls18_c00073{letter-spacing:0.128000pt;}
.ls1c_c00073{letter-spacing:0.160320pt;}
.ls1b_c00073{letter-spacing:0.170240pt;}
.ls3_c00073{letter-spacing:0.640000pt;}
.ls15_c00073{letter-spacing:1.600000pt;}
.ls14_c00073{letter-spacing:1.792000pt;}
.ls6_c00073{letter-spacing:1.856000pt;}
.ls9_c00073{letter-spacing:2.490240pt;}
.ls7_c00073{letter-spacing:2.810240pt;}
.lse_c00073{letter-spacing:3.840000pt;}
.ls5_c00073{letter-spacing:3.852800pt;}
.lsb_c00073{letter-spacing:4.210560pt;}
.ls1_c00073{letter-spacing:7.360000pt;}
.ls10_c00073{letter-spacing:10.624000pt;}
.lsa_c00073{letter-spacing:10.944000pt;}
.lsc_c00073{letter-spacing:17.600000pt;}
.lsd_c00073{letter-spacing:17.792000pt;}
.ls11_c00073{letter-spacing:17.920000pt;}
.ls8_c00073{letter-spacing:19.456000pt;}
.ls12_c00073{letter-spacing:20.094720pt;}
.lsf_c00073{letter-spacing:20.410240pt;}
.ls13_c00073{letter-spacing:21.248000pt;}
.ls4_c00073{letter-spacing:27.328000pt;}
.ls0_c00073{letter-spacing:284.016000pt;}
.ws7_c00073{word-spacing:-64.064000pt;}
.ws2_c00073{word-spacing:-64.000000pt;}
.ws3_c00073{word-spacing:-63.872000pt;}
.ws5_c00073{word-spacing:-45.440000pt;}
.ws0_c00073{word-spacing:-16.128000pt;}
.ws1_c00073{word-spacing:-16.064000pt;}
.ws6_c00073{word-spacing:-16.000000pt;}
.ws4_c00073{word-spacing:-14.080000pt;}
.ws8_c00073{word-spacing:-10.810240pt;}
.ws9_c00073{word-spacing:-8.640000pt;}
.ws1b_c00073{word-spacing:-0.320000pt;}
.wsb_c00073{word-spacing:-0.144000pt;}
.ws17_c00073{word-spacing:-0.064000pt;}
.ws22_c00073{word-spacing:-0.053440pt;}
.wsa_c00073{word-spacing:0.000000pt;}
.ws14_c00073{word-spacing:0.256000pt;}
.ws1a_c00073{word-spacing:0.320000pt;}
.wse_c00073{word-spacing:0.576000pt;}
.wsf_c00073{word-spacing:0.640000pt;}
.ws11_c00073{word-spacing:1.472000pt;}
.ws21_c00073{word-spacing:1.600000pt;}
.ws10_c00073{word-spacing:1.856000pt;}
.ws18_c00073{word-spacing:3.776000pt;}
.ws19_c00073{word-spacing:3.840000pt;}
.ws16_c00073{word-spacing:4.736000pt;}
.ws20_c00073{word-spacing:5.440000pt;}
.wsd_c00073{word-spacing:7.296000pt;}
.wsc_c00073{word-spacing:7.360000pt;}
.ws15_c00073{word-spacing:7.616000pt;}
.ws1e_c00073{word-spacing:12.416000pt;}
.ws1d_c00073{word-spacing:12.480000pt;}
.ws13_c00073{word-spacing:13.056000pt;}
.ws12_c00073{word-spacing:27.776000pt;}
.ws1c_c00073{word-spacing:35.136000pt;}
.ws1f_c00073{word-spacing:41.536000pt;}
._8_c00073{margin-left:-7.633920pt;}
._7_c00073{margin-left:-4.480000pt;}
._6_c00073{margin-left:-2.560000pt;}
._1_c00073{margin-left:-0.902400pt;}
._0_c00073{width:0.960000pt;}
._5_c00073{width:2.048000pt;}
._9_c00073{width:3.008000pt;}
._2_c00073{width:17.728000pt;}
._3_c00073{width:18.694400pt;}
._4_c00073{width:142.912000pt;}
.fs4_c00073{font-size:34.560000pt;}
.fs3_c00073{font-size:42.560000pt;}
.fs2_c00073{font-size:45.440000pt;}
.fs0_c00073{font-size:48.000000pt;}
.fs5_c00073{font-size:53.440000pt;}
.fs1_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y24_c00073{bottom:50.880000pt;}
.y23_c00073{bottom:102.240000pt;}
.y25_c00073{bottom:113.520000pt;}
.y22_c00073{bottom:152.480000pt;}
.y21_c00073{bottom:180.640000pt;}
.y20_c00073{bottom:208.240000pt;}
.y1f_c00073{bottom:235.840000pt;}
.y1e_c00073{bottom:263.440000pt;}
.y1d_c00073{bottom:291.040000pt;}
.y1c_c00073{bottom:318.640000pt;}
.y1b_c00073{bottom:346.320000pt;}
.y1a_c00073{bottom:374.800000pt;}
.y19_c00073{bottom:403.520000pt;}
.y18_c00073{bottom:431.120000pt;}
.y17_c00073{bottom:458.720000pt;}
.y16_c00073{bottom:486.320000pt;}
.y15_c00073{bottom:514.400000pt;}
.y14_c00073{bottom:571.360000pt;}
.y13_c00073{bottom:599.040000pt;}
.y12_c00073{bottom:627.200000pt;}
.y11_c00073{bottom:655.440000pt;}
.y10_c00073{bottom:683.440000pt;}
.yf_c00073{bottom:711.040000pt;}
.ye_c00073{bottom:738.640000pt;}
.yd_c00073{bottom:766.160000pt;}
.yc_c00073{bottom:793.760000pt;}
.yb_c00073{bottom:821.360000pt;}
.ya_c00073{bottom:848.960000pt;}
.y9_c00073{bottom:876.560000pt;}
.y8_c00073{bottom:904.160000pt;}
.y7_c00073{bottom:931.760000pt;}
.y6_c00073{bottom:959.360000pt;}
.y5_c00073{bottom:986.960000pt;}
.y4_c00073{bottom:1005.360000pt;}
.y3_c00073{bottom:1023.036000pt;}
.y2_c00073{bottom:1036.800000pt;}
.y1_c00073{bottom:1064.400000pt;}
.h7_c00073{height:33.918750pt;}
.h2_c00073{height:47.109375pt;}
.h3_c00073{height:62.812500pt;}
.h6_c00073{height:65.770312pt;}
.h4_c00073{height:66.750000pt;}
.h5_c00073{height:127.593750pt;}
.h0_c00073{height:1122.560000pt;}
.h1_c00073{height:1122.666667pt;}
.w0_c00073{width:793.840000pt;}
.w1_c00073{width:794.000000pt;}
.x0_c00073{left:0.000000pt;}
.x2_c00073{left:113.440000pt;}
.x5_c00073{left:137.440000pt;}
.x4_c00073{left:257.840000pt;}
.x6_c00073{left:305.840000pt;}
.x7_c00073{left:318.800000pt;}
.x3_c00073{left:362.240000pt;}
.x1_c00073{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04e5fe56bd09f39cb1761ab5.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_cfdd0e6aa074aa0312886f17.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;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_c00074;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_da95372fcd6e73c856c5c8c7.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00074;src:url('chunks/assets/font_94d5a571e3a7ec9481ef281f.woff2')format("woff");}.ff6_c00074{font-family:ff6_c00074;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.vb_c00074{vertical-align:-28.421280px;}
.v7_c00074{vertical-align:-27.002880px;}
.v5_c00074{vertical-align:-18.000000px;}
.v1_c00074{vertical-align:-14.760000px;}
.v4_c00074{vertical-align:-2.880000px;}
.v0_c00074{vertical-align:0.000000px;}
.v3_c00074{vertical-align:2.880000px;}
.v2_c00074{vertical-align:14.760000px;}
.v9_c00074{vertical-align:17.640000px;}
.v8_c00074{vertical-align:23.400000px;}
.v6_c00074{vertical-align:42.122880px;}
.va_c00074{vertical-align:45.701280px;}
.ls1b_c00074{letter-spacing:-0.576000px;}
.ls1c_c00074{letter-spacing:-0.144000px;}
.ls19_c00074{letter-spacing:-0.108000px;}
.ls1d_c00074{letter-spacing:-0.072000px;}
.ls18_c00074{letter-spacing:0.000000px;}
.ls4_c00074{letter-spacing:0.072000px;}
.ls1a_c00074{letter-spacing:0.144000px;}
.ls17_c00074{letter-spacing:0.360000px;}
.lse_c00074{letter-spacing:1.296000px;}
.ls1_c00074{letter-spacing:2.160000px;}
.ls15_c00074{letter-spacing:2.791440px;}
.ls2_c00074{letter-spacing:2.801520px;}
.ls10_c00074{letter-spacing:2.806560px;}
.ls14_c00074{letter-spacing:2.817360px;}
.lsd_c00074{letter-spacing:3.161520px;}
.lsb_c00074{letter-spacing:4.320000px;}
.lsf_c00074{letter-spacing:4.507200px;}
.ls16_c00074{letter-spacing:4.736880px;}
.ls3_c00074{letter-spacing:11.952000px;}
.lsc_c00074{letter-spacing:16.200000px;}
.ls7_c00074{letter-spacing:19.800000px;}
.ls8_c00074{letter-spacing:20.016000px;}
.ls13_c00074{letter-spacing:22.966560px;}
.ls0_c00074{letter-spacing:23.904000px;}
.ls12_c00074{letter-spacing:29.880000px;}
.ls11_c00074{letter-spacing:30.744000px;}
.ls9_c00074{letter-spacing:42.772320px;}
.ls5_c00074{letter-spacing:44.107200px;}
.ls6_c00074{letter-spacing:70.272000px;}
.lsa_c00074{letter-spacing:90.072000px;}
.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;}
}
.ws2_c00074{word-spacing:-72.000000px;}
.ws4_c00074{word-spacing:-71.856000px;}
.ws6_c00074{word-spacing:-51.120000px;}
.ws1_c00074{word-spacing:-18.144000px;}
.ws0_c00074{word-spacing:-18.000000px;}
.ws7_c00074{word-spacing:-17.928000px;}
.ws3_c00074{word-spacing:-17.424000px;}
.ws5_c00074{word-spacing:-15.840000px;}
.wsd_c00074{word-spacing:-0.072000px;}
.ws8_c00074{word-spacing:0.000000px;}
.wsa_c00074{word-spacing:0.162000px;}
.ws9_c00074{word-spacing:0.270000px;}
.ws1d_c00074{word-spacing:0.360000px;}
.wsf_c00074{word-spacing:2.088000px;}
.ws1b_c00074{word-spacing:3.528000px;}
.ws1c_c00074{word-spacing:3.888000px;}
.wsc_c00074{word-spacing:4.968000px;}
.wse_c00074{word-spacing:11.808000px;}
.ws1f_c00074{word-spacing:13.248000px;}
.ws1e_c00074{word-spacing:13.608000px;}
.ws20_c00074{word-spacing:13.680000px;}
.ws15_c00074{word-spacing:15.768000px;}
.ws10_c00074{word-spacing:16.128000px;}
.ws11_c00074{word-spacing:16.200000px;}
.wsb_c00074{word-spacing:18.288000px;}
.ws19_c00074{word-spacing:21.816000px;}
.ws1a_c00074{word-spacing:21.960000px;}
.ws16_c00074{word-spacing:22.608000px;}
.ws14_c00074{word-spacing:25.488000px;}
.ws18_c00074{word-spacing:27.000000px;}
.ws13_c00074{word-spacing:29.376000px;}
.ws12_c00074{word-spacing:29.520000px;}
.ws17_c00074{word-spacing:46.368000px;}
._5_c00074{margin-left:-20.631600px;}
._7_c00074{margin-left:-13.933440px;}
._b_c00074{margin-left:-10.115280px;}
._9_c00074{margin-left:-7.652160px;}
._6_c00074{margin-left:-5.976000px;}
._2_c00074{margin-left:-4.176000px;}
._3_c00074{margin-left:-2.372400px;}
._1_c00074{margin-left:-1.058400px;}
._0_c00074{width:1.220400px;}
._a_c00074{width:9.936000px;}
._c_c00074{width:13.420800px;}
._4_c00074{width:14.760000px;}
._8_c00074{width:29.160000px;}
.fc0_c00074{color:rgb(0,0,0);}
.fs2_c00074{font-size:51.120000px;}
.fs0_c00074{font-size:54.000000px;}
.fs1_c00074{font-size:72.000000px;}
.y0_c00074{bottom:0.000000px;}
.y2a_c00074{bottom:57.240000px;}
.y29_c00074{bottom:110.520000px;}
.y28_c00074{bottom:141.570000px;}
.y27_c00074{bottom:172.620000px;}
.y26_c00074{bottom:203.670000px;}
.y25_c00074{bottom:234.720000px;}
.y24_c00074{bottom:265.770000px;}
.y23_c00074{bottom:296.820000px;}
.y22_c00074{bottom:328.410000px;}
.y21_c00074{bottom:360.720000px;}
.y20_c00074{bottom:392.220000px;}
.y1f_c00074{bottom:424.530000px;}
.y1e_c00074{bottom:455.580000px;}
.y1d_c00074{bottom:486.630000px;}
.y1c_c00074{bottom:517.680000px;}
.y1b_c00074{bottom:548.730000px;}
.y1a_c00074{bottom:579.780000px;}
.y19_c00074{bottom:610.830000px;}
.y18_c00074{bottom:641.880000px;}
.y17_c00074{bottom:672.930000px;}
.y16_c00074{bottom:703.980000px;}
.y15_c00074{bottom:735.030000px;}
.y13_c00074{bottom:766.080000px;}
.y14_c00074{bottom:766.800000px;}
.y12_c00074{bottom:798.030000px;}
.y10_c00074{bottom:829.170000px;}
.y11_c00074{bottom:829.890000px;}
.ye_c00074{bottom:861.030000px;}
.yf_c00074{bottom:861.750000px;}
.yd_c00074{bottom:892.980000px;}
.yc_c00074{bottom:924.030000px;}
.yb_c00074{bottom:955.080000px;}
.ya_c00074{bottom:986.130000px;}
.y9_c00074{bottom:1017.180000px;}
.y8_c00074{bottom:1048.230000px;}
.y7_c00074{bottom:1079.280000px;}
.y6_c00074{bottom:1110.330000px;}
.y5_c00074{bottom:1131.030000px;}
.y4_c00074{bottom:1150.920000px;}
.y3_c00074{bottom:1166.404500px;}
.y2_c00074{bottom:1181.970000px;}
.y1_c00074{bottom:1197.450000px;}
.h3_c00074{height:52.971680px;}
.h2_c00074{height:52.998047px;}
.h4_c00074{height:70.664062px;}
.h5_c00074{height:75.093750px;}
.h6_c00074{height:143.542969px;}
.h0_c00074{height:1262.880000px;}
.h1_c00074{height:1263.000000px;}
.w0_c00074{width:893.070000px;}
.w1_c00074{width:893.250000px;}
.x0_c00074{left:0.000000px;}
.x3_c00074{left:127.620000px;}
.x4_c00074{left:154.620000px;}
.xc_c00074{left:181.620000px;}
.x9_c00074{left:291.420000px;}
.x5_c00074{left:324.540000px;}
.xa_c00074{left:372.240000px;}
.xd_c00074{left:379.170000px;}
.xe_c00074{left:381.240000px;}
.x6_c00074{left:405.720000px;}
.x2_c00074{left:425.160000px;}
.x1_c00074{left:446.580000px;}
.xb_c00074{left:464.490000px;}
.x7_c00074{left:497.970000px;}
.x8_c00074{left:512.550000px;}
.xf_c00074{left:747.540000px;}
@media print{
.vb_c00074{vertical-align:-25.263360pt;}
.v7_c00074{vertical-align:-24.002560pt;}
.v5_c00074{vertical-align:-16.000000pt;}
.v1_c00074{vertical-align:-13.120000pt;}
.v4_c00074{vertical-align:-2.560000pt;}
.v0_c00074{vertical-align:0.000000pt;}
.v3_c00074{vertical-align:2.560000pt;}
.v2_c00074{vertical-align:13.120000pt;}
.v9_c00074{vertical-align:15.680000pt;}
.v8_c00074{vertical-align:20.800000pt;}
.v6_c00074{vertical-align:37.442560pt;}
.va_c00074{vertical-align:40.623360pt;}
.ls1b_c00074{letter-spacing:-0.512000pt;}
.ls1c_c00074{letter-spacing:-0.128000pt;}
.ls19_c00074{letter-spacing:-0.096000pt;}
.ls1d_c00074{letter-spacing:-0.064000pt;}
.ls18_c00074{letter-spacing:0.000000pt;}
.ls4_c00074{letter-spacing:0.064000pt;}
.ls1a_c00074{letter-spacing:0.128000pt;}
.ls17_c00074{letter-spacing:0.320000pt;}
.lse_c00074{letter-spacing:1.152000pt;}
.ls1_c00074{letter-spacing:1.920000pt;}
.ls15_c00074{letter-spacing:2.481280pt;}
.ls2_c00074{letter-spacing:2.490240pt;}
.ls10_c00074{letter-spacing:2.494720pt;}
.ls14_c00074{letter-spacing:2.504320pt;}
.lsd_c00074{letter-spacing:2.810240pt;}
.lsb_c00074{letter-spacing:3.840000pt;}
.lsf_c00074{letter-spacing:4.006400pt;}
.ls16_c00074{letter-spacing:4.210560pt;}
.ls3_c00074{letter-spacing:10.624000pt;}
.lsc_c00074{letter-spacing:14.400000pt;}
.ls7_c00074{letter-spacing:17.600000pt;}
.ls8_c00074{letter-spacing:17.792000pt;}
.ls13_c00074{letter-spacing:20.414720pt;}
.ls0_c00074{letter-spacing:21.248000pt;}
.ls12_c00074{letter-spacing:26.560000pt;}
.ls11_c00074{letter-spacing:27.328000pt;}
.ls9_c00074{letter-spacing:38.019840pt;}
.ls5_c00074{letter-spacing:39.206400pt;}
.ls6_c00074{letter-spacing:62.464000pt;}
.lsa_c00074{letter-spacing:80.064000pt;}
.ws2_c00074{word-spacing:-64.000000pt;}
.ws4_c00074{word-spacing:-63.872000pt;}
.ws6_c00074{word-spacing:-45.440000pt;}
.ws1_c00074{word-spacing:-16.128000pt;}
.ws0_c00074{word-spacing:-16.000000pt;}
.ws7_c00074{word-spacing:-15.936000pt;}
.ws3_c00074{word-spacing:-15.488000pt;}
.ws5_c00074{word-spacing:-14.080000pt;}
.wsd_c00074{word-spacing:-0.064000pt;}
.ws8_c00074{word-spacing:0.000000pt;}
.wsa_c00074{word-spacing:0.144000pt;}
.ws9_c00074{word-spacing:0.240000pt;}
.ws1d_c00074{word-spacing:0.320000pt;}
.wsf_c00074{word-spacing:1.856000pt;}
.ws1b_c00074{word-spacing:3.136000pt;}
.ws1c_c00074{word-spacing:3.456000pt;}
.wsc_c00074{word-spacing:4.416000pt;}
.wse_c00074{word-spacing:10.496000pt;}
.ws1f_c00074{word-spacing:11.776000pt;}
.ws1e_c00074{word-spacing:12.096000pt;}
.ws20_c00074{word-spacing:12.160000pt;}
.ws15_c00074{word-spacing:14.016000pt;}
.ws10_c00074{word-spacing:14.336000pt;}
.ws11_c00074{word-spacing:14.400000pt;}
.wsb_c00074{word-spacing:16.256000pt;}
.ws19_c00074{word-spacing:19.392000pt;}
.ws1a_c00074{word-spacing:19.520000pt;}
.ws16_c00074{word-spacing:20.096000pt;}
.ws14_c00074{word-spacing:22.656000pt;}
.ws18_c00074{word-spacing:24.000000pt;}
.ws13_c00074{word-spacing:26.112000pt;}
.ws12_c00074{word-spacing:26.240000pt;}
.ws17_c00074{word-spacing:41.216000pt;}
._5_c00074{margin-left:-18.339200pt;}
._7_c00074{margin-left:-12.385280pt;}
._b_c00074{margin-left:-8.991360pt;}
._9_c00074{margin-left:-6.801920pt;}
._6_c00074{margin-left:-5.312000pt;}
._2_c00074{margin-left:-3.712000pt;}
._3_c00074{margin-left:-2.108800pt;}
._1_c00074{margin-left:-0.940800pt;}
._0_c00074{width:1.084800pt;}
._a_c00074{width:8.832000pt;}
._c_c00074{width:11.929600pt;}
._4_c00074{width:13.120000pt;}
._8_c00074{width:25.920000pt;}
.fs2_c00074{font-size:45.440000pt;}
.fs0_c00074{font-size:48.000000pt;}
.fs1_c00074{font-size:64.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y2a_c00074{bottom:50.880000pt;}
.y29_c00074{bottom:98.240000pt;}
.y28_c00074{bottom:125.840000pt;}
.y27_c00074{bottom:153.440000pt;}
.y26_c00074{bottom:181.040000pt;}
.y25_c00074{bottom:208.640000pt;}
.y24_c00074{bottom:236.240000pt;}
.y23_c00074{bottom:263.840000pt;}
.y22_c00074{bottom:291.920000pt;}
.y21_c00074{bottom:320.640000pt;}
.y20_c00074{bottom:348.640000pt;}
.y1f_c00074{bottom:377.360000pt;}
.y1e_c00074{bottom:404.960000pt;}
.y1d_c00074{bottom:432.560000pt;}
.y1c_c00074{bottom:460.160000pt;}
.y1b_c00074{bottom:487.760000pt;}
.y1a_c00074{bottom:515.360000pt;}
.y19_c00074{bottom:542.960000pt;}
.y18_c00074{bottom:570.560000pt;}
.y17_c00074{bottom:598.160000pt;}
.y16_c00074{bottom:625.760000pt;}
.y15_c00074{bottom:653.360000pt;}
.y13_c00074{bottom:680.960000pt;}
.y14_c00074{bottom:681.600000pt;}
.y12_c00074{bottom:709.360000pt;}
.y10_c00074{bottom:737.040000pt;}
.y11_c00074{bottom:737.680000pt;}
.ye_c00074{bottom:765.360000pt;}
.yf_c00074{bottom:766.000000pt;}
.yd_c00074{bottom:793.760000pt;}
.yc_c00074{bottom:821.360000pt;}
.yb_c00074{bottom:848.960000pt;}
.ya_c00074{bottom:876.560000pt;}
.y9_c00074{bottom:904.160000pt;}
.y8_c00074{bottom:931.760000pt;}
.y7_c00074{bottom:959.360000pt;}
.y6_c00074{bottom:986.960000pt;}
.y5_c00074{bottom:1005.360000pt;}
.y4_c00074{bottom:1023.040000pt;}
.y3_c00074{bottom:1036.804000pt;}
.y2_c00074{bottom:1050.640000pt;}
.y1_c00074{bottom:1064.400000pt;}
.h3_c00074{height:47.085938pt;}
.h2_c00074{height:47.109375pt;}
.h4_c00074{height:62.812500pt;}
.h5_c00074{height:66.750000pt;}
.h6_c00074{height:127.593750pt;}
.h0_c00074{height:1122.560000pt;}
.h1_c00074{height:1122.666667pt;}
.w0_c00074{width:793.840000pt;}
.w1_c00074{width:794.000000pt;}
.x0_c00074{left:0.000000pt;}
.x3_c00074{left:113.440000pt;}
.x4_c00074{left:137.440000pt;}
.xc_c00074{left:161.440000pt;}
.x9_c00074{left:259.040000pt;}
.x5_c00074{left:288.480000pt;}
.xa_c00074{left:330.880000pt;}
.xd_c00074{left:337.040000pt;}
.xe_c00074{left:338.880000pt;}
.x6_c00074{left:360.640000pt;}
.x2_c00074{left:377.920000pt;}
.x1_c00074{left:396.960000pt;}
.xb_c00074{left:412.880000pt;}
.x7_c00074{left:442.640000pt;}
.x8_c00074{left:455.600000pt;}
.xf_c00074{left:664.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_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_672f8b9d464f0a36f5480fe7.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00075;src:url('chunks/assets/font_bef366a409fc2dd863d2d642.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00075;src:url('chunks/assets/font_2396b67d7a0246f8cd9266cb.woff2')format("woff");}.ff4_c00075{font-family:ff4_c00075;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:ff5_c00075;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00075{font-family:ff5_c00075;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00075;src:url('chunks/assets/font_dba95569183829a4589ba4b7.woff2')format("woff");}.ff6_c00075{font-family:ff6_c00075;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00075;src:url('chunks/assets/font_5cc74d4fdda03c349bec8609.woff2')format("woff");}.ff7_c00075{font-family:ff7_c00075;line-height:1.142090;font-style: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);}
.v1_c00075{vertical-align:-61.938000px;}
.v2_c00075{vertical-align:-14.760000px;}
.v0_c00075{vertical-align:0.000000px;}
.v4_c00075{vertical-align:2.880000px;}
.v3_c00075{vertical-align:14.760000px;}
.ls1d_c00075{letter-spacing:-0.576000px;}
.ls1e_c00075{letter-spacing:-0.072000px;}
.ls1c_c00075{letter-spacing:0.000000px;}
.ls1a_c00075{letter-spacing:0.014400px;}
.ls5_c00075{letter-spacing:0.072000px;}
.ls1_c00075{letter-spacing:0.144000px;}
.ls3_c00075{letter-spacing:0.360000px;}
.ls6_c00075{letter-spacing:0.720000px;}
.ls18_c00075{letter-spacing:1.800000px;}
.lsb_c00075{letter-spacing:1.840320px;}
.ls1b_c00075{letter-spacing:1.944000px;}
.ls14_c00075{letter-spacing:2.160000px;}
.ls15_c00075{letter-spacing:2.520000px;}
.ls2_c00075{letter-spacing:3.161520px;}
.lsf_c00075{letter-spacing:4.736880px;}
.ls10_c00075{letter-spacing:4.824720px;}
.ls12_c00075{letter-spacing:5.400000px;}
.lse_c00075{letter-spacing:7.920000px;}
.lsc_c00075{letter-spacing:12.240000px;}
.lsd_c00075{letter-spacing:12.744720px;}
.ls9_c00075{letter-spacing:17.280000px;}
.ls13_c00075{letter-spacing:18.000000px;}
.ls11_c00075{letter-spacing:19.872000px;}
.lsa_c00075{letter-spacing:20.016000px;}
.ls16_c00075{letter-spacing:23.904000px;}
.ls19_c00075{letter-spacing:24.480000px;}
.ls8_c00075{letter-spacing:30.744000px;}
.ls4_c00075{letter-spacing:31.680000px;}
.ls7_c00075{letter-spacing:47.887200px;}
.ls17_c00075{letter-spacing:54.864000px;}
.ls0_c00075{letter-spacing:319.518000px;}
.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:-72.000000px;}
.ws2_c00075{word-spacing:-18.144000px;}
.ws1_c00075{word-spacing:-18.072000px;}
.ws4_c00075{word-spacing:-15.840000px;}
.ws1c_c00075{word-spacing:-0.432000px;}
.ws6_c00075{word-spacing:-0.162000px;}
.ws8_c00075{word-spacing:-0.072000px;}
.ws5_c00075{word-spacing:0.000000px;}
.ws20_c00075{word-spacing:0.072000px;}
.ws9_c00075{word-spacing:0.216000px;}
.wsa_c00075{word-spacing:0.360000px;}
.ws1e_c00075{word-spacing:0.576000px;}
.ws10_c00075{word-spacing:0.720000px;}
.ws1b_c00075{word-spacing:2.520000px;}
.ws3_c00075{word-spacing:4.176000px;}
.wse_c00075{word-spacing:4.248000px;}
.wsf_c00075{word-spacing:4.320000px;}
.ws1d_c00075{word-spacing:5.256000px;}
.ws17_c00075{word-spacing:5.328000px;}
.ws18_c00075{word-spacing:5.400000px;}
.ws1f_c00075{word-spacing:6.048000px;}
.ws21_c00075{word-spacing:7.848000px;}
.ws25_c00075{word-spacing:10.008000px;}
.ws7_c00075{word-spacing:14.400000px;}
.ws28_c00075{word-spacing:14.688000px;}
.ws27_c00075{word-spacing:14.760000px;}
.wsb_c00075{word-spacing:15.768000px;}
.ws26_c00075{word-spacing:16.776000px;}
.ws13_c00075{word-spacing:16.848000px;}
.ws14_c00075{word-spacing:16.920000px;}
.ws16_c00075{word-spacing:17.208000px;}
.ws15_c00075{word-spacing:17.280000px;}
.ws19_c00075{word-spacing:17.928000px;}
.ws1a_c00075{word-spacing:18.000000px;}
.ws22_c00075{word-spacing:24.408000px;}
.ws23_c00075{word-spacing:24.480000px;}
.wsc_c00075{word-spacing:31.320000px;}
.wsd_c00075{word-spacing:31.608000px;}
.ws24_c00075{word-spacing:35.928000px;}
.ws11_c00075{word-spacing:47.808000px;}
.ws12_c00075{word-spacing:47.880000px;}
._9_c00075{margin-left:-9.360000px;}
._6_c00075{margin-left:-7.560000px;}
._7_c00075{margin-left:-3.240000px;}
._0_c00075{margin-left:-1.087200px;}
._1_c00075{width:1.022400px;}
._5_c00075{width:2.442960px;}
._a_c00075{width:5.472000px;}
._c_c00075{width:7.992000px;}
._8_c00075{width:11.880000px;}
._d_c00075{width:15.998400px;}
._b_c00075{width:20.426400px;}
._4_c00075{width:21.765600px;}
._2_c00075{width:46.944000px;}
._3_c00075{width:47.952000px;}
.fc0_c00075{color:rgb(0,0,0);}
.fs2_c00075{font-size:51.120000px;}
.fs0_c00075{font-size:54.000000px;}
.fs1_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y26_c00075{bottom:57.240000px;}
.y25_c00075{bottom:113.580000px;}
.y24_c00075{bottom:144.630000px;}
.y23_c00075{bottom:175.680000px;}
.y22_c00075{bottom:206.730000px;}
.y21_c00075{bottom:237.780000px;}
.y20_c00075{bottom:268.830000px;}
.y1f_c00075{bottom:299.880000px;}
.y1e_c00075{bottom:331.020000px;}
.y1d_c00075{bottom:362.700000px;}
.y1c_c00075{bottom:394.110000px;}
.y1b_c00075{bottom:426.510000px;}
.y1a_c00075{bottom:457.560000px;}
.y19_c00075{bottom:489.960000px;}
.y18_c00075{bottom:520.920000px;}
.y17_c00075{bottom:551.970000px;}
.y16_c00075{bottom:583.020000px;}
.y15_c00075{bottom:614.070000px;}
.y14_c00075{bottom:645.300000px;}
.y13_c00075{bottom:679.140000px;}
.y12_c00075{bottom:714.510000px;}
.y11_c00075{bottom:747.540000px;}
.y10_c00075{bottom:778.590000px;}
.yf_c00075{bottom:799.290000px;}
.ye_c00075{bottom:830.340000px;}
.yd_c00075{bottom:861.390000px;}
.yc_c00075{bottom:892.440000px;}
.yb_c00075{bottom:923.490000px;}
.ya_c00075{bottom:954.540000px;}
.y9_c00075{bottom:985.590000px;}
.y8_c00075{bottom:1016.640000px;}
.y7_c00075{bottom:1047.780000px;}
.y6_c00075{bottom:1079.280000px;}
.y5_c00075{bottom:1110.330000px;}
.y4_c00075{bottom:1131.030000px;}
.y3_c00075{bottom:1150.915500px;}
.y2_c00075{bottom:1166.400000px;}
.y1_c00075{bottom:1197.450000px;}
.h2_c00075{height:52.998047px;}
.h3_c00075{height:70.664062px;}
.h5_c00075{height:75.093750px;}
.h4_c00075{height:143.542969px;}
.h0_c00075{height:1262.880000px;}
.h1_c00075{height:1263.000000px;}
.w0_c00075{width:893.070000px;}
.w1_c00075{width:893.250000px;}
.x0_c00075{left:0.000000px;}
.x2_c00075{left:127.620000px;}
.x3_c00075{left:154.620000px;}
.x4_c00075{left:181.620000px;}
.x5_c00075{left:208.620000px;}
.x6_c00075{left:235.620000px;}
.x1_c00075{left:446.580000px;}
@media print{
.v1_c00075{vertical-align:-55.056000pt;}
.v2_c00075{vertical-align:-13.120000pt;}
.v0_c00075{vertical-align:0.000000pt;}
.v4_c00075{vertical-align:2.560000pt;}
.v3_c00075{vertical-align:13.120000pt;}
.ls1d_c00075{letter-spacing:-0.512000pt;}
.ls1e_c00075{letter-spacing:-0.064000pt;}
.ls1c_c00075{letter-spacing:0.000000pt;}
.ls1a_c00075{letter-spacing:0.012800pt;}
.ls5_c00075{letter-spacing:0.064000pt;}
.ls1_c00075{letter-spacing:0.128000pt;}
.ls3_c00075{letter-spacing:0.320000pt;}
.ls6_c00075{letter-spacing:0.640000pt;}
.ls18_c00075{letter-spacing:1.600000pt;}
.lsb_c00075{letter-spacing:1.635840pt;}
.ls1b_c00075{letter-spacing:1.728000pt;}
.ls14_c00075{letter-spacing:1.920000pt;}
.ls15_c00075{letter-spacing:2.240000pt;}
.ls2_c00075{letter-spacing:2.810240pt;}
.lsf_c00075{letter-spacing:4.210560pt;}
.ls10_c00075{letter-spacing:4.288640pt;}
.ls12_c00075{letter-spacing:4.800000pt;}
.lse_c00075{letter-spacing:7.040000pt;}
.lsc_c00075{letter-spacing:10.880000pt;}
.lsd_c00075{letter-spacing:11.328640pt;}
.ls9_c00075{letter-spacing:15.360000pt;}
.ls13_c00075{letter-spacing:16.000000pt;}
.ls11_c00075{letter-spacing:17.664000pt;}
.lsa_c00075{letter-spacing:17.792000pt;}
.ls16_c00075{letter-spacing:21.248000pt;}
.ls19_c00075{letter-spacing:21.760000pt;}
.ls8_c00075{letter-spacing:27.328000pt;}
.ls4_c00075{letter-spacing:28.160000pt;}
.ls7_c00075{letter-spacing:42.566400pt;}
.ls17_c00075{letter-spacing:48.768000pt;}
.ls0_c00075{letter-spacing:284.016000pt;}
.ws0_c00075{word-spacing:-64.000000pt;}
.ws2_c00075{word-spacing:-16.128000pt;}
.ws1_c00075{word-spacing:-16.064000pt;}
.ws4_c00075{word-spacing:-14.080000pt;}
.ws1c_c00075{word-spacing:-0.384000pt;}
.ws6_c00075{word-spacing:-0.144000pt;}
.ws8_c00075{word-spacing:-0.064000pt;}
.ws5_c00075{word-spacing:0.000000pt;}
.ws20_c00075{word-spacing:0.064000pt;}
.ws9_c00075{word-spacing:0.192000pt;}
.wsa_c00075{word-spacing:0.320000pt;}
.ws1e_c00075{word-spacing:0.512000pt;}
.ws10_c00075{word-spacing:0.640000pt;}
.ws1b_c00075{word-spacing:2.240000pt;}
.ws3_c00075{word-spacing:3.712000pt;}
.wse_c00075{word-spacing:3.776000pt;}
.wsf_c00075{word-spacing:3.840000pt;}
.ws1d_c00075{word-spacing:4.672000pt;}
.ws17_c00075{word-spacing:4.736000pt;}
.ws18_c00075{word-spacing:4.800000pt;}
.ws1f_c00075{word-spacing:5.376000pt;}
.ws21_c00075{word-spacing:6.976000pt;}
.ws25_c00075{word-spacing:8.896000pt;}
.ws7_c00075{word-spacing:12.800000pt;}
.ws28_c00075{word-spacing:13.056000pt;}
.ws27_c00075{word-spacing:13.120000pt;}
.wsb_c00075{word-spacing:14.016000pt;}
.ws26_c00075{word-spacing:14.912000pt;}
.ws13_c00075{word-spacing:14.976000pt;}
.ws14_c00075{word-spacing:15.040000pt;}
.ws16_c00075{word-spacing:15.296000pt;}
.ws15_c00075{word-spacing:15.360000pt;}
.ws19_c00075{word-spacing:15.936000pt;}
.ws1a_c00075{word-spacing:16.000000pt;}
.ws22_c00075{word-spacing:21.696000pt;}
.ws23_c00075{word-spacing:21.760000pt;}
.wsc_c00075{word-spacing:27.840000pt;}
.wsd_c00075{word-spacing:28.096000pt;}
.ws24_c00075{word-spacing:31.936000pt;}
.ws11_c00075{word-spacing:42.496000pt;}
.ws12_c00075{word-spacing:42.560000pt;}
._9_c00075{margin-left:-8.320000pt;}
._6_c00075{margin-left:-6.720000pt;}
._7_c00075{margin-left:-2.880000pt;}
._0_c00075{margin-left:-0.966400pt;}
._1_c00075{width:0.908800pt;}
._5_c00075{width:2.171520pt;}
._a_c00075{width:4.864000pt;}
._c_c00075{width:7.104000pt;}
._8_c00075{width:10.560000pt;}
._d_c00075{width:14.220800pt;}
._b_c00075{width:18.156800pt;}
._4_c00075{width:19.347200pt;}
._2_c00075{width:41.728000pt;}
._3_c00075{width:42.624000pt;}
.fs2_c00075{font-size:45.440000pt;}
.fs0_c00075{font-size:48.000000pt;}
.fs1_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y26_c00075{bottom:50.880000pt;}
.y25_c00075{bottom:100.960000pt;}
.y24_c00075{bottom:128.560000pt;}
.y23_c00075{bottom:156.160000pt;}
.y22_c00075{bottom:183.760000pt;}
.y21_c00075{bottom:211.360000pt;}
.y20_c00075{bottom:238.960000pt;}
.y1f_c00075{bottom:266.560000pt;}
.y1e_c00075{bottom:294.240000pt;}
.y1d_c00075{bottom:322.400000pt;}
.y1c_c00075{bottom:350.320000pt;}
.y1b_c00075{bottom:379.120000pt;}
.y1a_c00075{bottom:406.720000pt;}
.y19_c00075{bottom:435.520000pt;}
.y18_c00075{bottom:463.040000pt;}
.y17_c00075{bottom:490.640000pt;}
.y16_c00075{bottom:518.240000pt;}
.y15_c00075{bottom:545.840000pt;}
.y14_c00075{bottom:573.600000pt;}
.y13_c00075{bottom:603.680000pt;}
.y12_c00075{bottom:635.120000pt;}
.y11_c00075{bottom:664.480000pt;}
.y10_c00075{bottom:692.080000pt;}
.yf_c00075{bottom:710.480000pt;}
.ye_c00075{bottom:738.080000pt;}
.yd_c00075{bottom:765.680000pt;}
.yc_c00075{bottom:793.280000pt;}
.yb_c00075{bottom:820.880000pt;}
.ya_c00075{bottom:848.480000pt;}
.y9_c00075{bottom:876.080000pt;}
.y8_c00075{bottom:903.680000pt;}
.y7_c00075{bottom:931.360000pt;}
.y6_c00075{bottom:959.360000pt;}
.y5_c00075{bottom:986.960000pt;}
.y4_c00075{bottom:1005.360000pt;}
.y3_c00075{bottom:1023.036000pt;}
.y2_c00075{bottom:1036.800000pt;}
.y1_c00075{bottom:1064.400000pt;}
.h2_c00075{height:47.109375pt;}
.h3_c00075{height:62.812500pt;}
.h5_c00075{height:66.750000pt;}
.h4_c00075{height:127.593750pt;}
.h0_c00075{height:1122.560000pt;}
.h1_c00075{height:1122.666667pt;}
.w0_c00075{width:793.840000pt;}
.w1_c00075{width:794.000000pt;}
.x0_c00075{left:0.000000pt;}
.x2_c00075{left:113.440000pt;}
.x3_c00075{left:137.440000pt;}
.x4_c00075{left:161.440000pt;}
.x5_c00075{left:185.440000pt;}
.x6_c00075{left:209.440000pt;}
.x1_c00075{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c27e08e09f748c7362996e2.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00076;src:url('chunks/assets/font_eaca1595fdcf86e8a976d8a9.woff2')format("woff");}.ff3_c00076{font-family:ff3_c00076;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_c00076;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00076{font-family:ff4_c00076;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00076;src:url('chunks/assets/font_1592e33f005364666d2f27a3.woff2')format("woff");}.ff5_c00076{font-family:ff5_c00076;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00076;src:url('chunks/assets/font_713f5833e4abb914599005c9.woff2')format("woff");}.ff6_c00076{font-family:ff6_c00076;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.va_c00076{vertical-align:-62.986680px;}
.vb_c00076{vertical-align:-15.846480px;}
.v1_c00076{vertical-align:-14.760000px;}
.v7_c00076{vertical-align:-11.526480px;}
.v3_c00076{vertical-align:-2.880000px;}
.v8_c00076{vertical-align:-1.086480px;}
.v0_c00076{vertical-align:0.000000px;}
.v6_c00076{vertical-align:1.073520px;}
.v2_c00076{vertical-align:2.880000px;}
.v4_c00076{vertical-align:14.760000px;}
.v9_c00076{vertical-align:17.646480px;}
.vc_c00076{vertical-align:34.201440px;}
.v5_c00076{vertical-align:44.280000px;}
.vd_c00076{vertical-align:51.120000px;}
.ls1d_c00076{letter-spacing:-0.216000px;}
.ls1b_c00076{letter-spacing:-0.108000px;}
.ls1c_c00076{letter-spacing:-0.072000px;}
.ls1a_c00076{letter-spacing:0.000000px;}
.ls16_c00076{letter-spacing:0.025200px;}
.ls0_c00076{letter-spacing:0.072000px;}
.ls10_c00076{letter-spacing:0.144000px;}
.lsf_c00076{letter-spacing:0.360000px;}
.ls8_c00076{letter-spacing:0.792000px;}
.lse_c00076{letter-spacing:1.440000px;}
.ls7_c00076{letter-spacing:1.800000px;}
.ls5_c00076{letter-spacing:1.944000px;}
.ls14_c00076{letter-spacing:2.037240px;}
.ls18_c00076{letter-spacing:2.668320px;}
.ls15_c00076{letter-spacing:2.694240px;}
.ls13_c00076{letter-spacing:2.694960px;}
.ls4_c00076{letter-spacing:3.052080px;}
.lsa_c00076{letter-spacing:3.600000px;}
.lsd_c00076{letter-spacing:4.507200px;}
.ls9_c00076{letter-spacing:4.680000px;}
.ls19_c00076{letter-spacing:12.614400px;}
.ls3_c00076{letter-spacing:20.016000px;}
.ls6_c00076{letter-spacing:21.600000px;}
.ls11_c00076{letter-spacing:22.320000px;}
.ls2_c00076{letter-spacing:22.852080px;}
.lsc_c00076{letter-spacing:23.904000px;}
.lsb_c00076{letter-spacing:24.480000px;}
.ls1_c00076{letter-spacing:30.744000px;}
.ls12_c00076{letter-spacing:76.117680px;}
.ls17_c00076{letter-spacing:84.399120px;}
.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:-72.000000px;}
.ws1_c00076{word-spacing:-51.120000px;}
.ws8_c00076{word-spacing:-42.120000px;}
.ws5_c00076{word-spacing:-18.144000px;}
.ws6_c00076{word-spacing:-18.072000px;}
.ws3_c00076{word-spacing:-17.928000px;}
.ws4_c00076{word-spacing:-15.840000px;}
.ws7_c00076{word-spacing:-11.246400px;}
.ws17_c00076{word-spacing:-0.360000px;}
.wsd_c00076{word-spacing:-0.072000px;}
.wsa_c00076{word-spacing:0.000000px;}
.ws18_c00076{word-spacing:0.072000px;}
.wsc_c00076{word-spacing:0.162000px;}
.ws2_c00076{word-spacing:0.216000px;}
.wsb_c00076{word-spacing:0.270000px;}
.ws1c_c00076{word-spacing:1.440000px;}
.ws1b_c00076{word-spacing:1.728000px;}
.ws16_c00076{word-spacing:3.240000px;}
.wsf_c00076{word-spacing:3.528000px;}
.ws15_c00076{word-spacing:3.600000px;}
.wse_c00076{word-spacing:3.888000px;}
.ws10_c00076{word-spacing:3.960000px;}
.ws11_c00076{word-spacing:4.320000px;}
.ws14_c00076{word-spacing:4.608000px;}
.ws22_c00076{word-spacing:6.768000px;}
.ws21_c00076{word-spacing:6.840000px;}
.ws1e_c00076{word-spacing:10.008000px;}
.ws1d_c00076{word-spacing:10.080000px;}
.ws26_c00076{word-spacing:12.168000px;}
.ws25_c00076{word-spacing:12.456000px;}
.ws24_c00076{word-spacing:12.528000px;}
.ws23_c00076{word-spacing:19.440000px;}
.ws1f_c00076{word-spacing:20.808000px;}
.ws13_c00076{word-spacing:21.528000px;}
.ws12_c00076{word-spacing:21.600000px;}
.ws19_c00076{word-spacing:24.408000px;}
.ws1a_c00076{word-spacing:24.480000px;}
.ws20_c00076{word-spacing:26.928000px;}
.ws9_c00076{word-spacing:123.601320px;}
._8_c00076{margin-left:-23.979600px;}
._a_c00076{margin-left:-17.391600px;}
._9_c00076{margin-left:-9.492120px;}
._1_c00076{margin-left:-1.058400px;}
._0_c00076{width:1.220400px;}
._7_c00076{width:3.218400px;}
._5_c00076{width:10.368000px;}
._3_c00076{width:12.168000px;}
._2_c00076{width:18.606240px;}
._6_c00076{width:20.592000px;}
._4_c00076{width:24.364800px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs3_c00076{font-size:42.120000px;}
.fs2_c00076{font-size:51.120000px;}
.fs0_c00076{font-size:54.000000px;}
.fs1_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y2c_c00076{bottom:57.240000px;}
.y2b_c00076{bottom:125.460000px;}
.y2a_c00076{bottom:156.510000px;}
.y29_c00076{bottom:187.560000px;}
.y28_c00076{bottom:218.610000px;}
.y27_c00076{bottom:249.660000px;}
.y26_c00076{bottom:280.710000px;}
.y25_c00076{bottom:307.980000px;}
.y24_c00076{bottom:316.625130px;}
.y21_c00076{bottom:320.760000px;}
.y23_c00076{bottom:327.956670px;}
.y22_c00076{bottom:336.601800px;}
.y20_c00076{bottom:359.370000px;}
.y1f_c00076{bottom:390.420000px;}
.y1e_c00076{bottom:421.470000px;}
.y1d_c00076{bottom:452.520000px;}
.y1c_c00076{bottom:483.570000px;}
.y1b_c00076{bottom:514.620000px;}
.y1a_c00076{bottom:545.760000px;}
.y19_c00076{bottom:577.440000px;}
.y18_c00076{bottom:608.940000px;}
.y17_c00076{bottom:640.170000px;}
.y16_c00076{bottom:671.760000px;}
.y15_c00076{bottom:703.260000px;}
.y14_c00076{bottom:734.310000px;}
.y13_c00076{bottom:765.360000px;}
.y12_c00076{bottom:796.590000px;}
.y11_c00076{bottom:817.740000px;}
.y10_c00076{bottom:838.800000px;}
.yf_c00076{bottom:859.950000px;}
.ye_c00076{bottom:881.280000px;}
.yd_c00076{bottom:901.710000px;}
.yc_c00076{bottom:922.860000px;}
.yb_c00076{bottom:953.910000px;}
.ya_c00076{bottom:985.140000px;}
.y9_c00076{bottom:1016.640000px;}
.y8_c00076{bottom:1047.780000px;}
.y7_c00076{bottom:1079.280000px;}
.y6_c00076{bottom:1110.330000px;}
.y5_c00076{bottom:1131.030000px;}
.y4_c00076{bottom:1150.920000px;}
.y3_c00076{bottom:1166.404500px;}
.y2_c00076{bottom:1181.970000px;}
.y1_c00076{bottom:1197.450000px;}
.h3_c00076{height:52.971680px;}
.h2_c00076{height:52.998047px;}
.h4_c00076{height:70.664062px;}
.h5_c00076{height:75.093750px;}
.h9_c00076{height:83.972637px;}
.ha_c00076{height:121.784062px;}
.h7_c00076{height:140.662969px;}
.h6_c00076{height:143.542969px;}
.h8_c00076{height:146.195508px;}
.h0_c00076{height:1262.880000px;}
.h1_c00076{height:1263.000000px;}
.w0_c00076{width:893.070000px;}
.w1_c00076{width:893.250000px;}
.x0_c00076{left:0.000000px;}
.x3_c00076{left:127.620000px;}
.x5_c00076{left:154.620000px;}
.x6_c00076{left:181.620000px;}
.x7_c00076{left:357.390000px;}
.x4_c00076{left:367.200000px;}
.x8_c00076{left:404.911080px;}
.x2_c00076{left:425.160000px;}
.x9_c00076{left:430.744050px;}
.x1_c00076{left:446.580000px;}
.xa_c00076{left:747.540000px;}
@media print{
.va_c00076{vertical-align:-55.988160pt;}
.vb_c00076{vertical-align:-14.085760pt;}
.v1_c00076{vertical-align:-13.120000pt;}
.v7_c00076{vertical-align:-10.245760pt;}
.v3_c00076{vertical-align:-2.560000pt;}
.v8_c00076{vertical-align:-0.965760pt;}
.v0_c00076{vertical-align:0.000000pt;}
.v6_c00076{vertical-align:0.954240pt;}
.v2_c00076{vertical-align:2.560000pt;}
.v4_c00076{vertical-align:13.120000pt;}
.v9_c00076{vertical-align:15.685760pt;}
.vc_c00076{vertical-align:30.401280pt;}
.v5_c00076{vertical-align:39.360000pt;}
.vd_c00076{vertical-align:45.440000pt;}
.ls1d_c00076{letter-spacing:-0.192000pt;}
.ls1b_c00076{letter-spacing:-0.096000pt;}
.ls1c_c00076{letter-spacing:-0.064000pt;}
.ls1a_c00076{letter-spacing:0.000000pt;}
.ls16_c00076{letter-spacing:0.022400pt;}
.ls0_c00076{letter-spacing:0.064000pt;}
.ls10_c00076{letter-spacing:0.128000pt;}
.lsf_c00076{letter-spacing:0.320000pt;}
.ls8_c00076{letter-spacing:0.704000pt;}
.lse_c00076{letter-spacing:1.280000pt;}
.ls7_c00076{letter-spacing:1.600000pt;}
.ls5_c00076{letter-spacing:1.728000pt;}
.ls14_c00076{letter-spacing:1.810880pt;}
.ls18_c00076{letter-spacing:2.371840pt;}
.ls15_c00076{letter-spacing:2.394880pt;}
.ls13_c00076{letter-spacing:2.395520pt;}
.ls4_c00076{letter-spacing:2.712960pt;}
.lsa_c00076{letter-spacing:3.200000pt;}
.lsd_c00076{letter-spacing:4.006400pt;}
.ls9_c00076{letter-spacing:4.160000pt;}
.ls19_c00076{letter-spacing:11.212800pt;}
.ls3_c00076{letter-spacing:17.792000pt;}
.ls6_c00076{letter-spacing:19.200000pt;}
.ls11_c00076{letter-spacing:19.840000pt;}
.ls2_c00076{letter-spacing:20.312960pt;}
.lsc_c00076{letter-spacing:21.248000pt;}
.lsb_c00076{letter-spacing:21.760000pt;}
.ls1_c00076{letter-spacing:27.328000pt;}
.ls12_c00076{letter-spacing:67.660160pt;}
.ls17_c00076{letter-spacing:75.021440pt;}
.ws0_c00076{word-spacing:-64.000000pt;}
.ws1_c00076{word-spacing:-45.440000pt;}
.ws8_c00076{word-spacing:-37.440000pt;}
.ws5_c00076{word-spacing:-16.128000pt;}
.ws6_c00076{word-spacing:-16.064000pt;}
.ws3_c00076{word-spacing:-15.936000pt;}
.ws4_c00076{word-spacing:-14.080000pt;}
.ws7_c00076{word-spacing:-9.996800pt;}
.ws17_c00076{word-spacing:-0.320000pt;}
.wsd_c00076{word-spacing:-0.064000pt;}
.wsa_c00076{word-spacing:0.000000pt;}
.ws18_c00076{word-spacing:0.064000pt;}
.wsc_c00076{word-spacing:0.144000pt;}
.ws2_c00076{word-spacing:0.192000pt;}
.wsb_c00076{word-spacing:0.240000pt;}
.ws1c_c00076{word-spacing:1.280000pt;}
.ws1b_c00076{word-spacing:1.536000pt;}
.ws16_c00076{word-spacing:2.880000pt;}
.wsf_c00076{word-spacing:3.136000pt;}
.ws15_c00076{word-spacing:3.200000pt;}
.wse_c00076{word-spacing:3.456000pt;}
.ws10_c00076{word-spacing:3.520000pt;}
.ws11_c00076{word-spacing:3.840000pt;}
.ws14_c00076{word-spacing:4.096000pt;}
.ws22_c00076{word-spacing:6.016000pt;}
.ws21_c00076{word-spacing:6.080000pt;}
.ws1e_c00076{word-spacing:8.896000pt;}
.ws1d_c00076{word-spacing:8.960000pt;}
.ws26_c00076{word-spacing:10.816000pt;}
.ws25_c00076{word-spacing:11.072000pt;}
.ws24_c00076{word-spacing:11.136000pt;}
.ws23_c00076{word-spacing:17.280000pt;}
.ws1f_c00076{word-spacing:18.496000pt;}
.ws13_c00076{word-spacing:19.136000pt;}
.ws12_c00076{word-spacing:19.200000pt;}
.ws19_c00076{word-spacing:21.696000pt;}
.ws1a_c00076{word-spacing:21.760000pt;}
.ws20_c00076{word-spacing:23.936000pt;}
.ws9_c00076{word-spacing:109.867840pt;}
._8_c00076{margin-left:-21.315200pt;}
._a_c00076{margin-left:-15.459200pt;}
._9_c00076{margin-left:-8.437440pt;}
._1_c00076{margin-left:-0.940800pt;}
._0_c00076{width:1.084800pt;}
._7_c00076{width:2.860800pt;}
._5_c00076{width:9.216000pt;}
._3_c00076{width:10.816000pt;}
._2_c00076{width:16.538880pt;}
._6_c00076{width:18.304000pt;}
._4_c00076{width:21.657600pt;}
.fs3_c00076{font-size:37.440000pt;}
.fs2_c00076{font-size:45.440000pt;}
.fs0_c00076{font-size:48.000000pt;}
.fs1_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y2c_c00076{bottom:50.880000pt;}
.y2b_c00076{bottom:111.520000pt;}
.y2a_c00076{bottom:139.120000pt;}
.y29_c00076{bottom:166.720000pt;}
.y28_c00076{bottom:194.320000pt;}
.y27_c00076{bottom:221.920000pt;}
.y26_c00076{bottom:249.520000pt;}
.y25_c00076{bottom:273.760000pt;}
.y24_c00076{bottom:281.444560pt;}
.y21_c00076{bottom:285.120000pt;}
.y23_c00076{bottom:291.517040pt;}
.y22_c00076{bottom:299.201600pt;}
.y20_c00076{bottom:319.440000pt;}
.y1f_c00076{bottom:347.040000pt;}
.y1e_c00076{bottom:374.640000pt;}
.y1d_c00076{bottom:402.240000pt;}
.y1c_c00076{bottom:429.840000pt;}
.y1b_c00076{bottom:457.440000pt;}
.y1a_c00076{bottom:485.120000pt;}
.y19_c00076{bottom:513.280000pt;}
.y18_c00076{bottom:541.280000pt;}
.y17_c00076{bottom:569.040000pt;}
.y16_c00076{bottom:597.120000pt;}
.y15_c00076{bottom:625.120000pt;}
.y14_c00076{bottom:652.720000pt;}
.y13_c00076{bottom:680.320000pt;}
.y12_c00076{bottom:708.080000pt;}
.y11_c00076{bottom:726.880000pt;}
.y10_c00076{bottom:745.600000pt;}
.yf_c00076{bottom:764.400000pt;}
.ye_c00076{bottom:783.360000pt;}
.yd_c00076{bottom:801.520000pt;}
.yc_c00076{bottom:820.320000pt;}
.yb_c00076{bottom:847.920000pt;}
.ya_c00076{bottom:875.680000pt;}
.y9_c00076{bottom:903.680000pt;}
.y8_c00076{bottom:931.360000pt;}
.y7_c00076{bottom:959.360000pt;}
.y6_c00076{bottom:986.960000pt;}
.y5_c00076{bottom:1005.360000pt;}
.y4_c00076{bottom:1023.040000pt;}
.y3_c00076{bottom:1036.804000pt;}
.y2_c00076{bottom:1050.640000pt;}
.y1_c00076{bottom:1064.400000pt;}
.h3_c00076{height:47.085938pt;}
.h2_c00076{height:47.109375pt;}
.h4_c00076{height:62.812500pt;}
.h5_c00076{height:66.750000pt;}
.h9_c00076{height:74.642344pt;}
.ha_c00076{height:108.252500pt;}
.h7_c00076{height:125.033750pt;}
.h6_c00076{height:127.593750pt;}
.h8_c00076{height:129.951563pt;}
.h0_c00076{height:1122.560000pt;}
.h1_c00076{height:1122.666667pt;}
.w0_c00076{width:793.840000pt;}
.w1_c00076{width:794.000000pt;}
.x0_c00076{left:0.000000pt;}
.x3_c00076{left:113.440000pt;}
.x5_c00076{left:137.440000pt;}
.x6_c00076{left:161.440000pt;}
.x7_c00076{left:317.680000pt;}
.x4_c00076{left:326.400000pt;}
.x8_c00076{left:359.920960pt;}
.x2_c00076{left:377.920000pt;}
.x9_c00076{left:382.883600pt;}
.x1_c00076{left:396.960000pt;}
.xa_c00076{left:664.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_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_7dfb910ad86dd2ba9782f9f8.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00077;src:url('chunks/assets/font_0667095311ba85fee5950667.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00077;src:url('chunks/assets/font_21bc3401ad89c138db9ff715.woff2')format("woff");}.ff4_c00077{font-family:ff4_c00077;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00077;src:url('chunks/assets/font_60a216daa1b0b476b4d001f2.woff2')format("woff");}.ff5_c00077{font-family:ff5_c00077;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00077;src:url('chunks/assets/font_64a5be8d59e39839bcf838ba.woff2')format("woff");}.ff6_c00077{font-family:ff6_c00077;line-height:0.921875;font-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_c00077{transform:matrix(0.209802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209802,0.000000,0.000000,0.250000,0,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);}
.vf_c00077{vertical-align:-147.960000px;}
.v10_c00077{vertical-align:-103.680000px;}
.v1_c00077{vertical-align:-61.938000px;}
.ve_c00077{vertical-align:-27.002880px;}
.v7_c00077{vertical-align:-21.241440px;}
.vb_c00077{vertical-align:-15.846480px;}
.v5_c00077{vertical-align:-14.046480px;}
.v9_c00077{vertical-align:-11.513520px;}
.v3_c00077{vertical-align:-2.147040px;}
.va_c00077{vertical-align:-1.073520px;}
.v0_c00077{vertical-align:0.000000px;}
.v4_c00077{vertical-align:1.073520px;}
.v8_c00077{vertical-align:2.147040px;}
.vc_c00077{vertical-align:16.918560px;}
.v6_c00077{vertical-align:34.201440px;}
.vd_c00077{vertical-align:42.122880px;}
.v2_c00077{vertical-align:44.280000px;}
.ls2f_c00077{letter-spacing:-0.584986px;}
.ls29_c00077{letter-spacing:-0.576000px;}
.ls27_c00077{letter-spacing:-0.420840px;}
.ls2a_c00077{letter-spacing:-0.378000px;}
.ls28_c00077{letter-spacing:-0.288000px;}
.ls26_c00077{letter-spacing:-0.180360px;}
.ls22_c00077{letter-spacing:-0.144000px;}
.ls25_c00077{letter-spacing:-0.120240px;}
.ls21_c00077{letter-spacing:-0.072000px;}
.ls23_c00077{letter-spacing:-0.060120px;}
.ls20_c00077{letter-spacing:0.000000px;}
.ls1f_c00077{letter-spacing:0.030874px;}
.ls2c_c00077{letter-spacing:0.061748px;}
.ls1b_c00077{letter-spacing:0.072000px;}
.ls1d_c00077{letter-spacing:0.120240px;}
.ls6_c00077{letter-spacing:0.126360px;}
.ls19_c00077{letter-spacing:0.144000px;}
.ls24_c00077{letter-spacing:0.180360px;}
.ls2d_c00077{letter-spacing:0.292493px;}
.ls18_c00077{letter-spacing:0.360000px;}
.ls2b_c00077{letter-spacing:0.389990px;}
.ls2e_c00077{letter-spacing:1.803706px;}
.ls7_c00077{letter-spacing:1.889280px;}
.ls9_c00077{letter-spacing:1.903320px;}
.ls14_c00077{letter-spacing:2.282040px;}
.ls3_c00077{letter-spacing:2.298600px;}
.lsd_c00077{letter-spacing:2.520000px;}
.ls15_c00077{letter-spacing:2.658240px;}
.ls8_c00077{letter-spacing:2.660400px;}
.ls2_c00077{letter-spacing:2.670480px;}
.lsb_c00077{letter-spacing:2.672640px;}
.lsa_c00077{letter-spacing:2.688480px;}
.ls5_c00077{letter-spacing:2.712960px;}
.ls1_c00077{letter-spacing:8.076960px;}
.ls4_c00077{letter-spacing:8.434800px;}
.ls1e_c00077{letter-spacing:9.000000px;}
.ls10_c00077{letter-spacing:12.024000px;}
.lse_c00077{letter-spacing:12.384000px;}
.ls17_c00077{letter-spacing:15.912000px;}
.ls13_c00077{letter-spacing:20.016000px;}
.ls1a_c00077{letter-spacing:20.952000px;}
.ls1c_c00077{letter-spacing:22.320000px;}
.lsf_c00077{letter-spacing:22.942800px;}
.ls16_c00077{letter-spacing:49.458600px;}
.ls11_c00077{letter-spacing:58.273920px;}
.lsc_c00077{letter-spacing:212.538600px;}
.ls0_c00077{letter-spacing:319.518000px;}
.ls12_c00077{letter-spacing:490.320000px;}
.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;}
}
.ws3_c00077{word-spacing:-72.000000px;}
.ws0_c00077{word-spacing:-51.120000px;}
.ws1_c00077{word-spacing:-42.120000px;}
.ws2_c00077{word-spacing:-17.928000px;}
.ws6_c00077{word-spacing:-17.856000px;}
.wsc_c00077{word-spacing:-17.712000px;}
.wsd_c00077{word-spacing:-17.424000px;}
.ws5_c00077{word-spacing:-15.840000px;}
.ws7_c00077{word-spacing:-15.210360px;}
.ws8_c00077{word-spacing:-15.030000px;}
.ws9_c00077{word-spacing:-14.849640px;}
.wsb_c00077{word-spacing:-14.609160px;}
.wse_c00077{word-spacing:-13.122000px;}
.ws10_c00077{word-spacing:-12.820934px;}
.wsf_c00077{word-spacing:-11.407219px;}
.ws11_c00077{word-spacing:-10.432243px;}
.ws2d_c00077{word-spacing:-1.657459px;}
.ws2f_c00077{word-spacing:-1.559962px;}
.ws2e_c00077{word-spacing:-0.987974px;}
.ws17_c00077{word-spacing:-0.432000px;}
.ws30_c00077{word-spacing:-0.292493px;}
.ws1c_c00077{word-spacing:-0.240480px;}
.ws19_c00077{word-spacing:-0.180360px;}
.ws13_c00077{word-spacing:-0.162000px;}
.ws18_c00077{word-spacing:-0.144000px;}
.ws29_c00077{word-spacing:-0.072000px;}
.ws12_c00077{word-spacing:0.000000px;}
.ws2b_c00077{word-spacing:0.072000px;}
.ws1b_c00077{word-spacing:0.120240px;}
.ws2c_c00077{word-spacing:0.162000px;}
.ws1d_c00077{word-spacing:0.180360px;}
.ws1a_c00077{word-spacing:0.240480px;}
.ws15_c00077{word-spacing:1.440000px;}
.ws14_c00077{word-spacing:2.520000px;}
.ws4_c00077{word-spacing:3.960000px;}
.wsa_c00077{word-spacing:4.176000px;}
.ws23_c00077{word-spacing:8.928000px;}
.ws24_c00077{word-spacing:9.000000px;}
.ws20_c00077{word-spacing:13.680000px;}
.ws22_c00077{word-spacing:13.968000px;}
.ws21_c00077{word-spacing:14.040000px;}
.ws25_c00077{word-spacing:15.120000px;}
.ws1f_c00077{word-spacing:15.768000px;}
.ws1e_c00077{word-spacing:15.840000px;}
.ws16_c00077{word-spacing:17.280000px;}
.ws2a_c00077{word-spacing:17.496000px;}
.ws28_c00077{word-spacing:17.640000px;}
.ws26_c00077{word-spacing:32.616000px;}
.ws27_c00077{word-spacing:32.688000px;}
._2_c00077{margin-left:-23.475600px;}
._3_c00077{margin-left:-18.237960px;}
._7_c00077{margin-left:-17.074080px;}
._6_c00077{margin-left:-3.240000px;}
._a_c00077{margin-left:-1.152000px;}
._8_c00077{width:1.224000px;}
._5_c00077{width:2.592000px;}
._4_c00077{width:8.025840px;}
._1_c00077{width:10.296000px;}
._9_c00077{width:16.344000px;}
._0_c00077{width:19.800000px;}
.fc0_c00077{color:rgb(0,0,0);}
.fs3_c00077{font-size:42.120000px;}
.fs5_c00077{font-size:48.748800px;}
.fs2_c00077{font-size:51.120000px;}
.fs0_c00077{font-size:54.000000px;}
.fs4_c00077{font-size:60.120000px;}
.fs6_c00077{font-size:61.748400px;}
.fs1_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y30_c00077{bottom:3.253712px;}
.y2b_c00077{bottom:3.253862px;}
.y2d_c00077{bottom:4.061250px;}
.y31_c00077{bottom:12.186900px;}
.y1d_c00077{bottom:14.580000px;}
.y18_c00077{bottom:14.670000px;}
.y2f_c00077{bottom:19.499250px;}
.y2a_c00077{bottom:19.499400px;}
.y14_c00077{bottom:37.800000px;}
.y32_c00077{bottom:57.240000px;}
.y28_c00077{bottom:167.040000px;}
.y27_c00077{bottom:189.630000px;}
.y2c_c00077{bottom:191.247000px;}
.y2e_c00077{bottom:245.682000px;}
.y29_c00077{bottom:278.181000px;}
.y26_c00077{bottom:324.990000px;}
.y25_c00077{bottom:356.220000px;}
.y24_c00077{bottom:387.270000px;}
.y23_c00077{bottom:418.320000px;}
.y22_c00077{bottom:449.370000px;}
.y21_c00077{bottom:480.420000px;}
.y20_c00077{bottom:511.470000px;}
.y1f_c00077{bottom:542.520000px;}
.y1e_c00077{bottom:571.230000px;}
.y1c_c00077{bottom:587.250000px;}
.y1b_c00077{bottom:601.830000px;}
.y1a_c00077{bottom:620.370000px;}
.y19_c00077{bottom:635.040000px;}
.y17_c00077{bottom:653.490000px;}
.y16_c00077{bottom:668.160000px;}
.y13_c00077{bottom:687.420000px;}
.y15_c00077{bottom:699.390000px;}
.y12_c00077{bottom:745.380000px;}
.y11_c00077{bottom:766.080000px;}
.y10_c00077{bottom:797.310000px;}
.yf_c00077{bottom:828.360000px;}
.ye_c00077{bottom:859.590000px;}
.yd_c00077{bottom:891.090000px;}
.yc_c00077{bottom:922.500000px;}
.yb_c00077{bottom:968.040000px;}
.ya_c00077{bottom:999.090000px;}
.y9_c00077{bottom:1030.140000px;}
.y7_c00077{bottom:1061.370000px;}
.y8_c00077{bottom:1068.120180px;}
.y6_c00077{bottom:1093.680000px;}
.y5_c00077{bottom:1102.230000px;}
.y4_c00077{bottom:1131.030000px;}
.y3_c00077{bottom:1150.915500px;}
.y2_c00077{bottom:1166.400000px;}
.y1_c00077{bottom:1197.450000px;}
.h12_c00077{height:19.500000px;}
.hf_c00077{height:31.590000px;}
.hd_c00077{height:31.678500px;}
.he_c00077{height:31.680000px;}
.h10_c00077{height:31.686000px;}
.h11_c00077{height:36.252159px;}
.h13_c00077{height:45.919342px;}
.ha_c00077{height:51.750000px;}
.h2_c00077{height:52.998047px;}
.hc_c00077{height:59.004492px;}
.hb_c00077{height:60.589687px;}
.h3_c00077{height:70.664062px;}
.h9_c00077{height:72.562500px;}
.h7_c00077{height:101.915508px;}
.h5_c00077{height:104.864062px;}
.h8_c00077{height:143.542969px;}
.h6_c00077{height:146.422969px;}
.h4_c00077{height:147.334077px;}
.h0_c00077{height:1262.880000px;}
.h1_c00077{height:1263.000000px;}
.w4_c00077{width:53.865000px;}
.w5_c00077{width:108.411000px;}
.w7_c00077{width:108.412500px;}
.w6_c00077{width:162.958500px;}
.w8_c00077{width:162.960000px;}
.w2_c00077{width:209.608500px;}
.w9_c00077{width:217.506000px;}
.w3_c00077{width:221.760000px;}
.w0_c00077{width:893.070000px;}
.w1_c00077{width:893.250000px;}
.x0_c00077{left:0.000000px;}
.x1a_c00077{left:4.775539px;}
.x19_c00077{left:10.226850px;}
.x23_c00077{left:20.454000px;}
.xd_c00077{left:21.600000px;}
.x26_c00077{left:35.459539px;}
.x24_c00077{left:37.503409px;}
.x20_c00077{left:44.319450px;}
.x1e_c00077{left:48.410250px;}
.x1c_c00077{left:51.137400px;}
.xa_c00077{left:59.580000px;}
.x14_c00077{left:80.820000px;}
.xf_c00077{left:81.990000px;}
.x11_c00077{left:86.310000px;}
.x2_c00077{left:127.620000px;}
.x22_c00077{left:182.850000px;}
.x7_c00077{left:208.530000px;}
.x1d_c00077{left:237.396000px;}
.x9_c00077{left:256.320000px;}
.x16_c00077{left:272.790000px;}
.x18_c00077{left:291.943500px;}
.xb_c00077{left:308.790000px;}
.x13_c00077{left:320.850000px;}
.xe_c00077{left:322.020000px;}
.x3_c00077{left:340.830000px;}
.x27_c00077{left:346.489500px;}
.x8_c00077{left:356.850000px;}
.x6_c00077{left:374.670000px;}
.x10_c00077{left:400.050000px;}
.x15_c00077{left:401.310000px;}
.x4_c00077{left:430.830000px;}
.x1_c00077{left:446.580000px;}
.xc_c00077{left:468.180000px;}
.x5_c00077{left:476.181900px;}
.x1f_c00077{left:510.130500px;}
.x1b_c00077{left:564.678000px;}
.x12_c00077{left:603.450000px;}
.x25_c00077{left:619.224000px;}
.x21_c00077{left:673.771500px;}
.x17_c00077{left:783.540000px;}
@media print{
.vf_c00077{vertical-align:-131.520000pt;}
.v10_c00077{vertical-align:-92.160000pt;}
.v1_c00077{vertical-align:-55.056000pt;}
.ve_c00077{vertical-align:-24.002560pt;}
.v7_c00077{vertical-align:-18.881280pt;}
.vb_c00077{vertical-align:-14.085760pt;}
.v5_c00077{vertical-align:-12.485760pt;}
.v9_c00077{vertical-align:-10.234240pt;}
.v3_c00077{vertical-align:-1.908480pt;}
.va_c00077{vertical-align:-0.954240pt;}
.v0_c00077{vertical-align:0.000000pt;}
.v4_c00077{vertical-align:0.954240pt;}
.v8_c00077{vertical-align:1.908480pt;}
.vc_c00077{vertical-align:15.038720pt;}
.v6_c00077{vertical-align:30.401280pt;}
.vd_c00077{vertical-align:37.442560pt;}
.v2_c00077{vertical-align:39.360000pt;}
.ls2f_c00077{letter-spacing:-0.519987pt;}
.ls29_c00077{letter-spacing:-0.512000pt;}
.ls27_c00077{letter-spacing:-0.374080pt;}
.ls2a_c00077{letter-spacing:-0.336000pt;}
.ls28_c00077{letter-spacing:-0.256000pt;}
.ls26_c00077{letter-spacing:-0.160320pt;}
.ls22_c00077{letter-spacing:-0.128000pt;}
.ls25_c00077{letter-spacing:-0.106880pt;}
.ls21_c00077{letter-spacing:-0.064000pt;}
.ls23_c00077{letter-spacing:-0.053440pt;}
.ls20_c00077{letter-spacing:0.000000pt;}
.ls1f_c00077{letter-spacing:0.027444pt;}
.ls2c_c00077{letter-spacing:0.054887pt;}
.ls1b_c00077{letter-spacing:0.064000pt;}
.ls1d_c00077{letter-spacing:0.106880pt;}
.ls6_c00077{letter-spacing:0.112320pt;}
.ls19_c00077{letter-spacing:0.128000pt;}
.ls24_c00077{letter-spacing:0.160320pt;}
.ls2d_c00077{letter-spacing:0.259994pt;}
.ls18_c00077{letter-spacing:0.320000pt;}
.ls2b_c00077{letter-spacing:0.346658pt;}
.ls2e_c00077{letter-spacing:1.603294pt;}
.ls7_c00077{letter-spacing:1.679360pt;}
.ls9_c00077{letter-spacing:1.691840pt;}
.ls14_c00077{letter-spacing:2.028480pt;}
.ls3_c00077{letter-spacing:2.043200pt;}
.lsd_c00077{letter-spacing:2.240000pt;}
.ls15_c00077{letter-spacing:2.362880pt;}
.ls8_c00077{letter-spacing:2.364800pt;}
.ls2_c00077{letter-spacing:2.373760pt;}
.lsb_c00077{letter-spacing:2.375680pt;}
.lsa_c00077{letter-spacing:2.389760pt;}
.ls5_c00077{letter-spacing:2.411520pt;}
.ls1_c00077{letter-spacing:7.179520pt;}
.ls4_c00077{letter-spacing:7.497600pt;}
.ls1e_c00077{letter-spacing:8.000000pt;}
.ls10_c00077{letter-spacing:10.688000pt;}
.lse_c00077{letter-spacing:11.008000pt;}
.ls17_c00077{letter-spacing:14.144000pt;}
.ls13_c00077{letter-spacing:17.792000pt;}
.ls1a_c00077{letter-spacing:18.624000pt;}
.ls1c_c00077{letter-spacing:19.840000pt;}
.lsf_c00077{letter-spacing:20.393600pt;}
.ls16_c00077{letter-spacing:43.963200pt;}
.ls11_c00077{letter-spacing:51.799040pt;}
.lsc_c00077{letter-spacing:188.923200pt;}
.ls0_c00077{letter-spacing:284.016000pt;}
.ls12_c00077{letter-spacing:435.840000pt;}
.ws3_c00077{word-spacing:-64.000000pt;}
.ws0_c00077{word-spacing:-45.440000pt;}
.ws1_c00077{word-spacing:-37.440000pt;}
.ws2_c00077{word-spacing:-15.936000pt;}
.ws6_c00077{word-spacing:-15.872000pt;}
.wsc_c00077{word-spacing:-15.744000pt;}
.wsd_c00077{word-spacing:-15.488000pt;}
.ws5_c00077{word-spacing:-14.080000pt;}
.ws7_c00077{word-spacing:-13.520320pt;}
.ws8_c00077{word-spacing:-13.360000pt;}
.ws9_c00077{word-spacing:-13.199680pt;}
.wsb_c00077{word-spacing:-12.985920pt;}
.wse_c00077{word-spacing:-11.664000pt;}
.ws10_c00077{word-spacing:-11.396386pt;}
.wsf_c00077{word-spacing:-10.139750pt;}
.ws11_c00077{word-spacing:-9.273105pt;}
.ws2d_c00077{word-spacing:-1.473297pt;}
.ws2f_c00077{word-spacing:-1.386633pt;}
.ws2e_c00077{word-spacing:-0.878199pt;}
.ws17_c00077{word-spacing:-0.384000pt;}
.ws30_c00077{word-spacing:-0.259994pt;}
.ws1c_c00077{word-spacing:-0.213760pt;}
.ws19_c00077{word-spacing:-0.160320pt;}
.ws13_c00077{word-spacing:-0.144000pt;}
.ws18_c00077{word-spacing:-0.128000pt;}
.ws29_c00077{word-spacing:-0.064000pt;}
.ws12_c00077{word-spacing:0.000000pt;}
.ws2b_c00077{word-spacing:0.064000pt;}
.ws1b_c00077{word-spacing:0.106880pt;}
.ws2c_c00077{word-spacing:0.144000pt;}
.ws1d_c00077{word-spacing:0.160320pt;}
.ws1a_c00077{word-spacing:0.213760pt;}
.ws15_c00077{word-spacing:1.280000pt;}
.ws14_c00077{word-spacing:2.240000pt;}
.ws4_c00077{word-spacing:3.520000pt;}
.wsa_c00077{word-spacing:3.712000pt;}
.ws23_c00077{word-spacing:7.936000pt;}
.ws24_c00077{word-spacing:8.000000pt;}
.ws20_c00077{word-spacing:12.160000pt;}
.ws22_c00077{word-spacing:12.416000pt;}
.ws21_c00077{word-spacing:12.480000pt;}
.ws25_c00077{word-spacing:13.440000pt;}
.ws1f_c00077{word-spacing:14.016000pt;}
.ws1e_c00077{word-spacing:14.080000pt;}
.ws16_c00077{word-spacing:15.360000pt;}
.ws2a_c00077{word-spacing:15.552000pt;}
.ws28_c00077{word-spacing:15.680000pt;}
.ws26_c00077{word-spacing:28.992000pt;}
.ws27_c00077{word-spacing:29.056000pt;}
._2_c00077{margin-left:-20.867200pt;}
._3_c00077{margin-left:-16.211520pt;}
._7_c00077{margin-left:-15.176960pt;}
._6_c00077{margin-left:-2.880000pt;}
._a_c00077{margin-left:-1.024000pt;}
._8_c00077{width:1.088000pt;}
._5_c00077{width:2.304000pt;}
._4_c00077{width:7.134080pt;}
._1_c00077{width:9.152000pt;}
._9_c00077{width:14.528000pt;}
._0_c00077{width:17.600000pt;}
.fs3_c00077{font-size:37.440000pt;}
.fs5_c00077{font-size:43.332267pt;}
.fs2_c00077{font-size:45.440000pt;}
.fs0_c00077{font-size:48.000000pt;}
.fs4_c00077{font-size:53.440000pt;}
.fs6_c00077{font-size:54.887467pt;}
.fs1_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y30_c00077{bottom:2.892189pt;}
.y2b_c00077{bottom:2.892322pt;}
.y2d_c00077{bottom:3.610000pt;}
.y31_c00077{bottom:10.832800pt;}
.y1d_c00077{bottom:12.960000pt;}
.y18_c00077{bottom:13.040000pt;}
.y2f_c00077{bottom:17.332667pt;}
.y2a_c00077{bottom:17.332800pt;}
.y14_c00077{bottom:33.600000pt;}
.y32_c00077{bottom:50.880000pt;}
.y28_c00077{bottom:148.480000pt;}
.y27_c00077{bottom:168.560000pt;}
.y2c_c00077{bottom:169.997333pt;}
.y2e_c00077{bottom:218.384000pt;}
.y29_c00077{bottom:247.272000pt;}
.y26_c00077{bottom:288.880000pt;}
.y25_c00077{bottom:316.640000pt;}
.y24_c00077{bottom:344.240000pt;}
.y23_c00077{bottom:371.840000pt;}
.y22_c00077{bottom:399.440000pt;}
.y21_c00077{bottom:427.040000pt;}
.y20_c00077{bottom:454.640000pt;}
.y1f_c00077{bottom:482.240000pt;}
.y1e_c00077{bottom:507.760000pt;}
.y1c_c00077{bottom:522.000000pt;}
.y1b_c00077{bottom:534.960000pt;}
.y1a_c00077{bottom:551.440000pt;}
.y19_c00077{bottom:564.480000pt;}
.y17_c00077{bottom:580.880000pt;}
.y16_c00077{bottom:593.920000pt;}
.y13_c00077{bottom:611.040000pt;}
.y15_c00077{bottom:621.680000pt;}
.y12_c00077{bottom:662.560000pt;}
.y11_c00077{bottom:680.960000pt;}
.y10_c00077{bottom:708.720000pt;}
.yf_c00077{bottom:736.320000pt;}
.ye_c00077{bottom:764.080000pt;}
.yd_c00077{bottom:792.080000pt;}
.yc_c00077{bottom:820.000000pt;}
.yb_c00077{bottom:860.480000pt;}
.ya_c00077{bottom:888.080000pt;}
.y9_c00077{bottom:915.680000pt;}
.y7_c00077{bottom:943.440000pt;}
.y8_c00077{bottom:949.440160pt;}
.y6_c00077{bottom:972.160000pt;}
.y5_c00077{bottom:979.760000pt;}
.y4_c00077{bottom:1005.360000pt;}
.y3_c00077{bottom:1023.036000pt;}
.y2_c00077{bottom:1036.800000pt;}
.y1_c00077{bottom:1064.400000pt;}
.h12_c00077{height:17.333333pt;}
.hf_c00077{height:28.080000pt;}
.hd_c00077{height:28.158667pt;}
.he_c00077{height:28.160000pt;}
.h10_c00077{height:28.165333pt;}
.h11_c00077{height:32.224142pt;}
.h13_c00077{height:40.817193pt;}
.ha_c00077{height:46.000000pt;}
.h2_c00077{height:47.109375pt;}
.hc_c00077{height:52.448437pt;}
.hb_c00077{height:53.857500pt;}
.h3_c00077{height:62.812500pt;}
.h9_c00077{height:64.500000pt;}
.h7_c00077{height:90.591562pt;}
.h5_c00077{height:93.212500pt;}
.h8_c00077{height:127.593750pt;}
.h6_c00077{height:130.153750pt;}
.h4_c00077{height:130.963624pt;}
.h0_c00077{height:1122.560000pt;}
.h1_c00077{height:1122.666667pt;}
.w4_c00077{width:47.880000pt;}
.w5_c00077{width:96.365333pt;}
.w7_c00077{width:96.366667pt;}
.w6_c00077{width:144.852000pt;}
.w8_c00077{width:144.853333pt;}
.w2_c00077{width:186.318667pt;}
.w9_c00077{width:193.338667pt;}
.w3_c00077{width:197.120000pt;}
.w0_c00077{width:793.840000pt;}
.w1_c00077{width:794.000000pt;}
.x0_c00077{left:0.000000pt;}
.x1a_c00077{left:4.244924pt;}
.x19_c00077{left:9.090533pt;}
.x23_c00077{left:18.181333pt;}
.xd_c00077{left:19.200000pt;}
.x26_c00077{left:31.519590pt;}
.x24_c00077{left:33.336364pt;}
.x20_c00077{left:39.395067pt;}
.x1e_c00077{left:43.031333pt;}
.x1c_c00077{left:45.455467pt;}
.xa_c00077{left:52.960000pt;}
.x14_c00077{left:71.840000pt;}
.xf_c00077{left:72.880000pt;}
.x11_c00077{left:76.720000pt;}
.x2_c00077{left:113.440000pt;}
.x22_c00077{left:162.533333pt;}
.x7_c00077{left:185.360000pt;}
.x1d_c00077{left:211.018667pt;}
.x9_c00077{left:227.840000pt;}
.x16_c00077{left:242.480000pt;}
.x18_c00077{left:259.505333pt;}
.xb_c00077{left:274.480000pt;}
.x13_c00077{left:285.200000pt;}
.xe_c00077{left:286.240000pt;}
.x3_c00077{left:302.960000pt;}
.x27_c00077{left:307.990667pt;}
.x8_c00077{left:317.200000pt;}
.x6_c00077{left:333.040000pt;}
.x10_c00077{left:355.600000pt;}
.x15_c00077{left:356.720000pt;}
.x4_c00077{left:382.960000pt;}
.x1_c00077{left:396.960000pt;}
.xc_c00077{left:416.160000pt;}
.x5_c00077{left:423.272800pt;}
.x1f_c00077{left:453.449333pt;}
.x1b_c00077{left:501.936000pt;}
.x12_c00077{left:536.400000pt;}
.x25_c00077{left:550.421333pt;}
.x21_c00077{left:598.908000pt;}
.x17_c00077{left:696.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_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_ed453bfa3db34de4b0946cfc.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.284668;font-style:normal;font-weight:normal;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_92b9c92d7df3380d87df5af1.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_7b74e0e84bf7151cc5d8c0cd.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00078;src:url('chunks/assets/font_56909d9033bf282e797ce125.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00078;src:url('chunks/assets/font_5281adfa51e68df77e98f16d.woff2')format("woff");}.ff6_c00078{font-family:ff6_c00078;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00078;src:url('chunks/assets/font_f41e8e253ef7e2171f2dda67.woff2')format("woff");}.ff7_c00078{font-family:ff7_c00078;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:ff8_c00078;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00078{font-family:ff8_c00078;line-height:1.432129;font-style: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);}
.v6_c00078{vertical-align:-126.000000px;}
.v1_c00078{vertical-align:-14.760000px;}
.v5_c00078{vertical-align:-2.880000px;}
.v0_c00078{vertical-align:0.000000px;}
.v3_c00078{vertical-align:2.880000px;}
.v2_c00078{vertical-align:14.760000px;}
.v4_c00078{vertical-align:17.640000px;}
.ls24_c00078{letter-spacing:-0.300600px;}
.ls29_c00078{letter-spacing:-0.216000px;}
.ls27_c00078{letter-spacing:-0.180360px;}
.ls21_c00078{letter-spacing:-0.108000px;}
.ls22_c00078{letter-spacing:-0.072000px;}
.ls25_c00078{letter-spacing:-0.060120px;}
.ls20_c00078{letter-spacing:0.000000px;}
.ls8_c00078{letter-spacing:0.072000px;}
.ls28_c00078{letter-spacing:0.108000px;}
.ls23_c00078{letter-spacing:0.120240px;}
.ls0_c00078{letter-spacing:0.144000px;}
.ls26_c00078{letter-spacing:0.180360px;}
.ls14_c00078{letter-spacing:0.360000px;}
.ls12_c00078{letter-spacing:0.720000px;}
.ls11_c00078{letter-spacing:0.792000px;}
.ls1d_c00078{letter-spacing:0.799200px;}
.ls19_c00078{letter-spacing:2.088000px;}
.ls4_c00078{letter-spacing:2.160000px;}
.ls1c_c00078{letter-spacing:2.448000px;}
.ls2_c00078{letter-spacing:2.520000px;}
.ls10_c00078{letter-spacing:3.052080px;}
.ls13_c00078{letter-spacing:4.147200px;}
.ls7_c00078{letter-spacing:4.320000px;}
.lsd_c00078{letter-spacing:4.507200px;}
.ls1b_c00078{letter-spacing:5.040000px;}
.ls15_c00078{letter-spacing:7.776000px;}
.ls16_c00078{letter-spacing:8.280000px;}
.ls1e_c00078{letter-spacing:9.720000px;}
.ls1a_c00078{letter-spacing:15.840000px;}
.ls17_c00078{letter-spacing:15.912000px;}
.ls5_c00078{letter-spacing:16.056000px;}
.ls18_c00078{letter-spacing:16.200000px;}
.lsb_c00078{letter-spacing:18.000000px;}
.ls6_c00078{letter-spacing:19.800000px;}
.ls1_c00078{letter-spacing:19.872000px;}
.lsf_c00078{letter-spacing:20.016000px;}
.ls3_c00078{letter-spacing:20.232000px;}
.lsc_c00078{letter-spacing:20.347200px;}
.ls1f_c00078{letter-spacing:22.320000px;}
.lse_c00078{letter-spacing:22.852080px;}
.lsa_c00078{letter-spacing:24.307200px;}
.ls9_c00078{letter-spacing:30.744000px;}
.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;}
}
.wsb_c00078{word-spacing:-72.072000px;}
.ws4_c00078{word-spacing:-72.000000px;}
.ws9_c00078{word-spacing:-51.120000px;}
.ws5_c00078{word-spacing:-18.000000px;}
.ws0_c00078{word-spacing:-17.928000px;}
.wsc_c00078{word-spacing:-17.784000px;}
.ws7_c00078{word-spacing:-15.840000px;}
.ws3_c00078{word-spacing:-15.150240px;}
.ws2_c00078{word-spacing:-15.030000px;}
.ws6_c00078{word-spacing:-14.969880px;}
.ws1_c00078{word-spacing:-14.729400px;}
.ws8_c00078{word-spacing:-13.500000px;}
.ws14_c00078{word-spacing:-0.504000px;}
.ws29_c00078{word-spacing:-0.432000px;}
.ws17_c00078{word-spacing:-0.420840px;}
.ws15_c00078{word-spacing:-0.360720px;}
.ws1a_c00078{word-spacing:-0.270000px;}
.ws19_c00078{word-spacing:-0.162000px;}
.ws13_c00078{word-spacing:-0.144000px;}
.ws12_c00078{word-spacing:-0.072000px;}
.wse_c00078{word-spacing:0.000000px;}
.ws10_c00078{word-spacing:0.162000px;}
.ws16_c00078{word-spacing:0.180360px;}
.wsa_c00078{word-spacing:0.216000px;}
.wsf_c00078{word-spacing:0.270000px;}
.ws18_c00078{word-spacing:0.300600px;}
.ws1e_c00078{word-spacing:0.648000px;}
.ws1f_c00078{word-spacing:0.720000px;}
.ws24_c00078{word-spacing:1.728000px;}
.ws1d_c00078{word-spacing:3.816000px;}
.ws1b_c00078{word-spacing:3.888000px;}
.wsd_c00078{word-spacing:4.176000px;}
.ws1c_c00078{word-spacing:4.248000px;}
.ws11_c00078{word-spacing:6.840000px;}
.ws25_c00078{word-spacing:7.128000px;}
.ws21_c00078{word-spacing:7.200000px;}
.ws26_c00078{word-spacing:8.208000px;}
.ws28_c00078{word-spacing:9.648000px;}
.ws20_c00078{word-spacing:11.160000px;}
.ws23_c00078{word-spacing:11.808000px;}
.ws22_c00078{word-spacing:11.880000px;}
.ws27_c00078{word-spacing:13.680000px;}
._d_c00078{margin-left:-29.304000px;}
._a_c00078{margin-left:-11.736000px;}
._b_c00078{margin-left:-2.955600px;}
._1_c00078{margin-left:-1.058400px;}
._0_c00078{width:1.220400px;}
._3_c00078{width:2.595600px;}
._9_c00078{width:3.960000px;}
._8_c00078{width:5.259600px;}
._6_c00078{width:11.952000px;}
._7_c00078{width:16.128000px;}
._5_c00078{width:19.224000px;}
._2_c00078{width:20.232000px;}
._4_c00078{width:22.248000px;}
._c_c00078{width:23.661360px;}
.fc0_c00078{color:rgb(0,0,0);}
.fs3_c00078{font-size:51.120000px;}
.fs0_c00078{font-size:54.000000px;}
.fs2_c00078{font-size:60.120000px;}
.fs1_c00078{font-size:72.000000px;}
.y0_c00078{bottom:0.000000px;}
.yc_c00078{bottom:3.330000px;}
.y11_c00078{bottom:3.420000px;}
.y1b_c00078{bottom:3.510000px;}
.y13_c00078{bottom:3.960000px;}
.y16_c00078{bottom:4.140000px;}
.y14_c00078{bottom:7.290000px;}
.y17_c00078{bottom:9.990000px;}
.ye_c00078{bottom:17.370000px;}
.yb_c00078{bottom:20.520000px;}
.y10_c00078{bottom:20.700000px;}
.y33_c00078{bottom:57.240000px;}
.y32_c00078{bottom:113.040000px;}
.y31_c00078{bottom:144.720000px;}
.y30_c00078{bottom:176.220000px;}
.y2f_c00078{bottom:207.360000px;}
.y2e_c00078{bottom:270.540000px;}
.y2d_c00078{bottom:301.590000px;}
.y2c_c00078{bottom:332.640000px;}
.y2b_c00078{bottom:363.690000px;}
.y2a_c00078{bottom:394.740000px;}
.y29_c00078{bottom:425.970000px;}
.y28_c00078{bottom:457.470000px;}
.y27_c00078{bottom:488.520000px;}
.y26_c00078{bottom:519.570000px;}
.y25_c00078{bottom:550.620000px;}
.y24_c00078{bottom:581.670000px;}
.y23_c00078{bottom:612.810000px;}
.y22_c00078{bottom:644.490000px;}
.y21_c00078{bottom:676.170000px;}
.y20_c00078{bottom:707.670000px;}
.y1f_c00078{bottom:738.720000px;}
.y1e_c00078{bottom:769.770000px;}
.y1d_c00078{bottom:800.910000px;}
.y1c_c00078{bottom:828.990000px;}
.y19_c00078{bottom:843.480000px;}
.y1a_c00078{bottom:860.850000px;}
.y18_c00078{bottom:879.480000px;}
.y15_c00078{bottom:902.070000px;}
.y12_c00078{bottom:927.360000px;}
.yd_c00078{bottom:949.950000px;}
.yf_c00078{bottom:967.320000px;}
.ya_c00078{bottom:986.670000px;}
.y9_c00078{bottom:1027.350000px;}
.y8_c00078{bottom:1048.050000px;}
.y7_c00078{bottom:1079.280000px;}
.y6_c00078{bottom:1110.330000px;}
.y5_c00078{bottom:1131.030000px;}
.y4_c00078{bottom:1150.920000px;}
.y3_c00078{bottom:1166.404500px;}
.y2_c00078{bottom:1181.970000px;}
.y1_c00078{bottom:1197.450000px;}
.hb_c00078{height:21.060000px;}
.hc_c00078{height:23.760000px;}
.h6_c00078{height:34.470000px;}
.h3_c00078{height:52.971680px;}
.h2_c00078{height:52.998047px;}
.h9_c00078{height:58.975137px;}
.ha_c00078{height:59.004492px;}
.h7_c00078{height:60.589687px;}
.h4_c00078{height:70.664062px;}
.h5_c00078{height:72.562500px;}
.hd_c00078{height:75.093750px;}
.h8_c00078{height:143.542969px;}
.h0_c00078{height:1262.880000px;}
.h1_c00078{height:1263.000000px;}
.w3_c00078{width:214.560000px;}
.w2_c00078{width:223.918500px;}
.w0_c00078{width:893.070000px;}
.w1_c00078{width:893.250000px;}
.x0_c00078{left:0.000000px;}
.x12_c00078{left:20.430000px;}
.x7_c00078{left:30.420000px;}
.xd_c00078{left:32.220000px;}
.x11_c00078{left:34.920000px;}
.x10_c00078{left:44.550000px;}
.x13_c00078{left:47.700000px;}
.xa_c00078{left:58.680000px;}
.xe_c00078{left:59.760000px;}
.xf_c00078{left:61.650000px;}
.xb_c00078{left:65.430000px;}
.x8_c00078{left:76.680000px;}
.x3_c00078{left:127.620000px;}
.x6_c00078{left:227.970000px;}
.x4_c00078{left:231.120000px;}
.x17_c00078{left:251.100000px;}
.x15_c00078{left:354.420000px;}
.x16_c00078{left:367.200000px;}
.x18_c00078{left:373.770000px;}
.x5_c00078{left:381.510000px;}
.xc_c00078{left:386.460000px;}
.x14_c00078{left:404.100000px;}
.x2_c00078{left:425.160000px;}
.x1_c00078{left:446.580000px;}
.x9_c00078{left:454.140000px;}
.x19_c00078{left:747.540000px;}
@media print{
.v6_c00078{vertical-align:-112.000000pt;}
.v1_c00078{vertical-align:-13.120000pt;}
.v5_c00078{vertical-align:-2.560000pt;}
.v0_c00078{vertical-align:0.000000pt;}
.v3_c00078{vertical-align:2.560000pt;}
.v2_c00078{vertical-align:13.120000pt;}
.v4_c00078{vertical-align:15.680000pt;}
.ls24_c00078{letter-spacing:-0.267200pt;}
.ls29_c00078{letter-spacing:-0.192000pt;}
.ls27_c00078{letter-spacing:-0.160320pt;}
.ls21_c00078{letter-spacing:-0.096000pt;}
.ls22_c00078{letter-spacing:-0.064000pt;}
.ls25_c00078{letter-spacing:-0.053440pt;}
.ls20_c00078{letter-spacing:0.000000pt;}
.ls8_c00078{letter-spacing:0.064000pt;}
.ls28_c00078{letter-spacing:0.096000pt;}
.ls23_c00078{letter-spacing:0.106880pt;}
.ls0_c00078{letter-spacing:0.128000pt;}
.ls26_c00078{letter-spacing:0.160320pt;}
.ls14_c00078{letter-spacing:0.320000pt;}
.ls12_c00078{letter-spacing:0.640000pt;}
.ls11_c00078{letter-spacing:0.704000pt;}
.ls1d_c00078{letter-spacing:0.710400pt;}
.ls19_c00078{letter-spacing:1.856000pt;}
.ls4_c00078{letter-spacing:1.920000pt;}
.ls1c_c00078{letter-spacing:2.176000pt;}
.ls2_c00078{letter-spacing:2.240000pt;}
.ls10_c00078{letter-spacing:2.712960pt;}
.ls13_c00078{letter-spacing:3.686400pt;}
.ls7_c00078{letter-spacing:3.840000pt;}
.lsd_c00078{letter-spacing:4.006400pt;}
.ls1b_c00078{letter-spacing:4.480000pt;}
.ls15_c00078{letter-spacing:6.912000pt;}
.ls16_c00078{letter-spacing:7.360000pt;}
.ls1e_c00078{letter-spacing:8.640000pt;}
.ls1a_c00078{letter-spacing:14.080000pt;}
.ls17_c00078{letter-spacing:14.144000pt;}
.ls5_c00078{letter-spacing:14.272000pt;}
.ls18_c00078{letter-spacing:14.400000pt;}
.lsb_c00078{letter-spacing:16.000000pt;}
.ls6_c00078{letter-spacing:17.600000pt;}
.ls1_c00078{letter-spacing:17.664000pt;}
.lsf_c00078{letter-spacing:17.792000pt;}
.ls3_c00078{letter-spacing:17.984000pt;}
.lsc_c00078{letter-spacing:18.086400pt;}
.ls1f_c00078{letter-spacing:19.840000pt;}
.lse_c00078{letter-spacing:20.312960pt;}
.lsa_c00078{letter-spacing:21.606400pt;}
.ls9_c00078{letter-spacing:27.328000pt;}
.wsb_c00078{word-spacing:-64.064000pt;}
.ws4_c00078{word-spacing:-64.000000pt;}
.ws9_c00078{word-spacing:-45.440000pt;}
.ws5_c00078{word-spacing:-16.000000pt;}
.ws0_c00078{word-spacing:-15.936000pt;}
.wsc_c00078{word-spacing:-15.808000pt;}
.ws7_c00078{word-spacing:-14.080000pt;}
.ws3_c00078{word-spacing:-13.466880pt;}
.ws2_c00078{word-spacing:-13.360000pt;}
.ws6_c00078{word-spacing:-13.306560pt;}
.ws1_c00078{word-spacing:-13.092800pt;}
.ws8_c00078{word-spacing:-12.000000pt;}
.ws14_c00078{word-spacing:-0.448000pt;}
.ws29_c00078{word-spacing:-0.384000pt;}
.ws17_c00078{word-spacing:-0.374080pt;}
.ws15_c00078{word-spacing:-0.320640pt;}
.ws1a_c00078{word-spacing:-0.240000pt;}
.ws19_c00078{word-spacing:-0.144000pt;}
.ws13_c00078{word-spacing:-0.128000pt;}
.ws12_c00078{word-spacing:-0.064000pt;}
.wse_c00078{word-spacing:0.000000pt;}
.ws10_c00078{word-spacing:0.144000pt;}
.ws16_c00078{word-spacing:0.160320pt;}
.wsa_c00078{word-spacing:0.192000pt;}
.wsf_c00078{word-spacing:0.240000pt;}
.ws18_c00078{word-spacing:0.267200pt;}
.ws1e_c00078{word-spacing:0.576000pt;}
.ws1f_c00078{word-spacing:0.640000pt;}
.ws24_c00078{word-spacing:1.536000pt;}
.ws1d_c00078{word-spacing:3.392000pt;}
.ws1b_c00078{word-spacing:3.456000pt;}
.wsd_c00078{word-spacing:3.712000pt;}
.ws1c_c00078{word-spacing:3.776000pt;}
.ws11_c00078{word-spacing:6.080000pt;}
.ws25_c00078{word-spacing:6.336000pt;}
.ws21_c00078{word-spacing:6.400000pt;}
.ws26_c00078{word-spacing:7.296000pt;}
.ws28_c00078{word-spacing:8.576000pt;}
.ws20_c00078{word-spacing:9.920000pt;}
.ws23_c00078{word-spacing:10.496000pt;}
.ws22_c00078{word-spacing:10.560000pt;}
.ws27_c00078{word-spacing:12.160000pt;}
._d_c00078{margin-left:-26.048000pt;}
._a_c00078{margin-left:-10.432000pt;}
._b_c00078{margin-left:-2.627200pt;}
._1_c00078{margin-left:-0.940800pt;}
._0_c00078{width:1.084800pt;}
._3_c00078{width:2.307200pt;}
._9_c00078{width:3.520000pt;}
._8_c00078{width:4.675200pt;}
._6_c00078{width:10.624000pt;}
._7_c00078{width:14.336000pt;}
._5_c00078{width:17.088000pt;}
._2_c00078{width:17.984000pt;}
._4_c00078{width:19.776000pt;}
._c_c00078{width:21.032320pt;}
.fs3_c00078{font-size:45.440000pt;}
.fs0_c00078{font-size:48.000000pt;}
.fs2_c00078{font-size:53.440000pt;}
.fs1_c00078{font-size:64.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.yc_c00078{bottom:2.960000pt;}
.y11_c00078{bottom:3.040000pt;}
.y1b_c00078{bottom:3.120000pt;}
.y13_c00078{bottom:3.520000pt;}
.y16_c00078{bottom:3.680000pt;}
.y14_c00078{bottom:6.480000pt;}
.y17_c00078{bottom:8.880000pt;}
.ye_c00078{bottom:15.440000pt;}
.yb_c00078{bottom:18.240000pt;}
.y10_c00078{bottom:18.400000pt;}
.y33_c00078{bottom:50.880000pt;}
.y32_c00078{bottom:100.480000pt;}
.y31_c00078{bottom:128.640000pt;}
.y30_c00078{bottom:156.640000pt;}
.y2f_c00078{bottom:184.320000pt;}
.y2e_c00078{bottom:240.480000pt;}
.y2d_c00078{bottom:268.080000pt;}
.y2c_c00078{bottom:295.680000pt;}
.y2b_c00078{bottom:323.280000pt;}
.y2a_c00078{bottom:350.880000pt;}
.y29_c00078{bottom:378.640000pt;}
.y28_c00078{bottom:406.640000pt;}
.y27_c00078{bottom:434.240000pt;}
.y26_c00078{bottom:461.840000pt;}
.y25_c00078{bottom:489.440000pt;}
.y24_c00078{bottom:517.040000pt;}
.y23_c00078{bottom:544.720000pt;}
.y22_c00078{bottom:572.880000pt;}
.y21_c00078{bottom:601.040000pt;}
.y20_c00078{bottom:629.040000pt;}
.y1f_c00078{bottom:656.640000pt;}
.y1e_c00078{bottom:684.240000pt;}
.y1d_c00078{bottom:711.920000pt;}
.y1c_c00078{bottom:736.880000pt;}
.y19_c00078{bottom:749.760000pt;}
.y1a_c00078{bottom:765.200000pt;}
.y18_c00078{bottom:781.760000pt;}
.y15_c00078{bottom:801.840000pt;}
.y12_c00078{bottom:824.320000pt;}
.yd_c00078{bottom:844.400000pt;}
.yf_c00078{bottom:859.840000pt;}
.ya_c00078{bottom:877.040000pt;}
.y9_c00078{bottom:913.200000pt;}
.y8_c00078{bottom:931.600000pt;}
.y7_c00078{bottom:959.360000pt;}
.y6_c00078{bottom:986.960000pt;}
.y5_c00078{bottom:1005.360000pt;}
.y4_c00078{bottom:1023.040000pt;}
.y3_c00078{bottom:1036.804000pt;}
.y2_c00078{bottom:1050.640000pt;}
.y1_c00078{bottom:1064.400000pt;}
.hb_c00078{height:18.720000pt;}
.hc_c00078{height:21.120000pt;}
.h6_c00078{height:30.640000pt;}
.h3_c00078{height:47.085938pt;}
.h2_c00078{height:47.109375pt;}
.h9_c00078{height:52.422344pt;}
.ha_c00078{height:52.448437pt;}
.h7_c00078{height:53.857500pt;}
.h4_c00078{height:62.812500pt;}
.h5_c00078{height:64.500000pt;}
.hd_c00078{height:66.750000pt;}
.h8_c00078{height:127.593750pt;}
.h0_c00078{height:1122.560000pt;}
.h1_c00078{height:1122.666667pt;}
.w3_c00078{width:190.720000pt;}
.w2_c00078{width:199.038667pt;}
.w0_c00078{width:793.840000pt;}
.w1_c00078{width:794.000000pt;}
.x0_c00078{left:0.000000pt;}
.x12_c00078{left:18.160000pt;}
.x7_c00078{left:27.040000pt;}
.xd_c00078{left:28.640000pt;}
.x11_c00078{left:31.040000pt;}
.x10_c00078{left:39.600000pt;}
.x13_c00078{left:42.400000pt;}
.xa_c00078{left:52.160000pt;}
.xe_c00078{left:53.120000pt;}
.xf_c00078{left:54.800000pt;}
.xb_c00078{left:58.160000pt;}
.x8_c00078{left:68.160000pt;}
.x3_c00078{left:113.440000pt;}
.x6_c00078{left:202.640000pt;}
.x4_c00078{left:205.440000pt;}
.x17_c00078{left:223.200000pt;}
.x15_c00078{left:315.040000pt;}
.x16_c00078{left:326.400000pt;}
.x18_c00078{left:332.240000pt;}
.x5_c00078{left:339.120000pt;}
.xc_c00078{left:343.520000pt;}
.x14_c00078{left:359.200000pt;}
.x2_c00078{left:377.920000pt;}
.x1_c00078{left:396.960000pt;}
.x9_c00078{left:403.680000pt;}
.x19_c00078{left:664.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_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_8b0b35869010e36145e6a6f6.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_5cc0a4e6352db8457c733965.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_3d551f6e26a650fc3fee0c81.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:3.333984;font-style:normal;font-weight:normal;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_ecdacccbc8ee9657730fac87.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00079{vertical-align:-102.960000px;}
.v1_c00079{vertical-align:-61.938000px;}
.v9_c00079{vertical-align:-20.880000px;}
.v6_c00079{vertical-align:-14.760000px;}
.v8_c00079{vertical-align:-2.880000px;}
.v0_c00079{vertical-align:0.000000px;}
.v7_c00079{vertical-align:14.760000px;}
.v5_c00079{vertical-align:27.000000px;}
.v4_c00079{vertical-align:36.349200px;}
.v3_c00079{vertical-align:42.120000px;}
.ls18_c00079{letter-spacing:-0.144000px;}
.ls1c_c00079{letter-spacing:-0.120240px;}
.ls17_c00079{letter-spacing:-0.072000px;}
.ls1b_c00079{letter-spacing:-0.060120px;}
.ls16_c00079{letter-spacing:0.000000px;}
.lsc_c00079{letter-spacing:0.009360px;}
.lsb_c00079{letter-spacing:0.072000px;}
.ls1a_c00079{letter-spacing:0.102240px;}
.ls15_c00079{letter-spacing:0.120240px;}
.lsa_c00079{letter-spacing:0.144000px;}
.ls13_c00079{letter-spacing:0.165600px;}
.ls1d_c00079{letter-spacing:0.180360px;}
.ls19_c00079{letter-spacing:0.191520px;}
.ls10_c00079{letter-spacing:1.080000px;}
.ls9_c00079{letter-spacing:1.440000px;}
.ls14_c00079{letter-spacing:1.863720px;}
.ls6_c00079{letter-spacing:2.016000px;}
.ls11_c00079{letter-spacing:2.160000px;}
.ls3_c00079{letter-spacing:2.454480px;}
.lsf_c00079{letter-spacing:4.376880px;}
.ls4_c00079{letter-spacing:6.480000px;}
.ls7_c00079{letter-spacing:12.240000px;}
.ls12_c00079{letter-spacing:13.320000px;}
.ls2_c00079{letter-spacing:16.056000px;}
.lse_c00079{letter-spacing:20.576880px;}
.ls8_c00079{letter-spacing:21.600000px;}
.ls5_c00079{letter-spacing:22.176000px;}
.lsd_c00079{letter-spacing:22.320000px;}
.ls0_c00079{letter-spacing:319.518000px;}
.ls1_c00079{letter-spacing:1021.320000px;}
.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:-72.000000px;}
.ws5_c00079{word-spacing:-51.222240px;}
.ws8_c00079{word-spacing:-18.144000px;}
.ws9_c00079{word-spacing:-18.072000px;}
.ws3_c00079{word-spacing:-18.000000px;}
.ws2_c00079{word-spacing:-17.928000px;}
.ws4_c00079{word-spacing:-12.161520px;}
.wsa_c00079{word-spacing:-9.720000px;}
.ws6_c00079{word-spacing:-3.960000px;}
.ws7_c00079{word-spacing:-3.600000px;}
.wsc_c00079{word-spacing:-0.162000px;}
.ws13_c00079{word-spacing:-0.144000px;}
.wsf_c00079{word-spacing:-0.072000px;}
.ws2c_c00079{word-spacing:-0.060120px;}
.wsb_c00079{word-spacing:0.000000px;}
.ws1_c00079{word-spacing:0.072000px;}
.wse_c00079{word-spacing:0.144000px;}
.ws2b_c00079{word-spacing:0.240480px;}
.ws1b_c00079{word-spacing:0.360000px;}
.ws20_c00079{word-spacing:0.648000px;}
.ws27_c00079{word-spacing:1.008000px;}
.ws26_c00079{word-spacing:1.080000px;}
.ws19_c00079{word-spacing:1.440000px;}
.ws2a_c00079{word-spacing:1.923840px;}
.ws1c_c00079{word-spacing:3.168000px;}
.ws25_c00079{word-spacing:3.600000px;}
.wsd_c00079{word-spacing:3.888000px;}
.ws10_c00079{word-spacing:5.688000px;}
.ws23_c00079{word-spacing:6.048000px;}
.ws12_c00079{word-spacing:6.480000px;}
.ws21_c00079{word-spacing:7.488000px;}
.ws22_c00079{word-spacing:7.560000px;}
.ws17_c00079{word-spacing:10.440000px;}
.ws16_c00079{word-spacing:10.728000px;}
.ws18_c00079{word-spacing:10.800000px;}
.ws11_c00079{word-spacing:11.880000px;}
.ws14_c00079{word-spacing:12.168000px;}
.ws15_c00079{word-spacing:12.240000px;}
.ws28_c00079{word-spacing:13.248000px;}
.ws29_c00079{word-spacing:13.320000px;}
.ws1a_c00079{word-spacing:15.768000px;}
.ws24_c00079{word-spacing:16.848000px;}
.ws1f_c00079{word-spacing:22.248000px;}
.ws1e_c00079{word-spacing:22.320000px;}
.ws1d_c00079{word-spacing:32.328000px;}
._0_c00079{margin-left:-29.808000px;}
._5_c00079{margin-left:-12.456000px;}
._3_c00079{margin-left:-1.015200px;}
._7_c00079{width:1.008000px;}
._4_c00079{width:3.312000px;}
._a_c00079{width:5.529600px;}
._9_c00079{width:6.789600px;}
._d_c00079{width:9.936000px;}
._6_c00079{width:11.376000px;}
._b_c00079{width:16.380000px;}
._2_c00079{width:20.016000px;}
._1_c00079{width:21.528000px;}
._c_c00079{width:23.950800px;}
._8_c00079{width:32.428800px;}
.fc0_c00079{color:rgb(0,0,0);}
.fs4_c00079{font-size:38.880000px;}
.fs3_c00079{font-size:47.880000px;}
.fs2_c00079{font-size:51.120000px;}
.fs0_c00079{font-size:54.000000px;}
.fs5_c00079{font-size:60.120000px;}
.fs1_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y26_c00079{bottom:57.240000px;}
.y25_c00079{bottom:115.020000px;}
.y24_c00079{bottom:126.985500px;}
.y23_c00079{bottom:149.490000px;}
.y27_c00079{bottom:162.180000px;}
.y22_c00079{bottom:196.830000px;}
.y21_c00079{bottom:228.510000px;}
.y20_c00079{bottom:260.190000px;}
.y1f_c00079{bottom:291.690000px;}
.y1e_c00079{bottom:322.740000px;}
.y1d_c00079{bottom:353.790000px;}
.y1c_c00079{bottom:384.840000px;}
.y1b_c00079{bottom:415.890000px;}
.y1a_c00079{bottom:446.940000px;}
.y19_c00079{bottom:477.990000px;}
.y18_c00079{bottom:509.040000px;}
.y17_c00079{bottom:540.090000px;}
.y16_c00079{bottom:571.140000px;}
.y15_c00079{bottom:602.100000px;}
.y14_c00079{bottom:633.150000px;}
.y13_c00079{bottom:664.200000px;}
.y12_c00079{bottom:695.250000px;}
.y11_c00079{bottom:726.300000px;}
.y10_c00079{bottom:757.350000px;}
.yf_c00079{bottom:788.400000px;}
.ye_c00079{bottom:819.630000px;}
.yd_c00079{bottom:851.310000px;}
.yc_c00079{bottom:882.810000px;}
.yb_c00079{bottom:913.860000px;}
.ya_c00079{bottom:944.910000px;}
.y9_c00079{bottom:975.960000px;}
.y8_c00079{bottom:1007.010000px;}
.y7_c00079{bottom:1038.060000px;}
.y6_c00079{bottom:1069.110000px;}
.y5_c00079{bottom:1096.202700px;}
.y4_c00079{bottom:1131.030000px;}
.y3_c00079{bottom:1150.915500px;}
.y2_c00079{bottom:1166.400000px;}
.y1_c00079{bottom:1197.450000px;}
.h7_c00079{height:38.158594px;}
.h2_c00079{height:52.998047px;}
.h8_c00079{height:59.004492px;}
.h3_c00079{height:70.664062px;}
.h5_c00079{height:73.991602px;}
.h4_c00079{height:107.013262px;}
.h6_c00079{height:143.542969px;}
.h0_c00079{height:1262.880000px;}
.h1_c00079{height:1263.000000px;}
.w0_c00079{width:893.070000px;}
.w1_c00079{width:893.250000px;}
.x0_c00079{left:0.000000px;}
.x2_c00079{left:127.620000px;}
.x1_c00079{left:446.580000px;}
.x3_c00079{left:453.236760px;}
@media print{
.v2_c00079{vertical-align:-91.520000pt;}
.v1_c00079{vertical-align:-55.056000pt;}
.v9_c00079{vertical-align:-18.560000pt;}
.v6_c00079{vertical-align:-13.120000pt;}
.v8_c00079{vertical-align:-2.560000pt;}
.v0_c00079{vertical-align:0.000000pt;}
.v7_c00079{vertical-align:13.120000pt;}
.v5_c00079{vertical-align:24.000000pt;}
.v4_c00079{vertical-align:32.310400pt;}
.v3_c00079{vertical-align:37.440000pt;}
.ls18_c00079{letter-spacing:-0.128000pt;}
.ls1c_c00079{letter-spacing:-0.106880pt;}
.ls17_c00079{letter-spacing:-0.064000pt;}
.ls1b_c00079{letter-spacing:-0.053440pt;}
.ls16_c00079{letter-spacing:0.000000pt;}
.lsc_c00079{letter-spacing:0.008320pt;}
.lsb_c00079{letter-spacing:0.064000pt;}
.ls1a_c00079{letter-spacing:0.090880pt;}
.ls15_c00079{letter-spacing:0.106880pt;}
.lsa_c00079{letter-spacing:0.128000pt;}
.ls13_c00079{letter-spacing:0.147200pt;}
.ls1d_c00079{letter-spacing:0.160320pt;}
.ls19_c00079{letter-spacing:0.170240pt;}
.ls10_c00079{letter-spacing:0.960000pt;}
.ls9_c00079{letter-spacing:1.280000pt;}
.ls14_c00079{letter-spacing:1.656640pt;}
.ls6_c00079{letter-spacing:1.792000pt;}
.ls11_c00079{letter-spacing:1.920000pt;}
.ls3_c00079{letter-spacing:2.181760pt;}
.lsf_c00079{letter-spacing:3.890560pt;}
.ls4_c00079{letter-spacing:5.760000pt;}
.ls7_c00079{letter-spacing:10.880000pt;}
.ls12_c00079{letter-spacing:11.840000pt;}
.ls2_c00079{letter-spacing:14.272000pt;}
.lse_c00079{letter-spacing:18.290560pt;}
.ls8_c00079{letter-spacing:19.200000pt;}
.ls5_c00079{letter-spacing:19.712000pt;}
.lsd_c00079{letter-spacing:19.840000pt;}
.ls0_c00079{letter-spacing:284.016000pt;}
.ls1_c00079{letter-spacing:907.840000pt;}
.ws0_c00079{word-spacing:-64.000000pt;}
.ws5_c00079{word-spacing:-45.530880pt;}
.ws8_c00079{word-spacing:-16.128000pt;}
.ws9_c00079{word-spacing:-16.064000pt;}
.ws3_c00079{word-spacing:-16.000000pt;}
.ws2_c00079{word-spacing:-15.936000pt;}
.ws4_c00079{word-spacing:-10.810240pt;}
.wsa_c00079{word-spacing:-8.640000pt;}
.ws6_c00079{word-spacing:-3.520000pt;}
.ws7_c00079{word-spacing:-3.200000pt;}
.wsc_c00079{word-spacing:-0.144000pt;}
.ws13_c00079{word-spacing:-0.128000pt;}
.wsf_c00079{word-spacing:-0.064000pt;}
.ws2c_c00079{word-spacing:-0.053440pt;}
.wsb_c00079{word-spacing:0.000000pt;}
.ws1_c00079{word-spacing:0.064000pt;}
.wse_c00079{word-spacing:0.128000pt;}
.ws2b_c00079{word-spacing:0.213760pt;}
.ws1b_c00079{word-spacing:0.320000pt;}
.ws20_c00079{word-spacing:0.576000pt;}
.ws27_c00079{word-spacing:0.896000pt;}
.ws26_c00079{word-spacing:0.960000pt;}
.ws19_c00079{word-spacing:1.280000pt;}
.ws2a_c00079{word-spacing:1.710080pt;}
.ws1c_c00079{word-spacing:2.816000pt;}
.ws25_c00079{word-spacing:3.200000pt;}
.wsd_c00079{word-spacing:3.456000pt;}
.ws10_c00079{word-spacing:5.056000pt;}
.ws23_c00079{word-spacing:5.376000pt;}
.ws12_c00079{word-spacing:5.760000pt;}
.ws21_c00079{word-spacing:6.656000pt;}
.ws22_c00079{word-spacing:6.720000pt;}
.ws17_c00079{word-spacing:9.280000pt;}
.ws16_c00079{word-spacing:9.536000pt;}
.ws18_c00079{word-spacing:9.600000pt;}
.ws11_c00079{word-spacing:10.560000pt;}
.ws14_c00079{word-spacing:10.816000pt;}
.ws15_c00079{word-spacing:10.880000pt;}
.ws28_c00079{word-spacing:11.776000pt;}
.ws29_c00079{word-spacing:11.840000pt;}
.ws1a_c00079{word-spacing:14.016000pt;}
.ws24_c00079{word-spacing:14.976000pt;}
.ws1f_c00079{word-spacing:19.776000pt;}
.ws1e_c00079{word-spacing:19.840000pt;}
.ws1d_c00079{word-spacing:28.736000pt;}
._0_c00079{margin-left:-26.496000pt;}
._5_c00079{margin-left:-11.072000pt;}
._3_c00079{margin-left:-0.902400pt;}
._7_c00079{width:0.896000pt;}
._4_c00079{width:2.944000pt;}
._a_c00079{width:4.915200pt;}
._9_c00079{width:6.035200pt;}
._d_c00079{width:8.832000pt;}
._6_c00079{width:10.112000pt;}
._b_c00079{width:14.560000pt;}
._2_c00079{width:17.792000pt;}
._1_c00079{width:19.136000pt;}
._c_c00079{width:21.289600pt;}
._8_c00079{width:28.825600pt;}
.fs4_c00079{font-size:34.560000pt;}
.fs3_c00079{font-size:42.560000pt;}
.fs2_c00079{font-size:45.440000pt;}
.fs0_c00079{font-size:48.000000pt;}
.fs5_c00079{font-size:53.440000pt;}
.fs1_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y26_c00079{bottom:50.880000pt;}
.y25_c00079{bottom:102.240000pt;}
.y24_c00079{bottom:112.876000pt;}
.y23_c00079{bottom:132.880000pt;}
.y27_c00079{bottom:144.160000pt;}
.y22_c00079{bottom:174.960000pt;}
.y21_c00079{bottom:203.120000pt;}
.y20_c00079{bottom:231.280000pt;}
.y1f_c00079{bottom:259.280000pt;}
.y1e_c00079{bottom:286.880000pt;}
.y1d_c00079{bottom:314.480000pt;}
.y1c_c00079{bottom:342.080000pt;}
.y1b_c00079{bottom:369.680000pt;}
.y1a_c00079{bottom:397.280000pt;}
.y19_c00079{bottom:424.880000pt;}
.y18_c00079{bottom:452.480000pt;}
.y17_c00079{bottom:480.080000pt;}
.y16_c00079{bottom:507.680000pt;}
.y15_c00079{bottom:535.200000pt;}
.y14_c00079{bottom:562.800000pt;}
.y13_c00079{bottom:590.400000pt;}
.y12_c00079{bottom:618.000000pt;}
.y11_c00079{bottom:645.600000pt;}
.y10_c00079{bottom:673.200000pt;}
.yf_c00079{bottom:700.800000pt;}
.ye_c00079{bottom:728.560000pt;}
.yd_c00079{bottom:756.720000pt;}
.yc_c00079{bottom:784.720000pt;}
.yb_c00079{bottom:812.320000pt;}
.ya_c00079{bottom:839.920000pt;}
.y9_c00079{bottom:867.520000pt;}
.y8_c00079{bottom:895.120000pt;}
.y7_c00079{bottom:922.720000pt;}
.y6_c00079{bottom:950.320000pt;}
.y5_c00079{bottom:974.402400pt;}
.y4_c00079{bottom:1005.360000pt;}
.y3_c00079{bottom:1023.036000pt;}
.y2_c00079{bottom:1036.800000pt;}
.y1_c00079{bottom:1064.400000pt;}
.h7_c00079{height:33.918750pt;}
.h2_c00079{height:47.109375pt;}
.h8_c00079{height:52.448437pt;}
.h3_c00079{height:62.812500pt;}
.h5_c00079{height:65.770312pt;}
.h4_c00079{height:95.122900pt;}
.h6_c00079{height:127.593750pt;}
.h0_c00079{height:1122.560000pt;}
.h1_c00079{height:1122.666667pt;}
.w0_c00079{width:793.840000pt;}
.w1_c00079{width:794.000000pt;}
.x0_c00079{left:0.000000pt;}
.x2_c00079{left:113.440000pt;}
.x1_c00079{left:396.960000pt;}
.x3_c00079{left:402.877120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2866df3a63d00d36925e55a5.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_ac9c679748a5e40f71c6816f.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_afaffb97740a36bb49534727.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00080;src:url('chunks/assets/font_cac08f8f1d706d84fbb57a53.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;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:ff6_c00080;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00080{font-family:ff6_c00080;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00080{vertical-align:-20.880000px;}
.v2_c00080{vertical-align:-14.760000px;}
.v0_c00080{vertical-align:0.000000px;}
.v3_c00080{vertical-align:14.760000px;}
.v1_c00080{vertical-align:27.000000px;}
.ls1e_c00080{letter-spacing:-0.360720px;}
.ls1d_c00080{letter-spacing:-0.360000px;}
.ls1c_c00080{letter-spacing:-0.288000px;}
.ls1a_c00080{letter-spacing:-0.216000px;}
.ls20_c00080{letter-spacing:-0.180360px;}
.ls17_c00080{letter-spacing:-0.108000px;}
.ls1b_c00080{letter-spacing:-0.072000px;}
.ls1f_c00080{letter-spacing:-0.060120px;}
.ls16_c00080{letter-spacing:0.000000px;}
.ls4_c00080{letter-spacing:0.072000px;}
.ls19_c00080{letter-spacing:0.102240px;}
.ls15_c00080{letter-spacing:0.120240px;}
.ls0_c00080{letter-spacing:0.144000px;}
.ls18_c00080{letter-spacing:0.191520px;}
.ls5_c00080{letter-spacing:4.147200px;}
.ls13_c00080{letter-spacing:4.320000px;}
.ls9_c00080{letter-spacing:4.376880px;}
.lsb_c00080{letter-spacing:4.680000px;}
.ls6_c00080{letter-spacing:5.400000px;}
.ls10_c00080{letter-spacing:7.560000px;}
.ls11_c00080{letter-spacing:8.280000px;}
.ls8_c00080{letter-spacing:9.000000px;}
.lsc_c00080{letter-spacing:11.520000px;}
.lsf_c00080{letter-spacing:15.696000px;}
.ls2_c00080{letter-spacing:16.056000px;}
.ls12_c00080{letter-spacing:16.560000px;}
.ls3_c00080{letter-spacing:19.987200px;}
.lsd_c00080{letter-spacing:20.016000px;}
.lse_c00080{letter-spacing:20.347200px;}
.ls1_c00080{letter-spacing:20.576880px;}
.ls7_c00080{letter-spacing:24.307200px;}
.lsa_c00080{letter-spacing:24.896880px;}
.ls14_c00080{letter-spacing:30.744000px;}
.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:-72.000000px;}
.ws2_c00080{word-spacing:-51.222240px;}
.ws6_c00080{word-spacing:-18.144000px;}
.ws3_c00080{word-spacing:-18.000000px;}
.ws7_c00080{word-spacing:-17.928000px;}
.ws8_c00080{word-spacing:-17.784000px;}
.ws0_c00080{word-spacing:-12.161520px;}
.ws9_c00080{word-spacing:-9.720000px;}
.ws14_c00080{word-spacing:-0.144000px;}
.wsf_c00080{word-spacing:-0.072000px;}
.wsa_c00080{word-spacing:0.000000px;}
.wsc_c00080{word-spacing:0.162000px;}
.ws31_c00080{word-spacing:0.180360px;}
.ws15_c00080{word-spacing:0.216000px;}
.wsb_c00080{word-spacing:0.270000px;}
.ws2a_c00080{word-spacing:0.288000px;}
.ws28_c00080{word-spacing:0.360000px;}
.ws30_c00080{word-spacing:0.360720px;}
.ws2f_c00080{word-spacing:1.440000px;}
.ws5_c00080{word-spacing:3.816000px;}
.wsd_c00080{word-spacing:3.888000px;}
.wse_c00080{word-spacing:3.960000px;}
.ws4_c00080{word-spacing:4.176000px;}
.ws2c_c00080{word-spacing:4.248000px;}
.ws2b_c00080{word-spacing:4.320000px;}
.ws1e_c00080{word-spacing:4.608000px;}
.ws16_c00080{word-spacing:4.680000px;}
.ws11_c00080{word-spacing:4.968000px;}
.ws10_c00080{word-spacing:5.400000px;}
.ws1a_c00080{word-spacing:6.408000px;}
.ws19_c00080{word-spacing:6.480000px;}
.ws23_c00080{word-spacing:7.200000px;}
.ws21_c00080{word-spacing:7.488000px;}
.ws24_c00080{word-spacing:7.560000px;}
.ws22_c00080{word-spacing:7.776000px;}
.ws25_c00080{word-spacing:8.136000px;}
.ws26_c00080{word-spacing:8.208000px;}
.ws27_c00080{word-spacing:8.280000px;}
.ws17_c00080{word-spacing:9.000000px;}
.ws20_c00080{word-spacing:11.448000px;}
.ws1f_c00080{word-spacing:11.520000px;}
.ws2d_c00080{word-spacing:14.688000px;}
.ws29_c00080{word-spacing:16.560000px;}
.ws1c_c00080{word-spacing:16.776000px;}
.ws1b_c00080{word-spacing:16.848000px;}
.ws1d_c00080{word-spacing:16.920000px;}
.ws18_c00080{word-spacing:18.648000px;}
.ws2e_c00080{word-spacing:21.960000px;}
.ws12_c00080{word-spacing:23.688000px;}
.ws13_c00080{word-spacing:23.760000px;}
._6_c00080{margin-left:-2.736000px;}
._1_c00080{margin-left:-1.058400px;}
._0_c00080{width:1.220400px;}
._2_c00080{width:2.642400px;}
._3_c00080{width:5.112000px;}
._8_c00080{width:7.992000px;}
._5_c00080{width:9.936000px;}
._7_c00080{width:16.466400px;}
._4_c00080{width:23.778000px;}
.fc0_c00080{color:rgb(0,0,0);}
.fs4_c00080{font-size:38.880000px;}
.fs2_c00080{font-size:47.880000px;}
.fs3_c00080{font-size:51.120000px;}
.fs0_c00080{font-size:54.000000px;}
.fs5_c00080{font-size:60.120000px;}
.fs1_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y26_c00080{bottom:57.240000px;}
.y25_c00080{bottom:115.020000px;}
.y27_c00080{bottom:127.710000px;}
.y24_c00080{bottom:174.060000px;}
.y23_c00080{bottom:205.110000px;}
.y22_c00080{bottom:236.160000px;}
.y21_c00080{bottom:267.210000px;}
.y20_c00080{bottom:298.260000px;}
.y1f_c00080{bottom:329.310000px;}
.y1e_c00080{bottom:360.360000px;}
.y1d_c00080{bottom:391.410000px;}
.y1c_c00080{bottom:422.460000px;}
.y1b_c00080{bottom:453.510000px;}
.y1a_c00080{bottom:484.560000px;}
.y19_c00080{bottom:515.790000px;}
.y18_c00080{bottom:547.290000px;}
.y17_c00080{bottom:578.430000px;}
.y16_c00080{bottom:610.110000px;}
.y15_c00080{bottom:641.610000px;}
.y14_c00080{bottom:672.660000px;}
.y13_c00080{bottom:703.890000px;}
.y12_c00080{bottom:735.480000px;}
.y11_c00080{bottom:767.160000px;}
.y10_c00080{bottom:798.660000px;}
.yf_c00080{bottom:829.710000px;}
.ye_c00080{bottom:860.940000px;}
.yd_c00080{bottom:892.440000px;}
.yc_c00080{bottom:923.490000px;}
.yb_c00080{bottom:954.540000px;}
.ya_c00080{bottom:985.590000px;}
.y9_c00080{bottom:1016.730000px;}
.y8_c00080{bottom:1048.230000px;}
.y7_c00080{bottom:1079.280000px;}
.y6_c00080{bottom:1110.330000px;}
.y5_c00080{bottom:1131.030000px;}
.y4_c00080{bottom:1150.920000px;}
.y3_c00080{bottom:1166.404500px;}
.y2_c00080{bottom:1181.970000px;}
.y1_c00080{bottom:1197.450000px;}
.h8_c00080{height:38.158594px;}
.h3_c00080{height:52.971680px;}
.h2_c00080{height:52.998047px;}
.h4_c00080{height:70.664062px;}
.h5_c00080{height:73.991602px;}
.h7_c00080{height:75.093750px;}
.h6_c00080{height:143.542969px;}
.h0_c00080{height:1262.880000px;}
.h1_c00080{height:1263.000000px;}
.w0_c00080{width:893.070000px;}
.w1_c00080{width:893.250000px;}
.x0_c00080{left:0.000000px;}
.x3_c00080{left:127.620000px;}
.x5_c00080{left:154.620000px;}
.x4_c00080{left:355.230000px;}
.x2_c00080{left:425.160000px;}
.x1_c00080{left:446.580000px;}
.x6_c00080{left:747.540000px;}
@media print{
.v4_c00080{vertical-align:-18.560000pt;}
.v2_c00080{vertical-align:-13.120000pt;}
.v0_c00080{vertical-align:0.000000pt;}
.v3_c00080{vertical-align:13.120000pt;}
.v1_c00080{vertical-align:24.000000pt;}
.ls1e_c00080{letter-spacing:-0.320640pt;}
.ls1d_c00080{letter-spacing:-0.320000pt;}
.ls1c_c00080{letter-spacing:-0.256000pt;}
.ls1a_c00080{letter-spacing:-0.192000pt;}
.ls20_c00080{letter-spacing:-0.160320pt;}
.ls17_c00080{letter-spacing:-0.096000pt;}
.ls1b_c00080{letter-spacing:-0.064000pt;}
.ls1f_c00080{letter-spacing:-0.053440pt;}
.ls16_c00080{letter-spacing:0.000000pt;}
.ls4_c00080{letter-spacing:0.064000pt;}
.ls19_c00080{letter-spacing:0.090880pt;}
.ls15_c00080{letter-spacing:0.106880pt;}
.ls0_c00080{letter-spacing:0.128000pt;}
.ls18_c00080{letter-spacing:0.170240pt;}
.ls5_c00080{letter-spacing:3.686400pt;}
.ls13_c00080{letter-spacing:3.840000pt;}
.ls9_c00080{letter-spacing:3.890560pt;}
.lsb_c00080{letter-spacing:4.160000pt;}
.ls6_c00080{letter-spacing:4.800000pt;}
.ls10_c00080{letter-spacing:6.720000pt;}
.ls11_c00080{letter-spacing:7.360000pt;}
.ls8_c00080{letter-spacing:8.000000pt;}
.lsc_c00080{letter-spacing:10.240000pt;}
.lsf_c00080{letter-spacing:13.952000pt;}
.ls2_c00080{letter-spacing:14.272000pt;}
.ls12_c00080{letter-spacing:14.720000pt;}
.ls3_c00080{letter-spacing:17.766400pt;}
.lsd_c00080{letter-spacing:17.792000pt;}
.lse_c00080{letter-spacing:18.086400pt;}
.ls1_c00080{letter-spacing:18.290560pt;}
.ls7_c00080{letter-spacing:21.606400pt;}
.lsa_c00080{letter-spacing:22.130560pt;}
.ls14_c00080{letter-spacing:27.328000pt;}
.ws1_c00080{word-spacing:-64.000000pt;}
.ws2_c00080{word-spacing:-45.530880pt;}
.ws6_c00080{word-spacing:-16.128000pt;}
.ws3_c00080{word-spacing:-16.000000pt;}
.ws7_c00080{word-spacing:-15.936000pt;}
.ws8_c00080{word-spacing:-15.808000pt;}
.ws0_c00080{word-spacing:-10.810240pt;}
.ws9_c00080{word-spacing:-8.640000pt;}
.ws14_c00080{word-spacing:-0.128000pt;}
.wsf_c00080{word-spacing:-0.064000pt;}
.wsa_c00080{word-spacing:0.000000pt;}
.wsc_c00080{word-spacing:0.144000pt;}
.ws31_c00080{word-spacing:0.160320pt;}
.ws15_c00080{word-spacing:0.192000pt;}
.wsb_c00080{word-spacing:0.240000pt;}
.ws2a_c00080{word-spacing:0.256000pt;}
.ws28_c00080{word-spacing:0.320000pt;}
.ws30_c00080{word-spacing:0.320640pt;}
.ws2f_c00080{word-spacing:1.280000pt;}
.ws5_c00080{word-spacing:3.392000pt;}
.wsd_c00080{word-spacing:3.456000pt;}
.wse_c00080{word-spacing:3.520000pt;}
.ws4_c00080{word-spacing:3.712000pt;}
.ws2c_c00080{word-spacing:3.776000pt;}
.ws2b_c00080{word-spacing:3.840000pt;}
.ws1e_c00080{word-spacing:4.096000pt;}
.ws16_c00080{word-spacing:4.160000pt;}
.ws11_c00080{word-spacing:4.416000pt;}
.ws10_c00080{word-spacing:4.800000pt;}
.ws1a_c00080{word-spacing:5.696000pt;}
.ws19_c00080{word-spacing:5.760000pt;}
.ws23_c00080{word-spacing:6.400000pt;}
.ws21_c00080{word-spacing:6.656000pt;}
.ws24_c00080{word-spacing:6.720000pt;}
.ws22_c00080{word-spacing:6.912000pt;}
.ws25_c00080{word-spacing:7.232000pt;}
.ws26_c00080{word-spacing:7.296000pt;}
.ws27_c00080{word-spacing:7.360000pt;}
.ws17_c00080{word-spacing:8.000000pt;}
.ws20_c00080{word-spacing:10.176000pt;}
.ws1f_c00080{word-spacing:10.240000pt;}
.ws2d_c00080{word-spacing:13.056000pt;}
.ws29_c00080{word-spacing:14.720000pt;}
.ws1c_c00080{word-spacing:14.912000pt;}
.ws1b_c00080{word-spacing:14.976000pt;}
.ws1d_c00080{word-spacing:15.040000pt;}
.ws18_c00080{word-spacing:16.576000pt;}
.ws2e_c00080{word-spacing:19.520000pt;}
.ws12_c00080{word-spacing:21.056000pt;}
.ws13_c00080{word-spacing:21.120000pt;}
._6_c00080{margin-left:-2.432000pt;}
._1_c00080{margin-left:-0.940800pt;}
._0_c00080{width:1.084800pt;}
._2_c00080{width:2.348800pt;}
._3_c00080{width:4.544000pt;}
._8_c00080{width:7.104000pt;}
._5_c00080{width:8.832000pt;}
._7_c00080{width:14.636800pt;}
._4_c00080{width:21.136000pt;}
.fs4_c00080{font-size:34.560000pt;}
.fs2_c00080{font-size:42.560000pt;}
.fs3_c00080{font-size:45.440000pt;}
.fs0_c00080{font-size:48.000000pt;}
.fs5_c00080{font-size:53.440000pt;}
.fs1_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y26_c00080{bottom:50.880000pt;}
.y25_c00080{bottom:102.240000pt;}
.y27_c00080{bottom:113.520000pt;}
.y24_c00080{bottom:154.720000pt;}
.y23_c00080{bottom:182.320000pt;}
.y22_c00080{bottom:209.920000pt;}
.y21_c00080{bottom:237.520000pt;}
.y20_c00080{bottom:265.120000pt;}
.y1f_c00080{bottom:292.720000pt;}
.y1e_c00080{bottom:320.320000pt;}
.y1d_c00080{bottom:347.920000pt;}
.y1c_c00080{bottom:375.520000pt;}
.y1b_c00080{bottom:403.120000pt;}
.y1a_c00080{bottom:430.720000pt;}
.y19_c00080{bottom:458.480000pt;}
.y18_c00080{bottom:486.480000pt;}
.y17_c00080{bottom:514.160000pt;}
.y16_c00080{bottom:542.320000pt;}
.y15_c00080{bottom:570.320000pt;}
.y14_c00080{bottom:597.920000pt;}
.y13_c00080{bottom:625.680000pt;}
.y12_c00080{bottom:653.760000pt;}
.y11_c00080{bottom:681.920000pt;}
.y10_c00080{bottom:709.920000pt;}
.yf_c00080{bottom:737.520000pt;}
.ye_c00080{bottom:765.280000pt;}
.yd_c00080{bottom:793.280000pt;}
.yc_c00080{bottom:820.880000pt;}
.yb_c00080{bottom:848.480000pt;}
.ya_c00080{bottom:876.080000pt;}
.y9_c00080{bottom:903.760000pt;}
.y8_c00080{bottom:931.760000pt;}
.y7_c00080{bottom:959.360000pt;}
.y6_c00080{bottom:986.960000pt;}
.y5_c00080{bottom:1005.360000pt;}
.y4_c00080{bottom:1023.040000pt;}
.y3_c00080{bottom:1036.804000pt;}
.y2_c00080{bottom:1050.640000pt;}
.y1_c00080{bottom:1064.400000pt;}
.h8_c00080{height:33.918750pt;}
.h3_c00080{height:47.085938pt;}
.h2_c00080{height:47.109375pt;}
.h4_c00080{height:62.812500pt;}
.h5_c00080{height:65.770312pt;}
.h7_c00080{height:66.750000pt;}
.h6_c00080{height:127.593750pt;}
.h0_c00080{height:1122.560000pt;}
.h1_c00080{height:1122.666667pt;}
.w0_c00080{width:793.840000pt;}
.w1_c00080{width:794.000000pt;}
.x0_c00080{left:0.000000pt;}
.x3_c00080{left:113.440000pt;}
.x5_c00080{left:137.440000pt;}
.x4_c00080{left:315.760000pt;}
.x2_c00080{left:377.920000pt;}
.x1_c00080{left:396.960000pt;}
.x6_c00080{left:664.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_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_c9af34cde9baa1981475d601.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_43021ab19578131a2ef848f3.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;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_c00081;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00081;src:url('chunks/assets/font_c35402909bef5d6bde7622ab.woff2')format("woff");}.ff5_c00081{font-family:ff5_c00081;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00081;src:url('chunks/assets/font_faa6fc8df194eded6755f70d.woff2')format("woff");}.ff6_c00081{font-family:ff6_c00081;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00081{vertical-align:-61.938000px;}
.v8_c00081{vertical-align:-20.880000px;}
.v3_c00081{vertical-align:-14.760000px;}
.v5_c00081{vertical-align:-2.880000px;}
.v0_c00081{vertical-align:0.000000px;}
.v2_c00081{vertical-align:2.880000px;}
.v7_c00081{vertical-align:14.760000px;}
.v4_c00081{vertical-align:17.640000px;}
.v6_c00081{vertical-align:27.000000px;}
.ls12_c00081{letter-spacing:-0.288000px;}
.ls14_c00081{letter-spacing:-0.060120px;}
.lsf_c00081{letter-spacing:0.000000px;}
.ls1_c00081{letter-spacing:0.072000px;}
.ls10_c00081{letter-spacing:0.102240px;}
.lse_c00081{letter-spacing:0.120240px;}
.ls5_c00081{letter-spacing:0.144000px;}
.ls15_c00081{letter-spacing:0.180360px;}
.ls11_c00081{letter-spacing:0.191520px;}
.ls13_c00081{letter-spacing:0.360000px;}
.ls8_c00081{letter-spacing:0.720000px;}
.lsc_c00081{letter-spacing:2.088000px;}
.lsb_c00081{letter-spacing:2.160000px;}
.ls7_c00081{letter-spacing:4.147200px;}
.ls3_c00081{letter-spacing:4.320000px;}
.ls6_c00081{letter-spacing:4.736880px;}
.ls4_c00081{letter-spacing:9.000000px;}
.lsd_c00081{letter-spacing:9.360000px;}
.lsa_c00081{letter-spacing:12.240000px;}
.ls9_c00081{letter-spacing:12.247200px;}
.ls2_c00081{letter-spacing:30.744000px;}
.ls0_c00081{letter-spacing:319.518000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00081{word-spacing:-72.000000px;}
.ws2_c00081{word-spacing:-51.222240px;}
.ws4_c00081{word-spacing:-18.144000px;}
.ws5_c00081{word-spacing:-18.072000px;}
.ws7_c00081{word-spacing:-18.000000px;}
.ws6_c00081{word-spacing:-17.712000px;}
.ws0_c00081{word-spacing:-15.840000px;}
.ws3_c00081{word-spacing:-12.161520px;}
.ws8_c00081{word-spacing:-9.720000px;}
.wsd_c00081{word-spacing:-0.432000px;}
.ws25_c00081{word-spacing:-0.360000px;}
.wsa_c00081{word-spacing:-0.162000px;}
.ws12_c00081{word-spacing:-0.072000px;}
.ws2d_c00081{word-spacing:-0.060120px;}
.ws9_c00081{word-spacing:0.000000px;}
.ws2c_c00081{word-spacing:0.180360px;}
.ws15_c00081{word-spacing:0.288000px;}
.ws21_c00081{word-spacing:0.648000px;}
.ws22_c00081{word-spacing:0.720000px;}
.ws19_c00081{word-spacing:1.008000px;}
.ws1c_c00081{word-spacing:2.736000px;}
.ws1d_c00081{word-spacing:2.808000px;}
.ws2b_c00081{word-spacing:3.528000px;}
.ws2a_c00081{word-spacing:3.600000px;}
.ws27_c00081{word-spacing:3.888000px;}
.ws26_c00081{word-spacing:3.960000px;}
.ws10_c00081{word-spacing:4.248000px;}
.ws11_c00081{word-spacing:4.320000px;}
.ws18_c00081{word-spacing:5.328000px;}
.ws1e_c00081{word-spacing:5.400000px;}
.ws13_c00081{word-spacing:6.480000px;}
.wsf_c00081{word-spacing:6.840000px;}
.wse_c00081{word-spacing:8.568000px;}
.ws14_c00081{word-spacing:9.000000px;}
.ws29_c00081{word-spacing:9.288000px;}
.ws28_c00081{word-spacing:9.360000px;}
.ws1f_c00081{word-spacing:10.728000px;}
.ws20_c00081{word-spacing:10.800000px;}
.ws23_c00081{word-spacing:12.168000px;}
.ws24_c00081{word-spacing:12.240000px;}
.ws17_c00081{word-spacing:13.248000px;}
.ws16_c00081{word-spacing:13.320000px;}
.wsb_c00081{word-spacing:13.608000px;}
.wsc_c00081{word-spacing:13.680000px;}
.ws1b_c00081{word-spacing:19.008000px;}
.ws1a_c00081{word-spacing:19.080000px;}
._2_c00081{margin-left:-12.528000px;}
._4_c00081{margin-left:-3.168000px;}
._0_c00081{margin-left:-1.008000px;}
._1_c00081{width:1.008000px;}
._5_c00081{width:2.664000px;}
._3_c00081{width:4.359600px;}
.fc0_c00081{color:rgb(0,0,0);}
.fs4_c00081{font-size:38.880000px;}
.fs3_c00081{font-size:47.880000px;}
.fs2_c00081{font-size:51.120000px;}
.fs0_c00081{font-size:54.000000px;}
.fs5_c00081{font-size:60.120000px;}
.fs1_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y26_c00081{bottom:57.240000px;}
.y25_c00081{bottom:115.020000px;}
.y24_c00081{bottom:132.210000px;}
.y23_c00081{bottom:149.490000px;}
.y27_c00081{bottom:162.180000px;}
.y22_c00081{bottom:206.460000px;}
.y21_c00081{bottom:237.960000px;}
.y20_c00081{bottom:269.010000px;}
.y1f_c00081{bottom:300.060000px;}
.y1e_c00081{bottom:331.110000px;}
.y1d_c00081{bottom:362.340000px;}
.y1c_c00081{bottom:394.020000px;}
.y1b_c00081{bottom:425.520000px;}
.y1a_c00081{bottom:456.570000px;}
.y19_c00081{bottom:487.620000px;}
.y18_c00081{bottom:518.670000px;}
.y17_c00081{bottom:549.810000px;}
.y16_c00081{bottom:581.490000px;}
.y15_c00081{bottom:612.990000px;}
.y14_c00081{bottom:644.040000px;}
.y13_c00081{bottom:675.090000px;}
.y12_c00081{bottom:706.140000px;}
.y11_c00081{bottom:737.190000px;}
.y10_c00081{bottom:768.240000px;}
.yf_c00081{bottom:799.290000px;}
.ye_c00081{bottom:830.340000px;}
.yd_c00081{bottom:861.390000px;}
.yc_c00081{bottom:892.440000px;}
.yb_c00081{bottom:923.490000px;}
.ya_c00081{bottom:954.540000px;}
.y9_c00081{bottom:985.680000px;}
.y8_c00081{bottom:1017.180000px;}
.y7_c00081{bottom:1048.230000px;}
.y6_c00081{bottom:1079.280000px;}
.y5_c00081{bottom:1110.330000px;}
.y4_c00081{bottom:1131.030000px;}
.y3_c00081{bottom:1150.915500px;}
.y2_c00081{bottom:1166.400000px;}
.y1_c00081{bottom:1197.450000px;}
.h7_c00081{height:38.158594px;}
.h2_c00081{height:52.998047px;}
.h3_c00081{height:70.664062px;}
.h6_c00081{height:73.991602px;}
.h4_c00081{height:75.093750px;}
.h5_c00081{height:143.542969px;}
.h0_c00081{height:1262.880000px;}
.h1_c00081{height:1263.000000px;}
.w0_c00081{width:893.070000px;}
.w1_c00081{width:893.250000px;}
.x0_c00081{left:0.000000px;}
.x2_c00081{left:127.620000px;}
.x3_c00081{left:154.620000px;}
.x1_c00081{left:446.580000px;}
@media print{
.v1_c00081{vertical-align:-55.056000pt;}
.v8_c00081{vertical-align:-18.560000pt;}
.v3_c00081{vertical-align:-13.120000pt;}
.v5_c00081{vertical-align:-2.560000pt;}
.v0_c00081{vertical-align:0.000000pt;}
.v2_c00081{vertical-align:2.560000pt;}
.v7_c00081{vertical-align:13.120000pt;}
.v4_c00081{vertical-align:15.680000pt;}
.v6_c00081{vertical-align:24.000000pt;}
.ls12_c00081{letter-spacing:-0.256000pt;}
.ls14_c00081{letter-spacing:-0.053440pt;}
.lsf_c00081{letter-spacing:0.000000pt;}
.ls1_c00081{letter-spacing:0.064000pt;}
.ls10_c00081{letter-spacing:0.090880pt;}
.lse_c00081{letter-spacing:0.106880pt;}
.ls5_c00081{letter-spacing:0.128000pt;}
.ls15_c00081{letter-spacing:0.160320pt;}
.ls11_c00081{letter-spacing:0.170240pt;}
.ls13_c00081{letter-spacing:0.320000pt;}
.ls8_c00081{letter-spacing:0.640000pt;}
.lsc_c00081{letter-spacing:1.856000pt;}
.lsb_c00081{letter-spacing:1.920000pt;}
.ls7_c00081{letter-spacing:3.686400pt;}
.ls3_c00081{letter-spacing:3.840000pt;}
.ls6_c00081{letter-spacing:4.210560pt;}
.ls4_c00081{letter-spacing:8.000000pt;}
.lsd_c00081{letter-spacing:8.320000pt;}
.lsa_c00081{letter-spacing:10.880000pt;}
.ls9_c00081{letter-spacing:10.886400pt;}
.ls2_c00081{letter-spacing:27.328000pt;}
.ls0_c00081{letter-spacing:284.016000pt;}
.ws1_c00081{word-spacing:-64.000000pt;}
.ws2_c00081{word-spacing:-45.530880pt;}
.ws4_c00081{word-spacing:-16.128000pt;}
.ws5_c00081{word-spacing:-16.064000pt;}
.ws7_c00081{word-spacing:-16.000000pt;}
.ws6_c00081{word-spacing:-15.744000pt;}
.ws0_c00081{word-spacing:-14.080000pt;}
.ws3_c00081{word-spacing:-10.810240pt;}
.ws8_c00081{word-spacing:-8.640000pt;}
.wsd_c00081{word-spacing:-0.384000pt;}
.ws25_c00081{word-spacing:-0.320000pt;}
.wsa_c00081{word-spacing:-0.144000pt;}
.ws12_c00081{word-spacing:-0.064000pt;}
.ws2d_c00081{word-spacing:-0.053440pt;}
.ws9_c00081{word-spacing:0.000000pt;}
.ws2c_c00081{word-spacing:0.160320pt;}
.ws15_c00081{word-spacing:0.256000pt;}
.ws21_c00081{word-spacing:0.576000pt;}
.ws22_c00081{word-spacing:0.640000pt;}
.ws19_c00081{word-spacing:0.896000pt;}
.ws1c_c00081{word-spacing:2.432000pt;}
.ws1d_c00081{word-spacing:2.496000pt;}
.ws2b_c00081{word-spacing:3.136000pt;}
.ws2a_c00081{word-spacing:3.200000pt;}
.ws27_c00081{word-spacing:3.456000pt;}
.ws26_c00081{word-spacing:3.520000pt;}
.ws10_c00081{word-spacing:3.776000pt;}
.ws11_c00081{word-spacing:3.840000pt;}
.ws18_c00081{word-spacing:4.736000pt;}
.ws1e_c00081{word-spacing:4.800000pt;}
.ws13_c00081{word-spacing:5.760000pt;}
.wsf_c00081{word-spacing:6.080000pt;}
.wse_c00081{word-spacing:7.616000pt;}
.ws14_c00081{word-spacing:8.000000pt;}
.ws29_c00081{word-spacing:8.256000pt;}
.ws28_c00081{word-spacing:8.320000pt;}
.ws1f_c00081{word-spacing:9.536000pt;}
.ws20_c00081{word-spacing:9.600000pt;}
.ws23_c00081{word-spacing:10.816000pt;}
.ws24_c00081{word-spacing:10.880000pt;}
.ws17_c00081{word-spacing:11.776000pt;}
.ws16_c00081{word-spacing:11.840000pt;}
.wsb_c00081{word-spacing:12.096000pt;}
.wsc_c00081{word-spacing:12.160000pt;}
.ws1b_c00081{word-spacing:16.896000pt;}
.ws1a_c00081{word-spacing:16.960000pt;}
._2_c00081{margin-left:-11.136000pt;}
._4_c00081{margin-left:-2.816000pt;}
._0_c00081{margin-left:-0.896000pt;}
._1_c00081{width:0.896000pt;}
._5_c00081{width:2.368000pt;}
._3_c00081{width:3.875200pt;}
.fs4_c00081{font-size:34.560000pt;}
.fs3_c00081{font-size:42.560000pt;}
.fs2_c00081{font-size:45.440000pt;}
.fs0_c00081{font-size:48.000000pt;}
.fs5_c00081{font-size:53.440000pt;}
.fs1_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y26_c00081{bottom:50.880000pt;}
.y25_c00081{bottom:102.240000pt;}
.y24_c00081{bottom:117.520000pt;}
.y23_c00081{bottom:132.880000pt;}
.y27_c00081{bottom:144.160000pt;}
.y22_c00081{bottom:183.520000pt;}
.y21_c00081{bottom:211.520000pt;}
.y20_c00081{bottom:239.120000pt;}
.y1f_c00081{bottom:266.720000pt;}
.y1e_c00081{bottom:294.320000pt;}
.y1d_c00081{bottom:322.080000pt;}
.y1c_c00081{bottom:350.240000pt;}
.y1b_c00081{bottom:378.240000pt;}
.y1a_c00081{bottom:405.840000pt;}
.y19_c00081{bottom:433.440000pt;}
.y18_c00081{bottom:461.040000pt;}
.y17_c00081{bottom:488.720000pt;}
.y16_c00081{bottom:516.880000pt;}
.y15_c00081{bottom:544.880000pt;}
.y14_c00081{bottom:572.480000pt;}
.y13_c00081{bottom:600.080000pt;}
.y12_c00081{bottom:627.680000pt;}
.y11_c00081{bottom:655.280000pt;}
.y10_c00081{bottom:682.880000pt;}
.yf_c00081{bottom:710.480000pt;}
.ye_c00081{bottom:738.080000pt;}
.yd_c00081{bottom:765.680000pt;}
.yc_c00081{bottom:793.280000pt;}
.yb_c00081{bottom:820.880000pt;}
.ya_c00081{bottom:848.480000pt;}
.y9_c00081{bottom:876.160000pt;}
.y8_c00081{bottom:904.160000pt;}
.y7_c00081{bottom:931.760000pt;}
.y6_c00081{bottom:959.360000pt;}
.y5_c00081{bottom:986.960000pt;}
.y4_c00081{bottom:1005.360000pt;}
.y3_c00081{bottom:1023.036000pt;}
.y2_c00081{bottom:1036.800000pt;}
.y1_c00081{bottom:1064.400000pt;}
.h7_c00081{height:33.918750pt;}
.h2_c00081{height:47.109375pt;}
.h3_c00081{height:62.812500pt;}
.h6_c00081{height:65.770312pt;}
.h4_c00081{height:66.750000pt;}
.h5_c00081{height:127.593750pt;}
.h0_c00081{height:1122.560000pt;}
.h1_c00081{height:1122.666667pt;}
.w0_c00081{width:793.840000pt;}
.w1_c00081{width:794.000000pt;}
.x0_c00081{left:0.000000pt;}
.x2_c00081{left:113.440000pt;}
.x3_c00081{left:137.440000pt;}
.x1_c00081{left:396.960000pt;}
}





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

.ir_c00082:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00082;src:url('chunks/assets/font_beaac404060e5046b568ad3a.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_4110a3215416fada3f669fda.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_ecdacccbc8ee9657730fac87.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_1cc1d2612b26058208806da3.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;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:ff6_c00082;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00082{font-family:ff6_c00082;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00082{vertical-align:-126.720000px;}
.v9_c00082{vertical-align:-28.440000px;}
.vb_c00082{vertical-align:-16.200000px;}
.v1_c00082{vertical-align:-14.760000px;}
.v4_c00082{vertical-align:-12.240000px;}
.v0_c00082{vertical-align:0.000000px;}
.v6_c00082{vertical-align:12.240000px;}
.v8_c00082{vertical-align:13.680000px;}
.v3_c00082{vertical-align:14.760000px;}
.va_c00082{vertical-align:16.200000px;}
.v7_c00082{vertical-align:64.443600px;}
.v5_c00082{vertical-align:76.683600px;}
.ls2b_c00082{letter-spacing:-0.216000px;}
.ls2a_c00082{letter-spacing:-0.144000px;}
.ls27_c00082{letter-spacing:-0.108000px;}
.ls29_c00082{letter-spacing:-0.072000px;}
.ls26_c00082{letter-spacing:0.000000px;}
.ls22_c00082{letter-spacing:0.014400px;}
.ls0_c00082{letter-spacing:0.072000px;}
.ls28_c00082{letter-spacing:0.102240px;}
.ls1_c00082{letter-spacing:0.144000px;}
.ls8_c00082{letter-spacing:0.174240px;}
.ls13_c00082{letter-spacing:0.360000px;}
.ls12_c00082{letter-spacing:0.432000px;}
.ls15_c00082{letter-spacing:1.080000px;}
.ls3_c00082{letter-spacing:1.440000px;}
.ls1e_c00082{letter-spacing:1.800000px;}
.ls1c_c00082{letter-spacing:2.016000px;}
.ls20_c00082{letter-spacing:2.088000px;}
.ls4_c00082{letter-spacing:2.160000px;}
.lse_c00082{letter-spacing:3.067200px;}
.ls19_c00082{letter-spacing:3.148800px;}
.lsb_c00082{letter-spacing:3.575880px;}
.ls21_c00082{letter-spacing:3.600000px;}
.ls25_c00082{letter-spacing:3.607200px;}
.ls10_c00082{letter-spacing:4.147200px;}
.ls1a_c00082{letter-spacing:4.320000px;}
.ls2_c00082{letter-spacing:4.376880px;}
.ls7_c00082{letter-spacing:4.507200px;}
.ls6_c00082{letter-spacing:4.736880px;}
.ls11_c00082{letter-spacing:5.760000px;}
.ls24_c00082{letter-spacing:5.832000px;}
.ls16_c00082{letter-spacing:7.567200px;}
.lsf_c00082{letter-spacing:10.440000px;}
.ls1f_c00082{letter-spacing:11.880000px;}
.ls18_c00082{letter-spacing:16.056000px;}
.lsd_c00082{letter-spacing:17.374680px;}
.ls5_c00082{letter-spacing:20.016000px;}
.lsc_c00082{letter-spacing:20.347200px;}
.ls9_c00082{letter-spacing:20.495880px;}
.ls17_c00082{letter-spacing:20.576880px;}
.lsa_c00082{letter-spacing:20.621160px;}
.ls1d_c00082{letter-spacing:21.600000px;}
.ls1b_c00082{letter-spacing:22.176000px;}
.ls14_c00082{letter-spacing:23.904000px;}
.ls23_c00082{letter-spacing:24.536880px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:-72.000000px;}
.ws5_c00082{word-spacing:-60.120000px;}
.ws1_c00082{word-spacing:-51.222240px;}
.ws6_c00082{word-spacing:-42.120000px;}
.ws9_c00082{word-spacing:-18.144000px;}
.wsa_c00082{word-spacing:-18.000000px;}
.ws3_c00082{word-spacing:-17.928000px;}
.ws4_c00082{word-spacing:-17.856000px;}
.wsc_c00082{word-spacing:-17.784000px;}
.ws2_c00082{word-spacing:-15.840000px;}
.wsb_c00082{word-spacing:-3.960000px;}
.ws24_c00082{word-spacing:-0.360000px;}
.ws15_c00082{word-spacing:-0.144000px;}
.ws12_c00082{word-spacing:-0.072000px;}
.wsd_c00082{word-spacing:0.000000px;}
.wsf_c00082{word-spacing:0.162000px;}
.ws2c_c00082{word-spacing:0.216000px;}
.wse_c00082{word-spacing:0.270000px;}
.ws2b_c00082{word-spacing:0.288000px;}
.ws1a_c00082{word-spacing:0.360000px;}
.ws1f_c00082{word-spacing:1.008000px;}
.ws20_c00082{word-spacing:1.080000px;}
.ws13_c00082{word-spacing:1.368000px;}
.ws14_c00082{word-spacing:1.440000px;}
.ws17_c00082{word-spacing:3.240000px;}
.ws2a_c00082{word-spacing:3.528000px;}
.ws23_c00082{word-spacing:3.888000px;}
.ws1b_c00082{word-spacing:4.320000px;}
.ws18_c00082{word-spacing:5.400000px;}
.ws19_c00082{word-spacing:5.760000px;}
.ws1c_c00082{word-spacing:6.120000px;}
.ws21_c00082{word-spacing:7.488000px;}
.ws22_c00082{word-spacing:7.560000px;}
.ws27_c00082{word-spacing:8.640000px;}
.ws25_c00082{word-spacing:8.928000px;}
.ws26_c00082{word-spacing:9.000000px;}
.ws16_c00082{word-spacing:10.368000px;}
.ws28_c00082{word-spacing:11.808000px;}
.ws29_c00082{word-spacing:11.880000px;}
.ws10_c00082{word-spacing:12.888000px;}
.ws11_c00082{word-spacing:13.320000px;}
.ws1d_c00082{word-spacing:19.080000px;}
.ws2e_c00082{word-spacing:22.608000px;}
.ws2d_c00082{word-spacing:22.680000px;}
.ws8_c00082{word-spacing:34.356600px;}
.ws1e_c00082{word-spacing:37.008000px;}
.ws7_c00082{word-spacing:37.580040px;}
._10_c00082{margin-left:-34.567200px;}
._12_c00082{margin-left:-31.690800px;}
._14_c00082{margin-left:-24.408000px;}
._e_c00082{margin-left:-12.456000px;}
._b_c00082{margin-left:-10.947600px;}
._11_c00082{margin-left:-8.640000px;}
._f_c00082{margin-left:-4.125600px;}
._4_c00082{margin-left:-2.160000px;}
._1_c00082{margin-left:-1.058400px;}
._0_c00082{width:1.220400px;}
._13_c00082{width:2.509200px;}
._5_c00082{width:3.855600px;}
._a_c00082{width:5.079600px;}
._d_c00082{width:8.910000px;}
._7_c00082{width:11.784960px;}
._6_c00082{width:13.887720px;}
._9_c00082{width:16.063200px;}
._8_c00082{width:18.259200px;}
._c_c00082{width:19.987200px;}
._3_c00082{width:23.778000px;}
._2_c00082{width:75.218400px;}
.fc0_c00082{color:rgb(0,0,0);}
.fs4_c00082{font-size:42.120000px;}
.fs2_c00082{font-size:51.120000px;}
.fs0_c00082{font-size:54.000000px;}
.fs3_c00082{font-size:60.120000px;}
.fs1_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y28_c00082{bottom:57.240000px;}
.y27_c00082{bottom:111.600000px;}
.y26_c00082{bottom:142.650000px;}
.y25_c00082{bottom:173.700000px;}
.y24_c00082{bottom:204.930000px;}
.y23_c00082{bottom:238.230000px;}
.y22_c00082{bottom:270.270000px;}
.y21_c00082{bottom:301.950000px;}
.y20_c00082{bottom:333.630000px;}
.y1f_c00082{bottom:365.130000px;}
.y1e_c00082{bottom:396.360000px;}
.y1d_c00082{bottom:427.950000px;}
.y1c_c00082{bottom:459.450000px;}
.y1b_c00082{bottom:490.500000px;}
.y1a_c00082{bottom:521.550000px;}
.y19_c00082{bottom:552.600000px;}
.y18_c00082{bottom:583.650000px;}
.y17_c00082{bottom:614.880000px;}
.y16_c00082{bottom:646.470000px;}
.y15_c00082{bottom:678.150000px;}
.y14_c00082{bottom:709.650000px;}
.y13_c00082{bottom:740.880000px;}
.y12_c00082{bottom:772.380000px;}
.y11_c00082{bottom:803.610000px;}
.y10_c00082{bottom:829.529100px;}
.ye_c00082{bottom:848.701980px;}
.yf_c00082{bottom:871.017300px;}
.yd_c00082{bottom:888.659100px;}
.yb_c00082{bottom:907.830000px;}
.yc_c00082{bottom:930.147300px;}
.ya_c00082{bottom:953.280000px;}
.y9_c00082{bottom:1016.190000px;}
.y8_c00082{bottom:1047.780000px;}
.y7_c00082{bottom:1079.280000px;}
.y6_c00082{bottom:1110.330000px;}
.y5_c00082{bottom:1131.030000px;}
.y4_c00082{bottom:1150.920000px;}
.y3_c00082{bottom:1166.404500px;}
.y2_c00082{bottom:1181.970000px;}
.y1_c00082{bottom:1197.450000px;}
.h3_c00082{height:52.971680px;}
.h2_c00082{height:52.998047px;}
.h4_c00082{height:70.664062px;}
.h9_c00082{height:75.093750px;}
.h7_c00082{height:83.972637px;}
.h6_c00082{height:119.858379px;}
.h5_c00082{height:143.542969px;}
.ha_c00082{height:157.222969px;}
.hb_c00082{height:159.742969px;}
.h8_c00082{height:196.541979px;}
.h0_c00082{height:1262.880000px;}
.h1_c00082{height:1263.000000px;}
.w0_c00082{width:893.070000px;}
.w1_c00082{width:893.250000px;}
.x0_c00082{left:0.000000px;}
.x3_c00082{left:127.620000px;}
.x7_c00082{left:154.620000px;}
.x4_c00082{left:404.280000px;}
.x2_c00082{left:425.160000px;}
.x5_c00082{left:436.765410px;}
.x6_c00082{left:438.829290px;}
.x1_c00082{left:446.580000px;}
.x8_c00082{left:747.540000px;}
@media print{
.v2_c00082{vertical-align:-112.640000pt;}
.v9_c00082{vertical-align:-25.280000pt;}
.vb_c00082{vertical-align:-14.400000pt;}
.v1_c00082{vertical-align:-13.120000pt;}
.v4_c00082{vertical-align:-10.880000pt;}
.v0_c00082{vertical-align:0.000000pt;}
.v6_c00082{vertical-align:10.880000pt;}
.v8_c00082{vertical-align:12.160000pt;}
.v3_c00082{vertical-align:13.120000pt;}
.va_c00082{vertical-align:14.400000pt;}
.v7_c00082{vertical-align:57.283200pt;}
.v5_c00082{vertical-align:68.163200pt;}
.ls2b_c00082{letter-spacing:-0.192000pt;}
.ls2a_c00082{letter-spacing:-0.128000pt;}
.ls27_c00082{letter-spacing:-0.096000pt;}
.ls29_c00082{letter-spacing:-0.064000pt;}
.ls26_c00082{letter-spacing:0.000000pt;}
.ls22_c00082{letter-spacing:0.012800pt;}
.ls0_c00082{letter-spacing:0.064000pt;}
.ls28_c00082{letter-spacing:0.090880pt;}
.ls1_c00082{letter-spacing:0.128000pt;}
.ls8_c00082{letter-spacing:0.154880pt;}
.ls13_c00082{letter-spacing:0.320000pt;}
.ls12_c00082{letter-spacing:0.384000pt;}
.ls15_c00082{letter-spacing:0.960000pt;}
.ls3_c00082{letter-spacing:1.280000pt;}
.ls1e_c00082{letter-spacing:1.600000pt;}
.ls1c_c00082{letter-spacing:1.792000pt;}
.ls20_c00082{letter-spacing:1.856000pt;}
.ls4_c00082{letter-spacing:1.920000pt;}
.lse_c00082{letter-spacing:2.726400pt;}
.ls19_c00082{letter-spacing:2.798933pt;}
.lsb_c00082{letter-spacing:3.178560pt;}
.ls21_c00082{letter-spacing:3.200000pt;}
.ls25_c00082{letter-spacing:3.206400pt;}
.ls10_c00082{letter-spacing:3.686400pt;}
.ls1a_c00082{letter-spacing:3.840000pt;}
.ls2_c00082{letter-spacing:3.890560pt;}
.ls7_c00082{letter-spacing:4.006400pt;}
.ls6_c00082{letter-spacing:4.210560pt;}
.ls11_c00082{letter-spacing:5.120000pt;}
.ls24_c00082{letter-spacing:5.184000pt;}
.ls16_c00082{letter-spacing:6.726400pt;}
.lsf_c00082{letter-spacing:9.280000pt;}
.ls1f_c00082{letter-spacing:10.560000pt;}
.ls18_c00082{letter-spacing:14.272000pt;}
.lsd_c00082{letter-spacing:15.444160pt;}
.ls5_c00082{letter-spacing:17.792000pt;}
.lsc_c00082{letter-spacing:18.086400pt;}
.ls9_c00082{letter-spacing:18.218560pt;}
.ls17_c00082{letter-spacing:18.290560pt;}
.lsa_c00082{letter-spacing:18.329920pt;}
.ls1d_c00082{letter-spacing:19.200000pt;}
.ls1b_c00082{letter-spacing:19.712000pt;}
.ls14_c00082{letter-spacing:21.248000pt;}
.ls23_c00082{letter-spacing:21.810560pt;}
.ws0_c00082{word-spacing:-64.000000pt;}
.ws5_c00082{word-spacing:-53.440000pt;}
.ws1_c00082{word-spacing:-45.530880pt;}
.ws6_c00082{word-spacing:-37.440000pt;}
.ws9_c00082{word-spacing:-16.128000pt;}
.wsa_c00082{word-spacing:-16.000000pt;}
.ws3_c00082{word-spacing:-15.936000pt;}
.ws4_c00082{word-spacing:-15.872000pt;}
.wsc_c00082{word-spacing:-15.808000pt;}
.ws2_c00082{word-spacing:-14.080000pt;}
.wsb_c00082{word-spacing:-3.520000pt;}
.ws24_c00082{word-spacing:-0.320000pt;}
.ws15_c00082{word-spacing:-0.128000pt;}
.ws12_c00082{word-spacing:-0.064000pt;}
.wsd_c00082{word-spacing:0.000000pt;}
.wsf_c00082{word-spacing:0.144000pt;}
.ws2c_c00082{word-spacing:0.192000pt;}
.wse_c00082{word-spacing:0.240000pt;}
.ws2b_c00082{word-spacing:0.256000pt;}
.ws1a_c00082{word-spacing:0.320000pt;}
.ws1f_c00082{word-spacing:0.896000pt;}
.ws20_c00082{word-spacing:0.960000pt;}
.ws13_c00082{word-spacing:1.216000pt;}
.ws14_c00082{word-spacing:1.280000pt;}
.ws17_c00082{word-spacing:2.880000pt;}
.ws2a_c00082{word-spacing:3.136000pt;}
.ws23_c00082{word-spacing:3.456000pt;}
.ws1b_c00082{word-spacing:3.840000pt;}
.ws18_c00082{word-spacing:4.800000pt;}
.ws19_c00082{word-spacing:5.120000pt;}
.ws1c_c00082{word-spacing:5.440000pt;}
.ws21_c00082{word-spacing:6.656000pt;}
.ws22_c00082{word-spacing:6.720000pt;}
.ws27_c00082{word-spacing:7.680000pt;}
.ws25_c00082{word-spacing:7.936000pt;}
.ws26_c00082{word-spacing:8.000000pt;}
.ws16_c00082{word-spacing:9.216000pt;}
.ws28_c00082{word-spacing:10.496000pt;}
.ws29_c00082{word-spacing:10.560000pt;}
.ws10_c00082{word-spacing:11.456000pt;}
.ws11_c00082{word-spacing:11.840000pt;}
.ws1d_c00082{word-spacing:16.960000pt;}
.ws2e_c00082{word-spacing:20.096000pt;}
.ws2d_c00082{word-spacing:20.160000pt;}
.ws8_c00082{word-spacing:30.539200pt;}
.ws1e_c00082{word-spacing:32.896000pt;}
.ws7_c00082{word-spacing:33.404480pt;}
._10_c00082{margin-left:-30.726400pt;}
._12_c00082{margin-left:-28.169600pt;}
._14_c00082{margin-left:-21.696000pt;}
._e_c00082{margin-left:-11.072000pt;}
._b_c00082{margin-left:-9.731200pt;}
._11_c00082{margin-left:-7.680000pt;}
._f_c00082{margin-left:-3.667200pt;}
._4_c00082{margin-left:-1.920000pt;}
._1_c00082{margin-left:-0.940800pt;}
._0_c00082{width:1.084800pt;}
._13_c00082{width:2.230400pt;}
._5_c00082{width:3.427200pt;}
._a_c00082{width:4.515200pt;}
._d_c00082{width:7.920000pt;}
._7_c00082{width:10.475520pt;}
._6_c00082{width:12.344640pt;}
._9_c00082{width:14.278400pt;}
._8_c00082{width:16.230400pt;}
._c_c00082{width:17.766400pt;}
._3_c00082{width:21.136000pt;}
._2_c00082{width:66.860800pt;}
.fs4_c00082{font-size:37.440000pt;}
.fs2_c00082{font-size:45.440000pt;}
.fs0_c00082{font-size:48.000000pt;}
.fs3_c00082{font-size:53.440000pt;}
.fs1_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y28_c00082{bottom:50.880000pt;}
.y27_c00082{bottom:99.200000pt;}
.y26_c00082{bottom:126.800000pt;}
.y25_c00082{bottom:154.400000pt;}
.y24_c00082{bottom:182.160000pt;}
.y23_c00082{bottom:211.760000pt;}
.y22_c00082{bottom:240.240000pt;}
.y21_c00082{bottom:268.400000pt;}
.y20_c00082{bottom:296.560000pt;}
.y1f_c00082{bottom:324.560000pt;}
.y1e_c00082{bottom:352.320000pt;}
.y1d_c00082{bottom:380.400000pt;}
.y1c_c00082{bottom:408.400000pt;}
.y1b_c00082{bottom:436.000000pt;}
.y1a_c00082{bottom:463.600000pt;}
.y19_c00082{bottom:491.200000pt;}
.y18_c00082{bottom:518.800000pt;}
.y17_c00082{bottom:546.560000pt;}
.y16_c00082{bottom:574.640000pt;}
.y15_c00082{bottom:602.800000pt;}
.y14_c00082{bottom:630.800000pt;}
.y13_c00082{bottom:658.560000pt;}
.y12_c00082{bottom:686.560000pt;}
.y11_c00082{bottom:714.320000pt;}
.y10_c00082{bottom:737.359200pt;}
.ye_c00082{bottom:754.401760pt;}
.yf_c00082{bottom:774.237600pt;}
.yd_c00082{bottom:789.919200pt;}
.yb_c00082{bottom:806.960000pt;}
.yc_c00082{bottom:826.797600pt;}
.ya_c00082{bottom:847.360000pt;}
.y9_c00082{bottom:903.280000pt;}
.y8_c00082{bottom:931.360000pt;}
.y7_c00082{bottom:959.360000pt;}
.y6_c00082{bottom:986.960000pt;}
.y5_c00082{bottom:1005.360000pt;}
.y4_c00082{bottom:1023.040000pt;}
.y3_c00082{bottom:1036.804000pt;}
.y2_c00082{bottom:1050.640000pt;}
.y1_c00082{bottom:1064.400000pt;}
.h3_c00082{height:47.085938pt;}
.h2_c00082{height:47.109375pt;}
.h4_c00082{height:62.812500pt;}
.h9_c00082{height:66.750000pt;}
.h7_c00082{height:74.642344pt;}
.h6_c00082{height:106.540781pt;}
.h5_c00082{height:127.593750pt;}
.ha_c00082{height:139.753750pt;}
.hb_c00082{height:141.993750pt;}
.h8_c00082{height:174.703981pt;}
.h0_c00082{height:1122.560000pt;}
.h1_c00082{height:1122.666667pt;}
.w0_c00082{width:793.840000pt;}
.w1_c00082{width:794.000000pt;}
.x0_c00082{left:0.000000pt;}
.x3_c00082{left:113.440000pt;}
.x7_c00082{left:137.440000pt;}
.x4_c00082{left:359.360000pt;}
.x2_c00082{left:377.920000pt;}
.x5_c00082{left:388.235920pt;}
.x6_c00082{left:390.070480pt;}
.x1_c00082{left:396.960000pt;}
.x8_c00082{left:664.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_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_09412af6b9efe8fa5a81e4fd.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_fa43a87489be1ec3d649e4de.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_0c7fba3d03dc4f271a69fded.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00083;src:url('chunks/assets/font_68695142dd487f91bb2732d4.woff2')format("woff");}.ff5_c00083{font-family:ff5_c00083;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:ff6_c00083;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00083{font-family:ff6_c00083;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v10_c00083{vertical-align:-126.000000px;}
.v1_c00083{vertical-align:-61.938000px;}
.vc_c00083{vertical-align:-30.960000px;}
.v5_c00083{vertical-align:-28.440000px;}
.v11_c00083{vertical-align:-20.880000px;}
.vd_c00083{vertical-align:-17.280000px;}
.va_c00083{vertical-align:-16.200000px;}
.v2_c00083{vertical-align:-14.760000px;}
.v6_c00083{vertical-align:-13.680000px;}
.v12_c00083{vertical-align:-12.201840px;}
.v8_c00083{vertical-align:-10.800000px;}
.vb_c00083{vertical-align:-2.880000px;}
.v0_c00083{vertical-align:0.000000px;}
.v7_c00083{vertical-align:2.880000px;}
.v13_c00083{vertical-align:12.240000px;}
.v4_c00083{vertical-align:13.680000px;}
.v3_c00083{vertical-align:14.760000px;}
.v9_c00083{vertical-align:16.200000px;}
.vf_c00083{vertical-align:17.640000px;}
.ve_c00083{vertical-align:27.000000px;}
.ls2e_c00083{letter-spacing:-0.288000px;}
.ls30_c00083{letter-spacing:-0.072000px;}
.ls31_c00083{letter-spacing:-0.060120px;}
.ls2c_c00083{letter-spacing:0.000000px;}
.lse_c00083{letter-spacing:0.072000px;}
.ls2d_c00083{letter-spacing:0.102240px;}
.ls32_c00083{letter-spacing:0.120240px;}
.ls1b_c00083{letter-spacing:0.144000px;}
.lsc_c00083{letter-spacing:0.158400px;}
.ls2f_c00083{letter-spacing:0.191520px;}
.ls29_c00083{letter-spacing:0.216000px;}
.ls17_c00083{letter-spacing:0.360000px;}
.ls6_c00083{letter-spacing:2.088000px;}
.ls22_c00083{letter-spacing:2.160000px;}
.ls18_c00083{letter-spacing:2.801520px;}
.ls28_c00083{letter-spacing:2.877120px;}
.ls2a_c00083{letter-spacing:3.052080px;}
.ls19_c00083{letter-spacing:3.161520px;}
.lsb_c00083{letter-spacing:3.240000px;}
.ls25_c00083{letter-spacing:3.600000px;}
.ls13_c00083{letter-spacing:4.147200px;}
.ls1a_c00083{letter-spacing:4.193280px;}
.ls26_c00083{letter-spacing:4.376880px;}
.ls9_c00083{letter-spacing:4.680000px;}
.lsd_c00083{letter-spacing:4.736880px;}
.ls10_c00083{letter-spacing:5.040000px;}
.ls15_c00083{letter-spacing:5.832000px;}
.ls12_c00083{letter-spacing:6.192000px;}
.ls20_c00083{letter-spacing:7.221600px;}
.ls5_c00083{letter-spacing:9.720000px;}
.ls21_c00083{letter-spacing:10.080000px;}
.ls23_c00083{letter-spacing:11.160000px;}
.ls24_c00083{letter-spacing:11.880000px;}
.ls2b_c00083{letter-spacing:14.849640px;}
.ls11_c00083{letter-spacing:15.840000px;}
.ls3_c00083{letter-spacing:16.056000px;}
.ls1d_c00083{letter-spacing:17.928000px;}
.ls1c_c00083{letter-spacing:19.951080px;}
.ls4_c00083{letter-spacing:19.987200px;}
.ls1_c00083{letter-spacing:20.016000px;}
.ls8_c00083{letter-spacing:20.347200px;}
.ls2_c00083{letter-spacing:20.576880px;}
.ls16_c00083{letter-spacing:20.707200px;}
.lsa_c00083{letter-spacing:20.936880px;}
.ls1e_c00083{letter-spacing:21.600000px;}
.ls7_c00083{letter-spacing:23.040000px;}
.ls14_c00083{letter-spacing:24.307200px;}
.lsf_c00083{letter-spacing:24.536880px;}
.ls1f_c00083{letter-spacing:30.744000px;}
.ls0_c00083{letter-spacing:319.518000px;}
.ls27_c00083{letter-spacing:689.400000px;}
.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:-72.000000px;}
.wsb_c00083{word-spacing:-60.120000px;}
.ws1_c00083{word-spacing:-51.222240px;}
.ws6_c00083{word-spacing:-51.120000px;}
.wsc_c00083{word-spacing:-42.120000px;}
.ws2_c00083{word-spacing:-18.144000px;}
.ws3_c00083{word-spacing:-18.072000px;}
.ws5_c00083{word-spacing:-18.000000px;}
.ws9_c00083{word-spacing:-17.928000px;}
.ws7_c00083{word-spacing:-17.712000px;}
.ws4_c00083{word-spacing:-15.840000px;}
.wsd_c00083{word-spacing:-15.150240px;}
.ws8_c00083{word-spacing:-12.161520px;}
.wsa_c00083{word-spacing:-9.720000px;}
.ws2a_c00083{word-spacing:-0.432000px;}
.wsf_c00083{word-spacing:-0.162000px;}
.ws19_c00083{word-spacing:-0.144000px;}
.ws10_c00083{word-spacing:-0.072000px;}
.wse_c00083{word-spacing:0.000000px;}
.ws2e_c00083{word-spacing:0.180360px;}
.ws1c_c00083{word-spacing:0.360000px;}
.ws2b_c00083{word-spacing:0.648000px;}
.ws28_c00083{word-spacing:3.240000px;}
.ws25_c00083{word-spacing:3.528000px;}
.ws13_c00083{word-spacing:3.600000px;}
.ws24_c00083{word-spacing:3.888000px;}
.ws23_c00083{word-spacing:3.960000px;}
.ws1a_c00083{word-spacing:6.696000px;}
.ws1b_c00083{word-spacing:6.768000px;}
.ws20_c00083{word-spacing:7.128000px;}
.ws29_c00083{word-spacing:8.568000px;}
.ws1d_c00083{word-spacing:8.928000px;}
.ws15_c00083{word-spacing:9.576000px;}
.ws14_c00083{word-spacing:9.648000px;}
.ws11_c00083{word-spacing:10.008000px;}
.ws12_c00083{word-spacing:10.080000px;}
.ws21_c00083{word-spacing:10.368000px;}
.ws22_c00083{word-spacing:11.160000px;}
.ws26_c00083{word-spacing:11.808000px;}
.ws27_c00083{word-spacing:11.880000px;}
.ws2c_c00083{word-spacing:14.909760px;}
.ws1f_c00083{word-spacing:21.528000px;}
.ws1e_c00083{word-spacing:21.600000px;}
.ws16_c00083{word-spacing:22.968000px;}
.ws17_c00083{word-spacing:23.040000px;}
.ws2d_c00083{word-spacing:26.092080px;}
.ws18_c00083{word-spacing:29.448000px;}
._d_c00083{margin-left:-34.056000px;}
._10_c00083{margin-left:-32.270400px;}
._12_c00083{margin-left:-25.070400px;}
._13_c00083{margin-left:-21.441600px;}
._1_c00083{margin-left:-11.736000px;}
._e_c00083{margin-left:-8.640000px;}
._14_c00083{margin-left:-4.752000px;}
._5_c00083{margin-left:-3.240000px;}
._3_c00083{margin-left:-2.016000px;}
._a_c00083{margin-left:-1.015200px;}
._8_c00083{width:1.065600px;}
._4_c00083{width:2.448000px;}
._16_c00083{width:3.549600px;}
._7_c00083{width:4.575600px;}
._0_c00083{width:9.504000px;}
._9_c00083{width:10.728000px;}
._c_c00083{width:15.926400px;}
._6_c00083{width:19.839600px;}
._15_c00083{width:21.744000px;}
._b_c00083{width:22.752000px;}
._2_c00083{width:24.159600px;}
._f_c00083{width:28.872000px;}
._11_c00083{width:30.470400px;}
.fc0_c00083{color:rgb(0,0,0);}
.fs4_c00083{font-size:38.880000px;}
.fs6_c00083{font-size:42.120000px;}
.fs3_c00083{font-size:47.880000px;}
.fs2_c00083{font-size:51.120000px;}
.fs0_c00083{font-size:54.000000px;}
.fs5_c00083{font-size:60.120000px;}
.fs1_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y26_c00083{bottom:57.240000px;}
.y25_c00083{bottom:109.790460px;}
.y24_c00083{bottom:127.345500px;}
.y23_c00083{bottom:149.850000px;}
.y27_c00083{bottom:162.540000px;}
.y22_c00083{bottom:229.680000px;}
.y21_c00083{bottom:260.730000px;}
.y20_c00083{bottom:291.690000px;}
.y1f_c00083{bottom:322.920000px;}
.y1e_c00083{bottom:354.420000px;}
.y1d_c00083{bottom:385.650000px;}
.y1c_c00083{bottom:417.330000px;}
.y1b_c00083{bottom:448.920000px;}
.y1a_c00083{bottom:480.600000px;}
.y19_c00083{bottom:512.100000px;}
.y18_c00083{bottom:543.150000px;}
.y17_c00083{bottom:574.200000px;}
.y16_c00083{bottom:605.430000px;}
.y15_c00083{bottom:637.020000px;}
.y14_c00083{bottom:668.520000px;}
.y13_c00083{bottom:699.570000px;}
.y12_c00083{bottom:730.620000px;}
.y11_c00083{bottom:761.670000px;}
.yf_c00083{bottom:793.260000px;}
.y10_c00083{bottom:800.365350px;}
.ye_c00083{bottom:824.940000px;}
.yd_c00083{bottom:856.530000px;}
.yc_c00083{bottom:888.030000px;}
.yb_c00083{bottom:919.260000px;}
.ya_c00083{bottom:952.560000px;}
.y9_c00083{bottom:984.690000px;}
.y8_c00083{bottom:1016.640000px;}
.y7_c00083{bottom:1047.690000px;}
.y6_c00083{bottom:1078.740000px;}
.y5_c00083{bottom:1109.880000px;}
.y4_c00083{bottom:1131.030000px;}
.y3_c00083{bottom:1150.915500px;}
.y2_c00083{bottom:1166.400000px;}
.y1_c00083{bottom:1197.450000px;}
.h9_c00083{height:38.158594px;}
.h2_c00083{height:52.998047px;}
.ha_c00083{height:59.004492px;}
.h3_c00083{height:70.664062px;}
.h8_c00083{height:75.093750px;}
.h7_c00083{height:115.121569px;}
.hb_c00083{height:119.858379px;}
.h4_c00083{height:143.542969px;}
.h5_c00083{height:157.222969px;}
.h6_c00083{height:159.742969px;}
.h0_c00083{height:1262.880000px;}
.h1_c00083{height:1263.000000px;}
.w0_c00083{width:893.070000px;}
.w1_c00083{width:893.250000px;}
.x0_c00083{left:0.000000px;}
.x2_c00083{left:127.620000px;}
.x1_c00083{left:446.580000px;}
.x3_c00083{left:578.252550px;}
@media print{
.v10_c00083{vertical-align:-112.000000pt;}
.v1_c00083{vertical-align:-55.056000pt;}
.vc_c00083{vertical-align:-27.520000pt;}
.v5_c00083{vertical-align:-25.280000pt;}
.v11_c00083{vertical-align:-18.560000pt;}
.vd_c00083{vertical-align:-15.360000pt;}
.va_c00083{vertical-align:-14.400000pt;}
.v2_c00083{vertical-align:-13.120000pt;}
.v6_c00083{vertical-align:-12.160000pt;}
.v12_c00083{vertical-align:-10.846080pt;}
.v8_c00083{vertical-align:-9.600000pt;}
.vb_c00083{vertical-align:-2.560000pt;}
.v0_c00083{vertical-align:0.000000pt;}
.v7_c00083{vertical-align:2.560000pt;}
.v13_c00083{vertical-align:10.880000pt;}
.v4_c00083{vertical-align:12.160000pt;}
.v3_c00083{vertical-align:13.120000pt;}
.v9_c00083{vertical-align:14.400000pt;}
.vf_c00083{vertical-align:15.680000pt;}
.ve_c00083{vertical-align:24.000000pt;}
.ls2e_c00083{letter-spacing:-0.256000pt;}
.ls30_c00083{letter-spacing:-0.064000pt;}
.ls31_c00083{letter-spacing:-0.053440pt;}
.ls2c_c00083{letter-spacing:0.000000pt;}
.lse_c00083{letter-spacing:0.064000pt;}
.ls2d_c00083{letter-spacing:0.090880pt;}
.ls32_c00083{letter-spacing:0.106880pt;}
.ls1b_c00083{letter-spacing:0.128000pt;}
.lsc_c00083{letter-spacing:0.140800pt;}
.ls2f_c00083{letter-spacing:0.170240pt;}
.ls29_c00083{letter-spacing:0.192000pt;}
.ls17_c00083{letter-spacing:0.320000pt;}
.ls6_c00083{letter-spacing:1.856000pt;}
.ls22_c00083{letter-spacing:1.920000pt;}
.ls18_c00083{letter-spacing:2.490240pt;}
.ls28_c00083{letter-spacing:2.557440pt;}
.ls2a_c00083{letter-spacing:2.712960pt;}
.ls19_c00083{letter-spacing:2.810240pt;}
.lsb_c00083{letter-spacing:2.880000pt;}
.ls25_c00083{letter-spacing:3.200000pt;}
.ls13_c00083{letter-spacing:3.686400pt;}
.ls1a_c00083{letter-spacing:3.727360pt;}
.ls26_c00083{letter-spacing:3.890560pt;}
.ls9_c00083{letter-spacing:4.160000pt;}
.lsd_c00083{letter-spacing:4.210560pt;}
.ls10_c00083{letter-spacing:4.480000pt;}
.ls15_c00083{letter-spacing:5.184000pt;}
.ls12_c00083{letter-spacing:5.504000pt;}
.ls20_c00083{letter-spacing:6.419200pt;}
.ls5_c00083{letter-spacing:8.640000pt;}
.ls21_c00083{letter-spacing:8.960000pt;}
.ls23_c00083{letter-spacing:9.920000pt;}
.ls24_c00083{letter-spacing:10.560000pt;}
.ls2b_c00083{letter-spacing:13.199680pt;}
.ls11_c00083{letter-spacing:14.080000pt;}
.ls3_c00083{letter-spacing:14.272000pt;}
.ls1d_c00083{letter-spacing:15.936000pt;}
.ls1c_c00083{letter-spacing:17.734293pt;}
.ls4_c00083{letter-spacing:17.766400pt;}
.ls1_c00083{letter-spacing:17.792000pt;}
.ls8_c00083{letter-spacing:18.086400pt;}
.ls2_c00083{letter-spacing:18.290560pt;}
.ls16_c00083{letter-spacing:18.406400pt;}
.lsa_c00083{letter-spacing:18.610560pt;}
.ls1e_c00083{letter-spacing:19.200000pt;}
.ls7_c00083{letter-spacing:20.480000pt;}
.ls14_c00083{letter-spacing:21.606400pt;}
.lsf_c00083{letter-spacing:21.810560pt;}
.ls1f_c00083{letter-spacing:27.328000pt;}
.ls0_c00083{letter-spacing:284.016000pt;}
.ls27_c00083{letter-spacing:612.800000pt;}
.ws0_c00083{word-spacing:-64.000000pt;}
.wsb_c00083{word-spacing:-53.440000pt;}
.ws1_c00083{word-spacing:-45.530880pt;}
.ws6_c00083{word-spacing:-45.440000pt;}
.wsc_c00083{word-spacing:-37.440000pt;}
.ws2_c00083{word-spacing:-16.128000pt;}
.ws3_c00083{word-spacing:-16.064000pt;}
.ws5_c00083{word-spacing:-16.000000pt;}
.ws9_c00083{word-spacing:-15.936000pt;}
.ws7_c00083{word-spacing:-15.744000pt;}
.ws4_c00083{word-spacing:-14.080000pt;}
.wsd_c00083{word-spacing:-13.466880pt;}
.ws8_c00083{word-spacing:-10.810240pt;}
.wsa_c00083{word-spacing:-8.640000pt;}
.ws2a_c00083{word-spacing:-0.384000pt;}
.wsf_c00083{word-spacing:-0.144000pt;}
.ws19_c00083{word-spacing:-0.128000pt;}
.ws10_c00083{word-spacing:-0.064000pt;}
.wse_c00083{word-spacing:0.000000pt;}
.ws2e_c00083{word-spacing:0.160320pt;}
.ws1c_c00083{word-spacing:0.320000pt;}
.ws2b_c00083{word-spacing:0.576000pt;}
.ws28_c00083{word-spacing:2.880000pt;}
.ws25_c00083{word-spacing:3.136000pt;}
.ws13_c00083{word-spacing:3.200000pt;}
.ws24_c00083{word-spacing:3.456000pt;}
.ws23_c00083{word-spacing:3.520000pt;}
.ws1a_c00083{word-spacing:5.952000pt;}
.ws1b_c00083{word-spacing:6.016000pt;}
.ws20_c00083{word-spacing:6.336000pt;}
.ws29_c00083{word-spacing:7.616000pt;}
.ws1d_c00083{word-spacing:7.936000pt;}
.ws15_c00083{word-spacing:8.512000pt;}
.ws14_c00083{word-spacing:8.576000pt;}
.ws11_c00083{word-spacing:8.896000pt;}
.ws12_c00083{word-spacing:8.960000pt;}
.ws21_c00083{word-spacing:9.216000pt;}
.ws22_c00083{word-spacing:9.920000pt;}
.ws26_c00083{word-spacing:10.496000pt;}
.ws27_c00083{word-spacing:10.560000pt;}
.ws2c_c00083{word-spacing:13.253120pt;}
.ws1f_c00083{word-spacing:19.136000pt;}
.ws1e_c00083{word-spacing:19.200000pt;}
.ws16_c00083{word-spacing:20.416000pt;}
.ws17_c00083{word-spacing:20.480000pt;}
.ws2d_c00083{word-spacing:23.192960pt;}
.ws18_c00083{word-spacing:26.176000pt;}
._d_c00083{margin-left:-30.272000pt;}
._10_c00083{margin-left:-28.684800pt;}
._12_c00083{margin-left:-22.284800pt;}
._13_c00083{margin-left:-19.059200pt;}
._1_c00083{margin-left:-10.432000pt;}
._e_c00083{margin-left:-7.680000pt;}
._14_c00083{margin-left:-4.224000pt;}
._5_c00083{margin-left:-2.880000pt;}
._3_c00083{margin-left:-1.792000pt;}
._a_c00083{margin-left:-0.902400pt;}
._8_c00083{width:0.947200pt;}
._4_c00083{width:2.176000pt;}
._16_c00083{width:3.155200pt;}
._7_c00083{width:4.067200pt;}
._0_c00083{width:8.448000pt;}
._9_c00083{width:9.536000pt;}
._c_c00083{width:14.156800pt;}
._6_c00083{width:17.635200pt;}
._15_c00083{width:19.328000pt;}
._b_c00083{width:20.224000pt;}
._2_c00083{width:21.475200pt;}
._f_c00083{width:25.664000pt;}
._11_c00083{width:27.084800pt;}
.fs4_c00083{font-size:34.560000pt;}
.fs6_c00083{font-size:37.440000pt;}
.fs3_c00083{font-size:42.560000pt;}
.fs2_c00083{font-size:45.440000pt;}
.fs0_c00083{font-size:48.000000pt;}
.fs5_c00083{font-size:53.440000pt;}
.fs1_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y26_c00083{bottom:50.880000pt;}
.y25_c00083{bottom:97.591520pt;}
.y24_c00083{bottom:113.196000pt;}
.y23_c00083{bottom:133.200000pt;}
.y27_c00083{bottom:144.480000pt;}
.y22_c00083{bottom:204.160000pt;}
.y21_c00083{bottom:231.760000pt;}
.y20_c00083{bottom:259.280000pt;}
.y1f_c00083{bottom:287.040000pt;}
.y1e_c00083{bottom:315.040000pt;}
.y1d_c00083{bottom:342.800000pt;}
.y1c_c00083{bottom:370.960000pt;}
.y1b_c00083{bottom:399.040000pt;}
.y1a_c00083{bottom:427.200000pt;}
.y19_c00083{bottom:455.200000pt;}
.y18_c00083{bottom:482.800000pt;}
.y17_c00083{bottom:510.400000pt;}
.y16_c00083{bottom:538.160000pt;}
.y15_c00083{bottom:566.240000pt;}
.y14_c00083{bottom:594.240000pt;}
.y13_c00083{bottom:621.840000pt;}
.y12_c00083{bottom:649.440000pt;}
.y11_c00083{bottom:677.040000pt;}
.yf_c00083{bottom:705.120000pt;}
.y10_c00083{bottom:711.435867pt;}
.ye_c00083{bottom:733.280000pt;}
.yd_c00083{bottom:761.360000pt;}
.yc_c00083{bottom:789.360000pt;}
.yb_c00083{bottom:817.120000pt;}
.ya_c00083{bottom:846.720000pt;}
.y9_c00083{bottom:875.280000pt;}
.y8_c00083{bottom:903.680000pt;}
.y7_c00083{bottom:931.280000pt;}
.y6_c00083{bottom:958.880000pt;}
.y5_c00083{bottom:986.560000pt;}
.y4_c00083{bottom:1005.360000pt;}
.y3_c00083{bottom:1023.036000pt;}
.y2_c00083{bottom:1036.800000pt;}
.y1_c00083{bottom:1064.400000pt;}
.h9_c00083{height:33.918750pt;}
.h2_c00083{height:47.109375pt;}
.ha_c00083{height:52.448437pt;}
.h3_c00083{height:62.812500pt;}
.h8_c00083{height:66.750000pt;}
.h7_c00083{height:102.330283pt;}
.hb_c00083{height:106.540781pt;}
.h4_c00083{height:127.593750pt;}
.h5_c00083{height:139.753750pt;}
.h6_c00083{height:141.993750pt;}
.h0_c00083{height:1122.560000pt;}
.h1_c00083{height:1122.666667pt;}
.w0_c00083{width:793.840000pt;}
.w1_c00083{width:794.000000pt;}
.x0_c00083{left:0.000000pt;}
.x2_c00083{left:113.440000pt;}
.x1_c00083{left:396.960000pt;}
.x3_c00083{left:514.002267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2049dbe77274c78d9f07be48.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_f28d25fe0fdc228d04435fe1.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00084;src:url('chunks/assets/font_6c77ef66fa41ea66771e6f06.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00084;src:url('chunks/assets/font_b3ad14e1735da78e3f9ed06f.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;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:ff6_c00084;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00084{font-family:ff6_c00084;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5_c00084{vertical-align:-30.960000px;}
.v8_c00084{vertical-align:-25.586640px;}
.v6_c00084{vertical-align:-20.880000px;}
.v1_c00084{vertical-align:-14.760000px;}
.va_c00084{vertical-align:-13.346640px;}
.v0_c00084{vertical-align:0.000000px;}
.v9_c00084{vertical-align:12.240000px;}
.v7_c00084{vertical-align:13.346640px;}
.v2_c00084{vertical-align:14.760000px;}
.v4_c00084{vertical-align:16.200000px;}
.v3_c00084{vertical-align:27.000000px;}
.ls16_c00084{letter-spacing:-0.576000px;}
.ls15_c00084{letter-spacing:-0.216000px;}
.ls18_c00084{letter-spacing:-0.180360px;}
.ls13_c00084{letter-spacing:-0.108000px;}
.ls1b_c00084{letter-spacing:-0.060120px;}
.ls12_c00084{letter-spacing:0.000000px;}
.ls5_c00084{letter-spacing:0.072000px;}
.ls19_c00084{letter-spacing:0.084240px;}
.ls14_c00084{letter-spacing:0.102240px;}
.ls0_c00084{letter-spacing:0.144000px;}
.ls1a_c00084{letter-spacing:0.180360px;}
.ls17_c00084{letter-spacing:0.191520px;}
.ls9_c00084{letter-spacing:0.920160px;}
.lsf_c00084{letter-spacing:2.527200px;}
.lse_c00084{letter-spacing:2.887200px;}
.lsa_c00084{letter-spacing:3.187440px;}
.ls3_c00084{letter-spacing:4.147200px;}
.ls2_c00084{letter-spacing:4.320000px;}
.ls1_c00084{letter-spacing:4.376880px;}
.ls7_c00084{letter-spacing:4.736880px;}
.ls11_c00084{letter-spacing:4.749480px;}
.lsb_c00084{letter-spacing:5.760000px;}
.ls6_c00084{letter-spacing:7.200000px;}
.ls4_c00084{letter-spacing:8.640000px;}
.ls8_c00084{letter-spacing:11.880000px;}
.ls10_c00084{letter-spacing:24.480000px;}
.lsd_c00084{letter-spacing:30.744000px;}
.lsc_c00084{letter-spacing:38.520000px;}
.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:-72.000000px;}
.ws6_c00084{word-spacing:-60.120000px;}
.ws1_c00084{word-spacing:-51.222240px;}
.ws7_c00084{word-spacing:-42.204240px;}
.ws3_c00084{word-spacing:-18.144000px;}
.ws2_c00084{word-spacing:-18.072000px;}
.ws4_c00084{word-spacing:-12.161520px;}
.ws5_c00084{word-spacing:-9.720000px;}
.ws28_c00084{word-spacing:-0.432000px;}
.ws2c_c00084{word-spacing:-0.360000px;}
.wsf_c00084{word-spacing:-0.144000px;}
.ws18_c00084{word-spacing:-0.072000px;}
.ws8_c00084{word-spacing:0.000000px;}
.wsa_c00084{word-spacing:0.162000px;}
.ws30_c00084{word-spacing:0.180360px;}
.ws9_c00084{word-spacing:0.270000px;}
.ws17_c00084{word-spacing:0.576000px;}
.ws22_c00084{word-spacing:0.648000px;}
.ws1f_c00084{word-spacing:2.088000px;}
.ws20_c00084{word-spacing:2.160000px;}
.ws1b_c00084{word-spacing:2.448000px;}
.ws1d_c00084{word-spacing:2.808000px;}
.ws1c_c00084{word-spacing:2.880000px;}
.ws29_c00084{word-spacing:3.096000px;}
.ws14_c00084{word-spacing:3.168000px;}
.ws15_c00084{word-spacing:3.240000px;}
.ws21_c00084{word-spacing:3.888000px;}
.wsb_c00084{word-spacing:3.960000px;}
.wsc_c00084{word-spacing:4.248000px;}
.ws2e_c00084{word-spacing:4.569120px;}
.ws1e_c00084{word-spacing:4.608000px;}
.ws2f_c00084{word-spacing:4.809600px;}
.ws2d_c00084{word-spacing:4.929840px;}
.ws23_c00084{word-spacing:5.328000px;}
.ws24_c00084{word-spacing:5.400000px;}
.ws11_c00084{word-spacing:5.760000px;}
.ws10_c00084{word-spacing:7.200000px;}
.ws27_c00084{word-spacing:7.416000px;}
.ws19_c00084{word-spacing:7.488000px;}
.ws26_c00084{word-spacing:7.560000px;}
.ws16_c00084{word-spacing:8.568000px;}
.wse_c00084{word-spacing:8.640000px;}
.ws25_c00084{word-spacing:14.688000px;}
.ws1a_c00084{word-spacing:16.128000px;}
.wsd_c00084{word-spacing:18.360000px;}
.ws2a_c00084{word-spacing:24.408000px;}
.ws2b_c00084{word-spacing:24.480000px;}
.ws12_c00084{word-spacing:38.520000px;}
.ws13_c00084{word-spacing:38.736000px;}
._9_c00084{margin-left:-24.840000px;}
._c_c00084{margin-left:-20.639160px;}
._2_c00084{margin-left:-2.520000px;}
._1_c00084{margin-left:-1.058400px;}
._0_c00084{width:1.220400px;}
._4_c00084{width:3.999600px;}
._a_c00084{width:5.256720px;}
._3_c00084{width:6.624000px;}
._5_c00084{width:7.682400px;}
._8_c00084{width:13.896000px;}
._7_c00084{width:20.016000px;}
._6_c00084{width:22.392000px;}
._b_c00084{width:24.314400px;}
.fc0_c00084{color:rgb(0,0,0);}
.fs4_c00084{font-size:38.880000px;}
.fs6_c00084{font-size:42.120000px;}
.fs3_c00084{font-size:47.880000px;}
.fs2_c00084{font-size:51.120000px;}
.fs0_c00084{font-size:54.000000px;}
.fs5_c00084{font-size:60.120000px;}
.fs1_c00084{font-size:72.000000px;}
.y0_c00084{bottom:0.000000px;}
.y25_c00084{bottom:57.240000px;}
.y24_c00084{bottom:109.795500px;}
.y23_c00084{bottom:132.300000px;}
.y26_c00084{bottom:146.700000px;}
.y22_c00084{bottom:221.220000px;}
.y21_c00084{bottom:254.070000px;}
.y20_c00084{bottom:287.280000px;}
.y1f_c00084{bottom:318.330000px;}
.y1e_c00084{bottom:351.180000px;}
.y1d_c00084{bottom:384.390000px;}
.y1c_c00084{bottom:415.440000px;}
.y1b_c00084{bottom:448.380000px;}
.y1a_c00084{bottom:481.590000px;}
.y19_c00084{bottom:514.440000px;}
.y18_c00084{bottom:547.650000px;}
.y17_c00084{bottom:578.700000px;}
.y16_c00084{bottom:609.750000px;}
.y15_c00084{bottom:640.800000px;}
.y14_c00084{bottom:671.850000px;}
.y13_c00084{bottom:702.900000px;}
.y12_c00084{bottom:733.950000px;}
.y11_c00084{bottom:765.000000px;}
.y10_c00084{bottom:796.050000px;}
.yf_c00084{bottom:827.100000px;}
.ye_c00084{bottom:858.150000px;}
.yd_c00084{bottom:889.200000px;}
.yc_c00084{bottom:920.250000px;}
.yb_c00084{bottom:951.480000px;}
.ya_c00084{bottom:982.980000px;}
.y9_c00084{bottom:1015.470000px;}
.y8_c00084{bottom:1047.240000px;}
.y7_c00084{bottom:1078.740000px;}
.y6_c00084{bottom:1109.880000px;}
.y5_c00084{bottom:1131.030000px;}
.y4_c00084{bottom:1150.920000px;}
.y3_c00084{bottom:1166.404500px;}
.y2_c00084{bottom:1181.970000px;}
.y1_c00084{bottom:1197.450000px;}
.h3_c00084{height:52.971680px;}
.h2_c00084{height:52.998047px;}
.ha_c00084{height:59.004492px;}
.h4_c00084{height:70.664062px;}
.h7_c00084{height:73.991602px;}
.h6_c00084{height:75.093750px;}
.h9_c00084{height:112.325019px;}
.h5_c00084{height:143.542969px;}
.h8_c00084{height:159.742969px;}
.h0_c00084{height:1262.880000px;}
.h1_c00084{height:1263.000000px;}
.w0_c00084{width:893.070000px;}
.w1_c00084{width:893.250000px;}
.x0_c00084{left:0.000000px;}
.x3_c00084{left:127.620000px;}
.x2_c00084{left:425.160000px;}
.x1_c00084{left:446.580000px;}
.x4_c00084{left:747.540000px;}
@media print{
.v5_c00084{vertical-align:-27.520000pt;}
.v8_c00084{vertical-align:-22.743680pt;}
.v6_c00084{vertical-align:-18.560000pt;}
.v1_c00084{vertical-align:-13.120000pt;}
.va_c00084{vertical-align:-11.863680pt;}
.v0_c00084{vertical-align:0.000000pt;}
.v9_c00084{vertical-align:10.880000pt;}
.v7_c00084{vertical-align:11.863680pt;}
.v2_c00084{vertical-align:13.120000pt;}
.v4_c00084{vertical-align:14.400000pt;}
.v3_c00084{vertical-align:24.000000pt;}
.ls16_c00084{letter-spacing:-0.512000pt;}
.ls15_c00084{letter-spacing:-0.192000pt;}
.ls18_c00084{letter-spacing:-0.160320pt;}
.ls13_c00084{letter-spacing:-0.096000pt;}
.ls1b_c00084{letter-spacing:-0.053440pt;}
.ls12_c00084{letter-spacing:0.000000pt;}
.ls5_c00084{letter-spacing:0.064000pt;}
.ls19_c00084{letter-spacing:0.074880pt;}
.ls14_c00084{letter-spacing:0.090880pt;}
.ls0_c00084{letter-spacing:0.128000pt;}
.ls1a_c00084{letter-spacing:0.160320pt;}
.ls17_c00084{letter-spacing:0.170240pt;}
.ls9_c00084{letter-spacing:0.817920pt;}
.lsf_c00084{letter-spacing:2.246400pt;}
.lse_c00084{letter-spacing:2.566400pt;}
.lsa_c00084{letter-spacing:2.833280pt;}
.ls3_c00084{letter-spacing:3.686400pt;}
.ls2_c00084{letter-spacing:3.840000pt;}
.ls1_c00084{letter-spacing:3.890560pt;}
.ls7_c00084{letter-spacing:4.210560pt;}
.ls11_c00084{letter-spacing:4.221760pt;}
.lsb_c00084{letter-spacing:5.120000pt;}
.ls6_c00084{letter-spacing:6.400000pt;}
.ls4_c00084{letter-spacing:7.680000pt;}
.ls8_c00084{letter-spacing:10.560000pt;}
.ls10_c00084{letter-spacing:21.760000pt;}
.lsd_c00084{letter-spacing:27.328000pt;}
.lsc_c00084{letter-spacing:34.240000pt;}
.ws0_c00084{word-spacing:-64.000000pt;}
.ws6_c00084{word-spacing:-53.440000pt;}
.ws1_c00084{word-spacing:-45.530880pt;}
.ws7_c00084{word-spacing:-37.514880pt;}
.ws3_c00084{word-spacing:-16.128000pt;}
.ws2_c00084{word-spacing:-16.064000pt;}
.ws4_c00084{word-spacing:-10.810240pt;}
.ws5_c00084{word-spacing:-8.640000pt;}
.ws28_c00084{word-spacing:-0.384000pt;}
.ws2c_c00084{word-spacing:-0.320000pt;}
.wsf_c00084{word-spacing:-0.128000pt;}
.ws18_c00084{word-spacing:-0.064000pt;}
.ws8_c00084{word-spacing:0.000000pt;}
.wsa_c00084{word-spacing:0.144000pt;}
.ws30_c00084{word-spacing:0.160320pt;}
.ws9_c00084{word-spacing:0.240000pt;}
.ws17_c00084{word-spacing:0.512000pt;}
.ws22_c00084{word-spacing:0.576000pt;}
.ws1f_c00084{word-spacing:1.856000pt;}
.ws20_c00084{word-spacing:1.920000pt;}
.ws1b_c00084{word-spacing:2.176000pt;}
.ws1d_c00084{word-spacing:2.496000pt;}
.ws1c_c00084{word-spacing:2.560000pt;}
.ws29_c00084{word-spacing:2.752000pt;}
.ws14_c00084{word-spacing:2.816000pt;}
.ws15_c00084{word-spacing:2.880000pt;}
.ws21_c00084{word-spacing:3.456000pt;}
.wsb_c00084{word-spacing:3.520000pt;}
.wsc_c00084{word-spacing:3.776000pt;}
.ws2e_c00084{word-spacing:4.061440pt;}
.ws1e_c00084{word-spacing:4.096000pt;}
.ws2f_c00084{word-spacing:4.275200pt;}
.ws2d_c00084{word-spacing:4.382080pt;}
.ws23_c00084{word-spacing:4.736000pt;}
.ws24_c00084{word-spacing:4.800000pt;}
.ws11_c00084{word-spacing:5.120000pt;}
.ws10_c00084{word-spacing:6.400000pt;}
.ws27_c00084{word-spacing:6.592000pt;}
.ws19_c00084{word-spacing:6.656000pt;}
.ws26_c00084{word-spacing:6.720000pt;}
.ws16_c00084{word-spacing:7.616000pt;}
.wse_c00084{word-spacing:7.680000pt;}
.ws25_c00084{word-spacing:13.056000pt;}
.ws1a_c00084{word-spacing:14.336000pt;}
.wsd_c00084{word-spacing:16.320000pt;}
.ws2a_c00084{word-spacing:21.696000pt;}
.ws2b_c00084{word-spacing:21.760000pt;}
.ws12_c00084{word-spacing:34.240000pt;}
.ws13_c00084{word-spacing:34.432000pt;}
._9_c00084{margin-left:-22.080000pt;}
._c_c00084{margin-left:-18.345920pt;}
._2_c00084{margin-left:-2.240000pt;}
._1_c00084{margin-left:-0.940800pt;}
._0_c00084{width:1.084800pt;}
._4_c00084{width:3.555200pt;}
._a_c00084{width:4.672640pt;}
._3_c00084{width:5.888000pt;}
._5_c00084{width:6.828800pt;}
._8_c00084{width:12.352000pt;}
._7_c00084{width:17.792000pt;}
._6_c00084{width:19.904000pt;}
._b_c00084{width:21.612800pt;}
.fs4_c00084{font-size:34.560000pt;}
.fs6_c00084{font-size:37.440000pt;}
.fs3_c00084{font-size:42.560000pt;}
.fs2_c00084{font-size:45.440000pt;}
.fs0_c00084{font-size:48.000000pt;}
.fs5_c00084{font-size:53.440000pt;}
.fs1_c00084{font-size:64.000000pt;}
.y0_c00084{bottom:0.000000pt;}
.y25_c00084{bottom:50.880000pt;}
.y24_c00084{bottom:97.596000pt;}
.y23_c00084{bottom:117.600000pt;}
.y26_c00084{bottom:130.400000pt;}
.y22_c00084{bottom:196.640000pt;}
.y21_c00084{bottom:225.840000pt;}
.y20_c00084{bottom:255.360000pt;}
.y1f_c00084{bottom:282.960000pt;}
.y1e_c00084{bottom:312.160000pt;}
.y1d_c00084{bottom:341.680000pt;}
.y1c_c00084{bottom:369.280000pt;}
.y1b_c00084{bottom:398.560000pt;}
.y1a_c00084{bottom:428.080000pt;}
.y19_c00084{bottom:457.280000pt;}
.y18_c00084{bottom:486.800000pt;}
.y17_c00084{bottom:514.400000pt;}
.y16_c00084{bottom:542.000000pt;}
.y15_c00084{bottom:569.600000pt;}
.y14_c00084{bottom:597.200000pt;}
.y13_c00084{bottom:624.800000pt;}
.y12_c00084{bottom:652.400000pt;}
.y11_c00084{bottom:680.000000pt;}
.y10_c00084{bottom:707.600000pt;}
.yf_c00084{bottom:735.200000pt;}
.ye_c00084{bottom:762.800000pt;}
.yd_c00084{bottom:790.400000pt;}
.yc_c00084{bottom:818.000000pt;}
.yb_c00084{bottom:845.760000pt;}
.ya_c00084{bottom:873.760000pt;}
.y9_c00084{bottom:902.640000pt;}
.y8_c00084{bottom:930.880000pt;}
.y7_c00084{bottom:958.880000pt;}
.y6_c00084{bottom:986.560000pt;}
.y5_c00084{bottom:1005.360000pt;}
.y4_c00084{bottom:1023.040000pt;}
.y3_c00084{bottom:1036.804000pt;}
.y2_c00084{bottom:1050.640000pt;}
.y1_c00084{bottom:1064.400000pt;}
.h3_c00084{height:47.085938pt;}
.h2_c00084{height:47.109375pt;}
.ha_c00084{height:52.448437pt;}
.h4_c00084{height:62.812500pt;}
.h7_c00084{height:65.770312pt;}
.h6_c00084{height:66.750000pt;}
.h9_c00084{height:99.844461pt;}
.h5_c00084{height:127.593750pt;}
.h8_c00084{height:141.993750pt;}
.h0_c00084{height:1122.560000pt;}
.h1_c00084{height:1122.666667pt;}
.w0_c00084{width:793.840000pt;}
.w1_c00084{width:794.000000pt;}
.x0_c00084{left:0.000000pt;}
.x3_c00084{left:113.440000pt;}
.x2_c00084{left:377.920000pt;}
.x1_c00084{left:396.960000pt;}
.x4_c00084{left:664.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_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_6f152c73839af95924e240a8.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.284668;font-style:normal;font-weight:normal;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_7c7333228c07a85747fd3cef.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.284180;font-style:normal;font-weight:normal;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_a9cc7bc9d6718fcf08dd2e07.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00085;src:url('chunks/assets/font_7d3a3aa4bfec9a536ce46d90.woff2')format("woff");}.ff4_c00085{font-family:ff4_c00085;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00085;src:url('chunks/assets/font_db9a300c41178304b880a7ae.woff2')format("woff");}.ff5_c00085{font-family:ff5_c00085;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:ff6_c00085;src:url('chunks/assets/font_453c68c6c5c3db5e069a031a.woff2')format("woff");}.ff6_c00085{font-family:ff6_c00085;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00085{vertical-align:-61.938000px;}
.v7_c00085{vertical-align:-30.960000px;}
.v8_c00085{vertical-align:-16.200000px;}
.v3_c00085{vertical-align:-14.760000px;}
.v5_c00085{vertical-align:-2.880000px;}
.v0_c00085{vertical-align:0.000000px;}
.v2_c00085{vertical-align:2.880000px;}
.v9_c00085{vertical-align:14.760000px;}
.v6_c00085{vertical-align:16.200000px;}
.v4_c00085{vertical-align:17.640000px;}
.ls12_c00085{letter-spacing:-0.576000px;}
.ls16_c00085{letter-spacing:-0.216000px;}
.ls15_c00085{letter-spacing:-0.144000px;}
.ls14_c00085{letter-spacing:-0.051120px;}
.ls11_c00085{letter-spacing:0.000000px;}
.lsf_c00085{letter-spacing:0.009360px;}
.lsd_c00085{letter-spacing:0.072000px;}
.ls13_c00085{letter-spacing:0.102240px;}
.ls1_c00085{letter-spacing:0.144000px;}
.lsb_c00085{letter-spacing:0.180000px;}
.lsa_c00085{letter-spacing:0.360000px;}
.ls10_c00085{letter-spacing:1.080000px;}
.ls7_c00085{letter-spacing:1.840320px;}
.ls8_c00085{letter-spacing:2.810160px;}
.ls2_c00085{letter-spacing:2.880000px;}
.lse_c00085{letter-spacing:4.320000px;}
.ls3_c00085{letter-spacing:4.736880px;}
.ls6_c00085{letter-spacing:13.320000px;}
.ls9_c00085{letter-spacing:16.200000px;}
.ls4_c00085{letter-spacing:19.800000px;}
.ls5_c00085{letter-spacing:20.016000px;}
.lsc_c00085{letter-spacing:21.240000px;}
.ls0_c00085{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00085{word-spacing:-72.000000px;}
.ws4_c00085{word-spacing:-51.222240px;}
.ws5_c00085{word-spacing:-51.068880px;}
.ws1_c00085{word-spacing:-18.144000px;}
.ws7_c00085{word-spacing:-18.072000px;}
.ws0_c00085{word-spacing:-18.000000px;}
.ws6_c00085{word-spacing:-17.856000px;}
.ws2_c00085{word-spacing:-15.840000px;}
.ws25_c00085{word-spacing:-0.432000px;}
.ws1b_c00085{word-spacing:-0.360000px;}
.ws9_c00085{word-spacing:-0.162000px;}
.ws15_c00085{word-spacing:-0.144000px;}
.ws13_c00085{word-spacing:-0.072000px;}
.ws8_c00085{word-spacing:0.000000px;}
.ws1c_c00085{word-spacing:0.216000px;}
.ws20_c00085{word-spacing:0.288000px;}
.ws14_c00085{word-spacing:0.576000px;}
.ws27_c00085{word-spacing:1.008000px;}
.ws26_c00085{word-spacing:1.080000px;}
.ws28_c00085{word-spacing:2.016000px;}
.wsc_c00085{word-spacing:2.088000px;}
.wsd_c00085{word-spacing:2.160000px;}
.ws18_c00085{word-spacing:2.808000px;}
.ws24_c00085{word-spacing:4.176000px;}
.ws23_c00085{word-spacing:4.320000px;}
.wsa_c00085{word-spacing:4.608000px;}
.ws21_c00085{word-spacing:4.968000px;}
.ws1f_c00085{word-spacing:5.688000px;}
.ws10_c00085{word-spacing:8.136000px;}
.ws12_c00085{word-spacing:8.208000px;}
.ws11_c00085{word-spacing:8.280000px;}
.ws16_c00085{word-spacing:8.928000px;}
.wse_c00085{word-spacing:10.008000px;}
.ws17_c00085{word-spacing:10.728000px;}
.ws1e_c00085{word-spacing:12.888000px;}
.ws19_c00085{word-spacing:13.248000px;}
.ws1a_c00085{word-spacing:13.320000px;}
.ws1d_c00085{word-spacing:15.768000px;}
.ws29_c00085{word-spacing:16.200000px;}
.wsf_c00085{word-spacing:20.160000px;}
.ws22_c00085{word-spacing:21.240000px;}
.wsb_c00085{word-spacing:41.976000px;}
._4_c00085{margin-left:-24.768000px;}
._2_c00085{margin-left:-3.312000px;}
._0_c00085{margin-left:-1.382400px;}
._1_c00085{width:1.029600px;}
._9_c00085{width:2.232000px;}
._6_c00085{width:3.358800px;}
._3_c00085{width:4.359600px;}
._7_c00085{width:13.392000px;}
._8_c00085{width:15.264000px;}
._5_c00085{width:24.388560px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs3_c00085{font-size:47.880000px;}
.fs2_c00085{font-size:51.120000px;}
.fs0_c00085{font-size:54.000000px;}
.fs1_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y26_c00085{bottom:57.240000px;}
.y25_c00085{bottom:112.320000px;}
.y24_c00085{bottom:143.370000px;}
.y23_c00085{bottom:174.420000px;}
.y22_c00085{bottom:205.470000px;}
.y21_c00085{bottom:236.250000px;}
.y20_c00085{bottom:267.480000px;}
.y1f_c00085{bottom:298.530000px;}
.y1e_c00085{bottom:329.580000px;}
.y1d_c00085{bottom:360.630000px;}
.y1c_c00085{bottom:391.680000px;}
.y1b_c00085{bottom:422.730000px;}
.y1a_c00085{bottom:453.780000px;}
.y19_c00085{bottom:484.830000px;}
.y18_c00085{bottom:515.880000px;}
.y17_c00085{bottom:546.930000px;}
.y16_c00085{bottom:577.980000px;}
.y15_c00085{bottom:609.030000px;}
.y14_c00085{bottom:640.080000px;}
.y13_c00085{bottom:671.130000px;}
.y12_c00085{bottom:702.180000px;}
.y11_c00085{bottom:733.320000px;}
.y10_c00085{bottom:766.710000px;}
.yf_c00085{bottom:799.920000px;}
.ye_c00085{bottom:830.970000px;}
.yd_c00085{bottom:861.930000px;}
.yc_c00085{bottom:892.980000px;}
.yb_c00085{bottom:924.030000px;}
.ya_c00085{bottom:955.080000px;}
.y9_c00085{bottom:986.130000px;}
.y8_c00085{bottom:1017.180000px;}
.y7_c00085{bottom:1048.230000px;}
.y6_c00085{bottom:1079.280000px;}
.y5_c00085{bottom:1110.330000px;}
.y4_c00085{bottom:1131.030000px;}
.y3_c00085{bottom:1150.915500px;}
.y2_c00085{bottom:1166.400000px;}
.y1_c00085{bottom:1197.450000px;}
.h2_c00085{height:52.998047px;}
.h3_c00085{height:70.664062px;}
.h5_c00085{height:72.562500px;}
.h4_c00085{height:159.742969px;}
.h0_c00085{height:1262.880000px;}
.h1_c00085{height:1263.000000px;}
.w0_c00085{width:893.070000px;}
.w1_c00085{width:893.250000px;}
.x0_c00085{left:0.000000px;}
.x2_c00085{left:127.620000px;}
.x1_c00085{left:446.580000px;}
@media print{
.v1_c00085{vertical-align:-55.056000pt;}
.v7_c00085{vertical-align:-27.520000pt;}
.v8_c00085{vertical-align:-14.400000pt;}
.v3_c00085{vertical-align:-13.120000pt;}
.v5_c00085{vertical-align:-2.560000pt;}
.v0_c00085{vertical-align:0.000000pt;}
.v2_c00085{vertical-align:2.560000pt;}
.v9_c00085{vertical-align:13.120000pt;}
.v6_c00085{vertical-align:14.400000pt;}
.v4_c00085{vertical-align:15.680000pt;}
.ls12_c00085{letter-spacing:-0.512000pt;}
.ls16_c00085{letter-spacing:-0.192000pt;}
.ls15_c00085{letter-spacing:-0.128000pt;}
.ls14_c00085{letter-spacing:-0.045440pt;}
.ls11_c00085{letter-spacing:0.000000pt;}
.lsf_c00085{letter-spacing:0.008320pt;}
.lsd_c00085{letter-spacing:0.064000pt;}
.ls13_c00085{letter-spacing:0.090880pt;}
.ls1_c00085{letter-spacing:0.128000pt;}
.lsb_c00085{letter-spacing:0.160000pt;}
.lsa_c00085{letter-spacing:0.320000pt;}
.ls10_c00085{letter-spacing:0.960000pt;}
.ls7_c00085{letter-spacing:1.635840pt;}
.ls8_c00085{letter-spacing:2.497920pt;}
.ls2_c00085{letter-spacing:2.560000pt;}
.lse_c00085{letter-spacing:3.840000pt;}
.ls3_c00085{letter-spacing:4.210560pt;}
.ls6_c00085{letter-spacing:11.840000pt;}
.ls9_c00085{letter-spacing:14.400000pt;}
.ls4_c00085{letter-spacing:17.600000pt;}
.ls5_c00085{letter-spacing:17.792000pt;}
.lsc_c00085{letter-spacing:18.880000pt;}
.ls0_c00085{letter-spacing:284.016000pt;}
.ws3_c00085{word-spacing:-64.000000pt;}
.ws4_c00085{word-spacing:-45.530880pt;}
.ws5_c00085{word-spacing:-45.394560pt;}
.ws1_c00085{word-spacing:-16.128000pt;}
.ws7_c00085{word-spacing:-16.064000pt;}
.ws0_c00085{word-spacing:-16.000000pt;}
.ws6_c00085{word-spacing:-15.872000pt;}
.ws2_c00085{word-spacing:-14.080000pt;}
.ws25_c00085{word-spacing:-0.384000pt;}
.ws1b_c00085{word-spacing:-0.320000pt;}
.ws9_c00085{word-spacing:-0.144000pt;}
.ws15_c00085{word-spacing:-0.128000pt;}
.ws13_c00085{word-spacing:-0.064000pt;}
.ws8_c00085{word-spacing:0.000000pt;}
.ws1c_c00085{word-spacing:0.192000pt;}
.ws20_c00085{word-spacing:0.256000pt;}
.ws14_c00085{word-spacing:0.512000pt;}
.ws27_c00085{word-spacing:0.896000pt;}
.ws26_c00085{word-spacing:0.960000pt;}
.ws28_c00085{word-spacing:1.792000pt;}
.wsc_c00085{word-spacing:1.856000pt;}
.wsd_c00085{word-spacing:1.920000pt;}
.ws18_c00085{word-spacing:2.496000pt;}
.ws24_c00085{word-spacing:3.712000pt;}
.ws23_c00085{word-spacing:3.840000pt;}
.wsa_c00085{word-spacing:4.096000pt;}
.ws21_c00085{word-spacing:4.416000pt;}
.ws1f_c00085{word-spacing:5.056000pt;}
.ws10_c00085{word-spacing:7.232000pt;}
.ws12_c00085{word-spacing:7.296000pt;}
.ws11_c00085{word-spacing:7.360000pt;}
.ws16_c00085{word-spacing:7.936000pt;}
.wse_c00085{word-spacing:8.896000pt;}
.ws17_c00085{word-spacing:9.536000pt;}
.ws1e_c00085{word-spacing:11.456000pt;}
.ws19_c00085{word-spacing:11.776000pt;}
.ws1a_c00085{word-spacing:11.840000pt;}
.ws1d_c00085{word-spacing:14.016000pt;}
.ws29_c00085{word-spacing:14.400000pt;}
.wsf_c00085{word-spacing:17.920000pt;}
.ws22_c00085{word-spacing:18.880000pt;}
.wsb_c00085{word-spacing:37.312000pt;}
._4_c00085{margin-left:-22.016000pt;}
._2_c00085{margin-left:-2.944000pt;}
._0_c00085{margin-left:-1.228800pt;}
._1_c00085{width:0.915200pt;}
._9_c00085{width:1.984000pt;}
._6_c00085{width:2.985600pt;}
._3_c00085{width:3.875200pt;}
._7_c00085{width:11.904000pt;}
._8_c00085{width:13.568000pt;}
._5_c00085{width:21.678720pt;}
.fs3_c00085{font-size:42.560000pt;}
.fs2_c00085{font-size:45.440000pt;}
.fs0_c00085{font-size:48.000000pt;}
.fs1_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y26_c00085{bottom:50.880000pt;}
.y25_c00085{bottom:99.840000pt;}
.y24_c00085{bottom:127.440000pt;}
.y23_c00085{bottom:155.040000pt;}
.y22_c00085{bottom:182.640000pt;}
.y21_c00085{bottom:210.000000pt;}
.y20_c00085{bottom:237.760000pt;}
.y1f_c00085{bottom:265.360000pt;}
.y1e_c00085{bottom:292.960000pt;}
.y1d_c00085{bottom:320.560000pt;}
.y1c_c00085{bottom:348.160000pt;}
.y1b_c00085{bottom:375.760000pt;}
.y1a_c00085{bottom:403.360000pt;}
.y19_c00085{bottom:430.960000pt;}
.y18_c00085{bottom:458.560000pt;}
.y17_c00085{bottom:486.160000pt;}
.y16_c00085{bottom:513.760000pt;}
.y15_c00085{bottom:541.360000pt;}
.y14_c00085{bottom:568.960000pt;}
.y13_c00085{bottom:596.560000pt;}
.y12_c00085{bottom:624.160000pt;}
.y11_c00085{bottom:651.840000pt;}
.y10_c00085{bottom:681.520000pt;}
.yf_c00085{bottom:711.040000pt;}
.ye_c00085{bottom:738.640000pt;}
.yd_c00085{bottom:766.160000pt;}
.yc_c00085{bottom:793.760000pt;}
.yb_c00085{bottom:821.360000pt;}
.ya_c00085{bottom:848.960000pt;}
.y9_c00085{bottom:876.560000pt;}
.y8_c00085{bottom:904.160000pt;}
.y7_c00085{bottom:931.760000pt;}
.y6_c00085{bottom:959.360000pt;}
.y5_c00085{bottom:986.960000pt;}
.y4_c00085{bottom:1005.360000pt;}
.y3_c00085{bottom:1023.036000pt;}
.y2_c00085{bottom:1036.800000pt;}
.y1_c00085{bottom:1064.400000pt;}
.h2_c00085{height:47.109375pt;}
.h3_c00085{height:62.812500pt;}
.h5_c00085{height:64.500000pt;}
.h4_c00085{height:141.993750pt;}
.h0_c00085{height:1122.560000pt;}
.h1_c00085{height:1122.666667pt;}
.w0_c00085{width:793.840000pt;}
.w1_c00085{width:794.000000pt;}
.x0_c00085{left:0.000000pt;}
.x2_c00085{left:113.440000pt;}
.x1_c00085{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30156380004aa90d3f5eb306.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.284180;font-style: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;}
.lsd_c00086{letter-spacing:-0.360000px;}
.lsf_c00086{letter-spacing:-0.288000px;}
.lsc_c00086{letter-spacing:-0.216000px;}
.lsb_c00086{letter-spacing:-0.108000px;}
.lse_c00086{letter-spacing:-0.072000px;}
.lsa_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:0.072000px;}
.ls2_c00086{letter-spacing:0.144000px;}
.ls8_c00086{letter-spacing:0.720000px;}
.ls1_c00086{letter-spacing:1.440000px;}
.ls4_c00086{letter-spacing:1.828800px;}
.ls5_c00086{letter-spacing:3.600000px;}
.ls9_c00086{letter-spacing:7.560000px;}
.ls6_c00086{letter-spacing:12.981600px;}
.ls3_c00086{letter-spacing:13.680000px;}
.ls7_c00086{letter-spacing:14.760000px;}
.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:-18.144000px;}
.ws1_c00086{word-spacing:-18.072000px;}
.ws2_c00086{word-spacing:-17.784000px;}
.wsc_c00086{word-spacing:-0.432000px;}
.ws16_c00086{word-spacing:-0.144000px;}
.wsb_c00086{word-spacing:-0.072000px;}
.ws3_c00086{word-spacing:0.000000px;}
.ws15_c00086{word-spacing:0.072000px;}
.ws5_c00086{word-spacing:0.162000px;}
.wsf_c00086{word-spacing:0.216000px;}
.ws4_c00086{word-spacing:0.270000px;}
.ws28_c00086{word-spacing:0.288000px;}
.ws12_c00086{word-spacing:0.360000px;}
.ws37_c00086{word-spacing:0.648000px;}
.ws38_c00086{word-spacing:0.720000px;}
.ws25_c00086{word-spacing:1.008000px;}
.ws14_c00086{word-spacing:1.080000px;}
.ws13_c00086{word-spacing:1.296000px;}
.ws11_c00086{word-spacing:1.368000px;}
.ws10_c00086{word-spacing:1.440000px;}
.ws1f_c00086{word-spacing:2.016000px;}
.ws1e_c00086{word-spacing:2.088000px;}
.ws30_c00086{word-spacing:2.160000px;}
.ws8_c00086{word-spacing:2.448000px;}
.ws9_c00086{word-spacing:2.520000px;}
.ws21_c00086{word-spacing:3.168000px;}
.ws20_c00086{word-spacing:3.528000px;}
.ws22_c00086{word-spacing:3.600000px;}
.ws29_c00086{word-spacing:5.616000px;}
.ws2b_c00086{word-spacing:5.688000px;}
.ws2a_c00086{word-spacing:5.760000px;}
.ws1c_c00086{word-spacing:6.840000px;}
.ws1b_c00086{word-spacing:7.128000px;}
.ws1a_c00086{word-spacing:7.200000px;}
.ws18_c00086{word-spacing:7.488000px;}
.ws17_c00086{word-spacing:7.560000px;}
.ws6_c00086{word-spacing:8.208000px;}
.ws7_c00086{word-spacing:8.280000px;}
.ws2e_c00086{word-spacing:8.928000px;}
.ws2f_c00086{word-spacing:9.000000px;}
.ws24_c00086{word-spacing:12.528000px;}
.ws23_c00086{word-spacing:12.600000px;}
.ws27_c00086{word-spacing:12.816000px;}
.ws32_c00086{word-spacing:12.888000px;}
.ws26_c00086{word-spacing:12.960000px;}
.ws2d_c00086{word-spacing:13.248000px;}
.ws1d_c00086{word-spacing:13.608000px;}
.ws36_c00086{word-spacing:14.688000px;}
.ws35_c00086{word-spacing:14.760000px;}
.ws33_c00086{word-spacing:18.288000px;}
.ws34_c00086{word-spacing:18.360000px;}
.wse_c00086{word-spacing:19.008000px;}
.wsd_c00086{word-spacing:19.080000px;}
.ws2c_c00086{word-spacing:23.760000px;}
.ws31_c00086{word-spacing:26.640000px;}
.wsa_c00086{word-spacing:34.128000px;}
.ws19_c00086{word-spacing:43.488000px;}
._1_c00086{margin-left:-1.058400px;}
._0_c00086{width:1.220400px;}
._3_c00086{width:2.649600px;}
._7_c00086{width:3.729600px;}
._8_c00086{width:4.896000px;}
._5_c00086{width:6.552000px;}
._2_c00086{width:7.948800px;}
._6_c00086{width:12.938400px;}
._9_c00086{width:14.835600px;}
._4_c00086{width:19.800000px;}
.fc0_c00086{color:rgb(0,0,0);}
.fs0_c00086{font-size:54.000000px;}
.fs1_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y26_c00086{bottom:57.240000px;}
.y25_c00086{bottom:147.870000px;}
.y24_c00086{bottom:178.920000px;}
.y23_c00086{bottom:209.970000px;}
.y22_c00086{bottom:241.020000px;}
.y21_c00086{bottom:272.070000px;}
.y20_c00086{bottom:303.120000px;}
.y1f_c00086{bottom:334.170000px;}
.y1e_c00086{bottom:365.220000px;}
.y1d_c00086{bottom:396.270000px;}
.y1c_c00086{bottom:427.320000px;}
.y1b_c00086{bottom:458.370000px;}
.y1a_c00086{bottom:489.420000px;}
.y19_c00086{bottom:520.470000px;}
.y18_c00086{bottom:551.520000px;}
.y17_c00086{bottom:582.570000px;}
.y16_c00086{bottom:613.620000px;}
.y15_c00086{bottom:644.670000px;}
.y14_c00086{bottom:675.720000px;}
.y13_c00086{bottom:706.770000px;}
.y12_c00086{bottom:737.820000px;}
.y11_c00086{bottom:768.870000px;}
.y10_c00086{bottom:799.920000px;}
.yf_c00086{bottom:830.970000px;}
.ye_c00086{bottom:861.930000px;}
.yd_c00086{bottom:892.980000px;}
.yc_c00086{bottom:924.030000px;}
.yb_c00086{bottom:955.080000px;}
.ya_c00086{bottom:986.130000px;}
.y9_c00086{bottom:1017.180000px;}
.y8_c00086{bottom:1048.230000px;}
.y7_c00086{bottom:1079.280000px;}
.y6_c00086{bottom:1110.330000px;}
.y5_c00086{bottom:1131.030000px;}
.y4_c00086{bottom:1150.920000px;}
.y3_c00086{bottom:1166.404500px;}
.y2_c00086{bottom:1181.970000px;}
.y1_c00086{bottom:1197.450000px;}
.h3_c00086{height:52.971680px;}
.h2_c00086{height:52.998047px;}
.h4_c00086{height:70.664062px;}
.h0_c00086{height:1262.880000px;}
.h1_c00086{height:1263.000000px;}
.w0_c00086{width:893.070000px;}
.w1_c00086{width:893.250000px;}
.x0_c00086{left:0.000000px;}
.x3_c00086{left:127.620000px;}
.x2_c00086{left:425.160000px;}
.x1_c00086{left:446.580000px;}
.x4_c00086{left:747.540000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.lsd_c00086{letter-spacing:-0.320000pt;}
.lsf_c00086{letter-spacing:-0.256000pt;}
.lsc_c00086{letter-spacing:-0.192000pt;}
.lsb_c00086{letter-spacing:-0.096000pt;}
.lse_c00086{letter-spacing:-0.064000pt;}
.lsa_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:0.064000pt;}
.ls2_c00086{letter-spacing:0.128000pt;}
.ls8_c00086{letter-spacing:0.640000pt;}
.ls1_c00086{letter-spacing:1.280000pt;}
.ls4_c00086{letter-spacing:1.625600pt;}
.ls5_c00086{letter-spacing:3.200000pt;}
.ls9_c00086{letter-spacing:6.720000pt;}
.ls6_c00086{letter-spacing:11.539200pt;}
.ls3_c00086{letter-spacing:12.160000pt;}
.ls7_c00086{letter-spacing:13.120000pt;}
.ws0_c00086{word-spacing:-16.128000pt;}
.ws1_c00086{word-spacing:-16.064000pt;}
.ws2_c00086{word-spacing:-15.808000pt;}
.wsc_c00086{word-spacing:-0.384000pt;}
.ws16_c00086{word-spacing:-0.128000pt;}
.wsb_c00086{word-spacing:-0.064000pt;}
.ws3_c00086{word-spacing:0.000000pt;}
.ws15_c00086{word-spacing:0.064000pt;}
.ws5_c00086{word-spacing:0.144000pt;}
.wsf_c00086{word-spacing:0.192000pt;}
.ws4_c00086{word-spacing:0.240000pt;}
.ws28_c00086{word-spacing:0.256000pt;}
.ws12_c00086{word-spacing:0.320000pt;}
.ws37_c00086{word-spacing:0.576000pt;}
.ws38_c00086{word-spacing:0.640000pt;}
.ws25_c00086{word-spacing:0.896000pt;}
.ws14_c00086{word-spacing:0.960000pt;}
.ws13_c00086{word-spacing:1.152000pt;}
.ws11_c00086{word-spacing:1.216000pt;}
.ws10_c00086{word-spacing:1.280000pt;}
.ws1f_c00086{word-spacing:1.792000pt;}
.ws1e_c00086{word-spacing:1.856000pt;}
.ws30_c00086{word-spacing:1.920000pt;}
.ws8_c00086{word-spacing:2.176000pt;}
.ws9_c00086{word-spacing:2.240000pt;}
.ws21_c00086{word-spacing:2.816000pt;}
.ws20_c00086{word-spacing:3.136000pt;}
.ws22_c00086{word-spacing:3.200000pt;}
.ws29_c00086{word-spacing:4.992000pt;}
.ws2b_c00086{word-spacing:5.056000pt;}
.ws2a_c00086{word-spacing:5.120000pt;}
.ws1c_c00086{word-spacing:6.080000pt;}
.ws1b_c00086{word-spacing:6.336000pt;}
.ws1a_c00086{word-spacing:6.400000pt;}
.ws18_c00086{word-spacing:6.656000pt;}
.ws17_c00086{word-spacing:6.720000pt;}
.ws6_c00086{word-spacing:7.296000pt;}
.ws7_c00086{word-spacing:7.360000pt;}
.ws2e_c00086{word-spacing:7.936000pt;}
.ws2f_c00086{word-spacing:8.000000pt;}
.ws24_c00086{word-spacing:11.136000pt;}
.ws23_c00086{word-spacing:11.200000pt;}
.ws27_c00086{word-spacing:11.392000pt;}
.ws32_c00086{word-spacing:11.456000pt;}
.ws26_c00086{word-spacing:11.520000pt;}
.ws2d_c00086{word-spacing:11.776000pt;}
.ws1d_c00086{word-spacing:12.096000pt;}
.ws36_c00086{word-spacing:13.056000pt;}
.ws35_c00086{word-spacing:13.120000pt;}
.ws33_c00086{word-spacing:16.256000pt;}
.ws34_c00086{word-spacing:16.320000pt;}
.wse_c00086{word-spacing:16.896000pt;}
.wsd_c00086{word-spacing:16.960000pt;}
.ws2c_c00086{word-spacing:21.120000pt;}
.ws31_c00086{word-spacing:23.680000pt;}
.wsa_c00086{word-spacing:30.336000pt;}
.ws19_c00086{word-spacing:38.656000pt;}
._1_c00086{margin-left:-0.940800pt;}
._0_c00086{width:1.084800pt;}
._3_c00086{width:2.355200pt;}
._7_c00086{width:3.315200pt;}
._8_c00086{width:4.352000pt;}
._5_c00086{width:5.824000pt;}
._2_c00086{width:7.065600pt;}
._6_c00086{width:11.500800pt;}
._9_c00086{width:13.187200pt;}
._4_c00086{width:17.600000pt;}
.fs0_c00086{font-size:48.000000pt;}
.fs1_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y26_c00086{bottom:50.880000pt;}
.y25_c00086{bottom:131.440000pt;}
.y24_c00086{bottom:159.040000pt;}
.y23_c00086{bottom:186.640000pt;}
.y22_c00086{bottom:214.240000pt;}
.y21_c00086{bottom:241.840000pt;}
.y20_c00086{bottom:269.440000pt;}
.y1f_c00086{bottom:297.040000pt;}
.y1e_c00086{bottom:324.640000pt;}
.y1d_c00086{bottom:352.240000pt;}
.y1c_c00086{bottom:379.840000pt;}
.y1b_c00086{bottom:407.440000pt;}
.y1a_c00086{bottom:435.040000pt;}
.y19_c00086{bottom:462.640000pt;}
.y18_c00086{bottom:490.240000pt;}
.y17_c00086{bottom:517.840000pt;}
.y16_c00086{bottom:545.440000pt;}
.y15_c00086{bottom:573.040000pt;}
.y14_c00086{bottom:600.640000pt;}
.y13_c00086{bottom:628.240000pt;}
.y12_c00086{bottom:655.840000pt;}
.y11_c00086{bottom:683.440000pt;}
.y10_c00086{bottom:711.040000pt;}
.yf_c00086{bottom:738.640000pt;}
.ye_c00086{bottom:766.160000pt;}
.yd_c00086{bottom:793.760000pt;}
.yc_c00086{bottom:821.360000pt;}
.yb_c00086{bottom:848.960000pt;}
.ya_c00086{bottom:876.560000pt;}
.y9_c00086{bottom:904.160000pt;}
.y8_c00086{bottom:931.760000pt;}
.y7_c00086{bottom:959.360000pt;}
.y6_c00086{bottom:986.960000pt;}
.y5_c00086{bottom:1005.360000pt;}
.y4_c00086{bottom:1023.040000pt;}
.y3_c00086{bottom:1036.804000pt;}
.y2_c00086{bottom:1050.640000pt;}
.y1_c00086{bottom:1064.400000pt;}
.h3_c00086{height:47.085938pt;}
.h2_c00086{height:47.109375pt;}
.h4_c00086{height:62.812500pt;}
.h0_c00086{height:1122.560000pt;}
.h1_c00086{height:1122.666667pt;}
.w0_c00086{width:793.840000pt;}
.w1_c00086{width:794.000000pt;}
.x0_c00086{left:0.000000pt;}
.x3_c00086{left:113.440000pt;}
.x2_c00086{left:377.920000pt;}
.x1_c00086{left:396.960000pt;}
.x4_c00086{left:664.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_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_e29bd3bdb0ca6021bdd1ad8a.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00087{vertical-align:-61.938000px;}
.v0_c00087{vertical-align:0.000000px;}
.lsb_c00087{letter-spacing:-0.360000px;}
.lsa_c00087{letter-spacing:-0.288000px;}
.lsc_c00087{letter-spacing:-0.216000px;}
.ls8_c00087{letter-spacing:-0.072000px;}
.ls7_c00087{letter-spacing:0.000000px;}
.ls2_c00087{letter-spacing:0.072000px;}
.ls9_c00087{letter-spacing:0.144000px;}
.ls3_c00087{letter-spacing:0.360000px;}
.ls6_c00087{letter-spacing:2.520000px;}
.ls4_c00087{letter-spacing:2.880000px;}
.ls5_c00087{letter-spacing:3.240000px;}
.ls1_c00087{letter-spacing:5.760000px;}
.ls0_c00087{letter-spacing:319.518000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00087{word-spacing:-18.144000px;}
.ws0_c00087{word-spacing:-18.072000px;}
.ws3_c00087{word-spacing:-18.000000px;}
.ws1_c00087{word-spacing:-17.928000px;}
.ws5_c00087{word-spacing:-0.162000px;}
.ws8_c00087{word-spacing:-0.072000px;}
.ws4_c00087{word-spacing:0.000000px;}
.ws1c_c00087{word-spacing:0.216000px;}
.ws10_c00087{word-spacing:0.288000px;}
.ws1a_c00087{word-spacing:0.360000px;}
.wsc_c00087{word-spacing:1.656000px;}
.ws19_c00087{word-spacing:1.728000px;}
.wsb_c00087{word-spacing:1.800000px;}
.ws1f_c00087{word-spacing:2.448000px;}
.ws1e_c00087{word-spacing:2.520000px;}
.wsd_c00087{word-spacing:2.880000px;}
.ws1b_c00087{word-spacing:3.168000px;}
.ws1d_c00087{word-spacing:3.240000px;}
.ws23_c00087{word-spacing:4.176000px;}
.ws25_c00087{word-spacing:4.536000px;}
.ws24_c00087{word-spacing:4.680000px;}
.ws6_c00087{word-spacing:5.400000px;}
.ws11_c00087{word-spacing:5.688000px;}
.wsf_c00087{word-spacing:5.760000px;}
.ws12_c00087{word-spacing:6.120000px;}
.ws15_c00087{word-spacing:6.408000px;}
.ws9_c00087{word-spacing:7.128000px;}
.ws26_c00087{word-spacing:7.200000px;}
.ws14_c00087{word-spacing:8.928000px;}
.ws7_c00087{word-spacing:9.000000px;}
.wsa_c00087{word-spacing:10.440000px;}
.ws20_c00087{word-spacing:11.088000px;}
.ws21_c00087{word-spacing:11.160000px;}
.ws18_c00087{word-spacing:11.520000px;}
.ws17_c00087{word-spacing:16.416000px;}
.ws16_c00087{word-spacing:16.488000px;}
.wse_c00087{word-spacing:17.640000px;}
.ws13_c00087{word-spacing:18.288000px;}
.ws22_c00087{word-spacing:59.040000px;}
._2_c00087{margin-left:-1.015200px;}
._1_c00087{width:1.008000px;}
._4_c00087{width:2.318400px;}
._5_c00087{width:3.873600px;}
._0_c00087{width:5.760000px;}
._6_c00087{width:7.272000px;}
._3_c00087{width:10.728000px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs0_c00087{font-size:54.000000px;}
.fs1_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y24_c00087{bottom:57.240000px;}
.y23_c00087{bottom:178.920000px;}
.y22_c00087{bottom:209.970000px;}
.y21_c00087{bottom:241.020000px;}
.y20_c00087{bottom:272.070000px;}
.y1f_c00087{bottom:303.120000px;}
.y1e_c00087{bottom:334.170000px;}
.y1d_c00087{bottom:365.220000px;}
.y1c_c00087{bottom:396.270000px;}
.y1b_c00087{bottom:427.320000px;}
.y1a_c00087{bottom:458.370000px;}
.y19_c00087{bottom:489.420000px;}
.y18_c00087{bottom:520.470000px;}
.y17_c00087{bottom:551.520000px;}
.y16_c00087{bottom:582.570000px;}
.y15_c00087{bottom:613.620000px;}
.y14_c00087{bottom:644.670000px;}
.y13_c00087{bottom:675.720000px;}
.y12_c00087{bottom:706.770000px;}
.y11_c00087{bottom:737.820000px;}
.y10_c00087{bottom:768.870000px;}
.yf_c00087{bottom:799.920000px;}
.ye_c00087{bottom:830.970000px;}
.yd_c00087{bottom:861.930000px;}
.yc_c00087{bottom:892.980000px;}
.yb_c00087{bottom:924.030000px;}
.ya_c00087{bottom:955.080000px;}
.y9_c00087{bottom:986.130000px;}
.y8_c00087{bottom:1017.180000px;}
.y7_c00087{bottom:1048.230000px;}
.y6_c00087{bottom:1079.280000px;}
.y5_c00087{bottom:1110.330000px;}
.y4_c00087{bottom:1131.030000px;}
.y3_c00087{bottom:1150.915500px;}
.y2_c00087{bottom:1166.400000px;}
.y1_c00087{bottom:1197.450000px;}
.h2_c00087{height:52.998047px;}
.h3_c00087{height:70.664062px;}
.h0_c00087{height:1262.880000px;}
.h1_c00087{height:1263.000000px;}
.w0_c00087{width:893.070000px;}
.w1_c00087{width:893.250000px;}
.x0_c00087{left:0.000000px;}
.x2_c00087{left:127.620000px;}
.x1_c00087{left:446.580000px;}
@media print{
.v1_c00087{vertical-align:-55.056000pt;}
.v0_c00087{vertical-align:0.000000pt;}
.lsb_c00087{letter-spacing:-0.320000pt;}
.lsa_c00087{letter-spacing:-0.256000pt;}
.lsc_c00087{letter-spacing:-0.192000pt;}
.ls8_c00087{letter-spacing:-0.064000pt;}
.ls7_c00087{letter-spacing:0.000000pt;}
.ls2_c00087{letter-spacing:0.064000pt;}
.ls9_c00087{letter-spacing:0.128000pt;}
.ls3_c00087{letter-spacing:0.320000pt;}
.ls6_c00087{letter-spacing:2.240000pt;}
.ls4_c00087{letter-spacing:2.560000pt;}
.ls5_c00087{letter-spacing:2.880000pt;}
.ls1_c00087{letter-spacing:5.120000pt;}
.ls0_c00087{letter-spacing:284.016000pt;}
.ws2_c00087{word-spacing:-16.128000pt;}
.ws0_c00087{word-spacing:-16.064000pt;}
.ws3_c00087{word-spacing:-16.000000pt;}
.ws1_c00087{word-spacing:-15.936000pt;}
.ws5_c00087{word-spacing:-0.144000pt;}
.ws8_c00087{word-spacing:-0.064000pt;}
.ws4_c00087{word-spacing:0.000000pt;}
.ws1c_c00087{word-spacing:0.192000pt;}
.ws10_c00087{word-spacing:0.256000pt;}
.ws1a_c00087{word-spacing:0.320000pt;}
.wsc_c00087{word-spacing:1.472000pt;}
.ws19_c00087{word-spacing:1.536000pt;}
.wsb_c00087{word-spacing:1.600000pt;}
.ws1f_c00087{word-spacing:2.176000pt;}
.ws1e_c00087{word-spacing:2.240000pt;}
.wsd_c00087{word-spacing:2.560000pt;}
.ws1b_c00087{word-spacing:2.816000pt;}
.ws1d_c00087{word-spacing:2.880000pt;}
.ws23_c00087{word-spacing:3.712000pt;}
.ws25_c00087{word-spacing:4.032000pt;}
.ws24_c00087{word-spacing:4.160000pt;}
.ws6_c00087{word-spacing:4.800000pt;}
.ws11_c00087{word-spacing:5.056000pt;}
.wsf_c00087{word-spacing:5.120000pt;}
.ws12_c00087{word-spacing:5.440000pt;}
.ws15_c00087{word-spacing:5.696000pt;}
.ws9_c00087{word-spacing:6.336000pt;}
.ws26_c00087{word-spacing:6.400000pt;}
.ws14_c00087{word-spacing:7.936000pt;}
.ws7_c00087{word-spacing:8.000000pt;}
.wsa_c00087{word-spacing:9.280000pt;}
.ws20_c00087{word-spacing:9.856000pt;}
.ws21_c00087{word-spacing:9.920000pt;}
.ws18_c00087{word-spacing:10.240000pt;}
.ws17_c00087{word-spacing:14.592000pt;}
.ws16_c00087{word-spacing:14.656000pt;}
.wse_c00087{word-spacing:15.680000pt;}
.ws13_c00087{word-spacing:16.256000pt;}
.ws22_c00087{word-spacing:52.480000pt;}
._2_c00087{margin-left:-0.902400pt;}
._1_c00087{width:0.896000pt;}
._4_c00087{width:2.060800pt;}
._5_c00087{width:3.443200pt;}
._0_c00087{width:5.120000pt;}
._6_c00087{width:6.464000pt;}
._3_c00087{width:9.536000pt;}
.fs0_c00087{font-size:48.000000pt;}
.fs1_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y24_c00087{bottom:50.880000pt;}
.y23_c00087{bottom:159.040000pt;}
.y22_c00087{bottom:186.640000pt;}
.y21_c00087{bottom:214.240000pt;}
.y20_c00087{bottom:241.840000pt;}
.y1f_c00087{bottom:269.440000pt;}
.y1e_c00087{bottom:297.040000pt;}
.y1d_c00087{bottom:324.640000pt;}
.y1c_c00087{bottom:352.240000pt;}
.y1b_c00087{bottom:379.840000pt;}
.y1a_c00087{bottom:407.440000pt;}
.y19_c00087{bottom:435.040000pt;}
.y18_c00087{bottom:462.640000pt;}
.y17_c00087{bottom:490.240000pt;}
.y16_c00087{bottom:517.840000pt;}
.y15_c00087{bottom:545.440000pt;}
.y14_c00087{bottom:573.040000pt;}
.y13_c00087{bottom:600.640000pt;}
.y12_c00087{bottom:628.240000pt;}
.y11_c00087{bottom:655.840000pt;}
.y10_c00087{bottom:683.440000pt;}
.yf_c00087{bottom:711.040000pt;}
.ye_c00087{bottom:738.640000pt;}
.yd_c00087{bottom:766.160000pt;}
.yc_c00087{bottom:793.760000pt;}
.yb_c00087{bottom:821.360000pt;}
.ya_c00087{bottom:848.960000pt;}
.y9_c00087{bottom:876.560000pt;}
.y8_c00087{bottom:904.160000pt;}
.y7_c00087{bottom:931.760000pt;}
.y6_c00087{bottom:959.360000pt;}
.y5_c00087{bottom:986.960000pt;}
.y4_c00087{bottom:1005.360000pt;}
.y3_c00087{bottom:1023.036000pt;}
.y2_c00087{bottom:1036.800000pt;}
.y1_c00087{bottom:1064.400000pt;}
.h2_c00087{height:47.109375pt;}
.h3_c00087{height:62.812500pt;}
.h0_c00087{height:1122.560000pt;}
.h1_c00087{height:1122.666667pt;}
.w0_c00087{width:793.840000pt;}
.w1_c00087{width:794.000000pt;}
.x0_c00087{left:0.000000pt;}
.x2_c00087{left:113.440000pt;}
.x1_c00087{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac6ca7de0d3f3358cefdca04.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.284180;font-style:normal;font-weight:normal;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_c5c9ff6da4d3af2e17756162.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_c35402909bef5d6bde7622ab.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00088{vertical-align:-20.880000px;}
.v3_c00088{vertical-align:-2.880000px;}
.v0_c00088{vertical-align:0.000000px;}
.v2_c00088{vertical-align:2.880000px;}
.v1_c00088{vertical-align:27.000000px;}
.ls1a_c00088{letter-spacing:-0.288000px;}
.ls1c_c00088{letter-spacing:-0.240480px;}
.ls1b_c00088{letter-spacing:-0.180360px;}
.ls1f_c00088{letter-spacing:-0.120240px;}
.ls18_c00088{letter-spacing:-0.108000px;}
.ls1d_c00088{letter-spacing:-0.060120px;}
.ls17_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:0.072000px;}
.ls1e_c00088{letter-spacing:0.120240px;}
.ls5_c00088{letter-spacing:0.144000px;}
.ls11_c00088{letter-spacing:0.180360px;}
.ls19_c00088{letter-spacing:0.191520px;}
.lsc_c00088{letter-spacing:0.360000px;}
.lsf_c00088{letter-spacing:1.800000px;}
.ls16_c00088{letter-spacing:1.863720px;}
.lsd_c00088{letter-spacing:1.944000px;}
.lsa_c00088{letter-spacing:2.016000px;}
.ls8_c00088{letter-spacing:2.095200px;}
.ls7_c00088{letter-spacing:2.160000px;}
.ls2_c00088{letter-spacing:2.181600px;}
.ls9_c00088{letter-spacing:2.520000px;}
.ls15_c00088{letter-spacing:2.585160px;}
.lsb_c00088{letter-spacing:2.801520px;}
.ls14_c00088{letter-spacing:2.945880px;}
.ls0_c00088{letter-spacing:4.320000px;}
.ls13_c00088{letter-spacing:4.749480px;}
.ls12_c00088{letter-spacing:4.791564px;}
.ls6_c00088{letter-spacing:9.720000px;}
.ls10_c00088{letter-spacing:11.242440px;}
.ls3_c00088{letter-spacing:11.520000px;}
.ls4_c00088{letter-spacing:12.240000px;}
.lse_c00088{letter-spacing:21.960000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00088{word-spacing:-18.144000px;}
.ws1_c00088{word-spacing:-18.072000px;}
.ws3_c00088{word-spacing:-15.840000px;}
.ws5_c00088{word-spacing:-15.210360px;}
.ws0_c00088{word-spacing:-12.161520px;}
.ws4_c00088{word-spacing:-9.720000px;}
.ws18_c00088{word-spacing:-0.144000px;}
.ws34_c00088{word-spacing:-0.120240px;}
.wsf_c00088{word-spacing:-0.072000px;}
.ws3b_c00088{word-spacing:-0.060120px;}
.ws6_c00088{word-spacing:0.000000px;}
.ws8_c00088{word-spacing:0.162000px;}
.ws37_c00088{word-spacing:0.180360px;}
.ws32_c00088{word-spacing:0.240480px;}
.ws7_c00088{word-spacing:0.270000px;}
.ws12_c00088{word-spacing:0.288000px;}
.ws14_c00088{word-spacing:1.008000px;}
.ws13_c00088{word-spacing:1.080000px;}
.ws3a_c00088{word-spacing:1.683360px;}
.ws30_c00088{word-spacing:1.728000px;}
.wsd_c00088{word-spacing:2.088000px;}
.wse_c00088{word-spacing:2.160000px;}
.ws25_c00088{word-spacing:2.448000px;}
.ws26_c00088{word-spacing:2.520000px;}
.ws39_c00088{word-spacing:2.765520px;}
.ws38_c00088{word-spacing:3.126240px;}
.ws2b_c00088{word-spacing:3.168000px;}
.ws2c_c00088{word-spacing:3.240000px;}
.wsc_c00088{word-spacing:4.248000px;}
.ws36_c00088{word-spacing:4.569120px;}
.ws35_c00088{word-spacing:4.809600px;}
.ws2d_c00088{word-spacing:4.968000px;}
.ws15_c00088{word-spacing:6.768000px;}
.ws27_c00088{word-spacing:7.848000px;}
.ws28_c00088{word-spacing:7.920000px;}
.ws24_c00088{word-spacing:9.648000px;}
.ws23_c00088{word-spacing:9.720000px;}
.ws21_c00088{word-spacing:10.368000px;}
.ws20_c00088{word-spacing:10.440000px;}
.ws31_c00088{word-spacing:11.062080px;}
.ws9_c00088{word-spacing:11.088000px;}
.wsa_c00088{word-spacing:11.160000px;}
.ws33_c00088{word-spacing:11.302560px;}
.ws11_c00088{word-spacing:11.448000px;}
.ws10_c00088{word-spacing:11.520000px;}
.ws19_c00088{word-spacing:11.880000px;}
.ws1a_c00088{word-spacing:12.096000px;}
.ws2a_c00088{word-spacing:12.168000px;}
.wsb_c00088{word-spacing:13.608000px;}
.ws29_c00088{word-spacing:19.368000px;}
.ws1e_c00088{word-spacing:20.088000px;}
.ws1f_c00088{word-spacing:20.160000px;}
.ws2f_c00088{word-spacing:21.888000px;}
.ws2e_c00088{word-spacing:21.960000px;}
.ws16_c00088{word-spacing:23.328000px;}
.ws17_c00088{word-spacing:23.400000px;}
.ws22_c00088{word-spacing:27.648000px;}
.ws1b_c00088{word-spacing:36.288000px;}
.ws1d_c00088{word-spacing:36.648000px;}
.ws1c_c00088{word-spacing:36.720000px;}
._1_c00088{margin-left:-1.058400px;}
._0_c00088{width:1.220400px;}
._4_c00088{width:3.312000px;}
._5_c00088{width:4.924800px;}
._b_c00088{width:7.848000px;}
._a_c00088{width:8.992800px;}
._2_c00088{width:10.180800px;}
._3_c00088{width:11.397600px;}
._c_c00088{width:19.296000px;}
._d_c00088{width:21.816000px;}
._7_c00088{width:22.852800px;}
._6_c00088{width:24.076800px;}
._8_c00088{width:36.266400px;}
._9_c00088{width:37.512000px;}
.fc0_c00088{color:rgb(0,0,0);}
.fs4_c00088{font-size:38.880000px;}
.fs2_c00088{font-size:47.880000px;}
.fs3_c00088{font-size:51.120000px;}
.fs0_c00088{font-size:54.000000px;}
.fs5_c00088{font-size:60.120000px;}
.fs1_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y29_c00088{bottom:57.240000px;}
.y28_c00088{bottom:109.791180px;}
.y27_c00088{bottom:126.985500px;}
.y26_c00088{bottom:149.490000px;}
.y25_c00088{bottom:161.541180px;}
.y24_c00088{bottom:178.735500px;}
.y23_c00088{bottom:201.240000px;}
.y2a_c00088{bottom:213.930000px;}
.y22_c00088{bottom:238.680000px;}
.y21_c00088{bottom:269.460000px;}
.y20_c00088{bottom:300.690000px;}
.y1f_c00088{bottom:332.370000px;}
.y1e_c00088{bottom:363.960000px;}
.y1d_c00088{bottom:395.010000px;}
.y1c_c00088{bottom:426.060000px;}
.y1b_c00088{bottom:457.110000px;}
.y1a_c00088{bottom:488.160000px;}
.y19_c00088{bottom:519.210000px;}
.y18_c00088{bottom:550.260000px;}
.y17_c00088{bottom:581.490000px;}
.y16_c00088{bottom:613.170000px;}
.y15_c00088{bottom:644.670000px;}
.y14_c00088{bottom:675.720000px;}
.y13_c00088{bottom:706.770000px;}
.y12_c00088{bottom:737.820000px;}
.y11_c00088{bottom:768.870000px;}
.y10_c00088{bottom:799.920000px;}
.yf_c00088{bottom:830.970000px;}
.ye_c00088{bottom:861.930000px;}
.yd_c00088{bottom:892.980000px;}
.yc_c00088{bottom:924.030000px;}
.yb_c00088{bottom:955.080000px;}
.ya_c00088{bottom:986.130000px;}
.y9_c00088{bottom:1017.180000px;}
.y8_c00088{bottom:1048.230000px;}
.y7_c00088{bottom:1079.280000px;}
.y6_c00088{bottom:1110.330000px;}
.y5_c00088{bottom:1131.030000px;}
.y4_c00088{bottom:1150.920000px;}
.y3_c00088{bottom:1166.404500px;}
.y2_c00088{bottom:1181.970000px;}
.y1_c00088{bottom:1197.450000px;}
.h8_c00088{height:38.158594px;}
.h3_c00088{height:52.971680px;}
.h2_c00088{height:52.998047px;}
.h9_c00088{height:59.004492px;}
.h4_c00088{height:70.664062px;}
.h5_c00088{height:73.991602px;}
.h7_c00088{height:140.662969px;}
.h6_c00088{height:143.542969px;}
.h0_c00088{height:1262.880000px;}
.h1_c00088{height:1263.000000px;}
.w0_c00088{width:893.070000px;}
.w1_c00088{width:893.250000px;}
.x0_c00088{left:0.000000px;}
.x3_c00088{left:127.620000px;}
.x2_c00088{left:425.160000px;}
.x1_c00088{left:446.580000px;}
.x4_c00088{left:747.540000px;}
@media print{
.v4_c00088{vertical-align:-18.560000pt;}
.v3_c00088{vertical-align:-2.560000pt;}
.v0_c00088{vertical-align:0.000000pt;}
.v2_c00088{vertical-align:2.560000pt;}
.v1_c00088{vertical-align:24.000000pt;}
.ls1a_c00088{letter-spacing:-0.256000pt;}
.ls1c_c00088{letter-spacing:-0.213760pt;}
.ls1b_c00088{letter-spacing:-0.160320pt;}
.ls1f_c00088{letter-spacing:-0.106880pt;}
.ls18_c00088{letter-spacing:-0.096000pt;}
.ls1d_c00088{letter-spacing:-0.053440pt;}
.ls17_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:0.064000pt;}
.ls1e_c00088{letter-spacing:0.106880pt;}
.ls5_c00088{letter-spacing:0.128000pt;}
.ls11_c00088{letter-spacing:0.160320pt;}
.ls19_c00088{letter-spacing:0.170240pt;}
.lsc_c00088{letter-spacing:0.320000pt;}
.lsf_c00088{letter-spacing:1.600000pt;}
.ls16_c00088{letter-spacing:1.656640pt;}
.lsd_c00088{letter-spacing:1.728000pt;}
.lsa_c00088{letter-spacing:1.792000pt;}
.ls8_c00088{letter-spacing:1.862400pt;}
.ls7_c00088{letter-spacing:1.920000pt;}
.ls2_c00088{letter-spacing:1.939200pt;}
.ls9_c00088{letter-spacing:2.240000pt;}
.ls15_c00088{letter-spacing:2.297920pt;}
.lsb_c00088{letter-spacing:2.490240pt;}
.ls14_c00088{letter-spacing:2.618560pt;}
.ls0_c00088{letter-spacing:3.840000pt;}
.ls13_c00088{letter-spacing:4.221760pt;}
.ls12_c00088{letter-spacing:4.259168pt;}
.ls6_c00088{letter-spacing:8.640000pt;}
.ls10_c00088{letter-spacing:9.993280pt;}
.ls3_c00088{letter-spacing:10.240000pt;}
.ls4_c00088{letter-spacing:10.880000pt;}
.lse_c00088{letter-spacing:19.520000pt;}
.ws2_c00088{word-spacing:-16.128000pt;}
.ws1_c00088{word-spacing:-16.064000pt;}
.ws3_c00088{word-spacing:-14.080000pt;}
.ws5_c00088{word-spacing:-13.520320pt;}
.ws0_c00088{word-spacing:-10.810240pt;}
.ws4_c00088{word-spacing:-8.640000pt;}
.ws18_c00088{word-spacing:-0.128000pt;}
.ws34_c00088{word-spacing:-0.106880pt;}
.wsf_c00088{word-spacing:-0.064000pt;}
.ws3b_c00088{word-spacing:-0.053440pt;}
.ws6_c00088{word-spacing:0.000000pt;}
.ws8_c00088{word-spacing:0.144000pt;}
.ws37_c00088{word-spacing:0.160320pt;}
.ws32_c00088{word-spacing:0.213760pt;}
.ws7_c00088{word-spacing:0.240000pt;}
.ws12_c00088{word-spacing:0.256000pt;}
.ws14_c00088{word-spacing:0.896000pt;}
.ws13_c00088{word-spacing:0.960000pt;}
.ws3a_c00088{word-spacing:1.496320pt;}
.ws30_c00088{word-spacing:1.536000pt;}
.wsd_c00088{word-spacing:1.856000pt;}
.wse_c00088{word-spacing:1.920000pt;}
.ws25_c00088{word-spacing:2.176000pt;}
.ws26_c00088{word-spacing:2.240000pt;}
.ws39_c00088{word-spacing:2.458240pt;}
.ws38_c00088{word-spacing:2.778880pt;}
.ws2b_c00088{word-spacing:2.816000pt;}
.ws2c_c00088{word-spacing:2.880000pt;}
.wsc_c00088{word-spacing:3.776000pt;}
.ws36_c00088{word-spacing:4.061440pt;}
.ws35_c00088{word-spacing:4.275200pt;}
.ws2d_c00088{word-spacing:4.416000pt;}
.ws15_c00088{word-spacing:6.016000pt;}
.ws27_c00088{word-spacing:6.976000pt;}
.ws28_c00088{word-spacing:7.040000pt;}
.ws24_c00088{word-spacing:8.576000pt;}
.ws23_c00088{word-spacing:8.640000pt;}
.ws21_c00088{word-spacing:9.216000pt;}
.ws20_c00088{word-spacing:9.280000pt;}
.ws31_c00088{word-spacing:9.832960pt;}
.ws9_c00088{word-spacing:9.856000pt;}
.wsa_c00088{word-spacing:9.920000pt;}
.ws33_c00088{word-spacing:10.046720pt;}
.ws11_c00088{word-spacing:10.176000pt;}
.ws10_c00088{word-spacing:10.240000pt;}
.ws19_c00088{word-spacing:10.560000pt;}
.ws1a_c00088{word-spacing:10.752000pt;}
.ws2a_c00088{word-spacing:10.816000pt;}
.wsb_c00088{word-spacing:12.096000pt;}
.ws29_c00088{word-spacing:17.216000pt;}
.ws1e_c00088{word-spacing:17.856000pt;}
.ws1f_c00088{word-spacing:17.920000pt;}
.ws2f_c00088{word-spacing:19.456000pt;}
.ws2e_c00088{word-spacing:19.520000pt;}
.ws16_c00088{word-spacing:20.736000pt;}
.ws17_c00088{word-spacing:20.800000pt;}
.ws22_c00088{word-spacing:24.576000pt;}
.ws1b_c00088{word-spacing:32.256000pt;}
.ws1d_c00088{word-spacing:32.576000pt;}
.ws1c_c00088{word-spacing:32.640000pt;}
._1_c00088{margin-left:-0.940800pt;}
._0_c00088{width:1.084800pt;}
._4_c00088{width:2.944000pt;}
._5_c00088{width:4.377600pt;}
._b_c00088{width:6.976000pt;}
._a_c00088{width:7.993600pt;}
._2_c00088{width:9.049600pt;}
._3_c00088{width:10.131200pt;}
._c_c00088{width:17.152000pt;}
._d_c00088{width:19.392000pt;}
._7_c00088{width:20.313600pt;}
._6_c00088{width:21.401600pt;}
._8_c00088{width:32.236800pt;}
._9_c00088{width:33.344000pt;}
.fs4_c00088{font-size:34.560000pt;}
.fs2_c00088{font-size:42.560000pt;}
.fs3_c00088{font-size:45.440000pt;}
.fs0_c00088{font-size:48.000000pt;}
.fs5_c00088{font-size:53.440000pt;}
.fs1_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y29_c00088{bottom:50.880000pt;}
.y28_c00088{bottom:97.592160pt;}
.y27_c00088{bottom:112.876000pt;}
.y26_c00088{bottom:132.880000pt;}
.y25_c00088{bottom:143.592160pt;}
.y24_c00088{bottom:158.876000pt;}
.y23_c00088{bottom:178.880000pt;}
.y2a_c00088{bottom:190.160000pt;}
.y22_c00088{bottom:212.160000pt;}
.y21_c00088{bottom:239.520000pt;}
.y20_c00088{bottom:267.280000pt;}
.y1f_c00088{bottom:295.440000pt;}
.y1e_c00088{bottom:323.520000pt;}
.y1d_c00088{bottom:351.120000pt;}
.y1c_c00088{bottom:378.720000pt;}
.y1b_c00088{bottom:406.320000pt;}
.y1a_c00088{bottom:433.920000pt;}
.y19_c00088{bottom:461.520000pt;}
.y18_c00088{bottom:489.120000pt;}
.y17_c00088{bottom:516.880000pt;}
.y16_c00088{bottom:545.040000pt;}
.y15_c00088{bottom:573.040000pt;}
.y14_c00088{bottom:600.640000pt;}
.y13_c00088{bottom:628.240000pt;}
.y12_c00088{bottom:655.840000pt;}
.y11_c00088{bottom:683.440000pt;}
.y10_c00088{bottom:711.040000pt;}
.yf_c00088{bottom:738.640000pt;}
.ye_c00088{bottom:766.160000pt;}
.yd_c00088{bottom:793.760000pt;}
.yc_c00088{bottom:821.360000pt;}
.yb_c00088{bottom:848.960000pt;}
.ya_c00088{bottom:876.560000pt;}
.y9_c00088{bottom:904.160000pt;}
.y8_c00088{bottom:931.760000pt;}
.y7_c00088{bottom:959.360000pt;}
.y6_c00088{bottom:986.960000pt;}
.y5_c00088{bottom:1005.360000pt;}
.y4_c00088{bottom:1023.040000pt;}
.y3_c00088{bottom:1036.804000pt;}
.y2_c00088{bottom:1050.640000pt;}
.y1_c00088{bottom:1064.400000pt;}
.h8_c00088{height:33.918750pt;}
.h3_c00088{height:47.085938pt;}
.h2_c00088{height:47.109375pt;}
.h9_c00088{height:52.448437pt;}
.h4_c00088{height:62.812500pt;}
.h5_c00088{height:65.770312pt;}
.h7_c00088{height:125.033750pt;}
.h6_c00088{height:127.593750pt;}
.h0_c00088{height:1122.560000pt;}
.h1_c00088{height:1122.666667pt;}
.w0_c00088{width:793.840000pt;}
.w1_c00088{width:794.000000pt;}
.x0_c00088{left:0.000000pt;}
.x3_c00088{left:113.440000pt;}
.x2_c00088{left:377.920000pt;}
.x1_c00088{left:396.960000pt;}
.x4_c00088{left:664.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_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_b2d4bd6c7c4560bf7f3fee0c.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00089{vertical-align:-61.938000px;}
.v0_c00089{vertical-align:0.000000px;}
.lsf_c00089{letter-spacing:-0.360000px;}
.lse_c00089{letter-spacing:-0.288000px;}
.ls10_c00089{letter-spacing:-0.072000px;}
.lsd_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:0.072000px;}
.ls2_c00089{letter-spacing:0.144000px;}
.ls8_c00089{letter-spacing:0.360000px;}
.lsa_c00089{letter-spacing:3.240000px;}
.lsb_c00089{letter-spacing:4.680000px;}
.ls9_c00089{letter-spacing:7.920000px;}
.lsc_c00089{letter-spacing:9.360000px;}
.ls7_c00089{letter-spacing:14.760000px;}
.ls3_c00089{letter-spacing:16.560000px;}
.ls4_c00089{letter-spacing:17.640000px;}
.ls5_c00089{letter-spacing:18.000000px;}
.ls6_c00089{letter-spacing:18.014400px;}
.ls0_c00089{letter-spacing:319.518000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00089{word-spacing:-18.144000px;}
.ws0_c00089{word-spacing:-18.072000px;}
.ws2_c00089{word-spacing:-17.928000px;}
.ws27_c00089{word-spacing:-0.360000px;}
.ws4_c00089{word-spacing:-0.162000px;}
.ws17_c00089{word-spacing:-0.144000px;}
.ws18_c00089{word-spacing:-0.072000px;}
.ws3_c00089{word-spacing:0.000000px;}
.ws15_c00089{word-spacing:0.288000px;}
.wsd_c00089{word-spacing:0.360000px;}
.ws16_c00089{word-spacing:0.720000px;}
.ws22_c00089{word-spacing:1.008000px;}
.ws23_c00089{word-spacing:1.080000px;}
.ws8_c00089{word-spacing:1.368000px;}
.wsb_c00089{word-spacing:1.800000px;}
.ws25_c00089{word-spacing:2.808000px;}
.ws26_c00089{word-spacing:3.240000px;}
.ws1d_c00089{word-spacing:4.536000px;}
.ws1b_c00089{word-spacing:4.608000px;}
.ws1c_c00089{word-spacing:4.680000px;}
.ws1e_c00089{word-spacing:7.488000px;}
.ws1f_c00089{word-spacing:7.560000px;}
.ws2a_c00089{word-spacing:8.928000px;}
.ws7_c00089{word-spacing:9.216000px;}
.ws6_c00089{word-spacing:9.288000px;}
.ws5_c00089{word-spacing:9.360000px;}
.ws1a_c00089{word-spacing:11.448000px;}
.ws19_c00089{word-spacing:11.808000px;}
.ws24_c00089{word-spacing:12.528000px;}
.ws21_c00089{word-spacing:13.176000px;}
.ws12_c00089{word-spacing:13.248000px;}
.ws13_c00089{word-spacing:13.320000px;}
.ws20_c00089{word-spacing:14.688000px;}
.ws14_c00089{word-spacing:14.760000px;}
.wsa_c00089{word-spacing:16.488000px;}
.ws9_c00089{word-spacing:16.560000px;}
.ws28_c00089{word-spacing:16.848000px;}
.ws29_c00089{word-spacing:16.920000px;}
.wse_c00089{word-spacing:17.928000px;}
.wsf_c00089{word-spacing:18.000000px;}
.wsc_c00089{word-spacing:18.288000px;}
.ws11_c00089{word-spacing:19.656000px;}
.ws10_c00089{word-spacing:19.728000px;}
._1_c00089{margin-left:-1.008000px;}
._2_c00089{width:1.368000px;}
._7_c00089{width:4.392000px;}
._8_c00089{width:6.912000px;}
._9_c00089{width:7.992000px;}
._0_c00089{width:9.288000px;}
._6_c00089{width:11.448000px;}
._4_c00089{width:12.456000px;}
._5_c00089{width:15.120000px;}
._a_c00089{width:16.344000px;}
._3_c00089{width:19.008000px;}
._b_c00089{width:846.000000px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs0_c00089{font-size:54.000000px;}
.fs1_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y22_c00089{bottom:57.240000px;}
.y21_c00089{bottom:241.020000px;}
.y20_c00089{bottom:272.070000px;}
.y1f_c00089{bottom:303.120000px;}
.y1e_c00089{bottom:334.170000px;}
.y1d_c00089{bottom:365.220000px;}
.y1c_c00089{bottom:396.270000px;}
.y1b_c00089{bottom:427.320000px;}
.y1a_c00089{bottom:458.370000px;}
.y19_c00089{bottom:489.420000px;}
.y18_c00089{bottom:520.470000px;}
.y17_c00089{bottom:551.520000px;}
.y16_c00089{bottom:582.570000px;}
.y15_c00089{bottom:613.620000px;}
.y14_c00089{bottom:644.670000px;}
.y13_c00089{bottom:675.720000px;}
.y12_c00089{bottom:706.770000px;}
.y11_c00089{bottom:737.820000px;}
.y10_c00089{bottom:768.870000px;}
.yf_c00089{bottom:799.920000px;}
.ye_c00089{bottom:830.970000px;}
.yd_c00089{bottom:861.930000px;}
.yc_c00089{bottom:892.980000px;}
.yb_c00089{bottom:924.030000px;}
.ya_c00089{bottom:955.080000px;}
.y9_c00089{bottom:986.130000px;}
.y8_c00089{bottom:1017.180000px;}
.y7_c00089{bottom:1048.230000px;}
.y6_c00089{bottom:1079.280000px;}
.y5_c00089{bottom:1110.330000px;}
.y4_c00089{bottom:1131.030000px;}
.y3_c00089{bottom:1150.915500px;}
.y2_c00089{bottom:1166.400000px;}
.y1_c00089{bottom:1197.450000px;}
.h2_c00089{height:52.998047px;}
.h3_c00089{height:70.664062px;}
.h0_c00089{height:1262.880000px;}
.h1_c00089{height:1263.000000px;}
.w0_c00089{width:893.070000px;}
.w1_c00089{width:893.250000px;}
.x0_c00089{left:0.000000px;}
.x2_c00089{left:127.620000px;}
.x1_c00089{left:446.580000px;}
@media print{
.v1_c00089{vertical-align:-55.056000pt;}
.v0_c00089{vertical-align:0.000000pt;}
.lsf_c00089{letter-spacing:-0.320000pt;}
.lse_c00089{letter-spacing:-0.256000pt;}
.ls10_c00089{letter-spacing:-0.064000pt;}
.lsd_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:0.064000pt;}
.ls2_c00089{letter-spacing:0.128000pt;}
.ls8_c00089{letter-spacing:0.320000pt;}
.lsa_c00089{letter-spacing:2.880000pt;}
.lsb_c00089{letter-spacing:4.160000pt;}
.ls9_c00089{letter-spacing:7.040000pt;}
.lsc_c00089{letter-spacing:8.320000pt;}
.ls7_c00089{letter-spacing:13.120000pt;}
.ls3_c00089{letter-spacing:14.720000pt;}
.ls4_c00089{letter-spacing:15.680000pt;}
.ls5_c00089{letter-spacing:16.000000pt;}
.ls6_c00089{letter-spacing:16.012800pt;}
.ls0_c00089{letter-spacing:284.016000pt;}
.ws1_c00089{word-spacing:-16.128000pt;}
.ws0_c00089{word-spacing:-16.064000pt;}
.ws2_c00089{word-spacing:-15.936000pt;}
.ws27_c00089{word-spacing:-0.320000pt;}
.ws4_c00089{word-spacing:-0.144000pt;}
.ws17_c00089{word-spacing:-0.128000pt;}
.ws18_c00089{word-spacing:-0.064000pt;}
.ws3_c00089{word-spacing:0.000000pt;}
.ws15_c00089{word-spacing:0.256000pt;}
.wsd_c00089{word-spacing:0.320000pt;}
.ws16_c00089{word-spacing:0.640000pt;}
.ws22_c00089{word-spacing:0.896000pt;}
.ws23_c00089{word-spacing:0.960000pt;}
.ws8_c00089{word-spacing:1.216000pt;}
.wsb_c00089{word-spacing:1.600000pt;}
.ws25_c00089{word-spacing:2.496000pt;}
.ws26_c00089{word-spacing:2.880000pt;}
.ws1d_c00089{word-spacing:4.032000pt;}
.ws1b_c00089{word-spacing:4.096000pt;}
.ws1c_c00089{word-spacing:4.160000pt;}
.ws1e_c00089{word-spacing:6.656000pt;}
.ws1f_c00089{word-spacing:6.720000pt;}
.ws2a_c00089{word-spacing:7.936000pt;}
.ws7_c00089{word-spacing:8.192000pt;}
.ws6_c00089{word-spacing:8.256000pt;}
.ws5_c00089{word-spacing:8.320000pt;}
.ws1a_c00089{word-spacing:10.176000pt;}
.ws19_c00089{word-spacing:10.496000pt;}
.ws24_c00089{word-spacing:11.136000pt;}
.ws21_c00089{word-spacing:11.712000pt;}
.ws12_c00089{word-spacing:11.776000pt;}
.ws13_c00089{word-spacing:11.840000pt;}
.ws20_c00089{word-spacing:13.056000pt;}
.ws14_c00089{word-spacing:13.120000pt;}
.wsa_c00089{word-spacing:14.656000pt;}
.ws9_c00089{word-spacing:14.720000pt;}
.ws28_c00089{word-spacing:14.976000pt;}
.ws29_c00089{word-spacing:15.040000pt;}
.wse_c00089{word-spacing:15.936000pt;}
.wsf_c00089{word-spacing:16.000000pt;}
.wsc_c00089{word-spacing:16.256000pt;}
.ws11_c00089{word-spacing:17.472000pt;}
.ws10_c00089{word-spacing:17.536000pt;}
._1_c00089{margin-left:-0.896000pt;}
._2_c00089{width:1.216000pt;}
._7_c00089{width:3.904000pt;}
._8_c00089{width:6.144000pt;}
._9_c00089{width:7.104000pt;}
._0_c00089{width:8.256000pt;}
._6_c00089{width:10.176000pt;}
._4_c00089{width:11.072000pt;}
._5_c00089{width:13.440000pt;}
._a_c00089{width:14.528000pt;}
._3_c00089{width:16.896000pt;}
._b_c00089{width:752.000000pt;}
.fs0_c00089{font-size:48.000000pt;}
.fs1_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y22_c00089{bottom:50.880000pt;}
.y21_c00089{bottom:214.240000pt;}
.y20_c00089{bottom:241.840000pt;}
.y1f_c00089{bottom:269.440000pt;}
.y1e_c00089{bottom:297.040000pt;}
.y1d_c00089{bottom:324.640000pt;}
.y1c_c00089{bottom:352.240000pt;}
.y1b_c00089{bottom:379.840000pt;}
.y1a_c00089{bottom:407.440000pt;}
.y19_c00089{bottom:435.040000pt;}
.y18_c00089{bottom:462.640000pt;}
.y17_c00089{bottom:490.240000pt;}
.y16_c00089{bottom:517.840000pt;}
.y15_c00089{bottom:545.440000pt;}
.y14_c00089{bottom:573.040000pt;}
.y13_c00089{bottom:600.640000pt;}
.y12_c00089{bottom:628.240000pt;}
.y11_c00089{bottom:655.840000pt;}
.y10_c00089{bottom:683.440000pt;}
.yf_c00089{bottom:711.040000pt;}
.ye_c00089{bottom:738.640000pt;}
.yd_c00089{bottom:766.160000pt;}
.yc_c00089{bottom:793.760000pt;}
.yb_c00089{bottom:821.360000pt;}
.ya_c00089{bottom:848.960000pt;}
.y9_c00089{bottom:876.560000pt;}
.y8_c00089{bottom:904.160000pt;}
.y7_c00089{bottom:931.760000pt;}
.y6_c00089{bottom:959.360000pt;}
.y5_c00089{bottom:986.960000pt;}
.y4_c00089{bottom:1005.360000pt;}
.y3_c00089{bottom:1023.036000pt;}
.y2_c00089{bottom:1036.800000pt;}
.y1_c00089{bottom:1064.400000pt;}
.h2_c00089{height:47.109375pt;}
.h3_c00089{height:62.812500pt;}
.h0_c00089{height:1122.560000pt;}
.h1_c00089{height:1122.666667pt;}
.w0_c00089{width:793.840000pt;}
.w1_c00089{width:794.000000pt;}
.x0_c00089{left:0.000000pt;}
.x2_c00089{left:113.440000pt;}
.x1_c00089{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d85a030ca912e6015c381fe4.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.284180;font-style:normal;font-weight:normal;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_786a132556f8cccaf4452563.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00090{vertical-align:-105.840000px;}
.v0_c00090{vertical-align:0.000000px;}
.ls3_c00090{letter-spacing:-0.192240px;}
.ls2_c00090{letter-spacing:-0.108000px;}
.ls1_c00090{letter-spacing:0.000000px;}
.ls4_c00090{letter-spacing:0.072000px;}
.ls0_c00090{letter-spacing:1257.840000px;}
.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;}
}
.ws4_c00090{word-spacing:-0.072000px;}
.ws0_c00090{word-spacing:0.000000px;}
.ws2_c00090{word-spacing:0.162000px;}
.ws1_c00090{word-spacing:0.270000px;}
.ws3_c00090{word-spacing:0.288360px;}
._1_c00090{margin-left:-1.058400px;}
._0_c00090{width:1.220400px;}
._2_c00090{width:848.954520px;}
.fc0_c00090{color:rgb(0,0,0);}
.fs0_c00090{font-size:54.000000px;}
.fs4_c00090{font-size:60.120000px;}
.fs1_c00090{font-size:72.000000px;}
.fs2_c00090{font-size:96.120000px;}
.fs3_c00090{font-size:144.000000px;}
.y0_c00090{bottom:0.000000px;}
.y18_c00090{bottom:57.240000px;}
.y17_c00090{bottom:429.930000px;}
.y16_c00090{bottom:448.020000px;}
.y15_c00090{bottom:468.720000px;}
.y14_c00090{bottom:489.420000px;}
.y13_c00090{bottom:510.120000px;}
.y12_c00090{bottom:545.745240px;}
.y11_c00090{bottom:587.148930px;}
.y10_c00090{bottom:628.552620px;}
.yf_c00090{bottom:669.956310px;}
.ye_c00090{bottom:711.360000px;}
.yd_c00090{bottom:762.300000px;}
.yc_c00090{bottom:814.840290px;}
.yb_c00090{bottom:856.147860px;}
.ya_c00090{bottom:897.551550px;}
.y9_c00090{bottom:938.955240px;}
.y8_c00090{bottom:980.358930px;}
.y7_c00090{bottom:1021.762620px;}
.y6_c00090{bottom:1063.166310px;}
.y5_c00090{bottom:1131.030000px;}
.y4_c00090{bottom:1150.920000px;}
.y3_c00090{bottom:1166.404500px;}
.y2_c00090{bottom:1181.970000px;}
.y1_c00090{bottom:1197.450000px;}
.h3_c00090{height:52.971680px;}
.h2_c00090{height:52.998047px;}
.h8_c00090{height:60.589687px;}
.h4_c00090{height:70.664062px;}
.h7_c00090{height:72.562500px;}
.h5_c00090{height:96.870938px;}
.h6_c00090{height:145.125000px;}
.h0_c00090{height:1262.880000px;}
.h1_c00090{height:1263.000000px;}
.w0_c00090{width:893.070000px;}
.w1_c00090{width:893.250000px;}
.x0_c00090{left:0.000000px;}
.x3_c00090{left:127.620000px;}
.x7_c00090{left:130.410000px;}
.x8_c00090{left:151.110000px;}
.x6_c00090{left:170.730000px;}
.x9_c00090{left:190.890000px;}
.x5_c00090{left:252.994320px;}
.x4_c00090{left:356.490000px;}
.x2_c00090{left:425.160000px;}
.x1_c00090{left:446.580000px;}
.xa_c00090{left:747.540000px;}
@media print{
.v1_c00090{vertical-align:-94.080000pt;}
.v0_c00090{vertical-align:0.000000pt;}
.ls3_c00090{letter-spacing:-0.170880pt;}
.ls2_c00090{letter-spacing:-0.096000pt;}
.ls1_c00090{letter-spacing:0.000000pt;}
.ls4_c00090{letter-spacing:0.064000pt;}
.ls0_c00090{letter-spacing:1118.080000pt;}
.ws4_c00090{word-spacing:-0.064000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
.ws2_c00090{word-spacing:0.144000pt;}
.ws1_c00090{word-spacing:0.240000pt;}
.ws3_c00090{word-spacing:0.256320pt;}
._1_c00090{margin-left:-0.940800pt;}
._0_c00090{width:1.084800pt;}
._2_c00090{width:754.626240pt;}
.fs0_c00090{font-size:48.000000pt;}
.fs4_c00090{font-size:53.440000pt;}
.fs1_c00090{font-size:64.000000pt;}
.fs2_c00090{font-size:85.440000pt;}
.fs3_c00090{font-size:128.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y18_c00090{bottom:50.880000pt;}
.y17_c00090{bottom:382.160000pt;}
.y16_c00090{bottom:398.240000pt;}
.y15_c00090{bottom:416.640000pt;}
.y14_c00090{bottom:435.040000pt;}
.y13_c00090{bottom:453.440000pt;}
.y12_c00090{bottom:485.106880pt;}
.y11_c00090{bottom:521.910160pt;}
.y10_c00090{bottom:558.713440pt;}
.yf_c00090{bottom:595.516720pt;}
.ye_c00090{bottom:632.320000pt;}
.yd_c00090{bottom:677.600000pt;}
.yc_c00090{bottom:724.302480pt;}
.yb_c00090{bottom:761.020320pt;}
.ya_c00090{bottom:797.823600pt;}
.y9_c00090{bottom:834.626880pt;}
.y8_c00090{bottom:871.430160pt;}
.y7_c00090{bottom:908.233440pt;}
.y6_c00090{bottom:945.036720pt;}
.y5_c00090{bottom:1005.360000pt;}
.y4_c00090{bottom:1023.040000pt;}
.y3_c00090{bottom:1036.804000pt;}
.y2_c00090{bottom:1050.640000pt;}
.y1_c00090{bottom:1064.400000pt;}
.h3_c00090{height:47.085938pt;}
.h2_c00090{height:47.109375pt;}
.h8_c00090{height:53.857500pt;}
.h4_c00090{height:62.812500pt;}
.h7_c00090{height:64.500000pt;}
.h5_c00090{height:86.107500pt;}
.h6_c00090{height:129.000000pt;}
.h0_c00090{height:1122.560000pt;}
.h1_c00090{height:1122.666667pt;}
.w0_c00090{width:793.840000pt;}
.w1_c00090{width:794.000000pt;}
.x0_c00090{left:0.000000pt;}
.x3_c00090{left:113.440000pt;}
.x7_c00090{left:115.920000pt;}
.x8_c00090{left:134.320000pt;}
.x6_c00090{left:151.760000pt;}
.x9_c00090{left:169.680000pt;}
.x5_c00090{left:224.883840pt;}
.x4_c00090{left:316.880000pt;}
.x2_c00090{left:377.920000pt;}
.x1_c00090{left:396.960000pt;}
.xa_c00090{left:664.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_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_bbc8de2e6b976c0dc6db9cfb.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_010122a26598d2035db39e27.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00091{vertical-align:-61.938000px;}
.v0_c00091{vertical-align:0.000000px;}
.lsf_c00091{letter-spacing:-0.576000px;}
.lse_c00091{letter-spacing:-0.360000px;}
.lsa_c00091{letter-spacing:-0.288000px;}
.lsb_c00091{letter-spacing:-0.216000px;}
.lsd_c00091{letter-spacing:-0.072000px;}
.ls9_c00091{letter-spacing:0.000000px;}
.ls2_c00091{letter-spacing:0.072000px;}
.lsc_c00091{letter-spacing:0.144000px;}
.ls3_c00091{letter-spacing:2.152800px;}
.ls8_c00091{letter-spacing:2.520000px;}
.ls4_c00091{letter-spacing:2.548800px;}
.ls6_c00091{letter-spacing:4.320000px;}
.ls5_c00091{letter-spacing:4.680000px;}
.ls1_c00091{letter-spacing:17.280000px;}
.ls7_c00091{letter-spacing:19.080000px;}
.ls0_c00091{letter-spacing:319.518000px;}
.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:-18.072000px;}
.ws1_c00091{word-spacing:-18.000000px;}
.ws3_c00091{word-spacing:-17.928000px;}
.ws2_c00091{word-spacing:-17.712000px;}
.ws4_c00091{word-spacing:-17.640000px;}
.ws12_c00091{word-spacing:-0.504000px;}
.ws6_c00091{word-spacing:-0.162000px;}
.wse_c00091{word-spacing:-0.144000px;}
.ws7_c00091{word-spacing:-0.072000px;}
.ws5_c00091{word-spacing:0.000000px;}
.ws8_c00091{word-spacing:0.288000px;}
.ws18_c00091{word-spacing:1.440000px;}
.ws23_c00091{word-spacing:1.728000px;}
.ws13_c00091{word-spacing:1.800000px;}
.ws14_c00091{word-spacing:2.448000px;}
.ws15_c00091{word-spacing:2.520000px;}
.ws1c_c00091{word-spacing:2.808000px;}
.ws1d_c00091{word-spacing:3.456000px;}
.wsb_c00091{word-spacing:3.600000px;}
.ws17_c00091{word-spacing:4.608000px;}
.ws16_c00091{word-spacing:4.680000px;}
.ws28_c00091{word-spacing:5.616000px;}
.ws29_c00091{word-spacing:5.760000px;}
.ws2b_c00091{word-spacing:6.048000px;}
.ws2a_c00091{word-spacing:6.120000px;}
.ws1e_c00091{word-spacing:6.408000px;}
.ws22_c00091{word-spacing:7.416000px;}
.ws20_c00091{word-spacing:7.560000px;}
.ws2d_c00091{word-spacing:7.776000px;}
.ws2c_c00091{word-spacing:7.848000px;}
.ws21_c00091{word-spacing:7.920000px;}
.ws11_c00091{word-spacing:8.208000px;}
.ws10_c00091{word-spacing:8.280000px;}
.ws2e_c00091{word-spacing:9.288000px;}
.wsf_c00091{word-spacing:11.808000px;}
.ws1f_c00091{word-spacing:14.040000px;}
.ws9_c00091{word-spacing:17.208000px;}
.wsa_c00091{word-spacing:17.496000px;}
.ws24_c00091{word-spacing:18.648000px;}
.ws25_c00091{word-spacing:18.720000px;}
.ws1b_c00091{word-spacing:18.936000px;}
.ws1a_c00091{word-spacing:19.008000px;}
.ws19_c00091{word-spacing:19.080000px;}
.wsc_c00091{word-spacing:21.528000px;}
.wsd_c00091{word-spacing:21.600000px;}
.ws27_c00091{word-spacing:38.448000px;}
.ws26_c00091{word-spacing:38.520000px;}
._0_c00091{margin-left:-1.231200px;}
._1_c00091{width:1.036800px;}
._4_c00091{width:2.160000px;}
._3_c00091{width:4.896000px;}
._6_c00091{width:8.078400px;}
._2_c00091{width:20.664000px;}
._5_c00091{width:37.872000px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs0_c00091{font-size:54.000000px;}
.fs1_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y26_c00091{bottom:57.240000px;}
.y25_c00091{bottom:116.820000px;}
.y24_c00091{bottom:147.870000px;}
.y23_c00091{bottom:178.920000px;}
.y22_c00091{bottom:209.970000px;}
.y21_c00091{bottom:241.020000px;}
.y20_c00091{bottom:272.070000px;}
.y1f_c00091{bottom:303.120000px;}
.y1e_c00091{bottom:334.170000px;}
.y1d_c00091{bottom:365.220000px;}
.y1c_c00091{bottom:396.270000px;}
.y1b_c00091{bottom:427.320000px;}
.y1a_c00091{bottom:458.370000px;}
.y19_c00091{bottom:489.420000px;}
.y18_c00091{bottom:520.470000px;}
.y17_c00091{bottom:551.520000px;}
.y16_c00091{bottom:582.570000px;}
.y15_c00091{bottom:613.620000px;}
.y14_c00091{bottom:644.670000px;}
.y13_c00091{bottom:675.720000px;}
.y12_c00091{bottom:706.770000px;}
.y11_c00091{bottom:737.820000px;}
.y10_c00091{bottom:768.870000px;}
.yf_c00091{bottom:799.920000px;}
.ye_c00091{bottom:830.970000px;}
.yd_c00091{bottom:861.930000px;}
.yc_c00091{bottom:892.980000px;}
.yb_c00091{bottom:924.030000px;}
.ya_c00091{bottom:955.080000px;}
.y9_c00091{bottom:986.130000px;}
.y8_c00091{bottom:1017.180000px;}
.y7_c00091{bottom:1048.230000px;}
.y6_c00091{bottom:1079.280000px;}
.y5_c00091{bottom:1110.150000px;}
.y4_c00091{bottom:1131.030000px;}
.y3_c00091{bottom:1150.915500px;}
.y2_c00091{bottom:1166.400000px;}
.y1_c00091{bottom:1197.450000px;}
.h2_c00091{height:52.998047px;}
.h3_c00091{height:70.664062px;}
.h4_c00091{height:72.562500px;}
.h0_c00091{height:1262.880000px;}
.h1_c00091{height:1263.000000px;}
.w0_c00091{width:893.070000px;}
.w1_c00091{width:893.250000px;}
.x0_c00091{left:0.000000px;}
.x2_c00091{left:127.620000px;}
.x1_c00091{left:446.580000px;}
@media print{
.v1_c00091{vertical-align:-55.056000pt;}
.v0_c00091{vertical-align:0.000000pt;}
.lsf_c00091{letter-spacing:-0.512000pt;}
.lse_c00091{letter-spacing:-0.320000pt;}
.lsa_c00091{letter-spacing:-0.256000pt;}
.lsb_c00091{letter-spacing:-0.192000pt;}
.lsd_c00091{letter-spacing:-0.064000pt;}
.ls9_c00091{letter-spacing:0.000000pt;}
.ls2_c00091{letter-spacing:0.064000pt;}
.lsc_c00091{letter-spacing:0.128000pt;}
.ls3_c00091{letter-spacing:1.913600pt;}
.ls8_c00091{letter-spacing:2.240000pt;}
.ls4_c00091{letter-spacing:2.265600pt;}
.ls6_c00091{letter-spacing:3.840000pt;}
.ls5_c00091{letter-spacing:4.160000pt;}
.ls1_c00091{letter-spacing:15.360000pt;}
.ls7_c00091{letter-spacing:16.960000pt;}
.ls0_c00091{letter-spacing:284.016000pt;}
.ws0_c00091{word-spacing:-16.064000pt;}
.ws1_c00091{word-spacing:-16.000000pt;}
.ws3_c00091{word-spacing:-15.936000pt;}
.ws2_c00091{word-spacing:-15.744000pt;}
.ws4_c00091{word-spacing:-15.680000pt;}
.ws12_c00091{word-spacing:-0.448000pt;}
.ws6_c00091{word-spacing:-0.144000pt;}
.wse_c00091{word-spacing:-0.128000pt;}
.ws7_c00091{word-spacing:-0.064000pt;}
.ws5_c00091{word-spacing:0.000000pt;}
.ws8_c00091{word-spacing:0.256000pt;}
.ws18_c00091{word-spacing:1.280000pt;}
.ws23_c00091{word-spacing:1.536000pt;}
.ws13_c00091{word-spacing:1.600000pt;}
.ws14_c00091{word-spacing:2.176000pt;}
.ws15_c00091{word-spacing:2.240000pt;}
.ws1c_c00091{word-spacing:2.496000pt;}
.ws1d_c00091{word-spacing:3.072000pt;}
.wsb_c00091{word-spacing:3.200000pt;}
.ws17_c00091{word-spacing:4.096000pt;}
.ws16_c00091{word-spacing:4.160000pt;}
.ws28_c00091{word-spacing:4.992000pt;}
.ws29_c00091{word-spacing:5.120000pt;}
.ws2b_c00091{word-spacing:5.376000pt;}
.ws2a_c00091{word-spacing:5.440000pt;}
.ws1e_c00091{word-spacing:5.696000pt;}
.ws22_c00091{word-spacing:6.592000pt;}
.ws20_c00091{word-spacing:6.720000pt;}
.ws2d_c00091{word-spacing:6.912000pt;}
.ws2c_c00091{word-spacing:6.976000pt;}
.ws21_c00091{word-spacing:7.040000pt;}
.ws11_c00091{word-spacing:7.296000pt;}
.ws10_c00091{word-spacing:7.360000pt;}
.ws2e_c00091{word-spacing:8.256000pt;}
.wsf_c00091{word-spacing:10.496000pt;}
.ws1f_c00091{word-spacing:12.480000pt;}
.ws9_c00091{word-spacing:15.296000pt;}
.wsa_c00091{word-spacing:15.552000pt;}
.ws24_c00091{word-spacing:16.576000pt;}
.ws25_c00091{word-spacing:16.640000pt;}
.ws1b_c00091{word-spacing:16.832000pt;}
.ws1a_c00091{word-spacing:16.896000pt;}
.ws19_c00091{word-spacing:16.960000pt;}
.wsc_c00091{word-spacing:19.136000pt;}
.wsd_c00091{word-spacing:19.200000pt;}
.ws27_c00091{word-spacing:34.176000pt;}
.ws26_c00091{word-spacing:34.240000pt;}
._0_c00091{margin-left:-1.094400pt;}
._1_c00091{width:0.921600pt;}
._4_c00091{width:1.920000pt;}
._3_c00091{width:4.352000pt;}
._6_c00091{width:7.180800pt;}
._2_c00091{width:18.368000pt;}
._5_c00091{width:33.664000pt;}
.fs0_c00091{font-size:48.000000pt;}
.fs1_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y26_c00091{bottom:50.880000pt;}
.y25_c00091{bottom:103.840000pt;}
.y24_c00091{bottom:131.440000pt;}
.y23_c00091{bottom:159.040000pt;}
.y22_c00091{bottom:186.640000pt;}
.y21_c00091{bottom:214.240000pt;}
.y20_c00091{bottom:241.840000pt;}
.y1f_c00091{bottom:269.440000pt;}
.y1e_c00091{bottom:297.040000pt;}
.y1d_c00091{bottom:324.640000pt;}
.y1c_c00091{bottom:352.240000pt;}
.y1b_c00091{bottom:379.840000pt;}
.y1a_c00091{bottom:407.440000pt;}
.y19_c00091{bottom:435.040000pt;}
.y18_c00091{bottom:462.640000pt;}
.y17_c00091{bottom:490.240000pt;}
.y16_c00091{bottom:517.840000pt;}
.y15_c00091{bottom:545.440000pt;}
.y14_c00091{bottom:573.040000pt;}
.y13_c00091{bottom:600.640000pt;}
.y12_c00091{bottom:628.240000pt;}
.y11_c00091{bottom:655.840000pt;}
.y10_c00091{bottom:683.440000pt;}
.yf_c00091{bottom:711.040000pt;}
.ye_c00091{bottom:738.640000pt;}
.yd_c00091{bottom:766.160000pt;}
.yc_c00091{bottom:793.760000pt;}
.yb_c00091{bottom:821.360000pt;}
.ya_c00091{bottom:848.960000pt;}
.y9_c00091{bottom:876.560000pt;}
.y8_c00091{bottom:904.160000pt;}
.y7_c00091{bottom:931.760000pt;}
.y6_c00091{bottom:959.360000pt;}
.y5_c00091{bottom:986.800000pt;}
.y4_c00091{bottom:1005.360000pt;}
.y3_c00091{bottom:1023.036000pt;}
.y2_c00091{bottom:1036.800000pt;}
.y1_c00091{bottom:1064.400000pt;}
.h2_c00091{height:47.109375pt;}
.h3_c00091{height:62.812500pt;}
.h4_c00091{height:64.500000pt;}
.h0_c00091{height:1122.560000pt;}
.h1_c00091{height:1122.666667pt;}
.w0_c00091{width:793.840000pt;}
.w1_c00091{width:794.000000pt;}
.x0_c00091{left:0.000000pt;}
.x2_c00091{left:113.440000pt;}
.x1_c00091{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3af8fdf201fdd3c7eae0b9d.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_5db3ef5ea67e62296d89a704.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00092{vertical-align:-20.880000px;}
.v0_c00092{vertical-align:0.000000px;}
.v2_c00092{vertical-align:24.120000px;}
.v1_c00092{vertical-align:27.000000px;}
.ls11_c00092{letter-spacing:-0.576000px;}
.lsd_c00092{letter-spacing:-0.288000px;}
.ls13_c00092{letter-spacing:-0.180360px;}
.ls10_c00092{letter-spacing:-0.144000px;}
.ls15_c00092{letter-spacing:-0.120240px;}
.lsc_c00092{letter-spacing:-0.108000px;}
.ls12_c00092{letter-spacing:-0.072000px;}
.ls14_c00092{letter-spacing:-0.060120px;}
.lsb_c00092{letter-spacing:0.000000px;}
.ls1_c00092{letter-spacing:0.072000px;}
.ls8_c00092{letter-spacing:0.120240px;}
.ls2_c00092{letter-spacing:0.144000px;}
.ls16_c00092{letter-spacing:0.180360px;}
.lse_c00092{letter-spacing:0.191520px;}
.lsf_c00092{letter-spacing:0.360000px;}
.ls7_c00092{letter-spacing:0.420840px;}
.ls4_c00092{letter-spacing:0.720000px;}
.ls9_c00092{letter-spacing:1.142280px;}
.ls3_c00092{letter-spacing:3.024000px;}
.lsa_c00092{letter-spacing:4.028040px;}
.ls6_c00092{letter-spacing:7.927200px;}
.ls0_c00092{letter-spacing:16.920000px;}
.ls5_c00092{letter-spacing:27.360000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00092{word-spacing:-18.072000px;}
.ws0_c00092{word-spacing:-18.000000px;}
.ws5_c00092{word-spacing:-17.928000px;}
.ws3_c00092{word-spacing:-17.856000px;}
.ws6_c00092{word-spacing:-17.712000px;}
.ws4_c00092{word-spacing:-17.424000px;}
.ws9_c00092{word-spacing:-15.150240px;}
.ws8_c00092{word-spacing:-14.969880px;}
.ws2_c00092{word-spacing:-12.161520px;}
.ws7_c00092{word-spacing:-9.720000px;}
.ws28_c00092{word-spacing:-0.432000px;}
.ws1d_c00092{word-spacing:-0.360000px;}
.ws32_c00092{word-spacing:-0.120240px;}
.ws11_c00092{word-spacing:-0.072000px;}
.ws35_c00092{word-spacing:-0.060120px;}
.wsa_c00092{word-spacing:0.000000px;}
.ws34_c00092{word-spacing:0.060120px;}
.ws33_c00092{word-spacing:0.120240px;}
.wsc_c00092{word-spacing:0.162000px;}
.ws31_c00092{word-spacing:0.180360px;}
.wsb_c00092{word-spacing:0.270000px;}
.ws12_c00092{word-spacing:0.288000px;}
.ws30_c00092{word-spacing:0.541080px;}
.ws23_c00092{word-spacing:0.648000px;}
.ws2f_c00092{word-spacing:0.661320px;}
.ws24_c00092{word-spacing:0.720000px;}
.ws37_c00092{word-spacing:0.901800px;}
.ws29_c00092{word-spacing:1.008000px;}
.ws36_c00092{word-spacing:1.022040px;}
.ws18_c00092{word-spacing:1.728000px;}
.ws19_c00092{word-spacing:1.800000px;}
.ws27_c00092{word-spacing:3.528000px;}
.ws1f_c00092{word-spacing:3.816000px;}
.ws26_c00092{word-spacing:3.888000px;}
.ws1e_c00092{word-spacing:3.960000px;}
.ws38_c00092{word-spacing:4.088160px;}
.ws39_c00092{word-spacing:4.208400px;}
.ws2a_c00092{word-spacing:5.328000px;}
.ws1c_c00092{word-spacing:7.488000px;}
.ws1b_c00092{word-spacing:7.848000px;}
.ws1a_c00092{word-spacing:7.920000px;}
.ws20_c00092{word-spacing:8.136000px;}
.ws22_c00092{word-spacing:8.208000px;}
.ws21_c00092{word-spacing:8.280000px;}
.ws2e_c00092{word-spacing:9.360000px;}
.ws15_c00092{word-spacing:12.168000px;}
.ws2b_c00092{word-spacing:12.888000px;}
.wsd_c00092{word-spacing:16.560000px;}
.wsf_c00092{word-spacing:16.848000px;}
.wse_c00092{word-spacing:16.920000px;}
.ws10_c00092{word-spacing:20.088000px;}
.ws13_c00092{word-spacing:20.448000px;}
.ws16_c00092{word-spacing:21.528000px;}
.ws17_c00092{word-spacing:21.600000px;}
.ws2d_c00092{word-spacing:23.328000px;}
.ws25_c00092{word-spacing:27.360000px;}
.ws2c_c00092{word-spacing:41.328000px;}
.ws14_c00092{word-spacing:49.608000px;}
._1_c00092{margin-left:-1.058400px;}
._0_c00092{width:1.220400px;}
._3_c00092{width:2.498400px;}
._5_c00092{width:3.936960px;}
._4_c00092{width:7.898400px;}
._2_c00092{width:19.994400px;}
.fc0_c00092{color:rgb(0,0,0);}
.fs3_c00092{font-size:38.880000px;}
.fs2_c00092{font-size:47.880000px;}
.fs0_c00092{font-size:54.000000px;}
.fs4_c00092{font-size:60.120000px;}
.fs1_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.y29_c00092{bottom:57.240000px;}
.y28_c00092{bottom:109.795680px;}
.y27_c00092{bottom:132.210000px;}
.y26_c00092{bottom:144.265500px;}
.y25_c00092{bottom:166.770000px;}
.y24_c00092{bottom:183.960000px;}
.y23_c00092{bottom:196.015500px;}
.y22_c00092{bottom:218.520000px;}
.y2a_c00092{bottom:231.210000px;}
.y21_c00092{bottom:272.070000px;}
.y20_c00092{bottom:303.120000px;}
.y1f_c00092{bottom:334.170000px;}
.y1e_c00092{bottom:365.220000px;}
.y1d_c00092{bottom:396.270000px;}
.y1c_c00092{bottom:427.320000px;}
.y1b_c00092{bottom:458.370000px;}
.y1a_c00092{bottom:489.420000px;}
.y19_c00092{bottom:520.470000px;}
.y18_c00092{bottom:551.520000px;}
.y17_c00092{bottom:582.570000px;}
.y16_c00092{bottom:613.620000px;}
.y15_c00092{bottom:644.670000px;}
.y14_c00092{bottom:675.720000px;}
.y13_c00092{bottom:706.770000px;}
.y12_c00092{bottom:737.820000px;}
.y11_c00092{bottom:768.870000px;}
.y10_c00092{bottom:799.920000px;}
.yf_c00092{bottom:830.790000px;}
.ye_c00092{bottom:861.930000px;}
.yd_c00092{bottom:892.980000px;}
.yc_c00092{bottom:924.030000px;}
.yb_c00092{bottom:955.080000px;}
.ya_c00092{bottom:986.130000px;}
.y9_c00092{bottom:1017.180000px;}
.y8_c00092{bottom:1048.230000px;}
.y7_c00092{bottom:1079.280000px;}
.y6_c00092{bottom:1110.330000px;}
.y5_c00092{bottom:1131.030000px;}
.y4_c00092{bottom:1150.920000px;}
.y3_c00092{bottom:1166.404500px;}
.y2_c00092{bottom:1181.970000px;}
.y1_c00092{bottom:1197.450000px;}
.h7_c00092{height:38.158594px;}
.h3_c00092{height:52.971680px;}
.h2_c00092{height:52.998047px;}
.h8_c00092{height:59.004492px;}
.h4_c00092{height:70.664062px;}
.h6_c00092{height:72.562500px;}
.h5_c00092{height:73.991602px;}
.h0_c00092{height:1262.880000px;}
.h1_c00092{height:1263.000000px;}
.w0_c00092{width:893.070000px;}
.w1_c00092{width:893.250000px;}
.x0_c00092{left:0.000000px;}
.x3_c00092{left:127.620000px;}
.x2_c00092{left:425.160000px;}
.x1_c00092{left:446.580000px;}
.x4_c00092{left:747.540000px;}
@media print{
.v3_c00092{vertical-align:-18.560000pt;}
.v0_c00092{vertical-align:0.000000pt;}
.v2_c00092{vertical-align:21.440000pt;}
.v1_c00092{vertical-align:24.000000pt;}
.ls11_c00092{letter-spacing:-0.512000pt;}
.lsd_c00092{letter-spacing:-0.256000pt;}
.ls13_c00092{letter-spacing:-0.160320pt;}
.ls10_c00092{letter-spacing:-0.128000pt;}
.ls15_c00092{letter-spacing:-0.106880pt;}
.lsc_c00092{letter-spacing:-0.096000pt;}
.ls12_c00092{letter-spacing:-0.064000pt;}
.ls14_c00092{letter-spacing:-0.053440pt;}
.lsb_c00092{letter-spacing:0.000000pt;}
.ls1_c00092{letter-spacing:0.064000pt;}
.ls8_c00092{letter-spacing:0.106880pt;}
.ls2_c00092{letter-spacing:0.128000pt;}
.ls16_c00092{letter-spacing:0.160320pt;}
.lse_c00092{letter-spacing:0.170240pt;}
.lsf_c00092{letter-spacing:0.320000pt;}
.ls7_c00092{letter-spacing:0.374080pt;}
.ls4_c00092{letter-spacing:0.640000pt;}
.ls9_c00092{letter-spacing:1.015360pt;}
.ls3_c00092{letter-spacing:2.688000pt;}
.lsa_c00092{letter-spacing:3.580480pt;}
.ls6_c00092{letter-spacing:7.046400pt;}
.ls0_c00092{letter-spacing:15.040000pt;}
.ls5_c00092{letter-spacing:24.320000pt;}
.ws1_c00092{word-spacing:-16.064000pt;}
.ws0_c00092{word-spacing:-16.000000pt;}
.ws5_c00092{word-spacing:-15.936000pt;}
.ws3_c00092{word-spacing:-15.872000pt;}
.ws6_c00092{word-spacing:-15.744000pt;}
.ws4_c00092{word-spacing:-15.488000pt;}
.ws9_c00092{word-spacing:-13.466880pt;}
.ws8_c00092{word-spacing:-13.306560pt;}
.ws2_c00092{word-spacing:-10.810240pt;}
.ws7_c00092{word-spacing:-8.640000pt;}
.ws28_c00092{word-spacing:-0.384000pt;}
.ws1d_c00092{word-spacing:-0.320000pt;}
.ws32_c00092{word-spacing:-0.106880pt;}
.ws11_c00092{word-spacing:-0.064000pt;}
.ws35_c00092{word-spacing:-0.053440pt;}
.wsa_c00092{word-spacing:0.000000pt;}
.ws34_c00092{word-spacing:0.053440pt;}
.ws33_c00092{word-spacing:0.106880pt;}
.wsc_c00092{word-spacing:0.144000pt;}
.ws31_c00092{word-spacing:0.160320pt;}
.wsb_c00092{word-spacing:0.240000pt;}
.ws12_c00092{word-spacing:0.256000pt;}
.ws30_c00092{word-spacing:0.480960pt;}
.ws23_c00092{word-spacing:0.576000pt;}
.ws2f_c00092{word-spacing:0.587840pt;}
.ws24_c00092{word-spacing:0.640000pt;}
.ws37_c00092{word-spacing:0.801600pt;}
.ws29_c00092{word-spacing:0.896000pt;}
.ws36_c00092{word-spacing:0.908480pt;}
.ws18_c00092{word-spacing:1.536000pt;}
.ws19_c00092{word-spacing:1.600000pt;}
.ws27_c00092{word-spacing:3.136000pt;}
.ws1f_c00092{word-spacing:3.392000pt;}
.ws26_c00092{word-spacing:3.456000pt;}
.ws1e_c00092{word-spacing:3.520000pt;}
.ws38_c00092{word-spacing:3.633920pt;}
.ws39_c00092{word-spacing:3.740800pt;}
.ws2a_c00092{word-spacing:4.736000pt;}
.ws1c_c00092{word-spacing:6.656000pt;}
.ws1b_c00092{word-spacing:6.976000pt;}
.ws1a_c00092{word-spacing:7.040000pt;}
.ws20_c00092{word-spacing:7.232000pt;}
.ws22_c00092{word-spacing:7.296000pt;}
.ws21_c00092{word-spacing:7.360000pt;}
.ws2e_c00092{word-spacing:8.320000pt;}
.ws15_c00092{word-spacing:10.816000pt;}
.ws2b_c00092{word-spacing:11.456000pt;}
.wsd_c00092{word-spacing:14.720000pt;}
.wsf_c00092{word-spacing:14.976000pt;}
.wse_c00092{word-spacing:15.040000pt;}
.ws10_c00092{word-spacing:17.856000pt;}
.ws13_c00092{word-spacing:18.176000pt;}
.ws16_c00092{word-spacing:19.136000pt;}
.ws17_c00092{word-spacing:19.200000pt;}
.ws2d_c00092{word-spacing:20.736000pt;}
.ws25_c00092{word-spacing:24.320000pt;}
.ws2c_c00092{word-spacing:36.736000pt;}
.ws14_c00092{word-spacing:44.096000pt;}
._1_c00092{margin-left:-0.940800pt;}
._0_c00092{width:1.084800pt;}
._3_c00092{width:2.220800pt;}
._5_c00092{width:3.499520pt;}
._4_c00092{width:7.020800pt;}
._2_c00092{width:17.772800pt;}
.fs3_c00092{font-size:34.560000pt;}
.fs2_c00092{font-size:42.560000pt;}
.fs0_c00092{font-size:48.000000pt;}
.fs4_c00092{font-size:53.440000pt;}
.fs1_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y29_c00092{bottom:50.880000pt;}
.y28_c00092{bottom:97.596160pt;}
.y27_c00092{bottom:117.520000pt;}
.y26_c00092{bottom:128.236000pt;}
.y25_c00092{bottom:148.240000pt;}
.y24_c00092{bottom:163.520000pt;}
.y23_c00092{bottom:174.236000pt;}
.y22_c00092{bottom:194.240000pt;}
.y2a_c00092{bottom:205.520000pt;}
.y21_c00092{bottom:241.840000pt;}
.y20_c00092{bottom:269.440000pt;}
.y1f_c00092{bottom:297.040000pt;}
.y1e_c00092{bottom:324.640000pt;}
.y1d_c00092{bottom:352.240000pt;}
.y1c_c00092{bottom:379.840000pt;}
.y1b_c00092{bottom:407.440000pt;}
.y1a_c00092{bottom:435.040000pt;}
.y19_c00092{bottom:462.640000pt;}
.y18_c00092{bottom:490.240000pt;}
.y17_c00092{bottom:517.840000pt;}
.y16_c00092{bottom:545.440000pt;}
.y15_c00092{bottom:573.040000pt;}
.y14_c00092{bottom:600.640000pt;}
.y13_c00092{bottom:628.240000pt;}
.y12_c00092{bottom:655.840000pt;}
.y11_c00092{bottom:683.440000pt;}
.y10_c00092{bottom:711.040000pt;}
.yf_c00092{bottom:738.480000pt;}
.ye_c00092{bottom:766.160000pt;}
.yd_c00092{bottom:793.760000pt;}
.yc_c00092{bottom:821.360000pt;}
.yb_c00092{bottom:848.960000pt;}
.ya_c00092{bottom:876.560000pt;}
.y9_c00092{bottom:904.160000pt;}
.y8_c00092{bottom:931.760000pt;}
.y7_c00092{bottom:959.360000pt;}
.y6_c00092{bottom:986.960000pt;}
.y5_c00092{bottom:1005.360000pt;}
.y4_c00092{bottom:1023.040000pt;}
.y3_c00092{bottom:1036.804000pt;}
.y2_c00092{bottom:1050.640000pt;}
.y1_c00092{bottom:1064.400000pt;}
.h7_c00092{height:33.918750pt;}
.h3_c00092{height:47.085938pt;}
.h2_c00092{height:47.109375pt;}
.h8_c00092{height:52.448437pt;}
.h4_c00092{height:62.812500pt;}
.h6_c00092{height:64.500000pt;}
.h5_c00092{height:65.770312pt;}
.h0_c00092{height:1122.560000pt;}
.h1_c00092{height:1122.666667pt;}
.w0_c00092{width:793.840000pt;}
.w1_c00092{width:794.000000pt;}
.x0_c00092{left:0.000000pt;}
.x3_c00092{left:113.440000pt;}
.x2_c00092{left:377.920000pt;}
.x1_c00092{left:396.960000pt;}
.x4_c00092{left:664.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_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_1a41f5ee276af98e57495073.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.284180;font-style:normal;font-weight:normal;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_6bcef01048199fbec0353905.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_21dabf18d2ee79e776d859d7.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;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:ff5_c00093;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00093{font-family:ff5_c00093;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00093{vertical-align:-61.938000px;}
.v3_c00093{vertical-align:-20.880000px;}
.v0_c00093{vertical-align:0.000000px;}
.v2_c00093{vertical-align:27.000000px;}
.ls19_c00093{letter-spacing:-0.576000px;}
.ls16_c00093{letter-spacing:-0.420840px;}
.ls18_c00093{letter-spacing:-0.288000px;}
.ls14_c00093{letter-spacing:-0.180360px;}
.ls11_c00093{letter-spacing:-0.120240px;}
.ls10_c00093{letter-spacing:-0.072000px;}
.ls12_c00093{letter-spacing:-0.060120px;}
.lsf_c00093{letter-spacing:0.000000px;}
.ls5_c00093{letter-spacing:0.060120px;}
.ls9_c00093{letter-spacing:0.072000px;}
.ls2_c00093{letter-spacing:0.090000px;}
.ls15_c00093{letter-spacing:0.120240px;}
.ls1_c00093{letter-spacing:0.144000px;}
.ls13_c00093{letter-spacing:0.180360px;}
.ls17_c00093{letter-spacing:0.191520px;}
.ls7_c00093{letter-spacing:2.160000px;}
.lse_c00093{letter-spacing:3.240000px;}
.ls8_c00093{letter-spacing:3.600000px;}
.ls6_c00093{letter-spacing:11.160000px;}
.lsd_c00093{letter-spacing:21.600000px;}
.lsc_c00093{letter-spacing:21.614400px;}
.lsb_c00093{letter-spacing:29.160000px;}
.lsa_c00093{letter-spacing:30.744000px;}
.ls4_c00093{letter-spacing:43.766640px;}
.ls3_c00093{letter-spacing:43.767360px;}
.ls0_c00093{letter-spacing:319.518000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00093{word-spacing:-60.120000px;}
.ws8_c00093{word-spacing:-18.144000px;}
.ws9_c00093{word-spacing:-18.072000px;}
.ws7_c00093{word-spacing:-18.000000px;}
.ws0_c00093{word-spacing:-17.928000px;}
.ws2_c00093{word-spacing:-15.210360px;}
.ws3_c00093{word-spacing:-15.150240px;}
.ws1_c00093{word-spacing:-14.969880px;}
.ws5_c00093{word-spacing:-14.909760px;}
.ws6_c00093{word-spacing:-14.609160px;}
.wsa_c00093{word-spacing:-12.161520px;}
.wsb_c00093{word-spacing:-9.720000px;}
.ws15_c00093{word-spacing:-0.420840px;}
.ws1f_c00093{word-spacing:-0.360000px;}
.ws13_c00093{word-spacing:-0.180360px;}
.wsd_c00093{word-spacing:-0.162000px;}
.ws10_c00093{word-spacing:-0.144000px;}
.ws16_c00093{word-spacing:-0.120240px;}
.wsf_c00093{word-spacing:-0.072000px;}
.ws12_c00093{word-spacing:-0.060120px;}
.wsc_c00093{word-spacing:0.000000px;}
.ws17_c00093{word-spacing:0.120240px;}
.ws14_c00093{word-spacing:0.180360px;}
.ws11_c00093{word-spacing:0.240480px;}
.ws2b_c00093{word-spacing:0.576000px;}
.ws1a_c00093{word-spacing:1.656000px;}
.ws22_c00093{word-spacing:1.800000px;}
.ws1c_c00093{word-spacing:2.016000px;}
.ws20_c00093{word-spacing:2.088000px;}
.ws1b_c00093{word-spacing:2.160000px;}
.ws21_c00093{word-spacing:2.448000px;}
.ws2c_c00093{word-spacing:3.096000px;}
.ws1e_c00093{word-spacing:3.168000px;}
.ws2d_c00093{word-spacing:3.240000px;}
.ws1d_c00093{word-spacing:3.600000px;}
.wse_c00093{word-spacing:4.320000px;}
.ws29_c00093{word-spacing:8.928000px;}
.ws2a_c00093{word-spacing:9.000000px;}
.ws19_c00093{word-spacing:11.160000px;}
.ws24_c00093{word-spacing:20.088000px;}
.ws23_c00093{word-spacing:20.160000px;}
.ws18_c00093{word-spacing:20.808000px;}
.ws27_c00093{word-spacing:21.168000px;}
.ws28_c00093{word-spacing:21.600000px;}
.ws25_c00093{word-spacing:29.016000px;}
.ws26_c00093{word-spacing:29.160000px;}
._0_c00093{margin-left:-1.087200px;}
._1_c00093{width:1.184364px;}
._3_c00093{width:3.326400px;}
._8_c00093{width:9.302400px;}
._2_c00093{width:11.088000px;}
._4_c00093{width:19.656000px;}
._7_c00093{width:20.800800px;}
._5_c00093{width:27.943200px;}
._6_c00093{width:29.232000px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs4_c00093{font-size:38.880000px;}
.fs3_c00093{font-size:47.880000px;}
.fs0_c00093{font-size:54.000000px;}
.fs2_c00093{font-size:60.120000px;}
.fs1_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.ya_c00093{bottom:3.330000px;}
.y12_c00093{bottom:3.510000px;}
.y9_c00093{bottom:20.520000px;}
.y22_c00093{bottom:55.080000px;}
.y23_c00093{bottom:55.260000px;}
.y36_c00093{bottom:57.240000px;}
.yc_c00093{bottom:89.550000px;}
.yd_c00093{bottom:89.730000px;}
.y35_c00093{bottom:115.020000px;}
.y37_c00093{bottom:127.710000px;}
.y34_c00093{bottom:158.580000px;}
.y33_c00093{bottom:189.630000px;}
.y14_c00093{bottom:210.330000px;}
.y15_c00093{bottom:210.510000px;}
.y32_c00093{bottom:220.680000px;}
.y31_c00093{bottom:251.730000px;}
.y30_c00093{bottom:282.780000px;}
.y2f_c00093{bottom:313.830000px;}
.y2e_c00093{bottom:344.880000px;}
.y2d_c00093{bottom:375.930000px;}
.y2c_c00093{bottom:406.980000px;}
.y2b_c00093{bottom:438.030000px;}
.y2a_c00093{bottom:469.080000px;}
.y29_c00093{bottom:500.130000px;}
.y28_c00093{bottom:531.180000px;}
.y27_c00093{bottom:562.230000px;}
.y26_c00093{bottom:590.850000px;}
.y21_c00093{bottom:606.870000px;}
.y25_c00093{bottom:627.655680px;}
.y24_c00093{bottom:644.850000px;}
.y13_c00093{bottom:676.620000px;}
.y20_c00093{bottom:697.365720px;}
.y1f_c00093{bottom:714.560040px;}
.y1e_c00093{bottom:731.844540px;}
.y1d_c00093{bottom:749.129040px;}
.y1c_c00093{bottom:766.323360px;}
.y1b_c00093{bottom:783.607860px;}
.y1a_c00093{bottom:800.892360px;}
.y19_c00093{bottom:818.086680px;}
.y18_c00093{bottom:835.371180px;}
.y17_c00093{bottom:852.565500px;}
.y16_c00093{bottom:869.850000px;}
.yb_c00093{bottom:901.620000px;}
.y11_c00093{bottom:922.306680px;}
.y10_c00093{bottom:939.591180px;}
.yf_c00093{bottom:956.875680px;}
.ye_c00093{bottom:974.070000px;}
.y8_c00093{bottom:1007.370000px;}
.y7_c00093{bottom:1048.050000px;}
.y6_c00093{bottom:1079.280000px;}
.y5_c00093{bottom:1110.330000px;}
.y4_c00093{bottom:1131.030000px;}
.y3_c00093{bottom:1150.915500px;}
.y2_c00093{bottom:1166.400000px;}
.y1_c00093{bottom:1197.450000px;}
.h5_c00093{height:34.470000px;}
.he_c00093{height:38.158594px;}
.h2_c00093{height:52.998047px;}
.h8_c00093{height:59.004492px;}
.h6_c00093{height:60.589687px;}
.ha_c00093{height:62.703281px;}
.hb_c00093{height:69.031500px;}
.h3_c00093{height:70.664062px;}
.h4_c00093{height:72.562500px;}
.hc_c00093{height:73.991602px;}
.hd_c00093{height:75.093750px;}
.h7_c00093{height:103.498500px;}
.h9_c00093{height:224.280000px;}
.h0_c00093{height:1262.880000px;}
.h1_c00093{height:1263.000000px;}
.w2_c00093{width:93.420000px;}
.w3_c00093{width:433.620000px;}
.w0_c00093{width:893.070000px;}
.w1_c00093{width:893.250000px;}
.x0_c00093{left:0.000000px;}
.x9_c00093{left:7.020000px;}
.x6_c00093{left:16.470000px;}
.x5_c00093{left:20.610000px;}
.xc_c00093{left:33.930000px;}
.x2_c00093{left:127.620000px;}
.xd_c00093{left:154.620000px;}
.x8_c00093{left:159.480000px;}
.x4_c00093{left:203.130000px;}
.x3_c00093{left:267.750000px;}
.x7_c00093{left:298.800000px;}
.xa_c00093{left:305.730000px;}
.xb_c00093{left:332.738910px;}
.x1_c00093{left:446.580000px;}
@media print{
.v1_c00093{vertical-align:-55.056000pt;}
.v3_c00093{vertical-align:-18.560000pt;}
.v0_c00093{vertical-align:0.000000pt;}
.v2_c00093{vertical-align:24.000000pt;}
.ls19_c00093{letter-spacing:-0.512000pt;}
.ls16_c00093{letter-spacing:-0.374080pt;}
.ls18_c00093{letter-spacing:-0.256000pt;}
.ls14_c00093{letter-spacing:-0.160320pt;}
.ls11_c00093{letter-spacing:-0.106880pt;}
.ls10_c00093{letter-spacing:-0.064000pt;}
.ls12_c00093{letter-spacing:-0.053440pt;}
.lsf_c00093{letter-spacing:0.000000pt;}
.ls5_c00093{letter-spacing:0.053440pt;}
.ls9_c00093{letter-spacing:0.064000pt;}
.ls2_c00093{letter-spacing:0.080000pt;}
.ls15_c00093{letter-spacing:0.106880pt;}
.ls1_c00093{letter-spacing:0.128000pt;}
.ls13_c00093{letter-spacing:0.160320pt;}
.ls17_c00093{letter-spacing:0.170240pt;}
.ls7_c00093{letter-spacing:1.920000pt;}
.lse_c00093{letter-spacing:2.880000pt;}
.ls8_c00093{letter-spacing:3.200000pt;}
.ls6_c00093{letter-spacing:9.920000pt;}
.lsd_c00093{letter-spacing:19.200000pt;}
.lsc_c00093{letter-spacing:19.212800pt;}
.lsb_c00093{letter-spacing:25.920000pt;}
.lsa_c00093{letter-spacing:27.328000pt;}
.ls4_c00093{letter-spacing:38.903680pt;}
.ls3_c00093{letter-spacing:38.904320pt;}
.ls0_c00093{letter-spacing:284.016000pt;}
.ws4_c00093{word-spacing:-53.440000pt;}
.ws8_c00093{word-spacing:-16.128000pt;}
.ws9_c00093{word-spacing:-16.064000pt;}
.ws7_c00093{word-spacing:-16.000000pt;}
.ws0_c00093{word-spacing:-15.936000pt;}
.ws2_c00093{word-spacing:-13.520320pt;}
.ws3_c00093{word-spacing:-13.466880pt;}
.ws1_c00093{word-spacing:-13.306560pt;}
.ws5_c00093{word-spacing:-13.253120pt;}
.ws6_c00093{word-spacing:-12.985920pt;}
.wsa_c00093{word-spacing:-10.810240pt;}
.wsb_c00093{word-spacing:-8.640000pt;}
.ws15_c00093{word-spacing:-0.374080pt;}
.ws1f_c00093{word-spacing:-0.320000pt;}
.ws13_c00093{word-spacing:-0.160320pt;}
.wsd_c00093{word-spacing:-0.144000pt;}
.ws10_c00093{word-spacing:-0.128000pt;}
.ws16_c00093{word-spacing:-0.106880pt;}
.wsf_c00093{word-spacing:-0.064000pt;}
.ws12_c00093{word-spacing:-0.053440pt;}
.wsc_c00093{word-spacing:0.000000pt;}
.ws17_c00093{word-spacing:0.106880pt;}
.ws14_c00093{word-spacing:0.160320pt;}
.ws11_c00093{word-spacing:0.213760pt;}
.ws2b_c00093{word-spacing:0.512000pt;}
.ws1a_c00093{word-spacing:1.472000pt;}
.ws22_c00093{word-spacing:1.600000pt;}
.ws1c_c00093{word-spacing:1.792000pt;}
.ws20_c00093{word-spacing:1.856000pt;}
.ws1b_c00093{word-spacing:1.920000pt;}
.ws21_c00093{word-spacing:2.176000pt;}
.ws2c_c00093{word-spacing:2.752000pt;}
.ws1e_c00093{word-spacing:2.816000pt;}
.ws2d_c00093{word-spacing:2.880000pt;}
.ws1d_c00093{word-spacing:3.200000pt;}
.wse_c00093{word-spacing:3.840000pt;}
.ws29_c00093{word-spacing:7.936000pt;}
.ws2a_c00093{word-spacing:8.000000pt;}
.ws19_c00093{word-spacing:9.920000pt;}
.ws24_c00093{word-spacing:17.856000pt;}
.ws23_c00093{word-spacing:17.920000pt;}
.ws18_c00093{word-spacing:18.496000pt;}
.ws27_c00093{word-spacing:18.816000pt;}
.ws28_c00093{word-spacing:19.200000pt;}
.ws25_c00093{word-spacing:25.792000pt;}
.ws26_c00093{word-spacing:25.920000pt;}
._0_c00093{margin-left:-0.966400pt;}
._1_c00093{width:1.052768pt;}
._3_c00093{width:2.956800pt;}
._8_c00093{width:8.268800pt;}
._2_c00093{width:9.856000pt;}
._4_c00093{width:17.472000pt;}
._7_c00093{width:18.489600pt;}
._5_c00093{width:24.838400pt;}
._6_c00093{width:25.984000pt;}
.fs4_c00093{font-size:34.560000pt;}
.fs3_c00093{font-size:42.560000pt;}
.fs0_c00093{font-size:48.000000pt;}
.fs2_c00093{font-size:53.440000pt;}
.fs1_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.ya_c00093{bottom:2.960000pt;}
.y12_c00093{bottom:3.120000pt;}
.y9_c00093{bottom:18.240000pt;}
.y22_c00093{bottom:48.960000pt;}
.y23_c00093{bottom:49.120000pt;}
.y36_c00093{bottom:50.880000pt;}
.yc_c00093{bottom:79.600000pt;}
.yd_c00093{bottom:79.760000pt;}
.y35_c00093{bottom:102.240000pt;}
.y37_c00093{bottom:113.520000pt;}
.y34_c00093{bottom:140.960000pt;}
.y33_c00093{bottom:168.560000pt;}
.y14_c00093{bottom:186.960000pt;}
.y15_c00093{bottom:187.120000pt;}
.y32_c00093{bottom:196.160000pt;}
.y31_c00093{bottom:223.760000pt;}
.y30_c00093{bottom:251.360000pt;}
.y2f_c00093{bottom:278.960000pt;}
.y2e_c00093{bottom:306.560000pt;}
.y2d_c00093{bottom:334.160000pt;}
.y2c_c00093{bottom:361.760000pt;}
.y2b_c00093{bottom:389.360000pt;}
.y2a_c00093{bottom:416.960000pt;}
.y29_c00093{bottom:444.560000pt;}
.y28_c00093{bottom:472.160000pt;}
.y27_c00093{bottom:499.760000pt;}
.y26_c00093{bottom:525.200000pt;}
.y21_c00093{bottom:539.440000pt;}
.y25_c00093{bottom:557.916160pt;}
.y24_c00093{bottom:573.200000pt;}
.y13_c00093{bottom:601.440000pt;}
.y20_c00093{bottom:619.880640pt;}
.y1f_c00093{bottom:635.164480pt;}
.y1e_c00093{bottom:650.528480pt;}
.y1d_c00093{bottom:665.892480pt;}
.y1c_c00093{bottom:681.176320pt;}
.y1b_c00093{bottom:696.540320pt;}
.y1a_c00093{bottom:711.904320pt;}
.y19_c00093{bottom:727.188160pt;}
.y18_c00093{bottom:742.552160pt;}
.y17_c00093{bottom:757.836000pt;}
.y16_c00093{bottom:773.200000pt;}
.yb_c00093{bottom:801.440000pt;}
.y11_c00093{bottom:819.828160pt;}
.y10_c00093{bottom:835.192160pt;}
.yf_c00093{bottom:850.556160pt;}
.ye_c00093{bottom:865.840000pt;}
.y8_c00093{bottom:895.440000pt;}
.y7_c00093{bottom:931.600000pt;}
.y6_c00093{bottom:959.360000pt;}
.y5_c00093{bottom:986.960000pt;}
.y4_c00093{bottom:1005.360000pt;}
.y3_c00093{bottom:1023.036000pt;}
.y2_c00093{bottom:1036.800000pt;}
.y1_c00093{bottom:1064.400000pt;}
.h5_c00093{height:30.640000pt;}
.he_c00093{height:33.918750pt;}
.h2_c00093{height:47.109375pt;}
.h8_c00093{height:52.448437pt;}
.h6_c00093{height:53.857500pt;}
.ha_c00093{height:55.736250pt;}
.hb_c00093{height:61.361333pt;}
.h3_c00093{height:62.812500pt;}
.h4_c00093{height:64.500000pt;}
.hc_c00093{height:65.770312pt;}
.hd_c00093{height:66.750000pt;}
.h7_c00093{height:91.998667pt;}
.h9_c00093{height:199.360000pt;}
.h0_c00093{height:1122.560000pt;}
.h1_c00093{height:1122.666667pt;}
.w2_c00093{width:83.040000pt;}
.w3_c00093{width:385.440000pt;}
.w0_c00093{width:793.840000pt;}
.w1_c00093{width:794.000000pt;}
.x0_c00093{left:0.000000pt;}
.x9_c00093{left:6.240000pt;}
.x6_c00093{left:14.640000pt;}
.x5_c00093{left:18.320000pt;}
.xc_c00093{left:30.160000pt;}
.x2_c00093{left:113.440000pt;}
.xd_c00093{left:137.440000pt;}
.x8_c00093{left:141.760000pt;}
.x4_c00093{left:180.560000pt;}
.x3_c00093{left:238.000000pt;}
.x7_c00093{left:265.600000pt;}
.xa_c00093{left:271.760000pt;}
.xb_c00093{left:295.767920pt;}
.x1_c00093{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a2d7f3c0d3c9a5a357d610d.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_01f2d4b0191d6d8d2b57ec58.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;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_c00094;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00094{vertical-align:-82.800000px;}
.v3_c00094{vertical-align:-20.880000px;}
.v0_c00094{vertical-align:0.000000px;}
.v2_c00094{vertical-align:27.000000px;}
.lsf_c00094{letter-spacing:-0.288000px;}
.lse_c00094{letter-spacing:-0.216000px;}
.lsc_c00094{letter-spacing:-0.144000px;}
.ls12_c00094{letter-spacing:-0.120240px;}
.ls9_c00094{letter-spacing:-0.108000px;}
.lsb_c00094{letter-spacing:-0.072000px;}
.ls10_c00094{letter-spacing:-0.060120px;}
.ls8_c00094{letter-spacing:0.000000px;}
.ls2_c00094{letter-spacing:0.072000px;}
.ls7_c00094{letter-spacing:0.120240px;}
.lsa_c00094{letter-spacing:0.144000px;}
.ls11_c00094{letter-spacing:0.180360px;}
.lsd_c00094{letter-spacing:0.191520px;}
.ls1_c00094{letter-spacing:4.680000px;}
.ls5_c00094{letter-spacing:6.480000px;}
.ls4_c00094{letter-spacing:6.840000px;}
.ls6_c00094{letter-spacing:18.360000px;}
.ls3_c00094{letter-spacing:30.744000px;}
.ls0_c00094{letter-spacing:90.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:-18.072000px;}
.ws3_c00094{word-spacing:-18.000000px;}
.ws1_c00094{word-spacing:-17.928000px;}
.ws2_c00094{word-spacing:-17.856000px;}
.ws5_c00094{word-spacing:-17.784000px;}
.ws4_c00094{word-spacing:-12.161520px;}
.ws6_c00094{word-spacing:-9.720000px;}
.ws35_c00094{word-spacing:-0.180360px;}
.ws2b_c00094{word-spacing:-0.144000px;}
.ws1b_c00094{word-spacing:-0.072000px;}
.ws34_c00094{word-spacing:-0.060120px;}
.ws7_c00094{word-spacing:0.000000px;}
.ws9_c00094{word-spacing:0.162000px;}
.ws33_c00094{word-spacing:0.180360px;}
.ws28_c00094{word-spacing:0.216000px;}
.ws36_c00094{word-spacing:0.240480px;}
.ws8_c00094{word-spacing:0.270000px;}
.ws30_c00094{word-spacing:0.288000px;}
.ws1a_c00094{word-spacing:0.360000px;}
.ws32_c00094{word-spacing:3.168000px;}
.ws31_c00094{word-spacing:3.240000px;}
.wsf_c00094{word-spacing:3.960000px;}
.ws2d_c00094{word-spacing:4.176000px;}
.wsd_c00094{word-spacing:4.248000px;}
.ws2c_c00094{word-spacing:4.320000px;}
.ws2e_c00094{word-spacing:4.608000px;}
.wsc_c00094{word-spacing:4.680000px;}
.ws18_c00094{word-spacing:6.048000px;}
.ws19_c00094{word-spacing:6.480000px;}
.wsa_c00094{word-spacing:6.696000px;}
.wsb_c00094{word-spacing:6.768000px;}
.ws21_c00094{word-spacing:9.576000px;}
.ws23_c00094{word-spacing:9.648000px;}
.ws22_c00094{word-spacing:9.720000px;}
.ws14_c00094{word-spacing:10.800000px;}
.ws1e_c00094{word-spacing:11.376000px;}
.ws1f_c00094{word-spacing:11.448000px;}
.ws20_c00094{word-spacing:11.520000px;}
.ws29_c00094{word-spacing:12.168000px;}
.ws2a_c00094{word-spacing:12.240000px;}
.ws25_c00094{word-spacing:13.248000px;}
.ws24_c00094{word-spacing:13.320000px;}
.ws12_c00094{word-spacing:15.408000px;}
.ws1d_c00094{word-spacing:18.288000px;}
.ws1c_c00094{word-spacing:18.360000px;}
.ws15_c00094{word-spacing:20.520000px;}
.ws27_c00094{word-spacing:23.616000px;}
.ws26_c00094{word-spacing:23.760000px;}
.ws16_c00094{word-spacing:24.840000px;}
.ws10_c00094{word-spacing:28.368000px;}
.ws11_c00094{word-spacing:28.440000px;}
.ws13_c00094{word-spacing:29.448000px;}
.ws2f_c00094{word-spacing:30.240000px;}
.wse_c00094{word-spacing:33.048000px;}
.ws17_c00094{word-spacing:42.408000px;}
._1_c00094{margin-left:-1.058400px;}
._0_c00094{width:1.220400px;}
._4_c00094{width:2.808000px;}
._8_c00094{width:4.176000px;}
._5_c00094{width:11.455200px;}
._7_c00094{width:12.726000px;}
._3_c00094{width:20.736000px;}
._6_c00094{width:23.544000px;}
._2_c00094{width:28.231200px;}
._9_c00094{width:30.243600px;}
.fc0_c00094{color:rgb(0,0,0);}
.fs3_c00094{font-size:38.880000px;}
.fs2_c00094{font-size:47.880000px;}
.fs0_c00094{font-size:54.000000px;}
.fs4_c00094{font-size:60.120000px;}
.fs1_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y26_c00094{bottom:57.240000px;}
.y25_c00094{bottom:115.020000px;}
.y24_c00094{bottom:132.210000px;}
.y27_c00094{bottom:144.900000px;}
.y23_c00094{bottom:178.920000px;}
.y22_c00094{bottom:209.970000px;}
.y21_c00094{bottom:241.020000px;}
.y20_c00094{bottom:272.070000px;}
.y1f_c00094{bottom:303.120000px;}
.y1e_c00094{bottom:334.170000px;}
.y1d_c00094{bottom:365.220000px;}
.y1c_c00094{bottom:396.270000px;}
.y1b_c00094{bottom:427.320000px;}
.y1a_c00094{bottom:458.370000px;}
.y19_c00094{bottom:489.420000px;}
.y18_c00094{bottom:520.470000px;}
.y17_c00094{bottom:551.520000px;}
.y16_c00094{bottom:582.570000px;}
.y15_c00094{bottom:613.620000px;}
.y14_c00094{bottom:644.670000px;}
.y13_c00094{bottom:675.720000px;}
.y12_c00094{bottom:706.770000px;}
.y11_c00094{bottom:737.820000px;}
.y10_c00094{bottom:768.870000px;}
.yf_c00094{bottom:799.920000px;}
.ye_c00094{bottom:830.970000px;}
.yd_c00094{bottom:861.930000px;}
.yc_c00094{bottom:892.980000px;}
.yb_c00094{bottom:924.030000px;}
.ya_c00094{bottom:955.080000px;}
.y9_c00094{bottom:986.130000px;}
.y8_c00094{bottom:1017.180000px;}
.y7_c00094{bottom:1048.230000px;}
.y6_c00094{bottom:1079.280000px;}
.y5_c00094{bottom:1131.030000px;}
.y4_c00094{bottom:1150.920000px;}
.y3_c00094{bottom:1166.404500px;}
.y2_c00094{bottom:1181.970000px;}
.y1_c00094{bottom:1197.450000px;}
.h7_c00094{height:38.158594px;}
.h3_c00094{height:52.971680px;}
.h2_c00094{height:52.998047px;}
.h4_c00094{height:70.664062px;}
.h6_c00094{height:73.991602px;}
.h5_c00094{height:75.093750px;}
.h0_c00094{height:1262.880000px;}
.h1_c00094{height:1263.000000px;}
.w0_c00094{width:893.070000px;}
.w1_c00094{width:893.250000px;}
.x0_c00094{left:0.000000px;}
.x3_c00094{left:127.620000px;}
.x4_c00094{left:154.620000px;}
.x5_c00094{left:181.620000px;}
.x2_c00094{left:425.160000px;}
.x1_c00094{left:446.580000px;}
.x6_c00094{left:747.540000px;}
@media print{
.v1_c00094{vertical-align:-73.600000pt;}
.v3_c00094{vertical-align:-18.560000pt;}
.v0_c00094{vertical-align:0.000000pt;}
.v2_c00094{vertical-align:24.000000pt;}
.lsf_c00094{letter-spacing:-0.256000pt;}
.lse_c00094{letter-spacing:-0.192000pt;}
.lsc_c00094{letter-spacing:-0.128000pt;}
.ls12_c00094{letter-spacing:-0.106880pt;}
.ls9_c00094{letter-spacing:-0.096000pt;}
.lsb_c00094{letter-spacing:-0.064000pt;}
.ls10_c00094{letter-spacing:-0.053440pt;}
.ls8_c00094{letter-spacing:0.000000pt;}
.ls2_c00094{letter-spacing:0.064000pt;}
.ls7_c00094{letter-spacing:0.106880pt;}
.lsa_c00094{letter-spacing:0.128000pt;}
.ls11_c00094{letter-spacing:0.160320pt;}
.lsd_c00094{letter-spacing:0.170240pt;}
.ls1_c00094{letter-spacing:4.160000pt;}
.ls5_c00094{letter-spacing:5.760000pt;}
.ls4_c00094{letter-spacing:6.080000pt;}
.ls6_c00094{letter-spacing:16.320000pt;}
.ls3_c00094{letter-spacing:27.328000pt;}
.ls0_c00094{letter-spacing:80.000000pt;}
.ws0_c00094{word-spacing:-16.064000pt;}
.ws3_c00094{word-spacing:-16.000000pt;}
.ws1_c00094{word-spacing:-15.936000pt;}
.ws2_c00094{word-spacing:-15.872000pt;}
.ws5_c00094{word-spacing:-15.808000pt;}
.ws4_c00094{word-spacing:-10.810240pt;}
.ws6_c00094{word-spacing:-8.640000pt;}
.ws35_c00094{word-spacing:-0.160320pt;}
.ws2b_c00094{word-spacing:-0.128000pt;}
.ws1b_c00094{word-spacing:-0.064000pt;}
.ws34_c00094{word-spacing:-0.053440pt;}
.ws7_c00094{word-spacing:0.000000pt;}
.ws9_c00094{word-spacing:0.144000pt;}
.ws33_c00094{word-spacing:0.160320pt;}
.ws28_c00094{word-spacing:0.192000pt;}
.ws36_c00094{word-spacing:0.213760pt;}
.ws8_c00094{word-spacing:0.240000pt;}
.ws30_c00094{word-spacing:0.256000pt;}
.ws1a_c00094{word-spacing:0.320000pt;}
.ws32_c00094{word-spacing:2.816000pt;}
.ws31_c00094{word-spacing:2.880000pt;}
.wsf_c00094{word-spacing:3.520000pt;}
.ws2d_c00094{word-spacing:3.712000pt;}
.wsd_c00094{word-spacing:3.776000pt;}
.ws2c_c00094{word-spacing:3.840000pt;}
.ws2e_c00094{word-spacing:4.096000pt;}
.wsc_c00094{word-spacing:4.160000pt;}
.ws18_c00094{word-spacing:5.376000pt;}
.ws19_c00094{word-spacing:5.760000pt;}
.wsa_c00094{word-spacing:5.952000pt;}
.wsb_c00094{word-spacing:6.016000pt;}
.ws21_c00094{word-spacing:8.512000pt;}
.ws23_c00094{word-spacing:8.576000pt;}
.ws22_c00094{word-spacing:8.640000pt;}
.ws14_c00094{word-spacing:9.600000pt;}
.ws1e_c00094{word-spacing:10.112000pt;}
.ws1f_c00094{word-spacing:10.176000pt;}
.ws20_c00094{word-spacing:10.240000pt;}
.ws29_c00094{word-spacing:10.816000pt;}
.ws2a_c00094{word-spacing:10.880000pt;}
.ws25_c00094{word-spacing:11.776000pt;}
.ws24_c00094{word-spacing:11.840000pt;}
.ws12_c00094{word-spacing:13.696000pt;}
.ws1d_c00094{word-spacing:16.256000pt;}
.ws1c_c00094{word-spacing:16.320000pt;}
.ws15_c00094{word-spacing:18.240000pt;}
.ws27_c00094{word-spacing:20.992000pt;}
.ws26_c00094{word-spacing:21.120000pt;}
.ws16_c00094{word-spacing:22.080000pt;}
.ws10_c00094{word-spacing:25.216000pt;}
.ws11_c00094{word-spacing:25.280000pt;}
.ws13_c00094{word-spacing:26.176000pt;}
.ws2f_c00094{word-spacing:26.880000pt;}
.wse_c00094{word-spacing:29.376000pt;}
.ws17_c00094{word-spacing:37.696000pt;}
._1_c00094{margin-left:-0.940800pt;}
._0_c00094{width:1.084800pt;}
._4_c00094{width:2.496000pt;}
._8_c00094{width:3.712000pt;}
._5_c00094{width:10.182400pt;}
._7_c00094{width:11.312000pt;}
._3_c00094{width:18.432000pt;}
._6_c00094{width:20.928000pt;}
._2_c00094{width:25.094400pt;}
._9_c00094{width:26.883200pt;}
.fs3_c00094{font-size:34.560000pt;}
.fs2_c00094{font-size:42.560000pt;}
.fs0_c00094{font-size:48.000000pt;}
.fs4_c00094{font-size:53.440000pt;}
.fs1_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y26_c00094{bottom:50.880000pt;}
.y25_c00094{bottom:102.240000pt;}
.y24_c00094{bottom:117.520000pt;}
.y27_c00094{bottom:128.800000pt;}
.y23_c00094{bottom:159.040000pt;}
.y22_c00094{bottom:186.640000pt;}
.y21_c00094{bottom:214.240000pt;}
.y20_c00094{bottom:241.840000pt;}
.y1f_c00094{bottom:269.440000pt;}
.y1e_c00094{bottom:297.040000pt;}
.y1d_c00094{bottom:324.640000pt;}
.y1c_c00094{bottom:352.240000pt;}
.y1b_c00094{bottom:379.840000pt;}
.y1a_c00094{bottom:407.440000pt;}
.y19_c00094{bottom:435.040000pt;}
.y18_c00094{bottom:462.640000pt;}
.y17_c00094{bottom:490.240000pt;}
.y16_c00094{bottom:517.840000pt;}
.y15_c00094{bottom:545.440000pt;}
.y14_c00094{bottom:573.040000pt;}
.y13_c00094{bottom:600.640000pt;}
.y12_c00094{bottom:628.240000pt;}
.y11_c00094{bottom:655.840000pt;}
.y10_c00094{bottom:683.440000pt;}
.yf_c00094{bottom:711.040000pt;}
.ye_c00094{bottom:738.640000pt;}
.yd_c00094{bottom:766.160000pt;}
.yc_c00094{bottom:793.760000pt;}
.yb_c00094{bottom:821.360000pt;}
.ya_c00094{bottom:848.960000pt;}
.y9_c00094{bottom:876.560000pt;}
.y8_c00094{bottom:904.160000pt;}
.y7_c00094{bottom:931.760000pt;}
.y6_c00094{bottom:959.360000pt;}
.y5_c00094{bottom:1005.360000pt;}
.y4_c00094{bottom:1023.040000pt;}
.y3_c00094{bottom:1036.804000pt;}
.y2_c00094{bottom:1050.640000pt;}
.y1_c00094{bottom:1064.400000pt;}
.h7_c00094{height:33.918750pt;}
.h3_c00094{height:47.085938pt;}
.h2_c00094{height:47.109375pt;}
.h4_c00094{height:62.812500pt;}
.h6_c00094{height:65.770313pt;}
.h5_c00094{height:66.750000pt;}
.h0_c00094{height:1122.560000pt;}
.h1_c00094{height:1122.666667pt;}
.w0_c00094{width:793.840000pt;}
.w1_c00094{width:794.000000pt;}
.x0_c00094{left:0.000000pt;}
.x3_c00094{left:113.440000pt;}
.x4_c00094{left:137.440000pt;}
.x5_c00094{left:161.440000pt;}
.x2_c00094{left:377.920000pt;}
.x1_c00094{left:396.960000pt;}
.x6_c00094{left:664.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_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_ae70a81c2a3179fc398e438c.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_ade6cb14387bb7e532280d5d.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00095{vertical-align:-82.800000px;}
.v1_c00095{vertical-align:-61.938000px;}
.v0_c00095{vertical-align:0.000000px;}
.ls1a_c00095{letter-spacing:-0.661320px;}
.ls16_c00095{letter-spacing:-0.480960px;}
.ls19_c00095{letter-spacing:-0.420840px;}
.ls14_c00095{letter-spacing:-0.300600px;}
.ls13_c00095{letter-spacing:-0.288000px;}
.ls15_c00095{letter-spacing:-0.180360px;}
.ls1b_c00095{letter-spacing:-0.144000px;}
.ls18_c00095{letter-spacing:-0.120240px;}
.ls12_c00095{letter-spacing:-0.072000px;}
.ls17_c00095{letter-spacing:-0.060120px;}
.ls11_c00095{letter-spacing:0.000000px;}
.ls8_c00095{letter-spacing:0.053280px;}
.lsd_c00095{letter-spacing:0.060120px;}
.ls3_c00095{letter-spacing:0.072000px;}
.ls10_c00095{letter-spacing:0.093600px;}
.lse_c00095{letter-spacing:0.120240px;}
.lsc_c00095{letter-spacing:0.140040px;}
.ls2_c00095{letter-spacing:0.144000px;}
.lsb_c00095{letter-spacing:0.153360px;}
.ls5_c00095{letter-spacing:0.180000px;}
.ls6_c00095{letter-spacing:0.180360px;}
.ls9_c00095{letter-spacing:0.450000px;}
.lsa_c00095{letter-spacing:0.781560px;}
.ls7_c00095{letter-spacing:1.863720px;}
.lsf_c00095{letter-spacing:13.050000px;}
.ls4_c00095{letter-spacing:20.610000px;}
.ls1_c00095{letter-spacing:108.720000px;}
.ls0_c00095{letter-spacing:319.518000px;}
.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;}
}
.wsb_c00095{word-spacing:-18.072000px;}
.wsd_c00095{word-spacing:-18.000000px;}
.ws0_c00095{word-spacing:-17.928000px;}
.wsc_c00095{word-spacing:-17.856000px;}
.wsa_c00095{word-spacing:-15.210360px;}
.ws2_c00095{word-spacing:-15.090120px;}
.ws5_c00095{word-spacing:-15.030000px;}
.ws7_c00095{word-spacing:-14.969880px;}
.ws6_c00095{word-spacing:-14.909760px;}
.ws3_c00095{word-spacing:-14.849640px;}
.ws1_c00095{word-spacing:-14.729400px;}
.ws8_c00095{word-spacing:-14.609160px;}
.ws4_c00095{word-spacing:-14.549040px;}
.ws9_c00095{word-spacing:-14.368680px;}
.ws1f_c00095{word-spacing:-0.420840px;}
.ws3b_c00095{word-spacing:-0.180360px;}
.wsf_c00095{word-spacing:-0.162000px;}
.ws10_c00095{word-spacing:-0.144000px;}
.ws2b_c00095{word-spacing:-0.120240px;}
.ws12_c00095{word-spacing:-0.072000px;}
.ws1d_c00095{word-spacing:-0.060120px;}
.wse_c00095{word-spacing:0.000000px;}
.ws2e_c00095{word-spacing:0.060120px;}
.ws11_c00095{word-spacing:0.072000px;}
.ws20_c00095{word-spacing:0.120240px;}
.ws1e_c00095{word-spacing:0.180360px;}
.ws3c_c00095{word-spacing:0.240480px;}
.ws13_c00095{word-spacing:0.288000px;}
.ws28_c00095{word-spacing:0.300600px;}
.ws2f_c00095{word-spacing:0.420840px;}
.ws27_c00095{word-spacing:0.661320px;}
.ws29_c00095{word-spacing:0.961920px;}
.ws2a_c00095{word-spacing:1.022040px;}
.ws3a_c00095{word-spacing:1.262520px;}
.ws24_c00095{word-spacing:1.322640px;}
.ws39_c00095{word-spacing:1.382760px;}
.ws17_c00095{word-spacing:1.683360px;}
.ws25_c00095{word-spacing:1.923840px;}
.ws26_c00095{word-spacing:1.983960px;}
.ws1b_c00095{word-spacing:2.044080px;}
.ws1a_c00095{word-spacing:2.284560px;}
.ws47_c00095{word-spacing:3.240000px;}
.ws2c_c00095{word-spacing:3.366720px;}
.ws1c_c00095{word-spacing:3.486960px;}
.ws46_c00095{word-spacing:3.528000px;}
.ws45_c00095{word-spacing:3.600000px;}
.ws43_c00095{word-spacing:4.176000px;}
.ws42_c00095{word-spacing:4.248000px;}
.ws41_c00095{word-spacing:4.320000px;}
.ws32_c00095{word-spacing:4.929840px;}
.ws33_c00095{word-spacing:5.170320px;}
.ws31_c00095{word-spacing:5.230440px;}
.ws35_c00095{word-spacing:6.012000px;}
.ws44_c00095{word-spacing:6.768000px;}
.ws30_c00095{word-spacing:8.416800px;}
.ws2d_c00095{word-spacing:8.537040px;}
.ws23_c00095{word-spacing:9.619200px;}
.ws22_c00095{word-spacing:9.859680px;}
.ws21_c00095{word-spacing:9.979920px;}
.ws40_c00095{word-spacing:10.008000px;}
.ws36_c00095{word-spacing:12.745440px;}
.ws37_c00095{word-spacing:12.865680px;}
.ws38_c00095{word-spacing:13.106160px;}
.ws19_c00095{word-spacing:14.308560px;}
.ws18_c00095{word-spacing:14.669280px;}
.ws3d_c00095{word-spacing:15.048000px;}
.ws48_c00095{word-spacing:15.120000px;}
.ws3f_c00095{word-spacing:15.408000px;}
.ws3e_c00095{word-spacing:15.480000px;}
.ws49_c00095{word-spacing:19.800000px;}
.ws15_c00095{word-spacing:20.801520px;}
.ws14_c00095{word-spacing:21.162240px;}
.ws34_c00095{word-spacing:23.567040px;}
.ws16_c00095{word-spacing:26.813520px;}
._1_c00095{margin-left:-1.118232px;}
._0_c00095{width:1.015200px;}
._3_c00095{width:3.422232px;}
._2_c00095{width:8.886960px;}
._4_c00095{width:14.760000px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs0_c00095{font-size:54.000000px;}
.fs2_c00095{font-size:60.120000px;}
.fs1_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y7_c00095{bottom:3.240000px;}
.y16_c00095{bottom:3.330000px;}
.y11_c00095{bottom:3.420000px;}
.y14_c00095{bottom:3.510000px;}
.y13_c00095{bottom:20.520000px;}
.y10_c00095{bottom:20.700000px;}
.y1c_c00095{bottom:37.710000px;}
.y18_c00095{bottom:37.800000px;}
.y1e_c00095{bottom:37.890000px;}
.ye_c00095{bottom:37.980000px;}
.y2c_c00095{bottom:54.990000px;}
.yc_c00095{bottom:55.170000px;}
.y3f_c00095{bottom:57.240000px;}
.yb_c00095{bottom:72.450000px;}
.y9_c00095{bottom:89.550000px;}
.ya_c00095{bottom:89.730000px;}
.y24_c00095{bottom:106.740000px;}
.y26_c00095{bottom:106.920000px;}
.y3e_c00095{bottom:128.250000px;}
.y3d_c00095{bottom:159.300000px;}
.y3c_c00095{bottom:190.350000px;}
.y3b_c00095{bottom:221.400000px;}
.y3a_c00095{bottom:252.450000px;}
.y39_c00095{bottom:283.500000px;}
.y38_c00095{bottom:314.550000px;}
.y37_c00095{bottom:345.600000px;}
.y36_c00095{bottom:376.650000px;}
.y35_c00095{bottom:407.700000px;}
.y34_c00095{bottom:438.750000px;}
.y33_c00095{bottom:469.800000px;}
.y32_c00095{bottom:489.775500px;}
.y31_c00095{bottom:507.060000px;}
.y2b_c00095{bottom:523.080000px;}
.y2e_c00095{bottom:543.595500px;}
.y30_c00095{bottom:543.775500px;}
.y2d_c00095{bottom:560.880000px;}
.y2f_c00095{bottom:561.060000px;}
.y23_c00095{bottom:592.830000px;}
.y2a_c00095{bottom:613.530000px;}
.y29_c00095{bottom:630.810000px;}
.y28_c00095{bottom:665.280000px;}
.y25_c00095{bottom:682.380000px;}
.y27_c00095{bottom:682.560000px;}
.y22_c00095{bottom:714.330000px;}
.y20_c00095{bottom:749.520000px;}
.y21_c00095{bottom:770.310000px;}
.y1b_c00095{bottom:802.080000px;}
.y1d_c00095{bottom:822.600000px;}
.y1f_c00095{bottom:822.780000px;}
.y17_c00095{bottom:854.550000px;}
.y19_c00095{bottom:875.070000px;}
.y1a_c00095{bottom:875.250000px;}
.y15_c00095{bottom:907.020000px;}
.y12_c00095{bottom:925.020000px;}
.y8_c00095{bottom:960.300000px;}
.yf_c00095{bottom:981.000000px;}
.yd_c00095{bottom:998.280000px;}
.y6_c00095{bottom:1066.050000px;}
.y5_c00095{bottom:1110.150000px;}
.y4_c00095{bottom:1131.030000px;}
.y3_c00095{bottom:1150.915500px;}
.y2_c00095{bottom:1166.400000px;}
.y1_c00095{bottom:1197.450000px;}
.h5_c00095{height:17.190000px;}
.ha_c00095{height:17.280000px;}
.h9_c00095{height:34.470000px;}
.hd_c00095{height:34.471500px;}
.hc_c00095{height:51.660000px;}
.hb_c00095{height:51.750000px;}
.h2_c00095{height:52.998047px;}
.h8_c00095{height:59.004492px;}
.h6_c00095{height:60.589687px;}
.hf_c00095{height:68.938500px;}
.h3_c00095{height:70.664062px;}
.h4_c00095{height:72.562500px;}
.h7_c00095{height:103.500000px;}
.he_c00095{height:120.690000px;}
.h0_c00095{height:1262.880000px;}
.h1_c00095{height:1263.000000px;}
.w2_c00095{width:58.410000px;}
.w3_c00095{width:71.820000px;}
.w4_c00095{width:509.040000px;}
.w0_c00095{width:893.070000px;}
.w1_c00095{width:893.250000px;}
.x0_c00095{left:0.000000px;}
.x9_c00095{left:7.020000px;}
.xa_c00095{left:10.980000px;}
.x4_c00095{left:14.040000px;}
.x6_c00095{left:19.440000px;}
.x11_c00095{left:42.750000px;}
.x3_c00095{left:120.600000px;}
.x2_c00095{left:127.620000px;}
.xd_c00095{left:163.170000px;}
.x5_c00095{left:181.260000px;}
.xe_c00095{left:188.460000px;}
.x8_c00095{left:205.920000px;}
.x10_c00095{left:217.170000px;}
.xf_c00095{left:219.060000px;}
.x7_c00095{left:255.330000px;}
.xb_c00095{left:262.260000px;}
.xc_c00095{left:338.310000px;}
.x1_c00095{left:446.580000px;}
@media print{
.v2_c00095{vertical-align:-73.600000pt;}
.v1_c00095{vertical-align:-55.056000pt;}
.v0_c00095{vertical-align:0.000000pt;}
.ls1a_c00095{letter-spacing:-0.587840pt;}
.ls16_c00095{letter-spacing:-0.427520pt;}
.ls19_c00095{letter-spacing:-0.374080pt;}
.ls14_c00095{letter-spacing:-0.267200pt;}
.ls13_c00095{letter-spacing:-0.256000pt;}
.ls15_c00095{letter-spacing:-0.160320pt;}
.ls1b_c00095{letter-spacing:-0.128000pt;}
.ls18_c00095{letter-spacing:-0.106880pt;}
.ls12_c00095{letter-spacing:-0.064000pt;}
.ls17_c00095{letter-spacing:-0.053440pt;}
.ls11_c00095{letter-spacing:0.000000pt;}
.ls8_c00095{letter-spacing:0.047360pt;}
.lsd_c00095{letter-spacing:0.053440pt;}
.ls3_c00095{letter-spacing:0.064000pt;}
.ls10_c00095{letter-spacing:0.083200pt;}
.lse_c00095{letter-spacing:0.106880pt;}
.lsc_c00095{letter-spacing:0.124480pt;}
.ls2_c00095{letter-spacing:0.128000pt;}
.lsb_c00095{letter-spacing:0.136320pt;}
.ls5_c00095{letter-spacing:0.160000pt;}
.ls6_c00095{letter-spacing:0.160320pt;}
.ls9_c00095{letter-spacing:0.400000pt;}
.lsa_c00095{letter-spacing:0.694720pt;}
.ls7_c00095{letter-spacing:1.656640pt;}
.lsf_c00095{letter-spacing:11.600000pt;}
.ls4_c00095{letter-spacing:18.320000pt;}
.ls1_c00095{letter-spacing:96.640000pt;}
.ls0_c00095{letter-spacing:284.016000pt;}
.wsb_c00095{word-spacing:-16.064000pt;}
.wsd_c00095{word-spacing:-16.000000pt;}
.ws0_c00095{word-spacing:-15.936000pt;}
.wsc_c00095{word-spacing:-15.872000pt;}
.wsa_c00095{word-spacing:-13.520320pt;}
.ws2_c00095{word-spacing:-13.413440pt;}
.ws5_c00095{word-spacing:-13.360000pt;}
.ws7_c00095{word-spacing:-13.306560pt;}
.ws6_c00095{word-spacing:-13.253120pt;}
.ws3_c00095{word-spacing:-13.199680pt;}
.ws1_c00095{word-spacing:-13.092800pt;}
.ws8_c00095{word-spacing:-12.985920pt;}
.ws4_c00095{word-spacing:-12.932480pt;}
.ws9_c00095{word-spacing:-12.772160pt;}
.ws1f_c00095{word-spacing:-0.374080pt;}
.ws3b_c00095{word-spacing:-0.160320pt;}
.wsf_c00095{word-spacing:-0.144000pt;}
.ws10_c00095{word-spacing:-0.128000pt;}
.ws2b_c00095{word-spacing:-0.106880pt;}
.ws12_c00095{word-spacing:-0.064000pt;}
.ws1d_c00095{word-spacing:-0.053440pt;}
.wse_c00095{word-spacing:0.000000pt;}
.ws2e_c00095{word-spacing:0.053440pt;}
.ws11_c00095{word-spacing:0.064000pt;}
.ws20_c00095{word-spacing:0.106880pt;}
.ws1e_c00095{word-spacing:0.160320pt;}
.ws3c_c00095{word-spacing:0.213760pt;}
.ws13_c00095{word-spacing:0.256000pt;}
.ws28_c00095{word-spacing:0.267200pt;}
.ws2f_c00095{word-spacing:0.374080pt;}
.ws27_c00095{word-spacing:0.587840pt;}
.ws29_c00095{word-spacing:0.855040pt;}
.ws2a_c00095{word-spacing:0.908480pt;}
.ws3a_c00095{word-spacing:1.122240pt;}
.ws24_c00095{word-spacing:1.175680pt;}
.ws39_c00095{word-spacing:1.229120pt;}
.ws17_c00095{word-spacing:1.496320pt;}
.ws25_c00095{word-spacing:1.710080pt;}
.ws26_c00095{word-spacing:1.763520pt;}
.ws1b_c00095{word-spacing:1.816960pt;}
.ws1a_c00095{word-spacing:2.030720pt;}
.ws47_c00095{word-spacing:2.880000pt;}
.ws2c_c00095{word-spacing:2.992640pt;}
.ws1c_c00095{word-spacing:3.099520pt;}
.ws46_c00095{word-spacing:3.136000pt;}
.ws45_c00095{word-spacing:3.200000pt;}
.ws43_c00095{word-spacing:3.712000pt;}
.ws42_c00095{word-spacing:3.776000pt;}
.ws41_c00095{word-spacing:3.840000pt;}
.ws32_c00095{word-spacing:4.382080pt;}
.ws33_c00095{word-spacing:4.595840pt;}
.ws31_c00095{word-spacing:4.649280pt;}
.ws35_c00095{word-spacing:5.344000pt;}
.ws44_c00095{word-spacing:6.016000pt;}
.ws30_c00095{word-spacing:7.481600pt;}
.ws2d_c00095{word-spacing:7.588480pt;}
.ws23_c00095{word-spacing:8.550400pt;}
.ws22_c00095{word-spacing:8.764160pt;}
.ws21_c00095{word-spacing:8.871040pt;}
.ws40_c00095{word-spacing:8.896000pt;}
.ws36_c00095{word-spacing:11.329280pt;}
.ws37_c00095{word-spacing:11.436160pt;}
.ws38_c00095{word-spacing:11.649920pt;}
.ws19_c00095{word-spacing:12.718720pt;}
.ws18_c00095{word-spacing:13.039360pt;}
.ws3d_c00095{word-spacing:13.376000pt;}
.ws48_c00095{word-spacing:13.440000pt;}
.ws3f_c00095{word-spacing:13.696000pt;}
.ws3e_c00095{word-spacing:13.760000pt;}
.ws49_c00095{word-spacing:17.600000pt;}
.ws15_c00095{word-spacing:18.490240pt;}
.ws14_c00095{word-spacing:18.810880pt;}
.ws34_c00095{word-spacing:20.948480pt;}
.ws16_c00095{word-spacing:23.834240pt;}
._1_c00095{margin-left:-0.993984pt;}
._0_c00095{width:0.902400pt;}
._3_c00095{width:3.041984pt;}
._2_c00095{width:7.899520pt;}
._4_c00095{width:13.120000pt;}
.fs0_c00095{font-size:48.000000pt;}
.fs2_c00095{font-size:53.440000pt;}
.fs1_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y7_c00095{bottom:2.880000pt;}
.y16_c00095{bottom:2.960000pt;}
.y11_c00095{bottom:3.040000pt;}
.y14_c00095{bottom:3.120000pt;}
.y13_c00095{bottom:18.240000pt;}
.y10_c00095{bottom:18.400000pt;}
.y1c_c00095{bottom:33.520000pt;}
.y18_c00095{bottom:33.600000pt;}
.y1e_c00095{bottom:33.680000pt;}
.ye_c00095{bottom:33.760000pt;}
.y2c_c00095{bottom:48.880000pt;}
.yc_c00095{bottom:49.040000pt;}
.y3f_c00095{bottom:50.880000pt;}
.yb_c00095{bottom:64.400000pt;}
.y9_c00095{bottom:79.600000pt;}
.ya_c00095{bottom:79.760000pt;}
.y24_c00095{bottom:94.880000pt;}
.y26_c00095{bottom:95.040000pt;}
.y3e_c00095{bottom:114.000000pt;}
.y3d_c00095{bottom:141.600000pt;}
.y3c_c00095{bottom:169.200000pt;}
.y3b_c00095{bottom:196.800000pt;}
.y3a_c00095{bottom:224.400000pt;}
.y39_c00095{bottom:252.000000pt;}
.y38_c00095{bottom:279.600000pt;}
.y37_c00095{bottom:307.200000pt;}
.y36_c00095{bottom:334.800000pt;}
.y35_c00095{bottom:362.400000pt;}
.y34_c00095{bottom:390.000000pt;}
.y33_c00095{bottom:417.600000pt;}
.y32_c00095{bottom:435.356000pt;}
.y31_c00095{bottom:450.720000pt;}
.y2b_c00095{bottom:464.960000pt;}
.y2e_c00095{bottom:483.196000pt;}
.y30_c00095{bottom:483.356000pt;}
.y2d_c00095{bottom:498.560000pt;}
.y2f_c00095{bottom:498.720000pt;}
.y23_c00095{bottom:526.960000pt;}
.y2a_c00095{bottom:545.360000pt;}
.y29_c00095{bottom:560.720000pt;}
.y28_c00095{bottom:591.360000pt;}
.y25_c00095{bottom:606.560000pt;}
.y27_c00095{bottom:606.720000pt;}
.y22_c00095{bottom:634.960000pt;}
.y20_c00095{bottom:666.240000pt;}
.y21_c00095{bottom:684.720000pt;}
.y1b_c00095{bottom:712.960000pt;}
.y1d_c00095{bottom:731.200000pt;}
.y1f_c00095{bottom:731.360000pt;}
.y17_c00095{bottom:759.600000pt;}
.y19_c00095{bottom:777.840000pt;}
.y1a_c00095{bottom:778.000000pt;}
.y15_c00095{bottom:806.240000pt;}
.y12_c00095{bottom:822.240000pt;}
.y8_c00095{bottom:853.600000pt;}
.yf_c00095{bottom:872.000000pt;}
.yd_c00095{bottom:887.360000pt;}
.y6_c00095{bottom:947.600000pt;}
.y5_c00095{bottom:986.800000pt;}
.y4_c00095{bottom:1005.360000pt;}
.y3_c00095{bottom:1023.036000pt;}
.y2_c00095{bottom:1036.800000pt;}
.y1_c00095{bottom:1064.400000pt;}
.h5_c00095{height:15.280000pt;}
.ha_c00095{height:15.360000pt;}
.h9_c00095{height:30.640000pt;}
.hd_c00095{height:30.641333pt;}
.hc_c00095{height:45.920000pt;}
.hb_c00095{height:46.000000pt;}
.h2_c00095{height:47.109375pt;}
.h8_c00095{height:52.448437pt;}
.h6_c00095{height:53.857500pt;}
.hf_c00095{height:61.278667pt;}
.h3_c00095{height:62.812500pt;}
.h4_c00095{height:64.500000pt;}
.h7_c00095{height:92.000000pt;}
.he_c00095{height:107.280000pt;}
.h0_c00095{height:1122.560000pt;}
.h1_c00095{height:1122.666667pt;}
.w2_c00095{width:51.920000pt;}
.w3_c00095{width:63.840000pt;}
.w4_c00095{width:452.480000pt;}
.w0_c00095{width:793.840000pt;}
.w1_c00095{width:794.000000pt;}
.x0_c00095{left:0.000000pt;}
.x9_c00095{left:6.240000pt;}
.xa_c00095{left:9.760000pt;}
.x4_c00095{left:12.480000pt;}
.x6_c00095{left:17.280000pt;}
.x11_c00095{left:38.000000pt;}
.x3_c00095{left:107.200000pt;}
.x2_c00095{left:113.440000pt;}
.xd_c00095{left:145.040000pt;}
.x5_c00095{left:161.120000pt;}
.xe_c00095{left:167.520000pt;}
.x8_c00095{left:183.040000pt;}
.x10_c00095{left:193.040000pt;}
.xf_c00095{left:194.720000pt;}
.x7_c00095{left:226.960000pt;}
.xb_c00095{left:233.120000pt;}
.xc_c00095{left:300.720000pt;}
.x1_c00095{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_736a4d5b0aeff274797193d3.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_598ac3fa9e99b2fd398a68a3.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;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_c00096;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00096{vertical-align:-20.880000px;}
.v0_c00096{vertical-align:0.000000px;}
.v1_c00096{vertical-align:27.000000px;}
.lsd_c00096{letter-spacing:-0.360000px;}
.lsf_c00096{letter-spacing:-0.216000px;}
.ls13_c00096{letter-spacing:-0.120240px;}
.lsb_c00096{letter-spacing:-0.108000px;}
.lsc_c00096{letter-spacing:-0.072000px;}
.ls12_c00096{letter-spacing:-0.060120px;}
.lsa_c00096{letter-spacing:0.000000px;}
.ls9_c00096{letter-spacing:0.060120px;}
.ls0_c00096{letter-spacing:0.072000px;}
.ls2_c00096{letter-spacing:0.144000px;}
.ls11_c00096{letter-spacing:0.180360px;}
.lse_c00096{letter-spacing:0.191520px;}
.ls10_c00096{letter-spacing:0.360000px;}
.ls5_c00096{letter-spacing:0.720000px;}
.ls6_c00096{letter-spacing:1.440000px;}
.ls4_c00096{letter-spacing:4.320000px;}
.ls8_c00096{letter-spacing:11.963880px;}
.ls3_c00096{letter-spacing:14.760000px;}
.ls1_c00096{letter-spacing:30.744000px;}
.ls7_c00096{letter-spacing:37.814400px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00096{word-spacing:-18.144000px;}
.ws0_c00096{word-spacing:-18.000000px;}
.ws2_c00096{word-spacing:-17.640000px;}
.ws5_c00096{word-spacing:-15.030000px;}
.ws6_c00096{word-spacing:-14.909760px;}
.ws3_c00096{word-spacing:-12.161520px;}
.ws4_c00096{word-spacing:-9.720000px;}
.ws25_c00096{word-spacing:-0.360000px;}
.ws10_c00096{word-spacing:-0.144000px;}
.wsd_c00096{word-spacing:-0.072000px;}
.ws2b_c00096{word-spacing:-0.060120px;}
.ws7_c00096{word-spacing:0.000000px;}
.ws2c_c00096{word-spacing:0.060120px;}
.wsc_c00096{word-spacing:0.072000px;}
.ws9_c00096{word-spacing:0.162000px;}
.wse_c00096{word-spacing:0.216000px;}
.ws8_c00096{word-spacing:0.270000px;}
.wsb_c00096{word-spacing:0.360000px;}
.ws20_c00096{word-spacing:0.648000px;}
.wsa_c00096{word-spacing:0.720000px;}
.ws21_c00096{word-spacing:1.368000px;}
.ws22_c00096{word-spacing:1.440000px;}
.ws2a_c00096{word-spacing:1.563120px;}
.ws26_c00096{word-spacing:2.448000px;}
.ws1f_c00096{word-spacing:2.520000px;}
.ws18_c00096{word-spacing:3.168000px;}
.ws1c_c00096{word-spacing:3.888000px;}
.ws1a_c00096{word-spacing:3.960000px;}
.ws1b_c00096{word-spacing:4.320000px;}
.wsf_c00096{word-spacing:5.040000px;}
.ws28_c00096{word-spacing:6.048000px;}
.ws27_c00096{word-spacing:6.120000px;}
.ws13_c00096{word-spacing:6.408000px;}
.ws14_c00096{word-spacing:6.480000px;}
.ws17_c00096{word-spacing:10.080000px;}
.ws11_c00096{word-spacing:10.296000px;}
.ws12_c00096{word-spacing:10.440000px;}
.ws29_c00096{word-spacing:11.783520px;}
.ws1e_c00096{word-spacing:13.968000px;}
.ws1d_c00096{word-spacing:14.040000px;}
.ws19_c00096{word-spacing:14.688000px;}
.ws16_c00096{word-spacing:21.888000px;}
.ws15_c00096{word-spacing:21.960000px;}
.ws24_c00096{word-spacing:37.728000px;}
.ws23_c00096{word-spacing:37.800000px;}
._1_c00096{margin-left:-1.058400px;}
._0_c00096{width:1.220400px;}
._2_c00096{width:2.433600px;}
._5_c00096{width:3.528000px;}
._4_c00096{width:4.968000px;}
._3_c00096{width:6.674400px;}
._6_c00096{width:14.040000px;}
._7_c00096{width:846.000000px;}
.fc0_c00096{color:rgb(0,0,0);}
.fs3_c00096{font-size:38.880000px;}
.fs2_c00096{font-size:47.880000px;}
.fs0_c00096{font-size:54.000000px;}
.fs4_c00096{font-size:60.120000px;}
.fs1_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y23_c00096{bottom:57.240000px;}
.y22_c00096{bottom:109.786680px;}
.y21_c00096{bottom:126.981000px;}
.y20_c00096{bottom:144.265500px;}
.y1f_c00096{bottom:166.770000px;}
.y24_c00096{bottom:179.460000px;}
.y1e_c00096{bottom:365.220000px;}
.y1d_c00096{bottom:396.270000px;}
.y1c_c00096{bottom:427.320000px;}
.y1b_c00096{bottom:458.370000px;}
.y1a_c00096{bottom:489.420000px;}
.y19_c00096{bottom:520.470000px;}
.y18_c00096{bottom:551.520000px;}
.y17_c00096{bottom:582.570000px;}
.y16_c00096{bottom:613.620000px;}
.y15_c00096{bottom:644.670000px;}
.y14_c00096{bottom:675.720000px;}
.y13_c00096{bottom:706.770000px;}
.y12_c00096{bottom:737.820000px;}
.y11_c00096{bottom:768.870000px;}
.y10_c00096{bottom:799.920000px;}
.yf_c00096{bottom:830.970000px;}
.ye_c00096{bottom:861.930000px;}
.yd_c00096{bottom:892.980000px;}
.yc_c00096{bottom:924.030000px;}
.yb_c00096{bottom:955.080000px;}
.ya_c00096{bottom:986.130000px;}
.y9_c00096{bottom:1017.180000px;}
.y8_c00096{bottom:1048.230000px;}
.y7_c00096{bottom:1079.280000px;}
.y6_c00096{bottom:1110.330000px;}
.y5_c00096{bottom:1131.030000px;}
.y4_c00096{bottom:1150.920000px;}
.y3_c00096{bottom:1166.404500px;}
.y2_c00096{bottom:1181.970000px;}
.y1_c00096{bottom:1197.450000px;}
.h7_c00096{height:38.158594px;}
.h3_c00096{height:52.971680px;}
.h2_c00096{height:52.998047px;}
.h8_c00096{height:59.004492px;}
.h4_c00096{height:70.664062px;}
.h5_c00096{height:73.991602px;}
.h6_c00096{height:75.093750px;}
.h0_c00096{height:1262.880000px;}
.h1_c00096{height:1263.000000px;}
.w0_c00096{width:893.070000px;}
.w1_c00096{width:893.250000px;}
.x0_c00096{left:0.000000px;}
.x3_c00096{left:127.620000px;}
.x4_c00096{left:154.620000px;}
.x5_c00096{left:181.620000px;}
.x2_c00096{left:425.160000px;}
.x1_c00096{left:446.580000px;}
.x6_c00096{left:747.540000px;}
@media print{
.v2_c00096{vertical-align:-18.560000pt;}
.v0_c00096{vertical-align:0.000000pt;}
.v1_c00096{vertical-align:24.000000pt;}
.lsd_c00096{letter-spacing:-0.320000pt;}
.lsf_c00096{letter-spacing:-0.192000pt;}
.ls13_c00096{letter-spacing:-0.106880pt;}
.lsb_c00096{letter-spacing:-0.096000pt;}
.lsc_c00096{letter-spacing:-0.064000pt;}
.ls12_c00096{letter-spacing:-0.053440pt;}
.lsa_c00096{letter-spacing:0.000000pt;}
.ls9_c00096{letter-spacing:0.053440pt;}
.ls0_c00096{letter-spacing:0.064000pt;}
.ls2_c00096{letter-spacing:0.128000pt;}
.ls11_c00096{letter-spacing:0.160320pt;}
.lse_c00096{letter-spacing:0.170240pt;}
.ls10_c00096{letter-spacing:0.320000pt;}
.ls5_c00096{letter-spacing:0.640000pt;}
.ls6_c00096{letter-spacing:1.280000pt;}
.ls4_c00096{letter-spacing:3.840000pt;}
.ls8_c00096{letter-spacing:10.634560pt;}
.ls3_c00096{letter-spacing:13.120000pt;}
.ls1_c00096{letter-spacing:27.328000pt;}
.ls7_c00096{letter-spacing:33.612800pt;}
.ws1_c00096{word-spacing:-16.128000pt;}
.ws0_c00096{word-spacing:-16.000000pt;}
.ws2_c00096{word-spacing:-15.680000pt;}
.ws5_c00096{word-spacing:-13.360000pt;}
.ws6_c00096{word-spacing:-13.253120pt;}
.ws3_c00096{word-spacing:-10.810240pt;}
.ws4_c00096{word-spacing:-8.640000pt;}
.ws25_c00096{word-spacing:-0.320000pt;}
.ws10_c00096{word-spacing:-0.128000pt;}
.wsd_c00096{word-spacing:-0.064000pt;}
.ws2b_c00096{word-spacing:-0.053440pt;}
.ws7_c00096{word-spacing:0.000000pt;}
.ws2c_c00096{word-spacing:0.053440pt;}
.wsc_c00096{word-spacing:0.064000pt;}
.ws9_c00096{word-spacing:0.144000pt;}
.wse_c00096{word-spacing:0.192000pt;}
.ws8_c00096{word-spacing:0.240000pt;}
.wsb_c00096{word-spacing:0.320000pt;}
.ws20_c00096{word-spacing:0.576000pt;}
.wsa_c00096{word-spacing:0.640000pt;}
.ws21_c00096{word-spacing:1.216000pt;}
.ws22_c00096{word-spacing:1.280000pt;}
.ws2a_c00096{word-spacing:1.389440pt;}
.ws26_c00096{word-spacing:2.176000pt;}
.ws1f_c00096{word-spacing:2.240000pt;}
.ws18_c00096{word-spacing:2.816000pt;}
.ws1c_c00096{word-spacing:3.456000pt;}
.ws1a_c00096{word-spacing:3.520000pt;}
.ws1b_c00096{word-spacing:3.840000pt;}
.wsf_c00096{word-spacing:4.480000pt;}
.ws28_c00096{word-spacing:5.376000pt;}
.ws27_c00096{word-spacing:5.440000pt;}
.ws13_c00096{word-spacing:5.696000pt;}
.ws14_c00096{word-spacing:5.760000pt;}
.ws17_c00096{word-spacing:8.960000pt;}
.ws11_c00096{word-spacing:9.152000pt;}
.ws12_c00096{word-spacing:9.280000pt;}
.ws29_c00096{word-spacing:10.474240pt;}
.ws1e_c00096{word-spacing:12.416000pt;}
.ws1d_c00096{word-spacing:12.480000pt;}
.ws19_c00096{word-spacing:13.056000pt;}
.ws16_c00096{word-spacing:19.456000pt;}
.ws15_c00096{word-spacing:19.520000pt;}
.ws24_c00096{word-spacing:33.536000pt;}
.ws23_c00096{word-spacing:33.600000pt;}
._1_c00096{margin-left:-0.940800pt;}
._0_c00096{width:1.084800pt;}
._2_c00096{width:2.163200pt;}
._5_c00096{width:3.136000pt;}
._4_c00096{width:4.416000pt;}
._3_c00096{width:5.932800pt;}
._6_c00096{width:12.480000pt;}
._7_c00096{width:752.000000pt;}
.fs3_c00096{font-size:34.560000pt;}
.fs2_c00096{font-size:42.560000pt;}
.fs0_c00096{font-size:48.000000pt;}
.fs4_c00096{font-size:53.440000pt;}
.fs1_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y23_c00096{bottom:50.880000pt;}
.y22_c00096{bottom:97.588160pt;}
.y21_c00096{bottom:112.872000pt;}
.y20_c00096{bottom:128.236000pt;}
.y1f_c00096{bottom:148.240000pt;}
.y24_c00096{bottom:159.520000pt;}
.y1e_c00096{bottom:324.640000pt;}
.y1d_c00096{bottom:352.240000pt;}
.y1c_c00096{bottom:379.840000pt;}
.y1b_c00096{bottom:407.440000pt;}
.y1a_c00096{bottom:435.040000pt;}
.y19_c00096{bottom:462.640000pt;}
.y18_c00096{bottom:490.240000pt;}
.y17_c00096{bottom:517.840000pt;}
.y16_c00096{bottom:545.440000pt;}
.y15_c00096{bottom:573.040000pt;}
.y14_c00096{bottom:600.640000pt;}
.y13_c00096{bottom:628.240000pt;}
.y12_c00096{bottom:655.840000pt;}
.y11_c00096{bottom:683.440000pt;}
.y10_c00096{bottom:711.040000pt;}
.yf_c00096{bottom:738.640000pt;}
.ye_c00096{bottom:766.160000pt;}
.yd_c00096{bottom:793.760000pt;}
.yc_c00096{bottom:821.360000pt;}
.yb_c00096{bottom:848.960000pt;}
.ya_c00096{bottom:876.560000pt;}
.y9_c00096{bottom:904.160000pt;}
.y8_c00096{bottom:931.760000pt;}
.y7_c00096{bottom:959.360000pt;}
.y6_c00096{bottom:986.960000pt;}
.y5_c00096{bottom:1005.360000pt;}
.y4_c00096{bottom:1023.040000pt;}
.y3_c00096{bottom:1036.804000pt;}
.y2_c00096{bottom:1050.640000pt;}
.y1_c00096{bottom:1064.400000pt;}
.h7_c00096{height:33.918750pt;}
.h3_c00096{height:47.085938pt;}
.h2_c00096{height:47.109375pt;}
.h8_c00096{height:52.448437pt;}
.h4_c00096{height:62.812500pt;}
.h5_c00096{height:65.770312pt;}
.h6_c00096{height:66.750000pt;}
.h0_c00096{height:1122.560000pt;}
.h1_c00096{height:1122.666667pt;}
.w0_c00096{width:793.840000pt;}
.w1_c00096{width:794.000000pt;}
.x0_c00096{left:0.000000pt;}
.x3_c00096{left:113.440000pt;}
.x4_c00096{left:137.440000pt;}
.x5_c00096{left:161.440000pt;}
.x2_c00096{left:377.920000pt;}
.x1_c00096{left:396.960000pt;}
.x6_c00096{left:664.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_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_f234787781253f4980342988.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_f02daec0d4089395f01fca77.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_dd69074570c72f7f6764a130.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00097{vertical-align:-83.520000px;}
.v1_c00097{vertical-align:-61.938000px;}
.v0_c00097{vertical-align:0.000000px;}
.lsd_c00097{letter-spacing:-0.420840px;}
.lsb_c00097{letter-spacing:-0.240480px;}
.ls9_c00097{letter-spacing:-0.180360px;}
.lse_c00097{letter-spacing:-0.153360px;}
.lsa_c00097{letter-spacing:-0.120240px;}
.ls8_c00097{letter-spacing:-0.060120px;}
.ls6_c00097{letter-spacing:0.000000px;}
.lsc_c00097{letter-spacing:0.060120px;}
.ls7_c00097{letter-spacing:0.072000px;}
.ls3_c00097{letter-spacing:0.120240px;}
.ls4_c00097{letter-spacing:0.180360px;}
.ls5_c00097{letter-spacing:9.450000px;}
.ls2_c00097{letter-spacing:10.190340px;}
.ls1_c00097{letter-spacing:61.920000px;}
.ls0_c00097{letter-spacing:319.518000px;}
.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:-18.072000px;}
.ws6_c00097{word-spacing:-15.210360px;}
.ws5_c00097{word-spacing:-15.150240px;}
.ws3_c00097{word-spacing:-15.030000px;}
.ws1_c00097{word-spacing:-14.969880px;}
.ws4_c00097{word-spacing:-14.909760px;}
.ws2_c00097{word-spacing:-14.849640px;}
.ws7_c00097{word-spacing:-12.780000px;}
.ws21_c00097{word-spacing:-0.300600px;}
.wsb_c00097{word-spacing:-0.180360px;}
.ws9_c00097{word-spacing:-0.162000px;}
.ws47_c00097{word-spacing:-0.153360px;}
.ws22_c00097{word-spacing:-0.120240px;}
.wsa_c00097{word-spacing:-0.072000px;}
.ws18_c00097{word-spacing:-0.060120px;}
.ws8_c00097{word-spacing:0.000000px;}
.ws2c_c00097{word-spacing:0.060120px;}
.wsc_c00097{word-spacing:0.120240px;}
.ws2e_c00097{word-spacing:0.180360px;}
.ws49_c00097{word-spacing:0.204480px;}
.ws17_c00097{word-spacing:0.240480px;}
.ws26_c00097{word-spacing:0.300600px;}
.ws48_c00097{word-spacing:0.357840px;}
.ws41_c00097{word-spacing:0.420840px;}
.ws23_c00097{word-spacing:1.262520px;}
.ws44_c00097{word-spacing:1.322640px;}
.ws43_c00097{word-spacing:1.683360px;}
.ws13_c00097{word-spacing:2.284560px;}
.ws42_c00097{word-spacing:3.366720px;}
.ws1b_c00097{word-spacing:3.486960px;}
.ws1c_c00097{word-spacing:4.088160px;}
.ws37_c00097{word-spacing:4.208400px;}
.ws2d_c00097{word-spacing:4.569120px;}
.ws33_c00097{word-spacing:5.170320px;}
.ws27_c00097{word-spacing:5.290560px;}
.ws28_c00097{word-spacing:5.531040px;}
.ws3a_c00097{word-spacing:7.094160px;}
.ws32_c00097{word-spacing:7.454880px;}
.ws1d_c00097{word-spacing:7.815600px;}
.ws19_c00097{word-spacing:8.416800px;}
.wsf_c00097{word-spacing:8.476920px;}
.ws10_c00097{word-spacing:8.537040px;}
.ws45_c00097{word-spacing:8.777520px;}
.ws1a_c00097{word-spacing:8.837640px;}
.ws30_c00097{word-spacing:9.138240px;}
.ws40_c00097{word-spacing:9.859680px;}
.ws11_c00097{word-spacing:9.979920px;}
.ws12_c00097{word-spacing:10.220400px;}
.ws2a_c00097{word-spacing:10.280520px;}
.ws36_c00097{word-spacing:12.504960px;}
.ws29_c00097{word-spacing:13.827600px;}
.ws39_c00097{word-spacing:13.947840px;}
.ws2b_c00097{word-spacing:15.330600px;}
.ws16_c00097{word-spacing:16.112160px;}
.ws3f_c00097{word-spacing:16.833600px;}
.ws1e_c00097{word-spacing:17.074080px;}
.ws20_c00097{word-spacing:18.516960px;}
.ws1f_c00097{word-spacing:18.577080px;}
.ws31_c00097{word-spacing:19.358640px;}
.ws38_c00097{word-spacing:19.959840px;}
.ws46_c00097{word-spacing:21.042000px;}
.ws24_c00097{word-spacing:21.883680px;}
.ws3c_c00097{word-spacing:23.206320px;}
.ws3d_c00097{word-spacing:23.567040px;}
.ws2f_c00097{word-spacing:29.759400px;}
.wse_c00097{word-spacing:37.214280px;}
.ws3b_c00097{word-spacing:38.777400px;}
.wsd_c00097{word-spacing:40.160160px;}
.ws25_c00097{word-spacing:44.188200px;}
.ws14_c00097{word-spacing:49.599000px;}
.ws35_c00097{word-spacing:59.939640px;}
.ws3e_c00097{word-spacing:91.021680px;}
.ws34_c00097{word-spacing:92.644920px;}
.ws15_c00097{word-spacing:113.686920px;}
._0_c00097{margin-left:-1.087200px;}
._1_c00097{width:1.222920px;}
._2_c00097{width:4.328640px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs3_c00097{font-size:51.120000px;}
.fs0_c00097{font-size:54.000000px;}
.fs2_c00097{font-size:60.120000px;}
.fs1_c00097{font-size:72.000000px;}
.y0_c00097{bottom:0.000000px;}
.y9_c00097{bottom:3.240000px;}
.ya_c00097{bottom:3.330000px;}
.y19_c00097{bottom:3.510000px;}
.y40_c00097{bottom:20.700000px;}
.y18_c00097{bottom:20.790000px;}
.y7_c00097{bottom:22.770000px;}
.y2b_c00097{bottom:37.800000px;}
.y17_c00097{bottom:37.980000px;}
.y54_c00097{bottom:54.990000px;}
.y42_c00097{bottom:55.080000px;}
.y57_c00097{bottom:55.170000px;}
.y16_c00097{bottom:55.260000px;}
.y5a_c00097{bottom:57.240000px;}
.y4c_c00097{bottom:72.360000px;}
.y25_c00097{bottom:72.450000px;}
.y1d_c00097{bottom:72.540000px;}
.y21_c00097{bottom:89.550000px;}
.y14_c00097{bottom:89.730000px;}
.y3c_c00097{bottom:106.920000px;}
.y30_c00097{bottom:107.730000px;}
.y59_c00097{bottom:109.530000px;}
.y53_c00097{bottom:123.390000px;}
.y3b_c00097{bottom:124.200000px;}
.y1b_c00097{bottom:124.290000px;}
.y11_c00097{bottom:141.480000px;}
.y2f_c00097{bottom:143.010000px;}
.y56_c00097{bottom:143.905680px;}
.yc_c00097{bottom:158.580000px;}
.y39_c00097{bottom:158.670000px;}
.y10_c00097{bottom:158.760000px;}
.y55_c00097{bottom:161.100000px;}
.y58_c00097{bottom:161.280000px;}
.y35_c00097{bottom:175.770000px;}
.y38_c00097{bottom:175.950000px;}
.y4b_c00097{bottom:193.050000px;}
.y4f_c00097{bottom:213.651180px;}
.y52_c00097{bottom:213.831180px;}
.y4e_c00097{bottom:230.845500px;}
.y51_c00097{bottom:231.025500px;}
.y4d_c00097{bottom:248.130000px;}
.y50_c00097{bottom:248.310000px;}
.y47_c00097{bottom:280.080000px;}
.y49_c00097{bottom:300.595500px;}
.y4a_c00097{bottom:300.780000px;}
.y48_c00097{bottom:317.880000px;}
.y41_c00097{bottom:349.830000px;}
.y44_c00097{bottom:370.345500px;}
.y46_c00097{bottom:370.525500px;}
.y43_c00097{bottom:387.630000px;}
.y45_c00097{bottom:387.810000px;}
.y34_c00097{bottom:419.580000px;}
.y3f_c00097{bottom:457.555500px;}
.y3e_c00097{bottom:474.840000px;}
.y3d_c00097{bottom:492.030000px;}
.y37_c00097{bottom:560.875680px;}
.y3a_c00097{bottom:561.060000px;}
.y36_c00097{bottom:578.070000px;}
.y2e_c00097{bottom:610.020000px;}
.y32_c00097{bottom:682.380000px;}
.y33_c00097{bottom:682.560000px;}
.y31_c00097{bottom:700.560000px;}
.y2a_c00097{bottom:715.050000px;}
.y2c_c00097{bottom:735.570000px;}
.y2d_c00097{bottom:735.750000px;}
.y20_c00097{bottom:767.520000px;}
.y27_c00097{bottom:788.305680px;}
.y29_c00097{bottom:788.310000px;}
.y24_c00097{bottom:805.311180px;}
.y26_c00097{bottom:805.500000px;}
.y23_c00097{bottom:822.595680px;}
.y28_c00097{bottom:822.780000px;}
.y22_c00097{bottom:839.790000px;}
.yb_c00097{bottom:871.740000px;}
.y1f_c00097{bottom:892.530000px;}
.y1e_c00097{bottom:909.720000px;}
.y15_c00097{bottom:944.280000px;}
.yf_c00097{bottom:978.561180px;}
.y13_c00097{bottom:978.745500px;}
.y1c_c00097{bottom:978.750000px;}
.ye_c00097{bottom:995.845680px;}
.y12_c00097{bottom:996.030000px;}
.yd_c00097{bottom:1013.040000px;}
.y1a_c00097{bottom:1013.220000px;}
.y6_c00097{bottom:1046.520000px;}
.y8_c00097{bottom:1066.050000px;}
.y5_c00097{bottom:1089.450000px;}
.y4_c00097{bottom:1131.030000px;}
.y3_c00097{bottom:1150.915500px;}
.y2_c00097{bottom:1166.400000px;}
.y1_c00097{bottom:1197.450000px;}
.h7_c00097{height:17.190000px;}
.h8_c00097{height:17.280000px;}
.h5_c00097{height:36.720000px;}
.h14_c00097{height:50.171484px;}
.hc_c00097{height:51.750000px;}
.h2_c00097{height:52.998047px;}
.ha_c00097{height:59.004492px;}
.h6_c00097{height:60.589687px;}
.h13_c00097{height:68.940000px;}
.h11_c00097{height:69.030000px;}
.h10_c00097{height:69.031500px;}
.h3_c00097{height:70.664062px;}
.h4_c00097{height:72.562500px;}
.h12_c00097{height:86.310000px;}
.he_c00097{height:103.498500px;}
.hb_c00097{height:103.500000px;}
.hd_c00097{height:156.780000px;}
.h9_c00097{height:172.530000px;}
.hf_c00097{height:189.720000px;}
.h0_c00097{height:1262.880000px;}
.h1_c00097{height:1263.000000px;}
.w2_c00097{width:104.040000px;}
.w4_c00097{width:263.430000px;}
.w5_c00097{width:263.520000px;}
.w3_c00097{width:529.200000px;}
.w0_c00097{width:893.070000px;}
.w1_c00097{width:893.250000px;}
.x0_c00097{left:0.000000px;}
.x5_c00097{left:6.930000px;}
.x10_c00097{left:52.560000px;}
.xf_c00097{left:65.250000px;}
.x8_c00097{left:97.290000px;}
.xa_c00097{left:114.840000px;}
.x2_c00097{left:127.620000px;}
.x4_c00097{left:130.140000px;}
.xb_c00097{left:137.070000px;}
.x7_c00097{left:189.000000px;}
.xe_c00097{left:198.180000px;}
.x6_c00097{left:236.520000px;}
.xc_c00097{left:243.450000px;}
.x3_c00097{left:399.330000px;}
.x1_c00097{left:446.580000px;}
.x9_c00097{left:502.200000px;}
.xd_c00097{left:509.130000px;}
@media print{
.v2_c00097{vertical-align:-74.240000pt;}
.v1_c00097{vertical-align:-55.056000pt;}
.v0_c00097{vertical-align:0.000000pt;}
.lsd_c00097{letter-spacing:-0.374080pt;}
.lsb_c00097{letter-spacing:-0.213760pt;}
.ls9_c00097{letter-spacing:-0.160320pt;}
.lse_c00097{letter-spacing:-0.136320pt;}
.lsa_c00097{letter-spacing:-0.106880pt;}
.ls8_c00097{letter-spacing:-0.053440pt;}
.ls6_c00097{letter-spacing:0.000000pt;}
.lsc_c00097{letter-spacing:0.053440pt;}
.ls7_c00097{letter-spacing:0.064000pt;}
.ls3_c00097{letter-spacing:0.106880pt;}
.ls4_c00097{letter-spacing:0.160320pt;}
.ls5_c00097{letter-spacing:8.400000pt;}
.ls2_c00097{letter-spacing:9.058080pt;}
.ls1_c00097{letter-spacing:55.040000pt;}
.ls0_c00097{letter-spacing:284.016000pt;}
.ws0_c00097{word-spacing:-16.064000pt;}
.ws6_c00097{word-spacing:-13.520320pt;}
.ws5_c00097{word-spacing:-13.466880pt;}
.ws3_c00097{word-spacing:-13.360000pt;}
.ws1_c00097{word-spacing:-13.306560pt;}
.ws4_c00097{word-spacing:-13.253120pt;}
.ws2_c00097{word-spacing:-13.199680pt;}
.ws7_c00097{word-spacing:-11.360000pt;}
.ws21_c00097{word-spacing:-0.267200pt;}
.wsb_c00097{word-spacing:-0.160320pt;}
.ws9_c00097{word-spacing:-0.144000pt;}
.ws47_c00097{word-spacing:-0.136320pt;}
.ws22_c00097{word-spacing:-0.106880pt;}
.wsa_c00097{word-spacing:-0.064000pt;}
.ws18_c00097{word-spacing:-0.053440pt;}
.ws8_c00097{word-spacing:0.000000pt;}
.ws2c_c00097{word-spacing:0.053440pt;}
.wsc_c00097{word-spacing:0.106880pt;}
.ws2e_c00097{word-spacing:0.160320pt;}
.ws49_c00097{word-spacing:0.181760pt;}
.ws17_c00097{word-spacing:0.213760pt;}
.ws26_c00097{word-spacing:0.267200pt;}
.ws48_c00097{word-spacing:0.318080pt;}
.ws41_c00097{word-spacing:0.374080pt;}
.ws23_c00097{word-spacing:1.122240pt;}
.ws44_c00097{word-spacing:1.175680pt;}
.ws43_c00097{word-spacing:1.496320pt;}
.ws13_c00097{word-spacing:2.030720pt;}
.ws42_c00097{word-spacing:2.992640pt;}
.ws1b_c00097{word-spacing:3.099520pt;}
.ws1c_c00097{word-spacing:3.633920pt;}
.ws37_c00097{word-spacing:3.740800pt;}
.ws2d_c00097{word-spacing:4.061440pt;}
.ws33_c00097{word-spacing:4.595840pt;}
.ws27_c00097{word-spacing:4.702720pt;}
.ws28_c00097{word-spacing:4.916480pt;}
.ws3a_c00097{word-spacing:6.305920pt;}
.ws32_c00097{word-spacing:6.626560pt;}
.ws1d_c00097{word-spacing:6.947200pt;}
.ws19_c00097{word-spacing:7.481600pt;}
.wsf_c00097{word-spacing:7.535040pt;}
.ws10_c00097{word-spacing:7.588480pt;}
.ws45_c00097{word-spacing:7.802240pt;}
.ws1a_c00097{word-spacing:7.855680pt;}
.ws30_c00097{word-spacing:8.122880pt;}
.ws40_c00097{word-spacing:8.764160pt;}
.ws11_c00097{word-spacing:8.871040pt;}
.ws12_c00097{word-spacing:9.084800pt;}
.ws2a_c00097{word-spacing:9.138240pt;}
.ws36_c00097{word-spacing:11.115520pt;}
.ws29_c00097{word-spacing:12.291200pt;}
.ws39_c00097{word-spacing:12.398080pt;}
.ws2b_c00097{word-spacing:13.627200pt;}
.ws16_c00097{word-spacing:14.321920pt;}
.ws3f_c00097{word-spacing:14.963200pt;}
.ws1e_c00097{word-spacing:15.176960pt;}
.ws20_c00097{word-spacing:16.459520pt;}
.ws1f_c00097{word-spacing:16.512960pt;}
.ws31_c00097{word-spacing:17.207680pt;}
.ws38_c00097{word-spacing:17.742080pt;}
.ws46_c00097{word-spacing:18.704000pt;}
.ws24_c00097{word-spacing:19.452160pt;}
.ws3c_c00097{word-spacing:20.627840pt;}
.ws3d_c00097{word-spacing:20.948480pt;}
.ws2f_c00097{word-spacing:26.452800pt;}
.wse_c00097{word-spacing:33.079360pt;}
.ws3b_c00097{word-spacing:34.468800pt;}
.wsd_c00097{word-spacing:35.697920pt;}
.ws25_c00097{word-spacing:39.278400pt;}
.ws14_c00097{word-spacing:44.088000pt;}
.ws35_c00097{word-spacing:53.279680pt;}
.ws3e_c00097{word-spacing:80.908160pt;}
.ws34_c00097{word-spacing:82.351040pt;}
.ws15_c00097{word-spacing:101.055040pt;}
._0_c00097{margin-left:-0.966400pt;}
._1_c00097{width:1.087040pt;}
._2_c00097{width:3.847680pt;}
.fs3_c00097{font-size:45.440000pt;}
.fs0_c00097{font-size:48.000000pt;}
.fs2_c00097{font-size:53.440000pt;}
.fs1_c00097{font-size:64.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y9_c00097{bottom:2.880000pt;}
.ya_c00097{bottom:2.960000pt;}
.y19_c00097{bottom:3.120000pt;}
.y40_c00097{bottom:18.400000pt;}
.y18_c00097{bottom:18.480000pt;}
.y7_c00097{bottom:20.240000pt;}
.y2b_c00097{bottom:33.600000pt;}
.y17_c00097{bottom:33.760000pt;}
.y54_c00097{bottom:48.880000pt;}
.y42_c00097{bottom:48.960000pt;}
.y57_c00097{bottom:49.040000pt;}
.y16_c00097{bottom:49.120000pt;}
.y5a_c00097{bottom:50.880000pt;}
.y4c_c00097{bottom:64.320000pt;}
.y25_c00097{bottom:64.400000pt;}
.y1d_c00097{bottom:64.480000pt;}
.y21_c00097{bottom:79.600000pt;}
.y14_c00097{bottom:79.760000pt;}
.y3c_c00097{bottom:95.040000pt;}
.y30_c00097{bottom:95.760000pt;}
.y59_c00097{bottom:97.360000pt;}
.y53_c00097{bottom:109.680000pt;}
.y3b_c00097{bottom:110.400000pt;}
.y1b_c00097{bottom:110.480000pt;}
.y11_c00097{bottom:125.760000pt;}
.y2f_c00097{bottom:127.120000pt;}
.y56_c00097{bottom:127.916160pt;}
.yc_c00097{bottom:140.960000pt;}
.y39_c00097{bottom:141.040000pt;}
.y10_c00097{bottom:141.120000pt;}
.y55_c00097{bottom:143.200000pt;}
.y58_c00097{bottom:143.360000pt;}
.y35_c00097{bottom:156.240000pt;}
.y38_c00097{bottom:156.400000pt;}
.y4b_c00097{bottom:171.600000pt;}
.y4f_c00097{bottom:189.912160pt;}
.y52_c00097{bottom:190.072160pt;}
.y4e_c00097{bottom:205.196000pt;}
.y51_c00097{bottom:205.356000pt;}
.y4d_c00097{bottom:220.560000pt;}
.y50_c00097{bottom:220.720000pt;}
.y47_c00097{bottom:248.960000pt;}
.y49_c00097{bottom:267.196000pt;}
.y4a_c00097{bottom:267.360000pt;}
.y48_c00097{bottom:282.560000pt;}
.y41_c00097{bottom:310.960000pt;}
.y44_c00097{bottom:329.196000pt;}
.y46_c00097{bottom:329.356000pt;}
.y43_c00097{bottom:344.560000pt;}
.y45_c00097{bottom:344.720000pt;}
.y34_c00097{bottom:372.960000pt;}
.y3f_c00097{bottom:406.716000pt;}
.y3e_c00097{bottom:422.080000pt;}
.y3d_c00097{bottom:437.360000pt;}
.y37_c00097{bottom:498.556160pt;}
.y3a_c00097{bottom:498.720000pt;}
.y36_c00097{bottom:513.840000pt;}
.y2e_c00097{bottom:542.240000pt;}
.y32_c00097{bottom:606.560000pt;}
.y33_c00097{bottom:606.720000pt;}
.y31_c00097{bottom:622.720000pt;}
.y2a_c00097{bottom:635.600000pt;}
.y2c_c00097{bottom:653.840000pt;}
.y2d_c00097{bottom:654.000000pt;}
.y20_c00097{bottom:682.240000pt;}
.y27_c00097{bottom:700.716160pt;}
.y29_c00097{bottom:700.720000pt;}
.y24_c00097{bottom:715.832160pt;}
.y26_c00097{bottom:716.000000pt;}
.y23_c00097{bottom:731.196160pt;}
.y28_c00097{bottom:731.360000pt;}
.y22_c00097{bottom:746.480000pt;}
.yb_c00097{bottom:774.880000pt;}
.y1f_c00097{bottom:793.360000pt;}
.y1e_c00097{bottom:808.640000pt;}
.y15_c00097{bottom:839.360000pt;}
.yf_c00097{bottom:869.832160pt;}
.y13_c00097{bottom:869.996000pt;}
.y1c_c00097{bottom:870.000000pt;}
.ye_c00097{bottom:885.196160pt;}
.y12_c00097{bottom:885.360000pt;}
.yd_c00097{bottom:900.480000pt;}
.y1a_c00097{bottom:900.640000pt;}
.y6_c00097{bottom:930.240000pt;}
.y8_c00097{bottom:947.600000pt;}
.y5_c00097{bottom:968.400000pt;}
.y4_c00097{bottom:1005.360000pt;}
.y3_c00097{bottom:1023.036000pt;}
.y2_c00097{bottom:1036.800000pt;}
.y1_c00097{bottom:1064.400000pt;}
.h7_c00097{height:15.280000pt;}
.h8_c00097{height:15.360000pt;}
.h5_c00097{height:32.640000pt;}
.h14_c00097{height:44.596875pt;}
.hc_c00097{height:46.000000pt;}
.h2_c00097{height:47.109375pt;}
.ha_c00097{height:52.448437pt;}
.h6_c00097{height:53.857500pt;}
.h13_c00097{height:61.280000pt;}
.h11_c00097{height:61.360000pt;}
.h10_c00097{height:61.361333pt;}
.h3_c00097{height:62.812500pt;}
.h4_c00097{height:64.500000pt;}
.h12_c00097{height:76.720000pt;}
.he_c00097{height:91.998667pt;}
.hb_c00097{height:92.000000pt;}
.hd_c00097{height:139.360000pt;}
.h9_c00097{height:153.360000pt;}
.hf_c00097{height:168.640000pt;}
.h0_c00097{height:1122.560000pt;}
.h1_c00097{height:1122.666667pt;}
.w2_c00097{width:92.480000pt;}
.w4_c00097{width:234.160000pt;}
.w5_c00097{width:234.240000pt;}
.w3_c00097{width:470.400000pt;}
.w0_c00097{width:793.840000pt;}
.w1_c00097{width:794.000000pt;}
.x0_c00097{left:0.000000pt;}
.x5_c00097{left:6.160000pt;}
.x10_c00097{left:46.720000pt;}
.xf_c00097{left:58.000000pt;}
.x8_c00097{left:86.480000pt;}
.xa_c00097{left:102.080000pt;}
.x2_c00097{left:113.440000pt;}
.x4_c00097{left:115.680000pt;}
.xb_c00097{left:121.840000pt;}
.x7_c00097{left:168.000000pt;}
.xe_c00097{left:176.160000pt;}
.x6_c00097{left:210.240000pt;}
.xc_c00097{left:216.400000pt;}
.x3_c00097{left:354.960000pt;}
.x1_c00097{left:396.960000pt;}
.x9_c00097{left:446.400000pt;}
.xd_c00097{left:452.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_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_90dae240132af6731788f629.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_de08f9654149c5251b1dc40c.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls18_c00098{letter-spacing:-0.420840px;}
.lsf_c00098{letter-spacing:-0.360000px;}
.lse_c00098{letter-spacing:-0.288000px;}
.ls17_c00098{letter-spacing:-0.240480px;}
.ls10_c00098{letter-spacing:-0.216000px;}
.ls16_c00098{letter-spacing:-0.180360px;}
.ls11_c00098{letter-spacing:-0.144000px;}
.ls14_c00098{letter-spacing:-0.120240px;}
.lsc_c00098{letter-spacing:-0.108000px;}
.lsd_c00098{letter-spacing:-0.072000px;}
.ls12_c00098{letter-spacing:-0.060120px;}
.lsb_c00098{letter-spacing:0.000000px;}
.ls9_c00098{letter-spacing:0.060120px;}
.ls2_c00098{letter-spacing:0.072000px;}
.ls4_c00098{letter-spacing:0.086400px;}
.ls8_c00098{letter-spacing:0.090000px;}
.ls15_c00098{letter-spacing:0.120240px;}
.ls7_c00098{letter-spacing:0.126720px;}
.ls6_c00098{letter-spacing:0.144000px;}
.ls13_c00098{letter-spacing:0.180360px;}
.lsa_c00098{letter-spacing:2.224440px;}
.ls0_c00098{letter-spacing:3.960000px;}
.ls5_c00098{letter-spacing:6.840000px;}
.ls1_c00098{letter-spacing:15.480000px;}
.ls3_c00098{letter-spacing:20.880000px;}
.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;}
}
.ws2_c00098{word-spacing:-18.072000px;}
.ws0_c00098{word-spacing:-17.928000px;}
.ws3_c00098{word-spacing:-17.856000px;}
.ws1_c00098{word-spacing:-17.712000px;}
.ws8_c00098{word-spacing:-15.210360px;}
.ws5_c00098{word-spacing:-15.030000px;}
.ws4_c00098{word-spacing:-14.969880px;}
.ws6_c00098{word-spacing:-14.909760px;}
.ws7_c00098{word-spacing:-14.789520px;}
.ws1b_c00098{word-spacing:-0.420840px;}
.ws1d_c00098{word-spacing:-0.300600px;}
.ws21_c00098{word-spacing:-0.180360px;}
.ws19_c00098{word-spacing:-0.144000px;}
.ws32_c00098{word-spacing:-0.120240px;}
.wsc_c00098{word-spacing:-0.072000px;}
.ws20_c00098{word-spacing:-0.060120px;}
.ws9_c00098{word-spacing:0.000000px;}
.ws1c_c00098{word-spacing:0.060120px;}
.ws22_c00098{word-spacing:0.120240px;}
.wsb_c00098{word-spacing:0.162000px;}
.ws1a_c00098{word-spacing:0.180360px;}
.ws17_c00098{word-spacing:0.216000px;}
.ws1f_c00098{word-spacing:0.240480px;}
.wsa_c00098{word-spacing:0.270000px;}
.ws37_c00098{word-spacing:0.420840px;}
.ws18_c00098{word-spacing:0.648000px;}
.ws24_c00098{word-spacing:1.022040px;}
.ws36_c00098{word-spacing:2.044080px;}
.ws35_c00098{word-spacing:2.284560px;}
.ws27_c00098{word-spacing:2.404800px;}
.wsd_c00098{word-spacing:3.960000px;}
.ws26_c00098{word-spacing:4.208400px;}
.ws31_c00098{word-spacing:4.809600px;}
.ws16_c00098{word-spacing:6.768000px;}
.ws15_c00098{word-spacing:6.840000px;}
.ws38_c00098{word-spacing:8.056080px;}
.ws13_c00098{word-spacing:8.568000px;}
.ws14_c00098{word-spacing:8.640000px;}
.ws3a_c00098{word-spacing:11.422800px;}
.ws30_c00098{word-spacing:12.444840px;}
.wsf_c00098{word-spacing:15.408000px;}
.wse_c00098{word-spacing:15.480000px;}
.ws2c_c00098{word-spacing:15.751440px;}
.ws1e_c00098{word-spacing:16.472880px;}
.ws2b_c00098{word-spacing:17.555040px;}
.ws11_c00098{word-spacing:20.736000px;}
.ws10_c00098{word-spacing:20.880000px;}
.ws33_c00098{word-spacing:21.162240px;}
.ws12_c00098{word-spacing:21.240000px;}
.ws3d_c00098{word-spacing:23.687280px;}
.ws3b_c00098{word-spacing:23.987880px;}
.ws3c_c00098{word-spacing:24.288480px;}
.ws23_c00098{word-spacing:33.005880px;}
.ws28_c00098{word-spacing:36.252360px;}
.ws2a_c00098{word-spacing:36.492840px;}
.ws29_c00098{word-spacing:36.673200px;}
.ws2d_c00098{word-spacing:48.035880px;}
.ws34_c00098{word-spacing:51.041880px;}
.ws2f_c00098{word-spacing:54.288360px;}
.ws2e_c00098{word-spacing:57.835440px;}
.ws25_c00098{word-spacing:60.059880px;}
.ws39_c00098{word-spacing:70.460640px;}
._1_c00098{margin-left:-1.058400px;}
._0_c00098{width:1.220400px;}
._4_c00098{width:2.224440px;}
._2_c00098{width:3.816000px;}
._3_c00098{width:15.699600px;}
.fc0_c00098{color:rgb(0,0,0);}
.fs0_c00098{font-size:54.000000px;}
.fs2_c00098{font-size:60.120000px;}
.fs1_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.y15_c00098{bottom:3.240000px;}
.y1c_c00098{bottom:3.330000px;}
.y27_c00098{bottom:3.510000px;}
.y26_c00098{bottom:20.700000px;}
.y13_c00098{bottom:37.800000px;}
.y18_c00098{bottom:37.980000px;}
.y29_c00098{bottom:55.080000px;}
.y25_c00098{bottom:55.260000px;}
.y41_c00098{bottom:57.240000px;}
.y24_c00098{bottom:72.450000px;}
.y33_c00098{bottom:72.540000px;}
.y1e_c00098{bottom:89.550000px;}
.y23_c00098{bottom:89.730000px;}
.y2e_c00098{bottom:106.830000px;}
.y31_c00098{bottom:107.010000px;}
.y40_c00098{bottom:134.273430px;}
.y3f_c00098{bottom:160.110000px;}
.y39_c00098{bottom:176.130000px;}
.y3e_c00098{bottom:196.830000px;}
.y3b_c00098{bottom:248.395500px;}
.y3d_c00098{bottom:248.575500px;}
.y3a_c00098{bottom:265.680000px;}
.y3c_c00098{bottom:265.860000px;}
.y36_c00098{bottom:297.630000px;}
.y37_c00098{bottom:318.150000px;}
.y38_c00098{bottom:318.330000px;}
.y2d_c00098{bottom:350.100000px;}
.y35_c00098{bottom:370.890000px;}
.y34_c00098{bottom:405.360000px;}
.y30_c00098{bottom:422.455680px;}
.y32_c00098{bottom:422.640000px;}
.y2f_c00098{bottom:439.650000px;}
.y28_c00098{bottom:471.600000px;}
.y2b_c00098{bottom:492.115500px;}
.y2c_c00098{bottom:492.300000px;}
.y2a_c00098{bottom:509.400000px;}
.y1d_c00098{bottom:541.350000px;}
.y22_c00098{bottom:561.856680px;}
.y21_c00098{bottom:579.141180px;}
.y20_c00098{bottom:596.425680px;}
.y1f_c00098{bottom:613.620000px;}
.y1a_c00098{bottom:645.570000px;}
.y1b_c00098{bottom:666.180000px;}
.y16_c00098{bottom:698.130000px;}
.y17_c00098{bottom:718.650000px;}
.y19_c00098{bottom:718.830000px;}
.y12_c00098{bottom:752.130000px;}
.y11_c00098{bottom:771.930000px;}
.y14_c00098{bottom:772.650000px;}
.y10_c00098{bottom:810.090000px;}
.yf_c00098{bottom:830.790000px;}
.ye_c00098{bottom:861.930000px;}
.yd_c00098{bottom:892.980000px;}
.yc_c00098{bottom:924.030000px;}
.yb_c00098{bottom:955.080000px;}
.ya_c00098{bottom:986.130000px;}
.y9_c00098{bottom:1017.180000px;}
.y8_c00098{bottom:1048.230000px;}
.y7_c00098{bottom:1079.280000px;}
.y6_c00098{bottom:1110.330000px;}
.y5_c00098{bottom:1131.030000px;}
.y4_c00098{bottom:1150.920000px;}
.y3_c00098{bottom:1166.404500px;}
.y2_c00098{bottom:1181.970000px;}
.y1_c00098{bottom:1197.450000px;}
.h9_c00098{height:51.750000px;}
.h7_c00098{height:51.751500px;}
.h3_c00098{height:52.971680px;}
.h2_c00098{height:52.998047px;}
.h8_c00098{height:59.004492px;}
.h6_c00098{height:60.589687px;}
.hb_c00098{height:69.031500px;}
.h4_c00098{height:70.664062px;}
.h5_c00098{height:72.562500px;}
.ha_c00098{height:103.500000px;}
.hd_c00098{height:120.778500px;}
.hc_c00098{height:120.780000px;}
.h0_c00098{height:1262.880000px;}
.h1_c00098{height:1263.000000px;}
.w4_c00098{width:133.831500px;}
.w5_c00098{width:252.091500px;}
.w2_c00098{width:252.631500px;}
.w3_c00098{width:252.720000px;}
.w6_c00098{width:253.350000px;}
.w0_c00098{width:893.070000px;}
.w1_c00098{width:893.250000px;}
.x0_c00098{left:0.000000px;}
.xe_c00098{left:6.930000px;}
.x7_c00098{left:27.270000px;}
.x14_c00098{left:42.120000px;}
.x12_c00098{left:78.120000px;}
.x9_c00098{left:90.630000px;}
.xc_c00098{left:97.470000px;}
.x13_c00098{left:111.870000px;}
.x3_c00098{left:127.620000px;}
.xd_c00098{left:128.700000px;}
.xf_c00098{left:135.630000px;}
.x15_c00098{left:144.450000px;}
.x4_c00098{left:149.040000px;}
.x6_c00098{left:264.780000px;}
.x11_c00098{left:271.710000px;}
.x8_c00098{left:283.770000px;}
.x5_c00098{left:399.330000px;}
.x2_c00098{left:425.160000px;}
.x1_c00098{left:446.580000px;}
.xa_c00098{left:519.660000px;}
.x10_c00098{left:526.140000px;}
.xb_c00098{left:530.820000px;}
.x16_c00098{left:747.540000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls18_c00098{letter-spacing:-0.374080pt;}
.lsf_c00098{letter-spacing:-0.320000pt;}
.lse_c00098{letter-spacing:-0.256000pt;}
.ls17_c00098{letter-spacing:-0.213760pt;}
.ls10_c00098{letter-spacing:-0.192000pt;}
.ls16_c00098{letter-spacing:-0.160320pt;}
.ls11_c00098{letter-spacing:-0.128000pt;}
.ls14_c00098{letter-spacing:-0.106880pt;}
.lsc_c00098{letter-spacing:-0.096000pt;}
.lsd_c00098{letter-spacing:-0.064000pt;}
.ls12_c00098{letter-spacing:-0.053440pt;}
.lsb_c00098{letter-spacing:0.000000pt;}
.ls9_c00098{letter-spacing:0.053440pt;}
.ls2_c00098{letter-spacing:0.064000pt;}
.ls4_c00098{letter-spacing:0.076800pt;}
.ls8_c00098{letter-spacing:0.080000pt;}
.ls15_c00098{letter-spacing:0.106880pt;}
.ls7_c00098{letter-spacing:0.112640pt;}
.ls6_c00098{letter-spacing:0.128000pt;}
.ls13_c00098{letter-spacing:0.160320pt;}
.lsa_c00098{letter-spacing:1.977280pt;}
.ls0_c00098{letter-spacing:3.520000pt;}
.ls5_c00098{letter-spacing:6.080000pt;}
.ls1_c00098{letter-spacing:13.760000pt;}
.ls3_c00098{letter-spacing:18.560000pt;}
.ws2_c00098{word-spacing:-16.064000pt;}
.ws0_c00098{word-spacing:-15.936000pt;}
.ws3_c00098{word-spacing:-15.872000pt;}
.ws1_c00098{word-spacing:-15.744000pt;}
.ws8_c00098{word-spacing:-13.520320pt;}
.ws5_c00098{word-spacing:-13.360000pt;}
.ws4_c00098{word-spacing:-13.306560pt;}
.ws6_c00098{word-spacing:-13.253120pt;}
.ws7_c00098{word-spacing:-13.146240pt;}
.ws1b_c00098{word-spacing:-0.374080pt;}
.ws1d_c00098{word-spacing:-0.267200pt;}
.ws21_c00098{word-spacing:-0.160320pt;}
.ws19_c00098{word-spacing:-0.128000pt;}
.ws32_c00098{word-spacing:-0.106880pt;}
.wsc_c00098{word-spacing:-0.064000pt;}
.ws20_c00098{word-spacing:-0.053440pt;}
.ws9_c00098{word-spacing:0.000000pt;}
.ws1c_c00098{word-spacing:0.053440pt;}
.ws22_c00098{word-spacing:0.106880pt;}
.wsb_c00098{word-spacing:0.144000pt;}
.ws1a_c00098{word-spacing:0.160320pt;}
.ws17_c00098{word-spacing:0.192000pt;}
.ws1f_c00098{word-spacing:0.213760pt;}
.wsa_c00098{word-spacing:0.240000pt;}
.ws37_c00098{word-spacing:0.374080pt;}
.ws18_c00098{word-spacing:0.576000pt;}
.ws24_c00098{word-spacing:0.908480pt;}
.ws36_c00098{word-spacing:1.816960pt;}
.ws35_c00098{word-spacing:2.030720pt;}
.ws27_c00098{word-spacing:2.137600pt;}
.wsd_c00098{word-spacing:3.520000pt;}
.ws26_c00098{word-spacing:3.740800pt;}
.ws31_c00098{word-spacing:4.275200pt;}
.ws16_c00098{word-spacing:6.016000pt;}
.ws15_c00098{word-spacing:6.080000pt;}
.ws38_c00098{word-spacing:7.160960pt;}
.ws13_c00098{word-spacing:7.616000pt;}
.ws14_c00098{word-spacing:7.680000pt;}
.ws3a_c00098{word-spacing:10.153600pt;}
.ws30_c00098{word-spacing:11.062080pt;}
.wsf_c00098{word-spacing:13.696000pt;}
.wse_c00098{word-spacing:13.760000pt;}
.ws2c_c00098{word-spacing:14.001280pt;}
.ws1e_c00098{word-spacing:14.642560pt;}
.ws2b_c00098{word-spacing:15.604480pt;}
.ws11_c00098{word-spacing:18.432000pt;}
.ws10_c00098{word-spacing:18.560000pt;}
.ws33_c00098{word-spacing:18.810880pt;}
.ws12_c00098{word-spacing:18.880000pt;}
.ws3d_c00098{word-spacing:21.055360pt;}
.ws3b_c00098{word-spacing:21.322560pt;}
.ws3c_c00098{word-spacing:21.589760pt;}
.ws23_c00098{word-spacing:29.338560pt;}
.ws28_c00098{word-spacing:32.224320pt;}
.ws2a_c00098{word-spacing:32.438080pt;}
.ws29_c00098{word-spacing:32.598400pt;}
.ws2d_c00098{word-spacing:42.698560pt;}
.ws34_c00098{word-spacing:45.370560pt;}
.ws2f_c00098{word-spacing:48.256320pt;}
.ws2e_c00098{word-spacing:51.409280pt;}
.ws25_c00098{word-spacing:53.386560pt;}
.ws39_c00098{word-spacing:62.631680pt;}
._1_c00098{margin-left:-0.940800pt;}
._0_c00098{width:1.084800pt;}
._4_c00098{width:1.977280pt;}
._2_c00098{width:3.392000pt;}
._3_c00098{width:13.955200pt;}
.fs0_c00098{font-size:48.000000pt;}
.fs2_c00098{font-size:53.440000pt;}
.fs1_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y15_c00098{bottom:2.880000pt;}
.y1c_c00098{bottom:2.960000pt;}
.y27_c00098{bottom:3.120000pt;}
.y26_c00098{bottom:18.400000pt;}
.y13_c00098{bottom:33.600000pt;}
.y18_c00098{bottom:33.760000pt;}
.y29_c00098{bottom:48.960000pt;}
.y25_c00098{bottom:49.120000pt;}
.y41_c00098{bottom:50.880000pt;}
.y24_c00098{bottom:64.400000pt;}
.y33_c00098{bottom:64.480000pt;}
.y1e_c00098{bottom:79.600000pt;}
.y23_c00098{bottom:79.760000pt;}
.y2e_c00098{bottom:94.960000pt;}
.y31_c00098{bottom:95.120000pt;}
.y40_c00098{bottom:119.354160pt;}
.y3f_c00098{bottom:142.320000pt;}
.y39_c00098{bottom:156.560000pt;}
.y3e_c00098{bottom:174.960000pt;}
.y3b_c00098{bottom:220.796000pt;}
.y3d_c00098{bottom:220.956000pt;}
.y3a_c00098{bottom:236.160000pt;}
.y3c_c00098{bottom:236.320000pt;}
.y36_c00098{bottom:264.560000pt;}
.y37_c00098{bottom:282.800000pt;}
.y38_c00098{bottom:282.960000pt;}
.y2d_c00098{bottom:311.200000pt;}
.y35_c00098{bottom:329.680000pt;}
.y34_c00098{bottom:360.320000pt;}
.y30_c00098{bottom:375.516160pt;}
.y32_c00098{bottom:375.680000pt;}
.y2f_c00098{bottom:390.800000pt;}
.y28_c00098{bottom:419.200000pt;}
.y2b_c00098{bottom:437.436000pt;}
.y2c_c00098{bottom:437.600000pt;}
.y2a_c00098{bottom:452.800000pt;}
.y1d_c00098{bottom:481.200000pt;}
.y22_c00098{bottom:499.428160pt;}
.y21_c00098{bottom:514.792160pt;}
.y20_c00098{bottom:530.156160pt;}
.y1f_c00098{bottom:545.440000pt;}
.y1a_c00098{bottom:573.840000pt;}
.y1b_c00098{bottom:592.160000pt;}
.y16_c00098{bottom:620.560000pt;}
.y17_c00098{bottom:638.800000pt;}
.y19_c00098{bottom:638.960000pt;}
.y12_c00098{bottom:668.560000pt;}
.y11_c00098{bottom:686.160000pt;}
.y14_c00098{bottom:686.800000pt;}
.y10_c00098{bottom:720.080000pt;}
.yf_c00098{bottom:738.480000pt;}
.ye_c00098{bottom:766.160000pt;}
.yd_c00098{bottom:793.760000pt;}
.yc_c00098{bottom:821.360000pt;}
.yb_c00098{bottom:848.960000pt;}
.ya_c00098{bottom:876.560000pt;}
.y9_c00098{bottom:904.160000pt;}
.y8_c00098{bottom:931.760000pt;}
.y7_c00098{bottom:959.360000pt;}
.y6_c00098{bottom:986.960000pt;}
.y5_c00098{bottom:1005.360000pt;}
.y4_c00098{bottom:1023.040000pt;}
.y3_c00098{bottom:1036.804000pt;}
.y2_c00098{bottom:1050.640000pt;}
.y1_c00098{bottom:1064.400000pt;}
.h9_c00098{height:46.000000pt;}
.h7_c00098{height:46.001333pt;}
.h3_c00098{height:47.085938pt;}
.h2_c00098{height:47.109375pt;}
.h8_c00098{height:52.448437pt;}
.h6_c00098{height:53.857500pt;}
.hb_c00098{height:61.361333pt;}
.h4_c00098{height:62.812500pt;}
.h5_c00098{height:64.500000pt;}
.ha_c00098{height:92.000000pt;}
.hd_c00098{height:107.358667pt;}
.hc_c00098{height:107.360000pt;}
.h0_c00098{height:1122.560000pt;}
.h1_c00098{height:1122.666667pt;}
.w4_c00098{width:118.961333pt;}
.w5_c00098{width:224.081333pt;}
.w2_c00098{width:224.561333pt;}
.w3_c00098{width:224.640000pt;}
.w6_c00098{width:225.200000pt;}
.w0_c00098{width:793.840000pt;}
.w1_c00098{width:794.000000pt;}
.x0_c00098{left:0.000000pt;}
.xe_c00098{left:6.160000pt;}
.x7_c00098{left:24.240000pt;}
.x14_c00098{left:37.440000pt;}
.x12_c00098{left:69.440000pt;}
.x9_c00098{left:80.560000pt;}
.xc_c00098{left:86.640000pt;}
.x13_c00098{left:99.440000pt;}
.x3_c00098{left:113.440000pt;}
.xd_c00098{left:114.400000pt;}
.xf_c00098{left:120.560000pt;}
.x15_c00098{left:128.400000pt;}
.x4_c00098{left:132.480000pt;}
.x6_c00098{left:235.360000pt;}
.x11_c00098{left:241.520000pt;}
.x8_c00098{left:252.240000pt;}
.x5_c00098{left:354.960000pt;}
.x2_c00098{left:377.920000pt;}
.x1_c00098{left:396.960000pt;}
.xa_c00098{left:461.920000pt;}
.x10_c00098{left:467.680000pt;}
.xb_c00098{left:471.840000pt;}
.x16_c00098{left:664.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_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_11d95079cc396be9d0ca66cb.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.284180;font-style:normal;font-weight:normal;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_5dadfef41953b9a535baa049.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;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_c00099;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00099{font-family:ff4_c00099;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00099{vertical-align:-61.938000px;}
.v3_c00099{vertical-align:-20.880000px;}
.v0_c00099{vertical-align:0.000000px;}
.v2_c00099{vertical-align:27.000000px;}
.lsf_c00099{letter-spacing:-0.360000px;}
.ls11_c00099{letter-spacing:-0.288000px;}
.lse_c00099{letter-spacing:-0.216000px;}
.ls13_c00099{letter-spacing:-0.180360px;}
.ls10_c00099{letter-spacing:-0.144000px;}
.ls15_c00099{letter-spacing:-0.120240px;}
.ls12_c00099{letter-spacing:-0.060120px;}
.lsc_c00099{letter-spacing:0.000000px;}
.lsb_c00099{letter-spacing:0.060120px;}
.ls3_c00099{letter-spacing:0.072000px;}
.lsa_c00099{letter-spacing:0.120240px;}
.ls6_c00099{letter-spacing:0.144000px;}
.ls14_c00099{letter-spacing:0.180360px;}
.lsd_c00099{letter-spacing:0.191520px;}
.ls7_c00099{letter-spacing:1.440000px;}
.ls8_c00099{letter-spacing:2.585160px;}
.ls9_c00099{letter-spacing:5.110200px;}
.ls5_c00099{letter-spacing:14.760000px;}
.ls1_c00099{letter-spacing:17.280000px;}
.ls2_c00099{letter-spacing:27.720000px;}
.ls4_c00099{letter-spacing:30.744000px;}
.ls0_c00099{letter-spacing:319.518000px;}
.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;}
}
.ws4_c00099{word-spacing:-18.144000px;}
.ws2_c00099{word-spacing:-18.072000px;}
.ws1_c00099{word-spacing:-18.000000px;}
.ws5_c00099{word-spacing:-17.856000px;}
.ws3_c00099{word-spacing:-17.640000px;}
.ws7_c00099{word-spacing:-14.969880px;}
.ws8_c00099{word-spacing:-14.909760px;}
.ws0_c00099{word-spacing:-12.161520px;}
.ws6_c00099{word-spacing:-9.720000px;}
.ws32_c00099{word-spacing:-0.420840px;}
.ws21_c00099{word-spacing:-0.360000px;}
.ws31_c00099{word-spacing:-0.180360px;}
.wsa_c00099{word-spacing:-0.162000px;}
.ws1e_c00099{word-spacing:-0.144000px;}
.ws37_c00099{word-spacing:-0.120240px;}
.ws12_c00099{word-spacing:-0.072000px;}
.ws9_c00099{word-spacing:0.000000px;}
.ws2e_c00099{word-spacing:0.180360px;}
.ws19_c00099{word-spacing:0.216000px;}
.ws25_c00099{word-spacing:0.288000px;}
.ws10_c00099{word-spacing:1.080000px;}
.wsf_c00099{word-spacing:1.368000px;}
.ws2c_c00099{word-spacing:1.440000px;}
.ws2d_c00099{word-spacing:2.645280px;}
.ws2f_c00099{word-spacing:2.765520px;}
.ws35_c00099{word-spacing:3.847680px;}
.ws2a_c00099{word-spacing:3.888000px;}
.ws2b_c00099{word-spacing:3.960000px;}
.ws36_c00099{word-spacing:4.148280px;}
.ws34_c00099{word-spacing:4.929840px;}
.ws20_c00099{word-spacing:4.968000px;}
.ws1f_c00099{word-spacing:5.040000px;}
.ws33_c00099{word-spacing:5.170320px;}
.ws11_c00099{word-spacing:5.328000px;}
.wsd_c00099{word-spacing:5.400000px;}
.ws30_c00099{word-spacing:7.094160px;}
.ws1c_c00099{word-spacing:14.616000px;}
.ws1d_c00099{word-spacing:14.760000px;}
.ws29_c00099{word-spacing:16.200000px;}
.wsb_c00099{word-spacing:16.848000px;}
.wsc_c00099{word-spacing:17.208000px;}
.ws26_c00099{word-spacing:19.008000px;}
.ws24_c00099{word-spacing:19.080000px;}
.ws28_c00099{word-spacing:19.296000px;}
.ws27_c00099{word-spacing:19.440000px;}
.ws18_c00099{word-spacing:19.800000px;}
.ws1b_c00099{word-spacing:21.528000px;}
.wse_c00099{word-spacing:21.888000px;}
.ws1a_c00099{word-spacing:21.960000px;}
.ws13_c00099{word-spacing:24.480000px;}
.ws14_c00099{word-spacing:27.288000px;}
.ws16_c00099{word-spacing:27.648000px;}
.ws15_c00099{word-spacing:27.720000px;}
.ws17_c00099{word-spacing:33.120000px;}
.ws22_c00099{word-spacing:38.808000px;}
.ws23_c00099{word-spacing:38.880000px;}
._1_c00099{margin-left:-1.182240px;}
._0_c00099{width:1.872000px;}
._3_c00099{width:3.054240px;}
._2_c00099{width:16.791840px;}
._6_c00099{width:19.542240px;}
._4_c00099{width:38.152800px;}
._5_c00099{width:39.182400px;}
.fc0_c00099{color:rgb(0,0,0);}
.fs3_c00099{font-size:38.880000px;}
.fs2_c00099{font-size:47.880000px;}
.fs0_c00099{font-size:54.000000px;}
.fs4_c00099{font-size:60.120000px;}
.fs1_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y29_c00099{bottom:57.240000px;}
.y28_c00099{bottom:115.020000px;}
.y27_c00099{bottom:126.985500px;}
.y26_c00099{bottom:149.490000px;}
.y25_c00099{bottom:161.545680px;}
.y24_c00099{bottom:183.960000px;}
.y23_c00099{bottom:196.011180px;}
.y22_c00099{bottom:213.295680px;}
.y21_c00099{bottom:235.710000px;}
.y2a_c00099{bottom:248.400000px;}
.y20_c00099{bottom:272.070000px;}
.y1f_c00099{bottom:303.120000px;}
.y1e_c00099{bottom:334.170000px;}
.y1d_c00099{bottom:365.220000px;}
.y1c_c00099{bottom:396.270000px;}
.y1b_c00099{bottom:427.320000px;}
.y1a_c00099{bottom:458.370000px;}
.y19_c00099{bottom:489.420000px;}
.y18_c00099{bottom:520.470000px;}
.y17_c00099{bottom:551.520000px;}
.y16_c00099{bottom:582.570000px;}
.y15_c00099{bottom:613.620000px;}
.y14_c00099{bottom:644.670000px;}
.y13_c00099{bottom:675.720000px;}
.y12_c00099{bottom:706.770000px;}
.y11_c00099{bottom:737.820000px;}
.y10_c00099{bottom:768.870000px;}
.yf_c00099{bottom:799.920000px;}
.ye_c00099{bottom:830.970000px;}
.yd_c00099{bottom:861.930000px;}
.yc_c00099{bottom:892.980000px;}
.yb_c00099{bottom:924.030000px;}
.ya_c00099{bottom:955.080000px;}
.y9_c00099{bottom:986.130000px;}
.y8_c00099{bottom:1017.180000px;}
.y7_c00099{bottom:1048.230000px;}
.y6_c00099{bottom:1079.280000px;}
.y5_c00099{bottom:1110.330000px;}
.y4_c00099{bottom:1131.030000px;}
.y3_c00099{bottom:1150.915500px;}
.y2_c00099{bottom:1166.400000px;}
.y1_c00099{bottom:1197.450000px;}
.h6_c00099{height:38.158594px;}
.h2_c00099{height:52.998047px;}
.h7_c00099{height:59.004492px;}
.h3_c00099{height:70.664062px;}
.h4_c00099{height:73.991602px;}
.h5_c00099{height:75.093750px;}
.h0_c00099{height:1262.880000px;}
.h1_c00099{height:1263.000000px;}
.w0_c00099{width:893.070000px;}
.w1_c00099{width:893.250000px;}
.x0_c00099{left:0.000000px;}
.x2_c00099{left:127.620000px;}
.x3_c00099{left:154.620000px;}
.x4_c00099{left:181.620000px;}
.x1_c00099{left:446.580000px;}
@media print{
.v1_c00099{vertical-align:-55.056000pt;}
.v3_c00099{vertical-align:-18.560000pt;}
.v0_c00099{vertical-align:0.000000pt;}
.v2_c00099{vertical-align:24.000000pt;}
.lsf_c00099{letter-spacing:-0.320000pt;}
.ls11_c00099{letter-spacing:-0.256000pt;}
.lse_c00099{letter-spacing:-0.192000pt;}
.ls13_c00099{letter-spacing:-0.160320pt;}
.ls10_c00099{letter-spacing:-0.128000pt;}
.ls15_c00099{letter-spacing:-0.106880pt;}
.ls12_c00099{letter-spacing:-0.053440pt;}
.lsc_c00099{letter-spacing:0.000000pt;}
.lsb_c00099{letter-spacing:0.053440pt;}
.ls3_c00099{letter-spacing:0.064000pt;}
.lsa_c00099{letter-spacing:0.106880pt;}
.ls6_c00099{letter-spacing:0.128000pt;}
.ls14_c00099{letter-spacing:0.160320pt;}
.lsd_c00099{letter-spacing:0.170240pt;}
.ls7_c00099{letter-spacing:1.280000pt;}
.ls8_c00099{letter-spacing:2.297920pt;}
.ls9_c00099{letter-spacing:4.542400pt;}
.ls5_c00099{letter-spacing:13.120000pt;}
.ls1_c00099{letter-spacing:15.360000pt;}
.ls2_c00099{letter-spacing:24.640000pt;}
.ls4_c00099{letter-spacing:27.328000pt;}
.ls0_c00099{letter-spacing:284.016000pt;}
.ws4_c00099{word-spacing:-16.128000pt;}
.ws2_c00099{word-spacing:-16.064000pt;}
.ws1_c00099{word-spacing:-16.000000pt;}
.ws5_c00099{word-spacing:-15.872000pt;}
.ws3_c00099{word-spacing:-15.680000pt;}
.ws7_c00099{word-spacing:-13.306560pt;}
.ws8_c00099{word-spacing:-13.253120pt;}
.ws0_c00099{word-spacing:-10.810240pt;}
.ws6_c00099{word-spacing:-8.640000pt;}
.ws32_c00099{word-spacing:-0.374080pt;}
.ws21_c00099{word-spacing:-0.320000pt;}
.ws31_c00099{word-spacing:-0.160320pt;}
.wsa_c00099{word-spacing:-0.144000pt;}
.ws1e_c00099{word-spacing:-0.128000pt;}
.ws37_c00099{word-spacing:-0.106880pt;}
.ws12_c00099{word-spacing:-0.064000pt;}
.ws9_c00099{word-spacing:0.000000pt;}
.ws2e_c00099{word-spacing:0.160320pt;}
.ws19_c00099{word-spacing:0.192000pt;}
.ws25_c00099{word-spacing:0.256000pt;}
.ws10_c00099{word-spacing:0.960000pt;}
.wsf_c00099{word-spacing:1.216000pt;}
.ws2c_c00099{word-spacing:1.280000pt;}
.ws2d_c00099{word-spacing:2.351360pt;}
.ws2f_c00099{word-spacing:2.458240pt;}
.ws35_c00099{word-spacing:3.420160pt;}
.ws2a_c00099{word-spacing:3.456000pt;}
.ws2b_c00099{word-spacing:3.520000pt;}
.ws36_c00099{word-spacing:3.687360pt;}
.ws34_c00099{word-spacing:4.382080pt;}
.ws20_c00099{word-spacing:4.416000pt;}
.ws1f_c00099{word-spacing:4.480000pt;}
.ws33_c00099{word-spacing:4.595840pt;}
.ws11_c00099{word-spacing:4.736000pt;}
.wsd_c00099{word-spacing:4.800000pt;}
.ws30_c00099{word-spacing:6.305920pt;}
.ws1c_c00099{word-spacing:12.992000pt;}
.ws1d_c00099{word-spacing:13.120000pt;}
.ws29_c00099{word-spacing:14.400000pt;}
.wsb_c00099{word-spacing:14.976000pt;}
.wsc_c00099{word-spacing:15.296000pt;}
.ws26_c00099{word-spacing:16.896000pt;}
.ws24_c00099{word-spacing:16.960000pt;}
.ws28_c00099{word-spacing:17.152000pt;}
.ws27_c00099{word-spacing:17.280000pt;}
.ws18_c00099{word-spacing:17.600000pt;}
.ws1b_c00099{word-spacing:19.136000pt;}
.wse_c00099{word-spacing:19.456000pt;}
.ws1a_c00099{word-spacing:19.520000pt;}
.ws13_c00099{word-spacing:21.760000pt;}
.ws14_c00099{word-spacing:24.256000pt;}
.ws16_c00099{word-spacing:24.576000pt;}
.ws15_c00099{word-spacing:24.640000pt;}
.ws17_c00099{word-spacing:29.440000pt;}
.ws22_c00099{word-spacing:34.496000pt;}
.ws23_c00099{word-spacing:34.560000pt;}
._1_c00099{margin-left:-1.050880pt;}
._0_c00099{width:1.664000pt;}
._3_c00099{width:2.714880pt;}
._2_c00099{width:14.926080pt;}
._6_c00099{width:17.370880pt;}
._4_c00099{width:33.913600pt;}
._5_c00099{width:34.828800pt;}
.fs3_c00099{font-size:34.560000pt;}
.fs2_c00099{font-size:42.560000pt;}
.fs0_c00099{font-size:48.000000pt;}
.fs4_c00099{font-size:53.440000pt;}
.fs1_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y29_c00099{bottom:50.880000pt;}
.y28_c00099{bottom:102.240000pt;}
.y27_c00099{bottom:112.876000pt;}
.y26_c00099{bottom:132.880000pt;}
.y25_c00099{bottom:143.596160pt;}
.y24_c00099{bottom:163.520000pt;}
.y23_c00099{bottom:174.232160pt;}
.y22_c00099{bottom:189.596160pt;}
.y21_c00099{bottom:209.520000pt;}
.y2a_c00099{bottom:220.800000pt;}
.y20_c00099{bottom:241.840000pt;}
.y1f_c00099{bottom:269.440000pt;}
.y1e_c00099{bottom:297.040000pt;}
.y1d_c00099{bottom:324.640000pt;}
.y1c_c00099{bottom:352.240000pt;}
.y1b_c00099{bottom:379.840000pt;}
.y1a_c00099{bottom:407.440000pt;}
.y19_c00099{bottom:435.040000pt;}
.y18_c00099{bottom:462.640000pt;}
.y17_c00099{bottom:490.240000pt;}
.y16_c00099{bottom:517.840000pt;}
.y15_c00099{bottom:545.440000pt;}
.y14_c00099{bottom:573.040000pt;}
.y13_c00099{bottom:600.640000pt;}
.y12_c00099{bottom:628.240000pt;}
.y11_c00099{bottom:655.840000pt;}
.y10_c00099{bottom:683.440000pt;}
.yf_c00099{bottom:711.040000pt;}
.ye_c00099{bottom:738.640000pt;}
.yd_c00099{bottom:766.160000pt;}
.yc_c00099{bottom:793.760000pt;}
.yb_c00099{bottom:821.360000pt;}
.ya_c00099{bottom:848.960000pt;}
.y9_c00099{bottom:876.560000pt;}
.y8_c00099{bottom:904.160000pt;}
.y7_c00099{bottom:931.760000pt;}
.y6_c00099{bottom:959.360000pt;}
.y5_c00099{bottom:986.960000pt;}
.y4_c00099{bottom:1005.360000pt;}
.y3_c00099{bottom:1023.036000pt;}
.y2_c00099{bottom:1036.800000pt;}
.y1_c00099{bottom:1064.400000pt;}
.h6_c00099{height:33.918750pt;}
.h2_c00099{height:47.109375pt;}
.h7_c00099{height:52.448437pt;}
.h3_c00099{height:62.812500pt;}
.h4_c00099{height:65.770312pt;}
.h5_c00099{height:66.750000pt;}
.h0_c00099{height:1122.560000pt;}
.h1_c00099{height:1122.666667pt;}
.w0_c00099{width:793.840000pt;}
.w1_c00099{width:794.000000pt;}
.x0_c00099{left:0.000000pt;}
.x2_c00099{left:113.440000pt;}
.x3_c00099{left:137.440000pt;}
.x4_c00099{left:161.440000pt;}
.x1_c00099{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb84f86c1588f30ec7d8f669.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_fd7a2eabde3dbaf243a854ea.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00100{vertical-align:-20.880000px;}
.v0_c00100{vertical-align:0.000000px;}
.v1_c00100{vertical-align:24.120000px;}
.v2_c00100{vertical-align:27.000000px;}
.ls17_c00100{letter-spacing:-0.576000px;}
.ls18_c00100{letter-spacing:-0.432000px;}
.ls15_c00100{letter-spacing:-0.360000px;}
.ls19_c00100{letter-spacing:-0.216000px;}
.ls16_c00100{letter-spacing:-0.144000px;}
.ls13_c00100{letter-spacing:-0.108000px;}
.ls1a_c00100{letter-spacing:-0.060120px;}
.ls12_c00100{letter-spacing:0.000000px;}
.ls1_c00100{letter-spacing:0.072000px;}
.ls10_c00100{letter-spacing:0.120240px;}
.ls2_c00100{letter-spacing:0.144000px;}
.ls1b_c00100{letter-spacing:0.180360px;}
.ls14_c00100{letter-spacing:0.191520px;}
.lsb_c00100{letter-spacing:2.520000px;}
.ls4_c00100{letter-spacing:3.600000px;}
.lsa_c00100{letter-spacing:3.607200px;}
.ls3_c00100{letter-spacing:4.320000px;}
.lse_c00100{letter-spacing:4.680000px;}
.ls7_c00100{letter-spacing:5.400000px;}
.ls8_c00100{letter-spacing:5.407200px;}
.ls6_c00100{letter-spacing:6.120000px;}
.ls5_c00100{letter-spacing:6.840000px;}
.ls11_c00100{letter-spacing:7.995960px;}
.lsf_c00100{letter-spacing:10.080000px;}
.lsc_c00100{letter-spacing:12.960000px;}
.ls9_c00100{letter-spacing:15.120000px;}
.ls0_c00100{letter-spacing:17.632800px;}
.lsd_c00100{letter-spacing:20.880000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00100{word-spacing:-18.072000px;}
.ws1_c00100{word-spacing:-18.000000px;}
.ws3_c00100{word-spacing:-17.856000px;}
.ws5_c00100{word-spacing:-17.784000px;}
.ws4_c00100{word-spacing:-17.568000px;}
.ws8_c00100{word-spacing:-15.210360px;}
.ws7_c00100{word-spacing:-15.150240px;}
.ws0_c00100{word-spacing:-12.161520px;}
.ws6_c00100{word-spacing:-9.720000px;}
.ws30_c00100{word-spacing:-0.432000px;}
.wsc_c00100{word-spacing:-0.072000px;}
.ws36_c00100{word-spacing:-0.060120px;}
.ws9_c00100{word-spacing:0.000000px;}
.ws35_c00100{word-spacing:0.060120px;}
.wsb_c00100{word-spacing:0.162000px;}
.wsa_c00100{word-spacing:0.270000px;}
.ws1b_c00100{word-spacing:0.360000px;}
.ws17_c00100{word-spacing:0.648000px;}
.ws31_c00100{word-spacing:0.720000px;}
.ws34_c00100{word-spacing:1.368000px;}
.ws2f_c00100{word-spacing:2.088000px;}
.ws27_c00100{word-spacing:2.448000px;}
.ws26_c00100{word-spacing:2.520000px;}
.ws28_c00100{word-spacing:3.096000px;}
.ws24_c00100{word-spacing:3.168000px;}
.ws25_c00100{word-spacing:3.240000px;}
.ws16_c00100{word-spacing:3.528000px;}
.ws15_c00100{word-spacing:3.600000px;}
.ws12_c00100{word-spacing:4.248000px;}
.ws11_c00100{word-spacing:4.320000px;}
.ws2d_c00100{word-spacing:4.608000px;}
.ws2e_c00100{word-spacing:4.680000px;}
.ws21_c00100{word-spacing:5.328000px;}
.ws20_c00100{word-spacing:5.400000px;}
.wsf_c00100{word-spacing:5.688000px;}
.ws10_c00100{word-spacing:5.760000px;}
.ws1d_c00100{word-spacing:5.976000px;}
.ws1c_c00100{word-spacing:6.120000px;}
.ws18_c00100{word-spacing:6.408000px;}
.ws1a_c00100{word-spacing:6.768000px;}
.ws19_c00100{word-spacing:6.840000px;}
.ws38_c00100{word-spacing:7.815600px;}
.ws37_c00100{word-spacing:8.056080px;}
.ws32_c00100{word-spacing:10.008000px;}
.ws33_c00100{word-spacing:10.080000px;}
.ws14_c00100{word-spacing:10.368000px;}
.ws13_c00100{word-spacing:10.440000px;}
.ws29_c00100{word-spacing:12.888000px;}
.ws2a_c00100{word-spacing:12.960000px;}
.ws22_c00100{word-spacing:15.048000px;}
.ws23_c00100{word-spacing:15.120000px;}
.ws1e_c00100{word-spacing:16.848000px;}
.ws1f_c00100{word-spacing:17.208000px;}
.wsd_c00100{word-spacing:17.568000px;}
.wse_c00100{word-spacing:17.640000px;}
.ws2c_c00100{word-spacing:20.736000px;}
.ws2b_c00100{word-spacing:20.880000px;}
.ws39_c00100{word-spacing:24.408720px;}
.ws3a_c00100{word-spacing:24.649200px;}
._1_c00100{margin-left:-1.058400px;}
._0_c00100{width:1.220400px;}
._2_c00100{width:2.952000px;}
._3_c00100{width:5.126400px;}
._7_c00100{width:7.150320px;}
._4_c00100{width:9.864000px;}
._5_c00100{width:14.904000px;}
._6_c00100{width:20.160000px;}
.fc0_c00100{color:rgb(0,0,0);}
.fs3_c00100{font-size:38.880000px;}
.fs2_c00100{font-size:47.880000px;}
.fs0_c00100{font-size:54.000000px;}
.fs4_c00100{font-size:60.120000px;}
.fs1_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y28_c00100{bottom:57.240000px;}
.y27_c00100{bottom:109.795680px;}
.y26_c00100{bottom:132.210000px;}
.y25_c00100{bottom:144.265500px;}
.y24_c00100{bottom:166.770000px;}
.y23_c00100{bottom:183.960000px;}
.y29_c00100{bottom:196.650000px;}
.y22_c00100{bottom:241.020000px;}
.y21_c00100{bottom:272.070000px;}
.y20_c00100{bottom:303.120000px;}
.y1f_c00100{bottom:334.170000px;}
.y1e_c00100{bottom:365.220000px;}
.y1d_c00100{bottom:396.270000px;}
.y1c_c00100{bottom:427.320000px;}
.y1b_c00100{bottom:458.370000px;}
.y1a_c00100{bottom:489.420000px;}
.y19_c00100{bottom:520.470000px;}
.y18_c00100{bottom:551.520000px;}
.y17_c00100{bottom:582.570000px;}
.y16_c00100{bottom:613.620000px;}
.y15_c00100{bottom:644.670000px;}
.y14_c00100{bottom:675.720000px;}
.y13_c00100{bottom:706.770000px;}
.y12_c00100{bottom:737.820000px;}
.y11_c00100{bottom:768.870000px;}
.y10_c00100{bottom:799.920000px;}
.yf_c00100{bottom:830.970000px;}
.ye_c00100{bottom:861.930000px;}
.yd_c00100{bottom:892.980000px;}
.yc_c00100{bottom:924.030000px;}
.yb_c00100{bottom:955.080000px;}
.ya_c00100{bottom:986.130000px;}
.y9_c00100{bottom:1017.180000px;}
.y8_c00100{bottom:1048.230000px;}
.y7_c00100{bottom:1079.280000px;}
.y6_c00100{bottom:1110.150000px;}
.y5_c00100{bottom:1131.030000px;}
.y4_c00100{bottom:1150.920000px;}
.y3_c00100{bottom:1166.404500px;}
.y2_c00100{bottom:1181.970000px;}
.y1_c00100{bottom:1197.450000px;}
.h7_c00100{height:38.158594px;}
.h3_c00100{height:52.971680px;}
.h2_c00100{height:52.998047px;}
.h8_c00100{height:59.004492px;}
.h4_c00100{height:70.664062px;}
.h5_c00100{height:72.562500px;}
.h6_c00100{height:73.991602px;}
.h0_c00100{height:1262.880000px;}
.h1_c00100{height:1263.000000px;}
.w0_c00100{width:893.070000px;}
.w1_c00100{width:893.250000px;}
.x0_c00100{left:0.000000px;}
.x3_c00100{left:127.620000px;}
.x2_c00100{left:425.160000px;}
.x1_c00100{left:446.580000px;}
.x4_c00100{left:747.540000px;}
@media print{
.v3_c00100{vertical-align:-18.560000pt;}
.v0_c00100{vertical-align:0.000000pt;}
.v1_c00100{vertical-align:21.440000pt;}
.v2_c00100{vertical-align:24.000000pt;}
.ls17_c00100{letter-spacing:-0.512000pt;}
.ls18_c00100{letter-spacing:-0.384000pt;}
.ls15_c00100{letter-spacing:-0.320000pt;}
.ls19_c00100{letter-spacing:-0.192000pt;}
.ls16_c00100{letter-spacing:-0.128000pt;}
.ls13_c00100{letter-spacing:-0.096000pt;}
.ls1a_c00100{letter-spacing:-0.053440pt;}
.ls12_c00100{letter-spacing:0.000000pt;}
.ls1_c00100{letter-spacing:0.064000pt;}
.ls10_c00100{letter-spacing:0.106880pt;}
.ls2_c00100{letter-spacing:0.128000pt;}
.ls1b_c00100{letter-spacing:0.160320pt;}
.ls14_c00100{letter-spacing:0.170240pt;}
.lsb_c00100{letter-spacing:2.240000pt;}
.ls4_c00100{letter-spacing:3.200000pt;}
.lsa_c00100{letter-spacing:3.206400pt;}
.ls3_c00100{letter-spacing:3.840000pt;}
.lse_c00100{letter-spacing:4.160000pt;}
.ls7_c00100{letter-spacing:4.800000pt;}
.ls8_c00100{letter-spacing:4.806400pt;}
.ls6_c00100{letter-spacing:5.440000pt;}
.ls5_c00100{letter-spacing:6.080000pt;}
.ls11_c00100{letter-spacing:7.107520pt;}
.lsf_c00100{letter-spacing:8.960000pt;}
.lsc_c00100{letter-spacing:11.520000pt;}
.ls9_c00100{letter-spacing:13.440000pt;}
.ls0_c00100{letter-spacing:15.673600pt;}
.lsd_c00100{letter-spacing:18.560000pt;}
.ws2_c00100{word-spacing:-16.064000pt;}
.ws1_c00100{word-spacing:-16.000000pt;}
.ws3_c00100{word-spacing:-15.872000pt;}
.ws5_c00100{word-spacing:-15.808000pt;}
.ws4_c00100{word-spacing:-15.616000pt;}
.ws8_c00100{word-spacing:-13.520320pt;}
.ws7_c00100{word-spacing:-13.466880pt;}
.ws0_c00100{word-spacing:-10.810240pt;}
.ws6_c00100{word-spacing:-8.640000pt;}
.ws30_c00100{word-spacing:-0.384000pt;}
.wsc_c00100{word-spacing:-0.064000pt;}
.ws36_c00100{word-spacing:-0.053440pt;}
.ws9_c00100{word-spacing:0.000000pt;}
.ws35_c00100{word-spacing:0.053440pt;}
.wsb_c00100{word-spacing:0.144000pt;}
.wsa_c00100{word-spacing:0.240000pt;}
.ws1b_c00100{word-spacing:0.320000pt;}
.ws17_c00100{word-spacing:0.576000pt;}
.ws31_c00100{word-spacing:0.640000pt;}
.ws34_c00100{word-spacing:1.216000pt;}
.ws2f_c00100{word-spacing:1.856000pt;}
.ws27_c00100{word-spacing:2.176000pt;}
.ws26_c00100{word-spacing:2.240000pt;}
.ws28_c00100{word-spacing:2.752000pt;}
.ws24_c00100{word-spacing:2.816000pt;}
.ws25_c00100{word-spacing:2.880000pt;}
.ws16_c00100{word-spacing:3.136000pt;}
.ws15_c00100{word-spacing:3.200000pt;}
.ws12_c00100{word-spacing:3.776000pt;}
.ws11_c00100{word-spacing:3.840000pt;}
.ws2d_c00100{word-spacing:4.096000pt;}
.ws2e_c00100{word-spacing:4.160000pt;}
.ws21_c00100{word-spacing:4.736000pt;}
.ws20_c00100{word-spacing:4.800000pt;}
.wsf_c00100{word-spacing:5.056000pt;}
.ws10_c00100{word-spacing:5.120000pt;}
.ws1d_c00100{word-spacing:5.312000pt;}
.ws1c_c00100{word-spacing:5.440000pt;}
.ws18_c00100{word-spacing:5.696000pt;}
.ws1a_c00100{word-spacing:6.016000pt;}
.ws19_c00100{word-spacing:6.080000pt;}
.ws38_c00100{word-spacing:6.947200pt;}
.ws37_c00100{word-spacing:7.160960pt;}
.ws32_c00100{word-spacing:8.896000pt;}
.ws33_c00100{word-spacing:8.960000pt;}
.ws14_c00100{word-spacing:9.216000pt;}
.ws13_c00100{word-spacing:9.280000pt;}
.ws29_c00100{word-spacing:11.456000pt;}
.ws2a_c00100{word-spacing:11.520000pt;}
.ws22_c00100{word-spacing:13.376000pt;}
.ws23_c00100{word-spacing:13.440000pt;}
.ws1e_c00100{word-spacing:14.976000pt;}
.ws1f_c00100{word-spacing:15.296000pt;}
.wsd_c00100{word-spacing:15.616000pt;}
.wse_c00100{word-spacing:15.680000pt;}
.ws2c_c00100{word-spacing:18.432000pt;}
.ws2b_c00100{word-spacing:18.560000pt;}
.ws39_c00100{word-spacing:21.696640pt;}
.ws3a_c00100{word-spacing:21.910400pt;}
._1_c00100{margin-left:-0.940800pt;}
._0_c00100{width:1.084800pt;}
._2_c00100{width:2.624000pt;}
._3_c00100{width:4.556800pt;}
._7_c00100{width:6.355840pt;}
._4_c00100{width:8.768000pt;}
._5_c00100{width:13.248000pt;}
._6_c00100{width:17.920000pt;}
.fs3_c00100{font-size:34.560000pt;}
.fs2_c00100{font-size:42.560000pt;}
.fs0_c00100{font-size:48.000000pt;}
.fs4_c00100{font-size:53.440000pt;}
.fs1_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y28_c00100{bottom:50.880000pt;}
.y27_c00100{bottom:97.596160pt;}
.y26_c00100{bottom:117.520000pt;}
.y25_c00100{bottom:128.236000pt;}
.y24_c00100{bottom:148.240000pt;}
.y23_c00100{bottom:163.520000pt;}
.y29_c00100{bottom:174.800000pt;}
.y22_c00100{bottom:214.240000pt;}
.y21_c00100{bottom:241.840000pt;}
.y20_c00100{bottom:269.440000pt;}
.y1f_c00100{bottom:297.040000pt;}
.y1e_c00100{bottom:324.640000pt;}
.y1d_c00100{bottom:352.240000pt;}
.y1c_c00100{bottom:379.840000pt;}
.y1b_c00100{bottom:407.440000pt;}
.y1a_c00100{bottom:435.040000pt;}
.y19_c00100{bottom:462.640000pt;}
.y18_c00100{bottom:490.240000pt;}
.y17_c00100{bottom:517.840000pt;}
.y16_c00100{bottom:545.440000pt;}
.y15_c00100{bottom:573.040000pt;}
.y14_c00100{bottom:600.640000pt;}
.y13_c00100{bottom:628.240000pt;}
.y12_c00100{bottom:655.840000pt;}
.y11_c00100{bottom:683.440000pt;}
.y10_c00100{bottom:711.040000pt;}
.yf_c00100{bottom:738.640000pt;}
.ye_c00100{bottom:766.160000pt;}
.yd_c00100{bottom:793.760000pt;}
.yc_c00100{bottom:821.360000pt;}
.yb_c00100{bottom:848.960000pt;}
.ya_c00100{bottom:876.560000pt;}
.y9_c00100{bottom:904.160000pt;}
.y8_c00100{bottom:931.760000pt;}
.y7_c00100{bottom:959.360000pt;}
.y6_c00100{bottom:986.800000pt;}
.y5_c00100{bottom:1005.360000pt;}
.y4_c00100{bottom:1023.040000pt;}
.y3_c00100{bottom:1036.804000pt;}
.y2_c00100{bottom:1050.640000pt;}
.y1_c00100{bottom:1064.400000pt;}
.h7_c00100{height:33.918750pt;}
.h3_c00100{height:47.085938pt;}
.h2_c00100{height:47.109375pt;}
.h8_c00100{height:52.448437pt;}
.h4_c00100{height:62.812500pt;}
.h5_c00100{height:64.500000pt;}
.h6_c00100{height:65.770312pt;}
.h0_c00100{height:1122.560000pt;}
.h1_c00100{height:1122.666667pt;}
.w0_c00100{width:793.840000pt;}
.w1_c00100{width:794.000000pt;}
.x0_c00100{left:0.000000pt;}
.x3_c00100{left:113.440000pt;}
.x2_c00100{left:377.920000pt;}
.x1_c00100{left:396.960000pt;}
.x4_c00100{left:664.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_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_c068ab7d48327de8dff96a70.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_d2c282513889ca4f3ef2c657.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;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_c00101;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00101;src:url('chunks/assets/font_e0508d279c3faf14b19614a1.woff2')format("woff");}.ff5_c00101{font-family:ff5_c00101;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.286827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286827,0.000000,0.000000,0.250000,0,0);}
.v1_c00101{vertical-align:-61.938000px;}
.v0_c00101{vertical-align:0.000000px;}
.ls12_c00101{letter-spacing:-3.079296px;}
.lse_c00101{letter-spacing:-1.642291px;}
.lsd_c00101{letter-spacing:-1.437005px;}
.ls11_c00101{letter-spacing:-1.197504px;}
.ls10_c00101{letter-spacing:-0.684288px;}
.ls9_c00101{letter-spacing:-0.576000px;}
.lsc_c00101{letter-spacing:-0.216000px;}
.lsf_c00101{letter-spacing:-0.205286px;}
.lsb_c00101{letter-spacing:-0.144000px;}
.lsa_c00101{letter-spacing:-0.072000px;}
.ls8_c00101{letter-spacing:0.000000px;}
.ls4_c00101{letter-spacing:0.072000px;}
.ls6_c00101{letter-spacing:0.079200px;}
.ls2_c00101{letter-spacing:0.144000px;}
.ls7_c00101{letter-spacing:0.205286px;}
.ls3_c00101{letter-spacing:0.720000px;}
.ls1_c00101{letter-spacing:6.840000px;}
.ls5_c00101{letter-spacing:30.744000px;}
.ls0_c00101{letter-spacing:319.518000px;}
.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;}
}
.ws0_c00101{word-spacing:-18.144000px;}
.ws2_c00101{word-spacing:-17.928000px;}
.ws1_c00101{word-spacing:-17.856000px;}
.ws7_c00101{word-spacing:-8.758886px;}
.ws6_c00101{word-spacing:-7.356096px;}
.ws4_c00101{word-spacing:-7.116595px;}
.ws5_c00101{word-spacing:-6.911309px;}
.ws17_c00101{word-spacing:-0.504000px;}
.ws12_c00101{word-spacing:-0.360000px;}
.ws9_c00101{word-spacing:-0.162000px;}
.ws11_c00101{word-spacing:-0.144000px;}
.wsc_c00101{word-spacing:-0.072000px;}
.ws8_c00101{word-spacing:0.000000px;}
.ws13_c00101{word-spacing:0.072000px;}
.ws14_c00101{word-spacing:0.144000px;}
.ws1a_c00101{word-spacing:0.205286px;}
.wse_c00101{word-spacing:0.216000px;}
.wsd_c00101{word-spacing:0.648000px;}
.ws1b_c00101{word-spacing:0.684288px;}
.ws10_c00101{word-spacing:0.720000px;}
.wsf_c00101{word-spacing:1.296000px;}
.ws1c_c00101{word-spacing:3.079296px;}
.ws18_c00101{word-spacing:3.528000px;}
.wsa_c00101{word-spacing:6.768000px;}
.wsb_c00101{word-spacing:6.840000px;}
.ws15_c00101{word-spacing:9.360000px;}
.ws16_c00101{word-spacing:27.720000px;}
.ws19_c00101{word-spacing:34.128000px;}
.ws3_c00101{word-spacing:104.781600px;}
._9_c00101{margin-left:-3.282336px;}
._a_c00101{margin-left:-2.101939px;}
._1_c00101{margin-left:-1.080000px;}
._2_c00101{width:1.008000px;}
._7_c00101{width:2.343686px;}
._8_c00101{width:3.541190px;}
._0_c00101{width:7.056000px;}
._3_c00101{width:9.648000px;}
._4_c00101{width:28.008000px;}
._5_c00101{width:489.710707px;}
._6_c00101{width:686.443507px;}
.fc0_c00101{color:rgb(0,0,0);}
.fs2_c00101{font-size:34.214400px;}
.fs0_c00101{font-size:54.000000px;}
.fs1_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y2f_c00101{bottom:2.138250px;}
.y36_c00101{bottom:2.138550px;}
.y3a_c00101{bottom:2.139300px;}
.y32_c00101{bottom:2.143727px;}
.y34_c00101{bottom:2.143877px;}
.y2d_c00101{bottom:2.674050px;}
.y29_c00101{bottom:2.677427px;}
.y2b_c00101{bottom:8.019750px;}
.y1d_c00101{bottom:9.087300px;}
.y24_c00101{bottom:9.087900px;}
.y38_c00101{bottom:9.088200px;}
.y23_c00101{bottom:9.088350px;}
.y21_c00101{bottom:9.622650px;}
.y31_c00101{bottom:13.366050px;}
.y33_c00101{bottom:13.366200px;}
.y28_c00101{bottom:13.899750px;}
.y20_c00101{bottom:20.844973px;}
.y1f_c00101{bottom:32.075850px;}
.y3b_c00101{bottom:57.240000px;}
.y19_c00101{bottom:120.240000px;}
.y18_c00101{bottom:151.290000px;}
.y17_c00101{bottom:182.340000px;}
.y16_c00101{bottom:213.390000px;}
.y15_c00101{bottom:240.390000px;}
.y1a_c00101{bottom:240.838500px;}
.y2c_c00101{bottom:241.372500px;}
.y39_c00101{bottom:263.826000px;}
.y2a_c00101{bottom:286.279500px;}
.y2e_c00101{bottom:319.960500px;}
.y1c_c00101{bottom:341.880000px;}
.y1b_c00101{bottom:356.046450px;}
.y25_c00101{bottom:378.232500px;}
.y1e_c00101{bottom:414.051000px;}
.y22_c00101{bottom:450.403500px;}
.y27_c00101{bottom:486.222000px;}
.y26_c00101{bottom:522.040500px;}
.y37_c00101{bottom:557.859000px;}
.y30_c00101{bottom:617.199000px;}
.y35_c00101{bottom:628.426500px;}
.y14_c00101{bottom:654.840000px;}
.y13_c00101{bottom:675.540000px;}
.y12_c00101{bottom:706.770000px;}
.y11_c00101{bottom:737.820000px;}
.y10_c00101{bottom:768.870000px;}
.yf_c00101{bottom:799.920000px;}
.ye_c00101{bottom:830.970000px;}
.yd_c00101{bottom:861.930000px;}
.yc_c00101{bottom:892.980000px;}
.yb_c00101{bottom:924.030000px;}
.ya_c00101{bottom:955.080000px;}
.y9_c00101{bottom:986.130000px;}
.y8_c00101{bottom:1017.180000px;}
.y7_c00101{bottom:1048.230000px;}
.y6_c00101{bottom:1079.280000px;}
.y5_c00101{bottom:1110.330000px;}
.y4_c00101{bottom:1131.030000px;}
.y3_c00101{bottom:1150.915500px;}
.y2_c00101{bottom:1166.400000px;}
.y1_c00101{bottom:1197.450000px;}
.hd_c00101{height:10.692000px;}
.he_c00101{height:21.384000px;}
.hf_c00101{height:21.918000px;}
.hc_c00101{height:21.919500px;}
.hb_c00101{height:23.523000px;}
.h8_c00101{height:24.057000px;}
.h7_c00101{height:33.579562px;}
.h9_c00101{height:34.481700px;}
.ha_c00101{height:47.580000px;}
.h2_c00101{height:52.998047px;}
.h3_c00101{height:70.664062px;}
.h5_c00101{height:72.562500px;}
.h4_c00101{height:75.093750px;}
.h6_c00101{height:409.506000px;}
.h0_c00101{height:1262.880000px;}
.h1_c00101{height:1263.000000px;}
.wb_c00101{width:48.454500px;}
.w5_c00101{width:48.456000px;}
.w7_c00101{width:54.588000px;}
.w3_c00101{width:63.175500px;}
.w4_c00101{width:74.217000px;}
.w6_c00101{width:103.657500px;}
.wa_c00101{width:152.724000px;}
.w8_c00101{width:201.793500px;}
.w9_c00101{width:634.821000px;}
.w2_c00101{width:635.434500px;}
.w0_c00101{width:893.070000px;}
.w1_c00101{width:893.250000px;}
.x0_c00101{left:0.000000px;}
.x17_c00101{left:1.227150px;}
.x13_c00101{left:3.066600px;}
.x12_c00101{left:4.293750px;}
.x10_c00101{left:6.747300px;}
.x19_c00101{left:7.973400px;}
.xe_c00101{left:12.881100px;}
.xc_c00101{left:14.720700px;}
.xa_c00101{left:15.947100px;}
.x1b_c00101{left:19.012650px;}
.x14_c00101{left:20.853900px;}
.x16_c00101{left:22.081050px;}
.x1c_c00101{left:25.147650px;}
.x15_c00101{left:26.987850px;}
.x18_c00101{left:32.512607px;}
.x11_c00101{left:33.734700px;}
.x8_c00101{left:63.788700px;}
.x2_c00101{left:127.620000px;}
.x5_c00101{left:140.850000px;}
.x3_c00101{left:154.620000px;}
.x1a_c00101{left:177.303000px;}
.x4_c00101{left:181.620000px;}
.xf_c00101{left:226.369500px;}
.x6_c00101{left:291.870000px;}
.xb_c00101{left:428.776500px;}
.x1_c00101{left:446.580000px;}
.xd_c00101{left:552.673500px;}
.x9_c00101{left:650.811000px;}
.x7_c00101{left:764.280000px;}
@media print{
.v1_c00101{vertical-align:-55.056000pt;}
.v0_c00101{vertical-align:0.000000pt;}
.ls12_c00101{letter-spacing:-2.737152pt;}
.lse_c00101{letter-spacing:-1.459814pt;}
.lsd_c00101{letter-spacing:-1.277338pt;}
.ls11_c00101{letter-spacing:-1.064448pt;}
.ls10_c00101{letter-spacing:-0.608256pt;}
.ls9_c00101{letter-spacing:-0.512000pt;}
.lsc_c00101{letter-spacing:-0.192000pt;}
.lsf_c00101{letter-spacing:-0.182477pt;}
.lsb_c00101{letter-spacing:-0.128000pt;}
.lsa_c00101{letter-spacing:-0.064000pt;}
.ls8_c00101{letter-spacing:0.000000pt;}
.ls4_c00101{letter-spacing:0.064000pt;}
.ls6_c00101{letter-spacing:0.070400pt;}
.ls2_c00101{letter-spacing:0.128000pt;}
.ls7_c00101{letter-spacing:0.182477pt;}
.ls3_c00101{letter-spacing:0.640000pt;}
.ls1_c00101{letter-spacing:6.080000pt;}
.ls5_c00101{letter-spacing:27.328000pt;}
.ls0_c00101{letter-spacing:284.016000pt;}
.ws0_c00101{word-spacing:-16.128000pt;}
.ws2_c00101{word-spacing:-15.936000pt;}
.ws1_c00101{word-spacing:-15.872000pt;}
.ws7_c00101{word-spacing:-7.785677pt;}
.ws6_c00101{word-spacing:-6.538752pt;}
.ws4_c00101{word-spacing:-6.325862pt;}
.ws5_c00101{word-spacing:-6.143386pt;}
.ws17_c00101{word-spacing:-0.448000pt;}
.ws12_c00101{word-spacing:-0.320000pt;}
.ws9_c00101{word-spacing:-0.144000pt;}
.ws11_c00101{word-spacing:-0.128000pt;}
.wsc_c00101{word-spacing:-0.064000pt;}
.ws8_c00101{word-spacing:0.000000pt;}
.ws13_c00101{word-spacing:0.064000pt;}
.ws14_c00101{word-spacing:0.128000pt;}
.ws1a_c00101{word-spacing:0.182477pt;}
.wse_c00101{word-spacing:0.192000pt;}
.wsd_c00101{word-spacing:0.576000pt;}
.ws1b_c00101{word-spacing:0.608256pt;}
.ws10_c00101{word-spacing:0.640000pt;}
.wsf_c00101{word-spacing:1.152000pt;}
.ws1c_c00101{word-spacing:2.737152pt;}
.ws18_c00101{word-spacing:3.136000pt;}
.wsa_c00101{word-spacing:6.016000pt;}
.wsb_c00101{word-spacing:6.080000pt;}
.ws15_c00101{word-spacing:8.320000pt;}
.ws16_c00101{word-spacing:24.640000pt;}
.ws19_c00101{word-spacing:30.336000pt;}
.ws3_c00101{word-spacing:93.139200pt;}
._9_c00101{margin-left:-2.917632pt;}
._a_c00101{margin-left:-1.868390pt;}
._1_c00101{margin-left:-0.960000pt;}
._2_c00101{width:0.896000pt;}
._7_c00101{width:2.083277pt;}
._8_c00101{width:3.147725pt;}
._0_c00101{width:6.272000pt;}
._3_c00101{width:8.576000pt;}
._4_c00101{width:24.896000pt;}
._5_c00101{width:435.298406pt;}
._6_c00101{width:610.172006pt;}
.fs2_c00101{font-size:30.412800pt;}
.fs0_c00101{font-size:48.000000pt;}
.fs1_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y2f_c00101{bottom:1.900667pt;}
.y36_c00101{bottom:1.900933pt;}
.y3a_c00101{bottom:1.901600pt;}
.y32_c00101{bottom:1.905535pt;}
.y34_c00101{bottom:1.905668pt;}
.y2d_c00101{bottom:2.376933pt;}
.y29_c00101{bottom:2.379935pt;}
.y2b_c00101{bottom:7.128667pt;}
.y1d_c00101{bottom:8.077600pt;}
.y24_c00101{bottom:8.078133pt;}
.y38_c00101{bottom:8.078400pt;}
.y23_c00101{bottom:8.078533pt;}
.y21_c00101{bottom:8.553467pt;}
.y31_c00101{bottom:11.880933pt;}
.y33_c00101{bottom:11.881067pt;}
.y28_c00101{bottom:12.355333pt;}
.y20_c00101{bottom:18.528865pt;}
.y1f_c00101{bottom:28.511867pt;}
.y3b_c00101{bottom:50.880000pt;}
.y19_c00101{bottom:106.880000pt;}
.y18_c00101{bottom:134.480000pt;}
.y17_c00101{bottom:162.080000pt;}
.y16_c00101{bottom:189.680000pt;}
.y15_c00101{bottom:213.680000pt;}
.y1a_c00101{bottom:214.078667pt;}
.y2c_c00101{bottom:214.553333pt;}
.y39_c00101{bottom:234.512000pt;}
.y2a_c00101{bottom:254.470667pt;}
.y2e_c00101{bottom:284.409333pt;}
.y1c_c00101{bottom:303.893333pt;}
.y1b_c00101{bottom:316.485733pt;}
.y25_c00101{bottom:336.206667pt;}
.y1e_c00101{bottom:368.045333pt;}
.y22_c00101{bottom:400.358667pt;}
.y27_c00101{bottom:432.197333pt;}
.y26_c00101{bottom:464.036000pt;}
.y37_c00101{bottom:495.874667pt;}
.y30_c00101{bottom:548.621333pt;}
.y35_c00101{bottom:558.601333pt;}
.y14_c00101{bottom:582.080000pt;}
.y13_c00101{bottom:600.480000pt;}
.y12_c00101{bottom:628.240000pt;}
.y11_c00101{bottom:655.840000pt;}
.y10_c00101{bottom:683.440000pt;}
.yf_c00101{bottom:711.040000pt;}
.ye_c00101{bottom:738.640000pt;}
.yd_c00101{bottom:766.160000pt;}
.yc_c00101{bottom:793.760000pt;}
.yb_c00101{bottom:821.360000pt;}
.ya_c00101{bottom:848.960000pt;}
.y9_c00101{bottom:876.560000pt;}
.y8_c00101{bottom:904.160000pt;}
.y7_c00101{bottom:931.760000pt;}
.y6_c00101{bottom:959.360000pt;}
.y5_c00101{bottom:986.960000pt;}
.y4_c00101{bottom:1005.360000pt;}
.y3_c00101{bottom:1023.036000pt;}
.y2_c00101{bottom:1036.800000pt;}
.y1_c00101{bottom:1064.400000pt;}
.hd_c00101{height:9.504000pt;}
.he_c00101{height:19.008000pt;}
.hf_c00101{height:19.482667pt;}
.hc_c00101{height:19.484000pt;}
.hb_c00101{height:20.909333pt;}
.h8_c00101{height:21.384000pt;}
.h7_c00101{height:29.848500pt;}
.h9_c00101{height:30.650400pt;}
.ha_c00101{height:42.293333pt;}
.h2_c00101{height:47.109375pt;}
.h3_c00101{height:62.812500pt;}
.h5_c00101{height:64.500000pt;}
.h4_c00101{height:66.750000pt;}
.h6_c00101{height:364.005333pt;}
.h0_c00101{height:1122.560000pt;}
.h1_c00101{height:1122.666667pt;}
.wb_c00101{width:43.070667pt;}
.w5_c00101{width:43.072000pt;}
.w7_c00101{width:48.522667pt;}
.w3_c00101{width:56.156000pt;}
.w4_c00101{width:65.970667pt;}
.w6_c00101{width:92.140000pt;}
.wa_c00101{width:135.754667pt;}
.w8_c00101{width:179.372000pt;}
.w9_c00101{width:564.285333pt;}
.w2_c00101{width:564.830667pt;}
.w0_c00101{width:793.840000pt;}
.w1_c00101{width:794.000000pt;}
.x0_c00101{left:0.000000pt;}
.x17_c00101{left:1.090800pt;}
.x13_c00101{left:2.725867pt;}
.x12_c00101{left:3.816667pt;}
.x10_c00101{left:5.997600pt;}
.x19_c00101{left:7.087467pt;}
.xe_c00101{left:11.449867pt;}
.xc_c00101{left:13.085067pt;}
.xa_c00101{left:14.175200pt;}
.x1b_c00101{left:16.900133pt;}
.x14_c00101{left:18.536800pt;}
.x16_c00101{left:19.627600pt;}
.x1c_c00101{left:22.353467pt;}
.x15_c00101{left:23.989200pt;}
.x18_c00101{left:28.900095pt;}
.x11_c00101{left:29.986400pt;}
.x8_c00101{left:56.701067pt;}
.x2_c00101{left:113.440000pt;}
.x5_c00101{left:125.200000pt;}
.x3_c00101{left:137.440000pt;}
.x1a_c00101{left:157.602667pt;}
.x4_c00101{left:161.440000pt;}
.xf_c00101{left:201.217333pt;}
.x6_c00101{left:259.440000pt;}
.xb_c00101{left:381.134667pt;}
.x1_c00101{left:396.960000pt;}
.xd_c00101{left:491.265333pt;}
.x9_c00101{left:578.498667pt;}
.x7_c00101{left:679.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_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_dc03874907158d8075fa62d6.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_355a86919323b6faac87ab06.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;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_c00102;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00102{vertical-align:-82.800000px;}
.v3_c00102{vertical-align:-20.880000px;}
.v0_c00102{vertical-align:0.000000px;}
.v2_c00102{vertical-align:27.000000px;}
.lsc_c00102{letter-spacing:-0.288000px;}
.lse_c00102{letter-spacing:-0.216000px;}
.ls10_c00102{letter-spacing:-0.180360px;}
.lsd_c00102{letter-spacing:-0.144000px;}
.lsa_c00102{letter-spacing:-0.108000px;}
.ls11_c00102{letter-spacing:-0.060120px;}
.ls9_c00102{letter-spacing:0.000000px;}
.ls1_c00102{letter-spacing:0.072000px;}
.ls8_c00102{letter-spacing:0.120240px;}
.ls3_c00102{letter-spacing:0.144000px;}
.lsf_c00102{letter-spacing:0.180360px;}
.lsb_c00102{letter-spacing:0.191520px;}
.ls5_c00102{letter-spacing:3.384000px;}
.ls6_c00102{letter-spacing:9.727200px;}
.ls7_c00102{letter-spacing:10.881720px;}
.ls4_c00102{letter-spacing:24.480000px;}
.ls2_c00102{letter-spacing:30.744000px;}
.ls0_c00102{letter-spacing:198.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00102{word-spacing:-18.072000px;}
.ws1_c00102{word-spacing:-18.000000px;}
.ws3_c00102{word-spacing:-17.856000px;}
.ws4_c00102{word-spacing:-17.784000px;}
.ws0_c00102{word-spacing:-12.161520px;}
.ws5_c00102{word-spacing:-9.720000px;}
.ws1f_c00102{word-spacing:-0.360000px;}
.ws15_c00102{word-spacing:-0.144000px;}
.wsd_c00102{word-spacing:-0.072000px;}
.ws28_c00102{word-spacing:-0.060120px;}
.ws6_c00102{word-spacing:0.000000px;}
.ws8_c00102{word-spacing:0.162000px;}
.ws2a_c00102{word-spacing:0.180360px;}
.ws7_c00102{word-spacing:0.270000px;}
.ws19_c00102{word-spacing:0.288000px;}
.ws29_c00102{word-spacing:0.300600px;}
.wsf_c00102{word-spacing:2.448000px;}
.wse_c00102{word-spacing:2.520000px;}
.ws16_c00102{word-spacing:2.808000px;}
.ws17_c00102{word-spacing:2.880000px;}
.ws20_c00102{word-spacing:3.240000px;}
.wsa_c00102{word-spacing:4.248000px;}
.ws9_c00102{word-spacing:4.608000px;}
.wsb_c00102{word-spacing:4.680000px;}
.ws10_c00102{word-spacing:4.968000px;}
.ws11_c00102{word-spacing:5.040000px;}
.ws24_c00102{word-spacing:6.768000px;}
.ws23_c00102{word-spacing:7.920000px;}
.ws21_c00102{word-spacing:8.568000px;}
.ws1e_c00102{word-spacing:9.360000px;}
.ws1d_c00102{word-spacing:9.648000px;}
.ws1a_c00102{word-spacing:9.720000px;}
.ws26_c00102{word-spacing:10.701360px;}
.ws27_c00102{word-spacing:11.062080px;}
.ws14_c00102{word-spacing:12.168000px;}
.ws13_c00102{word-spacing:12.600000px;}
.wsc_c00102{word-spacing:18.000000px;}
.ws25_c00102{word-spacing:22.968000px;}
.ws1c_c00102{word-spacing:24.408000px;}
.ws1b_c00102{word-spacing:24.480000px;}
.ws12_c00102{word-spacing:26.928000px;}
.ws22_c00102{word-spacing:31.608000px;}
.ws18_c00102{word-spacing:43.848000px;}
._1_c00102{margin-left:-1.058400px;}
._0_c00102{width:1.220400px;}
._2_c00102{width:2.736000px;}
._3_c00102{width:9.576000px;}
._4_c00102{width:24.480000px;}
.fc0_c00102{color:rgb(0,0,0);}
.fs3_c00102{font-size:38.880000px;}
.fs2_c00102{font-size:47.880000px;}
.fs0_c00102{font-size:54.000000px;}
.fs4_c00102{font-size:60.120000px;}
.fs1_c00102{font-size:72.000000px;}
.y0_c00102{bottom:0.000000px;}
.y26_c00102{bottom:57.240000px;}
.y25_c00102{bottom:115.020000px;}
.y24_c00102{bottom:132.210000px;}
.y23_c00102{bottom:144.265500px;}
.y22_c00102{bottom:166.770000px;}
.y27_c00102{bottom:179.460000px;}
.y21_c00102{bottom:241.020000px;}
.y20_c00102{bottom:272.070000px;}
.y1f_c00102{bottom:303.120000px;}
.y1e_c00102{bottom:334.170000px;}
.y1d_c00102{bottom:365.220000px;}
.y1c_c00102{bottom:396.270000px;}
.y1b_c00102{bottom:427.320000px;}
.y1a_c00102{bottom:458.370000px;}
.y19_c00102{bottom:489.420000px;}
.y18_c00102{bottom:520.470000px;}
.y17_c00102{bottom:551.520000px;}
.y16_c00102{bottom:582.570000px;}
.y15_c00102{bottom:613.620000px;}
.y14_c00102{bottom:644.670000px;}
.y13_c00102{bottom:675.720000px;}
.y12_c00102{bottom:706.770000px;}
.y11_c00102{bottom:737.820000px;}
.y10_c00102{bottom:768.870000px;}
.yf_c00102{bottom:799.920000px;}
.ye_c00102{bottom:830.970000px;}
.yd_c00102{bottom:861.930000px;}
.yc_c00102{bottom:892.980000px;}
.yb_c00102{bottom:924.030000px;}
.ya_c00102{bottom:955.080000px;}
.y9_c00102{bottom:986.130000px;}
.y8_c00102{bottom:1017.180000px;}
.y7_c00102{bottom:1048.230000px;}
.y6_c00102{bottom:1079.280000px;}
.y5_c00102{bottom:1131.030000px;}
.y4_c00102{bottom:1150.920000px;}
.y3_c00102{bottom:1166.404500px;}
.y2_c00102{bottom:1181.970000px;}
.y1_c00102{bottom:1197.450000px;}
.h7_c00102{height:38.158594px;}
.h3_c00102{height:52.971680px;}
.h2_c00102{height:52.998047px;}
.h8_c00102{height:59.004492px;}
.h4_c00102{height:70.664062px;}
.h6_c00102{height:73.991602px;}
.h5_c00102{height:75.093750px;}
.h0_c00102{height:1262.880000px;}
.h1_c00102{height:1263.000000px;}
.w0_c00102{width:893.070000px;}
.w1_c00102{width:893.250000px;}
.x0_c00102{left:0.000000px;}
.x3_c00102{left:127.620000px;}
.x5_c00102{left:154.620000px;}
.x4_c00102{left:181.620000px;}
.x2_c00102{left:425.160000px;}
.x1_c00102{left:446.580000px;}
.x6_c00102{left:747.540000px;}
@media print{
.v1_c00102{vertical-align:-73.600000pt;}
.v3_c00102{vertical-align:-18.560000pt;}
.v0_c00102{vertical-align:0.000000pt;}
.v2_c00102{vertical-align:24.000000pt;}
.lsc_c00102{letter-spacing:-0.256000pt;}
.lse_c00102{letter-spacing:-0.192000pt;}
.ls10_c00102{letter-spacing:-0.160320pt;}
.lsd_c00102{letter-spacing:-0.128000pt;}
.lsa_c00102{letter-spacing:-0.096000pt;}
.ls11_c00102{letter-spacing:-0.053440pt;}
.ls9_c00102{letter-spacing:0.000000pt;}
.ls1_c00102{letter-spacing:0.064000pt;}
.ls8_c00102{letter-spacing:0.106880pt;}
.ls3_c00102{letter-spacing:0.128000pt;}
.lsf_c00102{letter-spacing:0.160320pt;}
.lsb_c00102{letter-spacing:0.170240pt;}
.ls5_c00102{letter-spacing:3.008000pt;}
.ls6_c00102{letter-spacing:8.646400pt;}
.ls7_c00102{letter-spacing:9.672640pt;}
.ls4_c00102{letter-spacing:21.760000pt;}
.ls2_c00102{letter-spacing:27.328000pt;}
.ls0_c00102{letter-spacing:176.000000pt;}
.ws2_c00102{word-spacing:-16.064000pt;}
.ws1_c00102{word-spacing:-16.000000pt;}
.ws3_c00102{word-spacing:-15.872000pt;}
.ws4_c00102{word-spacing:-15.808000pt;}
.ws0_c00102{word-spacing:-10.810240pt;}
.ws5_c00102{word-spacing:-8.640000pt;}
.ws1f_c00102{word-spacing:-0.320000pt;}
.ws15_c00102{word-spacing:-0.128000pt;}
.wsd_c00102{word-spacing:-0.064000pt;}
.ws28_c00102{word-spacing:-0.053440pt;}
.ws6_c00102{word-spacing:0.000000pt;}
.ws8_c00102{word-spacing:0.144000pt;}
.ws2a_c00102{word-spacing:0.160320pt;}
.ws7_c00102{word-spacing:0.240000pt;}
.ws19_c00102{word-spacing:0.256000pt;}
.ws29_c00102{word-spacing:0.267200pt;}
.wsf_c00102{word-spacing:2.176000pt;}
.wse_c00102{word-spacing:2.240000pt;}
.ws16_c00102{word-spacing:2.496000pt;}
.ws17_c00102{word-spacing:2.560000pt;}
.ws20_c00102{word-spacing:2.880000pt;}
.wsa_c00102{word-spacing:3.776000pt;}
.ws9_c00102{word-spacing:4.096000pt;}
.wsb_c00102{word-spacing:4.160000pt;}
.ws10_c00102{word-spacing:4.416000pt;}
.ws11_c00102{word-spacing:4.480000pt;}
.ws24_c00102{word-spacing:6.016000pt;}
.ws23_c00102{word-spacing:7.040000pt;}
.ws21_c00102{word-spacing:7.616000pt;}
.ws1e_c00102{word-spacing:8.320000pt;}
.ws1d_c00102{word-spacing:8.576000pt;}
.ws1a_c00102{word-spacing:8.640000pt;}
.ws26_c00102{word-spacing:9.512320pt;}
.ws27_c00102{word-spacing:9.832960pt;}
.ws14_c00102{word-spacing:10.816000pt;}
.ws13_c00102{word-spacing:11.200000pt;}
.wsc_c00102{word-spacing:16.000000pt;}
.ws25_c00102{word-spacing:20.416000pt;}
.ws1c_c00102{word-spacing:21.696000pt;}
.ws1b_c00102{word-spacing:21.760000pt;}
.ws12_c00102{word-spacing:23.936000pt;}
.ws22_c00102{word-spacing:28.096000pt;}
.ws18_c00102{word-spacing:38.976000pt;}
._1_c00102{margin-left:-0.940800pt;}
._0_c00102{width:1.084800pt;}
._2_c00102{width:2.432000pt;}
._3_c00102{width:8.512000pt;}
._4_c00102{width:21.760000pt;}
.fs3_c00102{font-size:34.560000pt;}
.fs2_c00102{font-size:42.560000pt;}
.fs0_c00102{font-size:48.000000pt;}
.fs4_c00102{font-size:53.440000pt;}
.fs1_c00102{font-size:64.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y26_c00102{bottom:50.880000pt;}
.y25_c00102{bottom:102.240000pt;}
.y24_c00102{bottom:117.520000pt;}
.y23_c00102{bottom:128.236000pt;}
.y22_c00102{bottom:148.240000pt;}
.y27_c00102{bottom:159.520000pt;}
.y21_c00102{bottom:214.240000pt;}
.y20_c00102{bottom:241.840000pt;}
.y1f_c00102{bottom:269.440000pt;}
.y1e_c00102{bottom:297.040000pt;}
.y1d_c00102{bottom:324.640000pt;}
.y1c_c00102{bottom:352.240000pt;}
.y1b_c00102{bottom:379.840000pt;}
.y1a_c00102{bottom:407.440000pt;}
.y19_c00102{bottom:435.040000pt;}
.y18_c00102{bottom:462.640000pt;}
.y17_c00102{bottom:490.240000pt;}
.y16_c00102{bottom:517.840000pt;}
.y15_c00102{bottom:545.440000pt;}
.y14_c00102{bottom:573.040000pt;}
.y13_c00102{bottom:600.640000pt;}
.y12_c00102{bottom:628.240000pt;}
.y11_c00102{bottom:655.840000pt;}
.y10_c00102{bottom:683.440000pt;}
.yf_c00102{bottom:711.040000pt;}
.ye_c00102{bottom:738.640000pt;}
.yd_c00102{bottom:766.160000pt;}
.yc_c00102{bottom:793.760000pt;}
.yb_c00102{bottom:821.360000pt;}
.ya_c00102{bottom:848.960000pt;}
.y9_c00102{bottom:876.560000pt;}
.y8_c00102{bottom:904.160000pt;}
.y7_c00102{bottom:931.760000pt;}
.y6_c00102{bottom:959.360000pt;}
.y5_c00102{bottom:1005.360000pt;}
.y4_c00102{bottom:1023.040000pt;}
.y3_c00102{bottom:1036.804000pt;}
.y2_c00102{bottom:1050.640000pt;}
.y1_c00102{bottom:1064.400000pt;}
.h7_c00102{height:33.918750pt;}
.h3_c00102{height:47.085938pt;}
.h2_c00102{height:47.109375pt;}
.h8_c00102{height:52.448437pt;}
.h4_c00102{height:62.812500pt;}
.h6_c00102{height:65.770312pt;}
.h5_c00102{height:66.750000pt;}
.h0_c00102{height:1122.560000pt;}
.h1_c00102{height:1122.666667pt;}
.w0_c00102{width:793.840000pt;}
.w1_c00102{width:794.000000pt;}
.x0_c00102{left:0.000000pt;}
.x3_c00102{left:113.440000pt;}
.x5_c00102{left:137.440000pt;}
.x4_c00102{left:161.440000pt;}
.x2_c00102{left:377.920000pt;}
.x1_c00102{left:396.960000pt;}
.x6_c00102{left:664.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_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_b48c63280895f134cf3d9759.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_538f3c4bbd9e1ecae7602cc9.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00103{vertical-align:-61.938000px;}
.v3_c00103{vertical-align:-20.880000px;}
.v0_c00103{vertical-align:0.000000px;}
.v2_c00103{vertical-align:27.000000px;}
.ls14_c00103{letter-spacing:-0.420840px;}
.ls1a_c00103{letter-spacing:-0.360000px;}
.lse_c00103{letter-spacing:-0.300600px;}
.ls17_c00103{letter-spacing:-0.288000px;}
.ls12_c00103{letter-spacing:-0.240480px;}
.ls19_c00103{letter-spacing:-0.216000px;}
.ls15_c00103{letter-spacing:-0.180360px;}
.ls18_c00103{letter-spacing:-0.144000px;}
.ls10_c00103{letter-spacing:-0.120240px;}
.lsd_c00103{letter-spacing:-0.072000px;}
.lsf_c00103{letter-spacing:-0.060120px;}
.lsc_c00103{letter-spacing:0.000000px;}
.ls3_c00103{letter-spacing:0.072000px;}
.ls6_c00103{letter-spacing:0.090000px;}
.ls13_c00103{letter-spacing:0.120240px;}
.ls4_c00103{letter-spacing:0.140040px;}
.ls1_c00103{letter-spacing:0.144000px;}
.ls11_c00103{letter-spacing:0.180360px;}
.ls16_c00103{letter-spacing:0.191520px;}
.lsa_c00103{letter-spacing:3.667320px;}
.lsb_c00103{letter-spacing:3.889764px;}
.ls7_c00103{letter-spacing:6.134400px;}
.ls8_c00103{letter-spacing:10.447200px;}
.ls2_c00103{letter-spacing:11.160000px;}
.ls5_c00103{letter-spacing:14.850000px;}
.ls9_c00103{letter-spacing:21.960000px;}
.ls0_c00103{letter-spacing:319.518000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00103{word-spacing:-18.144000px;}
.ws0_c00103{word-spacing:-18.072000px;}
.ws3_c00103{word-spacing:-18.000000px;}
.ws2_c00103{word-spacing:-17.928000px;}
.wsb_c00103{word-spacing:-17.856000px;}
.ws9_c00103{word-spacing:-15.210360px;}
.ws8_c00103{word-spacing:-15.150240px;}
.ws6_c00103{word-spacing:-14.969880px;}
.ws5_c00103{word-spacing:-14.909760px;}
.ws7_c00103{word-spacing:-14.789520px;}
.ws4_c00103{word-spacing:-14.729400px;}
.wsa_c00103{word-spacing:-12.161520px;}
.wsc_c00103{word-spacing:-9.720000px;}
.ws11_c00103{word-spacing:-0.432000px;}
.ws1d_c00103{word-spacing:-0.420840px;}
.ws17_c00103{word-spacing:-0.360000px;}
.ws18_c00103{word-spacing:-0.180360px;}
.wse_c00103{word-spacing:-0.162000px;}
.ws16_c00103{word-spacing:-0.144000px;}
.ws31_c00103{word-spacing:-0.120240px;}
.ws14_c00103{word-spacing:-0.072000px;}
.ws36_c00103{word-spacing:-0.060120px;}
.wsd_c00103{word-spacing:0.000000px;}
.ws35_c00103{word-spacing:0.120240px;}
.ws23_c00103{word-spacing:0.180360px;}
.ws1a_c00103{word-spacing:0.240480px;}
.ws3b_c00103{word-spacing:0.288000px;}
.ws4a_c00103{word-spacing:0.360000px;}
.ws15_c00103{word-spacing:0.648000px;}
.ws46_c00103{word-spacing:0.720000px;}
.ws39_c00103{word-spacing:1.368000px;}
.ws32_c00103{word-spacing:1.923840px;}
.ws4e_c00103{word-spacing:3.186360px;}
.ws4d_c00103{word-spacing:3.547080px;}
.ws4b_c00103{word-spacing:3.667320px;}
.ws4c_c00103{word-spacing:3.727440px;}
.wsf_c00103{word-spacing:3.888000px;}
.ws10_c00103{word-spacing:3.960000px;}
.ws38_c00103{word-spacing:4.608000px;}
.ws37_c00103{word-spacing:4.680000px;}
.ws42_c00103{word-spacing:5.976000px;}
.ws27_c00103{word-spacing:6.012000px;}
.ws40_c00103{word-spacing:6.048000px;}
.ws41_c00103{word-spacing:6.120000px;}
.ws28_c00103{word-spacing:6.252480px;}
.ws2a_c00103{word-spacing:6.372720px;}
.ws3a_c00103{word-spacing:6.408000px;}
.ws3c_c00103{word-spacing:6.480000px;}
.ws19_c00103{word-spacing:6.613200px;}
.ws3e_c00103{word-spacing:6.696000px;}
.ws3d_c00103{word-spacing:6.768000px;}
.ws30_c00103{word-spacing:6.973920px;}
.ws1b_c00103{word-spacing:7.334640px;}
.ws2c_c00103{word-spacing:7.755480px;}
.ws1c_c00103{word-spacing:8.537040px;}
.ws45_c00103{word-spacing:10.440000px;}
.ws43_c00103{word-spacing:10.728000px;}
.ws44_c00103{word-spacing:10.800000px;}
.ws12_c00103{word-spacing:11.088000px;}
.ws13_c00103{word-spacing:11.160000px;}
.ws2d_c00103{word-spacing:14.188320px;}
.ws25_c00103{word-spacing:14.549040px;}
.ws26_c00103{word-spacing:14.669280px;}
.ws24_c00103{word-spacing:14.969880px;}
.ws29_c00103{word-spacing:16.713360px;}
.ws21_c00103{word-spacing:17.555040px;}
.ws20_c00103{word-spacing:19.719360px;}
.ws22_c00103{word-spacing:20.681280px;}
.ws34_c00103{word-spacing:21.402720px;}
.ws48_c00103{word-spacing:21.528000px;}
.ws47_c00103{word-spacing:21.816000px;}
.ws49_c00103{word-spacing:21.960000px;}
.ws2e_c00103{word-spacing:28.977840px;}
.ws2f_c00103{word-spacing:29.338560px;}
.ws1f_c00103{word-spacing:32.885640px;}
.ws1e_c00103{word-spacing:32.945760px;}
.ws3f_c00103{word-spacing:38.520000px;}
.ws33_c00103{word-spacing:53.807400px;}
.ws2b_c00103{word-spacing:85.550760px;}
._0_c00103{margin-left:-1.303200px;}
._2_c00103{width:1.124244px;}
._4_c00103{width:2.592000px;}
._3_c00103{width:4.903200px;}
._5_c00103{width:6.528960px;}
._1_c00103{width:10.519200px;}
._6_c00103{width:22.118400px;}
.fc0_c00103{color:rgb(0,0,0);}
.fs4_c00103{font-size:38.880000px;}
.fs3_c00103{font-size:47.880000px;}
.fs0_c00103{font-size:54.000000px;}
.fs2_c00103{font-size:60.120000px;}
.fs1_c00103{font-size:72.000000px;}
.y0_c00103{bottom:0.000000px;}
.y16_c00103{bottom:3.510000px;}
.y11_c00103{bottom:4.230000px;}
.yd_c00103{bottom:5.670000px;}
.y24_c00103{bottom:20.610000px;}
.y15_c00103{bottom:20.700000px;}
.y25_c00103{bottom:20.790000px;}
.yf_c00103{bottom:21.330000px;}
.y10_c00103{bottom:21.510000px;}
.y13_c00103{bottom:37.800000px;}
.y14_c00103{bottom:37.980000px;}
.y1f_c00103{bottom:55.080000px;}
.y20_c00103{bottom:55.260000px;}
.y35_c00103{bottom:57.240000px;}
.y1a_c00103{bottom:72.270000px;}
.y1b_c00103{bottom:72.450000px;}
.y34_c00103{bottom:109.795680px;}
.y33_c00103{bottom:132.210000px;}
.y36_c00103{bottom:144.900000px;}
.y32_c00103{bottom:196.560000px;}
.y31_c00103{bottom:227.610000px;}
.y30_c00103{bottom:258.660000px;}
.y2f_c00103{bottom:289.710000px;}
.y2e_c00103{bottom:320.760000px;}
.y2d_c00103{bottom:351.810000px;}
.y2c_c00103{bottom:382.860000px;}
.y2b_c00103{bottom:413.910000px;}
.y2a_c00103{bottom:444.960000px;}
.y29_c00103{bottom:476.010000px;}
.y28_c00103{bottom:504.630000px;}
.y26_c00103{bottom:520.650000px;}
.y27_c00103{bottom:541.350000px;}
.y23_c00103{bottom:573.120000px;}
.y1e_c00103{bottom:608.400000px;}
.y21_c00103{bottom:629.100000px;}
.y22_c00103{bottom:646.380000px;}
.y19_c00103{bottom:678.150000px;}
.y1d_c00103{bottom:716.125500px;}
.y1c_c00103{bottom:733.410000px;}
.y17_c00103{bottom:765.900000px;}
.y18_c00103{bottom:786.600000px;}
.y12_c00103{bottom:818.370000px;}
.ye_c00103{bottom:870.840000px;}
.yc_c00103{bottom:908.370000px;}
.yb_c00103{bottom:934.200000px;}
.ya_c00103{bottom:954.900000px;}
.y9_c00103{bottom:986.130000px;}
.y8_c00103{bottom:1017.180000px;}
.y7_c00103{bottom:1048.230000px;}
.y6_c00103{bottom:1079.280000px;}
.y5_c00103{bottom:1110.330000px;}
.y4_c00103{bottom:1131.030000px;}
.y3_c00103{bottom:1150.915500px;}
.y2_c00103{bottom:1166.400000px;}
.y1_c00103{bottom:1197.450000px;}
.h5_c00103{height:19.620000px;}
.hd_c00103{height:34.560000px;}
.h7_c00103{height:35.280000px;}
.hf_c00103{height:38.158594px;}
.h9_c00103{height:51.750000px;}
.ha_c00103{height:51.751500px;}
.h2_c00103{height:52.998047px;}
.h8_c00103{height:59.004492px;}
.h6_c00103{height:60.589687px;}
.hc_c00103{height:69.030000px;}
.h3_c00103{height:70.664062px;}
.h4_c00103{height:72.562500px;}
.he_c00103{height:73.991602px;}
.hb_c00103{height:86.220000px;}
.h0_c00103{height:1262.880000px;}
.h1_c00103{height:1263.000000px;}
.w2_c00103{width:133.920000px;}
.w6_c00103{width:244.530000px;}
.w4_c00103{width:245.070000px;}
.w3_c00103{width:252.180000px;}
.w5_c00103{width:252.720000px;}
.w0_c00103{width:893.070000px;}
.w1_c00103{width:893.250000px;}
.x0_c00103{left:0.000000px;}
.xb_c00103{left:6.930000px;}
.x6_c00103{left:44.550000px;}
.x8_c00103{left:45.900000px;}
.xa_c00103{left:47.520000px;}
.x2_c00103{left:127.620000px;}
.x5_c00103{left:128.700000px;}
.x3_c00103{left:137.340000px;}
.xe_c00103{left:209.340000px;}
.x7_c00103{left:264.870000px;}
.xc_c00103{left:271.890000px;}
.x4_c00103{left:315.360000px;}
.x1_c00103{left:446.580000px;}
.x9_c00103{left:519.300000px;}
.xd_c00103{left:526.230000px;}
@media print{
.v1_c00103{vertical-align:-55.056000pt;}
.v3_c00103{vertical-align:-18.560000pt;}
.v0_c00103{vertical-align:0.000000pt;}
.v2_c00103{vertical-align:24.000000pt;}
.ls14_c00103{letter-spacing:-0.374080pt;}
.ls1a_c00103{letter-spacing:-0.320000pt;}
.lse_c00103{letter-spacing:-0.267200pt;}
.ls17_c00103{letter-spacing:-0.256000pt;}
.ls12_c00103{letter-spacing:-0.213760pt;}
.ls19_c00103{letter-spacing:-0.192000pt;}
.ls15_c00103{letter-spacing:-0.160320pt;}
.ls18_c00103{letter-spacing:-0.128000pt;}
.ls10_c00103{letter-spacing:-0.106880pt;}
.lsd_c00103{letter-spacing:-0.064000pt;}
.lsf_c00103{letter-spacing:-0.053440pt;}
.lsc_c00103{letter-spacing:0.000000pt;}
.ls3_c00103{letter-spacing:0.064000pt;}
.ls6_c00103{letter-spacing:0.080000pt;}
.ls13_c00103{letter-spacing:0.106880pt;}
.ls4_c00103{letter-spacing:0.124480pt;}
.ls1_c00103{letter-spacing:0.128000pt;}
.ls11_c00103{letter-spacing:0.160320pt;}
.ls16_c00103{letter-spacing:0.170240pt;}
.lsa_c00103{letter-spacing:3.259840pt;}
.lsb_c00103{letter-spacing:3.457568pt;}
.ls7_c00103{letter-spacing:5.452800pt;}
.ls8_c00103{letter-spacing:9.286400pt;}
.ls2_c00103{letter-spacing:9.920000pt;}
.ls5_c00103{letter-spacing:13.200000pt;}
.ls9_c00103{letter-spacing:19.520000pt;}
.ls0_c00103{letter-spacing:284.016000pt;}
.ws1_c00103{word-spacing:-16.128000pt;}
.ws0_c00103{word-spacing:-16.064000pt;}
.ws3_c00103{word-spacing:-16.000000pt;}
.ws2_c00103{word-spacing:-15.936000pt;}
.wsb_c00103{word-spacing:-15.872000pt;}
.ws9_c00103{word-spacing:-13.520320pt;}
.ws8_c00103{word-spacing:-13.466880pt;}
.ws6_c00103{word-spacing:-13.306560pt;}
.ws5_c00103{word-spacing:-13.253120pt;}
.ws7_c00103{word-spacing:-13.146240pt;}
.ws4_c00103{word-spacing:-13.092800pt;}
.wsa_c00103{word-spacing:-10.810240pt;}
.wsc_c00103{word-spacing:-8.640000pt;}
.ws11_c00103{word-spacing:-0.384000pt;}
.ws1d_c00103{word-spacing:-0.374080pt;}
.ws17_c00103{word-spacing:-0.320000pt;}
.ws18_c00103{word-spacing:-0.160320pt;}
.wse_c00103{word-spacing:-0.144000pt;}
.ws16_c00103{word-spacing:-0.128000pt;}
.ws31_c00103{word-spacing:-0.106880pt;}
.ws14_c00103{word-spacing:-0.064000pt;}
.ws36_c00103{word-spacing:-0.053440pt;}
.wsd_c00103{word-spacing:0.000000pt;}
.ws35_c00103{word-spacing:0.106880pt;}
.ws23_c00103{word-spacing:0.160320pt;}
.ws1a_c00103{word-spacing:0.213760pt;}
.ws3b_c00103{word-spacing:0.256000pt;}
.ws4a_c00103{word-spacing:0.320000pt;}
.ws15_c00103{word-spacing:0.576000pt;}
.ws46_c00103{word-spacing:0.640000pt;}
.ws39_c00103{word-spacing:1.216000pt;}
.ws32_c00103{word-spacing:1.710080pt;}
.ws4e_c00103{word-spacing:2.832320pt;}
.ws4d_c00103{word-spacing:3.152960pt;}
.ws4b_c00103{word-spacing:3.259840pt;}
.ws4c_c00103{word-spacing:3.313280pt;}
.wsf_c00103{word-spacing:3.456000pt;}
.ws10_c00103{word-spacing:3.520000pt;}
.ws38_c00103{word-spacing:4.096000pt;}
.ws37_c00103{word-spacing:4.160000pt;}
.ws42_c00103{word-spacing:5.312000pt;}
.ws27_c00103{word-spacing:5.344000pt;}
.ws40_c00103{word-spacing:5.376000pt;}
.ws41_c00103{word-spacing:5.440000pt;}
.ws28_c00103{word-spacing:5.557760pt;}
.ws2a_c00103{word-spacing:5.664640pt;}
.ws3a_c00103{word-spacing:5.696000pt;}
.ws3c_c00103{word-spacing:5.760000pt;}
.ws19_c00103{word-spacing:5.878400pt;}
.ws3e_c00103{word-spacing:5.952000pt;}
.ws3d_c00103{word-spacing:6.016000pt;}
.ws30_c00103{word-spacing:6.199040pt;}
.ws1b_c00103{word-spacing:6.519680pt;}
.ws2c_c00103{word-spacing:6.893760pt;}
.ws1c_c00103{word-spacing:7.588480pt;}
.ws45_c00103{word-spacing:9.280000pt;}
.ws43_c00103{word-spacing:9.536000pt;}
.ws44_c00103{word-spacing:9.600000pt;}
.ws12_c00103{word-spacing:9.856000pt;}
.ws13_c00103{word-spacing:9.920000pt;}
.ws2d_c00103{word-spacing:12.611840pt;}
.ws25_c00103{word-spacing:12.932480pt;}
.ws26_c00103{word-spacing:13.039360pt;}
.ws24_c00103{word-spacing:13.306560pt;}
.ws29_c00103{word-spacing:14.856320pt;}
.ws21_c00103{word-spacing:15.604480pt;}
.ws20_c00103{word-spacing:17.528320pt;}
.ws22_c00103{word-spacing:18.383360pt;}
.ws34_c00103{word-spacing:19.024640pt;}
.ws48_c00103{word-spacing:19.136000pt;}
.ws47_c00103{word-spacing:19.392000pt;}
.ws49_c00103{word-spacing:19.520000pt;}
.ws2e_c00103{word-spacing:25.758080pt;}
.ws2f_c00103{word-spacing:26.078720pt;}
.ws1f_c00103{word-spacing:29.231680pt;}
.ws1e_c00103{word-spacing:29.285120pt;}
.ws3f_c00103{word-spacing:34.240000pt;}
.ws33_c00103{word-spacing:47.828800pt;}
.ws2b_c00103{word-spacing:76.045120pt;}
._0_c00103{margin-left:-1.158400pt;}
._2_c00103{width:0.999328pt;}
._4_c00103{width:2.304000pt;}
._3_c00103{width:4.358400pt;}
._5_c00103{width:5.803520pt;}
._1_c00103{width:9.350400pt;}
._6_c00103{width:19.660800pt;}
.fs4_c00103{font-size:34.560000pt;}
.fs3_c00103{font-size:42.560000pt;}
.fs0_c00103{font-size:48.000000pt;}
.fs2_c00103{font-size:53.440000pt;}
.fs1_c00103{font-size:64.000000pt;}
.y0_c00103{bottom:0.000000pt;}
.y16_c00103{bottom:3.120000pt;}
.y11_c00103{bottom:3.760000pt;}
.yd_c00103{bottom:5.040000pt;}
.y24_c00103{bottom:18.320000pt;}
.y15_c00103{bottom:18.400000pt;}
.y25_c00103{bottom:18.480000pt;}
.yf_c00103{bottom:18.960000pt;}
.y10_c00103{bottom:19.120000pt;}
.y13_c00103{bottom:33.600000pt;}
.y14_c00103{bottom:33.760000pt;}
.y1f_c00103{bottom:48.960000pt;}
.y20_c00103{bottom:49.120000pt;}
.y35_c00103{bottom:50.880000pt;}
.y1a_c00103{bottom:64.240000pt;}
.y1b_c00103{bottom:64.400000pt;}
.y34_c00103{bottom:97.596160pt;}
.y33_c00103{bottom:117.520000pt;}
.y36_c00103{bottom:128.800000pt;}
.y32_c00103{bottom:174.720000pt;}
.y31_c00103{bottom:202.320000pt;}
.y30_c00103{bottom:229.920000pt;}
.y2f_c00103{bottom:257.520000pt;}
.y2e_c00103{bottom:285.120000pt;}
.y2d_c00103{bottom:312.720000pt;}
.y2c_c00103{bottom:340.320000pt;}
.y2b_c00103{bottom:367.920000pt;}
.y2a_c00103{bottom:395.520000pt;}
.y29_c00103{bottom:423.120000pt;}
.y28_c00103{bottom:448.560000pt;}
.y26_c00103{bottom:462.800000pt;}
.y27_c00103{bottom:481.200000pt;}
.y23_c00103{bottom:509.440000pt;}
.y1e_c00103{bottom:540.800000pt;}
.y21_c00103{bottom:559.200000pt;}
.y22_c00103{bottom:574.560000pt;}
.y19_c00103{bottom:602.800000pt;}
.y1d_c00103{bottom:636.556000pt;}
.y1c_c00103{bottom:651.920000pt;}
.y17_c00103{bottom:680.800000pt;}
.y18_c00103{bottom:699.200000pt;}
.y12_c00103{bottom:727.440000pt;}
.ye_c00103{bottom:774.080000pt;}
.yc_c00103{bottom:807.440000pt;}
.yb_c00103{bottom:830.400000pt;}
.ya_c00103{bottom:848.800000pt;}
.y9_c00103{bottom:876.560000pt;}
.y8_c00103{bottom:904.160000pt;}
.y7_c00103{bottom:931.760000pt;}
.y6_c00103{bottom:959.360000pt;}
.y5_c00103{bottom:986.960000pt;}
.y4_c00103{bottom:1005.360000pt;}
.y3_c00103{bottom:1023.036000pt;}
.y2_c00103{bottom:1036.800000pt;}
.y1_c00103{bottom:1064.400000pt;}
.h5_c00103{height:17.440000pt;}
.hd_c00103{height:30.720000pt;}
.h7_c00103{height:31.360000pt;}
.hf_c00103{height:33.918750pt;}
.h9_c00103{height:46.000000pt;}
.ha_c00103{height:46.001333pt;}
.h2_c00103{height:47.109375pt;}
.h8_c00103{height:52.448437pt;}
.h6_c00103{height:53.857500pt;}
.hc_c00103{height:61.360000pt;}
.h3_c00103{height:62.812500pt;}
.h4_c00103{height:64.500000pt;}
.he_c00103{height:65.770312pt;}
.hb_c00103{height:76.640000pt;}
.h0_c00103{height:1122.560000pt;}
.h1_c00103{height:1122.666667pt;}
.w2_c00103{width:119.040000pt;}
.w6_c00103{width:217.360000pt;}
.w4_c00103{width:217.840000pt;}
.w3_c00103{width:224.160000pt;}
.w5_c00103{width:224.640000pt;}
.w0_c00103{width:793.840000pt;}
.w1_c00103{width:794.000000pt;}
.x0_c00103{left:0.000000pt;}
.xb_c00103{left:6.160000pt;}
.x6_c00103{left:39.600000pt;}
.x8_c00103{left:40.800000pt;}
.xa_c00103{left:42.240000pt;}
.x2_c00103{left:113.440000pt;}
.x5_c00103{left:114.400000pt;}
.x3_c00103{left:122.080000pt;}
.xe_c00103{left:186.080000pt;}
.x7_c00103{left:235.440000pt;}
.xc_c00103{left:241.680000pt;}
.x4_c00103{left:280.320000pt;}
.x1_c00103{left:396.960000pt;}
.x9_c00103{left:461.600000pt;}
.xd_c00103{left:467.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_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_e3431e59129c8f2f4f4f0b4b.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00104{vertical-align:-20.880000px;}
.v0_c00104{vertical-align:0.000000px;}
.v1_c00104{vertical-align:27.000000px;}
.ls16_c00104{letter-spacing:-0.360720px;}
.ls15_c00104{letter-spacing:-0.360000px;}
.ls13_c00104{letter-spacing:-0.288000px;}
.ls18_c00104{letter-spacing:-0.240480px;}
.ls14_c00104{letter-spacing:-0.216000px;}
.ls10_c00104{letter-spacing:-0.144000px;}
.lse_c00104{letter-spacing:-0.108000px;}
.ls11_c00104{letter-spacing:-0.072000px;}
.lsd_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:0.072000px;}
.ls2_c00104{letter-spacing:0.144000px;}
.ls17_c00104{letter-spacing:0.180360px;}
.ls12_c00104{letter-spacing:0.191520px;}
.lsf_c00104{letter-spacing:0.360000px;}
.ls5_c00104{letter-spacing:1.080000px;}
.lsb_c00104{letter-spacing:4.680000px;}
.ls7_c00104{letter-spacing:7.200000px;}
.ls8_c00104{letter-spacing:8.280000px;}
.ls1_c00104{letter-spacing:9.000000px;}
.ls3_c00104{letter-spacing:10.440000px;}
.ls6_c00104{letter-spacing:14.040000px;}
.lsc_c00104{letter-spacing:19.080000px;}
.ls9_c00104{letter-spacing:19.800000px;}
.lsa_c00104{letter-spacing:20.160000px;}
.ls4_c00104{letter-spacing:26.640000px;}
.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;}
}
.ws6_c00104{word-spacing:-18.144000px;}
.ws4_c00104{word-spacing:-18.072000px;}
.ws2_c00104{word-spacing:-18.000000px;}
.ws1_c00104{word-spacing:-17.928000px;}
.ws0_c00104{word-spacing:-17.856000px;}
.ws5_c00104{word-spacing:-17.784000px;}
.ws7_c00104{word-spacing:-17.712000px;}
.ws9_c00104{word-spacing:-15.030000px;}
.wsa_c00104{word-spacing:-14.789520px;}
.ws3_c00104{word-spacing:-12.161520px;}
.ws8_c00104{word-spacing:-9.720000px;}
.wsf_c00104{word-spacing:-0.360000px;}
.ws1c_c00104{word-spacing:-0.144000px;}
.wse_c00104{word-spacing:-0.072000px;}
.ws40_c00104{word-spacing:-0.060120px;}
.wsb_c00104{word-spacing:0.000000px;}
.wsd_c00104{word-spacing:0.162000px;}
.wsc_c00104{word-spacing:0.270000px;}
.ws37_c00104{word-spacing:0.288000px;}
.ws3f_c00104{word-spacing:0.480960px;}
.ws31_c00104{word-spacing:0.720000px;}
.ws28_c00104{word-spacing:1.008000px;}
.ws29_c00104{word-spacing:1.080000px;}
.ws3e_c00104{word-spacing:1.368000px;}
.ws3d_c00104{word-spacing:1.440000px;}
.ws1a_c00104{word-spacing:2.448000px;}
.ws19_c00104{word-spacing:2.520000px;}
.ws10_c00104{word-spacing:2.808000px;}
.ws11_c00104{word-spacing:2.880000px;}
.ws21_c00104{word-spacing:4.176000px;}
.ws34_c00104{word-spacing:4.536000px;}
.ws35_c00104{word-spacing:4.680000px;}
.ws16_c00104{word-spacing:4.968000px;}
.ws3a_c00104{word-spacing:5.040000px;}
.ws39_c00104{word-spacing:5.112000px;}
.ws30_c00104{word-spacing:7.056000px;}
.ws27_c00104{word-spacing:7.488000px;}
.ws26_c00104{word-spacing:7.560000px;}
.ws33_c00104{word-spacing:8.208000px;}
.ws32_c00104{word-spacing:8.280000px;}
.ws13_c00104{word-spacing:8.928000px;}
.ws14_c00104{word-spacing:9.000000px;}
.ws1f_c00104{word-spacing:10.296000px;}
.ws22_c00104{word-spacing:10.368000px;}
.ws20_c00104{word-spacing:10.440000px;}
.ws15_c00104{word-spacing:11.088000px;}
.ws2c_c00104{word-spacing:13.680000px;}
.ws2b_c00104{word-spacing:14.040000px;}
.ws18_c00104{word-spacing:17.496000px;}
.ws17_c00104{word-spacing:17.640000px;}
.ws3c_c00104{word-spacing:19.008000px;}
.ws3b_c00104{word-spacing:19.080000px;}
.ws38_c00104{word-spacing:19.800000px;}
.ws36_c00104{word-spacing:20.088000px;}
.ws2d_c00104{word-spacing:20.808000px;}
.ws2e_c00104{word-spacing:21.240000px;}
.ws1e_c00104{word-spacing:21.816000px;}
.ws1b_c00104{word-spacing:21.888000px;}
.ws1d_c00104{word-spacing:21.960000px;}
.ws2a_c00104{word-spacing:24.408000px;}
.ws2f_c00104{word-spacing:26.208000px;}
.ws23_c00104{word-spacing:26.568000px;}
.ws24_c00104{word-spacing:26.640000px;}
.ws25_c00104{word-spacing:26.928000px;}
.ws12_c00104{word-spacing:38.520000px;}
._1_c00104{margin-left:-1.058400px;}
._0_c00104{width:1.220400px;}
._3_c00104{width:2.736000px;}
._9_c00104{width:5.040000px;}
._7_c00104{width:6.987600px;}
._2_c00104{width:8.020800px;}
._6_c00104{width:9.640800px;}
._8_c00104{width:13.248000px;}
._b_c00104{width:19.152000px;}
._a_c00104{width:20.376000px;}
._4_c00104{width:21.434400px;}
._5_c00104{width:22.557600px;}
.fc0_c00104{color:rgb(0,0,0);}
.fs3_c00104{font-size:38.880000px;}
.fs2_c00104{font-size:47.880000px;}
.fs0_c00104{font-size:54.000000px;}
.fs4_c00104{font-size:60.120000px;}
.fs1_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y26_c00104{bottom:57.240000px;}
.y25_c00104{bottom:115.020000px;}
.y27_c00104{bottom:127.710000px;}
.y24_c00104{bottom:178.920000px;}
.y23_c00104{bottom:209.970000px;}
.y22_c00104{bottom:241.020000px;}
.y21_c00104{bottom:272.070000px;}
.y20_c00104{bottom:303.120000px;}
.y1f_c00104{bottom:334.170000px;}
.y1e_c00104{bottom:365.220000px;}
.y1d_c00104{bottom:396.270000px;}
.y1c_c00104{bottom:427.320000px;}
.y1b_c00104{bottom:458.370000px;}
.y1a_c00104{bottom:489.420000px;}
.y19_c00104{bottom:520.470000px;}
.y18_c00104{bottom:551.520000px;}
.y17_c00104{bottom:582.570000px;}
.y16_c00104{bottom:613.620000px;}
.y15_c00104{bottom:644.670000px;}
.y14_c00104{bottom:675.720000px;}
.y13_c00104{bottom:706.770000px;}
.y12_c00104{bottom:737.820000px;}
.y11_c00104{bottom:768.870000px;}
.y10_c00104{bottom:799.920000px;}
.yf_c00104{bottom:830.970000px;}
.ye_c00104{bottom:861.930000px;}
.yd_c00104{bottom:892.980000px;}
.yc_c00104{bottom:924.030000px;}
.yb_c00104{bottom:955.080000px;}
.ya_c00104{bottom:986.130000px;}
.y9_c00104{bottom:1017.180000px;}
.y8_c00104{bottom:1048.230000px;}
.y7_c00104{bottom:1079.280000px;}
.y6_c00104{bottom:1110.330000px;}
.y5_c00104{bottom:1131.030000px;}
.y4_c00104{bottom:1150.920000px;}
.y3_c00104{bottom:1166.404500px;}
.y2_c00104{bottom:1181.970000px;}
.y1_c00104{bottom:1197.450000px;}
.h6_c00104{height:38.158594px;}
.h3_c00104{height:52.971680px;}
.h2_c00104{height:52.998047px;}
.h4_c00104{height:70.664062px;}
.h5_c00104{height:73.991602px;}
.h0_c00104{height:1262.880000px;}
.h1_c00104{height:1263.000000px;}
.w0_c00104{width:893.070000px;}
.w1_c00104{width:893.250000px;}
.x0_c00104{left:0.000000px;}
.x3_c00104{left:127.620000px;}
.x2_c00104{left:425.160000px;}
.x1_c00104{left:446.580000px;}
.x4_c00104{left:747.540000px;}
@media print{
.v2_c00104{vertical-align:-18.560000pt;}
.v0_c00104{vertical-align:0.000000pt;}
.v1_c00104{vertical-align:24.000000pt;}
.ls16_c00104{letter-spacing:-0.320640pt;}
.ls15_c00104{letter-spacing:-0.320000pt;}
.ls13_c00104{letter-spacing:-0.256000pt;}
.ls18_c00104{letter-spacing:-0.213760pt;}
.ls14_c00104{letter-spacing:-0.192000pt;}
.ls10_c00104{letter-spacing:-0.128000pt;}
.lse_c00104{letter-spacing:-0.096000pt;}
.ls11_c00104{letter-spacing:-0.064000pt;}
.lsd_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:0.064000pt;}
.ls2_c00104{letter-spacing:0.128000pt;}
.ls17_c00104{letter-spacing:0.160320pt;}
.ls12_c00104{letter-spacing:0.170240pt;}
.lsf_c00104{letter-spacing:0.320000pt;}
.ls5_c00104{letter-spacing:0.960000pt;}
.lsb_c00104{letter-spacing:4.160000pt;}
.ls7_c00104{letter-spacing:6.400000pt;}
.ls8_c00104{letter-spacing:7.360000pt;}
.ls1_c00104{letter-spacing:8.000000pt;}
.ls3_c00104{letter-spacing:9.280000pt;}
.ls6_c00104{letter-spacing:12.480000pt;}
.lsc_c00104{letter-spacing:16.960000pt;}
.ls9_c00104{letter-spacing:17.600000pt;}
.lsa_c00104{letter-spacing:17.920000pt;}
.ls4_c00104{letter-spacing:23.680000pt;}
.ws6_c00104{word-spacing:-16.128000pt;}
.ws4_c00104{word-spacing:-16.064000pt;}
.ws2_c00104{word-spacing:-16.000000pt;}
.ws1_c00104{word-spacing:-15.936000pt;}
.ws0_c00104{word-spacing:-15.872000pt;}
.ws5_c00104{word-spacing:-15.808000pt;}
.ws7_c00104{word-spacing:-15.744000pt;}
.ws9_c00104{word-spacing:-13.360000pt;}
.wsa_c00104{word-spacing:-13.146240pt;}
.ws3_c00104{word-spacing:-10.810240pt;}
.ws8_c00104{word-spacing:-8.640000pt;}
.wsf_c00104{word-spacing:-0.320000pt;}
.ws1c_c00104{word-spacing:-0.128000pt;}
.wse_c00104{word-spacing:-0.064000pt;}
.ws40_c00104{word-spacing:-0.053440pt;}
.wsb_c00104{word-spacing:0.000000pt;}
.wsd_c00104{word-spacing:0.144000pt;}
.wsc_c00104{word-spacing:0.240000pt;}
.ws37_c00104{word-spacing:0.256000pt;}
.ws3f_c00104{word-spacing:0.427520pt;}
.ws31_c00104{word-spacing:0.640000pt;}
.ws28_c00104{word-spacing:0.896000pt;}
.ws29_c00104{word-spacing:0.960000pt;}
.ws3e_c00104{word-spacing:1.216000pt;}
.ws3d_c00104{word-spacing:1.280000pt;}
.ws1a_c00104{word-spacing:2.176000pt;}
.ws19_c00104{word-spacing:2.240000pt;}
.ws10_c00104{word-spacing:2.496000pt;}
.ws11_c00104{word-spacing:2.560000pt;}
.ws21_c00104{word-spacing:3.712000pt;}
.ws34_c00104{word-spacing:4.032000pt;}
.ws35_c00104{word-spacing:4.160000pt;}
.ws16_c00104{word-spacing:4.416000pt;}
.ws3a_c00104{word-spacing:4.480000pt;}
.ws39_c00104{word-spacing:4.544000pt;}
.ws30_c00104{word-spacing:6.272000pt;}
.ws27_c00104{word-spacing:6.656000pt;}
.ws26_c00104{word-spacing:6.720000pt;}
.ws33_c00104{word-spacing:7.296000pt;}
.ws32_c00104{word-spacing:7.360000pt;}
.ws13_c00104{word-spacing:7.936000pt;}
.ws14_c00104{word-spacing:8.000000pt;}
.ws1f_c00104{word-spacing:9.152000pt;}
.ws22_c00104{word-spacing:9.216000pt;}
.ws20_c00104{word-spacing:9.280000pt;}
.ws15_c00104{word-spacing:9.856000pt;}
.ws2c_c00104{word-spacing:12.160000pt;}
.ws2b_c00104{word-spacing:12.480000pt;}
.ws18_c00104{word-spacing:15.552000pt;}
.ws17_c00104{word-spacing:15.680000pt;}
.ws3c_c00104{word-spacing:16.896000pt;}
.ws3b_c00104{word-spacing:16.960000pt;}
.ws38_c00104{word-spacing:17.600000pt;}
.ws36_c00104{word-spacing:17.856000pt;}
.ws2d_c00104{word-spacing:18.496000pt;}
.ws2e_c00104{word-spacing:18.880000pt;}
.ws1e_c00104{word-spacing:19.392000pt;}
.ws1b_c00104{word-spacing:19.456000pt;}
.ws1d_c00104{word-spacing:19.520000pt;}
.ws2a_c00104{word-spacing:21.696000pt;}
.ws2f_c00104{word-spacing:23.296000pt;}
.ws23_c00104{word-spacing:23.616000pt;}
.ws24_c00104{word-spacing:23.680000pt;}
.ws25_c00104{word-spacing:23.936000pt;}
.ws12_c00104{word-spacing:34.240000pt;}
._1_c00104{margin-left:-0.940800pt;}
._0_c00104{width:1.084800pt;}
._3_c00104{width:2.432000pt;}
._9_c00104{width:4.480000pt;}
._7_c00104{width:6.211200pt;}
._2_c00104{width:7.129600pt;}
._6_c00104{width:8.569600pt;}
._8_c00104{width:11.776000pt;}
._b_c00104{width:17.024000pt;}
._a_c00104{width:18.112000pt;}
._4_c00104{width:19.052800pt;}
._5_c00104{width:20.051200pt;}
.fs3_c00104{font-size:34.560000pt;}
.fs2_c00104{font-size:42.560000pt;}
.fs0_c00104{font-size:48.000000pt;}
.fs4_c00104{font-size:53.440000pt;}
.fs1_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y26_c00104{bottom:50.880000pt;}
.y25_c00104{bottom:102.240000pt;}
.y27_c00104{bottom:113.520000pt;}
.y24_c00104{bottom:159.040000pt;}
.y23_c00104{bottom:186.640000pt;}
.y22_c00104{bottom:214.240000pt;}
.y21_c00104{bottom:241.840000pt;}
.y20_c00104{bottom:269.440000pt;}
.y1f_c00104{bottom:297.040000pt;}
.y1e_c00104{bottom:324.640000pt;}
.y1d_c00104{bottom:352.240000pt;}
.y1c_c00104{bottom:379.840000pt;}
.y1b_c00104{bottom:407.440000pt;}
.y1a_c00104{bottom:435.040000pt;}
.y19_c00104{bottom:462.640000pt;}
.y18_c00104{bottom:490.240000pt;}
.y17_c00104{bottom:517.840000pt;}
.y16_c00104{bottom:545.440000pt;}
.y15_c00104{bottom:573.040000pt;}
.y14_c00104{bottom:600.640000pt;}
.y13_c00104{bottom:628.240000pt;}
.y12_c00104{bottom:655.840000pt;}
.y11_c00104{bottom:683.440000pt;}
.y10_c00104{bottom:711.040000pt;}
.yf_c00104{bottom:738.640000pt;}
.ye_c00104{bottom:766.160000pt;}
.yd_c00104{bottom:793.760000pt;}
.yc_c00104{bottom:821.360000pt;}
.yb_c00104{bottom:848.960000pt;}
.ya_c00104{bottom:876.560000pt;}
.y9_c00104{bottom:904.160000pt;}
.y8_c00104{bottom:931.760000pt;}
.y7_c00104{bottom:959.360000pt;}
.y6_c00104{bottom:986.960000pt;}
.y5_c00104{bottom:1005.360000pt;}
.y4_c00104{bottom:1023.040000pt;}
.y3_c00104{bottom:1036.804000pt;}
.y2_c00104{bottom:1050.640000pt;}
.y1_c00104{bottom:1064.400000pt;}
.h6_c00104{height:33.918750pt;}
.h3_c00104{height:47.085938pt;}
.h2_c00104{height:47.109375pt;}
.h4_c00104{height:62.812500pt;}
.h5_c00104{height:65.770313pt;}
.h0_c00104{height:1122.560000pt;}
.h1_c00104{height:1122.666667pt;}
.w0_c00104{width:793.840000pt;}
.w1_c00104{width:794.000000pt;}
.x0_c00104{left:0.000000pt;}
.x3_c00104{left:113.440000pt;}
.x2_c00104{left:377.920000pt;}
.x1_c00104{left:396.960000pt;}
.x4_c00104{left:664.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_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_c72683e457294e14723aad18.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.284180;font-style:normal;font-weight:normal;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_0965b4d269c626c6ac2d26d0.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;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_c00105;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00105{vertical-align:-61.938000px;}
.v3_c00105{vertical-align:-20.880000px;}
.v0_c00105{vertical-align:0.000000px;}
.v2_c00105{vertical-align:27.000000px;}
.ls13_c00105{letter-spacing:-0.360000px;}
.ls12_c00105{letter-spacing:-0.288000px;}
.ls10_c00105{letter-spacing:-0.216000px;}
.ls11_c00105{letter-spacing:-0.072000px;}
.ls14_c00105{letter-spacing:-0.060120px;}
.lse_c00105{letter-spacing:0.000000px;}
.ls2_c00105{letter-spacing:0.072000px;}
.lsd_c00105{letter-spacing:0.120240px;}
.ls4_c00105{letter-spacing:0.144000px;}
.lsf_c00105{letter-spacing:0.191520px;}
.ls9_c00105{letter-spacing:0.720000px;}
.lsa_c00105{letter-spacing:1.087200px;}
.ls7_c00105{letter-spacing:1.800000px;}
.lsb_c00105{letter-spacing:4.680000px;}
.ls8_c00105{letter-spacing:5.760000px;}
.lsc_c00105{letter-spacing:7.920000px;}
.ls6_c00105{letter-spacing:15.120000px;}
.ls1_c00105{letter-spacing:25.200000px;}
.ls3_c00105{letter-spacing:30.744000px;}
.ls5_c00105{letter-spacing:34.920000px;}
.ls0_c00105{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00105{word-spacing:-18.144000px;}
.ws0_c00105{word-spacing:-18.072000px;}
.ws5_c00105{word-spacing:-18.000000px;}
.ws4_c00105{word-spacing:-17.928000px;}
.ws3_c00105{word-spacing:-17.784000px;}
.ws6_c00105{word-spacing:-17.712000px;}
.ws7_c00105{word-spacing:-17.640000px;}
.ws1_c00105{word-spacing:-12.161520px;}
.ws8_c00105{word-spacing:-9.720000px;}
.ws11_c00105{word-spacing:-0.504000px;}
.ws10_c00105{word-spacing:-0.432000px;}
.ws17_c00105{word-spacing:-0.360000px;}
.wsa_c00105{word-spacing:-0.162000px;}
.ws12_c00105{word-spacing:-0.144000px;}
.wsc_c00105{word-spacing:-0.072000px;}
.ws9_c00105{word-spacing:0.000000px;}
.ws30_c00105{word-spacing:0.180360px;}
.ws2a_c00105{word-spacing:0.360000px;}
.ws1e_c00105{word-spacing:0.648000px;}
.ws2f_c00105{word-spacing:0.720000px;}
.ws2e_c00105{word-spacing:0.936000px;}
.ws1c_c00105{word-spacing:1.008000px;}
.ws1d_c00105{word-spacing:1.080000px;}
.ws19_c00105{word-spacing:1.728000px;}
.ws18_c00105{word-spacing:1.800000px;}
.ws27_c00105{word-spacing:3.240000px;}
.ws26_c00105{word-spacing:3.528000px;}
.ws21_c00105{word-spacing:3.888000px;}
.wse_c00105{word-spacing:4.176000px;}
.wsf_c00105{word-spacing:4.248000px;}
.wsd_c00105{word-spacing:4.320000px;}
.ws22_c00105{word-spacing:5.040000px;}
.ws1b_c00105{word-spacing:5.688000px;}
.ws1a_c00105{word-spacing:5.760000px;}
.ws2c_c00105{word-spacing:7.776000px;}
.ws2b_c00105{word-spacing:7.920000px;}
.ws2d_c00105{word-spacing:8.208000px;}
.ws1f_c00105{word-spacing:10.728000px;}
.ws20_c00105{word-spacing:10.800000px;}
.ws25_c00105{word-spacing:14.328000px;}
.ws23_c00105{word-spacing:14.688000px;}
.ws24_c00105{word-spacing:14.760000px;}
.ws15_c00105{word-spacing:15.048000px;}
.ws16_c00105{word-spacing:15.120000px;}
.ws28_c00105{word-spacing:18.936000px;}
.wsb_c00105{word-spacing:25.560000px;}
.ws29_c00105{word-spacing:28.368000px;}
.ws13_c00105{word-spacing:34.848000px;}
.ws14_c00105{word-spacing:34.920000px;}
._1_c00105{margin-left:-1.080000px;}
._0_c00105{width:1.944000px;}
._4_c00105{width:3.672000px;}
._3_c00105{width:15.192000px;}
._2_c00105{width:35.424000px;}
.fc0_c00105{color:rgb(0,0,0);}
.fs3_c00105{font-size:38.880000px;}
.fs2_c00105{font-size:47.880000px;}
.fs0_c00105{font-size:54.000000px;}
.fs4_c00105{font-size:60.120000px;}
.fs1_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y24_c00105{bottom:57.240000px;}
.y23_c00105{bottom:115.020000px;}
.y25_c00105{bottom:127.710000px;}
.y22_c00105{bottom:209.970000px;}
.y21_c00105{bottom:241.020000px;}
.y20_c00105{bottom:272.070000px;}
.y1f_c00105{bottom:303.120000px;}
.y1e_c00105{bottom:334.170000px;}
.y1d_c00105{bottom:365.220000px;}
.y1c_c00105{bottom:396.270000px;}
.y1b_c00105{bottom:427.320000px;}
.y1a_c00105{bottom:458.370000px;}
.y19_c00105{bottom:489.420000px;}
.y18_c00105{bottom:520.470000px;}
.y17_c00105{bottom:551.520000px;}
.y16_c00105{bottom:582.570000px;}
.y15_c00105{bottom:613.620000px;}
.y14_c00105{bottom:644.670000px;}
.y13_c00105{bottom:675.720000px;}
.y12_c00105{bottom:706.770000px;}
.y11_c00105{bottom:737.820000px;}
.y10_c00105{bottom:768.870000px;}
.yf_c00105{bottom:799.920000px;}
.ye_c00105{bottom:830.970000px;}
.yd_c00105{bottom:861.930000px;}
.yc_c00105{bottom:892.980000px;}
.yb_c00105{bottom:924.030000px;}
.ya_c00105{bottom:955.080000px;}
.y9_c00105{bottom:986.130000px;}
.y8_c00105{bottom:1017.180000px;}
.y7_c00105{bottom:1048.230000px;}
.y6_c00105{bottom:1079.280000px;}
.y5_c00105{bottom:1110.330000px;}
.y4_c00105{bottom:1131.030000px;}
.y3_c00105{bottom:1150.915500px;}
.y2_c00105{bottom:1166.400000px;}
.y1_c00105{bottom:1197.450000px;}
.h6_c00105{height:38.158594px;}
.h2_c00105{height:52.998047px;}
.h3_c00105{height:70.664062px;}
.h4_c00105{height:73.991602px;}
.h5_c00105{height:75.093750px;}
.h0_c00105{height:1262.880000px;}
.h1_c00105{height:1263.000000px;}
.w0_c00105{width:893.070000px;}
.w1_c00105{width:893.250000px;}
.x0_c00105{left:0.000000px;}
.x2_c00105{left:127.620000px;}
.x3_c00105{left:154.620000px;}
.x1_c00105{left:446.580000px;}
@media print{
.v1_c00105{vertical-align:-55.056000pt;}
.v3_c00105{vertical-align:-18.560000pt;}
.v0_c00105{vertical-align:0.000000pt;}
.v2_c00105{vertical-align:24.000000pt;}
.ls13_c00105{letter-spacing:-0.320000pt;}
.ls12_c00105{letter-spacing:-0.256000pt;}
.ls10_c00105{letter-spacing:-0.192000pt;}
.ls11_c00105{letter-spacing:-0.064000pt;}
.ls14_c00105{letter-spacing:-0.053440pt;}
.lse_c00105{letter-spacing:0.000000pt;}
.ls2_c00105{letter-spacing:0.064000pt;}
.lsd_c00105{letter-spacing:0.106880pt;}
.ls4_c00105{letter-spacing:0.128000pt;}
.lsf_c00105{letter-spacing:0.170240pt;}
.ls9_c00105{letter-spacing:0.640000pt;}
.lsa_c00105{letter-spacing:0.966400pt;}
.ls7_c00105{letter-spacing:1.600000pt;}
.lsb_c00105{letter-spacing:4.160000pt;}
.ls8_c00105{letter-spacing:5.120000pt;}
.lsc_c00105{letter-spacing:7.040000pt;}
.ls6_c00105{letter-spacing:13.440000pt;}
.ls1_c00105{letter-spacing:22.400000pt;}
.ls3_c00105{letter-spacing:27.328000pt;}
.ls5_c00105{letter-spacing:31.040000pt;}
.ls0_c00105{letter-spacing:284.016000pt;}
.ws2_c00105{word-spacing:-16.128000pt;}
.ws0_c00105{word-spacing:-16.064000pt;}
.ws5_c00105{word-spacing:-16.000000pt;}
.ws4_c00105{word-spacing:-15.936000pt;}
.ws3_c00105{word-spacing:-15.808000pt;}
.ws6_c00105{word-spacing:-15.744000pt;}
.ws7_c00105{word-spacing:-15.680000pt;}
.ws1_c00105{word-spacing:-10.810240pt;}
.ws8_c00105{word-spacing:-8.640000pt;}
.ws11_c00105{word-spacing:-0.448000pt;}
.ws10_c00105{word-spacing:-0.384000pt;}
.ws17_c00105{word-spacing:-0.320000pt;}
.wsa_c00105{word-spacing:-0.144000pt;}
.ws12_c00105{word-spacing:-0.128000pt;}
.wsc_c00105{word-spacing:-0.064000pt;}
.ws9_c00105{word-spacing:0.000000pt;}
.ws30_c00105{word-spacing:0.160320pt;}
.ws2a_c00105{word-spacing:0.320000pt;}
.ws1e_c00105{word-spacing:0.576000pt;}
.ws2f_c00105{word-spacing:0.640000pt;}
.ws2e_c00105{word-spacing:0.832000pt;}
.ws1c_c00105{word-spacing:0.896000pt;}
.ws1d_c00105{word-spacing:0.960000pt;}
.ws19_c00105{word-spacing:1.536000pt;}
.ws18_c00105{word-spacing:1.600000pt;}
.ws27_c00105{word-spacing:2.880000pt;}
.ws26_c00105{word-spacing:3.136000pt;}
.ws21_c00105{word-spacing:3.456000pt;}
.wse_c00105{word-spacing:3.712000pt;}
.wsf_c00105{word-spacing:3.776000pt;}
.wsd_c00105{word-spacing:3.840000pt;}
.ws22_c00105{word-spacing:4.480000pt;}
.ws1b_c00105{word-spacing:5.056000pt;}
.ws1a_c00105{word-spacing:5.120000pt;}
.ws2c_c00105{word-spacing:6.912000pt;}
.ws2b_c00105{word-spacing:7.040000pt;}
.ws2d_c00105{word-spacing:7.296000pt;}
.ws1f_c00105{word-spacing:9.536000pt;}
.ws20_c00105{word-spacing:9.600000pt;}
.ws25_c00105{word-spacing:12.736000pt;}
.ws23_c00105{word-spacing:13.056000pt;}
.ws24_c00105{word-spacing:13.120000pt;}
.ws15_c00105{word-spacing:13.376000pt;}
.ws16_c00105{word-spacing:13.440000pt;}
.ws28_c00105{word-spacing:16.832000pt;}
.wsb_c00105{word-spacing:22.720000pt;}
.ws29_c00105{word-spacing:25.216000pt;}
.ws13_c00105{word-spacing:30.976000pt;}
.ws14_c00105{word-spacing:31.040000pt;}
._1_c00105{margin-left:-0.960000pt;}
._0_c00105{width:1.728000pt;}
._4_c00105{width:3.264000pt;}
._3_c00105{width:13.504000pt;}
._2_c00105{width:31.488000pt;}
.fs3_c00105{font-size:34.560000pt;}
.fs2_c00105{font-size:42.560000pt;}
.fs0_c00105{font-size:48.000000pt;}
.fs4_c00105{font-size:53.440000pt;}
.fs1_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y24_c00105{bottom:50.880000pt;}
.y23_c00105{bottom:102.240000pt;}
.y25_c00105{bottom:113.520000pt;}
.y22_c00105{bottom:186.640000pt;}
.y21_c00105{bottom:214.240000pt;}
.y20_c00105{bottom:241.840000pt;}
.y1f_c00105{bottom:269.440000pt;}
.y1e_c00105{bottom:297.040000pt;}
.y1d_c00105{bottom:324.640000pt;}
.y1c_c00105{bottom:352.240000pt;}
.y1b_c00105{bottom:379.840000pt;}
.y1a_c00105{bottom:407.440000pt;}
.y19_c00105{bottom:435.040000pt;}
.y18_c00105{bottom:462.640000pt;}
.y17_c00105{bottom:490.240000pt;}
.y16_c00105{bottom:517.840000pt;}
.y15_c00105{bottom:545.440000pt;}
.y14_c00105{bottom:573.040000pt;}
.y13_c00105{bottom:600.640000pt;}
.y12_c00105{bottom:628.240000pt;}
.y11_c00105{bottom:655.840000pt;}
.y10_c00105{bottom:683.440000pt;}
.yf_c00105{bottom:711.040000pt;}
.ye_c00105{bottom:738.640000pt;}
.yd_c00105{bottom:766.160000pt;}
.yc_c00105{bottom:793.760000pt;}
.yb_c00105{bottom:821.360000pt;}
.ya_c00105{bottom:848.960000pt;}
.y9_c00105{bottom:876.560000pt;}
.y8_c00105{bottom:904.160000pt;}
.y7_c00105{bottom:931.760000pt;}
.y6_c00105{bottom:959.360000pt;}
.y5_c00105{bottom:986.960000pt;}
.y4_c00105{bottom:1005.360000pt;}
.y3_c00105{bottom:1023.036000pt;}
.y2_c00105{bottom:1036.800000pt;}
.y1_c00105{bottom:1064.400000pt;}
.h6_c00105{height:33.918750pt;}
.h2_c00105{height:47.109375pt;}
.h3_c00105{height:62.812500pt;}
.h4_c00105{height:65.770312pt;}
.h5_c00105{height:66.750000pt;}
.h0_c00105{height:1122.560000pt;}
.h1_c00105{height:1122.666667pt;}
.w0_c00105{width:793.840000pt;}
.w1_c00105{width:794.000000pt;}
.x0_c00105{left:0.000000pt;}
.x2_c00105{left:113.440000pt;}
.x3_c00105{left:137.440000pt;}
.x1_c00105{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9c1860a8b1e194d32a0ccc1.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_47eec3ef98f16710a6eeb750.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;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_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3_c00106{vertical-align:-20.880000px;}
.v2_c00106{vertical-align:-2.880000px;}
.v0_c00106{vertical-align:0.000000px;}
.v1_c00106{vertical-align:27.000000px;}
.lsc_c00106{letter-spacing:-0.360000px;}
.lsf_c00106{letter-spacing:-0.288000px;}
.lse_c00106{letter-spacing:-0.216000px;}
.ls10_c00106{letter-spacing:-0.144000px;}
.lsb_c00106{letter-spacing:-0.108000px;}
.ls12_c00106{letter-spacing:-0.095760px;}
.ls11_c00106{letter-spacing:-0.072000px;}
.ls13_c00106{letter-spacing:-0.060120px;}
.lsa_c00106{letter-spacing:0.000000px;}
.ls5_c00106{letter-spacing:0.009360px;}
.ls0_c00106{letter-spacing:0.072000px;}
.ls3_c00106{letter-spacing:0.144000px;}
.ls6_c00106{letter-spacing:0.180000px;}
.lsd_c00106{letter-spacing:0.191520px;}
.ls8_c00106{letter-spacing:0.720000px;}
.ls1_c00106{letter-spacing:1.440000px;}
.ls4_c00106{letter-spacing:6.120000px;}
.ls9_c00106{letter-spacing:7.995960px;}
.ls2_c00106{letter-spacing:31.680000px;}
.ls7_c00106{letter-spacing:87.480000px;}
.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;}
}
.ws2_c00106{word-spacing:-18.144000px;}
.ws0_c00106{word-spacing:-18.072000px;}
.ws1_c00106{word-spacing:-18.000000px;}
.ws6_c00106{word-spacing:-17.928000px;}
.ws4_c00106{word-spacing:-17.856000px;}
.ws3_c00106{word-spacing:-12.161520px;}
.ws5_c00106{word-spacing:-11.970000px;}
.ws7_c00106{word-spacing:-9.720000px;}
.ws12_c00106{word-spacing:-0.432000px;}
.ws2a_c00106{word-spacing:-0.360000px;}
.ws28_c00106{word-spacing:-0.191520px;}
.ws31_c00106{word-spacing:-0.180360px;}
.wsf_c00106{word-spacing:-0.144000px;}
.ws29_c00106{word-spacing:-0.095760px;}
.ws16_c00106{word-spacing:-0.072000px;}
.ws8_c00106{word-spacing:0.000000px;}
.ws2e_c00106{word-spacing:0.072000px;}
.wsa_c00106{word-spacing:0.162000px;}
.ws30_c00106{word-spacing:0.180360px;}
.ws22_c00106{word-spacing:0.216000px;}
.ws9_c00106{word-spacing:0.270000px;}
.ws17_c00106{word-spacing:0.360000px;}
.ws2c_c00106{word-spacing:0.648000px;}
.ws2d_c00106{word-spacing:0.720000px;}
.ws11_c00106{word-spacing:1.368000px;}
.ws10_c00106{word-spacing:1.440000px;}
.ws18_c00106{word-spacing:2.808000px;}
.wse_c00106{word-spacing:3.600000px;}
.wsd_c00106{word-spacing:4.248000px;}
.wsb_c00106{word-spacing:4.608000px;}
.wsc_c00106{word-spacing:4.680000px;}
.ws13_c00106{word-spacing:5.688000px;}
.ws14_c00106{word-spacing:5.760000px;}
.ws21_c00106{word-spacing:5.976000px;}
.ws1f_c00106{word-spacing:6.048000px;}
.ws20_c00106{word-spacing:6.120000px;}
.ws2f_c00106{word-spacing:8.056080px;}
.ws2b_c00106{word-spacing:9.288000px;}
.ws1c_c00106{word-spacing:9.360000px;}
.ws1d_c00106{word-spacing:9.648000px;}
.ws1e_c00106{word-spacing:9.720000px;}
.ws15_c00106{word-spacing:11.520000px;}
.ws25_c00106{word-spacing:16.056000px;}
.ws26_c00106{word-spacing:16.128000px;}
.ws24_c00106{word-spacing:16.488000px;}
.ws23_c00106{word-spacing:16.848000px;}
.ws27_c00106{word-spacing:17.928000px;}
.ws1b_c00106{word-spacing:31.608000px;}
.ws1a_c00106{word-spacing:33.768000px;}
.ws19_c00106{word-spacing:33.840000px;}
._1_c00106{margin-left:-1.058400px;}
._0_c00106{width:1.220400px;}
._5_c00106{width:2.232000px;}
._2_c00106{width:4.896000px;}
._4_c00106{width:6.436800px;}
._9_c00106{width:9.266400px;}
._3_c00106{width:11.376000px;}
._6_c00106{width:16.768800px;}
._7_c00106{width:89.899920px;}
._8_c00106{width:97.848000px;}
.fc0_c00106{color:rgb(0,0,0);}
.fs3_c00106{font-size:38.880000px;}
.fs2_c00106{font-size:47.880000px;}
.fs0_c00106{font-size:54.000000px;}
.fs4_c00106{font-size:60.120000px;}
.fs1_c00106{font-size:72.000000px;}
.y0_c00106{bottom:0.000000px;}
.y28_c00106{bottom:57.240000px;}
.y27_c00106{bottom:109.795680px;}
.y26_c00106{bottom:132.210000px;}
.y29_c00106{bottom:144.900000px;}
.y25_c00106{bottom:189.270000px;}
.y24_c00106{bottom:220.320000px;}
.y23_c00106{bottom:251.370000px;}
.y22_c00106{bottom:282.420000px;}
.y21_c00106{bottom:313.470000px;}
.y20_c00106{bottom:344.520000px;}
.y1f_c00106{bottom:375.570000px;}
.y1e_c00106{bottom:406.620000px;}
.y1d_c00106{bottom:437.670000px;}
.y1c_c00106{bottom:458.370000px;}
.y1b_c00106{bottom:479.070000px;}
.y1a_c00106{bottom:499.770000px;}
.y19_c00106{bottom:520.470000px;}
.y18_c00106{bottom:551.520000px;}
.y17_c00106{bottom:582.570000px;}
.y16_c00106{bottom:613.620000px;}
.y15_c00106{bottom:644.670000px;}
.y14_c00106{bottom:675.720000px;}
.y13_c00106{bottom:706.770000px;}
.y12_c00106{bottom:737.820000px;}
.y11_c00106{bottom:768.870000px;}
.y10_c00106{bottom:799.920000px;}
.yf_c00106{bottom:830.970000px;}
.ye_c00106{bottom:861.930000px;}
.yd_c00106{bottom:892.980000px;}
.yc_c00106{bottom:924.030000px;}
.yb_c00106{bottom:955.080000px;}
.ya_c00106{bottom:986.130000px;}
.y9_c00106{bottom:1017.180000px;}
.y8_c00106{bottom:1048.230000px;}
.y7_c00106{bottom:1079.280000px;}
.y6_c00106{bottom:1110.330000px;}
.y5_c00106{bottom:1131.030000px;}
.y4_c00106{bottom:1150.920000px;}
.y3_c00106{bottom:1166.404500px;}
.y2_c00106{bottom:1181.970000px;}
.y1_c00106{bottom:1197.450000px;}
.h6_c00106{height:38.158594px;}
.h3_c00106{height:52.971680px;}
.h2_c00106{height:52.998047px;}
.h7_c00106{height:59.004492px;}
.h4_c00106{height:70.664062px;}
.h5_c00106{height:73.991602px;}
.h0_c00106{height:1262.880000px;}
.h1_c00106{height:1263.000000px;}
.w0_c00106{width:893.070000px;}
.w1_c00106{width:893.250000px;}
.x0_c00106{left:0.000000px;}
.x3_c00106{left:127.620000px;}
.x4_c00106{left:149.310000px;}
.x6_c00106{left:203.310000px;}
.x5_c00106{left:274.770000px;}
.x2_c00106{left:425.160000px;}
.x1_c00106{left:446.580000px;}
.x7_c00106{left:747.540000px;}
@media print{
.v3_c00106{vertical-align:-18.560000pt;}
.v2_c00106{vertical-align:-2.560000pt;}
.v0_c00106{vertical-align:0.000000pt;}
.v1_c00106{vertical-align:24.000000pt;}
.lsc_c00106{letter-spacing:-0.320000pt;}
.lsf_c00106{letter-spacing:-0.256000pt;}
.lse_c00106{letter-spacing:-0.192000pt;}
.ls10_c00106{letter-spacing:-0.128000pt;}
.lsb_c00106{letter-spacing:-0.096000pt;}
.ls12_c00106{letter-spacing:-0.085120pt;}
.ls11_c00106{letter-spacing:-0.064000pt;}
.ls13_c00106{letter-spacing:-0.053440pt;}
.lsa_c00106{letter-spacing:0.000000pt;}
.ls5_c00106{letter-spacing:0.008320pt;}
.ls0_c00106{letter-spacing:0.064000pt;}
.ls3_c00106{letter-spacing:0.128000pt;}
.ls6_c00106{letter-spacing:0.160000pt;}
.lsd_c00106{letter-spacing:0.170240pt;}
.ls8_c00106{letter-spacing:0.640000pt;}
.ls1_c00106{letter-spacing:1.280000pt;}
.ls4_c00106{letter-spacing:5.440000pt;}
.ls9_c00106{letter-spacing:7.107520pt;}
.ls2_c00106{letter-spacing:28.160000pt;}
.ls7_c00106{letter-spacing:77.760000pt;}
.ws2_c00106{word-spacing:-16.128000pt;}
.ws0_c00106{word-spacing:-16.064000pt;}
.ws1_c00106{word-spacing:-16.000000pt;}
.ws6_c00106{word-spacing:-15.936000pt;}
.ws4_c00106{word-spacing:-15.872000pt;}
.ws3_c00106{word-spacing:-10.810240pt;}
.ws5_c00106{word-spacing:-10.640000pt;}
.ws7_c00106{word-spacing:-8.640000pt;}
.ws12_c00106{word-spacing:-0.384000pt;}
.ws2a_c00106{word-spacing:-0.320000pt;}
.ws28_c00106{word-spacing:-0.170240pt;}
.ws31_c00106{word-spacing:-0.160320pt;}
.wsf_c00106{word-spacing:-0.128000pt;}
.ws29_c00106{word-spacing:-0.085120pt;}
.ws16_c00106{word-spacing:-0.064000pt;}
.ws8_c00106{word-spacing:0.000000pt;}
.ws2e_c00106{word-spacing:0.064000pt;}
.wsa_c00106{word-spacing:0.144000pt;}
.ws30_c00106{word-spacing:0.160320pt;}
.ws22_c00106{word-spacing:0.192000pt;}
.ws9_c00106{word-spacing:0.240000pt;}
.ws17_c00106{word-spacing:0.320000pt;}
.ws2c_c00106{word-spacing:0.576000pt;}
.ws2d_c00106{word-spacing:0.640000pt;}
.ws11_c00106{word-spacing:1.216000pt;}
.ws10_c00106{word-spacing:1.280000pt;}
.ws18_c00106{word-spacing:2.496000pt;}
.wse_c00106{word-spacing:3.200000pt;}
.wsd_c00106{word-spacing:3.776000pt;}
.wsb_c00106{word-spacing:4.096000pt;}
.wsc_c00106{word-spacing:4.160000pt;}
.ws13_c00106{word-spacing:5.056000pt;}
.ws14_c00106{word-spacing:5.120000pt;}
.ws21_c00106{word-spacing:5.312000pt;}
.ws1f_c00106{word-spacing:5.376000pt;}
.ws20_c00106{word-spacing:5.440000pt;}
.ws2f_c00106{word-spacing:7.160960pt;}
.ws2b_c00106{word-spacing:8.256000pt;}
.ws1c_c00106{word-spacing:8.320000pt;}
.ws1d_c00106{word-spacing:8.576000pt;}
.ws1e_c00106{word-spacing:8.640000pt;}
.ws15_c00106{word-spacing:10.240000pt;}
.ws25_c00106{word-spacing:14.272000pt;}
.ws26_c00106{word-spacing:14.336000pt;}
.ws24_c00106{word-spacing:14.656000pt;}
.ws23_c00106{word-spacing:14.976000pt;}
.ws27_c00106{word-spacing:15.936000pt;}
.ws1b_c00106{word-spacing:28.096000pt;}
.ws1a_c00106{word-spacing:30.016000pt;}
.ws19_c00106{word-spacing:30.080000pt;}
._1_c00106{margin-left:-0.940800pt;}
._0_c00106{width:1.084800pt;}
._5_c00106{width:1.984000pt;}
._2_c00106{width:4.352000pt;}
._4_c00106{width:5.721600pt;}
._9_c00106{width:8.236800pt;}
._3_c00106{width:10.112000pt;}
._6_c00106{width:14.905600pt;}
._7_c00106{width:79.911040pt;}
._8_c00106{width:86.976000pt;}
.fs3_c00106{font-size:34.560000pt;}
.fs2_c00106{font-size:42.560000pt;}
.fs0_c00106{font-size:48.000000pt;}
.fs4_c00106{font-size:53.440000pt;}
.fs1_c00106{font-size:64.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y28_c00106{bottom:50.880000pt;}
.y27_c00106{bottom:97.596160pt;}
.y26_c00106{bottom:117.520000pt;}
.y29_c00106{bottom:128.800000pt;}
.y25_c00106{bottom:168.240000pt;}
.y24_c00106{bottom:195.840000pt;}
.y23_c00106{bottom:223.440000pt;}
.y22_c00106{bottom:251.040000pt;}
.y21_c00106{bottom:278.640000pt;}
.y20_c00106{bottom:306.240000pt;}
.y1f_c00106{bottom:333.840000pt;}
.y1e_c00106{bottom:361.440000pt;}
.y1d_c00106{bottom:389.040000pt;}
.y1c_c00106{bottom:407.440000pt;}
.y1b_c00106{bottom:425.840000pt;}
.y1a_c00106{bottom:444.240000pt;}
.y19_c00106{bottom:462.640000pt;}
.y18_c00106{bottom:490.240000pt;}
.y17_c00106{bottom:517.840000pt;}
.y16_c00106{bottom:545.440000pt;}
.y15_c00106{bottom:573.040000pt;}
.y14_c00106{bottom:600.640000pt;}
.y13_c00106{bottom:628.240000pt;}
.y12_c00106{bottom:655.840000pt;}
.y11_c00106{bottom:683.440000pt;}
.y10_c00106{bottom:711.040000pt;}
.yf_c00106{bottom:738.640000pt;}
.ye_c00106{bottom:766.160000pt;}
.yd_c00106{bottom:793.760000pt;}
.yc_c00106{bottom:821.360000pt;}
.yb_c00106{bottom:848.960000pt;}
.ya_c00106{bottom:876.560000pt;}
.y9_c00106{bottom:904.160000pt;}
.y8_c00106{bottom:931.760000pt;}
.y7_c00106{bottom:959.360000pt;}
.y6_c00106{bottom:986.960000pt;}
.y5_c00106{bottom:1005.360000pt;}
.y4_c00106{bottom:1023.040000pt;}
.y3_c00106{bottom:1036.804000pt;}
.y2_c00106{bottom:1050.640000pt;}
.y1_c00106{bottom:1064.400000pt;}
.h6_c00106{height:33.918750pt;}
.h3_c00106{height:47.085938pt;}
.h2_c00106{height:47.109375pt;}
.h7_c00106{height:52.448437pt;}
.h4_c00106{height:62.812500pt;}
.h5_c00106{height:65.770313pt;}
.h0_c00106{height:1122.560000pt;}
.h1_c00106{height:1122.666667pt;}
.w0_c00106{width:793.840000pt;}
.w1_c00106{width:794.000000pt;}
.x0_c00106{left:0.000000pt;}
.x3_c00106{left:113.440000pt;}
.x4_c00106{left:132.720000pt;}
.x6_c00106{left:180.720000pt;}
.x5_c00106{left:244.240000pt;}
.x2_c00106{left:377.920000pt;}
.x1_c00106{left:396.960000pt;}
.x7_c00106{left:664.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_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_412f69d76c31cd1f94601bf1.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_cdc99e3b8f6f9e12d569ea67.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00107;src:url('chunks/assets/font_325da81d0cbe862d0a75a9fe.woff2')format("woff");}.ff4_c00107{font-family:ff4_c00107;line-height:1.142090;font-style: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);}
.v3_c00107{vertical-align:-85.680000px;}
.v2_c00107{vertical-align:-82.800000px;}
.v1_c00107{vertical-align:-61.938000px;}
.v4_c00107{vertical-align:-2.880000px;}
.v0_c00107{vertical-align:0.000000px;}
.v5_c00107{vertical-align:29.877120px;}
.ls11_c00107{letter-spacing:-0.360000px;}
.lsf_c00107{letter-spacing:-0.216000px;}
.ls10_c00107{letter-spacing:-0.144000px;}
.lse_c00107{letter-spacing:-0.072000px;}
.lsb_c00107{letter-spacing:0.000000px;}
.ls4_c00107{letter-spacing:0.009360px;}
.ls2_c00107{letter-spacing:0.072000px;}
.lsd_c00107{letter-spacing:0.144000px;}
.ls9_c00107{letter-spacing:0.180000px;}
.ls5_c00107{letter-spacing:0.189360px;}
.lsc_c00107{letter-spacing:0.191520px;}
.ls6_c00107{letter-spacing:0.369360px;}
.ls8_c00107{letter-spacing:2.160000px;}
.ls3_c00107{letter-spacing:6.840000px;}
.lsa_c00107{letter-spacing:18.000000px;}
.ls7_c00107{letter-spacing:20.520000px;}
.ls1_c00107{letter-spacing:68.760000px;}
.ls0_c00107{letter-spacing:319.518000px;}
.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;}
}
.ws6_c00107{word-spacing:-39.528000px;}
.ws8_c00107{word-spacing:-18.144000px;}
.ws5_c00107{word-spacing:-18.072000px;}
.ws0_c00107{word-spacing:-18.000000px;}
.ws3_c00107{word-spacing:-17.928000px;}
.ws4_c00107{word-spacing:-17.856000px;}
.ws1_c00107{word-spacing:-17.784000px;}
.ws7_c00107{word-spacing:-17.640000px;}
.ws2_c00107{word-spacing:-11.970000px;}
.wsc_c00107{word-spacing:-0.432000px;}
.wsb_c00107{word-spacing:-0.191520px;}
.wsa_c00107{word-spacing:-0.162000px;}
.wsd_c00107{word-spacing:-0.144000px;}
.ws12_c00107{word-spacing:-0.095760px;}
.ws11_c00107{word-spacing:-0.072000px;}
.ws9_c00107{word-spacing:0.000000px;}
.ws10_c00107{word-spacing:0.072000px;}
.ws13_c00107{word-spacing:0.144000px;}
.ws14_c00107{word-spacing:1.008000px;}
.ws1d_c00107{word-spacing:2.088000px;}
.ws1e_c00107{word-spacing:2.160000px;}
.ws16_c00107{word-spacing:2.808000px;}
.ws15_c00107{word-spacing:3.240000px;}
.ws18_c00107{word-spacing:4.968000px;}
.ws19_c00107{word-spacing:5.040000px;}
.wse_c00107{word-spacing:7.128000px;}
.ws1a_c00107{word-spacing:9.000000px;}
.ws17_c00107{word-spacing:9.288000px;}
.ws1b_c00107{word-spacing:13.320000px;}
.ws1c_c00107{word-spacing:14.760000px;}
.wsf_c00107{word-spacing:19.728000px;}
._1_c00107{margin-left:-1.224000px;}
._3_c00107{width:1.512000px;}
._0_c00107{width:7.200000px;}
._4_c00107{width:8.856000px;}
._2_c00107{width:21.905280px;}
._5_c00107{width:140.688000px;}
._6_c00107{width:141.696000px;}
.fc0_c00107{color:rgb(0,0,0);}
.fs2_c00107{font-size:47.880000px;}
.fs0_c00107{font-size:54.000000px;}
.fs1_c00107{font-size:72.000000px;}
.y0_c00107{bottom:0.000000px;}
.y27_c00107{bottom:57.240000px;}
.y26_c00107{bottom:125.190000px;}
.y25_c00107{bottom:145.890000px;}
.y24_c00107{bottom:166.590000px;}
.y23_c00107{bottom:187.290000px;}
.y22_c00107{bottom:225.090000px;}
.y21_c00107{bottom:250.020000px;}
.y20_c00107{bottom:281.700000px;}
.y1f_c00107{bottom:313.470000px;}
.y1e_c00107{bottom:344.520000px;}
.y1d_c00107{bottom:375.570000px;}
.y1c_c00107{bottom:396.270000px;}
.y1b_c00107{bottom:416.970000px;}
.y1a_c00107{bottom:448.020000px;}
.y19_c00107{bottom:479.070000px;}
.y18_c00107{bottom:510.120000px;}
.y17_c00107{bottom:541.170000px;}
.y16_c00107{bottom:572.220000px;}
.y15_c00107{bottom:603.270000px;}
.y14_c00107{bottom:634.320000px;}
.y13_c00107{bottom:665.370000px;}
.y12_c00107{bottom:696.420000px;}
.y11_c00107{bottom:727.470000px;}
.y10_c00107{bottom:758.520000px;}
.yf_c00107{bottom:789.570000px;}
.ye_c00107{bottom:810.270000px;}
.yd_c00107{bottom:830.970000px;}
.yc_c00107{bottom:861.930000px;}
.yb_c00107{bottom:892.980000px;}
.ya_c00107{bottom:924.030000px;}
.y9_c00107{bottom:955.080000px;}
.y8_c00107{bottom:986.130000px;}
.y7_c00107{bottom:1017.180000px;}
.y6_c00107{bottom:1048.230000px;}
.y5_c00107{bottom:1079.280000px;}
.y4_c00107{bottom:1131.030000px;}
.y3_c00107{bottom:1150.915500px;}
.y2_c00107{bottom:1166.400000px;}
.y1_c00107{bottom:1197.450000px;}
.h6_c00107{height:46.991602px;}
.h2_c00107{height:52.998047px;}
.h3_c00107{height:70.664062px;}
.h4_c00107{height:72.562500px;}
.h5_c00107{height:73.988722px;}
.h0_c00107{height:1262.880000px;}
.h1_c00107{height:1263.000000px;}
.w0_c00107{width:893.070000px;}
.w1_c00107{width:893.250000px;}
.x0_c00107{left:0.000000px;}
.x2_c00107{left:127.620000px;}
.x3_c00107{left:149.310000px;}
.x5_c00107{left:296.010000px;}
.x7_c00107{left:357.210000px;}
.x9_c00107{left:360.630000px;}
.x4_c00107{left:376.470000px;}
.x6_c00107{left:418.770000px;}
.xa_c00107{left:433.980000px;}
.x8_c00107{left:441.900000px;}
.x1_c00107{left:446.580000px;}
@media print{
.v3_c00107{vertical-align:-76.160000pt;}
.v2_c00107{vertical-align:-73.600000pt;}
.v1_c00107{vertical-align:-55.056000pt;}
.v4_c00107{vertical-align:-2.560000pt;}
.v0_c00107{vertical-align:0.000000pt;}
.v5_c00107{vertical-align:26.557440pt;}
.ls11_c00107{letter-spacing:-0.320000pt;}
.lsf_c00107{letter-spacing:-0.192000pt;}
.ls10_c00107{letter-spacing:-0.128000pt;}
.lse_c00107{letter-spacing:-0.064000pt;}
.lsb_c00107{letter-spacing:0.000000pt;}
.ls4_c00107{letter-spacing:0.008320pt;}
.ls2_c00107{letter-spacing:0.064000pt;}
.lsd_c00107{letter-spacing:0.128000pt;}
.ls9_c00107{letter-spacing:0.160000pt;}
.ls5_c00107{letter-spacing:0.168320pt;}
.lsc_c00107{letter-spacing:0.170240pt;}
.ls6_c00107{letter-spacing:0.328320pt;}
.ls8_c00107{letter-spacing:1.920000pt;}
.ls3_c00107{letter-spacing:6.080000pt;}
.lsa_c00107{letter-spacing:16.000000pt;}
.ls7_c00107{letter-spacing:18.240000pt;}
.ls1_c00107{letter-spacing:61.120000pt;}
.ls0_c00107{letter-spacing:284.016000pt;}
.ws6_c00107{word-spacing:-35.136000pt;}
.ws8_c00107{word-spacing:-16.128000pt;}
.ws5_c00107{word-spacing:-16.064000pt;}
.ws0_c00107{word-spacing:-16.000000pt;}
.ws3_c00107{word-spacing:-15.936000pt;}
.ws4_c00107{word-spacing:-15.872000pt;}
.ws1_c00107{word-spacing:-15.808000pt;}
.ws7_c00107{word-spacing:-15.680000pt;}
.ws2_c00107{word-spacing:-10.640000pt;}
.wsc_c00107{word-spacing:-0.384000pt;}
.wsb_c00107{word-spacing:-0.170240pt;}
.wsa_c00107{word-spacing:-0.144000pt;}
.wsd_c00107{word-spacing:-0.128000pt;}
.ws12_c00107{word-spacing:-0.085120pt;}
.ws11_c00107{word-spacing:-0.064000pt;}
.ws9_c00107{word-spacing:0.000000pt;}
.ws10_c00107{word-spacing:0.064000pt;}
.ws13_c00107{word-spacing:0.128000pt;}
.ws14_c00107{word-spacing:0.896000pt;}
.ws1d_c00107{word-spacing:1.856000pt;}
.ws1e_c00107{word-spacing:1.920000pt;}
.ws16_c00107{word-spacing:2.496000pt;}
.ws15_c00107{word-spacing:2.880000pt;}
.ws18_c00107{word-spacing:4.416000pt;}
.ws19_c00107{word-spacing:4.480000pt;}
.wse_c00107{word-spacing:6.336000pt;}
.ws1a_c00107{word-spacing:8.000000pt;}
.ws17_c00107{word-spacing:8.256000pt;}
.ws1b_c00107{word-spacing:11.840000pt;}
.ws1c_c00107{word-spacing:13.120000pt;}
.wsf_c00107{word-spacing:17.536000pt;}
._1_c00107{margin-left:-1.088000pt;}
._3_c00107{width:1.344000pt;}
._0_c00107{width:6.400000pt;}
._4_c00107{width:7.872000pt;}
._2_c00107{width:19.471360pt;}
._5_c00107{width:125.056000pt;}
._6_c00107{width:125.952000pt;}
.fs2_c00107{font-size:42.560000pt;}
.fs0_c00107{font-size:48.000000pt;}
.fs1_c00107{font-size:64.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y27_c00107{bottom:50.880000pt;}
.y26_c00107{bottom:111.280000pt;}
.y25_c00107{bottom:129.680000pt;}
.y24_c00107{bottom:148.080000pt;}
.y23_c00107{bottom:166.480000pt;}
.y22_c00107{bottom:200.080000pt;}
.y21_c00107{bottom:222.240000pt;}
.y20_c00107{bottom:250.400000pt;}
.y1f_c00107{bottom:278.640000pt;}
.y1e_c00107{bottom:306.240000pt;}
.y1d_c00107{bottom:333.840000pt;}
.y1c_c00107{bottom:352.240000pt;}
.y1b_c00107{bottom:370.640000pt;}
.y1a_c00107{bottom:398.240000pt;}
.y19_c00107{bottom:425.840000pt;}
.y18_c00107{bottom:453.440000pt;}
.y17_c00107{bottom:481.040000pt;}
.y16_c00107{bottom:508.640000pt;}
.y15_c00107{bottom:536.240000pt;}
.y14_c00107{bottom:563.840000pt;}
.y13_c00107{bottom:591.440000pt;}
.y12_c00107{bottom:619.040000pt;}
.y11_c00107{bottom:646.640000pt;}
.y10_c00107{bottom:674.240000pt;}
.yf_c00107{bottom:701.840000pt;}
.ye_c00107{bottom:720.240000pt;}
.yd_c00107{bottom:738.640000pt;}
.yc_c00107{bottom:766.160000pt;}
.yb_c00107{bottom:793.760000pt;}
.ya_c00107{bottom:821.360000pt;}
.y9_c00107{bottom:848.960000pt;}
.y8_c00107{bottom:876.560000pt;}
.y7_c00107{bottom:904.160000pt;}
.y6_c00107{bottom:931.760000pt;}
.y5_c00107{bottom:959.360000pt;}
.y4_c00107{bottom:1005.360000pt;}
.y3_c00107{bottom:1023.036000pt;}
.y2_c00107{bottom:1036.800000pt;}
.y1_c00107{bottom:1064.400000pt;}
.h6_c00107{height:41.770312pt;}
.h2_c00107{height:47.109375pt;}
.h3_c00107{height:62.812500pt;}
.h4_c00107{height:64.500000pt;}
.h5_c00107{height:65.767753pt;}
.h0_c00107{height:1122.560000pt;}
.h1_c00107{height:1122.666667pt;}
.w0_c00107{width:793.840000pt;}
.w1_c00107{width:794.000000pt;}
.x0_c00107{left:0.000000pt;}
.x2_c00107{left:113.440000pt;}
.x3_c00107{left:132.720000pt;}
.x5_c00107{left:263.120000pt;}
.x7_c00107{left:317.520000pt;}
.x9_c00107{left:320.560000pt;}
.x4_c00107{left:334.640000pt;}
.x6_c00107{left:372.240000pt;}
.xa_c00107{left:385.760000pt;}
.x8_c00107{left:392.800000pt;}
.x1_c00107{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41bb47d4e6269f39609ffb54.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00108{vertical-align:-82.800000px;}
.v2_c00108{vertical-align:-2.880000px;}
.v0_c00108{vertical-align:0.000000px;}
.ls11_c00108{letter-spacing:-0.360000px;}
.lse_c00108{letter-spacing:-0.288000px;}
.lsf_c00108{letter-spacing:-0.144000px;}
.lsd_c00108{letter-spacing:-0.108000px;}
.ls10_c00108{letter-spacing:-0.072000px;}
.lsc_c00108{letter-spacing:0.000000px;}
.ls1_c00108{letter-spacing:0.072000px;}
.ls3_c00108{letter-spacing:0.144000px;}
.ls2_c00108{letter-spacing:0.180000px;}
.lsa_c00108{letter-spacing:0.432000px;}
.lsb_c00108{letter-spacing:1.440000px;}
.ls9_c00108{letter-spacing:12.240000px;}
.ls7_c00108{letter-spacing:17.280000px;}
.ls5_c00108{letter-spacing:18.000000px;}
.ls8_c00108{letter-spacing:18.360000px;}
.ls6_c00108{letter-spacing:33.840000px;}
.ls0_c00108{letter-spacing:68.760000px;}
.ls4_c00108{letter-spacing:90.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00108{word-spacing:-18.144000px;}
.ws1_c00108{word-spacing:-18.072000px;}
.ws6_c00108{word-spacing:-18.000000px;}
.ws3_c00108{word-spacing:-17.928000px;}
.ws2_c00108{word-spacing:-17.856000px;}
.ws0_c00108{word-spacing:-17.712000px;}
.ws5_c00108{word-spacing:-17.640000px;}
.ws7_c00108{word-spacing:-11.970000px;}
.wsd_c00108{word-spacing:-0.432000px;}
.ws13_c00108{word-spacing:-0.360000px;}
.ws12_c00108{word-spacing:-0.144000px;}
.wsc_c00108{word-spacing:-0.072000px;}
.ws8_c00108{word-spacing:0.000000px;}
.wsa_c00108{word-spacing:0.162000px;}
.ws9_c00108{word-spacing:0.270000px;}
.ws21_c00108{word-spacing:1.008000px;}
.ws1c_c00108{word-spacing:1.080000px;}
.ws1d_c00108{word-spacing:1.368000px;}
.ws1b_c00108{word-spacing:1.440000px;}
.ws1e_c00108{word-spacing:5.040000px;}
.ws20_c00108{word-spacing:6.120000px;}
.ws1a_c00108{word-spacing:6.408000px;}
.ws19_c00108{word-spacing:6.480000px;}
.ws17_c00108{word-spacing:7.128000px;}
.wsb_c00108{word-spacing:7.848000px;}
.ws22_c00108{word-spacing:11.088000px;}
.ws18_c00108{word-spacing:12.168000px;}
.ws14_c00108{word-spacing:17.208000px;}
.ws10_c00108{word-spacing:17.568000px;}
.ws11_c00108{word-spacing:17.640000px;}
.ws16_c00108{word-spacing:18.288000px;}
.ws15_c00108{word-spacing:18.360000px;}
.wse_c00108{word-spacing:20.088000px;}
.ws1f_c00108{word-spacing:25.848000px;}
.ws24_c00108{word-spacing:26.928000px;}
.ws23_c00108{word-spacing:27.000000px;}
.wsf_c00108{word-spacing:29.880000px;}
._1_c00108{margin-left:-1.058400px;}
._0_c00108{width:1.220400px;}
._5_c00108{width:6.062400px;}
._4_c00108{width:7.128000px;}
._7_c00108{width:11.376000px;}
._3_c00108{width:16.545600px;}
._6_c00108{width:25.848000px;}
._8_c00108{width:27.000000px;}
._2_c00108{width:29.304000px;}
._9_c00108{width:846.000000px;}
.fc0_c00108{color:rgb(0,0,0);}
.fs2_c00108{font-size:47.880000px;}
.fs0_c00108{font-size:54.000000px;}
.fs1_c00108{font-size:72.000000px;}
.y0_c00108{bottom:0.000000px;}
.y26_c00108{bottom:57.240000px;}
.y25_c00108{bottom:147.870000px;}
.y24_c00108{bottom:178.920000px;}
.y23_c00108{bottom:209.970000px;}
.y22_c00108{bottom:241.020000px;}
.y21_c00108{bottom:272.070000px;}
.y20_c00108{bottom:303.120000px;}
.y1f_c00108{bottom:334.170000px;}
.y1e_c00108{bottom:365.220000px;}
.y1d_c00108{bottom:396.270000px;}
.y1c_c00108{bottom:427.320000px;}
.y1b_c00108{bottom:458.370000px;}
.y1a_c00108{bottom:489.420000px;}
.y19_c00108{bottom:520.470000px;}
.y18_c00108{bottom:551.520000px;}
.y17_c00108{bottom:582.570000px;}
.y16_c00108{bottom:613.620000px;}
.y15_c00108{bottom:644.670000px;}
.y14_c00108{bottom:675.720000px;}
.y13_c00108{bottom:706.770000px;}
.y12_c00108{bottom:737.820000px;}
.y11_c00108{bottom:768.870000px;}
.y10_c00108{bottom:789.570000px;}
.yf_c00108{bottom:810.270000px;}
.ye_c00108{bottom:830.970000px;}
.yd_c00108{bottom:861.930000px;}
.yc_c00108{bottom:892.980000px;}
.yb_c00108{bottom:924.030000px;}
.ya_c00108{bottom:955.080000px;}
.y9_c00108{bottom:986.130000px;}
.y8_c00108{bottom:1017.180000px;}
.y7_c00108{bottom:1048.230000px;}
.y6_c00108{bottom:1079.280000px;}
.y5_c00108{bottom:1131.030000px;}
.y4_c00108{bottom:1150.920000px;}
.y3_c00108{bottom:1166.404500px;}
.y2_c00108{bottom:1181.970000px;}
.y1_c00108{bottom:1197.450000px;}
.h3_c00108{height:52.971680px;}
.h2_c00108{height:52.998047px;}
.h4_c00108{height:70.664062px;}
.h0_c00108{height:1262.880000px;}
.h1_c00108{height:1263.000000px;}
.w0_c00108{width:893.070000px;}
.w1_c00108{width:893.250000px;}
.x0_c00108{left:0.000000px;}
.x3_c00108{left:127.620000px;}
.x4_c00108{left:149.310000px;}
.x6_c00108{left:325.530000px;}
.x5_c00108{left:424.080000px;}
.x2_c00108{left:425.160000px;}
.x1_c00108{left:446.580000px;}
.x7_c00108{left:747.540000px;}
@media print{
.v1_c00108{vertical-align:-73.600000pt;}
.v2_c00108{vertical-align:-2.560000pt;}
.v0_c00108{vertical-align:0.000000pt;}
.ls11_c00108{letter-spacing:-0.320000pt;}
.lse_c00108{letter-spacing:-0.256000pt;}
.lsf_c00108{letter-spacing:-0.128000pt;}
.lsd_c00108{letter-spacing:-0.096000pt;}
.ls10_c00108{letter-spacing:-0.064000pt;}
.lsc_c00108{letter-spacing:0.000000pt;}
.ls1_c00108{letter-spacing:0.064000pt;}
.ls3_c00108{letter-spacing:0.128000pt;}
.ls2_c00108{letter-spacing:0.160000pt;}
.lsa_c00108{letter-spacing:0.384000pt;}
.lsb_c00108{letter-spacing:1.280000pt;}
.ls9_c00108{letter-spacing:10.880000pt;}
.ls7_c00108{letter-spacing:15.360000pt;}
.ls5_c00108{letter-spacing:16.000000pt;}
.ls8_c00108{letter-spacing:16.320000pt;}
.ls6_c00108{letter-spacing:30.080000pt;}
.ls0_c00108{letter-spacing:61.120000pt;}
.ls4_c00108{letter-spacing:80.000000pt;}
.ws4_c00108{word-spacing:-16.128000pt;}
.ws1_c00108{word-spacing:-16.064000pt;}
.ws6_c00108{word-spacing:-16.000000pt;}
.ws3_c00108{word-spacing:-15.936000pt;}
.ws2_c00108{word-spacing:-15.872000pt;}
.ws0_c00108{word-spacing:-15.744000pt;}
.ws5_c00108{word-spacing:-15.680000pt;}
.ws7_c00108{word-spacing:-10.640000pt;}
.wsd_c00108{word-spacing:-0.384000pt;}
.ws13_c00108{word-spacing:-0.320000pt;}
.ws12_c00108{word-spacing:-0.128000pt;}
.wsc_c00108{word-spacing:-0.064000pt;}
.ws8_c00108{word-spacing:0.000000pt;}
.wsa_c00108{word-spacing:0.144000pt;}
.ws9_c00108{word-spacing:0.240000pt;}
.ws21_c00108{word-spacing:0.896000pt;}
.ws1c_c00108{word-spacing:0.960000pt;}
.ws1d_c00108{word-spacing:1.216000pt;}
.ws1b_c00108{word-spacing:1.280000pt;}
.ws1e_c00108{word-spacing:4.480000pt;}
.ws20_c00108{word-spacing:5.440000pt;}
.ws1a_c00108{word-spacing:5.696000pt;}
.ws19_c00108{word-spacing:5.760000pt;}
.ws17_c00108{word-spacing:6.336000pt;}
.wsb_c00108{word-spacing:6.976000pt;}
.ws22_c00108{word-spacing:9.856000pt;}
.ws18_c00108{word-spacing:10.816000pt;}
.ws14_c00108{word-spacing:15.296000pt;}
.ws10_c00108{word-spacing:15.616000pt;}
.ws11_c00108{word-spacing:15.680000pt;}
.ws16_c00108{word-spacing:16.256000pt;}
.ws15_c00108{word-spacing:16.320000pt;}
.wse_c00108{word-spacing:17.856000pt;}
.ws1f_c00108{word-spacing:22.976000pt;}
.ws24_c00108{word-spacing:23.936000pt;}
.ws23_c00108{word-spacing:24.000000pt;}
.wsf_c00108{word-spacing:26.560000pt;}
._1_c00108{margin-left:-0.940800pt;}
._0_c00108{width:1.084800pt;}
._5_c00108{width:5.388800pt;}
._4_c00108{width:6.336000pt;}
._7_c00108{width:10.112000pt;}
._3_c00108{width:14.707200pt;}
._6_c00108{width:22.976000pt;}
._8_c00108{width:24.000000pt;}
._2_c00108{width:26.048000pt;}
._9_c00108{width:752.000000pt;}
.fs2_c00108{font-size:42.560000pt;}
.fs0_c00108{font-size:48.000000pt;}
.fs1_c00108{font-size:64.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.y26_c00108{bottom:50.880000pt;}
.y25_c00108{bottom:131.440000pt;}
.y24_c00108{bottom:159.040000pt;}
.y23_c00108{bottom:186.640000pt;}
.y22_c00108{bottom:214.240000pt;}
.y21_c00108{bottom:241.840000pt;}
.y20_c00108{bottom:269.440000pt;}
.y1f_c00108{bottom:297.040000pt;}
.y1e_c00108{bottom:324.640000pt;}
.y1d_c00108{bottom:352.240000pt;}
.y1c_c00108{bottom:379.840000pt;}
.y1b_c00108{bottom:407.440000pt;}
.y1a_c00108{bottom:435.040000pt;}
.y19_c00108{bottom:462.640000pt;}
.y18_c00108{bottom:490.240000pt;}
.y17_c00108{bottom:517.840000pt;}
.y16_c00108{bottom:545.440000pt;}
.y15_c00108{bottom:573.040000pt;}
.y14_c00108{bottom:600.640000pt;}
.y13_c00108{bottom:628.240000pt;}
.y12_c00108{bottom:655.840000pt;}
.y11_c00108{bottom:683.440000pt;}
.y10_c00108{bottom:701.840000pt;}
.yf_c00108{bottom:720.240000pt;}
.ye_c00108{bottom:738.640000pt;}
.yd_c00108{bottom:766.160000pt;}
.yc_c00108{bottom:793.760000pt;}
.yb_c00108{bottom:821.360000pt;}
.ya_c00108{bottom:848.960000pt;}
.y9_c00108{bottom:876.560000pt;}
.y8_c00108{bottom:904.160000pt;}
.y7_c00108{bottom:931.760000pt;}
.y6_c00108{bottom:959.360000pt;}
.y5_c00108{bottom:1005.360000pt;}
.y4_c00108{bottom:1023.040000pt;}
.y3_c00108{bottom:1036.804000pt;}
.y2_c00108{bottom:1050.640000pt;}
.y1_c00108{bottom:1064.400000pt;}
.h3_c00108{height:47.085938pt;}
.h2_c00108{height:47.109375pt;}
.h4_c00108{height:62.812500pt;}
.h0_c00108{height:1122.560000pt;}
.h1_c00108{height:1122.666667pt;}
.w0_c00108{width:793.840000pt;}
.w1_c00108{width:794.000000pt;}
.x0_c00108{left:0.000000pt;}
.x3_c00108{left:113.440000pt;}
.x4_c00108{left:132.720000pt;}
.x6_c00108{left:289.360000pt;}
.x5_c00108{left:376.960000pt;}
.x2_c00108{left:377.920000pt;}
.x1_c00108{left:396.960000pt;}
.x7_c00108{left:664.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_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_b7e89b5f49d431acab2088c0.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.284668;font-style:normal;font-weight:normal;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_982e5a69af5793453c9e99a3.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.284180;font-style:normal;font-weight:normal;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_50eb0f8548efad9681222d88.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00109{vertical-align:-83.520000px;}
.v1_c00109{vertical-align:-61.938000px;}
.v0_c00109{vertical-align:0.000000px;}
.ls10_c00109{letter-spacing:-0.420840px;}
.lse_c00109{letter-spacing:-0.180360px;}
.lsf_c00109{letter-spacing:-0.120240px;}
.lsa_c00109{letter-spacing:-0.072000px;}
.lsc_c00109{letter-spacing:-0.060120px;}
.ls9_c00109{letter-spacing:0.000000px;}
.ls3_c00109{letter-spacing:0.053280px;}
.ls11_c00109{letter-spacing:0.060120px;}
.lsb_c00109{letter-spacing:0.072000px;}
.ls4_c00109{letter-spacing:0.090000px;}
.ls8_c00109{letter-spacing:0.120240px;}
.ls2_c00109{letter-spacing:0.144000px;}
.lsd_c00109{letter-spacing:0.180360px;}
.ls5_c00109{letter-spacing:3.667320px;}
.ls6_c00109{letter-spacing:4.028040px;}
.ls7_c00109{letter-spacing:4.749480px;}
.ls1_c00109{letter-spacing:212.760000px;}
.ls0_c00109{letter-spacing:319.518000px;}
.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;}
}
.ws0_c00109{word-spacing:-17.928000px;}
.ws2_c00109{word-spacing:-15.210360px;}
.ws3_c00109{word-spacing:-15.150240px;}
.ws7_c00109{word-spacing:-15.090120px;}
.ws5_c00109{word-spacing:-15.030000px;}
.ws1_c00109{word-spacing:-14.969880px;}
.ws4_c00109{word-spacing:-14.909760px;}
.ws6_c00109{word-spacing:-14.609160px;}
.ws14_c00109{word-spacing:-0.420840px;}
.ws36_c00109{word-spacing:-0.180360px;}
.ws9_c00109{word-spacing:-0.162000px;}
.wsa_c00109{word-spacing:-0.144000px;}
.wsc_c00109{word-spacing:-0.072000px;}
.wsf_c00109{word-spacing:-0.060120px;}
.ws8_c00109{word-spacing:0.000000px;}
.ws1b_c00109{word-spacing:0.060120px;}
.wsb_c00109{word-spacing:0.072000px;}
.ws1e_c00109{word-spacing:0.120240px;}
.wse_c00109{word-spacing:0.180360px;}
.ws45_c00109{word-spacing:0.420840px;}
.ws25_c00109{word-spacing:0.541080px;}
.ws24_c00109{word-spacing:1.262520px;}
.ws35_c00109{word-spacing:1.322640px;}
.ws41_c00109{word-spacing:2.044080px;}
.ws16_c00109{word-spacing:2.284560px;}
.ws15_c00109{word-spacing:2.404800px;}
.ws12_c00109{word-spacing:2.645280px;}
.ws3c_c00109{word-spacing:3.126240px;}
.ws2b_c00109{word-spacing:3.366720px;}
.ws1a_c00109{word-spacing:3.727440px;}
.ws27_c00109{word-spacing:3.847680px;}
.ws26_c00109{word-spacing:4.088160px;}
.ws2c_c00109{word-spacing:4.208400px;}
.ws29_c00109{word-spacing:4.809600px;}
.ws28_c00109{word-spacing:4.929840px;}
.ws37_c00109{word-spacing:5.170320px;}
.ws21_c00109{word-spacing:6.252480px;}
.ws17_c00109{word-spacing:6.673320px;}
.ws3b_c00109{word-spacing:6.733440px;}
.ws3a_c00109{word-spacing:6.973920px;}
.wsd_c00109{word-spacing:7.695360px;}
.ws39_c00109{word-spacing:9.619200px;}
.ws3d_c00109{word-spacing:11.422800px;}
.ws3e_c00109{word-spacing:11.663280px;}
.ws13_c00109{word-spacing:12.745440px;}
.ws2f_c00109{word-spacing:13.106160px;}
.ws2a_c00109{word-spacing:14.909760px;}
.ws42_c00109{word-spacing:15.030000px;}
.ws1f_c00109{word-spacing:15.751440px;}
.ws31_c00109{word-spacing:17.555040px;}
.ws30_c00109{word-spacing:18.156240px;}
.ws1c_c00109{word-spacing:18.516960px;}
.ws2e_c00109{word-spacing:19.659240px;}
.ws20_c00109{word-spacing:22.605120px;}
.ws38_c00109{word-spacing:23.687280px;}
.ws22_c00109{word-spacing:24.408720px;}
.ws44_c00109{word-spacing:25.490880px;}
.ws33_c00109{word-spacing:28.617120px;}
.ws32_c00109{word-spacing:28.977840px;}
.ws11_c00109{word-spacing:31.563000px;}
.ws18_c00109{word-spacing:33.306480px;}
.ws2d_c00109{word-spacing:34.328520px;}
.ws10_c00109{word-spacing:34.809480px;}
.ws3f_c00109{word-spacing:38.296440px;}
.ws23_c00109{word-spacing:40.460760px;}
.ws43_c00109{word-spacing:41.302440px;}
.ws46_c00109{word-spacing:41.663160px;}
.ws40_c00109{word-spacing:50.921640px;}
.ws1d_c00109{word-spacing:52.424640px;}
.ws34_c00109{word-spacing:60.300360px;}
.ws19_c00109{word-spacing:80.560800px;}
._1_c00109{margin-left:-1.015200px;}
._0_c00109{width:1.008000px;}
._2_c00109{width:7.391520px;}
._3_c00109{width:34.363800px;}
.fc1_c00109{color:transparent;}
.fc0_c00109{color:rgb(0,0,0);}
.fs0_c00109{font-size:54.000000px;}
.fs2_c00109{font-size:60.120000px;}
.fs1_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y6_c00109{bottom:3.240000px;}
.y17_c00109{bottom:3.420000px;}
.ya_c00109{bottom:3.510000px;}
.y11_c00109{bottom:7.560000px;}
.y8_c00109{bottom:20.610000px;}
.y12_c00109{bottom:20.700000px;}
.y9_c00109{bottom:20.790000px;}
.yc_c00109{bottom:21.330000px;}
.y16_c00109{bottom:37.980000px;}
.yf_c00109{bottom:42.660000px;}
.y46_c00109{bottom:55.170000px;}
.y49_c00109{bottom:57.240000px;}
.y1c_c00109{bottom:72.450000px;}
.y1b_c00109{bottom:89.730000px;}
.y18_c00109{bottom:106.920000px;}
.y23_c00109{bottom:107.010000px;}
.y22_c00109{bottom:124.200000px;}
.y48_c00109{bottom:127.620000px;}
.y44_c00109{bottom:141.390000px;}
.y27_c00109{bottom:141.480000px;}
.y2e_c00109{bottom:142.200000px;}
.y43_c00109{bottom:158.670000px;}
.y14_c00109{bottom:159.300000px;}
.y41_c00109{bottom:175.950000px;}
.y47_c00109{bottom:180.180000px;}
.y40_c00109{bottom:193.140000px;}
.y39_c00109{bottom:210.420000px;}
.y38_c00109{bottom:227.700000px;}
.y36_c00109{bottom:244.890000px;}
.y45_c00109{bottom:249.120000px;}
.y3f_c00109{bottom:262.170000px;}
.y34_c00109{bottom:279.450000px;}
.y1f_c00109{bottom:279.990000px;}
.y32_c00109{bottom:296.640000px;}
.y3c_c00109{bottom:300.861180px;}
.y42_c00109{bottom:300.870000px;}
.y31_c00109{bottom:313.920000px;}
.y3b_c00109{bottom:318.145680px;}
.y2f_c00109{bottom:331.020000px;}
.y30_c00109{bottom:331.200000px;}
.y3a_c00109{bottom:335.340000px;}
.y37_c00109{bottom:369.900000px;}
.y35_c00109{bottom:404.370000px;}
.y3e_c00109{bottom:421.645680px;}
.y33_c00109{bottom:421.650000px;}
.y3d_c00109{bottom:438.840000px;}
.y1e_c00109{bottom:487.890000px;}
.y2d_c00109{bottom:525.856680px;}
.y2c_c00109{bottom:543.141180px;}
.y2b_c00109{bottom:560.335500px;}
.y2a_c00109{bottom:577.611180px;}
.y29_c00109{bottom:594.895680px;}
.y28_c00109{bottom:612.090000px;}
.y21_c00109{bottom:643.860000px;}
.y26_c00109{bottom:664.560000px;}
.y25_c00109{bottom:699.120000px;}
.y24_c00109{bottom:733.590000px;}
.y20_c00109{bottom:750.690000px;}
.y13_c00109{bottom:782.640000px;}
.y1d_c00109{bottom:837.810000px;}
.y1a_c00109{bottom:855.085500px;}
.y19_c00109{bottom:872.370000px;}
.y15_c00109{bottom:904.140000px;}
.ye_c00109{bottom:956.610000px;}
.y10_c00109{bottom:991.890000px;}
.yb_c00109{bottom:1013.940000px;}
.yd_c00109{bottom:1031.940000px;}
.y7_c00109{bottom:1049.940000px;}
.y5_c00109{bottom:1086.750000px;}
.y4_c00109{bottom:1131.030000px;}
.y3_c00109{bottom:1150.915500px;}
.y2_c00109{bottom:1166.400000px;}
.y1_c00109{bottom:1197.450000px;}
.h4_c00109{height:17.190000px;}
.h9_c00109{height:17.280000px;}
.hb_c00109{height:21.330000px;}
.hc_c00109{height:34.470000px;}
.h6_c00109{height:34.560000px;}
.h8_c00109{height:35.280000px;}
.he_c00109{height:51.751500px;}
.h2_c00109{height:52.998047px;}
.ha_c00109{height:56.610000px;}
.h15_c00109{height:58.975137px;}
.h7_c00109{height:59.004492px;}
.h13_c00109{height:59.039772px;}
.h5_c00109{height:60.589687px;}
.h3_c00109{height:70.664062px;}
.hf_c00109{height:120.690000px;}
.h11_c00109{height:137.970000px;}
.h12_c00109{height:155.250000px;}
.hd_c00109{height:173.251500px;}
.h10_c00109{height:293.940000px;}
.h14_c00109{height:344.971500px;}
.h0_c00109{height:1262.880000px;}
.h1_c00109{height:1263.000000px;}
.w2_c00109{width:114.750000px;}
.w9_c00109{width:244.801500px;}
.w4_c00109{width:253.080000px;}
.w7_c00109{width:253.800000px;}
.w3_c00109{width:261.540000px;}
.w6_c00109{width:262.260000px;}
.w8_c00109{width:271.260000px;}
.w5_c00109{width:516.870000px;}
.wa_c00109{width:893.031000px;}
.w0_c00109{width:893.070000px;}
.w1_c00109{width:893.250000px;}
.x0_c00109{left:0.000000px;}
.x9_c00109{left:6.930000px;}
.x4_c00109{left:8.820000px;}
.x8_c00109{left:107.730000px;}
.xd_c00109{left:110.880000px;}
.x6_c00109{left:112.140000px;}
.x11_c00109{left:122.760000px;}
.x2_c00109{left:127.620000px;}
.x3_c00109{left:128.700000px;}
.xc_c00109{left:135.630000px;}
.xe_c00109{left:178.290000px;}
.x5_c00109{left:245.700000px;}
.xa_c00109{left:252.630000px;}
.x1_c00109{left:446.580000px;}
.x7_c00109{left:509.490000px;}
.xb_c00109{left:516.420000px;}
.xf_c00109{left:517.770000px;}
.x10_c00109{left:525.420000px;}
.x12_c00109{left:696.330000px;}
.x13_c00109{left:981.540000px;}
@media print{
.v2_c00109{vertical-align:-74.240000pt;}
.v1_c00109{vertical-align:-55.056000pt;}
.v0_c00109{vertical-align:0.000000pt;}
.ls10_c00109{letter-spacing:-0.374080pt;}
.lse_c00109{letter-spacing:-0.160320pt;}
.lsf_c00109{letter-spacing:-0.106880pt;}
.lsa_c00109{letter-spacing:-0.064000pt;}
.lsc_c00109{letter-spacing:-0.053440pt;}
.ls9_c00109{letter-spacing:0.000000pt;}
.ls3_c00109{letter-spacing:0.047360pt;}
.ls11_c00109{letter-spacing:0.053440pt;}
.lsb_c00109{letter-spacing:0.064000pt;}
.ls4_c00109{letter-spacing:0.080000pt;}
.ls8_c00109{letter-spacing:0.106880pt;}
.ls2_c00109{letter-spacing:0.128000pt;}
.lsd_c00109{letter-spacing:0.160320pt;}
.ls5_c00109{letter-spacing:3.259840pt;}
.ls6_c00109{letter-spacing:3.580480pt;}
.ls7_c00109{letter-spacing:4.221760pt;}
.ls1_c00109{letter-spacing:189.120000pt;}
.ls0_c00109{letter-spacing:284.016000pt;}
.ws0_c00109{word-spacing:-15.936000pt;}
.ws2_c00109{word-spacing:-13.520320pt;}
.ws3_c00109{word-spacing:-13.466880pt;}
.ws7_c00109{word-spacing:-13.413440pt;}
.ws5_c00109{word-spacing:-13.360000pt;}
.ws1_c00109{word-spacing:-13.306560pt;}
.ws4_c00109{word-spacing:-13.253120pt;}
.ws6_c00109{word-spacing:-12.985920pt;}
.ws14_c00109{word-spacing:-0.374080pt;}
.ws36_c00109{word-spacing:-0.160320pt;}
.ws9_c00109{word-spacing:-0.144000pt;}
.wsa_c00109{word-spacing:-0.128000pt;}
.wsc_c00109{word-spacing:-0.064000pt;}
.wsf_c00109{word-spacing:-0.053440pt;}
.ws8_c00109{word-spacing:0.000000pt;}
.ws1b_c00109{word-spacing:0.053440pt;}
.wsb_c00109{word-spacing:0.064000pt;}
.ws1e_c00109{word-spacing:0.106880pt;}
.wse_c00109{word-spacing:0.160320pt;}
.ws45_c00109{word-spacing:0.374080pt;}
.ws25_c00109{word-spacing:0.480960pt;}
.ws24_c00109{word-spacing:1.122240pt;}
.ws35_c00109{word-spacing:1.175680pt;}
.ws41_c00109{word-spacing:1.816960pt;}
.ws16_c00109{word-spacing:2.030720pt;}
.ws15_c00109{word-spacing:2.137600pt;}
.ws12_c00109{word-spacing:2.351360pt;}
.ws3c_c00109{word-spacing:2.778880pt;}
.ws2b_c00109{word-spacing:2.992640pt;}
.ws1a_c00109{word-spacing:3.313280pt;}
.ws27_c00109{word-spacing:3.420160pt;}
.ws26_c00109{word-spacing:3.633920pt;}
.ws2c_c00109{word-spacing:3.740800pt;}
.ws29_c00109{word-spacing:4.275200pt;}
.ws28_c00109{word-spacing:4.382080pt;}
.ws37_c00109{word-spacing:4.595840pt;}
.ws21_c00109{word-spacing:5.557760pt;}
.ws17_c00109{word-spacing:5.931840pt;}
.ws3b_c00109{word-spacing:5.985280pt;}
.ws3a_c00109{word-spacing:6.199040pt;}
.wsd_c00109{word-spacing:6.840320pt;}
.ws39_c00109{word-spacing:8.550400pt;}
.ws3d_c00109{word-spacing:10.153600pt;}
.ws3e_c00109{word-spacing:10.367360pt;}
.ws13_c00109{word-spacing:11.329280pt;}
.ws2f_c00109{word-spacing:11.649920pt;}
.ws2a_c00109{word-spacing:13.253120pt;}
.ws42_c00109{word-spacing:13.360000pt;}
.ws1f_c00109{word-spacing:14.001280pt;}
.ws31_c00109{word-spacing:15.604480pt;}
.ws30_c00109{word-spacing:16.138880pt;}
.ws1c_c00109{word-spacing:16.459520pt;}
.ws2e_c00109{word-spacing:17.474880pt;}
.ws20_c00109{word-spacing:20.093440pt;}
.ws38_c00109{word-spacing:21.055360pt;}
.ws22_c00109{word-spacing:21.696640pt;}
.ws44_c00109{word-spacing:22.658560pt;}
.ws33_c00109{word-spacing:25.437440pt;}
.ws32_c00109{word-spacing:25.758080pt;}
.ws11_c00109{word-spacing:28.056000pt;}
.ws18_c00109{word-spacing:29.605760pt;}
.ws2d_c00109{word-spacing:30.514240pt;}
.ws10_c00109{word-spacing:30.941760pt;}
.ws3f_c00109{word-spacing:34.041280pt;}
.ws23_c00109{word-spacing:35.965120pt;}
.ws43_c00109{word-spacing:36.713280pt;}
.ws46_c00109{word-spacing:37.033920pt;}
.ws40_c00109{word-spacing:45.263680pt;}
.ws1d_c00109{word-spacing:46.599680pt;}
.ws34_c00109{word-spacing:53.600320pt;}
.ws19_c00109{word-spacing:71.609600pt;}
._1_c00109{margin-left:-0.902400pt;}
._0_c00109{width:0.896000pt;}
._2_c00109{width:6.570240pt;}
._3_c00109{width:30.545600pt;}
.fs0_c00109{font-size:48.000000pt;}
.fs2_c00109{font-size:53.440000pt;}
.fs1_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y6_c00109{bottom:2.880000pt;}
.y17_c00109{bottom:3.040000pt;}
.ya_c00109{bottom:3.120000pt;}
.y11_c00109{bottom:6.720000pt;}
.y8_c00109{bottom:18.320000pt;}
.y12_c00109{bottom:18.400000pt;}
.y9_c00109{bottom:18.480000pt;}
.yc_c00109{bottom:18.960000pt;}
.y16_c00109{bottom:33.760000pt;}
.yf_c00109{bottom:37.920000pt;}
.y46_c00109{bottom:49.040000pt;}
.y49_c00109{bottom:50.880000pt;}
.y1c_c00109{bottom:64.400000pt;}
.y1b_c00109{bottom:79.760000pt;}
.y18_c00109{bottom:95.040000pt;}
.y23_c00109{bottom:95.120000pt;}
.y22_c00109{bottom:110.400000pt;}
.y48_c00109{bottom:113.440000pt;}
.y44_c00109{bottom:125.680000pt;}
.y27_c00109{bottom:125.760000pt;}
.y2e_c00109{bottom:126.400000pt;}
.y43_c00109{bottom:141.040000pt;}
.y14_c00109{bottom:141.600000pt;}
.y41_c00109{bottom:156.400000pt;}
.y47_c00109{bottom:160.160000pt;}
.y40_c00109{bottom:171.680000pt;}
.y39_c00109{bottom:187.040000pt;}
.y38_c00109{bottom:202.400000pt;}
.y36_c00109{bottom:217.680000pt;}
.y45_c00109{bottom:221.440000pt;}
.y3f_c00109{bottom:233.040000pt;}
.y34_c00109{bottom:248.400000pt;}
.y1f_c00109{bottom:248.880000pt;}
.y32_c00109{bottom:263.680000pt;}
.y3c_c00109{bottom:267.432160pt;}
.y42_c00109{bottom:267.440000pt;}
.y31_c00109{bottom:279.040000pt;}
.y3b_c00109{bottom:282.796160pt;}
.y2f_c00109{bottom:294.240000pt;}
.y30_c00109{bottom:294.400000pt;}
.y3a_c00109{bottom:298.080000pt;}
.y37_c00109{bottom:328.800000pt;}
.y35_c00109{bottom:359.440000pt;}
.y3e_c00109{bottom:374.796160pt;}
.y33_c00109{bottom:374.800000pt;}
.y3d_c00109{bottom:390.080000pt;}
.y1e_c00109{bottom:433.680000pt;}
.y2d_c00109{bottom:467.428160pt;}
.y2c_c00109{bottom:482.792160pt;}
.y2b_c00109{bottom:498.076000pt;}
.y2a_c00109{bottom:513.432160pt;}
.y29_c00109{bottom:528.796160pt;}
.y28_c00109{bottom:544.080000pt;}
.y21_c00109{bottom:572.320000pt;}
.y26_c00109{bottom:590.720000pt;}
.y25_c00109{bottom:621.440000pt;}
.y24_c00109{bottom:652.080000pt;}
.y20_c00109{bottom:667.280000pt;}
.y13_c00109{bottom:695.680000pt;}
.y1d_c00109{bottom:744.720000pt;}
.y1a_c00109{bottom:760.076000pt;}
.y19_c00109{bottom:775.440000pt;}
.y15_c00109{bottom:803.680000pt;}
.ye_c00109{bottom:850.320000pt;}
.y10_c00109{bottom:881.680000pt;}
.yb_c00109{bottom:901.280000pt;}
.yd_c00109{bottom:917.280000pt;}
.y7_c00109{bottom:933.280000pt;}
.y5_c00109{bottom:966.000000pt;}
.y4_c00109{bottom:1005.360000pt;}
.y3_c00109{bottom:1023.036000pt;}
.y2_c00109{bottom:1036.800000pt;}
.y1_c00109{bottom:1064.400000pt;}
.h4_c00109{height:15.280000pt;}
.h9_c00109{height:15.360000pt;}
.hb_c00109{height:18.960000pt;}
.hc_c00109{height:30.640000pt;}
.h6_c00109{height:30.720000pt;}
.h8_c00109{height:31.360000pt;}
.he_c00109{height:46.001333pt;}
.h2_c00109{height:47.109375pt;}
.ha_c00109{height:50.320000pt;}
.h15_c00109{height:52.422344pt;}
.h7_c00109{height:52.448437pt;}
.h13_c00109{height:52.479798pt;}
.h5_c00109{height:53.857500pt;}
.h3_c00109{height:62.812500pt;}
.hf_c00109{height:107.280000pt;}
.h11_c00109{height:122.640000pt;}
.h12_c00109{height:138.000000pt;}
.hd_c00109{height:154.001333pt;}
.h10_c00109{height:261.280000pt;}
.h14_c00109{height:306.641333pt;}
.h0_c00109{height:1122.560000pt;}
.h1_c00109{height:1122.666667pt;}
.w2_c00109{width:102.000000pt;}
.w9_c00109{width:217.601333pt;}
.w4_c00109{width:224.960000pt;}
.w7_c00109{width:225.600000pt;}
.w3_c00109{width:232.480000pt;}
.w6_c00109{width:233.120000pt;}
.w8_c00109{width:241.120000pt;}
.w5_c00109{width:459.440000pt;}
.wa_c00109{width:793.805333pt;}
.w0_c00109{width:793.840000pt;}
.w1_c00109{width:794.000000pt;}
.x0_c00109{left:0.000000pt;}
.x9_c00109{left:6.160000pt;}
.x4_c00109{left:7.840000pt;}
.x8_c00109{left:95.760000pt;}
.xd_c00109{left:98.560000pt;}
.x6_c00109{left:99.680000pt;}
.x11_c00109{left:109.120000pt;}
.x2_c00109{left:113.440000pt;}
.x3_c00109{left:114.400000pt;}
.xc_c00109{left:120.560000pt;}
.xe_c00109{left:158.480000pt;}
.x5_c00109{left:218.400000pt;}
.xa_c00109{left:224.560000pt;}
.x1_c00109{left:396.960000pt;}
.x7_c00109{left:452.880000pt;}
.xb_c00109{left:459.040000pt;}
.xf_c00109{left:460.240000pt;}
.x10_c00109{left:467.040000pt;}
.x12_c00109{left:618.960000pt;}
.x13_c00109{left:872.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_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_5e4dde11813a1af5a7b05854.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.284180;font-style:normal;font-weight:normal;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_49a0ad279c933e473d53a692.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00110{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00110{vertical-align:-82.800000px;}
.v3_c00110{vertical-align:-20.880000px;}
.v0_c00110{vertical-align:0.000000px;}
.v2_c00110{vertical-align:27.000000px;}
.ls13_c00110{letter-spacing:-0.360000px;}
.ls15_c00110{letter-spacing:-0.288000px;}
.ls14_c00110{letter-spacing:-0.216000px;}
.lsc_c00110{letter-spacing:-0.120240px;}
.lsb_c00110{letter-spacing:-0.108000px;}
.ls11_c00110{letter-spacing:-0.072000px;}
.lse_c00110{letter-spacing:-0.060120px;}
.lsa_c00110{letter-spacing:0.000000px;}
.ls2_c00110{letter-spacing:0.072000px;}
.lsf_c00110{letter-spacing:0.120240px;}
.ls10_c00110{letter-spacing:0.144000px;}
.lsd_c00110{letter-spacing:0.180360px;}
.ls12_c00110{letter-spacing:0.191520px;}
.ls1_c00110{letter-spacing:0.781560px;}
.ls6_c00110{letter-spacing:2.880000px;}
.ls7_c00110{letter-spacing:3.240000px;}
.ls5_c00110{letter-spacing:8.640000px;}
.ls4_c00110{letter-spacing:9.007200px;}
.ls3_c00110{letter-spacing:17.640000px;}
.ls9_c00110{letter-spacing:22.785480px;}
.ls8_c00110{letter-spacing:23.146200px;}
.ls0_c00110{letter-spacing:2533.680000px;}
.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;}
}
.ws6_c00110{word-spacing:-18.144000px;}
.ws3_c00110{word-spacing:-18.072000px;}
.ws2_c00110{word-spacing:-18.000000px;}
.ws5_c00110{word-spacing:-17.640000px;}
.ws0_c00110{word-spacing:-15.210360px;}
.ws1_c00110{word-spacing:-14.909760px;}
.ws4_c00110{word-spacing:-12.161520px;}
.ws7_c00110{word-spacing:-9.720000px;}
.wsc_c00110{word-spacing:-0.420840px;}
.ws3f_c00110{word-spacing:-0.360000px;}
.ws2d_c00110{word-spacing:-0.180360px;}
.ws31_c00110{word-spacing:-0.144000px;}
.wsd_c00110{word-spacing:-0.120240px;}
.ws30_c00110{word-spacing:-0.072000px;}
.ws22_c00110{word-spacing:-0.060120px;}
.ws8_c00110{word-spacing:0.000000px;}
.ws12_c00110{word-spacing:0.060120px;}
.ws1a_c00110{word-spacing:0.120240px;}
.wsa_c00110{word-spacing:0.162000px;}
.ws19_c00110{word-spacing:0.180360px;}
.ws3a_c00110{word-spacing:0.216000px;}
.wsb_c00110{word-spacing:0.240480px;}
.ws9_c00110{word-spacing:0.270000px;}
.ws3d_c00110{word-spacing:0.288000px;}
.ws3c_c00110{word-spacing:0.360000px;}
.ws2a_c00110{word-spacing:0.541080px;}
.ws54_c00110{word-spacing:0.720000px;}
.ws29_c00110{word-spacing:0.901800px;}
.ws15_c00110{word-spacing:1.262520px;}
.ws4a_c00110{word-spacing:1.368000px;}
.ws49_c00110{word-spacing:1.440000px;}
.ws48_c00110{word-spacing:2.808000px;}
.ws50_c00110{word-spacing:3.096000px;}
.ws51_c00110{word-spacing:3.168000px;}
.wsf_c00110{word-spacing:7.454880px;}
.ws20_c00110{word-spacing:8.056080px;}
.ws28_c00110{word-spacing:8.537040px;}
.ws41_c00110{word-spacing:8.568000px;}
.ws42_c00110{word-spacing:8.856000px;}
.ws21_c00110{word-spacing:8.897760px;}
.ws40_c00110{word-spacing:8.928000px;}
.ws43_c00110{word-spacing:9.000000px;}
.ws24_c00110{word-spacing:9.258480px;}
.ws45_c00110{word-spacing:10.440000px;}
.wse_c00110{word-spacing:10.581120px;}
.ws47_c00110{word-spacing:10.656000px;}
.ws46_c00110{word-spacing:10.728000px;}
.ws44_c00110{word-spacing:10.800000px;}
.ws11_c00110{word-spacing:11.062080px;}
.ws13_c00110{word-spacing:11.122200px;}
.ws4c_c00110{word-spacing:12.168000px;}
.ws18_c00110{word-spacing:12.384720px;}
.ws4b_c00110{word-spacing:12.528000px;}
.ws4d_c00110{word-spacing:12.600000px;}
.ws26_c00110{word-spacing:13.587120px;}
.ws17_c00110{word-spacing:15.631200px;}
.ws3b_c00110{word-spacing:17.280000px;}
.ws38_c00110{word-spacing:17.568000px;}
.ws39_c00110{word-spacing:17.640000px;}
.ws2f_c00110{word-spacing:20.016000px;}
.ws2e_c00110{word-spacing:20.160000px;}
.ws14_c00110{word-spacing:20.320560px;}
.ws16_c00110{word-spacing:20.681280px;}
.ws3e_c00110{word-spacing:20.880000px;}
.ws25_c00110{word-spacing:21.763440px;}
.ws53_c00110{word-spacing:22.896000px;}
.ws56_c00110{word-spacing:22.965840px;}
.ws52_c00110{word-spacing:22.968000px;}
.ws55_c00110{word-spacing:23.206320px;}
.ws35_c00110{word-spacing:23.616000px;}
.ws36_c00110{word-spacing:23.688000px;}
.ws37_c00110{word-spacing:23.760000px;}
.ws4e_c00110{word-spacing:24.768000px;}
.ws4f_c00110{word-spacing:24.840000px;}
.ws34_c00110{word-spacing:26.208000px;}
.ws33_c00110{word-spacing:27.000000px;}
.ws32_c00110{word-spacing:27.072000px;}
.ws1f_c00110{word-spacing:27.534960px;}
.ws1d_c00110{word-spacing:30.120120px;}
.ws1b_c00110{word-spacing:31.142160px;}
.ws1e_c00110{word-spacing:33.967800px;}
.ws10_c00110{word-spacing:37.575000px;}
.ws27_c00110{word-spacing:51.643080px;}
.ws1c_c00110{word-spacing:52.003800px;}
.ws2b_c00110{word-spacing:75.029760px;}
.ws2c_c00110{word-spacing:91.322280px;}
.ws23_c00110{word-spacing:93.727080px;}
._1_c00110{margin-left:-1.058400px;}
._0_c00110{width:1.220400px;}
._5_c00110{width:2.520000px;}
._2_c00110{width:20.160000px;}
._4_c00110{width:21.794400px;}
._3_c00110{width:25.992000px;}
.fc0_c00110{color:rgb(0,0,0);}
.fs4_c00110{font-size:38.880000px;}
.fs3_c00110{font-size:47.880000px;}
.fs0_c00110{font-size:54.000000px;}
.fs2_c00110{font-size:60.120000px;}
.fs1_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y20_c00110{bottom:3.509850px;}
.y1f_c00110{bottom:20.790000px;}
.y1e_c00110{bottom:37.980000px;}
.y38_c00110{bottom:57.240000px;}
.y1c_c00110{bottom:72.450000px;}
.y1b_c00110{bottom:89.730000px;}
.y1a_c00110{bottom:107.010000px;}
.y37_c00110{bottom:109.791180px;}
.y19_c00110{bottom:124.200000px;}
.y36_c00110{bottom:126.985500px;}
.y18_c00110{bottom:141.480000px;}
.y35_c00110{bottom:149.490000px;}
.y17_c00110{bottom:158.760000px;}
.y39_c00110{bottom:162.180000px;}
.y13_c00110{bottom:175.950000px;}
.y34_c00110{bottom:191.430000px;}
.y12_c00110{bottom:193.230000px;}
.y33_c00110{bottom:222.480000px;}
.y10_c00110{bottom:227.700000px;}
.yf_c00110{bottom:244.980000px;}
.y32_c00110{bottom:253.530000px;}
.yd_c00110{bottom:262.260000px;}
.yc_c00110{bottom:279.450000px;}
.y31_c00110{bottom:284.580000px;}
.y7_c00110{bottom:296.550000px;}
.yb_c00110{bottom:296.730000px;}
.y30_c00110{bottom:315.630000px;}
.y2f_c00110{bottom:346.680000px;}
.y2e_c00110{bottom:377.730000px;}
.y2d_c00110{bottom:408.780000px;}
.y2c_c00110{bottom:439.830000px;}
.y2b_c00110{bottom:470.880000px;}
.y2a_c00110{bottom:501.930000px;}
.y29_c00110{bottom:532.980000px;}
.y28_c00110{bottom:564.030000px;}
.y27_c00110{bottom:595.080000px;}
.y26_c00110{bottom:626.130000px;}
.y25_c00110{bottom:657.180000px;}
.y24_c00110{bottom:688.230000px;}
.y23_c00110{bottom:719.280000px;}
.y22_c00110{bottom:750.330000px;}
.y21_c00110{bottom:778.950000px;}
.y6_c00110{bottom:794.970000px;}
.y1d_c00110{bottom:850.229850px;}
.y15_c00110{bottom:936.445500px;}
.y14_c00110{bottom:953.730000px;}
.y16_c00110{bottom:970.920000px;}
.y11_c00110{bottom:1005.480000px;}
.ya_c00110{bottom:1039.761180px;}
.ye_c00110{bottom:1039.950000px;}
.y9_c00110{bottom:1057.045680px;}
.y8_c00110{bottom:1074.240000px;}
.y5_c00110{bottom:1131.030000px;}
.y4_c00110{bottom:1150.920000px;}
.y3_c00110{bottom:1166.404500px;}
.y2_c00110{bottom:1181.970000px;}
.y1_c00110{bottom:1197.450000px;}
.h9_c00110{height:38.158594px;}
.h3_c00110{height:52.971680px;}
.h2_c00110{height:52.998047px;}
.h7_c00110{height:59.004492px;}
.h6_c00110{height:60.589687px;}
.h4_c00110{height:70.664062px;}
.h8_c00110{height:73.991602px;}
.h5_c00110{height:310.500000px;}
.h0_c00110{height:1262.880000px;}
.h1_c00110{height:1263.000000px;}
.w2_c00110{width:114.750000px;}
.w4_c00110{width:244.440000px;}
.w3_c00110{width:270.900000px;}
.w0_c00110{width:893.070000px;}
.w1_c00110{width:893.250000px;}
.x0_c00110{left:0.000000px;}
.x5_c00110{left:6.930000px;}
.x9_c00110{left:106.920000px;}
.x3_c00110{left:127.620000px;}
.x4_c00110{left:128.700000px;}
.x6_c00110{left:135.630000px;}
.x7_c00110{left:245.700000px;}
.x8_c00110{left:252.630000px;}
.x2_c00110{left:425.160000px;}
.x1_c00110{left:446.580000px;}
.xa_c00110{left:518.130000px;}
.xb_c00110{left:525.420000px;}
.xc_c00110{left:747.540000px;}
@media print{
.v1_c00110{vertical-align:-73.600000pt;}
.v3_c00110{vertical-align:-18.560000pt;}
.v0_c00110{vertical-align:0.000000pt;}
.v2_c00110{vertical-align:24.000000pt;}
.ls13_c00110{letter-spacing:-0.320000pt;}
.ls15_c00110{letter-spacing:-0.256000pt;}
.ls14_c00110{letter-spacing:-0.192000pt;}
.lsc_c00110{letter-spacing:-0.106880pt;}
.lsb_c00110{letter-spacing:-0.096000pt;}
.ls11_c00110{letter-spacing:-0.064000pt;}
.lse_c00110{letter-spacing:-0.053440pt;}
.lsa_c00110{letter-spacing:0.000000pt;}
.ls2_c00110{letter-spacing:0.064000pt;}
.lsf_c00110{letter-spacing:0.106880pt;}
.ls10_c00110{letter-spacing:0.128000pt;}
.lsd_c00110{letter-spacing:0.160320pt;}
.ls12_c00110{letter-spacing:0.170240pt;}
.ls1_c00110{letter-spacing:0.694720pt;}
.ls6_c00110{letter-spacing:2.560000pt;}
.ls7_c00110{letter-spacing:2.880000pt;}
.ls5_c00110{letter-spacing:7.680000pt;}
.ls4_c00110{letter-spacing:8.006400pt;}
.ls3_c00110{letter-spacing:15.680000pt;}
.ls9_c00110{letter-spacing:20.253760pt;}
.ls8_c00110{letter-spacing:20.574400pt;}
.ls0_c00110{letter-spacing:2252.160000pt;}
.ws6_c00110{word-spacing:-16.128000pt;}
.ws3_c00110{word-spacing:-16.064000pt;}
.ws2_c00110{word-spacing:-16.000000pt;}
.ws5_c00110{word-spacing:-15.680000pt;}
.ws0_c00110{word-spacing:-13.520320pt;}
.ws1_c00110{word-spacing:-13.253120pt;}
.ws4_c00110{word-spacing:-10.810240pt;}
.ws7_c00110{word-spacing:-8.640000pt;}
.wsc_c00110{word-spacing:-0.374080pt;}
.ws3f_c00110{word-spacing:-0.320000pt;}
.ws2d_c00110{word-spacing:-0.160320pt;}
.ws31_c00110{word-spacing:-0.128000pt;}
.wsd_c00110{word-spacing:-0.106880pt;}
.ws30_c00110{word-spacing:-0.064000pt;}
.ws22_c00110{word-spacing:-0.053440pt;}
.ws8_c00110{word-spacing:0.000000pt;}
.ws12_c00110{word-spacing:0.053440pt;}
.ws1a_c00110{word-spacing:0.106880pt;}
.wsa_c00110{word-spacing:0.144000pt;}
.ws19_c00110{word-spacing:0.160320pt;}
.ws3a_c00110{word-spacing:0.192000pt;}
.wsb_c00110{word-spacing:0.213760pt;}
.ws9_c00110{word-spacing:0.240000pt;}
.ws3d_c00110{word-spacing:0.256000pt;}
.ws3c_c00110{word-spacing:0.320000pt;}
.ws2a_c00110{word-spacing:0.480960pt;}
.ws54_c00110{word-spacing:0.640000pt;}
.ws29_c00110{word-spacing:0.801600pt;}
.ws15_c00110{word-spacing:1.122240pt;}
.ws4a_c00110{word-spacing:1.216000pt;}
.ws49_c00110{word-spacing:1.280000pt;}
.ws48_c00110{word-spacing:2.496000pt;}
.ws50_c00110{word-spacing:2.752000pt;}
.ws51_c00110{word-spacing:2.816000pt;}
.wsf_c00110{word-spacing:6.626560pt;}
.ws20_c00110{word-spacing:7.160960pt;}
.ws28_c00110{word-spacing:7.588480pt;}
.ws41_c00110{word-spacing:7.616000pt;}
.ws42_c00110{word-spacing:7.872000pt;}
.ws21_c00110{word-spacing:7.909120pt;}
.ws40_c00110{word-spacing:7.936000pt;}
.ws43_c00110{word-spacing:8.000000pt;}
.ws24_c00110{word-spacing:8.229760pt;}
.ws45_c00110{word-spacing:9.280000pt;}
.wse_c00110{word-spacing:9.405440pt;}
.ws47_c00110{word-spacing:9.472000pt;}
.ws46_c00110{word-spacing:9.536000pt;}
.ws44_c00110{word-spacing:9.600000pt;}
.ws11_c00110{word-spacing:9.832960pt;}
.ws13_c00110{word-spacing:9.886400pt;}
.ws4c_c00110{word-spacing:10.816000pt;}
.ws18_c00110{word-spacing:11.008640pt;}
.ws4b_c00110{word-spacing:11.136000pt;}
.ws4d_c00110{word-spacing:11.200000pt;}
.ws26_c00110{word-spacing:12.077440pt;}
.ws17_c00110{word-spacing:13.894400pt;}
.ws3b_c00110{word-spacing:15.360000pt;}
.ws38_c00110{word-spacing:15.616000pt;}
.ws39_c00110{word-spacing:15.680000pt;}
.ws2f_c00110{word-spacing:17.792000pt;}
.ws2e_c00110{word-spacing:17.920000pt;}
.ws14_c00110{word-spacing:18.062720pt;}
.ws16_c00110{word-spacing:18.383360pt;}
.ws3e_c00110{word-spacing:18.560000pt;}
.ws25_c00110{word-spacing:19.345280pt;}
.ws53_c00110{word-spacing:20.352000pt;}
.ws56_c00110{word-spacing:20.414080pt;}
.ws52_c00110{word-spacing:20.416000pt;}
.ws55_c00110{word-spacing:20.627840pt;}
.ws35_c00110{word-spacing:20.992000pt;}
.ws36_c00110{word-spacing:21.056000pt;}
.ws37_c00110{word-spacing:21.120000pt;}
.ws4e_c00110{word-spacing:22.016000pt;}
.ws4f_c00110{word-spacing:22.080000pt;}
.ws34_c00110{word-spacing:23.296000pt;}
.ws33_c00110{word-spacing:24.000000pt;}
.ws32_c00110{word-spacing:24.064000pt;}
.ws1f_c00110{word-spacing:24.475520pt;}
.ws1d_c00110{word-spacing:26.773440pt;}
.ws1b_c00110{word-spacing:27.681920pt;}
.ws1e_c00110{word-spacing:30.193600pt;}
.ws10_c00110{word-spacing:33.400000pt;}
.ws27_c00110{word-spacing:45.904960pt;}
.ws1c_c00110{word-spacing:46.225600pt;}
.ws2b_c00110{word-spacing:66.693120pt;}
.ws2c_c00110{word-spacing:81.175360pt;}
.ws23_c00110{word-spacing:83.312960pt;}
._1_c00110{margin-left:-0.940800pt;}
._0_c00110{width:1.084800pt;}
._5_c00110{width:2.240000pt;}
._2_c00110{width:17.920000pt;}
._4_c00110{width:19.372800pt;}
._3_c00110{width:23.104000pt;}
.fs4_c00110{font-size:34.560000pt;}
.fs3_c00110{font-size:42.560000pt;}
.fs0_c00110{font-size:48.000000pt;}
.fs2_c00110{font-size:53.440000pt;}
.fs1_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y20_c00110{bottom:3.119867pt;}
.y1f_c00110{bottom:18.480000pt;}
.y1e_c00110{bottom:33.760000pt;}
.y38_c00110{bottom:50.880000pt;}
.y1c_c00110{bottom:64.400000pt;}
.y1b_c00110{bottom:79.760000pt;}
.y1a_c00110{bottom:95.120000pt;}
.y37_c00110{bottom:97.592160pt;}
.y19_c00110{bottom:110.400000pt;}
.y36_c00110{bottom:112.876000pt;}
.y18_c00110{bottom:125.760000pt;}
.y35_c00110{bottom:132.880000pt;}
.y17_c00110{bottom:141.120000pt;}
.y39_c00110{bottom:144.160000pt;}
.y13_c00110{bottom:156.400000pt;}
.y34_c00110{bottom:170.160000pt;}
.y12_c00110{bottom:171.760000pt;}
.y33_c00110{bottom:197.760000pt;}
.y10_c00110{bottom:202.400000pt;}
.yf_c00110{bottom:217.760000pt;}
.y32_c00110{bottom:225.360000pt;}
.yd_c00110{bottom:233.120000pt;}
.yc_c00110{bottom:248.400000pt;}
.y31_c00110{bottom:252.960000pt;}
.y7_c00110{bottom:263.600000pt;}
.yb_c00110{bottom:263.760000pt;}
.y30_c00110{bottom:280.560000pt;}
.y2f_c00110{bottom:308.160000pt;}
.y2e_c00110{bottom:335.760000pt;}
.y2d_c00110{bottom:363.360000pt;}
.y2c_c00110{bottom:390.960000pt;}
.y2b_c00110{bottom:418.560000pt;}
.y2a_c00110{bottom:446.160000pt;}
.y29_c00110{bottom:473.760000pt;}
.y28_c00110{bottom:501.360000pt;}
.y27_c00110{bottom:528.960000pt;}
.y26_c00110{bottom:556.560000pt;}
.y25_c00110{bottom:584.160000pt;}
.y24_c00110{bottom:611.760000pt;}
.y23_c00110{bottom:639.360000pt;}
.y22_c00110{bottom:666.960000pt;}
.y21_c00110{bottom:692.400000pt;}
.y6_c00110{bottom:706.640000pt;}
.y1d_c00110{bottom:755.759867pt;}
.y15_c00110{bottom:832.396000pt;}
.y14_c00110{bottom:847.760000pt;}
.y16_c00110{bottom:863.040000pt;}
.y11_c00110{bottom:893.760000pt;}
.ya_c00110{bottom:924.232160pt;}
.ye_c00110{bottom:924.400000pt;}
.y9_c00110{bottom:939.596160pt;}
.y8_c00110{bottom:954.880000pt;}
.y5_c00110{bottom:1005.360000pt;}
.y4_c00110{bottom:1023.040000pt;}
.y3_c00110{bottom:1036.804000pt;}
.y2_c00110{bottom:1050.640000pt;}
.y1_c00110{bottom:1064.400000pt;}
.h9_c00110{height:33.918750pt;}
.h3_c00110{height:47.085938pt;}
.h2_c00110{height:47.109375pt;}
.h7_c00110{height:52.448437pt;}
.h6_c00110{height:53.857500pt;}
.h4_c00110{height:62.812500pt;}
.h8_c00110{height:65.770312pt;}
.h5_c00110{height:276.000000pt;}
.h0_c00110{height:1122.560000pt;}
.h1_c00110{height:1122.666667pt;}
.w2_c00110{width:102.000000pt;}
.w4_c00110{width:217.280000pt;}
.w3_c00110{width:240.800000pt;}
.w0_c00110{width:793.840000pt;}
.w1_c00110{width:794.000000pt;}
.x0_c00110{left:0.000000pt;}
.x5_c00110{left:6.160000pt;}
.x9_c00110{left:95.040000pt;}
.x3_c00110{left:113.440000pt;}
.x4_c00110{left:114.400000pt;}
.x6_c00110{left:120.560000pt;}
.x7_c00110{left:218.400000pt;}
.x8_c00110{left:224.560000pt;}
.x2_c00110{left:377.920000pt;}
.x1_c00110{left:396.960000pt;}
.xa_c00110{left:460.560000pt;}
.xb_c00110{left:467.040000pt;}
.xc_c00110{left:664.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_6cce1b5798f4995f2caf9fd3.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.284668;font-style:normal;font-weight:normal;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_982e5a69af5793453c9e99a3.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.284180;font-style:normal;font-weight:normal;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_051ee4a895029e46a78c5eab.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00111{vertical-align:-61.938000px;}
.v0_c00111{vertical-align:0.000000px;}
.ls17_c00111{letter-spacing:-0.541080px;}
.ls13_c00111{letter-spacing:-0.420840px;}
.ls16_c00111{letter-spacing:-0.360720px;}
.ls10_c00111{letter-spacing:-0.288000px;}
.ls15_c00111{letter-spacing:-0.240480px;}
.ls14_c00111{letter-spacing:-0.180360px;}
.ls12_c00111{letter-spacing:-0.120240px;}
.lsf_c00111{letter-spacing:-0.072000px;}
.ls11_c00111{letter-spacing:-0.060120px;}
.lse_c00111{letter-spacing:0.000000px;}
.ls8_c00111{letter-spacing:0.053280px;}
.ls3_c00111{letter-spacing:0.072000px;}
.ls7_c00111{letter-spacing:0.090000px;}
.lsd_c00111{letter-spacing:0.120240px;}
.ls6_c00111{letter-spacing:0.144000px;}
.lsc_c00111{letter-spacing:0.180360px;}
.ls2_c00111{letter-spacing:7.560000px;}
.ls9_c00111{letter-spacing:8.730000px;}
.lsa_c00111{letter-spacing:9.090000px;}
.ls5_c00111{letter-spacing:14.767200px;}
.ls1_c00111{letter-spacing:15.480000px;}
.ls4_c00111{letter-spacing:18.720000px;}
.lsb_c00111{letter-spacing:37.514880px;}
.ls0_c00111{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00111{word-spacing:-18.144000px;}
.ws0_c00111{word-spacing:-18.072000px;}
.ws1_c00111{word-spacing:-18.000000px;}
.ws3_c00111{word-spacing:-17.928000px;}
.ws4_c00111{word-spacing:-17.712000px;}
.ws7_c00111{word-spacing:-15.210360px;}
.wsb_c00111{word-spacing:-15.150240px;}
.wsa_c00111{word-spacing:-15.030000px;}
.ws5_c00111{word-spacing:-14.969880px;}
.ws6_c00111{word-spacing:-14.909760px;}
.ws8_c00111{word-spacing:-14.789520px;}
.ws9_c00111{word-spacing:-14.669280px;}
.ws19_c00111{word-spacing:-0.504000px;}
.ws18_c00111{word-spacing:-0.432000px;}
.ws2c_c00111{word-spacing:-0.420840px;}
.ws27_c00111{word-spacing:-0.288000px;}
.ws3e_c00111{word-spacing:-0.180360px;}
.wsd_c00111{word-spacing:-0.162000px;}
.ws16_c00111{word-spacing:-0.144000px;}
.ws14_c00111{word-spacing:-0.072000px;}
.ws2f_c00111{word-spacing:-0.060120px;}
.wsc_c00111{word-spacing:0.000000px;}
.ws33_c00111{word-spacing:0.060120px;}
.ws20_c00111{word-spacing:0.072000px;}
.ws3a_c00111{word-spacing:0.120240px;}
.ws29_c00111{word-spacing:0.180360px;}
.ws2d_c00111{word-spacing:0.300600px;}
.ws28_c00111{word-spacing:0.541080px;}
.ws3f_c00111{word-spacing:0.661320px;}
.ws40_c00111{word-spacing:0.901800px;}
.ws10_c00111{word-spacing:0.936000px;}
.ws11_c00111{word-spacing:1.080000px;}
.ws13_c00111{word-spacing:3.168000px;}
.ws12_c00111{word-spacing:3.528000px;}
.ws25_c00111{word-spacing:4.248000px;}
.ws26_c00111{word-spacing:4.320000px;}
.ws31_c00111{word-spacing:4.809600px;}
.ws32_c00111{word-spacing:4.869720px;}
.ws41_c00111{word-spacing:5.891760px;}
.ws3b_c00111{word-spacing:6.012000px;}
.ws3c_c00111{word-spacing:6.312600px;}
.ws3d_c00111{word-spacing:6.372720px;}
.ws2b_c00111{word-spacing:7.334640px;}
.ws1e_c00111{word-spacing:7.416000px;}
.ws1d_c00111{word-spacing:7.488000px;}
.ws1c_c00111{word-spacing:7.560000px;}
.ws30_c00111{word-spacing:9.138240px;}
.ws2a_c00111{word-spacing:11.302560px;}
.ws36_c00111{word-spacing:11.422800px;}
.wsf_c00111{word-spacing:11.808000px;}
.ws23_c00111{word-spacing:12.168000px;}
.ws24_c00111{word-spacing:12.600000px;}
.ws15_c00111{word-spacing:14.688000px;}
.ws17_c00111{word-spacing:14.760000px;}
.ws1a_c00111{word-spacing:15.336000px;}
.ws1b_c00111{word-spacing:15.408000px;}
.ws39_c00111{word-spacing:17.434800px;}
.wse_c00111{word-spacing:17.640000px;}
.ws22_c00111{word-spacing:18.648000px;}
.ws21_c00111{word-spacing:18.720000px;}
.ws1f_c00111{word-spacing:24.480000px;}
.ws37_c00111{word-spacing:24.649200px;}
.ws2e_c00111{word-spacing:27.955800px;}
.ws38_c00111{word-spacing:36.613080px;}
.ws34_c00111{word-spacing:37.575000px;}
.ws35_c00111{word-spacing:45.210240px;}
._0_c00111{margin-left:-1.080000px;}
._2_c00111{width:1.008000px;}
._1_c00111{width:14.832000px;}
._3_c00111{width:37.875600px;}
.fc1_c00111{color:transparent;}
.fc0_c00111{color:rgb(0,0,0);}
.fs0_c00111{font-size:54.000000px;}
.fs2_c00111{font-size:60.120000px;}
.fs1_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y23_c00111{bottom:3.420000px;}
.y1f_c00111{bottom:3.510000px;}
.y1a_c00111{bottom:4.050000px;}
.y1e_c00111{bottom:20.700000px;}
.y19_c00111{bottom:21.330000px;}
.y1c_c00111{bottom:37.800000px;}
.y1d_c00111{bottom:37.980000px;}
.y21_c00111{bottom:38.520000px;}
.y27_c00111{bottom:41.760000px;}
.y2e_c00111{bottom:54.990000px;}
.y2a_c00111{bottom:55.170000px;}
.y38_c00111{bottom:57.240000px;}
.y31_c00111{bottom:72.360000px;}
.y33_c00111{bottom:72.540000px;}
.y25_c00111{bottom:111.330000px;}
.y37_c00111{bottom:114.930000px;}
.y30_c00111{bottom:130.140000px;}
.y36_c00111{bottom:150.921180px;}
.y35_c00111{bottom:168.115500px;}
.y32_c00111{bottom:185.220000px;}
.y34_c00111{bottom:185.400000px;}
.y2d_c00111{bottom:217.170000px;}
.y2f_c00111{bottom:255.150000px;}
.y24_c00111{bottom:286.920000px;}
.y2c_c00111{bottom:307.615500px;}
.y2b_c00111{bottom:324.900000px;}
.y26_c00111{bottom:356.670000px;}
.y29_c00111{bottom:363.955500px;}
.y28_c00111{bottom:381.240000px;}
.y20_c00111{bottom:413.010000px;}
.y22_c00111{bottom:448.200000px;}
.y1b_c00111{bottom:466.200000px;}
.y18_c00111{bottom:520.200000px;}
.y17_c00111{bottom:561.690000px;}
.y16_c00111{bottom:582.390000px;}
.y15_c00111{bottom:613.620000px;}
.y14_c00111{bottom:644.670000px;}
.y13_c00111{bottom:675.720000px;}
.y12_c00111{bottom:706.770000px;}
.y11_c00111{bottom:737.820000px;}
.y10_c00111{bottom:768.870000px;}
.yf_c00111{bottom:799.920000px;}
.ye_c00111{bottom:830.970000px;}
.yd_c00111{bottom:861.930000px;}
.yc_c00111{bottom:892.980000px;}
.yb_c00111{bottom:924.030000px;}
.ya_c00111{bottom:955.080000px;}
.y9_c00111{bottom:986.130000px;}
.y8_c00111{bottom:1017.180000px;}
.y7_c00111{bottom:1048.230000px;}
.y6_c00111{bottom:1079.280000px;}
.y5_c00111{bottom:1110.330000px;}
.y4_c00111{bottom:1131.030000px;}
.y3_c00111{bottom:1150.915500px;}
.y2_c00111{bottom:1166.400000px;}
.y1_c00111{bottom:1197.450000px;}
.ha_c00111{height:17.280000px;}
.hb_c00111{height:34.471500px;}
.h5_c00111{height:35.281500px;}
.h7_c00111{height:51.751500px;}
.h9_c00111{height:52.470000px;}
.h2_c00111{height:52.998047px;}
.hd_c00111{height:55.530000px;}
.h8_c00111{height:59.004492px;}
.he_c00111{height:59.022492px;}
.h6_c00111{height:60.589687px;}
.h10_c00111{height:68.938500px;}
.hf_c00111{height:68.940000px;}
.h3_c00111{height:70.664062px;}
.h4_c00111{height:72.562500px;}
.h11_c00111{height:86.310000px;}
.hc_c00111{height:125.280000px;}
.h0_c00111{height:1262.880000px;}
.h1_c00111{height:1263.000000px;}
.w2_c00111{width:134.010000px;}
.w3_c00111{width:249.660000px;}
.w6_c00111{width:250.470000px;}
.w4_c00111{width:255.600000px;}
.w7_c00111{width:256.320000px;}
.w5_c00111{width:507.510000px;}
.w8_c00111{width:893.031000px;}
.w0_c00111{width:893.070000px;}
.w1_c00111{width:893.250000px;}
.x0_c00111{left:0.000000px;}
.xc_c00111{left:6.930000px;}
.xe_c00111{left:11.160000px;}
.x6_c00111{left:18.450000px;}
.x9_c00111{left:35.370000px;}
.x8_c00111{left:56.340000px;}
.xb_c00111{left:90.090000px;}
.x2_c00111{left:127.620000px;}
.x5_c00111{left:128.700000px;}
.x3_c00111{left:136.260000px;}
.x4_c00111{left:237.870000px;}
.x7_c00111{left:264.960000px;}
.xd_c00111{left:271.980000px;}
.x1_c00111{left:446.580000px;}
.xa_c00111{left:516.870000px;}
.xf_c00111{left:523.890000px;}
.x10_c00111{left:696.330000px;}
.x11_c00111{left:981.540000px;}
@media print{
.v1_c00111{vertical-align:-55.056000pt;}
.v0_c00111{vertical-align:0.000000pt;}
.ls17_c00111{letter-spacing:-0.480960pt;}
.ls13_c00111{letter-spacing:-0.374080pt;}
.ls16_c00111{letter-spacing:-0.320640pt;}
.ls10_c00111{letter-spacing:-0.256000pt;}
.ls15_c00111{letter-spacing:-0.213760pt;}
.ls14_c00111{letter-spacing:-0.160320pt;}
.ls12_c00111{letter-spacing:-0.106880pt;}
.lsf_c00111{letter-spacing:-0.064000pt;}
.ls11_c00111{letter-spacing:-0.053440pt;}
.lse_c00111{letter-spacing:0.000000pt;}
.ls8_c00111{letter-spacing:0.047360pt;}
.ls3_c00111{letter-spacing:0.064000pt;}
.ls7_c00111{letter-spacing:0.080000pt;}
.lsd_c00111{letter-spacing:0.106880pt;}
.ls6_c00111{letter-spacing:0.128000pt;}
.lsc_c00111{letter-spacing:0.160320pt;}
.ls2_c00111{letter-spacing:6.720000pt;}
.ls9_c00111{letter-spacing:7.760000pt;}
.lsa_c00111{letter-spacing:8.080000pt;}
.ls5_c00111{letter-spacing:13.126400pt;}
.ls1_c00111{letter-spacing:13.760000pt;}
.ls4_c00111{letter-spacing:16.640000pt;}
.lsb_c00111{letter-spacing:33.346560pt;}
.ls0_c00111{letter-spacing:284.016000pt;}
.ws2_c00111{word-spacing:-16.128000pt;}
.ws0_c00111{word-spacing:-16.064000pt;}
.ws1_c00111{word-spacing:-16.000000pt;}
.ws3_c00111{word-spacing:-15.936000pt;}
.ws4_c00111{word-spacing:-15.744000pt;}
.ws7_c00111{word-spacing:-13.520320pt;}
.wsb_c00111{word-spacing:-13.466880pt;}
.wsa_c00111{word-spacing:-13.360000pt;}
.ws5_c00111{word-spacing:-13.306560pt;}
.ws6_c00111{word-spacing:-13.253120pt;}
.ws8_c00111{word-spacing:-13.146240pt;}
.ws9_c00111{word-spacing:-13.039360pt;}
.ws19_c00111{word-spacing:-0.448000pt;}
.ws18_c00111{word-spacing:-0.384000pt;}
.ws2c_c00111{word-spacing:-0.374080pt;}
.ws27_c00111{word-spacing:-0.256000pt;}
.ws3e_c00111{word-spacing:-0.160320pt;}
.wsd_c00111{word-spacing:-0.144000pt;}
.ws16_c00111{word-spacing:-0.128000pt;}
.ws14_c00111{word-spacing:-0.064000pt;}
.ws2f_c00111{word-spacing:-0.053440pt;}
.wsc_c00111{word-spacing:0.000000pt;}
.ws33_c00111{word-spacing:0.053440pt;}
.ws20_c00111{word-spacing:0.064000pt;}
.ws3a_c00111{word-spacing:0.106880pt;}
.ws29_c00111{word-spacing:0.160320pt;}
.ws2d_c00111{word-spacing:0.267200pt;}
.ws28_c00111{word-spacing:0.480960pt;}
.ws3f_c00111{word-spacing:0.587840pt;}
.ws40_c00111{word-spacing:0.801600pt;}
.ws10_c00111{word-spacing:0.832000pt;}
.ws11_c00111{word-spacing:0.960000pt;}
.ws13_c00111{word-spacing:2.816000pt;}
.ws12_c00111{word-spacing:3.136000pt;}
.ws25_c00111{word-spacing:3.776000pt;}
.ws26_c00111{word-spacing:3.840000pt;}
.ws31_c00111{word-spacing:4.275200pt;}
.ws32_c00111{word-spacing:4.328640pt;}
.ws41_c00111{word-spacing:5.237120pt;}
.ws3b_c00111{word-spacing:5.344000pt;}
.ws3c_c00111{word-spacing:5.611200pt;}
.ws3d_c00111{word-spacing:5.664640pt;}
.ws2b_c00111{word-spacing:6.519680pt;}
.ws1e_c00111{word-spacing:6.592000pt;}
.ws1d_c00111{word-spacing:6.656000pt;}
.ws1c_c00111{word-spacing:6.720000pt;}
.ws30_c00111{word-spacing:8.122880pt;}
.ws2a_c00111{word-spacing:10.046720pt;}
.ws36_c00111{word-spacing:10.153600pt;}
.wsf_c00111{word-spacing:10.496000pt;}
.ws23_c00111{word-spacing:10.816000pt;}
.ws24_c00111{word-spacing:11.200000pt;}
.ws15_c00111{word-spacing:13.056000pt;}
.ws17_c00111{word-spacing:13.120000pt;}
.ws1a_c00111{word-spacing:13.632000pt;}
.ws1b_c00111{word-spacing:13.696000pt;}
.ws39_c00111{word-spacing:15.497600pt;}
.wse_c00111{word-spacing:15.680000pt;}
.ws22_c00111{word-spacing:16.576000pt;}
.ws21_c00111{word-spacing:16.640000pt;}
.ws1f_c00111{word-spacing:21.760000pt;}
.ws37_c00111{word-spacing:21.910400pt;}
.ws2e_c00111{word-spacing:24.849600pt;}
.ws38_c00111{word-spacing:32.544960pt;}
.ws34_c00111{word-spacing:33.400000pt;}
.ws35_c00111{word-spacing:40.186880pt;}
._0_c00111{margin-left:-0.960000pt;}
._2_c00111{width:0.896000pt;}
._1_c00111{width:13.184000pt;}
._3_c00111{width:33.667200pt;}
.fs0_c00111{font-size:48.000000pt;}
.fs2_c00111{font-size:53.440000pt;}
.fs1_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y23_c00111{bottom:3.040000pt;}
.y1f_c00111{bottom:3.120000pt;}
.y1a_c00111{bottom:3.600000pt;}
.y1e_c00111{bottom:18.400000pt;}
.y19_c00111{bottom:18.960000pt;}
.y1c_c00111{bottom:33.600000pt;}
.y1d_c00111{bottom:33.760000pt;}
.y21_c00111{bottom:34.240000pt;}
.y27_c00111{bottom:37.120000pt;}
.y2e_c00111{bottom:48.880000pt;}
.y2a_c00111{bottom:49.040000pt;}
.y38_c00111{bottom:50.880000pt;}
.y31_c00111{bottom:64.320000pt;}
.y33_c00111{bottom:64.480000pt;}
.y25_c00111{bottom:98.960000pt;}
.y37_c00111{bottom:102.160000pt;}
.y30_c00111{bottom:115.680000pt;}
.y36_c00111{bottom:134.152160pt;}
.y35_c00111{bottom:149.436000pt;}
.y32_c00111{bottom:164.640000pt;}
.y34_c00111{bottom:164.800000pt;}
.y2d_c00111{bottom:193.040000pt;}
.y2f_c00111{bottom:226.800000pt;}
.y24_c00111{bottom:255.040000pt;}
.y2c_c00111{bottom:273.436000pt;}
.y2b_c00111{bottom:288.800000pt;}
.y26_c00111{bottom:317.040000pt;}
.y29_c00111{bottom:323.516000pt;}
.y28_c00111{bottom:338.880000pt;}
.y20_c00111{bottom:367.120000pt;}
.y22_c00111{bottom:398.400000pt;}
.y1b_c00111{bottom:414.400000pt;}
.y18_c00111{bottom:462.400000pt;}
.y17_c00111{bottom:499.280000pt;}
.y16_c00111{bottom:517.680000pt;}
.y15_c00111{bottom:545.440000pt;}
.y14_c00111{bottom:573.040000pt;}
.y13_c00111{bottom:600.640000pt;}
.y12_c00111{bottom:628.240000pt;}
.y11_c00111{bottom:655.840000pt;}
.y10_c00111{bottom:683.440000pt;}
.yf_c00111{bottom:711.040000pt;}
.ye_c00111{bottom:738.640000pt;}
.yd_c00111{bottom:766.160000pt;}
.yc_c00111{bottom:793.760000pt;}
.yb_c00111{bottom:821.360000pt;}
.ya_c00111{bottom:848.960000pt;}
.y9_c00111{bottom:876.560000pt;}
.y8_c00111{bottom:904.160000pt;}
.y7_c00111{bottom:931.760000pt;}
.y6_c00111{bottom:959.360000pt;}
.y5_c00111{bottom:986.960000pt;}
.y4_c00111{bottom:1005.360000pt;}
.y3_c00111{bottom:1023.036000pt;}
.y2_c00111{bottom:1036.800000pt;}
.y1_c00111{bottom:1064.400000pt;}
.ha_c00111{height:15.360000pt;}
.hb_c00111{height:30.641333pt;}
.h5_c00111{height:31.361333pt;}
.h7_c00111{height:46.001333pt;}
.h9_c00111{height:46.640000pt;}
.h2_c00111{height:47.109375pt;}
.hd_c00111{height:49.360000pt;}
.h8_c00111{height:52.448437pt;}
.he_c00111{height:52.464437pt;}
.h6_c00111{height:53.857500pt;}
.h10_c00111{height:61.278667pt;}
.hf_c00111{height:61.280000pt;}
.h3_c00111{height:62.812500pt;}
.h4_c00111{height:64.500000pt;}
.h11_c00111{height:76.720000pt;}
.hc_c00111{height:111.360000pt;}
.h0_c00111{height:1122.560000pt;}
.h1_c00111{height:1122.666667pt;}
.w2_c00111{width:119.120000pt;}
.w3_c00111{width:221.920000pt;}
.w6_c00111{width:222.640000pt;}
.w4_c00111{width:227.200000pt;}
.w7_c00111{width:227.840000pt;}
.w5_c00111{width:451.120000pt;}
.w8_c00111{width:793.805333pt;}
.w0_c00111{width:793.840000pt;}
.w1_c00111{width:794.000000pt;}
.x0_c00111{left:0.000000pt;}
.xc_c00111{left:6.160000pt;}
.xe_c00111{left:9.920000pt;}
.x6_c00111{left:16.400000pt;}
.x9_c00111{left:31.440000pt;}
.x8_c00111{left:50.080000pt;}
.xb_c00111{left:80.080000pt;}
.x2_c00111{left:113.440000pt;}
.x5_c00111{left:114.400000pt;}
.x3_c00111{left:121.120000pt;}
.x4_c00111{left:211.440000pt;}
.x7_c00111{left:235.520000pt;}
.xd_c00111{left:241.760000pt;}
.x1_c00111{left:396.960000pt;}
.xa_c00111{left:459.440000pt;}
.xf_c00111{left:465.680000pt;}
.x10_c00111{left:618.960000pt;}
.x11_c00111{left:872.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_b782a23001cd346e2a7ab9df.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_9c73187ad1d3be6df3895d80.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00112{vertical-align:-20.880000px;}
.v0_c00112{vertical-align:0.000000px;}
.v1_c00112{vertical-align:27.000000px;}
.ls1d_c00112{letter-spacing:-0.360000px;}
.ls19_c00112{letter-spacing:-0.288000px;}
.ls15_c00112{letter-spacing:-0.240480px;}
.ls1b_c00112{letter-spacing:-0.216000px;}
.ls17_c00112{letter-spacing:-0.180360px;}
.ls1c_c00112{letter-spacing:-0.144000px;}
.ls14_c00112{letter-spacing:-0.120240px;}
.ls13_c00112{letter-spacing:-0.108000px;}
.ls18_c00112{letter-spacing:-0.072000px;}
.ls16_c00112{letter-spacing:-0.060120px;}
.ls12_c00112{letter-spacing:0.000000px;}
.ls11_c00112{letter-spacing:0.060120px;}
.ls9_c00112{letter-spacing:0.072000px;}
.ls1_c00112{letter-spacing:0.090000px;}
.ls10_c00112{letter-spacing:0.120240px;}
.ls5_c00112{letter-spacing:0.144000px;}
.ls2_c00112{letter-spacing:0.180360px;}
.ls1a_c00112{letter-spacing:0.191520px;}
.lsb_c00112{letter-spacing:0.727200px;}
.lse_c00112{letter-spacing:1.800000px;}
.ls6_c00112{letter-spacing:5.040000px;}
.ls3_c00112{letter-spacing:5.760000px;}
.lsf_c00112{letter-spacing:6.840000px;}
.ls8_c00112{letter-spacing:7.560000px;}
.ls4_c00112{letter-spacing:8.280000px;}
.ls0_c00112{letter-spacing:10.530000px;}
.ls7_c00112{letter-spacing:11.534400px;}
.lsc_c00112{letter-spacing:18.720000px;}
.lsd_c00112{letter-spacing:21.600000px;}
.lsa_c00112{letter-spacing:24.480000px;}
.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;}
}
.ws7_c00112{word-spacing:-18.144000px;}
.ws8_c00112{word-spacing:-18.072000px;}
.wsb_c00112{word-spacing:-18.000000px;}
.ws5_c00112{word-spacing:-17.928000px;}
.wsc_c00112{word-spacing:-17.856000px;}
.wsa_c00112{word-spacing:-17.784000px;}
.ws6_c00112{word-spacing:-17.712000px;}
.ws4_c00112{word-spacing:-15.210360px;}
.ws3_c00112{word-spacing:-15.150240px;}
.ws2_c00112{word-spacing:-15.030000px;}
.ws0_c00112{word-spacing:-14.909760px;}
.ws1_c00112{word-spacing:-14.789520px;}
.ws9_c00112{word-spacing:-12.161520px;}
.wsd_c00112{word-spacing:-9.720000px;}
.ws51_c00112{word-spacing:-0.420840px;}
.ws26_c00112{word-spacing:-0.180360px;}
.ws3b_c00112{word-spacing:-0.144000px;}
.ws29_c00112{word-spacing:-0.072000px;}
.wse_c00112{word-spacing:0.000000px;}
.ws27_c00112{word-spacing:0.120240px;}
.ws10_c00112{word-spacing:0.162000px;}
.ws15_c00112{word-spacing:0.180360px;}
.ws28_c00112{word-spacing:0.240480px;}
.wsf_c00112{word-spacing:0.270000px;}
.ws35_c00112{word-spacing:0.288000px;}
.ws2a_c00112{word-spacing:0.360000px;}
.ws16_c00112{word-spacing:0.360720px;}
.ws46_c00112{word-spacing:0.648000px;}
.ws45_c00112{word-spacing:0.720000px;}
.ws1e_c00112{word-spacing:1.563120px;}
.ws4b_c00112{word-spacing:1.656000px;}
.ws4c_c00112{word-spacing:1.728000px;}
.ws4d_c00112{word-spacing:1.800000px;}
.ws13_c00112{word-spacing:2.044080px;}
.ws14_c00112{word-spacing:2.284560px;}
.ws31_c00112{word-spacing:2.448000px;}
.ws50_c00112{word-spacing:2.520000px;}
.ws30_c00112{word-spacing:2.808000px;}
.ws32_c00112{word-spacing:2.880000px;}
.ws3d_c00112{word-spacing:3.528000px;}
.ws3c_c00112{word-spacing:3.600000px;}
.ws38_c00112{word-spacing:3.960000px;}
.ws33_c00112{word-spacing:5.040000px;}
.ws2c_c00112{word-spacing:5.328000px;}
.ws2b_c00112{word-spacing:5.760000px;}
.ws4f_c00112{word-spacing:6.768000px;}
.ws4e_c00112{word-spacing:6.840000px;}
.ws3a_c00112{word-spacing:7.488000px;}
.ws39_c00112{word-spacing:7.560000px;}
.ws3e_c00112{word-spacing:7.776000px;}
.ws3f_c00112{word-spacing:7.848000px;}
.ws2e_c00112{word-spacing:7.920000px;}
.ws2f_c00112{word-spacing:8.208000px;}
.ws2d_c00112{word-spacing:8.280000px;}
.ws21_c00112{word-spacing:8.537040px;}
.ws20_c00112{word-spacing:8.717400px;}
.ws1f_c00112{word-spacing:9.498960px;}
.ws12_c00112{word-spacing:10.581120px;}
.ws11_c00112{word-spacing:10.641240px;}
.ws36_c00112{word-spacing:11.448000px;}
.ws37_c00112{word-spacing:11.520000px;}
.ws24_c00112{word-spacing:15.030000px;}
.ws25_c00112{word-spacing:15.631200px;}
.ws34_c00112{word-spacing:16.848000px;}
.ws41_c00112{word-spacing:18.216000px;}
.ws1c_c00112{word-spacing:18.216360px;}
.ws48_c00112{word-spacing:18.576000px;}
.ws47_c00112{word-spacing:18.720000px;}
.ws4a_c00112{word-spacing:21.528000px;}
.ws49_c00112{word-spacing:21.600000px;}
.ws40_c00112{word-spacing:23.400000px;}
.ws1b_c00112{word-spacing:23.927760px;}
.ws42_c00112{word-spacing:24.336000px;}
.ws44_c00112{word-spacing:24.408000px;}
.ws23_c00112{word-spacing:24.408720px;}
.ws43_c00112{word-spacing:24.480000px;}
.ws17_c00112{word-spacing:31.923720px;}
.ws18_c00112{word-spacing:32.164200px;}
.ws22_c00112{word-spacing:48.516840px;}
.ws1d_c00112{word-spacing:50.560920px;}
.ws19_c00112{word-spacing:111.161880px;}
.ws1a_c00112{word-spacing:111.462480px;}
._1_c00112{margin-left:-1.058400px;}
._0_c00112{width:1.220400px;}
._7_c00112{width:2.275200px;}
._4_c00112{width:3.434400px;}
._2_c00112{width:5.810400px;}
._3_c00112{width:8.208000px;}
._6_c00112{width:21.830400px;}
._5_c00112{width:24.343200px;}
.fc0_c00112{color:rgb(0,0,0);}
.fs4_c00112{font-size:38.880000px;}
.fs3_c00112{font-size:47.880000px;}
.fs0_c00112{font-size:54.000000px;}
.fs2_c00112{font-size:60.120000px;}
.fs1_c00112{font-size:72.000000px;}
.y0_c00112{bottom:0.000000px;}
.yb_c00112{bottom:3.510000px;}
.y9_c00112{bottom:37.980000px;}
.y12_c00112{bottom:55.260000px;}
.y32_c00112{bottom:57.240000px;}
.y11_c00112{bottom:72.540000px;}
.yf_c00112{bottom:89.730000px;}
.ye_c00112{bottom:107.010000px;}
.y31_c00112{bottom:115.020000px;}
.yc_c00112{bottom:124.290000px;}
.y33_c00112{bottom:127.710000px;}
.y30_c00112{bottom:154.440000px;}
.y7_c00112{bottom:176.580000px;}
.y2f_c00112{bottom:185.490000px;}
.y2e_c00112{bottom:216.540000px;}
.y2d_c00112{bottom:247.590000px;}
.y2c_c00112{bottom:278.640000px;}
.y2b_c00112{bottom:309.690000px;}
.y2a_c00112{bottom:340.740000px;}
.y29_c00112{bottom:371.790000px;}
.y28_c00112{bottom:402.840000px;}
.y27_c00112{bottom:433.890000px;}
.y26_c00112{bottom:464.940000px;}
.y25_c00112{bottom:495.990000px;}
.y24_c00112{bottom:527.040000px;}
.y23_c00112{bottom:558.090000px;}
.y22_c00112{bottom:589.140000px;}
.y21_c00112{bottom:620.190000px;}
.y20_c00112{bottom:651.240000px;}
.y1f_c00112{bottom:682.290000px;}
.y1e_c00112{bottom:713.340000px;}
.y1d_c00112{bottom:744.390000px;}
.y1c_c00112{bottom:775.440000px;}
.y1b_c00112{bottom:806.490000px;}
.y1a_c00112{bottom:837.540000px;}
.y19_c00112{bottom:868.590000px;}
.y18_c00112{bottom:899.640000px;}
.y17_c00112{bottom:919.620000px;}
.y6_c00112{bottom:935.640000px;}
.y14_c00112{bottom:956.425680px;}
.y13_c00112{bottom:973.620000px;}
.y16_c00112{bottom:990.900000px;}
.y10_c00112{bottom:1008.180000px;}
.y15_c00112{bottom:1025.370000px;}
.yd_c00112{bottom:1042.650000px;}
.y8_c00112{bottom:1074.420000px;}
.ya_c00112{bottom:1095.120000px;}
.y5_c00112{bottom:1131.030000px;}
.y4_c00112{bottom:1150.920000px;}
.y3_c00112{bottom:1166.404500px;}
.y2_c00112{bottom:1181.970000px;}
.y1_c00112{bottom:1197.450000px;}
.hb_c00112{height:38.158594px;}
.h7_c00112{height:51.750000px;}
.h3_c00112{height:52.971680px;}
.h2_c00112{height:52.998047px;}
.h8_c00112{height:59.004492px;}
.h6_c00112{height:60.589687px;}
.h4_c00112{height:70.664062px;}
.ha_c00112{height:73.991602px;}
.h9_c00112{height:138.058500px;}
.h5_c00112{height:190.530000px;}
.h0_c00112{height:1262.880000px;}
.h1_c00112{height:1263.000000px;}
.w2_c00112{width:134.010000px;}
.w4_c00112{width:250.378500px;}
.w5_c00112{width:256.318500px;}
.w3_c00112{width:507.510000px;}
.w0_c00112{width:893.070000px;}
.w1_c00112{width:893.250000px;}
.x0_c00112{left:0.000000px;}
.x5_c00112{left:6.930000px;}
.x9_c00112{left:11.160000px;}
.xc_c00112{left:12.780000px;}
.xd_c00112{left:19.260000px;}
.x3_c00112{left:127.620000px;}
.x4_c00112{left:128.700000px;}
.xe_c00112{left:151.560000px;}
.x8_c00112{left:179.370000px;}
.x6_c00112{left:264.960000px;}
.x7_c00112{left:271.980000px;}
.x2_c00112{left:425.160000px;}
.x1_c00112{left:446.580000px;}
.xa_c00112{left:516.060000px;}
.xb_c00112{left:523.800000px;}
.xf_c00112{left:747.540000px;}
@media print{
.v2_c00112{vertical-align:-18.560000pt;}
.v0_c00112{vertical-align:0.000000pt;}
.v1_c00112{vertical-align:24.000000pt;}
.ls1d_c00112{letter-spacing:-0.320000pt;}
.ls19_c00112{letter-spacing:-0.256000pt;}
.ls15_c00112{letter-spacing:-0.213760pt;}
.ls1b_c00112{letter-spacing:-0.192000pt;}
.ls17_c00112{letter-spacing:-0.160320pt;}
.ls1c_c00112{letter-spacing:-0.128000pt;}
.ls14_c00112{letter-spacing:-0.106880pt;}
.ls13_c00112{letter-spacing:-0.096000pt;}
.ls18_c00112{letter-spacing:-0.064000pt;}
.ls16_c00112{letter-spacing:-0.053440pt;}
.ls12_c00112{letter-spacing:0.000000pt;}
.ls11_c00112{letter-spacing:0.053440pt;}
.ls9_c00112{letter-spacing:0.064000pt;}
.ls1_c00112{letter-spacing:0.080000pt;}
.ls10_c00112{letter-spacing:0.106880pt;}
.ls5_c00112{letter-spacing:0.128000pt;}
.ls2_c00112{letter-spacing:0.160320pt;}
.ls1a_c00112{letter-spacing:0.170240pt;}
.lsb_c00112{letter-spacing:0.646400pt;}
.lse_c00112{letter-spacing:1.600000pt;}
.ls6_c00112{letter-spacing:4.480000pt;}
.ls3_c00112{letter-spacing:5.120000pt;}
.lsf_c00112{letter-spacing:6.080000pt;}
.ls8_c00112{letter-spacing:6.720000pt;}
.ls4_c00112{letter-spacing:7.360000pt;}
.ls0_c00112{letter-spacing:9.360000pt;}
.ls7_c00112{letter-spacing:10.252800pt;}
.lsc_c00112{letter-spacing:16.640000pt;}
.lsd_c00112{letter-spacing:19.200000pt;}
.lsa_c00112{letter-spacing:21.760000pt;}
.ws7_c00112{word-spacing:-16.128000pt;}
.ws8_c00112{word-spacing:-16.064000pt;}
.wsb_c00112{word-spacing:-16.000000pt;}
.ws5_c00112{word-spacing:-15.936000pt;}
.wsc_c00112{word-spacing:-15.872000pt;}
.wsa_c00112{word-spacing:-15.808000pt;}
.ws6_c00112{word-spacing:-15.744000pt;}
.ws4_c00112{word-spacing:-13.520320pt;}
.ws3_c00112{word-spacing:-13.466880pt;}
.ws2_c00112{word-spacing:-13.360000pt;}
.ws0_c00112{word-spacing:-13.253120pt;}
.ws1_c00112{word-spacing:-13.146240pt;}
.ws9_c00112{word-spacing:-10.810240pt;}
.wsd_c00112{word-spacing:-8.640000pt;}
.ws51_c00112{word-spacing:-0.374080pt;}
.ws26_c00112{word-spacing:-0.160320pt;}
.ws3b_c00112{word-spacing:-0.128000pt;}
.ws29_c00112{word-spacing:-0.064000pt;}
.wse_c00112{word-spacing:0.000000pt;}
.ws27_c00112{word-spacing:0.106880pt;}
.ws10_c00112{word-spacing:0.144000pt;}
.ws15_c00112{word-spacing:0.160320pt;}
.ws28_c00112{word-spacing:0.213760pt;}
.wsf_c00112{word-spacing:0.240000pt;}
.ws35_c00112{word-spacing:0.256000pt;}
.ws2a_c00112{word-spacing:0.320000pt;}
.ws16_c00112{word-spacing:0.320640pt;}
.ws46_c00112{word-spacing:0.576000pt;}
.ws45_c00112{word-spacing:0.640000pt;}
.ws1e_c00112{word-spacing:1.389440pt;}
.ws4b_c00112{word-spacing:1.472000pt;}
.ws4c_c00112{word-spacing:1.536000pt;}
.ws4d_c00112{word-spacing:1.600000pt;}
.ws13_c00112{word-spacing:1.816960pt;}
.ws14_c00112{word-spacing:2.030720pt;}
.ws31_c00112{word-spacing:2.176000pt;}
.ws50_c00112{word-spacing:2.240000pt;}
.ws30_c00112{word-spacing:2.496000pt;}
.ws32_c00112{word-spacing:2.560000pt;}
.ws3d_c00112{word-spacing:3.136000pt;}
.ws3c_c00112{word-spacing:3.200000pt;}
.ws38_c00112{word-spacing:3.520000pt;}
.ws33_c00112{word-spacing:4.480000pt;}
.ws2c_c00112{word-spacing:4.736000pt;}
.ws2b_c00112{word-spacing:5.120000pt;}
.ws4f_c00112{word-spacing:6.016000pt;}
.ws4e_c00112{word-spacing:6.080000pt;}
.ws3a_c00112{word-spacing:6.656000pt;}
.ws39_c00112{word-spacing:6.720000pt;}
.ws3e_c00112{word-spacing:6.912000pt;}
.ws3f_c00112{word-spacing:6.976000pt;}
.ws2e_c00112{word-spacing:7.040000pt;}
.ws2f_c00112{word-spacing:7.296000pt;}
.ws2d_c00112{word-spacing:7.360000pt;}
.ws21_c00112{word-spacing:7.588480pt;}
.ws20_c00112{word-spacing:7.748800pt;}
.ws1f_c00112{word-spacing:8.443520pt;}
.ws12_c00112{word-spacing:9.405440pt;}
.ws11_c00112{word-spacing:9.458880pt;}
.ws36_c00112{word-spacing:10.176000pt;}
.ws37_c00112{word-spacing:10.240000pt;}
.ws24_c00112{word-spacing:13.360000pt;}
.ws25_c00112{word-spacing:13.894400pt;}
.ws34_c00112{word-spacing:14.976000pt;}
.ws41_c00112{word-spacing:16.192000pt;}
.ws1c_c00112{word-spacing:16.192320pt;}
.ws48_c00112{word-spacing:16.512000pt;}
.ws47_c00112{word-spacing:16.640000pt;}
.ws4a_c00112{word-spacing:19.136000pt;}
.ws49_c00112{word-spacing:19.200000pt;}
.ws40_c00112{word-spacing:20.800000pt;}
.ws1b_c00112{word-spacing:21.269120pt;}
.ws42_c00112{word-spacing:21.632000pt;}
.ws44_c00112{word-spacing:21.696000pt;}
.ws23_c00112{word-spacing:21.696640pt;}
.ws43_c00112{word-spacing:21.760000pt;}
.ws17_c00112{word-spacing:28.376640pt;}
.ws18_c00112{word-spacing:28.590400pt;}
.ws22_c00112{word-spacing:43.126080pt;}
.ws1d_c00112{word-spacing:44.943040pt;}
.ws19_c00112{word-spacing:98.810560pt;}
.ws1a_c00112{word-spacing:99.077760pt;}
._1_c00112{margin-left:-0.940800pt;}
._0_c00112{width:1.084800pt;}
._7_c00112{width:2.022400pt;}
._4_c00112{width:3.052800pt;}
._2_c00112{width:5.164800pt;}
._3_c00112{width:7.296000pt;}
._6_c00112{width:19.404800pt;}
._5_c00112{width:21.638400pt;}
.fs4_c00112{font-size:34.560000pt;}
.fs3_c00112{font-size:42.560000pt;}
.fs0_c00112{font-size:48.000000pt;}
.fs2_c00112{font-size:53.440000pt;}
.fs1_c00112{font-size:64.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.yb_c00112{bottom:3.120000pt;}
.y9_c00112{bottom:33.760000pt;}
.y12_c00112{bottom:49.120000pt;}
.y32_c00112{bottom:50.880000pt;}
.y11_c00112{bottom:64.480000pt;}
.yf_c00112{bottom:79.760000pt;}
.ye_c00112{bottom:95.120000pt;}
.y31_c00112{bottom:102.240000pt;}
.yc_c00112{bottom:110.480000pt;}
.y33_c00112{bottom:113.520000pt;}
.y30_c00112{bottom:137.280000pt;}
.y7_c00112{bottom:156.960000pt;}
.y2f_c00112{bottom:164.880000pt;}
.y2e_c00112{bottom:192.480000pt;}
.y2d_c00112{bottom:220.080000pt;}
.y2c_c00112{bottom:247.680000pt;}
.y2b_c00112{bottom:275.280000pt;}
.y2a_c00112{bottom:302.880000pt;}
.y29_c00112{bottom:330.480000pt;}
.y28_c00112{bottom:358.080000pt;}
.y27_c00112{bottom:385.680000pt;}
.y26_c00112{bottom:413.280000pt;}
.y25_c00112{bottom:440.880000pt;}
.y24_c00112{bottom:468.480000pt;}
.y23_c00112{bottom:496.080000pt;}
.y22_c00112{bottom:523.680000pt;}
.y21_c00112{bottom:551.280000pt;}
.y20_c00112{bottom:578.880000pt;}
.y1f_c00112{bottom:606.480000pt;}
.y1e_c00112{bottom:634.080000pt;}
.y1d_c00112{bottom:661.680000pt;}
.y1c_c00112{bottom:689.280000pt;}
.y1b_c00112{bottom:716.880000pt;}
.y1a_c00112{bottom:744.480000pt;}
.y19_c00112{bottom:772.080000pt;}
.y18_c00112{bottom:799.680000pt;}
.y17_c00112{bottom:817.440000pt;}
.y6_c00112{bottom:831.680000pt;}
.y14_c00112{bottom:850.156160pt;}
.y13_c00112{bottom:865.440000pt;}
.y16_c00112{bottom:880.800000pt;}
.y10_c00112{bottom:896.160000pt;}
.y15_c00112{bottom:911.440000pt;}
.yd_c00112{bottom:926.800000pt;}
.y8_c00112{bottom:955.040000pt;}
.ya_c00112{bottom:973.440000pt;}
.y5_c00112{bottom:1005.360000pt;}
.y4_c00112{bottom:1023.040000pt;}
.y3_c00112{bottom:1036.804000pt;}
.y2_c00112{bottom:1050.640000pt;}
.y1_c00112{bottom:1064.400000pt;}
.hb_c00112{height:33.918750pt;}
.h7_c00112{height:46.000000pt;}
.h3_c00112{height:47.085938pt;}
.h2_c00112{height:47.109375pt;}
.h8_c00112{height:52.448437pt;}
.h6_c00112{height:53.857500pt;}
.h4_c00112{height:62.812500pt;}
.ha_c00112{height:65.770312pt;}
.h9_c00112{height:122.718667pt;}
.h5_c00112{height:169.360000pt;}
.h0_c00112{height:1122.560000pt;}
.h1_c00112{height:1122.666667pt;}
.w2_c00112{width:119.120000pt;}
.w4_c00112{width:222.558667pt;}
.w5_c00112{width:227.838667pt;}
.w3_c00112{width:451.120000pt;}
.w0_c00112{width:793.840000pt;}
.w1_c00112{width:794.000000pt;}
.x0_c00112{left:0.000000pt;}
.x5_c00112{left:6.160000pt;}
.x9_c00112{left:9.920000pt;}
.xc_c00112{left:11.360000pt;}
.xd_c00112{left:17.120000pt;}
.x3_c00112{left:113.440000pt;}
.x4_c00112{left:114.400000pt;}
.xe_c00112{left:134.720000pt;}
.x8_c00112{left:159.440000pt;}
.x6_c00112{left:235.520000pt;}
.x7_c00112{left:241.760000pt;}
.x2_c00112{left:377.920000pt;}
.x1_c00112{left:396.960000pt;}
.xa_c00112{left:458.720000pt;}
.xb_c00112{left:465.600000pt;}
.xf_c00112{left:664.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_8c53c47f6c46a44bef21f275.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00113{vertical-align:-61.938000px;}
.v3_c00113{vertical-align:-20.880000px;}
.v0_c00113{vertical-align:0.000000px;}
.v2_c00113{vertical-align:27.000000px;}
.lsc_c00113{letter-spacing:-0.288000px;}
.lse_c00113{letter-spacing:-0.216000px;}
.ls10_c00113{letter-spacing:-0.180360px;}
.ls12_c00113{letter-spacing:-0.120240px;}
.lsb_c00113{letter-spacing:-0.072000px;}
.lsa_c00113{letter-spacing:0.000000px;}
.ls1_c00113{letter-spacing:0.072000px;}
.ls2_c00113{letter-spacing:0.144000px;}
.ls11_c00113{letter-spacing:0.180360px;}
.lsf_c00113{letter-spacing:0.191520px;}
.lsd_c00113{letter-spacing:0.432000px;}
.ls9_c00113{letter-spacing:2.224440px;}
.ls6_c00113{letter-spacing:2.520000px;}
.ls4_c00113{letter-spacing:4.320000px;}
.ls3_c00113{letter-spacing:6.120000px;}
.ls7_c00113{letter-spacing:6.480000px;}
.ls8_c00113{letter-spacing:6.840000px;}
.ls5_c00113{letter-spacing:18.360000px;}
.ls0_c00113{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00113{word-spacing:-18.144000px;}
.ws2_c00113{word-spacing:-18.072000px;}
.ws1_c00113{word-spacing:-18.000000px;}
.ws0_c00113{word-spacing:-17.928000px;}
.ws4_c00113{word-spacing:-17.784000px;}
.ws5_c00113{word-spacing:-12.161520px;}
.ws6_c00113{word-spacing:-9.720000px;}
.ws13_c00113{word-spacing:-0.432000px;}
.ws33_c00113{word-spacing:-0.420840px;}
.ws28_c00113{word-spacing:-0.360000px;}
.ws8_c00113{word-spacing:-0.162000px;}
.wsc_c00113{word-spacing:-0.144000px;}
.ws9_c00113{word-spacing:-0.072000px;}
.ws7_c00113{word-spacing:0.000000px;}
.ws1a_c00113{word-spacing:0.216000px;}
.ws34_c00113{word-spacing:0.240480px;}
.ws25_c00113{word-spacing:0.288000px;}
.ws14_c00113{word-spacing:1.728000px;}
.ws15_c00113{word-spacing:1.800000px;}
.ws32_c00113{word-spacing:2.044080px;}
.ws1d_c00113{word-spacing:2.160000px;}
.ws22_c00113{word-spacing:2.376000px;}
.ws31_c00113{word-spacing:2.404800px;}
.ws20_c00113{word-spacing:2.448000px;}
.ws24_c00113{word-spacing:2.520000px;}
.ws2f_c00113{word-spacing:3.816000px;}
.ws30_c00113{word-spacing:3.888000px;}
.ws1b_c00113{word-spacing:4.176000px;}
.ws16_c00113{word-spacing:4.248000px;}
.ws19_c00113{word-spacing:4.320000px;}
.ws27_c00113{word-spacing:5.328000px;}
.ws26_c00113{word-spacing:5.400000px;}
.ws11_c00113{word-spacing:6.048000px;}
.ws23_c00113{word-spacing:6.120000px;}
.ws2a_c00113{word-spacing:6.768000px;}
.ws29_c00113{word-spacing:6.840000px;}
.wsd_c00113{word-spacing:7.848000px;}
.ws12_c00113{word-spacing:8.640000px;}
.ws10_c00113{word-spacing:8.856000px;}
.wsf_c00113{word-spacing:9.000000px;}
.ws2b_c00113{word-spacing:11.808000px;}
.ws17_c00113{word-spacing:15.048000px;}
.ws18_c00113{word-spacing:15.408000px;}
.ws1c_c00113{word-spacing:16.128000px;}
.wsa_c00113{word-spacing:16.848000px;}
.wsb_c00113{word-spacing:17.208000px;}
.ws1e_c00113{word-spacing:18.000000px;}
.ws1f_c00113{word-spacing:18.216000px;}
.wse_c00113{word-spacing:21.600000px;}
.ws21_c00113{word-spacing:27.360000px;}
.ws2d_c00113{word-spacing:29.016000px;}
.ws2c_c00113{word-spacing:29.088000px;}
.ws2e_c00113{word-spacing:29.160000px;}
._1_c00113{margin-left:-1.008000px;}
._7_c00113{width:1.008000px;}
._8_c00113{width:2.016000px;}
._4_c00113{width:3.960000px;}
._5_c00113{width:5.112000px;}
._3_c00113{width:6.336000px;}
._2_c00113{width:9.000000px;}
._6_c00113{width:15.984000px;}
._0_c00113{width:16.992000px;}
._9_c00113{width:28.440000px;}
._a_c00113{width:29.448000px;}
.fc0_c00113{color:rgb(0,0,0);}
.fs3_c00113{font-size:38.880000px;}
.fs2_c00113{font-size:47.880000px;}
.fs0_c00113{font-size:54.000000px;}
.fs4_c00113{font-size:60.120000px;}
.fs1_c00113{font-size:72.000000px;}
.y0_c00113{bottom:0.000000px;}
.y26_c00113{bottom:57.240000px;}
.y25_c00113{bottom:109.795680px;}
.y24_c00113{bottom:132.210000px;}
.y27_c00113{bottom:144.900000px;}
.y23_c00113{bottom:189.270000px;}
.y22_c00113{bottom:220.320000px;}
.y21_c00113{bottom:251.370000px;}
.y20_c00113{bottom:282.420000px;}
.y1f_c00113{bottom:313.470000px;}
.y1e_c00113{bottom:344.520000px;}
.y1d_c00113{bottom:375.570000px;}
.y1c_c00113{bottom:406.620000px;}
.y1b_c00113{bottom:437.670000px;}
.y1a_c00113{bottom:458.370000px;}
.y19_c00113{bottom:489.420000px;}
.y18_c00113{bottom:520.470000px;}
.y17_c00113{bottom:551.520000px;}
.y16_c00113{bottom:582.570000px;}
.y15_c00113{bottom:613.620000px;}
.y14_c00113{bottom:644.670000px;}
.y13_c00113{bottom:675.720000px;}
.y12_c00113{bottom:706.770000px;}
.y11_c00113{bottom:737.820000px;}
.y10_c00113{bottom:768.870000px;}
.yf_c00113{bottom:799.920000px;}
.ye_c00113{bottom:830.970000px;}
.yd_c00113{bottom:861.930000px;}
.yc_c00113{bottom:892.980000px;}
.yb_c00113{bottom:924.030000px;}
.ya_c00113{bottom:955.080000px;}
.y9_c00113{bottom:986.130000px;}
.y8_c00113{bottom:1017.180000px;}
.y7_c00113{bottom:1048.230000px;}
.y6_c00113{bottom:1079.280000px;}
.y5_c00113{bottom:1110.330000px;}
.y4_c00113{bottom:1131.030000px;}
.y3_c00113{bottom:1150.915500px;}
.y2_c00113{bottom:1166.400000px;}
.y1_c00113{bottom:1197.450000px;}
.h5_c00113{height:38.158594px;}
.h2_c00113{height:52.998047px;}
.h6_c00113{height:59.004492px;}
.h3_c00113{height:70.664062px;}
.h4_c00113{height:73.991602px;}
.h0_c00113{height:1262.880000px;}
.h1_c00113{height:1263.000000px;}
.w0_c00113{width:893.070000px;}
.w1_c00113{width:893.250000px;}
.x0_c00113{left:0.000000px;}
.x2_c00113{left:127.620000px;}
.x1_c00113{left:446.580000px;}
@media print{
.v1_c00113{vertical-align:-55.056000pt;}
.v3_c00113{vertical-align:-18.560000pt;}
.v0_c00113{vertical-align:0.000000pt;}
.v2_c00113{vertical-align:24.000000pt;}
.lsc_c00113{letter-spacing:-0.256000pt;}
.lse_c00113{letter-spacing:-0.192000pt;}
.ls10_c00113{letter-spacing:-0.160320pt;}
.ls12_c00113{letter-spacing:-0.106880pt;}
.lsb_c00113{letter-spacing:-0.064000pt;}
.lsa_c00113{letter-spacing:0.000000pt;}
.ls1_c00113{letter-spacing:0.064000pt;}
.ls2_c00113{letter-spacing:0.128000pt;}
.ls11_c00113{letter-spacing:0.160320pt;}
.lsf_c00113{letter-spacing:0.170240pt;}
.lsd_c00113{letter-spacing:0.384000pt;}
.ls9_c00113{letter-spacing:1.977280pt;}
.ls6_c00113{letter-spacing:2.240000pt;}
.ls4_c00113{letter-spacing:3.840000pt;}
.ls3_c00113{letter-spacing:5.440000pt;}
.ls7_c00113{letter-spacing:5.760000pt;}
.ls8_c00113{letter-spacing:6.080000pt;}
.ls5_c00113{letter-spacing:16.320000pt;}
.ls0_c00113{letter-spacing:284.016000pt;}
.ws3_c00113{word-spacing:-16.128000pt;}
.ws2_c00113{word-spacing:-16.064000pt;}
.ws1_c00113{word-spacing:-16.000000pt;}
.ws0_c00113{word-spacing:-15.936000pt;}
.ws4_c00113{word-spacing:-15.808000pt;}
.ws5_c00113{word-spacing:-10.810240pt;}
.ws6_c00113{word-spacing:-8.640000pt;}
.ws13_c00113{word-spacing:-0.384000pt;}
.ws33_c00113{word-spacing:-0.374080pt;}
.ws28_c00113{word-spacing:-0.320000pt;}
.ws8_c00113{word-spacing:-0.144000pt;}
.wsc_c00113{word-spacing:-0.128000pt;}
.ws9_c00113{word-spacing:-0.064000pt;}
.ws7_c00113{word-spacing:0.000000pt;}
.ws1a_c00113{word-spacing:0.192000pt;}
.ws34_c00113{word-spacing:0.213760pt;}
.ws25_c00113{word-spacing:0.256000pt;}
.ws14_c00113{word-spacing:1.536000pt;}
.ws15_c00113{word-spacing:1.600000pt;}
.ws32_c00113{word-spacing:1.816960pt;}
.ws1d_c00113{word-spacing:1.920000pt;}
.ws22_c00113{word-spacing:2.112000pt;}
.ws31_c00113{word-spacing:2.137600pt;}
.ws20_c00113{word-spacing:2.176000pt;}
.ws24_c00113{word-spacing:2.240000pt;}
.ws2f_c00113{word-spacing:3.392000pt;}
.ws30_c00113{word-spacing:3.456000pt;}
.ws1b_c00113{word-spacing:3.712000pt;}
.ws16_c00113{word-spacing:3.776000pt;}
.ws19_c00113{word-spacing:3.840000pt;}
.ws27_c00113{word-spacing:4.736000pt;}
.ws26_c00113{word-spacing:4.800000pt;}
.ws11_c00113{word-spacing:5.376000pt;}
.ws23_c00113{word-spacing:5.440000pt;}
.ws2a_c00113{word-spacing:6.016000pt;}
.ws29_c00113{word-spacing:6.080000pt;}
.wsd_c00113{word-spacing:6.976000pt;}
.ws12_c00113{word-spacing:7.680000pt;}
.ws10_c00113{word-spacing:7.872000pt;}
.wsf_c00113{word-spacing:8.000000pt;}
.ws2b_c00113{word-spacing:10.496000pt;}
.ws17_c00113{word-spacing:13.376000pt;}
.ws18_c00113{word-spacing:13.696000pt;}
.ws1c_c00113{word-spacing:14.336000pt;}
.wsa_c00113{word-spacing:14.976000pt;}
.wsb_c00113{word-spacing:15.296000pt;}
.ws1e_c00113{word-spacing:16.000000pt;}
.ws1f_c00113{word-spacing:16.192000pt;}
.wse_c00113{word-spacing:19.200000pt;}
.ws21_c00113{word-spacing:24.320000pt;}
.ws2d_c00113{word-spacing:25.792000pt;}
.ws2c_c00113{word-spacing:25.856000pt;}
.ws2e_c00113{word-spacing:25.920000pt;}
._1_c00113{margin-left:-0.896000pt;}
._7_c00113{width:0.896000pt;}
._8_c00113{width:1.792000pt;}
._4_c00113{width:3.520000pt;}
._5_c00113{width:4.544000pt;}
._3_c00113{width:5.632000pt;}
._2_c00113{width:8.000000pt;}
._6_c00113{width:14.208000pt;}
._0_c00113{width:15.104000pt;}
._9_c00113{width:25.280000pt;}
._a_c00113{width:26.176000pt;}
.fs3_c00113{font-size:34.560000pt;}
.fs2_c00113{font-size:42.560000pt;}
.fs0_c00113{font-size:48.000000pt;}
.fs4_c00113{font-size:53.440000pt;}
.fs1_c00113{font-size:64.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y26_c00113{bottom:50.880000pt;}
.y25_c00113{bottom:97.596160pt;}
.y24_c00113{bottom:117.520000pt;}
.y27_c00113{bottom:128.800000pt;}
.y23_c00113{bottom:168.240000pt;}
.y22_c00113{bottom:195.840000pt;}
.y21_c00113{bottom:223.440000pt;}
.y20_c00113{bottom:251.040000pt;}
.y1f_c00113{bottom:278.640000pt;}
.y1e_c00113{bottom:306.240000pt;}
.y1d_c00113{bottom:333.840000pt;}
.y1c_c00113{bottom:361.440000pt;}
.y1b_c00113{bottom:389.040000pt;}
.y1a_c00113{bottom:407.440000pt;}
.y19_c00113{bottom:435.040000pt;}
.y18_c00113{bottom:462.640000pt;}
.y17_c00113{bottom:490.240000pt;}
.y16_c00113{bottom:517.840000pt;}
.y15_c00113{bottom:545.440000pt;}
.y14_c00113{bottom:573.040000pt;}
.y13_c00113{bottom:600.640000pt;}
.y12_c00113{bottom:628.240000pt;}
.y11_c00113{bottom:655.840000pt;}
.y10_c00113{bottom:683.440000pt;}
.yf_c00113{bottom:711.040000pt;}
.ye_c00113{bottom:738.640000pt;}
.yd_c00113{bottom:766.160000pt;}
.yc_c00113{bottom:793.760000pt;}
.yb_c00113{bottom:821.360000pt;}
.ya_c00113{bottom:848.960000pt;}
.y9_c00113{bottom:876.560000pt;}
.y8_c00113{bottom:904.160000pt;}
.y7_c00113{bottom:931.760000pt;}
.y6_c00113{bottom:959.360000pt;}
.y5_c00113{bottom:986.960000pt;}
.y4_c00113{bottom:1005.360000pt;}
.y3_c00113{bottom:1023.036000pt;}
.y2_c00113{bottom:1036.800000pt;}
.y1_c00113{bottom:1064.400000pt;}
.h5_c00113{height:33.918750pt;}
.h2_c00113{height:47.109375pt;}
.h6_c00113{height:52.448437pt;}
.h3_c00113{height:62.812500pt;}
.h4_c00113{height:65.770313pt;}
.h0_c00113{height:1122.560000pt;}
.h1_c00113{height:1122.666667pt;}
.w0_c00113{width:793.840000pt;}
.w1_c00113{width:794.000000pt;}
.x0_c00113{left:0.000000pt;}
.x2_c00113{left:113.440000pt;}
.x1_c00113{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4136377b92bbfd5b73772b18.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0_c00114{vertical-align:0.000000px;}
.v1_c00114{vertical-align:27.000000px;}
.lsb_c00114{letter-spacing:-0.360000px;}
.lsa_c00114{letter-spacing:-0.288000px;}
.lsf_c00114{letter-spacing:-0.216000px;}
.ls9_c00114{letter-spacing:-0.144000px;}
.ls8_c00114{letter-spacing:-0.108000px;}
.lsd_c00114{letter-spacing:-0.072000px;}
.ls11_c00114{letter-spacing:-0.060120px;}
.ls7_c00114{letter-spacing:0.000000px;}
.ls5_c00114{letter-spacing:0.060120px;}
.ls2_c00114{letter-spacing:0.072000px;}
.lsc_c00114{letter-spacing:0.144000px;}
.ls10_c00114{letter-spacing:0.180360px;}
.lse_c00114{letter-spacing:0.191520px;}
.ls3_c00114{letter-spacing:4.680000px;}
.ls0_c00114{letter-spacing:5.040000px;}
.ls4_c00114{letter-spacing:7.274520px;}
.ls6_c00114{letter-spacing:8.356680px;}
.ls1_c00114{letter-spacing:23.760000px;}
.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;}
}
.ws3_c00114{word-spacing:-18.144000px;}
.ws1_c00114{word-spacing:-18.072000px;}
.ws5_c00114{word-spacing:-18.000000px;}
.ws0_c00114{word-spacing:-17.856000px;}
.ws2_c00114{word-spacing:-17.712000px;}
.ws7_c00114{word-spacing:-15.090120px;}
.ws4_c00114{word-spacing:-12.161520px;}
.ws6_c00114{word-spacing:-9.720000px;}
.ws29_c00114{word-spacing:-0.432000px;}
.ws17_c00114{word-spacing:-0.144000px;}
.ws12_c00114{word-spacing:-0.072000px;}
.ws32_c00114{word-spacing:-0.060120px;}
.ws8_c00114{word-spacing:0.000000px;}
.wsa_c00114{word-spacing:0.162000px;}
.ws2b_c00114{word-spacing:0.216000px;}
.ws9_c00114{word-spacing:0.270000px;}
.ws24_c00114{word-spacing:0.288000px;}
.ws13_c00114{word-spacing:0.360000px;}
.ws2a_c00114{word-spacing:0.648000px;}
.ws2c_c00114{word-spacing:0.720000px;}
.ws25_c00114{word-spacing:1.008000px;}
.ws11_c00114{word-spacing:1.080000px;}
.ws26_c00114{word-spacing:1.296000px;}
.ws2f_c00114{word-spacing:1.728000px;}
.ws23_c00114{word-spacing:1.800000px;}
.ws1f_c00114{word-spacing:3.240000px;}
.ws21_c00114{word-spacing:4.320000px;}
.ws2d_c00114{word-spacing:4.608000px;}
.ws20_c00114{word-spacing:4.680000px;}
.ws10_c00114{word-spacing:4.968000px;}
.wsf_c00114{word-spacing:5.040000px;}
.wsd_c00114{word-spacing:5.400000px;}
.wsc_c00114{word-spacing:5.688000px;}
.wse_c00114{word-spacing:5.760000px;}
.ws30_c00114{word-spacing:7.094160px;}
.ws31_c00114{word-spacing:7.274520px;}
.ws1b_c00114{word-spacing:7.488000px;}
.ws1c_c00114{word-spacing:7.560000px;}
.ws34_c00114{word-spacing:7.815600px;}
.ws33_c00114{word-spacing:8.416800px;}
.ws19_c00114{word-spacing:9.648000px;}
.ws1a_c00114{word-spacing:9.720000px;}
.ws18_c00114{word-spacing:9.792000px;}
.ws22_c00114{word-spacing:10.368000px;}
.ws28_c00114{word-spacing:11.808000px;}
.ws27_c00114{word-spacing:11.880000px;}
.ws1d_c00114{word-spacing:18.936000px;}
.ws2e_c00114{word-spacing:19.008000px;}
.wsb_c00114{word-spacing:23.328000px;}
.ws15_c00114{word-spacing:23.400000px;}
.ws14_c00114{word-spacing:23.688000px;}
.ws16_c00114{word-spacing:23.760000px;}
.ws1e_c00114{word-spacing:28.368000px;}
._1_c00114{margin-left:-1.058400px;}
._0_c00114{width:1.220400px;}
._5_c00114{width:2.304000px;}
._4_c00114{width:4.464000px;}
._3_c00114{width:7.610400px;}
._6_c00114{width:11.910960px;}
._2_c00114{width:23.832000px;}
.fc0_c00114{color:rgb(0,0,0);}
.fs3_c00114{font-size:38.880000px;}
.fs2_c00114{font-size:47.880000px;}
.fs0_c00114{font-size:54.000000px;}
.fs4_c00114{font-size:60.120000px;}
.fs1_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y28_c00114{bottom:57.240000px;}
.y27_c00114{bottom:109.795680px;}
.y26_c00114{bottom:132.210000px;}
.y25_c00114{bottom:144.265500px;}
.y24_c00114{bottom:166.770000px;}
.y29_c00114{bottom:179.460000px;}
.y23_c00114{bottom:209.970000px;}
.y22_c00114{bottom:241.020000px;}
.y21_c00114{bottom:272.070000px;}
.y20_c00114{bottom:303.120000px;}
.y1f_c00114{bottom:334.170000px;}
.y1e_c00114{bottom:365.220000px;}
.y1d_c00114{bottom:396.270000px;}
.y1c_c00114{bottom:427.320000px;}
.y1b_c00114{bottom:458.370000px;}
.y1a_c00114{bottom:489.420000px;}
.y19_c00114{bottom:520.470000px;}
.y18_c00114{bottom:551.520000px;}
.y17_c00114{bottom:582.570000px;}
.y16_c00114{bottom:613.620000px;}
.y15_c00114{bottom:644.670000px;}
.y14_c00114{bottom:675.720000px;}
.y13_c00114{bottom:706.770000px;}
.y12_c00114{bottom:737.820000px;}
.y11_c00114{bottom:768.870000px;}
.y10_c00114{bottom:799.920000px;}
.yf_c00114{bottom:830.970000px;}
.ye_c00114{bottom:861.930000px;}
.yd_c00114{bottom:892.980000px;}
.yc_c00114{bottom:924.030000px;}
.yb_c00114{bottom:955.080000px;}
.ya_c00114{bottom:986.130000px;}
.y9_c00114{bottom:1017.180000px;}
.y8_c00114{bottom:1048.230000px;}
.y7_c00114{bottom:1079.280000px;}
.y6_c00114{bottom:1110.330000px;}
.y5_c00114{bottom:1131.030000px;}
.y4_c00114{bottom:1150.920000px;}
.y3_c00114{bottom:1166.404500px;}
.y2_c00114{bottom:1181.970000px;}
.y1_c00114{bottom:1197.450000px;}
.h6_c00114{height:38.158594px;}
.h3_c00114{height:52.971680px;}
.h2_c00114{height:52.998047px;}
.h7_c00114{height:59.004492px;}
.h4_c00114{height:70.664062px;}
.h5_c00114{height:73.991602px;}
.h0_c00114{height:1262.880000px;}
.h1_c00114{height:1263.000000px;}
.w0_c00114{width:893.070000px;}
.w1_c00114{width:893.250000px;}
.x0_c00114{left:0.000000px;}
.x3_c00114{left:127.620000px;}
.x4_c00114{left:180.810000px;}
.x2_c00114{left:425.160000px;}
.x1_c00114{left:446.580000px;}
.x5_c00114{left:747.540000px;}
@media print{
.v2_c00114{vertical-align:-18.560000pt;}
.v0_c00114{vertical-align:0.000000pt;}
.v1_c00114{vertical-align:24.000000pt;}
.lsb_c00114{letter-spacing:-0.320000pt;}
.lsa_c00114{letter-spacing:-0.256000pt;}
.lsf_c00114{letter-spacing:-0.192000pt;}
.ls9_c00114{letter-spacing:-0.128000pt;}
.ls8_c00114{letter-spacing:-0.096000pt;}
.lsd_c00114{letter-spacing:-0.064000pt;}
.ls11_c00114{letter-spacing:-0.053440pt;}
.ls7_c00114{letter-spacing:0.000000pt;}
.ls5_c00114{letter-spacing:0.053440pt;}
.ls2_c00114{letter-spacing:0.064000pt;}
.lsc_c00114{letter-spacing:0.128000pt;}
.ls10_c00114{letter-spacing:0.160320pt;}
.lse_c00114{letter-spacing:0.170240pt;}
.ls3_c00114{letter-spacing:4.160000pt;}
.ls0_c00114{letter-spacing:4.480000pt;}
.ls4_c00114{letter-spacing:6.466240pt;}
.ls6_c00114{letter-spacing:7.428160pt;}
.ls1_c00114{letter-spacing:21.120000pt;}
.ws3_c00114{word-spacing:-16.128000pt;}
.ws1_c00114{word-spacing:-16.064000pt;}
.ws5_c00114{word-spacing:-16.000000pt;}
.ws0_c00114{word-spacing:-15.872000pt;}
.ws2_c00114{word-spacing:-15.744000pt;}
.ws7_c00114{word-spacing:-13.413440pt;}
.ws4_c00114{word-spacing:-10.810240pt;}
.ws6_c00114{word-spacing:-8.640000pt;}
.ws29_c00114{word-spacing:-0.384000pt;}
.ws17_c00114{word-spacing:-0.128000pt;}
.ws12_c00114{word-spacing:-0.064000pt;}
.ws32_c00114{word-spacing:-0.053440pt;}
.ws8_c00114{word-spacing:0.000000pt;}
.wsa_c00114{word-spacing:0.144000pt;}
.ws2b_c00114{word-spacing:0.192000pt;}
.ws9_c00114{word-spacing:0.240000pt;}
.ws24_c00114{word-spacing:0.256000pt;}
.ws13_c00114{word-spacing:0.320000pt;}
.ws2a_c00114{word-spacing:0.576000pt;}
.ws2c_c00114{word-spacing:0.640000pt;}
.ws25_c00114{word-spacing:0.896000pt;}
.ws11_c00114{word-spacing:0.960000pt;}
.ws26_c00114{word-spacing:1.152000pt;}
.ws2f_c00114{word-spacing:1.536000pt;}
.ws23_c00114{word-spacing:1.600000pt;}
.ws1f_c00114{word-spacing:2.880000pt;}
.ws21_c00114{word-spacing:3.840000pt;}
.ws2d_c00114{word-spacing:4.096000pt;}
.ws20_c00114{word-spacing:4.160000pt;}
.ws10_c00114{word-spacing:4.416000pt;}
.wsf_c00114{word-spacing:4.480000pt;}
.wsd_c00114{word-spacing:4.800000pt;}
.wsc_c00114{word-spacing:5.056000pt;}
.wse_c00114{word-spacing:5.120000pt;}
.ws30_c00114{word-spacing:6.305920pt;}
.ws31_c00114{word-spacing:6.466240pt;}
.ws1b_c00114{word-spacing:6.656000pt;}
.ws1c_c00114{word-spacing:6.720000pt;}
.ws34_c00114{word-spacing:6.947200pt;}
.ws33_c00114{word-spacing:7.481600pt;}
.ws19_c00114{word-spacing:8.576000pt;}
.ws1a_c00114{word-spacing:8.640000pt;}
.ws18_c00114{word-spacing:8.704000pt;}
.ws22_c00114{word-spacing:9.216000pt;}
.ws28_c00114{word-spacing:10.496000pt;}
.ws27_c00114{word-spacing:10.560000pt;}
.ws1d_c00114{word-spacing:16.832000pt;}
.ws2e_c00114{word-spacing:16.896000pt;}
.wsb_c00114{word-spacing:20.736000pt;}
.ws15_c00114{word-spacing:20.800000pt;}
.ws14_c00114{word-spacing:21.056000pt;}
.ws16_c00114{word-spacing:21.120000pt;}
.ws1e_c00114{word-spacing:25.216000pt;}
._1_c00114{margin-left:-0.940800pt;}
._0_c00114{width:1.084800pt;}
._5_c00114{width:2.048000pt;}
._4_c00114{width:3.968000pt;}
._3_c00114{width:6.764800pt;}
._6_c00114{width:10.587520pt;}
._2_c00114{width:21.184000pt;}
.fs3_c00114{font-size:34.560000pt;}
.fs2_c00114{font-size:42.560000pt;}
.fs0_c00114{font-size:48.000000pt;}
.fs4_c00114{font-size:53.440000pt;}
.fs1_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y28_c00114{bottom:50.880000pt;}
.y27_c00114{bottom:97.596160pt;}
.y26_c00114{bottom:117.520000pt;}
.y25_c00114{bottom:128.236000pt;}
.y24_c00114{bottom:148.240000pt;}
.y29_c00114{bottom:159.520000pt;}
.y23_c00114{bottom:186.640000pt;}
.y22_c00114{bottom:214.240000pt;}
.y21_c00114{bottom:241.840000pt;}
.y20_c00114{bottom:269.440000pt;}
.y1f_c00114{bottom:297.040000pt;}
.y1e_c00114{bottom:324.640000pt;}
.y1d_c00114{bottom:352.240000pt;}
.y1c_c00114{bottom:379.840000pt;}
.y1b_c00114{bottom:407.440000pt;}
.y1a_c00114{bottom:435.040000pt;}
.y19_c00114{bottom:462.640000pt;}
.y18_c00114{bottom:490.240000pt;}
.y17_c00114{bottom:517.840000pt;}
.y16_c00114{bottom:545.440000pt;}
.y15_c00114{bottom:573.040000pt;}
.y14_c00114{bottom:600.640000pt;}
.y13_c00114{bottom:628.240000pt;}
.y12_c00114{bottom:655.840000pt;}
.y11_c00114{bottom:683.440000pt;}
.y10_c00114{bottom:711.040000pt;}
.yf_c00114{bottom:738.640000pt;}
.ye_c00114{bottom:766.160000pt;}
.yd_c00114{bottom:793.760000pt;}
.yc_c00114{bottom:821.360000pt;}
.yb_c00114{bottom:848.960000pt;}
.ya_c00114{bottom:876.560000pt;}
.y9_c00114{bottom:904.160000pt;}
.y8_c00114{bottom:931.760000pt;}
.y7_c00114{bottom:959.360000pt;}
.y6_c00114{bottom:986.960000pt;}
.y5_c00114{bottom:1005.360000pt;}
.y4_c00114{bottom:1023.040000pt;}
.y3_c00114{bottom:1036.804000pt;}
.y2_c00114{bottom:1050.640000pt;}
.y1_c00114{bottom:1064.400000pt;}
.h6_c00114{height:33.918750pt;}
.h3_c00114{height:47.085938pt;}
.h2_c00114{height:47.109375pt;}
.h7_c00114{height:52.448437pt;}
.h4_c00114{height:62.812500pt;}
.h5_c00114{height:65.770312pt;}
.h0_c00114{height:1122.560000pt;}
.h1_c00114{height:1122.666667pt;}
.w0_c00114{width:793.840000pt;}
.w1_c00114{width:794.000000pt;}
.x0_c00114{left:0.000000pt;}
.x3_c00114{left:113.440000pt;}
.x4_c00114{left:160.720000pt;}
.x2_c00114{left:377.920000pt;}
.x1_c00114{left:396.960000pt;}
.x5_c00114{left:664.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_fa92dadc7667c39a60fb7204.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_41e5bec960be0adbfcf2cbbc.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_add2da5be20aca636c8a3587.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:3.333984;font-style:normal;font-weight:normal;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_e5ab8798c900f825e81655a7.woff2')format("woff");}.ff4_c00115{font-family:ff4_c00115;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00115;src:url('chunks/assets/font_df026786a88eafc53f5abeba.woff2')format("woff");}.ff5_c00115{font-family:ff5_c00115;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_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);}
.v1_c00115{vertical-align:-61.938000px;}
.v2_c00115{vertical-align:-14.760000px;}
.v5_c00115{vertical-align:-10.440000px;}
.v8_c00115{vertical-align:-2.880000px;}
.v0_c00115{vertical-align:0.000000px;}
.v6_c00115{vertical-align:10.440000px;}
.v3_c00115{vertical-align:14.760000px;}
.v7_c00115{vertical-align:36.360000px;}
.v4_c00115{vertical-align:47.160000px;}
.ls1a_c00115{letter-spacing:-0.288000px;}
.ls1c_c00115{letter-spacing:-0.144000px;}
.ls1f_c00115{letter-spacing:-0.095760px;}
.ls1b_c00115{letter-spacing:-0.084240px;}
.ls19_c00115{letter-spacing:-0.072000px;}
.ls18_c00115{letter-spacing:0.000000px;}
.ls16_c00115{letter-spacing:0.009360px;}
.lsc_c00115{letter-spacing:0.045360px;}
.ls11_c00115{letter-spacing:0.072000px;}
.ls1e_c00115{letter-spacing:0.095760px;}
.lsa_c00115{letter-spacing:0.109440px;}
.ls15_c00115{letter-spacing:0.144000px;}
.ls14_c00115{letter-spacing:0.180000px;}
.ls20_c00115{letter-spacing:0.191520px;}
.ls1d_c00115{letter-spacing:0.288000px;}
.lse_c00115{letter-spacing:1.080000px;}
.lsf_c00115{letter-spacing:1.185840px;}
.ls5_c00115{letter-spacing:2.025000px;}
.ls13_c00115{letter-spacing:3.600000px;}
.ls2_c00115{letter-spacing:4.680000px;}
.ls1_c00115{letter-spacing:4.701600px;}
.ls10_c00115{letter-spacing:6.840000px;}
.lsd_c00115{letter-spacing:7.560000px;}
.ls17_c00115{letter-spacing:7.948800px;}
.ls12_c00115{letter-spacing:9.720000px;}
.lsb_c00115{letter-spacing:15.705000px;}
.ls8_c00115{letter-spacing:15.912000px;}
.ls9_c00115{letter-spacing:16.056000px;}
.ls7_c00115{letter-spacing:19.800000px;}
.ls4_c00115{letter-spacing:20.016000px;}
.ls3_c00115{letter-spacing:24.624720px;}
.ls6_c00115{letter-spacing:67.905000px;}
.ls0_c00115{letter-spacing:319.518000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00115{word-spacing:-72.000000px;}
.ws2_c00115{word-spacing:-51.120000px;}
.ws3_c00115{word-spacing:-42.035760px;}
.ws6_c00115{word-spacing:-18.288000px;}
.ws5_c00115{word-spacing:-18.000000px;}
.ws0_c00115{word-spacing:-17.928000px;}
.ws4_c00115{word-spacing:-17.856000px;}
.ws7_c00115{word-spacing:-16.470000px;}
.ws9_c00115{word-spacing:-15.030000px;}
.ws8_c00115{word-spacing:-11.970000px;}
.ws11_c00115{word-spacing:-0.432000px;}
.ws22_c00115{word-spacing:-0.191520px;}
.wsb_c00115{word-spacing:-0.162000px;}
.ws10_c00115{word-spacing:-0.144000px;}
.ws12_c00115{word-spacing:-0.095760px;}
.wsf_c00115{word-spacing:-0.072000px;}
.wsa_c00115{word-spacing:0.000000px;}
.ws14_c00115{word-spacing:0.072000px;}
.ws21_c00115{word-spacing:0.095760px;}
.wsd_c00115{word-spacing:0.288000px;}
.ws25_c00115{word-spacing:1.008000px;}
.ws26_c00115{word-spacing:1.080000px;}
.ws16_c00115{word-spacing:1.368000px;}
.ws15_c00115{word-spacing:1.440000px;}
.ws1f_c00115{word-spacing:3.528000px;}
.ws20_c00115{word-spacing:3.600000px;}
.ws2a_c00115{word-spacing:4.320000px;}
.wsc_c00115{word-spacing:4.608000px;}
.ws2b_c00115{word-spacing:5.688000px;}
.ws24_c00115{word-spacing:6.120000px;}
.ws18_c00115{word-spacing:6.408000px;}
.ws1a_c00115{word-spacing:6.768000px;}
.ws13_c00115{word-spacing:7.488000px;}
.ws23_c00115{word-spacing:7.848000px;}
.ws28_c00115{word-spacing:9.288000px;}
.ws29_c00115{word-spacing:9.360000px;}
.ws1b_c00115{word-spacing:9.648000px;}
.ws1c_c00115{word-spacing:9.720000px;}
.ws1e_c00115{word-spacing:11.088000px;}
.ws19_c00115{word-spacing:11.160000px;}
.ws1d_c00115{word-spacing:11.232000px;}
.ws17_c00115{word-spacing:15.408000px;}
.wse_c00115{word-spacing:20.448000px;}
.ws27_c00115{word-spacing:22.320000px;}
._2_c00115{margin-left:-14.184000px;}
._3_c00115{margin-left:-2.843280px;}
._1_c00115{margin-left:-1.152000px;}
._5_c00115{width:1.440000px;}
._0_c00115{width:4.536000px;}
._4_c00115{width:7.406280px;}
._6_c00115{width:9.504000px;}
._7_c00115{width:11.160000px;}
.fc0_c00115{color:rgb(0,0,0);}
.fs3_c00115{font-size:42.120000px;}
.fs4_c00115{font-size:47.880000px;}
.fs2_c00115{font-size:51.120000px;}
.fs0_c00115{font-size:54.000000px;}
.fs6_c00115{font-size:60.120000px;}
.fs5_c00115{font-size:65.880000px;}
.fs1_c00115{font-size:72.000000px;}
.y0_c00115{bottom:0.000000px;}
.y28_c00115{bottom:57.240000px;}
.y27_c00115{bottom:134.100000px;}
.y26_c00115{bottom:165.150000px;}
.y25_c00115{bottom:196.200000px;}
.y24_c00115{bottom:227.250000px;}
.y23_c00115{bottom:258.300000px;}
.y22_c00115{bottom:289.350000px;}
.y21_c00115{bottom:320.400000px;}
.y20_c00115{bottom:351.360000px;}
.y1f_c00115{bottom:382.410000px;}
.y1e_c00115{bottom:413.460000px;}
.y1d_c00115{bottom:444.510000px;}
.y1c_c00115{bottom:465.210000px;}
.y1b_c00115{bottom:485.910000px;}
.y1a_c00115{bottom:516.960000px;}
.y19_c00115{bottom:548.010000px;}
.y18_c00115{bottom:579.060000px;}
.y17_c00115{bottom:610.110000px;}
.y16_c00115{bottom:641.160000px;}
.y15_c00115{bottom:672.210000px;}
.y14_c00115{bottom:703.260000px;}
.y13_c00115{bottom:734.310000px;}
.y12_c00115{bottom:765.360000px;}
.y11_c00115{bottom:796.410000px;}
.y10_c00115{bottom:827.460000px;}
.yf_c00115{bottom:858.510000px;}
.ye_c00115{bottom:889.560000px;}
.yd_c00115{bottom:910.260000px;}
.yc_c00115{bottom:930.960000px;}
.yb_c00115{bottom:951.660000px;}
.ya_c00115{bottom:972.360000px;}
.y9_c00115{bottom:1002.150000px;}
.y8_c00115{bottom:1011.240000px;}
.y7_c00115{bottom:1048.230000px;}
.y6_c00115{bottom:1079.280000px;}
.y5_c00115{bottom:1110.330000px;}
.y4_c00115{bottom:1131.030000px;}
.y3_c00115{bottom:1150.915500px;}
.y2_c00115{bottom:1166.400000px;}
.y1_c00115{bottom:1197.450000px;}
.h2_c00115{height:52.998047px;}
.h3_c00115{height:70.664062px;}
.h7_c00115{height:131.341816px;}
.h4_c00115{height:149.075508px;}
.h6_c00115{height:179.902969px;}
.h5_c00115{height:185.435508px;}
.h0_c00115{height:1262.880000px;}
.h1_c00115{height:1263.000000px;}
.w0_c00115{width:893.070000px;}
.w1_c00115{width:893.250000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:127.620000px;}
.x3_c00115{left:214.470000px;}
.x4_c00115{left:319.140000px;}
.x1_c00115{left:446.580000px;}
@media print{
.v1_c00115{vertical-align:-55.056000pt;}
.v2_c00115{vertical-align:-13.120000pt;}
.v5_c00115{vertical-align:-9.280000pt;}
.v8_c00115{vertical-align:-2.560000pt;}
.v0_c00115{vertical-align:0.000000pt;}
.v6_c00115{vertical-align:9.280000pt;}
.v3_c00115{vertical-align:13.120000pt;}
.v7_c00115{vertical-align:32.320000pt;}
.v4_c00115{vertical-align:41.920000pt;}
.ls1a_c00115{letter-spacing:-0.256000pt;}
.ls1c_c00115{letter-spacing:-0.128000pt;}
.ls1f_c00115{letter-spacing:-0.085120pt;}
.ls1b_c00115{letter-spacing:-0.074880pt;}
.ls19_c00115{letter-spacing:-0.064000pt;}
.ls18_c00115{letter-spacing:0.000000pt;}
.ls16_c00115{letter-spacing:0.008320pt;}
.lsc_c00115{letter-spacing:0.040320pt;}
.ls11_c00115{letter-spacing:0.064000pt;}
.ls1e_c00115{letter-spacing:0.085120pt;}
.lsa_c00115{letter-spacing:0.097280pt;}
.ls15_c00115{letter-spacing:0.128000pt;}
.ls14_c00115{letter-spacing:0.160000pt;}
.ls20_c00115{letter-spacing:0.170240pt;}
.ls1d_c00115{letter-spacing:0.256000pt;}
.lse_c00115{letter-spacing:0.960000pt;}
.lsf_c00115{letter-spacing:1.054080pt;}
.ls5_c00115{letter-spacing:1.800000pt;}
.ls13_c00115{letter-spacing:3.200000pt;}
.ls2_c00115{letter-spacing:4.160000pt;}
.ls1_c00115{letter-spacing:4.179200pt;}
.ls10_c00115{letter-spacing:6.080000pt;}
.lsd_c00115{letter-spacing:6.720000pt;}
.ls17_c00115{letter-spacing:7.065600pt;}
.ls12_c00115{letter-spacing:8.640000pt;}
.lsb_c00115{letter-spacing:13.960000pt;}
.ls8_c00115{letter-spacing:14.144000pt;}
.ls9_c00115{letter-spacing:14.272000pt;}
.ls7_c00115{letter-spacing:17.600000pt;}
.ls4_c00115{letter-spacing:17.792000pt;}
.ls3_c00115{letter-spacing:21.888640pt;}
.ls6_c00115{letter-spacing:60.360000pt;}
.ls0_c00115{letter-spacing:284.016000pt;}
.ws1_c00115{word-spacing:-64.000000pt;}
.ws2_c00115{word-spacing:-45.440000pt;}
.ws3_c00115{word-spacing:-37.365120pt;}
.ws6_c00115{word-spacing:-16.256000pt;}
.ws5_c00115{word-spacing:-16.000000pt;}
.ws0_c00115{word-spacing:-15.936000pt;}
.ws4_c00115{word-spacing:-15.872000pt;}
.ws7_c00115{word-spacing:-14.640000pt;}
.ws9_c00115{word-spacing:-13.360000pt;}
.ws8_c00115{word-spacing:-10.640000pt;}
.ws11_c00115{word-spacing:-0.384000pt;}
.ws22_c00115{word-spacing:-0.170240pt;}
.wsb_c00115{word-spacing:-0.144000pt;}
.ws10_c00115{word-spacing:-0.128000pt;}
.ws12_c00115{word-spacing:-0.085120pt;}
.wsf_c00115{word-spacing:-0.064000pt;}
.wsa_c00115{word-spacing:0.000000pt;}
.ws14_c00115{word-spacing:0.064000pt;}
.ws21_c00115{word-spacing:0.085120pt;}
.wsd_c00115{word-spacing:0.256000pt;}
.ws25_c00115{word-spacing:0.896000pt;}
.ws26_c00115{word-spacing:0.960000pt;}
.ws16_c00115{word-spacing:1.216000pt;}
.ws15_c00115{word-spacing:1.280000pt;}
.ws1f_c00115{word-spacing:3.136000pt;}
.ws20_c00115{word-spacing:3.200000pt;}
.ws2a_c00115{word-spacing:3.840000pt;}
.wsc_c00115{word-spacing:4.096000pt;}
.ws2b_c00115{word-spacing:5.056000pt;}
.ws24_c00115{word-spacing:5.440000pt;}
.ws18_c00115{word-spacing:5.696000pt;}
.ws1a_c00115{word-spacing:6.016000pt;}
.ws13_c00115{word-spacing:6.656000pt;}
.ws23_c00115{word-spacing:6.976000pt;}
.ws28_c00115{word-spacing:8.256000pt;}
.ws29_c00115{word-spacing:8.320000pt;}
.ws1b_c00115{word-spacing:8.576000pt;}
.ws1c_c00115{word-spacing:8.640000pt;}
.ws1e_c00115{word-spacing:9.856000pt;}
.ws19_c00115{word-spacing:9.920000pt;}
.ws1d_c00115{word-spacing:9.984000pt;}
.ws17_c00115{word-spacing:13.696000pt;}
.wse_c00115{word-spacing:18.176000pt;}
.ws27_c00115{word-spacing:19.840000pt;}
._2_c00115{margin-left:-12.608000pt;}
._3_c00115{margin-left:-2.527360pt;}
._1_c00115{margin-left:-1.024000pt;}
._5_c00115{width:1.280000pt;}
._0_c00115{width:4.032000pt;}
._4_c00115{width:6.583360pt;}
._6_c00115{width:8.448000pt;}
._7_c00115{width:9.920000pt;}
.fs3_c00115{font-size:37.440000pt;}
.fs4_c00115{font-size:42.560000pt;}
.fs2_c00115{font-size:45.440000pt;}
.fs0_c00115{font-size:48.000000pt;}
.fs6_c00115{font-size:53.440000pt;}
.fs5_c00115{font-size:58.560000pt;}
.fs1_c00115{font-size:64.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y28_c00115{bottom:50.880000pt;}
.y27_c00115{bottom:119.200000pt;}
.y26_c00115{bottom:146.800000pt;}
.y25_c00115{bottom:174.400000pt;}
.y24_c00115{bottom:202.000000pt;}
.y23_c00115{bottom:229.600000pt;}
.y22_c00115{bottom:257.200000pt;}
.y21_c00115{bottom:284.800000pt;}
.y20_c00115{bottom:312.320000pt;}
.y1f_c00115{bottom:339.920000pt;}
.y1e_c00115{bottom:367.520000pt;}
.y1d_c00115{bottom:395.120000pt;}
.y1c_c00115{bottom:413.520000pt;}
.y1b_c00115{bottom:431.920000pt;}
.y1a_c00115{bottom:459.520000pt;}
.y19_c00115{bottom:487.120000pt;}
.y18_c00115{bottom:514.720000pt;}
.y17_c00115{bottom:542.320000pt;}
.y16_c00115{bottom:569.920000pt;}
.y15_c00115{bottom:597.520000pt;}
.y14_c00115{bottom:625.120000pt;}
.y13_c00115{bottom:652.720000pt;}
.y12_c00115{bottom:680.320000pt;}
.y11_c00115{bottom:707.920000pt;}
.y10_c00115{bottom:735.520000pt;}
.yf_c00115{bottom:763.120000pt;}
.ye_c00115{bottom:790.720000pt;}
.yd_c00115{bottom:809.120000pt;}
.yc_c00115{bottom:827.520000pt;}
.yb_c00115{bottom:845.920000pt;}
.ya_c00115{bottom:864.320000pt;}
.y9_c00115{bottom:890.800000pt;}
.y8_c00115{bottom:898.880000pt;}
.y7_c00115{bottom:931.760000pt;}
.y6_c00115{bottom:959.360000pt;}
.y5_c00115{bottom:986.960000pt;}
.y4_c00115{bottom:1005.360000pt;}
.y3_c00115{bottom:1023.036000pt;}
.y2_c00115{bottom:1036.800000pt;}
.y1_c00115{bottom:1064.400000pt;}
.h2_c00115{height:47.109375pt;}
.h3_c00115{height:62.812500pt;}
.h7_c00115{height:116.748281pt;}
.h4_c00115{height:132.511563pt;}
.h6_c00115{height:159.913750pt;}
.h5_c00115{height:164.831562pt;}
.h0_c00115{height:1122.560000pt;}
.h1_c00115{height:1122.666667pt;}
.w0_c00115{width:793.840000pt;}
.w1_c00115{width:794.000000pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:113.440000pt;}
.x3_c00115{left:190.640000pt;}
.x4_c00115{left:283.680000pt;}
.x1_c00115{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91e2491b64ada868f4cd8c24.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00116;src:url('chunks/assets/font_325da81d0cbe862d0a75a9fe.woff2')format("woff");}.ff3_c00116{font-family:ff3_c00116;line-height:1.142090;font-style: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);}
.v1_c00116{vertical-align:-2.880000px;}
.v0_c00116{vertical-align:0.000000px;}
.v3_c00116{vertical-align:2.880000px;}
.v2_c00116{vertical-align:29.877120px;}
.ls14_c00116{letter-spacing:-0.576000px;}
.ls12_c00116{letter-spacing:-0.526680px;}
.lse_c00116{letter-spacing:-0.360000px;}
.ls13_c00116{letter-spacing:-0.288000px;}
.lsf_c00116{letter-spacing:-0.144000px;}
.ls11_c00116{letter-spacing:-0.143640px;}
.lsd_c00116{letter-spacing:-0.108000px;}
.lsc_c00116{letter-spacing:0.000000px;}
.ls4_c00116{letter-spacing:0.009360px;}
.ls0_c00116{letter-spacing:0.072000px;}
.lsa_c00116{letter-spacing:0.144000px;}
.ls5_c00116{letter-spacing:0.189360px;}
.ls9_c00116{letter-spacing:0.360000px;}
.ls6_c00116{letter-spacing:0.369360px;}
.ls10_c00116{letter-spacing:0.718200px;}
.ls2_c00116{letter-spacing:1.800000px;}
.ls1_c00116{letter-spacing:2.160000px;}
.lsb_c00116{letter-spacing:4.680000px;}
.ls3_c00116{letter-spacing:11.916000px;}
.ls7_c00116{letter-spacing:17.280000px;}
.ls8_c00116{letter-spacing:53.280000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00116{word-spacing:-18.144000px;}
.ws5_c00116{word-spacing:-18.072000px;}
.ws2_c00116{word-spacing:-18.000000px;}
.ws1_c00116{word-spacing:-17.856000px;}
.ws8_c00116{word-spacing:-17.712000px;}
.wsa_c00116{word-spacing:-17.640000px;}
.ws9_c00116{word-spacing:-17.424000px;}
.ws4_c00116{word-spacing:-12.688200px;}
.ws0_c00116{word-spacing:-11.970000px;}
.ws6_c00116{word-spacing:-11.826360px;}
.ws7_c00116{word-spacing:-11.443320px;}
.ws17_c00116{word-spacing:-0.144000px;}
.ws1c_c00116{word-spacing:-0.095760px;}
.ws11_c00116{word-spacing:-0.072000px;}
.wsb_c00116{word-spacing:0.000000px;}
.ws18_c00116{word-spacing:0.144000px;}
.wsd_c00116{word-spacing:0.162000px;}
.wsc_c00116{word-spacing:0.270000px;}
.ws10_c00116{word-spacing:0.360000px;}
.ws1a_c00116{word-spacing:1.008000px;}
.ws19_c00116{word-spacing:1.080000px;}
.ws12_c00116{word-spacing:1.800000px;}
.wse_c00116{word-spacing:2.088000px;}
.wsf_c00116{word-spacing:2.160000px;}
.ws16_c00116{word-spacing:2.448000px;}
.ws1d_c00116{word-spacing:3.168000px;}
.ws1e_c00116{word-spacing:4.608000px;}
.ws13_c00116{word-spacing:11.808000px;}
.ws15_c00116{word-spacing:17.568000px;}
.ws14_c00116{word-spacing:20.520000px;}
.ws1b_c00116{word-spacing:24.696000px;}
._1_c00116{margin-left:-1.058400px;}
._0_c00116{width:1.220400px;}
._5_c00116{width:4.996800px;}
._6_c00116{width:21.168000px;}
._3_c00116{width:24.314400px;}
._7_c00116{width:106.707600px;}
._4_c00116{width:118.440000px;}
._2_c00116{width:137.448000px;}
.fc0_c00116{color:rgb(0,0,0);}
.fs2_c00116{font-size:47.880000px;}
.fs0_c00116{font-size:54.000000px;}
.fs1_c00116{font-size:72.000000px;}
.y0_c00116{bottom:0.000000px;}
.y28_c00116{bottom:57.240000px;}
.y27_c00116{bottom:174.870000px;}
.y26_c00116{bottom:205.920000px;}
.y25_c00116{bottom:226.620000px;}
.y24_c00116{bottom:247.320000px;}
.y23_c00116{bottom:268.020000px;}
.y22_c00116{bottom:305.820000px;}
.y21_c00116{bottom:330.750000px;}
.y20_c00116{bottom:362.430000px;}
.y1f_c00116{bottom:394.200000px;}
.y1e_c00116{bottom:425.250000px;}
.y1d_c00116{bottom:456.300000px;}
.y1c_c00116{bottom:487.350000px;}
.y1b_c00116{bottom:508.050000px;}
.y1a_c00116{bottom:528.750000px;}
.y19_c00116{bottom:549.450000px;}
.y18_c00116{bottom:587.250000px;}
.y17_c00116{bottom:612.270000px;}
.y16_c00116{bottom:643.950000px;}
.y15_c00116{bottom:675.720000px;}
.y14_c00116{bottom:706.770000px;}
.y13_c00116{bottom:737.820000px;}
.y12_c00116{bottom:768.870000px;}
.y11_c00116{bottom:789.570000px;}
.y10_c00116{bottom:810.270000px;}
.yf_c00116{bottom:830.970000px;}
.ye_c00116{bottom:861.930000px;}
.yd_c00116{bottom:892.980000px;}
.yc_c00116{bottom:924.030000px;}
.yb_c00116{bottom:955.080000px;}
.ya_c00116{bottom:986.130000px;}
.y9_c00116{bottom:1017.180000px;}
.y8_c00116{bottom:1048.230000px;}
.y7_c00116{bottom:1079.280000px;}
.y6_c00116{bottom:1110.330000px;}
.y5_c00116{bottom:1131.030000px;}
.y4_c00116{bottom:1150.920000px;}
.y3_c00116{bottom:1166.404500px;}
.y2_c00116{bottom:1181.970000px;}
.y1_c00116{bottom:1197.450000px;}
.h6_c00116{height:46.991602px;}
.h3_c00116{height:52.971680px;}
.h2_c00116{height:52.998047px;}
.h4_c00116{height:70.664062px;}
.h5_c00116{height:73.988722px;}
.h0_c00116{height:1262.880000px;}
.h1_c00116{height:1263.000000px;}
.w0_c00116{width:893.070000px;}
.w1_c00116{width:893.250000px;}
.x0_c00116{left:0.000000px;}
.x3_c00116{left:127.620000px;}
.x2_c00116{left:425.160000px;}
.x1_c00116{left:446.580000px;}
.x4_c00116{left:747.540000px;}
@media print{
.v1_c00116{vertical-align:-2.560000pt;}
.v0_c00116{vertical-align:0.000000pt;}
.v3_c00116{vertical-align:2.560000pt;}
.v2_c00116{vertical-align:26.557440pt;}
.ls14_c00116{letter-spacing:-0.512000pt;}
.ls12_c00116{letter-spacing:-0.468160pt;}
.lse_c00116{letter-spacing:-0.320000pt;}
.ls13_c00116{letter-spacing:-0.256000pt;}
.lsf_c00116{letter-spacing:-0.128000pt;}
.ls11_c00116{letter-spacing:-0.127680pt;}
.lsd_c00116{letter-spacing:-0.096000pt;}
.lsc_c00116{letter-spacing:0.000000pt;}
.ls4_c00116{letter-spacing:0.008320pt;}
.ls0_c00116{letter-spacing:0.064000pt;}
.lsa_c00116{letter-spacing:0.128000pt;}
.ls5_c00116{letter-spacing:0.168320pt;}
.ls9_c00116{letter-spacing:0.320000pt;}
.ls6_c00116{letter-spacing:0.328320pt;}
.ls10_c00116{letter-spacing:0.638400pt;}
.ls2_c00116{letter-spacing:1.600000pt;}
.ls1_c00116{letter-spacing:1.920000pt;}
.lsb_c00116{letter-spacing:4.160000pt;}
.ls3_c00116{letter-spacing:10.592000pt;}
.ls7_c00116{letter-spacing:15.360000pt;}
.ls8_c00116{letter-spacing:47.360000pt;}
.ws3_c00116{word-spacing:-16.128000pt;}
.ws5_c00116{word-spacing:-16.064000pt;}
.ws2_c00116{word-spacing:-16.000000pt;}
.ws1_c00116{word-spacing:-15.872000pt;}
.ws8_c00116{word-spacing:-15.744000pt;}
.wsa_c00116{word-spacing:-15.680000pt;}
.ws9_c00116{word-spacing:-15.488000pt;}
.ws4_c00116{word-spacing:-11.278400pt;}
.ws0_c00116{word-spacing:-10.640000pt;}
.ws6_c00116{word-spacing:-10.512320pt;}
.ws7_c00116{word-spacing:-10.171840pt;}
.ws17_c00116{word-spacing:-0.128000pt;}
.ws1c_c00116{word-spacing:-0.085120pt;}
.ws11_c00116{word-spacing:-0.064000pt;}
.wsb_c00116{word-spacing:0.000000pt;}
.ws18_c00116{word-spacing:0.128000pt;}
.wsd_c00116{word-spacing:0.144000pt;}
.wsc_c00116{word-spacing:0.240000pt;}
.ws10_c00116{word-spacing:0.320000pt;}
.ws1a_c00116{word-spacing:0.896000pt;}
.ws19_c00116{word-spacing:0.960000pt;}
.ws12_c00116{word-spacing:1.600000pt;}
.wse_c00116{word-spacing:1.856000pt;}
.wsf_c00116{word-spacing:1.920000pt;}
.ws16_c00116{word-spacing:2.176000pt;}
.ws1d_c00116{word-spacing:2.816000pt;}
.ws1e_c00116{word-spacing:4.096000pt;}
.ws13_c00116{word-spacing:10.496000pt;}
.ws15_c00116{word-spacing:15.616000pt;}
.ws14_c00116{word-spacing:18.240000pt;}
.ws1b_c00116{word-spacing:21.952000pt;}
._1_c00116{margin-left:-0.940800pt;}
._0_c00116{width:1.084800pt;}
._5_c00116{width:4.441600pt;}
._6_c00116{width:18.816000pt;}
._3_c00116{width:21.612800pt;}
._7_c00116{width:94.851200pt;}
._4_c00116{width:105.280000pt;}
._2_c00116{width:122.176000pt;}
.fs2_c00116{font-size:42.560000pt;}
.fs0_c00116{font-size:48.000000pt;}
.fs1_c00116{font-size:64.000000pt;}
.y0_c00116{bottom:0.000000pt;}
.y28_c00116{bottom:50.880000pt;}
.y27_c00116{bottom:155.440000pt;}
.y26_c00116{bottom:183.040000pt;}
.y25_c00116{bottom:201.440000pt;}
.y24_c00116{bottom:219.840000pt;}
.y23_c00116{bottom:238.240000pt;}
.y22_c00116{bottom:271.840000pt;}
.y21_c00116{bottom:294.000000pt;}
.y20_c00116{bottom:322.160000pt;}
.y1f_c00116{bottom:350.400000pt;}
.y1e_c00116{bottom:378.000000pt;}
.y1d_c00116{bottom:405.600000pt;}
.y1c_c00116{bottom:433.200000pt;}
.y1b_c00116{bottom:451.600000pt;}
.y1a_c00116{bottom:470.000000pt;}
.y19_c00116{bottom:488.400000pt;}
.y18_c00116{bottom:522.000000pt;}
.y17_c00116{bottom:544.240000pt;}
.y16_c00116{bottom:572.400000pt;}
.y15_c00116{bottom:600.640000pt;}
.y14_c00116{bottom:628.240000pt;}
.y13_c00116{bottom:655.840000pt;}
.y12_c00116{bottom:683.440000pt;}
.y11_c00116{bottom:701.840000pt;}
.y10_c00116{bottom:720.240000pt;}
.yf_c00116{bottom:738.640000pt;}
.ye_c00116{bottom:766.160000pt;}
.yd_c00116{bottom:793.760000pt;}
.yc_c00116{bottom:821.360000pt;}
.yb_c00116{bottom:848.960000pt;}
.ya_c00116{bottom:876.560000pt;}
.y9_c00116{bottom:904.160000pt;}
.y8_c00116{bottom:931.760000pt;}
.y7_c00116{bottom:959.360000pt;}
.y6_c00116{bottom:986.960000pt;}
.y5_c00116{bottom:1005.360000pt;}
.y4_c00116{bottom:1023.040000pt;}
.y3_c00116{bottom:1036.804000pt;}
.y2_c00116{bottom:1050.640000pt;}
.y1_c00116{bottom:1064.400000pt;}
.h6_c00116{height:41.770312pt;}
.h3_c00116{height:47.085938pt;}
.h2_c00116{height:47.109375pt;}
.h4_c00116{height:62.812500pt;}
.h5_c00116{height:65.767753pt;}
.h0_c00116{height:1122.560000pt;}
.h1_c00116{height:1122.666667pt;}
.w0_c00116{width:793.840000pt;}
.w1_c00116{width:794.000000pt;}
.x0_c00116{left:0.000000pt;}
.x3_c00116{left:113.440000pt;}
.x2_c00116{left:377.920000pt;}
.x1_c00116{left:396.960000pt;}
.x4_c00116{left:664.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_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_a4d751d64a16ba40b1c18434.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00117{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00117{vertical-align:-61.938000px;}
.v3_c00117{vertical-align:-20.880000px;}
.v0_c00117{vertical-align:0.000000px;}
.v2_c00117{vertical-align:27.000000px;}
.lsb_c00117{letter-spacing:-0.360000px;}
.lse_c00117{letter-spacing:-0.300600px;}
.lsa_c00117{letter-spacing:-0.216000px;}
.ls9_c00117{letter-spacing:-0.144000px;}
.lsd_c00117{letter-spacing:-0.060120px;}
.ls8_c00117{letter-spacing:0.000000px;}
.ls1_c00117{letter-spacing:0.072000px;}
.ls7_c00117{letter-spacing:0.120240px;}
.ls2_c00117{letter-spacing:0.144000px;}
.lsc_c00117{letter-spacing:0.191520px;}
.ls6_c00117{letter-spacing:1.503000px;}
.ls5_c00117{letter-spacing:2.181600px;}
.ls4_c00117{letter-spacing:18.720000px;}
.ls3_c00117{letter-spacing:38.880000px;}
.ls0_c00117{letter-spacing:319.518000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00117{word-spacing:-18.144000px;}
.ws0_c00117{word-spacing:-18.072000px;}
.ws2_c00117{word-spacing:-17.856000px;}
.ws3_c00117{word-spacing:-17.784000px;}
.ws4_c00117{word-spacing:-17.640000px;}
.ws7_c00117{word-spacing:-14.729400px;}
.ws5_c00117{word-spacing:-12.161520px;}
.ws6_c00117{word-spacing:-9.720000px;}
.wsf_c00117{word-spacing:-0.432000px;}
.ws22_c00117{word-spacing:-0.180360px;}
.ws9_c00117{word-spacing:-0.162000px;}
.wsc_c00117{word-spacing:-0.144000px;}
.wsd_c00117{word-spacing:-0.072000px;}
.ws8_c00117{word-spacing:0.000000px;}
.wsa_c00117{word-spacing:0.648000px;}
.ws10_c00117{word-spacing:1.008000px;}
.ws11_c00117{word-spacing:1.080000px;}
.ws1c_c00117{word-spacing:1.368000px;}
.ws21_c00117{word-spacing:1.563120px;}
.ws1d_c00117{word-spacing:1.656000px;}
.ws19_c00117{word-spacing:1.800000px;}
.ws1b_c00117{word-spacing:2.088000px;}
.ws18_c00117{word-spacing:2.160000px;}
.ws20_c00117{word-spacing:3.168000px;}
.ws1f_c00117{word-spacing:3.240000px;}
.ws1a_c00117{word-spacing:4.320000px;}
.wsb_c00117{word-spacing:5.040000px;}
.ws17_c00117{word-spacing:5.400000px;}
.wse_c00117{word-spacing:6.120000px;}
.ws16_c00117{word-spacing:6.408000px;}
.ws15_c00117{word-spacing:6.480000px;}
.ws13_c00117{word-spacing:10.728000px;}
.ws1e_c00117{word-spacing:12.168000px;}
.ws14_c00117{word-spacing:16.848000px;}
.ws12_c00117{word-spacing:34.920000px;}
._0_c00117{margin-left:-1.087200px;}
._2_c00117{width:1.144800px;}
._3_c00117{width:3.535200px;}
._1_c00117{width:79.056000px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs3_c00117{font-size:38.880000px;}
.fs2_c00117{font-size:47.880000px;}
.fs0_c00117{font-size:54.000000px;}
.fs4_c00117{font-size:60.120000px;}
.fs1_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y26_c00117{bottom:57.240000px;}
.y25_c00117{bottom:109.795680px;}
.y24_c00117{bottom:132.210000px;}
.y27_c00117{bottom:144.900000px;}
.y23_c00117{bottom:209.970000px;}
.y22_c00117{bottom:241.020000px;}
.y21_c00117{bottom:272.070000px;}
.y20_c00117{bottom:303.120000px;}
.y1f_c00117{bottom:334.170000px;}
.y1e_c00117{bottom:365.220000px;}
.y1d_c00117{bottom:396.270000px;}
.y1c_c00117{bottom:427.320000px;}
.y1b_c00117{bottom:458.370000px;}
.y1a_c00117{bottom:489.420000px;}
.y19_c00117{bottom:520.470000px;}
.y18_c00117{bottom:551.520000px;}
.y17_c00117{bottom:582.570000px;}
.y16_c00117{bottom:613.620000px;}
.y15_c00117{bottom:644.670000px;}
.y14_c00117{bottom:675.720000px;}
.y13_c00117{bottom:706.770000px;}
.y12_c00117{bottom:737.820000px;}
.y11_c00117{bottom:768.870000px;}
.y10_c00117{bottom:799.920000px;}
.yf_c00117{bottom:830.970000px;}
.ye_c00117{bottom:861.930000px;}
.yd_c00117{bottom:882.630000px;}
.yc_c00117{bottom:903.330000px;}
.yb_c00117{bottom:924.030000px;}
.ya_c00117{bottom:955.080000px;}
.y9_c00117{bottom:986.130000px;}
.y8_c00117{bottom:1017.180000px;}
.y7_c00117{bottom:1048.230000px;}
.y6_c00117{bottom:1079.280000px;}
.y5_c00117{bottom:1110.330000px;}
.y4_c00117{bottom:1131.030000px;}
.y3_c00117{bottom:1150.915500px;}
.y2_c00117{bottom:1166.400000px;}
.y1_c00117{bottom:1197.450000px;}
.h5_c00117{height:38.158594px;}
.h2_c00117{height:52.998047px;}
.h6_c00117{height:59.004492px;}
.h3_c00117{height:70.664062px;}
.h4_c00117{height:73.991602px;}
.h0_c00117{height:1262.880000px;}
.h1_c00117{height:1263.000000px;}
.w0_c00117{width:893.070000px;}
.w1_c00117{width:893.250000px;}
.x0_c00117{left:0.000000px;}
.x2_c00117{left:127.620000px;}
.x1_c00117{left:446.580000px;}
@media print{
.v1_c00117{vertical-align:-55.056000pt;}
.v3_c00117{vertical-align:-18.560000pt;}
.v0_c00117{vertical-align:0.000000pt;}
.v2_c00117{vertical-align:24.000000pt;}
.lsb_c00117{letter-spacing:-0.320000pt;}
.lse_c00117{letter-spacing:-0.267200pt;}
.lsa_c00117{letter-spacing:-0.192000pt;}
.ls9_c00117{letter-spacing:-0.128000pt;}
.lsd_c00117{letter-spacing:-0.053440pt;}
.ls8_c00117{letter-spacing:0.000000pt;}
.ls1_c00117{letter-spacing:0.064000pt;}
.ls7_c00117{letter-spacing:0.106880pt;}
.ls2_c00117{letter-spacing:0.128000pt;}
.lsc_c00117{letter-spacing:0.170240pt;}
.ls6_c00117{letter-spacing:1.336000pt;}
.ls5_c00117{letter-spacing:1.939200pt;}
.ls4_c00117{letter-spacing:16.640000pt;}
.ls3_c00117{letter-spacing:34.560000pt;}
.ls0_c00117{letter-spacing:284.016000pt;}
.ws1_c00117{word-spacing:-16.128000pt;}
.ws0_c00117{word-spacing:-16.064000pt;}
.ws2_c00117{word-spacing:-15.872000pt;}
.ws3_c00117{word-spacing:-15.808000pt;}
.ws4_c00117{word-spacing:-15.680000pt;}
.ws7_c00117{word-spacing:-13.092800pt;}
.ws5_c00117{word-spacing:-10.810240pt;}
.ws6_c00117{word-spacing:-8.640000pt;}
.wsf_c00117{word-spacing:-0.384000pt;}
.ws22_c00117{word-spacing:-0.160320pt;}
.ws9_c00117{word-spacing:-0.144000pt;}
.wsc_c00117{word-spacing:-0.128000pt;}
.wsd_c00117{word-spacing:-0.064000pt;}
.ws8_c00117{word-spacing:0.000000pt;}
.wsa_c00117{word-spacing:0.576000pt;}
.ws10_c00117{word-spacing:0.896000pt;}
.ws11_c00117{word-spacing:0.960000pt;}
.ws1c_c00117{word-spacing:1.216000pt;}
.ws21_c00117{word-spacing:1.389440pt;}
.ws1d_c00117{word-spacing:1.472000pt;}
.ws19_c00117{word-spacing:1.600000pt;}
.ws1b_c00117{word-spacing:1.856000pt;}
.ws18_c00117{word-spacing:1.920000pt;}
.ws20_c00117{word-spacing:2.816000pt;}
.ws1f_c00117{word-spacing:2.880000pt;}
.ws1a_c00117{word-spacing:3.840000pt;}
.wsb_c00117{word-spacing:4.480000pt;}
.ws17_c00117{word-spacing:4.800000pt;}
.wse_c00117{word-spacing:5.440000pt;}
.ws16_c00117{word-spacing:5.696000pt;}
.ws15_c00117{word-spacing:5.760000pt;}
.ws13_c00117{word-spacing:9.536000pt;}
.ws1e_c00117{word-spacing:10.816000pt;}
.ws14_c00117{word-spacing:14.976000pt;}
.ws12_c00117{word-spacing:31.040000pt;}
._0_c00117{margin-left:-0.966400pt;}
._2_c00117{width:1.017600pt;}
._3_c00117{width:3.142400pt;}
._1_c00117{width:70.272000pt;}
.fs3_c00117{font-size:34.560000pt;}
.fs2_c00117{font-size:42.560000pt;}
.fs0_c00117{font-size:48.000000pt;}
.fs4_c00117{font-size:53.440000pt;}
.fs1_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y26_c00117{bottom:50.880000pt;}
.y25_c00117{bottom:97.596160pt;}
.y24_c00117{bottom:117.520000pt;}
.y27_c00117{bottom:128.800000pt;}
.y23_c00117{bottom:186.640000pt;}
.y22_c00117{bottom:214.240000pt;}
.y21_c00117{bottom:241.840000pt;}
.y20_c00117{bottom:269.440000pt;}
.y1f_c00117{bottom:297.040000pt;}
.y1e_c00117{bottom:324.640000pt;}
.y1d_c00117{bottom:352.240000pt;}
.y1c_c00117{bottom:379.840000pt;}
.y1b_c00117{bottom:407.440000pt;}
.y1a_c00117{bottom:435.040000pt;}
.y19_c00117{bottom:462.640000pt;}
.y18_c00117{bottom:490.240000pt;}
.y17_c00117{bottom:517.840000pt;}
.y16_c00117{bottom:545.440000pt;}
.y15_c00117{bottom:573.040000pt;}
.y14_c00117{bottom:600.640000pt;}
.y13_c00117{bottom:628.240000pt;}
.y12_c00117{bottom:655.840000pt;}
.y11_c00117{bottom:683.440000pt;}
.y10_c00117{bottom:711.040000pt;}
.yf_c00117{bottom:738.640000pt;}
.ye_c00117{bottom:766.160000pt;}
.yd_c00117{bottom:784.560000pt;}
.yc_c00117{bottom:802.960000pt;}
.yb_c00117{bottom:821.360000pt;}
.ya_c00117{bottom:848.960000pt;}
.y9_c00117{bottom:876.560000pt;}
.y8_c00117{bottom:904.160000pt;}
.y7_c00117{bottom:931.760000pt;}
.y6_c00117{bottom:959.360000pt;}
.y5_c00117{bottom:986.960000pt;}
.y4_c00117{bottom:1005.360000pt;}
.y3_c00117{bottom:1023.036000pt;}
.y2_c00117{bottom:1036.800000pt;}
.y1_c00117{bottom:1064.400000pt;}
.h5_c00117{height:33.918750pt;}
.h2_c00117{height:47.109375pt;}
.h6_c00117{height:52.448437pt;}
.h3_c00117{height:62.812500pt;}
.h4_c00117{height:65.770313pt;}
.h0_c00117{height:1122.560000pt;}
.h1_c00117{height:1122.666667pt;}
.w0_c00117{width:793.840000pt;}
.w1_c00117{width:794.000000pt;}
.x0_c00117{left:0.000000pt;}
.x2_c00117{left:113.440000pt;}
.x1_c00117{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bba28141f5ae8a88df8fa38.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_6be15fee8d73893447ce20e2.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_40eb767302b413cf9b5ea6d5.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_d578d6762f63cb4ab23017ab.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00118{vertical-align:-14.760000px;}
.v1_c00118{vertical-align:-2.880000px;}
.v0_c00118{vertical-align:0.000000px;}
.v3_c00118{vertical-align:14.760000px;}
.v4_c00118{vertical-align:56.160000px;}
.v5_c00118{vertical-align:63.000000px;}
.ls10_c00118{letter-spacing:-0.144000px;}
.ls15_c00118{letter-spacing:-0.120240px;}
.lsf_c00118{letter-spacing:-0.108000px;}
.ls14_c00118{letter-spacing:-0.060120px;}
.lse_c00118{letter-spacing:0.000000px;}
.ls5_c00118{letter-spacing:0.007200px;}
.ls6_c00118{letter-spacing:0.009360px;}
.lsd_c00118{letter-spacing:0.060120px;}
.ls1_c00118{letter-spacing:0.072000px;}
.ls11_c00118{letter-spacing:0.102240px;}
.ls13_c00118{letter-spacing:0.180360px;}
.ls12_c00118{letter-spacing:0.383040px;}
.ls7_c00118{letter-spacing:0.720000px;}
.ls8_c00118{letter-spacing:1.080000px;}
.ls4_c00118{letter-spacing:6.930000px;}
.lsc_c00118{letter-spacing:7.200000px;}
.lsb_c00118{letter-spacing:7.465680px;}
.lsa_c00118{letter-spacing:7.920000px;}
.ls0_c00118{letter-spacing:13.680000px;}
.ls9_c00118{letter-spacing:14.400000px;}
.ls3_c00118{letter-spacing:20.016000px;}
.ls2_c00118{letter-spacing:24.161040px;}
.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;}
}
.ws2_c00118{word-spacing:-72.000000px;}
.ws1_c00118{word-spacing:-71.856000px;}
.ws3_c00118{word-spacing:-51.222240px;}
.ws6_c00118{word-spacing:-18.000000px;}
.ws4_c00118{word-spacing:-17.856000px;}
.ws0_c00118{word-spacing:-15.840000px;}
.ws8_c00118{word-spacing:-15.210360px;}
.ws9_c00118{word-spacing:-14.969880px;}
.ws7_c00118{word-spacing:-12.353040px;}
.ws5_c00118{word-spacing:-11.970000px;}
.ws13_c00118{word-spacing:-0.072000px;}
.ws1f_c00118{word-spacing:-0.060120px;}
.wsa_c00118{word-spacing:0.000000px;}
.ws21_c00118{word-spacing:0.120240px;}
.wsc_c00118{word-spacing:0.162000px;}
.ws20_c00118{word-spacing:0.180360px;}
.wsb_c00118{word-spacing:0.270000px;}
.ws1b_c00118{word-spacing:0.648000px;}
.wsd_c00118{word-spacing:0.720000px;}
.ws1c_c00118{word-spacing:1.008000px;}
.ws14_c00118{word-spacing:1.080000px;}
.ws1d_c00118{word-spacing:2.160000px;}
.ws12_c00118{word-spacing:6.048000px;}
.ws11_c00118{word-spacing:6.408000px;}
.ws1e_c00118{word-spacing:7.200000px;}
.ws19_c00118{word-spacing:7.560000px;}
.ws17_c00118{word-spacing:7.848000px;}
.ws18_c00118{word-spacing:7.920000px;}
.ws10_c00118{word-spacing:8.208000px;}
.wsf_c00118{word-spacing:11.808000px;}
.wse_c00118{word-spacing:13.680000px;}
.ws16_c00118{word-spacing:14.328000px;}
.ws15_c00118{word-spacing:14.544000px;}
.ws1a_c00118{word-spacing:17.568000px;}
._3_c00118{margin-left:-6.264000px;}
._2_c00118{margin-left:-3.816000px;}
._1_c00118{margin-left:-1.058400px;}
._0_c00118{width:1.220400px;}
._4_c00118{width:15.912000px;}
.fc0_c00118{color:rgb(0,0,0);}
.fs3_c00118{font-size:47.880000px;}
.fs2_c00118{font-size:51.120000px;}
.fs0_c00118{font-size:54.000000px;}
.fs4_c00118{font-size:60.120000px;}
.fs1_c00118{font-size:72.000000px;}
.y0_c00118{bottom:0.000000px;}
.y23_c00118{bottom:3.240000px;}
.y27_c00118{bottom:3.420000px;}
.y25_c00118{bottom:3.510000px;}
.y22_c00118{bottom:20.520000px;}
.y2e_c00118{bottom:57.240000px;}
.y2d_c00118{bottom:149.490000px;}
.y2c_c00118{bottom:168.210000px;}
.y2b_c00118{bottom:186.930000px;}
.y2a_c00118{bottom:205.740000px;}
.y29_c00118{bottom:224.460000px;}
.y28_c00118{bottom:243.180000px;}
.y26_c00118{bottom:261.990000px;}
.y24_c00118{bottom:280.710000px;}
.y21_c00118{bottom:300.240000px;}
.y20_c00118{bottom:351.450000px;}
.y1f_c00118{bottom:382.500000px;}
.y1e_c00118{bottom:413.550000px;}
.y1d_c00118{bottom:444.600000px;}
.y1c_c00118{bottom:475.650000px;}
.y1b_c00118{bottom:506.700000px;}
.y1a_c00118{bottom:537.750000px;}
.y19_c00118{bottom:568.800000px;}
.y18_c00118{bottom:599.850000px;}
.y17_c00118{bottom:630.900000px;}
.y16_c00118{bottom:661.860000px;}
.y15_c00118{bottom:692.910000px;}
.y14_c00118{bottom:723.960000px;}
.y13_c00118{bottom:755.010000px;}
.y12_c00118{bottom:786.060000px;}
.y11_c00118{bottom:806.760000px;}
.y10_c00118{bottom:827.460000px;}
.yf_c00118{bottom:848.160000px;}
.ye_c00118{bottom:868.860000px;}
.yd_c00118{bottom:899.730000px;}
.yc_c00118{bottom:912.510000px;}
.yb_c00118{bottom:955.080000px;}
.ya_c00118{bottom:986.130000px;}
.y9_c00118{bottom:1017.180000px;}
.y8_c00118{bottom:1048.230000px;}
.y7_c00118{bottom:1079.280000px;}
.y6_c00118{bottom:1110.330000px;}
.y5_c00118{bottom:1131.030000px;}
.y4_c00118{bottom:1150.920000px;}
.y3_c00118{bottom:1166.404500px;}
.y2_c00118{bottom:1181.970000px;}
.y1_c00118{bottom:1197.450000px;}
.hb_c00118{height:17.190000px;}
.hc_c00118{height:17.191500px;}
.h9_c00118{height:17.280000px;}
.h7_c00118{height:34.470000px;}
.h3_c00118{height:52.971680px;}
.h2_c00118{height:52.998047px;}
.ha_c00118{height:59.004492px;}
.h8_c00118{height:60.589687px;}
.h4_c00118{height:70.664062px;}
.h6_c00118{height:191.782969px;}
.h5_c00118{height:196.822969px;}
.h0_c00118{height:1262.880000px;}
.h1_c00118{height:1263.000000px;}
.w2_c00118{width:61.560000px;}
.w4_c00118{width:125.098500px;}
.w3_c00118{width:189.180000px;}
.w0_c00118{width:893.070000px;}
.w1_c00118{width:893.250000px;}
.x0_c00118{left:0.000000px;}
.xf_c00118{left:6.930000px;}
.xa_c00118{left:8.550000px;}
.x8_c00118{left:11.160000px;}
.x7_c00118{left:13.590000px;}
.xd_c00118{left:23.760000px;}
.xe_c00118{left:27.990000px;}
.x11_c00118{left:36.900000px;}
.xb_c00118{left:60.840000px;}
.x10_c00118{left:90.810000px;}
.x3_c00118{left:127.620000px;}
.x6_c00118{left:266.940000px;}
.x4_c00118{left:327.060000px;}
.x9_c00118{left:330.750000px;}
.x5_c00118{left:419.400000px;}
.x2_c00118{left:425.160000px;}
.x1_c00118{left:446.580000px;}
.xc_c00118{left:522.270000px;}
.x12_c00118{left:747.540000px;}
@media print{
.v2_c00118{vertical-align:-13.120000pt;}
.v1_c00118{vertical-align:-2.560000pt;}
.v0_c00118{vertical-align:0.000000pt;}
.v3_c00118{vertical-align:13.120000pt;}
.v4_c00118{vertical-align:49.920000pt;}
.v5_c00118{vertical-align:56.000000pt;}
.ls10_c00118{letter-spacing:-0.128000pt;}
.ls15_c00118{letter-spacing:-0.106880pt;}
.lsf_c00118{letter-spacing:-0.096000pt;}
.ls14_c00118{letter-spacing:-0.053440pt;}
.lse_c00118{letter-spacing:0.000000pt;}
.ls5_c00118{letter-spacing:0.006400pt;}
.ls6_c00118{letter-spacing:0.008320pt;}
.lsd_c00118{letter-spacing:0.053440pt;}
.ls1_c00118{letter-spacing:0.064000pt;}
.ls11_c00118{letter-spacing:0.090880pt;}
.ls13_c00118{letter-spacing:0.160320pt;}
.ls12_c00118{letter-spacing:0.340480pt;}
.ls7_c00118{letter-spacing:0.640000pt;}
.ls8_c00118{letter-spacing:0.960000pt;}
.ls4_c00118{letter-spacing:6.160000pt;}
.lsc_c00118{letter-spacing:6.400000pt;}
.lsb_c00118{letter-spacing:6.636160pt;}
.lsa_c00118{letter-spacing:7.040000pt;}
.ls0_c00118{letter-spacing:12.160000pt;}
.ls9_c00118{letter-spacing:12.800000pt;}
.ls3_c00118{letter-spacing:17.792000pt;}
.ls2_c00118{letter-spacing:21.476480pt;}
.ws2_c00118{word-spacing:-64.000000pt;}
.ws1_c00118{word-spacing:-63.872000pt;}
.ws3_c00118{word-spacing:-45.530880pt;}
.ws6_c00118{word-spacing:-16.000000pt;}
.ws4_c00118{word-spacing:-15.872000pt;}
.ws0_c00118{word-spacing:-14.080000pt;}
.ws8_c00118{word-spacing:-13.520320pt;}
.ws9_c00118{word-spacing:-13.306560pt;}
.ws7_c00118{word-spacing:-10.980480pt;}
.ws5_c00118{word-spacing:-10.640000pt;}
.ws13_c00118{word-spacing:-0.064000pt;}
.ws1f_c00118{word-spacing:-0.053440pt;}
.wsa_c00118{word-spacing:0.000000pt;}
.ws21_c00118{word-spacing:0.106880pt;}
.wsc_c00118{word-spacing:0.144000pt;}
.ws20_c00118{word-spacing:0.160320pt;}
.wsb_c00118{word-spacing:0.240000pt;}
.ws1b_c00118{word-spacing:0.576000pt;}
.wsd_c00118{word-spacing:0.640000pt;}
.ws1c_c00118{word-spacing:0.896000pt;}
.ws14_c00118{word-spacing:0.960000pt;}
.ws1d_c00118{word-spacing:1.920000pt;}
.ws12_c00118{word-spacing:5.376000pt;}
.ws11_c00118{word-spacing:5.696000pt;}
.ws1e_c00118{word-spacing:6.400000pt;}
.ws19_c00118{word-spacing:6.720000pt;}
.ws17_c00118{word-spacing:6.976000pt;}
.ws18_c00118{word-spacing:7.040000pt;}
.ws10_c00118{word-spacing:7.296000pt;}
.wsf_c00118{word-spacing:10.496000pt;}
.wse_c00118{word-spacing:12.160000pt;}
.ws16_c00118{word-spacing:12.736000pt;}
.ws15_c00118{word-spacing:12.928000pt;}
.ws1a_c00118{word-spacing:15.616000pt;}
._3_c00118{margin-left:-5.568000pt;}
._2_c00118{margin-left:-3.392000pt;}
._1_c00118{margin-left:-0.940800pt;}
._0_c00118{width:1.084800pt;}
._4_c00118{width:14.144000pt;}
.fs3_c00118{font-size:42.560000pt;}
.fs2_c00118{font-size:45.440000pt;}
.fs0_c00118{font-size:48.000000pt;}
.fs4_c00118{font-size:53.440000pt;}
.fs1_c00118{font-size:64.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y23_c00118{bottom:2.880000pt;}
.y27_c00118{bottom:3.040000pt;}
.y25_c00118{bottom:3.120000pt;}
.y22_c00118{bottom:18.240000pt;}
.y2e_c00118{bottom:50.880000pt;}
.y2d_c00118{bottom:132.880000pt;}
.y2c_c00118{bottom:149.520000pt;}
.y2b_c00118{bottom:166.160000pt;}
.y2a_c00118{bottom:182.880000pt;}
.y29_c00118{bottom:199.520000pt;}
.y28_c00118{bottom:216.160000pt;}
.y26_c00118{bottom:232.880000pt;}
.y24_c00118{bottom:249.520000pt;}
.y21_c00118{bottom:266.880000pt;}
.y20_c00118{bottom:312.400000pt;}
.y1f_c00118{bottom:340.000000pt;}
.y1e_c00118{bottom:367.600000pt;}
.y1d_c00118{bottom:395.200000pt;}
.y1c_c00118{bottom:422.800000pt;}
.y1b_c00118{bottom:450.400000pt;}
.y1a_c00118{bottom:478.000000pt;}
.y19_c00118{bottom:505.600000pt;}
.y18_c00118{bottom:533.200000pt;}
.y17_c00118{bottom:560.800000pt;}
.y16_c00118{bottom:588.320000pt;}
.y15_c00118{bottom:615.920000pt;}
.y14_c00118{bottom:643.520000pt;}
.y13_c00118{bottom:671.120000pt;}
.y12_c00118{bottom:698.720000pt;}
.y11_c00118{bottom:717.120000pt;}
.y10_c00118{bottom:735.520000pt;}
.yf_c00118{bottom:753.920000pt;}
.ye_c00118{bottom:772.320000pt;}
.yd_c00118{bottom:799.760000pt;}
.yc_c00118{bottom:811.120000pt;}
.yb_c00118{bottom:848.960000pt;}
.ya_c00118{bottom:876.560000pt;}
.y9_c00118{bottom:904.160000pt;}
.y8_c00118{bottom:931.760000pt;}
.y7_c00118{bottom:959.360000pt;}
.y6_c00118{bottom:986.960000pt;}
.y5_c00118{bottom:1005.360000pt;}
.y4_c00118{bottom:1023.040000pt;}
.y3_c00118{bottom:1036.804000pt;}
.y2_c00118{bottom:1050.640000pt;}
.y1_c00118{bottom:1064.400000pt;}
.hb_c00118{height:15.280000pt;}
.hc_c00118{height:15.281333pt;}
.h9_c00118{height:15.360000pt;}
.h7_c00118{height:30.640000pt;}
.h3_c00118{height:47.085938pt;}
.h2_c00118{height:47.109375pt;}
.ha_c00118{height:52.448437pt;}
.h8_c00118{height:53.857500pt;}
.h4_c00118{height:62.812500pt;}
.h6_c00118{height:170.473750pt;}
.h5_c00118{height:174.953750pt;}
.h0_c00118{height:1122.560000pt;}
.h1_c00118{height:1122.666667pt;}
.w2_c00118{width:54.720000pt;}
.w4_c00118{width:111.198667pt;}
.w3_c00118{width:168.160000pt;}
.w0_c00118{width:793.840000pt;}
.w1_c00118{width:794.000000pt;}
.x0_c00118{left:0.000000pt;}
.xf_c00118{left:6.160000pt;}
.xa_c00118{left:7.600000pt;}
.x8_c00118{left:9.920000pt;}
.x7_c00118{left:12.080000pt;}
.xd_c00118{left:21.120000pt;}
.xe_c00118{left:24.880000pt;}
.x11_c00118{left:32.800000pt;}
.xb_c00118{left:54.080000pt;}
.x10_c00118{left:80.720000pt;}
.x3_c00118{left:113.440000pt;}
.x6_c00118{left:237.280000pt;}
.x4_c00118{left:290.720000pt;}
.x9_c00118{left:294.000000pt;}
.x5_c00118{left:372.800000pt;}
.x2_c00118{left:377.920000pt;}
.x1_c00118{left:396.960000pt;}
.xc_c00118{left:464.240000pt;}
.x12_c00118{left:664.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_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_22c5c7f44956025e009617cf.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_ce7da52786715e93e5a731e0.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_83f95e98638e83df815c22ea.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00119;src:url('chunks/assets/font_204c10f081b17f52a35141b3.woff2')format("woff");}.ff5_c00119{font-family:ff5_c00119;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00119{vertical-align:-61.938000px;}
.v3_c00119{vertical-align:-14.760000px;}
.v2_c00119{vertical-align:-2.880000px;}
.v0_c00119{vertical-align:0.000000px;}
.v4_c00119{vertical-align:14.760000px;}
.v6_c00119{vertical-align:48.240000px;}
.v5_c00119{vertical-align:54.360000px;}
.ls12_c00119{letter-spacing:-0.240480px;}
.lsd_c00119{letter-spacing:-0.216000px;}
.lse_c00119{letter-spacing:-0.144000px;}
.ls11_c00119{letter-spacing:-0.120240px;}
.lsc_c00119{letter-spacing:-0.072000px;}
.ls13_c00119{letter-spacing:-0.060120px;}
.lsb_c00119{letter-spacing:0.000000px;}
.ls9_c00119{letter-spacing:0.009360px;}
.ls2_c00119{letter-spacing:0.072000px;}
.lsf_c00119{letter-spacing:0.120240px;}
.ls4_c00119{letter-spacing:0.144000px;}
.ls10_c00119{letter-spacing:0.180360px;}
.ls8_c00119{letter-spacing:0.360000px;}
.ls3_c00119{letter-spacing:1.080000px;}
.ls1_c00119{letter-spacing:4.680000px;}
.lsa_c00119{letter-spacing:5.040000px;}
.ls7_c00119{letter-spacing:15.984000px;}
.ls5_c00119{letter-spacing:24.984720px;}
.ls6_c00119{letter-spacing:31.176000px;}
.ls0_c00119{letter-spacing:319.518000px;}
.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;}
}
.ws8_c00119{word-spacing:-72.144000px;}
.ws7_c00119{word-spacing:-72.072000px;}
.ws5_c00119{word-spacing:-72.000000px;}
.ws6_c00119{word-spacing:-71.928000px;}
.ws4_c00119{word-spacing:-71.856000px;}
.ws2_c00119{word-spacing:-18.000000px;}
.ws1_c00119{word-spacing:-17.856000px;}
.ws3_c00119{word-spacing:-15.840000px;}
.ws9_c00119{word-spacing:-15.150240px;}
.wsa_c00119{word-spacing:-14.909760px;}
.wsb_c00119{word-spacing:-14.789520px;}
.ws0_c00119{word-spacing:-11.970000px;}
.ws1b_c00119{word-spacing:-0.432000px;}
.ws28_c00119{word-spacing:-0.420840px;}
.ws27_c00119{word-spacing:-0.180360px;}
.wsd_c00119{word-spacing:-0.162000px;}
.ws19_c00119{word-spacing:-0.144000px;}
.ws11_c00119{word-spacing:-0.072000px;}
.ws25_c00119{word-spacing:-0.060120px;}
.wsc_c00119{word-spacing:0.000000px;}
.wse_c00119{word-spacing:0.072000px;}
.ws10_c00119{word-spacing:0.216000px;}
.ws26_c00119{word-spacing:0.240480px;}
.ws24_c00119{word-spacing:0.288000px;}
.ws13_c00119{word-spacing:0.936000px;}
.ws14_c00119{word-spacing:1.008000px;}
.ws22_c00119{word-spacing:1.368000px;}
.ws21_c00119{word-spacing:1.440000px;}
.ws12_c00119{word-spacing:2.088000px;}
.ws1e_c00119{word-spacing:2.160000px;}
.wsf_c00119{word-spacing:4.680000px;}
.ws1f_c00119{word-spacing:4.968000px;}
.ws20_c00119{word-spacing:5.040000px;}
.ws1a_c00119{word-spacing:6.120000px;}
.ws1d_c00119{word-spacing:7.128000px;}
.ws1c_c00119{word-spacing:7.560000px;}
.ws16_c00119{word-spacing:10.008000px;}
.ws17_c00119{word-spacing:10.368000px;}
.ws29_c00119{word-spacing:16.128000px;}
.ws15_c00119{word-spacing:16.560000px;}
.ws18_c00119{word-spacing:17.640000px;}
.ws23_c00119{word-spacing:19.368000px;}
._4_c00119{margin-left:-3.816000px;}
._2_c00119{margin-left:-1.008000px;}
._1_c00119{width:1.008000px;}
._6_c00119{width:2.304000px;}
._0_c00119{width:4.824000px;}
._3_c00119{width:6.120000px;}
._5_c00119{width:17.568000px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs2_c00119{font-size:47.880000px;}
.fs3_c00119{font-size:51.120000px;}
.fs0_c00119{font-size:54.000000px;}
.fs4_c00119{font-size:60.120000px;}
.fs1_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y22_c00119{bottom:3.330000px;}
.y24_c00119{bottom:3.420000px;}
.y26_c00119{bottom:3.510000px;}
.y2c_c00119{bottom:57.240000px;}
.y2b_c00119{bottom:110.700000px;}
.y2a_c00119{bottom:141.750000px;}
.y29_c00119{bottom:160.560000px;}
.y28_c00119{bottom:179.370000px;}
.y27_c00119{bottom:198.090000px;}
.y25_c00119{bottom:216.810000px;}
.y23_c00119{bottom:235.620000px;}
.y21_c00119{bottom:255.060000px;}
.y20_c00119{bottom:289.080000px;}
.y1f_c00119{bottom:320.130000px;}
.y1e_c00119{bottom:351.180000px;}
.y1d_c00119{bottom:382.230000px;}
.y1c_c00119{bottom:413.280000px;}
.y1b_c00119{bottom:444.330000px;}
.y1a_c00119{bottom:475.380000px;}
.y19_c00119{bottom:506.430000px;}
.y18_c00119{bottom:537.480000px;}
.y17_c00119{bottom:568.530000px;}
.y16_c00119{bottom:599.580000px;}
.y15_c00119{bottom:620.190000px;}
.y14_c00119{bottom:651.330000px;}
.y13_c00119{bottom:664.110000px;}
.y12_c00119{bottom:706.770000px;}
.y11_c00119{bottom:737.820000px;}
.y10_c00119{bottom:768.870000px;}
.yf_c00119{bottom:799.920000px;}
.ye_c00119{bottom:830.970000px;}
.yd_c00119{bottom:861.930000px;}
.yc_c00119{bottom:892.980000px;}
.yb_c00119{bottom:924.030000px;}
.ya_c00119{bottom:955.080000px;}
.y9_c00119{bottom:986.130000px;}
.y8_c00119{bottom:1017.180000px;}
.y7_c00119{bottom:1048.230000px;}
.y6_c00119{bottom:1079.280000px;}
.y5_c00119{bottom:1110.330000px;}
.y4_c00119{bottom:1131.030000px;}
.y3_c00119{bottom:1150.915500px;}
.y2_c00119{bottom:1166.400000px;}
.y1_c00119{bottom:1197.450000px;}
.ha_c00119{height:17.190000px;}
.h8_c00119{height:17.191500px;}
.h6_c00119{height:17.280000px;}
.h2_c00119{height:52.998047px;}
.h9_c00119{height:59.004492px;}
.h7_c00119{height:60.589687px;}
.h3_c00119{height:70.664062px;}
.h5_c00119{height:143.542969px;}
.h4_c00119{height:195.022969px;}
.h0_c00119{height:1262.880000px;}
.h1_c00119{height:1263.000000px;}
.w3_c00119{width:210.420000px;}
.w2_c00119{width:242.280000px;}
.w0_c00119{width:893.070000px;}
.w1_c00119{width:893.250000px;}
.x0_c00119{left:0.000000px;}
.x9_c00119{left:7.020000px;}
.x8_c00119{left:8.190000px;}
.x6_c00119{left:89.550000px;}
.xa_c00119{left:95.850000px;}
.x2_c00119{left:127.620000px;}
.x5_c00119{left:224.370000px;}
.x3_c00119{left:276.030000px;}
.x4_c00119{left:354.330000px;}
.x1_c00119{left:446.580000px;}
.x7_c00119{left:468.900000px;}
@media print{
.v1_c00119{vertical-align:-55.056000pt;}
.v3_c00119{vertical-align:-13.120000pt;}
.v2_c00119{vertical-align:-2.560000pt;}
.v0_c00119{vertical-align:0.000000pt;}
.v4_c00119{vertical-align:13.120000pt;}
.v6_c00119{vertical-align:42.880000pt;}
.v5_c00119{vertical-align:48.320000pt;}
.ls12_c00119{letter-spacing:-0.213760pt;}
.lsd_c00119{letter-spacing:-0.192000pt;}
.lse_c00119{letter-spacing:-0.128000pt;}
.ls11_c00119{letter-spacing:-0.106880pt;}
.lsc_c00119{letter-spacing:-0.064000pt;}
.ls13_c00119{letter-spacing:-0.053440pt;}
.lsb_c00119{letter-spacing:0.000000pt;}
.ls9_c00119{letter-spacing:0.008320pt;}
.ls2_c00119{letter-spacing:0.064000pt;}
.lsf_c00119{letter-spacing:0.106880pt;}
.ls4_c00119{letter-spacing:0.128000pt;}
.ls10_c00119{letter-spacing:0.160320pt;}
.ls8_c00119{letter-spacing:0.320000pt;}
.ls3_c00119{letter-spacing:0.960000pt;}
.ls1_c00119{letter-spacing:4.160000pt;}
.lsa_c00119{letter-spacing:4.480000pt;}
.ls7_c00119{letter-spacing:14.208000pt;}
.ls5_c00119{letter-spacing:22.208640pt;}
.ls6_c00119{letter-spacing:27.712000pt;}
.ls0_c00119{letter-spacing:284.016000pt;}
.ws8_c00119{word-spacing:-64.128000pt;}
.ws7_c00119{word-spacing:-64.064000pt;}
.ws5_c00119{word-spacing:-64.000000pt;}
.ws6_c00119{word-spacing:-63.936000pt;}
.ws4_c00119{word-spacing:-63.872000pt;}
.ws2_c00119{word-spacing:-16.000000pt;}
.ws1_c00119{word-spacing:-15.872000pt;}
.ws3_c00119{word-spacing:-14.080000pt;}
.ws9_c00119{word-spacing:-13.466880pt;}
.wsa_c00119{word-spacing:-13.253120pt;}
.wsb_c00119{word-spacing:-13.146240pt;}
.ws0_c00119{word-spacing:-10.640000pt;}
.ws1b_c00119{word-spacing:-0.384000pt;}
.ws28_c00119{word-spacing:-0.374080pt;}
.ws27_c00119{word-spacing:-0.160320pt;}
.wsd_c00119{word-spacing:-0.144000pt;}
.ws19_c00119{word-spacing:-0.128000pt;}
.ws11_c00119{word-spacing:-0.064000pt;}
.ws25_c00119{word-spacing:-0.053440pt;}
.wsc_c00119{word-spacing:0.000000pt;}
.wse_c00119{word-spacing:0.064000pt;}
.ws10_c00119{word-spacing:0.192000pt;}
.ws26_c00119{word-spacing:0.213760pt;}
.ws24_c00119{word-spacing:0.256000pt;}
.ws13_c00119{word-spacing:0.832000pt;}
.ws14_c00119{word-spacing:0.896000pt;}
.ws22_c00119{word-spacing:1.216000pt;}
.ws21_c00119{word-spacing:1.280000pt;}
.ws12_c00119{word-spacing:1.856000pt;}
.ws1e_c00119{word-spacing:1.920000pt;}
.wsf_c00119{word-spacing:4.160000pt;}
.ws1f_c00119{word-spacing:4.416000pt;}
.ws20_c00119{word-spacing:4.480000pt;}
.ws1a_c00119{word-spacing:5.440000pt;}
.ws1d_c00119{word-spacing:6.336000pt;}
.ws1c_c00119{word-spacing:6.720000pt;}
.ws16_c00119{word-spacing:8.896000pt;}
.ws17_c00119{word-spacing:9.216000pt;}
.ws29_c00119{word-spacing:14.336000pt;}
.ws15_c00119{word-spacing:14.720000pt;}
.ws18_c00119{word-spacing:15.680000pt;}
.ws23_c00119{word-spacing:17.216000pt;}
._4_c00119{margin-left:-3.392000pt;}
._2_c00119{margin-left:-0.896000pt;}
._1_c00119{width:0.896000pt;}
._6_c00119{width:2.048000pt;}
._0_c00119{width:4.288000pt;}
._3_c00119{width:5.440000pt;}
._5_c00119{width:15.616000pt;}
.fs2_c00119{font-size:42.560000pt;}
.fs3_c00119{font-size:45.440000pt;}
.fs0_c00119{font-size:48.000000pt;}
.fs4_c00119{font-size:53.440000pt;}
.fs1_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y22_c00119{bottom:2.960000pt;}
.y24_c00119{bottom:3.040000pt;}
.y26_c00119{bottom:3.120000pt;}
.y2c_c00119{bottom:50.880000pt;}
.y2b_c00119{bottom:98.400000pt;}
.y2a_c00119{bottom:126.000000pt;}
.y29_c00119{bottom:142.720000pt;}
.y28_c00119{bottom:159.440000pt;}
.y27_c00119{bottom:176.080000pt;}
.y25_c00119{bottom:192.720000pt;}
.y23_c00119{bottom:209.440000pt;}
.y21_c00119{bottom:226.720000pt;}
.y20_c00119{bottom:256.960000pt;}
.y1f_c00119{bottom:284.560000pt;}
.y1e_c00119{bottom:312.160000pt;}
.y1d_c00119{bottom:339.760000pt;}
.y1c_c00119{bottom:367.360000pt;}
.y1b_c00119{bottom:394.960000pt;}
.y1a_c00119{bottom:422.560000pt;}
.y19_c00119{bottom:450.160000pt;}
.y18_c00119{bottom:477.760000pt;}
.y17_c00119{bottom:505.360000pt;}
.y16_c00119{bottom:532.960000pt;}
.y15_c00119{bottom:551.280000pt;}
.y14_c00119{bottom:578.960000pt;}
.y13_c00119{bottom:590.320000pt;}
.y12_c00119{bottom:628.240000pt;}
.y11_c00119{bottom:655.840000pt;}
.y10_c00119{bottom:683.440000pt;}
.yf_c00119{bottom:711.040000pt;}
.ye_c00119{bottom:738.640000pt;}
.yd_c00119{bottom:766.160000pt;}
.yc_c00119{bottom:793.760000pt;}
.yb_c00119{bottom:821.360000pt;}
.ya_c00119{bottom:848.960000pt;}
.y9_c00119{bottom:876.560000pt;}
.y8_c00119{bottom:904.160000pt;}
.y7_c00119{bottom:931.760000pt;}
.y6_c00119{bottom:959.360000pt;}
.y5_c00119{bottom:986.960000pt;}
.y4_c00119{bottom:1005.360000pt;}
.y3_c00119{bottom:1023.036000pt;}
.y2_c00119{bottom:1036.800000pt;}
.y1_c00119{bottom:1064.400000pt;}
.ha_c00119{height:15.280000pt;}
.h8_c00119{height:15.281333pt;}
.h6_c00119{height:15.360000pt;}
.h2_c00119{height:47.109375pt;}
.h9_c00119{height:52.448437pt;}
.h7_c00119{height:53.857500pt;}
.h3_c00119{height:62.812500pt;}
.h5_c00119{height:127.593750pt;}
.h4_c00119{height:173.353750pt;}
.h0_c00119{height:1122.560000pt;}
.h1_c00119{height:1122.666667pt;}
.w3_c00119{width:187.040000pt;}
.w2_c00119{width:215.360000pt;}
.w0_c00119{width:793.840000pt;}
.w1_c00119{width:794.000000pt;}
.x0_c00119{left:0.000000pt;}
.x9_c00119{left:6.240000pt;}
.x8_c00119{left:7.280000pt;}
.x6_c00119{left:79.600000pt;}
.xa_c00119{left:85.200000pt;}
.x2_c00119{left:113.440000pt;}
.x5_c00119{left:199.440000pt;}
.x3_c00119{left:245.360000pt;}
.x4_c00119{left:314.960000pt;}
.x1_c00119{left:396.960000pt;}
.x7_c00119{left:416.800000pt;}
}





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

.ir_c00120:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00120;src:url('chunks/assets/font_121398d23fc0e5eb149ce642.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_204c10f081b17f52a35141b3.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls12_c00120{letter-spacing:-0.360000px;}
.lsa_c00120{letter-spacing:-0.288000px;}
.lse_c00120{letter-spacing:-0.240480px;}
.ls11_c00120{letter-spacing:-0.216000px;}
.ls10_c00120{letter-spacing:-0.180360px;}
.lsd_c00120{letter-spacing:-0.120240px;}
.ls9_c00120{letter-spacing:-0.108000px;}
.lsf_c00120{letter-spacing:-0.060120px;}
.ls8_c00120{letter-spacing:0.000000px;}
.ls2_c00120{letter-spacing:0.072000px;}
.lsb_c00120{letter-spacing:0.120240px;}
.ls1_c00120{letter-spacing:0.144000px;}
.lsc_c00120{letter-spacing:0.180360px;}
.ls5_c00120{letter-spacing:1.800000px;}
.ls7_c00120{letter-spacing:5.760000px;}
.ls4_c00120{letter-spacing:6.120000px;}
.ls0_c00120{letter-spacing:7.920000px;}
.ls3_c00120{letter-spacing:8.280000px;}
.ls6_c00120{letter-spacing:9.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00120{word-spacing:-18.144000px;}
.ws6_c00120{word-spacing:-18.072000px;}
.ws0_c00120{word-spacing:-18.000000px;}
.ws8_c00120{word-spacing:-17.640000px;}
.ws1_c00120{word-spacing:-15.150240px;}
.ws4_c00120{word-spacing:-14.969880px;}
.ws2_c00120{word-spacing:-14.909760px;}
.ws5_c00120{word-spacing:-14.849640px;}
.ws3_c00120{word-spacing:-14.789520px;}
.wsd_c00120{word-spacing:-0.144000px;}
.ws15_c00120{word-spacing:-0.072000px;}
.ws16_c00120{word-spacing:-0.060120px;}
.ws9_c00120{word-spacing:0.000000px;}
.wsb_c00120{word-spacing:0.162000px;}
.wsa_c00120{word-spacing:0.270000px;}
.ws29_c00120{word-spacing:0.936000px;}
.ws2b_c00120{word-spacing:1.008000px;}
.ws2a_c00120{word-spacing:1.080000px;}
.ws2c_c00120{word-spacing:1.296000px;}
.ws17_c00120{word-spacing:1.368000px;}
.ws18_c00120{word-spacing:1.440000px;}
.ws21_c00120{word-spacing:1.728000px;}
.ws1b_c00120{word-spacing:1.800000px;}
.ws12_c00120{word-spacing:2.088000px;}
.ws13_c00120{word-spacing:2.808000px;}
.ws14_c00120{word-spacing:2.880000px;}
.ws1c_c00120{word-spacing:3.240000px;}
.ws25_c00120{word-spacing:5.400000px;}
.ws1f_c00120{word-spacing:5.688000px;}
.ws1d_c00120{word-spacing:6.048000px;}
.ws1e_c00120{word-spacing:6.120000px;}
.wse_c00120{word-spacing:6.768000px;}
.wsc_c00120{word-spacing:6.840000px;}
.wsf_c00120{word-spacing:7.848000px;}
.ws10_c00120{word-spacing:7.920000px;}
.ws19_c00120{word-spacing:8.136000px;}
.ws11_c00120{word-spacing:8.208000px;}
.ws1a_c00120{word-spacing:8.280000px;}
.ws22_c00120{word-spacing:9.288000px;}
.ws23_c00120{word-spacing:9.360000px;}
.ws28_c00120{word-spacing:9.576000px;}
.ws20_c00120{word-spacing:11.160000px;}
.ws24_c00120{word-spacing:13.320000px;}
.ws26_c00120{word-spacing:19.728000px;}
.ws27_c00120{word-spacing:19.800000px;}
._1_c00120{margin-left:-1.058400px;}
._0_c00120{width:1.220400px;}
._2_c00120{width:6.026400px;}
._3_c00120{width:8.690400px;}
.fc0_c00120{color:rgb(0,0,0);}
.fs0_c00120{font-size:54.000000px;}
.fs2_c00120{font-size:60.120000px;}
.fs1_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.ye_c00120{bottom:3.240000px;}
.y12_c00120{bottom:3.420000px;}
.y10_c00120{bottom:3.510000px;}
.y2c_c00120{bottom:57.240000px;}
.y2b_c00120{bottom:124.740000px;}
.y2a_c00120{bottom:155.790000px;}
.y29_c00120{bottom:186.840000px;}
.y28_c00120{bottom:217.890000px;}
.y27_c00120{bottom:248.940000px;}
.y26_c00120{bottom:279.990000px;}
.y25_c00120{bottom:311.040000px;}
.y24_c00120{bottom:342.090000px;}
.y23_c00120{bottom:373.140000px;}
.y22_c00120{bottom:404.190000px;}
.y21_c00120{bottom:435.240000px;}
.y20_c00120{bottom:466.290000px;}
.y1f_c00120{bottom:497.340000px;}
.y1e_c00120{bottom:528.390000px;}
.y1d_c00120{bottom:559.440000px;}
.y1c_c00120{bottom:590.490000px;}
.y1b_c00120{bottom:621.540000px;}
.y1a_c00120{bottom:652.590000px;}
.y19_c00120{bottom:683.640000px;}
.y18_c00120{bottom:714.690000px;}
.y17_c00120{bottom:745.740000px;}
.y16_c00120{bottom:776.790000px;}
.y15_c00120{bottom:795.600000px;}
.y14_c00120{bottom:814.320000px;}
.y13_c00120{bottom:833.130000px;}
.y11_c00120{bottom:851.850000px;}
.yf_c00120{bottom:870.570000px;}
.yd_c00120{bottom:890.100000px;}
.yc_c00120{bottom:924.030000px;}
.yb_c00120{bottom:955.080000px;}
.ya_c00120{bottom:986.130000px;}
.y9_c00120{bottom:1017.180000px;}
.y8_c00120{bottom:1048.230000px;}
.y7_c00120{bottom:1079.280000px;}
.y6_c00120{bottom:1110.330000px;}
.y5_c00120{bottom:1131.030000px;}
.y4_c00120{bottom:1150.920000px;}
.y3_c00120{bottom:1166.404500px;}
.y2_c00120{bottom:1181.970000px;}
.y1_c00120{bottom:1197.450000px;}
.h9_c00120{height:17.190000px;}
.h5_c00120{height:17.191500px;}
.h7_c00120{height:17.280000px;}
.h3_c00120{height:52.971680px;}
.h2_c00120{height:52.998047px;}
.h8_c00120{height:59.004492px;}
.h6_c00120{height:60.589687px;}
.h4_c00120{height:70.664062px;}
.h0_c00120{height:1262.880000px;}
.h1_c00120{height:1263.000000px;}
.w2_c00120{width:135.990000px;}
.w3_c00120{width:221.040000px;}
.w0_c00120{width:893.070000px;}
.w1_c00120{width:893.250000px;}
.x0_c00120{left:0.000000px;}
.x8_c00120{left:7.020000px;}
.x7_c00120{left:13.500000px;}
.x5_c00120{left:36.360000px;}
.x9_c00120{left:101.160000px;}
.x3_c00120{left:127.620000px;}
.x4_c00120{left:309.420000px;}
.x2_c00120{left:425.160000px;}
.x1_c00120{left:446.580000px;}
.x6_c00120{left:447.660000px;}
.xa_c00120{left:747.540000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls12_c00120{letter-spacing:-0.320000pt;}
.lsa_c00120{letter-spacing:-0.256000pt;}
.lse_c00120{letter-spacing:-0.213760pt;}
.ls11_c00120{letter-spacing:-0.192000pt;}
.ls10_c00120{letter-spacing:-0.160320pt;}
.lsd_c00120{letter-spacing:-0.106880pt;}
.ls9_c00120{letter-spacing:-0.096000pt;}
.lsf_c00120{letter-spacing:-0.053440pt;}
.ls8_c00120{letter-spacing:0.000000pt;}
.ls2_c00120{letter-spacing:0.064000pt;}
.lsb_c00120{letter-spacing:0.106880pt;}
.ls1_c00120{letter-spacing:0.128000pt;}
.lsc_c00120{letter-spacing:0.160320pt;}
.ls5_c00120{letter-spacing:1.600000pt;}
.ls7_c00120{letter-spacing:5.120000pt;}
.ls4_c00120{letter-spacing:5.440000pt;}
.ls0_c00120{letter-spacing:7.040000pt;}
.ls3_c00120{letter-spacing:7.360000pt;}
.ls6_c00120{letter-spacing:8.000000pt;}
.ws7_c00120{word-spacing:-16.128000pt;}
.ws6_c00120{word-spacing:-16.064000pt;}
.ws0_c00120{word-spacing:-16.000000pt;}
.ws8_c00120{word-spacing:-15.680000pt;}
.ws1_c00120{word-spacing:-13.466880pt;}
.ws4_c00120{word-spacing:-13.306560pt;}
.ws2_c00120{word-spacing:-13.253120pt;}
.ws5_c00120{word-spacing:-13.199680pt;}
.ws3_c00120{word-spacing:-13.146240pt;}
.wsd_c00120{word-spacing:-0.128000pt;}
.ws15_c00120{word-spacing:-0.064000pt;}
.ws16_c00120{word-spacing:-0.053440pt;}
.ws9_c00120{word-spacing:0.000000pt;}
.wsb_c00120{word-spacing:0.144000pt;}
.wsa_c00120{word-spacing:0.240000pt;}
.ws29_c00120{word-spacing:0.832000pt;}
.ws2b_c00120{word-spacing:0.896000pt;}
.ws2a_c00120{word-spacing:0.960000pt;}
.ws2c_c00120{word-spacing:1.152000pt;}
.ws17_c00120{word-spacing:1.216000pt;}
.ws18_c00120{word-spacing:1.280000pt;}
.ws21_c00120{word-spacing:1.536000pt;}
.ws1b_c00120{word-spacing:1.600000pt;}
.ws12_c00120{word-spacing:1.856000pt;}
.ws13_c00120{word-spacing:2.496000pt;}
.ws14_c00120{word-spacing:2.560000pt;}
.ws1c_c00120{word-spacing:2.880000pt;}
.ws25_c00120{word-spacing:4.800000pt;}
.ws1f_c00120{word-spacing:5.056000pt;}
.ws1d_c00120{word-spacing:5.376000pt;}
.ws1e_c00120{word-spacing:5.440000pt;}
.wse_c00120{word-spacing:6.016000pt;}
.wsc_c00120{word-spacing:6.080000pt;}
.wsf_c00120{word-spacing:6.976000pt;}
.ws10_c00120{word-spacing:7.040000pt;}
.ws19_c00120{word-spacing:7.232000pt;}
.ws11_c00120{word-spacing:7.296000pt;}
.ws1a_c00120{word-spacing:7.360000pt;}
.ws22_c00120{word-spacing:8.256000pt;}
.ws23_c00120{word-spacing:8.320000pt;}
.ws28_c00120{word-spacing:8.512000pt;}
.ws20_c00120{word-spacing:9.920000pt;}
.ws24_c00120{word-spacing:11.840000pt;}
.ws26_c00120{word-spacing:17.536000pt;}
.ws27_c00120{word-spacing:17.600000pt;}
._1_c00120{margin-left:-0.940800pt;}
._0_c00120{width:1.084800pt;}
._2_c00120{width:5.356800pt;}
._3_c00120{width:7.724800pt;}
.fs0_c00120{font-size:48.000000pt;}
.fs2_c00120{font-size:53.440000pt;}
.fs1_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.ye_c00120{bottom:2.880000pt;}
.y12_c00120{bottom:3.040000pt;}
.y10_c00120{bottom:3.120000pt;}
.y2c_c00120{bottom:50.880000pt;}
.y2b_c00120{bottom:110.880000pt;}
.y2a_c00120{bottom:138.480000pt;}
.y29_c00120{bottom:166.080000pt;}
.y28_c00120{bottom:193.680000pt;}
.y27_c00120{bottom:221.280000pt;}
.y26_c00120{bottom:248.880000pt;}
.y25_c00120{bottom:276.480000pt;}
.y24_c00120{bottom:304.080000pt;}
.y23_c00120{bottom:331.680000pt;}
.y22_c00120{bottom:359.280000pt;}
.y21_c00120{bottom:386.880000pt;}
.y20_c00120{bottom:414.480000pt;}
.y1f_c00120{bottom:442.080000pt;}
.y1e_c00120{bottom:469.680000pt;}
.y1d_c00120{bottom:497.280000pt;}
.y1c_c00120{bottom:524.880000pt;}
.y1b_c00120{bottom:552.480000pt;}
.y1a_c00120{bottom:580.080000pt;}
.y19_c00120{bottom:607.680000pt;}
.y18_c00120{bottom:635.280000pt;}
.y17_c00120{bottom:662.880000pt;}
.y16_c00120{bottom:690.480000pt;}
.y15_c00120{bottom:707.200000pt;}
.y14_c00120{bottom:723.840000pt;}
.y13_c00120{bottom:740.560000pt;}
.y11_c00120{bottom:757.200000pt;}
.yf_c00120{bottom:773.840000pt;}
.yd_c00120{bottom:791.200000pt;}
.yc_c00120{bottom:821.360000pt;}
.yb_c00120{bottom:848.960000pt;}
.ya_c00120{bottom:876.560000pt;}
.y9_c00120{bottom:904.160000pt;}
.y8_c00120{bottom:931.760000pt;}
.y7_c00120{bottom:959.360000pt;}
.y6_c00120{bottom:986.960000pt;}
.y5_c00120{bottom:1005.360000pt;}
.y4_c00120{bottom:1023.040000pt;}
.y3_c00120{bottom:1036.804000pt;}
.y2_c00120{bottom:1050.640000pt;}
.y1_c00120{bottom:1064.400000pt;}
.h9_c00120{height:15.280000pt;}
.h5_c00120{height:15.281333pt;}
.h7_c00120{height:15.360000pt;}
.h3_c00120{height:47.085938pt;}
.h2_c00120{height:47.109375pt;}
.h8_c00120{height:52.448437pt;}
.h6_c00120{height:53.857500pt;}
.h4_c00120{height:62.812500pt;}
.h0_c00120{height:1122.560000pt;}
.h1_c00120{height:1122.666667pt;}
.w2_c00120{width:120.880000pt;}
.w3_c00120{width:196.480000pt;}
.w0_c00120{width:793.840000pt;}
.w1_c00120{width:794.000000pt;}
.x0_c00120{left:0.000000pt;}
.x8_c00120{left:6.240000pt;}
.x7_c00120{left:12.000000pt;}
.x5_c00120{left:32.320000pt;}
.x9_c00120{left:89.920000pt;}
.x3_c00120{left:113.440000pt;}
.x4_c00120{left:275.040000pt;}
.x2_c00120{left:377.920000pt;}
.x1_c00120{left:396.960000pt;}
.x6_c00120{left:397.920000pt;}
.xa_c00120{left:664.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_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_d919e8eb8d3df2c873cca7b6.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.284668;font-style:normal;font-weight:normal;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_982e5a69af5793453c9e99a3.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_12c7fcb9103132d7fc60ea15.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00121{vertical-align:-61.938000px;}
.v0_c00121{vertical-align:0.000000px;}
.ls12_c00121{letter-spacing:-0.661320px;}
.lsd_c00121{letter-spacing:-0.480960px;}
.ls10_c00121{letter-spacing:-0.420840px;}
.ls11_c00121{letter-spacing:-0.360720px;}
.ls9_c00121{letter-spacing:-0.288000px;}
.lsc_c00121{letter-spacing:-0.120240px;}
.lsa_c00121{letter-spacing:-0.072000px;}
.lsb_c00121{letter-spacing:-0.060120px;}
.ls7_c00121{letter-spacing:0.000000px;}
.ls4_c00121{letter-spacing:0.053280px;}
.lsf_c00121{letter-spacing:0.060120px;}
.ls2_c00121{letter-spacing:0.072000px;}
.ls8_c00121{letter-spacing:0.144000px;}
.lse_c00121{letter-spacing:0.180360px;}
.ls1_c00121{letter-spacing:2.880000px;}
.ls3_c00121{letter-spacing:5.040000px;}
.ls5_c00121{letter-spacing:14.490000px;}
.ls6_c00121{letter-spacing:24.949800px;}
.ls0_c00121{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws0_c00121{word-spacing:-18.072000px;}
.ws2_c00121{word-spacing:-17.712000px;}
.ws6_c00121{word-spacing:-15.210360px;}
.ws5_c00121{word-spacing:-15.090120px;}
.ws7_c00121{word-spacing:-15.030000px;}
.ws3_c00121{word-spacing:-14.969880px;}
.ws9_c00121{word-spacing:-14.909760px;}
.ws8_c00121{word-spacing:-14.669280px;}
.ws4_c00121{word-spacing:-14.549040px;}
.ws16_c00121{word-spacing:-0.432000px;}
.ws32_c00121{word-spacing:-0.180360px;}
.wsb_c00121{word-spacing:-0.162000px;}
.ws10_c00121{word-spacing:-0.144000px;}
.ws23_c00121{word-spacing:-0.120240px;}
.wsf_c00121{word-spacing:-0.072000px;}
.ws2d_c00121{word-spacing:-0.060120px;}
.wsa_c00121{word-spacing:0.000000px;}
.ws22_c00121{word-spacing:0.060120px;}
.ws20_c00121{word-spacing:0.072000px;}
.ws24_c00121{word-spacing:0.180360px;}
.ws21_c00121{word-spacing:0.240480px;}
.wsc_c00121{word-spacing:0.288000px;}
.ws12_c00121{word-spacing:0.360000px;}
.ws31_c00121{word-spacing:0.420840px;}
.ws2c_c00121{word-spacing:0.480960px;}
.ws3a_c00121{word-spacing:0.661320px;}
.ws1a_c00121{word-spacing:0.720000px;}
.ws33_c00121{word-spacing:2.044080px;}
.wse_c00121{word-spacing:2.160000px;}
.wsd_c00121{word-spacing:2.520000px;}
.ws34_c00121{word-spacing:2.705400px;}
.ws18_c00121{word-spacing:2.808000px;}
.ws17_c00121{word-spacing:2.880000px;}
.ws15_c00121{word-spacing:3.528000px;}
.ws14_c00121{word-spacing:3.600000px;}
.ws1d_c00121{word-spacing:4.536000px;}
.ws1c_c00121{word-spacing:4.968000px;}
.ws1b_c00121{word-spacing:5.040000px;}
.ws27_c00121{word-spacing:5.170320px;}
.ws1e_c00121{word-spacing:7.128000px;}
.ws1f_c00121{word-spacing:7.200000px;}
.ws38_c00121{word-spacing:7.454880px;}
.ws39_c00121{word-spacing:11.302560px;}
.ws29_c00121{word-spacing:13.106160px;}
.ws2a_c00121{word-spacing:14.188320px;}
.ws2b_c00121{word-spacing:14.909760px;}
.ws35_c00121{word-spacing:15.751440px;}
.ws36_c00121{word-spacing:16.352640px;}
.ws19_c00121{word-spacing:19.440000px;}
.ws11_c00121{word-spacing:23.328000px;}
.ws30_c00121{word-spacing:25.070040px;}
.ws2e_c00121{word-spacing:25.370640px;}
.ws13_c00121{word-spacing:26.928000px;}
.ws2f_c00121{word-spacing:28.617120px;}
.ws25_c00121{word-spacing:33.607080px;}
.ws28_c00121{word-spacing:36.973800px;}
.ws26_c00121{word-spacing:58.256280px;}
.ws37_c00121{word-spacing:73.226160px;}
._0_c00121{margin-left:-1.008000px;}
._3_c00121{width:1.087200px;}
._2_c00121{width:2.232000px;}
._1_c00121{width:4.968000px;}
._4_c00121{width:33.576840px;}
.fc1_c00121{color:transparent;}
.fc0_c00121{color:rgb(0,0,0);}
.fs0_c00121{font-size:54.000000px;}
.fs2_c00121{font-size:60.120000px;}
.fs1_c00121{font-size:72.000000px;}
.y0_c00121{bottom:0.000000px;}
.y1c_c00121{bottom:3.240000px;}
.y25_c00121{bottom:3.420000px;}
.y27_c00121{bottom:3.510000px;}
.y1b_c00121{bottom:20.520000px;}
.y24_c00121{bottom:20.700000px;}
.y22_c00121{bottom:37.980000px;}
.y2c_c00121{bottom:55.170000px;}
.y2f_c00121{bottom:57.240000px;}
.y20_c00121{bottom:72.450000px;}
.y1e_c00121{bottom:89.550000px;}
.y1f_c00121{bottom:89.730000px;}
.y2e_c00121{bottom:188.010000px;}
.y28_c00121{bottom:203.310000px;}
.y2d_c00121{bottom:224.010000px;}
.y2a_c00121{bottom:241.285680px;}
.y29_c00121{bottom:258.480000px;}
.y2b_c00121{bottom:275.760000px;}
.y26_c00121{bottom:307.530000px;}
.y1d_c00121{bottom:342.810000px;}
.y23_c00121{bottom:363.510000px;}
.y21_c00121{bottom:397.980000px;}
.y1a_c00121{bottom:448.560000px;}
.y19_c00121{bottom:489.240000px;}
.y18_c00121{bottom:520.470000px;}
.y17_c00121{bottom:551.520000px;}
.y16_c00121{bottom:582.570000px;}
.y15_c00121{bottom:613.620000px;}
.y14_c00121{bottom:644.670000px;}
.y13_c00121{bottom:675.720000px;}
.y12_c00121{bottom:706.770000px;}
.y11_c00121{bottom:737.820000px;}
.y10_c00121{bottom:768.870000px;}
.yf_c00121{bottom:799.920000px;}
.ye_c00121{bottom:830.970000px;}
.yd_c00121{bottom:861.930000px;}
.yc_c00121{bottom:892.980000px;}
.yb_c00121{bottom:924.030000px;}
.ya_c00121{bottom:955.080000px;}
.y9_c00121{bottom:986.130000px;}
.y8_c00121{bottom:1017.180000px;}
.y7_c00121{bottom:1048.230000px;}
.y6_c00121{bottom:1079.280000px;}
.y5_c00121{bottom:1110.330000px;}
.y4_c00121{bottom:1131.030000px;}
.y3_c00121{bottom:1150.915500px;}
.y2_c00121{bottom:1166.400000px;}
.y1_c00121{bottom:1197.450000px;}
.h5_c00121{height:34.470000px;}
.h2_c00121{height:52.998047px;}
.h8_c00121{height:59.004492px;}
.h9_c00121{height:59.021772px;}
.h6_c00121{height:60.589687px;}
.h3_c00121{height:70.664062px;}
.h4_c00121{height:72.562500px;}
.h7_c00121{height:103.500000px;}
.h0_c00121{height:1262.880000px;}
.h1_c00121{height:1263.000000px;}
.w2_c00121{width:132.120000px;}
.w3_c00121{width:243.180000px;}
.w4_c00121{width:245.430000px;}
.w5_c00121{width:893.031000px;}
.w0_c00121{width:893.070000px;}
.w1_c00121{width:893.250000px;}
.x0_c00121{left:0.000000px;}
.xb_c00121{left:6.930000px;}
.x9_c00121{left:14.940000px;}
.x5_c00121{left:17.460000px;}
.x7_c00121{left:42.210000px;}
.xa_c00121{left:69.390000px;}
.xd_c00121{left:77.580000px;}
.x2_c00121{left:127.620000px;}
.x4_c00121{left:128.700000px;}
.xf_c00121{left:151.560000px;}
.x10_c00121{left:179.730000px;}
.x3_c00121{left:211.050000px;}
.x6_c00121{left:263.070000px;}
.xc_c00121{left:270.000000px;}
.x1_c00121{left:446.580000px;}
.x8_c00121{left:508.500000px;}
.xe_c00121{left:515.430000px;}
.x11_c00121{left:696.330000px;}
.x12_c00121{left:981.540000px;}
@media print{
.v1_c00121{vertical-align:-55.056000pt;}
.v0_c00121{vertical-align:0.000000pt;}
.ls12_c00121{letter-spacing:-0.587840pt;}
.lsd_c00121{letter-spacing:-0.427520pt;}
.ls10_c00121{letter-spacing:-0.374080pt;}
.ls11_c00121{letter-spacing:-0.320640pt;}
.ls9_c00121{letter-spacing:-0.256000pt;}
.lsc_c00121{letter-spacing:-0.106880pt;}
.lsa_c00121{letter-spacing:-0.064000pt;}
.lsb_c00121{letter-spacing:-0.053440pt;}
.ls7_c00121{letter-spacing:0.000000pt;}
.ls4_c00121{letter-spacing:0.047360pt;}
.lsf_c00121{letter-spacing:0.053440pt;}
.ls2_c00121{letter-spacing:0.064000pt;}
.ls8_c00121{letter-spacing:0.128000pt;}
.lse_c00121{letter-spacing:0.160320pt;}
.ls1_c00121{letter-spacing:2.560000pt;}
.ls3_c00121{letter-spacing:4.480000pt;}
.ls5_c00121{letter-spacing:12.880000pt;}
.ls6_c00121{letter-spacing:22.177600pt;}
.ls0_c00121{letter-spacing:284.016000pt;}
.ws1_c00121{word-spacing:-16.128000pt;}
.ws0_c00121{word-spacing:-16.064000pt;}
.ws2_c00121{word-spacing:-15.744000pt;}
.ws6_c00121{word-spacing:-13.520320pt;}
.ws5_c00121{word-spacing:-13.413440pt;}
.ws7_c00121{word-spacing:-13.360000pt;}
.ws3_c00121{word-spacing:-13.306560pt;}
.ws9_c00121{word-spacing:-13.253120pt;}
.ws8_c00121{word-spacing:-13.039360pt;}
.ws4_c00121{word-spacing:-12.932480pt;}
.ws16_c00121{word-spacing:-0.384000pt;}
.ws32_c00121{word-spacing:-0.160320pt;}
.wsb_c00121{word-spacing:-0.144000pt;}
.ws10_c00121{word-spacing:-0.128000pt;}
.ws23_c00121{word-spacing:-0.106880pt;}
.wsf_c00121{word-spacing:-0.064000pt;}
.ws2d_c00121{word-spacing:-0.053440pt;}
.wsa_c00121{word-spacing:0.000000pt;}
.ws22_c00121{word-spacing:0.053440pt;}
.ws20_c00121{word-spacing:0.064000pt;}
.ws24_c00121{word-spacing:0.160320pt;}
.ws21_c00121{word-spacing:0.213760pt;}
.wsc_c00121{word-spacing:0.256000pt;}
.ws12_c00121{word-spacing:0.320000pt;}
.ws31_c00121{word-spacing:0.374080pt;}
.ws2c_c00121{word-spacing:0.427520pt;}
.ws3a_c00121{word-spacing:0.587840pt;}
.ws1a_c00121{word-spacing:0.640000pt;}
.ws33_c00121{word-spacing:1.816960pt;}
.wse_c00121{word-spacing:1.920000pt;}
.wsd_c00121{word-spacing:2.240000pt;}
.ws34_c00121{word-spacing:2.404800pt;}
.ws18_c00121{word-spacing:2.496000pt;}
.ws17_c00121{word-spacing:2.560000pt;}
.ws15_c00121{word-spacing:3.136000pt;}
.ws14_c00121{word-spacing:3.200000pt;}
.ws1d_c00121{word-spacing:4.032000pt;}
.ws1c_c00121{word-spacing:4.416000pt;}
.ws1b_c00121{word-spacing:4.480000pt;}
.ws27_c00121{word-spacing:4.595840pt;}
.ws1e_c00121{word-spacing:6.336000pt;}
.ws1f_c00121{word-spacing:6.400000pt;}
.ws38_c00121{word-spacing:6.626560pt;}
.ws39_c00121{word-spacing:10.046720pt;}
.ws29_c00121{word-spacing:11.649920pt;}
.ws2a_c00121{word-spacing:12.611840pt;}
.ws2b_c00121{word-spacing:13.253120pt;}
.ws35_c00121{word-spacing:14.001280pt;}
.ws36_c00121{word-spacing:14.535680pt;}
.ws19_c00121{word-spacing:17.280000pt;}
.ws11_c00121{word-spacing:20.736000pt;}
.ws30_c00121{word-spacing:22.284480pt;}
.ws2e_c00121{word-spacing:22.551680pt;}
.ws13_c00121{word-spacing:23.936000pt;}
.ws2f_c00121{word-spacing:25.437440pt;}
.ws25_c00121{word-spacing:29.872960pt;}
.ws28_c00121{word-spacing:32.865600pt;}
.ws26_c00121{word-spacing:51.783360pt;}
.ws37_c00121{word-spacing:65.089920pt;}
._0_c00121{margin-left:-0.896000pt;}
._3_c00121{width:0.966400pt;}
._2_c00121{width:1.984000pt;}
._1_c00121{width:4.416000pt;}
._4_c00121{width:29.846080pt;}
.fs0_c00121{font-size:48.000000pt;}
.fs2_c00121{font-size:53.440000pt;}
.fs1_c00121{font-size:64.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y1c_c00121{bottom:2.880000pt;}
.y25_c00121{bottom:3.040000pt;}
.y27_c00121{bottom:3.120000pt;}
.y1b_c00121{bottom:18.240000pt;}
.y24_c00121{bottom:18.400000pt;}
.y22_c00121{bottom:33.760000pt;}
.y2c_c00121{bottom:49.040000pt;}
.y2f_c00121{bottom:50.880000pt;}
.y20_c00121{bottom:64.400000pt;}
.y1e_c00121{bottom:79.600000pt;}
.y1f_c00121{bottom:79.760000pt;}
.y2e_c00121{bottom:167.120000pt;}
.y28_c00121{bottom:180.720000pt;}
.y2d_c00121{bottom:199.120000pt;}
.y2a_c00121{bottom:214.476160pt;}
.y29_c00121{bottom:229.760000pt;}
.y2b_c00121{bottom:245.120000pt;}
.y26_c00121{bottom:273.360000pt;}
.y1d_c00121{bottom:304.720000pt;}
.y23_c00121{bottom:323.120000pt;}
.y21_c00121{bottom:353.760000pt;}
.y1a_c00121{bottom:398.720000pt;}
.y19_c00121{bottom:434.880000pt;}
.y18_c00121{bottom:462.640000pt;}
.y17_c00121{bottom:490.240000pt;}
.y16_c00121{bottom:517.840000pt;}
.y15_c00121{bottom:545.440000pt;}
.y14_c00121{bottom:573.040000pt;}
.y13_c00121{bottom:600.640000pt;}
.y12_c00121{bottom:628.240000pt;}
.y11_c00121{bottom:655.840000pt;}
.y10_c00121{bottom:683.440000pt;}
.yf_c00121{bottom:711.040000pt;}
.ye_c00121{bottom:738.640000pt;}
.yd_c00121{bottom:766.160000pt;}
.yc_c00121{bottom:793.760000pt;}
.yb_c00121{bottom:821.360000pt;}
.ya_c00121{bottom:848.960000pt;}
.y9_c00121{bottom:876.560000pt;}
.y8_c00121{bottom:904.160000pt;}
.y7_c00121{bottom:931.760000pt;}
.y6_c00121{bottom:959.360000pt;}
.y5_c00121{bottom:986.960000pt;}
.y4_c00121{bottom:1005.360000pt;}
.y3_c00121{bottom:1023.036000pt;}
.y2_c00121{bottom:1036.800000pt;}
.y1_c00121{bottom:1064.400000pt;}
.h5_c00121{height:30.640000pt;}
.h2_c00121{height:47.109375pt;}
.h8_c00121{height:52.448437pt;}
.h9_c00121{height:52.463798pt;}
.h6_c00121{height:53.857500pt;}
.h3_c00121{height:62.812500pt;}
.h4_c00121{height:64.500000pt;}
.h7_c00121{height:92.000000pt;}
.h0_c00121{height:1122.560000pt;}
.h1_c00121{height:1122.666667pt;}
.w2_c00121{width:117.440000pt;}
.w3_c00121{width:216.160000pt;}
.w4_c00121{width:218.160000pt;}
.w5_c00121{width:793.805333pt;}
.w0_c00121{width:793.840000pt;}
.w1_c00121{width:794.000000pt;}
.x0_c00121{left:0.000000pt;}
.xb_c00121{left:6.160000pt;}
.x9_c00121{left:13.280000pt;}
.x5_c00121{left:15.520000pt;}
.x7_c00121{left:37.520000pt;}
.xa_c00121{left:61.680000pt;}
.xd_c00121{left:68.960000pt;}
.x2_c00121{left:113.440000pt;}
.x4_c00121{left:114.400000pt;}
.xf_c00121{left:134.720000pt;}
.x10_c00121{left:159.760000pt;}
.x3_c00121{left:187.600000pt;}
.x6_c00121{left:233.840000pt;}
.xc_c00121{left:240.000000pt;}
.x1_c00121{left:396.960000pt;}
.x8_c00121{left:452.000000pt;}
.xe_c00121{left:458.160000pt;}
.x11_c00121{left:618.960000pt;}
.x12_c00121{left:872.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_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_e728e192bbc1495ae22aea2d.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_3921abb7975d155b067e9e5d.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00122{vertical-align:-82.800000px;}
.v0_c00122{vertical-align:0.000000px;}
.lsc_c00122{letter-spacing:-0.420840px;}
.lsd_c00122{letter-spacing:-0.360720px;}
.lsb_c00122{letter-spacing:-0.180360px;}
.lsa_c00122{letter-spacing:-0.120240px;}
.ls7_c00122{letter-spacing:-0.108000px;}
.ls9_c00122{letter-spacing:-0.060120px;}
.ls6_c00122{letter-spacing:0.000000px;}
.ls1_c00122{letter-spacing:0.053280px;}
.ls8_c00122{letter-spacing:0.120240px;}
.ls2_c00122{letter-spacing:0.180360px;}
.ls4_c00122{letter-spacing:5.130000px;}
.ls3_c00122{letter-spacing:8.717400px;}
.ls5_c00122{letter-spacing:19.539000px;}
.ls0_c00122{letter-spacing:2533.680000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00122{word-spacing:-15.210360px;}
.ws0_c00122{word-spacing:-15.150240px;}
.ws2_c00122{word-spacing:-15.030000px;}
.ws6_c00122{word-spacing:-14.969880px;}
.ws4_c00122{word-spacing:-14.909760px;}
.ws3_c00122{word-spacing:-14.669280px;}
.ws5_c00122{word-spacing:-14.609160px;}
.ws41_c00122{word-spacing:-0.180360px;}
.ws1a_c00122{word-spacing:-0.060120px;}
.ws7_c00122{word-spacing:0.000000px;}
.wsd_c00122{word-spacing:0.060120px;}
.ws17_c00122{word-spacing:0.120240px;}
.ws9_c00122{word-spacing:0.162000px;}
.ws43_c00122{word-spacing:0.180360px;}
.ws64_c00122{word-spacing:0.240480px;}
.ws8_c00122{word-spacing:0.270000px;}
.ws20_c00122{word-spacing:0.420840px;}
.ws2e_c00122{word-spacing:1.082160px;}
.ws2d_c00122{word-spacing:1.262520px;}
.ws37_c00122{word-spacing:2.044080px;}
.ws18_c00122{word-spacing:2.284560px;}
.ws4c_c00122{word-spacing:3.366720px;}
.ws27_c00122{word-spacing:3.907800px;}
.ws24_c00122{word-spacing:4.088160px;}
.ws4d_c00122{word-spacing:4.569120px;}
.ws55_c00122{word-spacing:4.869720px;}
.wse_c00122{word-spacing:5.170320px;}
.ws30_c00122{word-spacing:5.230440px;}
.ws56_c00122{word-spacing:5.651280px;}
.ws3e_c00122{word-spacing:7.334640px;}
.ws31_c00122{word-spacing:7.454880px;}
.ws5d_c00122{word-spacing:7.695360px;}
.ws2c_c00122{word-spacing:7.815600px;}
.ws1f_c00122{word-spacing:8.537040px;}
.ws1e_c00122{word-spacing:8.777520px;}
.ws28_c00122{word-spacing:8.897760px;}
.ws21_c00122{word-spacing:9.138240px;}
.ws1d_c00122{word-spacing:9.258480px;}
.ws40_c00122{word-spacing:9.498960px;}
.ws38_c00122{word-spacing:9.979920px;}
.ws63_c00122{word-spacing:11.663280px;}
.wsc_c00122{word-spacing:12.384720px;}
.ws4f_c00122{word-spacing:13.106160px;}
.ws33_c00122{word-spacing:13.587120px;}
.ws1c_c00122{word-spacing:13.947840px;}
.ws1b_c00122{word-spacing:14.188320px;}
.ws54_c00122{word-spacing:14.669280px;}
.ws15_c00122{word-spacing:14.909760px;}
.ws44_c00122{word-spacing:15.631200px;}
.ws29_c00122{word-spacing:15.991920px;}
.ws3c_c00122{word-spacing:16.112160px;}
.ws58_c00122{word-spacing:16.472880px;}
.ws5e_c00122{word-spacing:17.855640px;}
.ws13_c00122{word-spacing:18.156240px;}
.ws47_c00122{word-spacing:18.516960px;}
.ws12_c00122{word-spacing:18.577080px;}
.wsf_c00122{word-spacing:18.997920px;}
.ws42_c00122{word-spacing:19.659240px;}
.ws50_c00122{word-spacing:20.801520px;}
.ws52_c00122{word-spacing:21.402720px;}
.ws22_c00122{word-spacing:21.522960px;}
.ws57_c00122{word-spacing:22.605120px;}
.ws25_c00122{word-spacing:22.845600px;}
.ws62_c00122{word-spacing:24.769440px;}
.ws46_c00122{word-spacing:25.490880px;}
.ws11_c00122{word-spacing:26.813520px;}
.ws51_c00122{word-spacing:28.256400px;}
.ws4b_c00122{word-spacing:28.617120px;}
.ws53_c00122{word-spacing:29.458800px;}
.ws35_c00122{word-spacing:32.524920px;}
.ws3d_c00122{word-spacing:32.885640px;}
.ws5a_c00122{word-spacing:33.607080px;}
.ws59_c00122{word-spacing:33.967800px;}
.wsb_c00122{word-spacing:34.689240px;}
.ws61_c00122{word-spacing:35.951760px;}
.ws3f_c00122{word-spacing:37.935720px;}
.ws19_c00122{word-spacing:39.017880px;}
.ws2f_c00122{word-spacing:40.460760px;}
.ws5b_c00122{word-spacing:41.302440px;}
.ws2b_c00122{word-spacing:43.045920px;}
.ws36_c00122{word-spacing:43.346520px;}
.ws39_c00122{word-spacing:44.789400px;}
.ws10_c00122{word-spacing:45.871560px;}
.ws4e_c00122{word-spacing:46.593000px;}
.ws34_c00122{word-spacing:47.314440px;}
.ws5f_c00122{word-spacing:47.434680px;}
.ws45_c00122{word-spacing:47.675160px;}
.ws32_c00122{word-spacing:49.478760px;}
.ws48_c00122{word-spacing:49.538880px;}
.wsa_c00122{word-spacing:49.839480px;}
.ws5c_c00122{word-spacing:49.899600px;}
.ws14_c00122{word-spacing:54.889560px;}
.ws3a_c00122{word-spacing:56.332440px;}
.ws49_c00122{word-spacing:57.053880px;}
.ws60_c00122{word-spacing:64.208160px;}
.ws4a_c00122{word-spacing:64.629000px;}
.ws23_c00122{word-spacing:73.707120px;}
.ws3b_c00122{word-spacing:75.871440px;}
.ws16_c00122{word-spacing:81.282240px;}
.ws2a_c00122{word-spacing:94.208040px;}
.ws26_c00122{word-spacing:411.341040px;}
._1_c00122{margin-left:-1.058400px;}
._0_c00122{width:1.220400px;}
._2_c00122{width:5.531040px;}
._3_c00122{width:9.138240px;}
._5_c00122{width:19.371240px;}
._4_c00122{width:21.703320px;}
.fc1_c00122{color:transparent;}
.fc0_c00122{color:rgb(0,0,0);}
.fs0_c00122{font-size:54.000000px;}
.fs2_c00122{font-size:60.120000px;}
.fs1_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y31_c00122{bottom:3.420000px;}
.y17_c00122{bottom:3.509850px;}
.y3c_c00122{bottom:20.700000px;}
.y2f_c00122{bottom:37.980000px;}
.y2e_c00122{bottom:55.170000px;}
.y45_c00122{bottom:57.240000px;}
.y2d_c00122{bottom:72.450000px;}
.y12_c00122{bottom:89.730000px;}
.y29_c00122{bottom:106.920000px;}
.y11_c00122{bottom:107.010000px;}
.y10_c00122{bottom:124.200000px;}
.ye_c00122{bottom:141.480000px;}
.y26_c00122{bottom:158.670000px;}
.yd_c00122{bottom:158.760000px;}
.y25_c00122{bottom:175.949850px;}
.yc_c00122{bottom:175.950000px;}
.y1a_c00122{bottom:193.230000px;}
.y24_c00122{bottom:210.420000px;}
.ya_c00122{bottom:210.510000px;}
.y44_c00122{bottom:226.260000px;}
.y23_c00122{bottom:227.699850px;}
.y9_c00122{bottom:227.700000px;}
.y1f_c00122{bottom:241.560000px;}
.y7_c00122{bottom:244.800000px;}
.y8_c00122{bottom:244.980000px;}
.y40_c00122{bottom:262.170000px;}
.y36_c00122{bottom:279.450000px;}
.y3e_c00122{bottom:296.640000px;}
.y43_c00122{bottom:296.730000px;}
.y34_c00122{bottom:313.920000px;}
.y3b_c00122{bottom:314.005500px;}
.y33_c00122{bottom:331.200000px;}
.y3a_c00122{bottom:331.290000px;}
.y32_c00122{bottom:348.390000px;}
.y39_c00122{bottom:365.760000px;}
.y42_c00122{bottom:383.040000px;}
.y41_c00122{bottom:451.980000px;}
.y38_c00122{bottom:486.535680px;}
.y37_c00122{bottom:503.730000px;}
.y3f_c00122{bottom:521.010000px;}
.y35_c00122{bottom:538.200000px;}
.y3d_c00122{bottom:572.760000px;}
.y20_c00122{bottom:590.490000px;}
.y22_c00122{bottom:604.530000px;}
.y30_c00122{bottom:625.230000px;}
.y2a_c00122{bottom:694.260000px;}
.y28_c00122{bottom:711.445500px;}
.y27_c00122{bottom:728.730000px;}
.y2c_c00122{bottom:763.200000px;}
.y21_c00122{bottom:814.770000px;}
.y2b_c00122{bottom:814.950000px;}
.y6_c00122{bottom:846.720000px;}
.y16_c00122{bottom:867.406680px;}
.y15_c00122{bottom:884.691180px;}
.y14_c00122{bottom:901.975680px;}
.y1e_c00122{bottom:919.165500px;}
.y13_c00122{bottom:919.170000px;}
.y1d_c00122{bottom:936.450000px;}
.yf_c00122{bottom:970.920000px;}
.y1c_c00122{bottom:988.200000px;}
.y1b_c00122{bottom:1022.670000px;}
.y19_c00122{bottom:1039.945500px;}
.yb_c00122{bottom:1039.950000px;}
.y18_c00122{bottom:1057.230000px;}
.y5_c00122{bottom:1131.030000px;}
.y4_c00122{bottom:1150.920000px;}
.y3_c00122{bottom:1166.404500px;}
.y2_c00122{bottom:1181.970000px;}
.y1_c00122{bottom:1197.450000px;}
.h3_c00122{height:52.971680px;}
.h2_c00122{height:52.998047px;}
.h7_c00122{height:59.004492px;}
.hb_c00122{height:59.021772px;}
.h6_c00122{height:60.589687px;}
.h4_c00122{height:70.664062px;}
.h9_c00122{height:241.470000px;}
.h5_c00122{height:258.750000px;}
.ha_c00122{height:362.160000px;}
.h8_c00122{height:604.441500px;}
.h0_c00122{height:1262.880000px;}
.h1_c00122{height:1263.000000px;}
.w2_c00122{width:132.120000px;}
.w5_c00122{width:242.640000px;}
.w3_c00122{width:243.180000px;}
.w4_c00122{width:245.430000px;}
.w6_c00122{width:246.058500px;}
.w7_c00122{width:893.031000px;}
.w0_c00122{width:893.070000px;}
.w1_c00122{width:893.250000px;}
.x0_c00122{left:0.000000px;}
.x5_c00122{left:6.930000px;}
.xe_c00122{left:14.490000px;}
.xf_c00122{left:18.540000px;}
.x10_c00122{left:26.100000px;}
.xc_c00122{left:33.570000px;}
.x11_c00122{left:52.830000px;}
.x8_c00122{left:64.530000px;}
.xb_c00122{left:82.170000px;}
.x3_c00122{left:127.620000px;}
.x4_c00122{left:128.700000px;}
.xd_c00122{left:135.630000px;}
.x12_c00122{left:180.360000px;}
.x6_c00122{left:263.070000px;}
.x7_c00122{left:270.000000px;}
.x2_c00122{left:425.160000px;}
.x1_c00122{left:446.580000px;}
.x9_c00122{left:508.500000px;}
.xa_c00122{left:515.430000px;}
.x13_c00122{left:696.330000px;}
.x15_c00122{left:747.540000px;}
.x14_c00122{left:981.540000px;}
@media print{
.v1_c00122{vertical-align:-73.600000pt;}
.v0_c00122{vertical-align:0.000000pt;}
.lsc_c00122{letter-spacing:-0.374080pt;}
.lsd_c00122{letter-spacing:-0.320640pt;}
.lsb_c00122{letter-spacing:-0.160320pt;}
.lsa_c00122{letter-spacing:-0.106880pt;}
.ls7_c00122{letter-spacing:-0.096000pt;}
.ls9_c00122{letter-spacing:-0.053440pt;}
.ls6_c00122{letter-spacing:0.000000pt;}
.ls1_c00122{letter-spacing:0.047360pt;}
.ls8_c00122{letter-spacing:0.106880pt;}
.ls2_c00122{letter-spacing:0.160320pt;}
.ls4_c00122{letter-spacing:4.560000pt;}
.ls3_c00122{letter-spacing:7.748800pt;}
.ls5_c00122{letter-spacing:17.368000pt;}
.ls0_c00122{letter-spacing:2252.160000pt;}
.ws1_c00122{word-spacing:-13.520320pt;}
.ws0_c00122{word-spacing:-13.466880pt;}
.ws2_c00122{word-spacing:-13.360000pt;}
.ws6_c00122{word-spacing:-13.306560pt;}
.ws4_c00122{word-spacing:-13.253120pt;}
.ws3_c00122{word-spacing:-13.039360pt;}
.ws5_c00122{word-spacing:-12.985920pt;}
.ws41_c00122{word-spacing:-0.160320pt;}
.ws1a_c00122{word-spacing:-0.053440pt;}
.ws7_c00122{word-spacing:0.000000pt;}
.wsd_c00122{word-spacing:0.053440pt;}
.ws17_c00122{word-spacing:0.106880pt;}
.ws9_c00122{word-spacing:0.144000pt;}
.ws43_c00122{word-spacing:0.160320pt;}
.ws64_c00122{word-spacing:0.213760pt;}
.ws8_c00122{word-spacing:0.240000pt;}
.ws20_c00122{word-spacing:0.374080pt;}
.ws2e_c00122{word-spacing:0.961920pt;}
.ws2d_c00122{word-spacing:1.122240pt;}
.ws37_c00122{word-spacing:1.816960pt;}
.ws18_c00122{word-spacing:2.030720pt;}
.ws4c_c00122{word-spacing:2.992640pt;}
.ws27_c00122{word-spacing:3.473600pt;}
.ws24_c00122{word-spacing:3.633920pt;}
.ws4d_c00122{word-spacing:4.061440pt;}
.ws55_c00122{word-spacing:4.328640pt;}
.wse_c00122{word-spacing:4.595840pt;}
.ws30_c00122{word-spacing:4.649280pt;}
.ws56_c00122{word-spacing:5.023360pt;}
.ws3e_c00122{word-spacing:6.519680pt;}
.ws31_c00122{word-spacing:6.626560pt;}
.ws5d_c00122{word-spacing:6.840320pt;}
.ws2c_c00122{word-spacing:6.947200pt;}
.ws1f_c00122{word-spacing:7.588480pt;}
.ws1e_c00122{word-spacing:7.802240pt;}
.ws28_c00122{word-spacing:7.909120pt;}
.ws21_c00122{word-spacing:8.122880pt;}
.ws1d_c00122{word-spacing:8.229760pt;}
.ws40_c00122{word-spacing:8.443520pt;}
.ws38_c00122{word-spacing:8.871040pt;}
.ws63_c00122{word-spacing:10.367360pt;}
.wsc_c00122{word-spacing:11.008640pt;}
.ws4f_c00122{word-spacing:11.649920pt;}
.ws33_c00122{word-spacing:12.077440pt;}
.ws1c_c00122{word-spacing:12.398080pt;}
.ws1b_c00122{word-spacing:12.611840pt;}
.ws54_c00122{word-spacing:13.039360pt;}
.ws15_c00122{word-spacing:13.253120pt;}
.ws44_c00122{word-spacing:13.894400pt;}
.ws29_c00122{word-spacing:14.215040pt;}
.ws3c_c00122{word-spacing:14.321920pt;}
.ws58_c00122{word-spacing:14.642560pt;}
.ws5e_c00122{word-spacing:15.871680pt;}
.ws13_c00122{word-spacing:16.138880pt;}
.ws47_c00122{word-spacing:16.459520pt;}
.ws12_c00122{word-spacing:16.512960pt;}
.wsf_c00122{word-spacing:16.887040pt;}
.ws42_c00122{word-spacing:17.474880pt;}
.ws50_c00122{word-spacing:18.490240pt;}
.ws52_c00122{word-spacing:19.024640pt;}
.ws22_c00122{word-spacing:19.131520pt;}
.ws57_c00122{word-spacing:20.093440pt;}
.ws25_c00122{word-spacing:20.307200pt;}
.ws62_c00122{word-spacing:22.017280pt;}
.ws46_c00122{word-spacing:22.658560pt;}
.ws11_c00122{word-spacing:23.834240pt;}
.ws51_c00122{word-spacing:25.116800pt;}
.ws4b_c00122{word-spacing:25.437440pt;}
.ws53_c00122{word-spacing:26.185600pt;}
.ws35_c00122{word-spacing:28.911040pt;}
.ws3d_c00122{word-spacing:29.231680pt;}
.ws5a_c00122{word-spacing:29.872960pt;}
.ws59_c00122{word-spacing:30.193600pt;}
.wsb_c00122{word-spacing:30.834880pt;}
.ws61_c00122{word-spacing:31.957120pt;}
.ws3f_c00122{word-spacing:33.720640pt;}
.ws19_c00122{word-spacing:34.682560pt;}
.ws2f_c00122{word-spacing:35.965120pt;}
.ws5b_c00122{word-spacing:36.713280pt;}
.ws2b_c00122{word-spacing:38.263040pt;}
.ws36_c00122{word-spacing:38.530240pt;}
.ws39_c00122{word-spacing:39.812800pt;}
.ws10_c00122{word-spacing:40.774720pt;}
.ws4e_c00122{word-spacing:41.416000pt;}
.ws34_c00122{word-spacing:42.057280pt;}
.ws5f_c00122{word-spacing:42.164160pt;}
.ws45_c00122{word-spacing:42.377920pt;}
.ws32_c00122{word-spacing:43.981120pt;}
.ws48_c00122{word-spacing:44.034560pt;}
.wsa_c00122{word-spacing:44.301760pt;}
.ws5c_c00122{word-spacing:44.355200pt;}
.ws14_c00122{word-spacing:48.790720pt;}
.ws3a_c00122{word-spacing:50.073280pt;}
.ws49_c00122{word-spacing:50.714560pt;}
.ws60_c00122{word-spacing:57.073920pt;}
.ws4a_c00122{word-spacing:57.448000pt;}
.ws23_c00122{word-spacing:65.517440pt;}
.ws3b_c00122{word-spacing:67.441280pt;}
.ws16_c00122{word-spacing:72.250880pt;}
.ws2a_c00122{word-spacing:83.740480pt;}
.ws26_c00122{word-spacing:365.636480pt;}
._1_c00122{margin-left:-0.940800pt;}
._0_c00122{width:1.084800pt;}
._2_c00122{width:4.916480pt;}
._3_c00122{width:8.122880pt;}
._5_c00122{width:17.218880pt;}
._4_c00122{width:19.291840pt;}
.fs0_c00122{font-size:48.000000pt;}
.fs2_c00122{font-size:53.440000pt;}
.fs1_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y31_c00122{bottom:3.040000pt;}
.y17_c00122{bottom:3.119867pt;}
.y3c_c00122{bottom:18.400000pt;}
.y2f_c00122{bottom:33.760000pt;}
.y2e_c00122{bottom:49.040000pt;}
.y45_c00122{bottom:50.880000pt;}
.y2d_c00122{bottom:64.400000pt;}
.y12_c00122{bottom:79.760000pt;}
.y29_c00122{bottom:95.040000pt;}
.y11_c00122{bottom:95.120000pt;}
.y10_c00122{bottom:110.400000pt;}
.ye_c00122{bottom:125.760000pt;}
.y26_c00122{bottom:141.040000pt;}
.yd_c00122{bottom:141.120000pt;}
.y25_c00122{bottom:156.399867pt;}
.yc_c00122{bottom:156.400000pt;}
.y1a_c00122{bottom:171.760000pt;}
.y24_c00122{bottom:187.040000pt;}
.ya_c00122{bottom:187.120000pt;}
.y44_c00122{bottom:201.120000pt;}
.y23_c00122{bottom:202.399867pt;}
.y9_c00122{bottom:202.400000pt;}
.y1f_c00122{bottom:214.720000pt;}
.y7_c00122{bottom:217.600000pt;}
.y8_c00122{bottom:217.760000pt;}
.y40_c00122{bottom:233.040000pt;}
.y36_c00122{bottom:248.400000pt;}
.y3e_c00122{bottom:263.680000pt;}
.y43_c00122{bottom:263.760000pt;}
.y34_c00122{bottom:279.040000pt;}
.y3b_c00122{bottom:279.116000pt;}
.y33_c00122{bottom:294.400000pt;}
.y3a_c00122{bottom:294.480000pt;}
.y32_c00122{bottom:309.680000pt;}
.y39_c00122{bottom:325.120000pt;}
.y42_c00122{bottom:340.480000pt;}
.y41_c00122{bottom:401.760000pt;}
.y38_c00122{bottom:432.476160pt;}
.y37_c00122{bottom:447.760000pt;}
.y3f_c00122{bottom:463.120000pt;}
.y35_c00122{bottom:478.400000pt;}
.y3d_c00122{bottom:509.120000pt;}
.y20_c00122{bottom:524.880000pt;}
.y22_c00122{bottom:537.360000pt;}
.y30_c00122{bottom:555.760000pt;}
.y2a_c00122{bottom:617.120000pt;}
.y28_c00122{bottom:632.396000pt;}
.y27_c00122{bottom:647.760000pt;}
.y2c_c00122{bottom:678.400000pt;}
.y21_c00122{bottom:724.240000pt;}
.y2b_c00122{bottom:724.400000pt;}
.y6_c00122{bottom:752.640000pt;}
.y16_c00122{bottom:771.028160pt;}
.y15_c00122{bottom:786.392160pt;}
.y14_c00122{bottom:801.756160pt;}
.y1e_c00122{bottom:817.036000pt;}
.y13_c00122{bottom:817.040000pt;}
.y1d_c00122{bottom:832.400000pt;}
.yf_c00122{bottom:863.040000pt;}
.y1c_c00122{bottom:878.400000pt;}
.y1b_c00122{bottom:909.040000pt;}
.y19_c00122{bottom:924.396000pt;}
.yb_c00122{bottom:924.400000pt;}
.y18_c00122{bottom:939.760000pt;}
.y5_c00122{bottom:1005.360000pt;}
.y4_c00122{bottom:1023.040000pt;}
.y3_c00122{bottom:1036.804000pt;}
.y2_c00122{bottom:1050.640000pt;}
.y1_c00122{bottom:1064.400000pt;}
.h3_c00122{height:47.085938pt;}
.h2_c00122{height:47.109375pt;}
.h7_c00122{height:52.448437pt;}
.hb_c00122{height:52.463798pt;}
.h6_c00122{height:53.857500pt;}
.h4_c00122{height:62.812500pt;}
.h9_c00122{height:214.640000pt;}
.h5_c00122{height:230.000000pt;}
.ha_c00122{height:321.920000pt;}
.h8_c00122{height:537.281333pt;}
.h0_c00122{height:1122.560000pt;}
.h1_c00122{height:1122.666667pt;}
.w2_c00122{width:117.440000pt;}
.w5_c00122{width:215.680000pt;}
.w3_c00122{width:216.160000pt;}
.w4_c00122{width:218.160000pt;}
.w6_c00122{width:218.718667pt;}
.w7_c00122{width:793.805333pt;}
.w0_c00122{width:793.840000pt;}
.w1_c00122{width:794.000000pt;}
.x0_c00122{left:0.000000pt;}
.x5_c00122{left:6.160000pt;}
.xe_c00122{left:12.880000pt;}
.xf_c00122{left:16.480000pt;}
.x10_c00122{left:23.200000pt;}
.xc_c00122{left:29.840000pt;}
.x11_c00122{left:46.960000pt;}
.x8_c00122{left:57.360000pt;}
.xb_c00122{left:73.040000pt;}
.x3_c00122{left:113.440000pt;}
.x4_c00122{left:114.400000pt;}
.xd_c00122{left:120.560000pt;}
.x12_c00122{left:160.320000pt;}
.x6_c00122{left:233.840000pt;}
.x7_c00122{left:240.000000pt;}
.x2_c00122{left:377.920000pt;}
.x1_c00122{left:396.960000pt;}
.x9_c00122{left:452.000000pt;}
.xa_c00122{left:458.160000pt;}
.x13_c00122{left:618.960000pt;}
.x15_c00122{left:664.480000pt;}
.x14_c00122{left:872.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_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_4eaa8caedba2487409eadffe.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_f716c279af43530606281109.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00123;src:url('chunks/assets/font_f0ba194ec99b4e1a7d0cfb29.woff2')format("woff");}.ff4_c00123{font-family:ff4_c00123;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:ff5_c00123;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00123{font-family:ff5_c00123;line-height:1.432129;font-style: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);}
.v1_c00123{vertical-align:-61.938000px;}
.v0_c00123{vertical-align:0.000000px;}
.ls19_c00123{letter-spacing:-0.576000px;}
.ls12_c00123{letter-spacing:-0.541080px;}
.ls14_c00123{letter-spacing:-0.480960px;}
.ls16_c00123{letter-spacing:-0.360720px;}
.ls18_c00123{letter-spacing:-0.360000px;}
.ls17_c00123{letter-spacing:-0.288000px;}
.ls13_c00123{letter-spacing:-0.180360px;}
.ls10_c00123{letter-spacing:-0.120240px;}
.ls1b_c00123{letter-spacing:-0.072000px;}
.ls11_c00123{letter-spacing:-0.060120px;}
.lsf_c00123{letter-spacing:0.000000px;}
.ls15_c00123{letter-spacing:0.060120px;}
.lsb_c00123{letter-spacing:0.072000px;}
.ls5_c00123{letter-spacing:0.120240px;}
.ls1a_c00123{letter-spacing:0.144000px;}
.ls3_c00123{letter-spacing:0.180360px;}
.ls7_c00123{letter-spacing:2.160000px;}
.ls6_c00123{letter-spacing:2.520000px;}
.ls4_c00123{letter-spacing:4.749480px;}
.lse_c00123{letter-spacing:5.400000px;}
.ls9_c00123{letter-spacing:8.280000px;}
.lsd_c00123{letter-spacing:10.800000px;}
.lsc_c00123{letter-spacing:30.744000px;}
.lsa_c00123{letter-spacing:32.760000px;}
.ls8_c00123{letter-spacing:34.920000px;}
.ls2_c00123{letter-spacing:36.793440px;}
.ls1_c00123{letter-spacing:44.729280px;}
.ls0_c00123{letter-spacing:319.518000px;}
.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;}
}
.wsb_c00123{word-spacing:-18.144000px;}
.ws7_c00123{word-spacing:-18.072000px;}
.ws9_c00123{word-spacing:-18.000000px;}
.ws8_c00123{word-spacing:-17.712000px;}
.wsa_c00123{word-spacing:-17.424000px;}
.ws3_c00123{word-spacing:-15.210360px;}
.ws5_c00123{word-spacing:-15.090120px;}
.ws4_c00123{word-spacing:-15.030000px;}
.ws1_c00123{word-spacing:-14.969880px;}
.ws0_c00123{word-spacing:-14.909760px;}
.ws2_c00123{word-spacing:-14.849640px;}
.ws6_c00123{word-spacing:-14.669280px;}
.ws2e_c00123{word-spacing:-0.420840px;}
.ws50_c00123{word-spacing:-0.180360px;}
.wsd_c00123{word-spacing:-0.162000px;}
.ws60_c00123{word-spacing:-0.072000px;}
.ws2c_c00123{word-spacing:-0.060120px;}
.wsc_c00123{word-spacing:0.000000px;}
.ws4a_c00123{word-spacing:0.060120px;}
.ws65_c00123{word-spacing:0.072000px;}
.ws3e_c00123{word-spacing:0.120240px;}
.ws26_c00123{word-spacing:0.180360px;}
.ws2d_c00123{word-spacing:0.240480px;}
.ws2f_c00123{word-spacing:0.300600px;}
.ws5a_c00123{word-spacing:0.360000px;}
.ws47_c00123{word-spacing:0.480960px;}
.ws20_c00123{word-spacing:0.541080px;}
.ws29_c00123{word-spacing:0.901800px;}
.ws4b_c00123{word-spacing:1.262520px;}
.ws1d_c00123{word-spacing:1.322640px;}
.ws14_c00123{word-spacing:2.044080px;}
.ws16_c00123{word-spacing:2.404800px;}
.ws57_c00123{word-spacing:2.448000px;}
.ws4f_c00123{word-spacing:2.464920px;}
.ws58_c00123{word-spacing:2.520000px;}
.ws4e_c00123{word-spacing:2.705400px;}
.ws17_c00123{word-spacing:3.006000px;}
.ws4c_c00123{word-spacing:3.366720px;}
.ws41_c00123{word-spacing:3.486960px;}
.ws4d_c00123{word-spacing:3.787560px;}
.ws53_c00123{word-spacing:4.448880px;}
.ws54_c00123{word-spacing:4.809600px;}
.ws12_c00123{word-spacing:5.290560px;}
.ws64_c00123{word-spacing:5.400000px;}
.ws11_c00123{word-spacing:5.531040px;}
.ws35_c00123{word-spacing:7.334640px;}
.ws38_c00123{word-spacing:7.454880px;}
.ws36_c00123{word-spacing:7.815600px;}
.ws61_c00123{word-spacing:7.920000px;}
.ws3c_c00123{word-spacing:8.056080px;}
.ws5d_c00123{word-spacing:8.208000px;}
.ws5c_c00123{word-spacing:8.280000px;}
.ws10_c00123{word-spacing:8.897760px;}
.ws24_c00123{word-spacing:9.258480px;}
.ws23_c00123{word-spacing:9.498960px;}
.ws25_c00123{word-spacing:9.859680px;}
.ws18_c00123{word-spacing:10.340640px;}
.ws63_c00123{word-spacing:10.728000px;}
.ws62_c00123{word-spacing:10.800000px;}
.ws27_c00123{word-spacing:11.001960px;}
.ws48_c00123{word-spacing:12.024000px;}
.ws3a_c00123{word-spacing:12.504960px;}
.ws28_c00123{word-spacing:12.745440px;}
.ws1e_c00123{word-spacing:13.226400px;}
.ws13_c00123{word-spacing:14.308560px;}
.ws56_c00123{word-spacing:14.909760px;}
.ws42_c00123{word-spacing:15.030000px;}
.ws15_c00123{word-spacing:17.074080px;}
.ws49_c00123{word-spacing:19.659240px;}
.ws39_c00123{word-spacing:20.080080px;}
.wsf_c00123{word-spacing:22.244400px;}
.ws21_c00123{word-spacing:24.408720px;}
.ws45_c00123{word-spacing:25.370640px;}
.ws44_c00123{word-spacing:25.430760px;}
.ws34_c00123{word-spacing:26.092080px;}
.ws46_c00123{word-spacing:27.294480px;}
.ws2b_c00123{word-spacing:27.655200px;}
.wse_c00123{word-spacing:27.955800px;}
.ws32_c00123{word-spacing:28.977840px;}
.ws3f_c00123{word-spacing:29.098080px;}
.ws30_c00123{word-spacing:30.360600px;}
.ws55_c00123{word-spacing:31.563000px;}
.ws5f_c00123{word-spacing:32.688000px;}
.ws5e_c00123{word-spacing:32.760000px;}
.ws33_c00123{word-spacing:32.885640px;}
.ws59_c00123{word-spacing:34.848000px;}
.ws5b_c00123{word-spacing:34.920000px;}
.ws1b_c00123{word-spacing:36.613080px;}
.ws3d_c00123{word-spacing:36.853560px;}
.ws51_c00123{word-spacing:36.973800px;}
.ws19_c00123{word-spacing:37.214280px;}
.ws1a_c00123{word-spacing:37.274400px;}
.ws52_c00123{word-spacing:37.334520px;}
.ws22_c00123{word-spacing:39.859560px;}
.ws43_c00123{word-spacing:42.023880px;}
.ws1f_c00123{word-spacing:44.188200px;}
.ws2a_c00123{word-spacing:44.548920px;}
.ws1c_c00123{word-spacing:49.478760px;}
.ws3b_c00123{word-spacing:49.839480px;}
.ws31_c00123{word-spacing:50.921640px;}
.ws40_c00123{word-spacing:88.135920px;}
.ws37_c00123{word-spacing:91.923480px;}
._2_c00123{margin-left:-1.202400px;}
._0_c00123{width:1.016028px;}
._5_c00123{width:4.755492px;}
._7_c00123{width:8.496000px;}
._1_c00123{width:27.990000px;}
._8_c00123{width:33.048000px;}
._6_c00123{width:35.352000px;}
._4_c00123{width:37.154160px;}
._3_c00123{width:91.683000px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs0_c00123{font-size:54.000000px;}
.fs2_c00123{font-size:60.120000px;}
.fs1_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y1e_c00123{bottom:3.510000px;}
.y1d_c00123{bottom:20.700000px;}
.y1c_c00123{bottom:37.980000px;}
.y3f_c00123{bottom:55.260000px;}
.y4c_c00123{bottom:57.240000px;}
.y33_c00123{bottom:89.730000px;}
.y32_c00123{bottom:106.920000px;}
.y17_c00123{bottom:124.200000px;}
.y4b_c00123{bottom:133.740000px;}
.y16_c00123{bottom:141.480000px;}
.y14_c00123{bottom:158.670000px;}
.y4a_c00123{bottom:164.790000px;}
.y12_c00123{bottom:193.230000px;}
.y49_c00123{bottom:195.840000px;}
.y48_c00123{bottom:226.890000px;}
.y2e_c00123{bottom:227.700000px;}
.y26_c00123{bottom:244.980000px;}
.y47_c00123{bottom:257.940000px;}
.y25_c00123{bottom:262.170000px;}
.y2d_c00123{bottom:279.450000px;}
.y46_c00123{bottom:288.990000px;}
.y29_c00123{bottom:296.550000px;}
.yc_c00123{bottom:296.730000px;}
.yb_c00123{bottom:313.920000px;}
.y45_c00123{bottom:320.040000px;}
.y9_c00123{bottom:348.480000px;}
.y44_c00123{bottom:351.090000px;}
.y1f_c00123{bottom:365.670000px;}
.y43_c00123{bottom:382.140000px;}
.y6_c00123{bottom:382.770000px;}
.y7_c00123{bottom:382.950000px;}
.y42_c00123{bottom:402.210000px;}
.y28_c00123{bottom:418.230000px;}
.y41_c00123{bottom:438.930000px;}
.y40_c00123{bottom:456.210000px;}
.y35_c00123{bottom:473.485680px;}
.y34_c00123{bottom:490.680000px;}
.y3e_c00123{bottom:507.946680px;}
.y3d_c00123{bottom:525.141000px;}
.y3c_c00123{bottom:542.425500px;}
.y3b_c00123{bottom:559.710000px;}
.y3a_c00123{bottom:576.895500px;}
.y31_c00123{bottom:576.900000px;}
.y30_c00123{bottom:594.180000px;}
.y39_c00123{bottom:628.645500px;}
.y2f_c00123{bottom:628.650000px;}
.y38_c00123{bottom:645.930000px;}
.y2c_c00123{bottom:663.021180px;}
.y37_c00123{bottom:663.210000px;}
.y2b_c00123{bottom:680.215500px;}
.y36_c00123{bottom:680.400000px;}
.y2a_c00123{bottom:697.500000px;}
.y5_c00123{bottom:729.450000px;}
.y1b_c00123{bottom:784.696680px;}
.y1a_c00123{bottom:801.891000px;}
.y19_c00123{bottom:819.175500px;}
.y18_c00123{bottom:836.460000px;}
.y15_c00123{bottom:870.930000px;}
.y13_c00123{bottom:905.400000px;}
.y11_c00123{bottom:939.870000px;}
.y10_c00123{bottom:957.141180px;}
.y27_c00123{bottom:957.150000px;}
.yf_c00123{bottom:974.425680px;}
.ye_c00123{bottom:991.620000px;}
.y24_c00123{bottom:1008.895500px;}
.yd_c00123{bottom:1008.900000px;}
.y23_c00123{bottom:1026.180000px;}
.y22_c00123{bottom:1043.361000px;}
.y21_c00123{bottom:1060.645500px;}
.ya_c00123{bottom:1060.650000px;}
.y20_c00123{bottom:1077.930000px;}
.y8_c00123{bottom:1095.120000px;}
.y4_c00123{bottom:1131.030000px;}
.y3_c00123{bottom:1150.915500px;}
.y2_c00123{bottom:1166.400000px;}
.y1_c00123{bottom:1197.450000px;}
.h2_c00123{height:52.998047px;}
.h6_c00123{height:59.004492px;}
.h5_c00123{height:60.589687px;}
.h3_c00123{height:70.664062px;}
.h8_c00123{height:75.093750px;}
.h7_c00123{height:310.500000px;}
.h4_c00123{height:396.720000px;}
.h0_c00123{height:1262.880000px;}
.h1_c00123{height:1263.000000px;}
.w2_c00123{width:132.120000px;}
.w3_c00123{width:242.640000px;}
.w4_c00123{width:246.058500px;}
.w0_c00123{width:893.070000px;}
.w1_c00123{width:893.250000px;}
.x0_c00123{left:0.000000px;}
.x4_c00123{left:6.930000px;}
.x10_c00123{left:13.680000px;}
.xa_c00123{left:50.760000px;}
.x12_c00123{left:68.760000px;}
.x7_c00123{left:86.310000px;}
.xd_c00123{left:94.410000px;}
.xb_c00123{left:126.540000px;}
.x2_c00123{left:127.620000px;}
.x3_c00123{left:128.700000px;}
.xc_c00123{left:135.630000px;}
.x11_c00123{left:140.130000px;}
.x13_c00123{left:154.620000px;}
.xf_c00123{left:160.740000px;}
.x14_c00123{left:181.620000px;}
.xe_c00123{left:187.380000px;}
.x5_c00123{left:263.070000px;}
.x6_c00123{left:270.000000px;}
.x1_c00123{left:446.580000px;}
.x8_c00123{left:507.960000px;}
.x9_c00123{left:514.980000px;}
@media print{
.v1_c00123{vertical-align:-55.056000pt;}
.v0_c00123{vertical-align:0.000000pt;}
.ls19_c00123{letter-spacing:-0.512000pt;}
.ls12_c00123{letter-spacing:-0.480960pt;}
.ls14_c00123{letter-spacing:-0.427520pt;}
.ls16_c00123{letter-spacing:-0.320640pt;}
.ls18_c00123{letter-spacing:-0.320000pt;}
.ls17_c00123{letter-spacing:-0.256000pt;}
.ls13_c00123{letter-spacing:-0.160320pt;}
.ls10_c00123{letter-spacing:-0.106880pt;}
.ls1b_c00123{letter-spacing:-0.064000pt;}
.ls11_c00123{letter-spacing:-0.053440pt;}
.lsf_c00123{letter-spacing:0.000000pt;}
.ls15_c00123{letter-spacing:0.053440pt;}
.lsb_c00123{letter-spacing:0.064000pt;}
.ls5_c00123{letter-spacing:0.106880pt;}
.ls1a_c00123{letter-spacing:0.128000pt;}
.ls3_c00123{letter-spacing:0.160320pt;}
.ls7_c00123{letter-spacing:1.920000pt;}
.ls6_c00123{letter-spacing:2.240000pt;}
.ls4_c00123{letter-spacing:4.221760pt;}
.lse_c00123{letter-spacing:4.800000pt;}
.ls9_c00123{letter-spacing:7.360000pt;}
.lsd_c00123{letter-spacing:9.600000pt;}
.lsc_c00123{letter-spacing:27.328000pt;}
.lsa_c00123{letter-spacing:29.120000pt;}
.ls8_c00123{letter-spacing:31.040000pt;}
.ls2_c00123{letter-spacing:32.705280pt;}
.ls1_c00123{letter-spacing:39.759360pt;}
.ls0_c00123{letter-spacing:284.016000pt;}
.wsb_c00123{word-spacing:-16.128000pt;}
.ws7_c00123{word-spacing:-16.064000pt;}
.ws9_c00123{word-spacing:-16.000000pt;}
.ws8_c00123{word-spacing:-15.744000pt;}
.wsa_c00123{word-spacing:-15.488000pt;}
.ws3_c00123{word-spacing:-13.520320pt;}
.ws5_c00123{word-spacing:-13.413440pt;}
.ws4_c00123{word-spacing:-13.360000pt;}
.ws1_c00123{word-spacing:-13.306560pt;}
.ws0_c00123{word-spacing:-13.253120pt;}
.ws2_c00123{word-spacing:-13.199680pt;}
.ws6_c00123{word-spacing:-13.039360pt;}
.ws2e_c00123{word-spacing:-0.374080pt;}
.ws50_c00123{word-spacing:-0.160320pt;}
.wsd_c00123{word-spacing:-0.144000pt;}
.ws60_c00123{word-spacing:-0.064000pt;}
.ws2c_c00123{word-spacing:-0.053440pt;}
.wsc_c00123{word-spacing:0.000000pt;}
.ws4a_c00123{word-spacing:0.053440pt;}
.ws65_c00123{word-spacing:0.064000pt;}
.ws3e_c00123{word-spacing:0.106880pt;}
.ws26_c00123{word-spacing:0.160320pt;}
.ws2d_c00123{word-spacing:0.213760pt;}
.ws2f_c00123{word-spacing:0.267200pt;}
.ws5a_c00123{word-spacing:0.320000pt;}
.ws47_c00123{word-spacing:0.427520pt;}
.ws20_c00123{word-spacing:0.480960pt;}
.ws29_c00123{word-spacing:0.801600pt;}
.ws4b_c00123{word-spacing:1.122240pt;}
.ws1d_c00123{word-spacing:1.175680pt;}
.ws14_c00123{word-spacing:1.816960pt;}
.ws16_c00123{word-spacing:2.137600pt;}
.ws57_c00123{word-spacing:2.176000pt;}
.ws4f_c00123{word-spacing:2.191040pt;}
.ws58_c00123{word-spacing:2.240000pt;}
.ws4e_c00123{word-spacing:2.404800pt;}
.ws17_c00123{word-spacing:2.672000pt;}
.ws4c_c00123{word-spacing:2.992640pt;}
.ws41_c00123{word-spacing:3.099520pt;}
.ws4d_c00123{word-spacing:3.366720pt;}
.ws53_c00123{word-spacing:3.954560pt;}
.ws54_c00123{word-spacing:4.275200pt;}
.ws12_c00123{word-spacing:4.702720pt;}
.ws64_c00123{word-spacing:4.800000pt;}
.ws11_c00123{word-spacing:4.916480pt;}
.ws35_c00123{word-spacing:6.519680pt;}
.ws38_c00123{word-spacing:6.626560pt;}
.ws36_c00123{word-spacing:6.947200pt;}
.ws61_c00123{word-spacing:7.040000pt;}
.ws3c_c00123{word-spacing:7.160960pt;}
.ws5d_c00123{word-spacing:7.296000pt;}
.ws5c_c00123{word-spacing:7.360000pt;}
.ws10_c00123{word-spacing:7.909120pt;}
.ws24_c00123{word-spacing:8.229760pt;}
.ws23_c00123{word-spacing:8.443520pt;}
.ws25_c00123{word-spacing:8.764160pt;}
.ws18_c00123{word-spacing:9.191680pt;}
.ws63_c00123{word-spacing:9.536000pt;}
.ws62_c00123{word-spacing:9.600000pt;}
.ws27_c00123{word-spacing:9.779520pt;}
.ws48_c00123{word-spacing:10.688000pt;}
.ws3a_c00123{word-spacing:11.115520pt;}
.ws28_c00123{word-spacing:11.329280pt;}
.ws1e_c00123{word-spacing:11.756800pt;}
.ws13_c00123{word-spacing:12.718720pt;}
.ws56_c00123{word-spacing:13.253120pt;}
.ws42_c00123{word-spacing:13.360000pt;}
.ws15_c00123{word-spacing:15.176960pt;}
.ws49_c00123{word-spacing:17.474880pt;}
.ws39_c00123{word-spacing:17.848960pt;}
.wsf_c00123{word-spacing:19.772800pt;}
.ws21_c00123{word-spacing:21.696640pt;}
.ws45_c00123{word-spacing:22.551680pt;}
.ws44_c00123{word-spacing:22.605120pt;}
.ws34_c00123{word-spacing:23.192960pt;}
.ws46_c00123{word-spacing:24.261760pt;}
.ws2b_c00123{word-spacing:24.582400pt;}
.wse_c00123{word-spacing:24.849600pt;}
.ws32_c00123{word-spacing:25.758080pt;}
.ws3f_c00123{word-spacing:25.864960pt;}
.ws30_c00123{word-spacing:26.987200pt;}
.ws55_c00123{word-spacing:28.056000pt;}
.ws5f_c00123{word-spacing:29.056000pt;}
.ws5e_c00123{word-spacing:29.120000pt;}
.ws33_c00123{word-spacing:29.231680pt;}
.ws59_c00123{word-spacing:30.976000pt;}
.ws5b_c00123{word-spacing:31.040000pt;}
.ws1b_c00123{word-spacing:32.544960pt;}
.ws3d_c00123{word-spacing:32.758720pt;}
.ws51_c00123{word-spacing:32.865600pt;}
.ws19_c00123{word-spacing:33.079360pt;}
.ws1a_c00123{word-spacing:33.132800pt;}
.ws52_c00123{word-spacing:33.186240pt;}
.ws22_c00123{word-spacing:35.430720pt;}
.ws43_c00123{word-spacing:37.354560pt;}
.ws1f_c00123{word-spacing:39.278400pt;}
.ws2a_c00123{word-spacing:39.599040pt;}
.ws1c_c00123{word-spacing:43.981120pt;}
.ws3b_c00123{word-spacing:44.301760pt;}
.ws31_c00123{word-spacing:45.263680pt;}
.ws40_c00123{word-spacing:78.343040pt;}
.ws37_c00123{word-spacing:81.709760pt;}
._2_c00123{margin-left:-1.068800pt;}
._0_c00123{width:0.903136pt;}
._5_c00123{width:4.227104pt;}
._7_c00123{width:7.552000pt;}
._1_c00123{width:24.880000pt;}
._8_c00123{width:29.376000pt;}
._6_c00123{width:31.424000pt;}
._4_c00123{width:33.025920pt;}
._3_c00123{width:81.496000pt;}
.fs0_c00123{font-size:48.000000pt;}
.fs2_c00123{font-size:53.440000pt;}
.fs1_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y1e_c00123{bottom:3.120000pt;}
.y1d_c00123{bottom:18.400000pt;}
.y1c_c00123{bottom:33.760000pt;}
.y3f_c00123{bottom:49.120000pt;}
.y4c_c00123{bottom:50.880000pt;}
.y33_c00123{bottom:79.760000pt;}
.y32_c00123{bottom:95.040000pt;}
.y17_c00123{bottom:110.400000pt;}
.y4b_c00123{bottom:118.880000pt;}
.y16_c00123{bottom:125.760000pt;}
.y14_c00123{bottom:141.040000pt;}
.y4a_c00123{bottom:146.480000pt;}
.y12_c00123{bottom:171.760000pt;}
.y49_c00123{bottom:174.080000pt;}
.y48_c00123{bottom:201.680000pt;}
.y2e_c00123{bottom:202.400000pt;}
.y26_c00123{bottom:217.760000pt;}
.y47_c00123{bottom:229.280000pt;}
.y25_c00123{bottom:233.040000pt;}
.y2d_c00123{bottom:248.400000pt;}
.y46_c00123{bottom:256.880000pt;}
.y29_c00123{bottom:263.600000pt;}
.yc_c00123{bottom:263.760000pt;}
.yb_c00123{bottom:279.040000pt;}
.y45_c00123{bottom:284.480000pt;}
.y9_c00123{bottom:309.760000pt;}
.y44_c00123{bottom:312.080000pt;}
.y1f_c00123{bottom:325.040000pt;}
.y43_c00123{bottom:339.680000pt;}
.y6_c00123{bottom:340.240000pt;}
.y7_c00123{bottom:340.400000pt;}
.y42_c00123{bottom:357.520000pt;}
.y28_c00123{bottom:371.760000pt;}
.y41_c00123{bottom:390.160000pt;}
.y40_c00123{bottom:405.520000pt;}
.y35_c00123{bottom:420.876160pt;}
.y34_c00123{bottom:436.160000pt;}
.y3e_c00123{bottom:451.508160pt;}
.y3d_c00123{bottom:466.792000pt;}
.y3c_c00123{bottom:482.156000pt;}
.y3b_c00123{bottom:497.520000pt;}
.y3a_c00123{bottom:512.796000pt;}
.y31_c00123{bottom:512.800000pt;}
.y30_c00123{bottom:528.160000pt;}
.y39_c00123{bottom:558.796000pt;}
.y2f_c00123{bottom:558.800000pt;}
.y38_c00123{bottom:574.160000pt;}
.y2c_c00123{bottom:589.352160pt;}
.y37_c00123{bottom:589.520000pt;}
.y2b_c00123{bottom:604.636000pt;}
.y36_c00123{bottom:604.800000pt;}
.y2a_c00123{bottom:620.000000pt;}
.y5_c00123{bottom:648.400000pt;}
.y1b_c00123{bottom:697.508160pt;}
.y1a_c00123{bottom:712.792000pt;}
.y19_c00123{bottom:728.156000pt;}
.y18_c00123{bottom:743.520000pt;}
.y15_c00123{bottom:774.160000pt;}
.y13_c00123{bottom:804.800000pt;}
.y11_c00123{bottom:835.440000pt;}
.y10_c00123{bottom:850.792160pt;}
.y27_c00123{bottom:850.800000pt;}
.yf_c00123{bottom:866.156160pt;}
.ye_c00123{bottom:881.440000pt;}
.y24_c00123{bottom:896.796000pt;}
.yd_c00123{bottom:896.800000pt;}
.y23_c00123{bottom:912.160000pt;}
.y22_c00123{bottom:927.432000pt;}
.y21_c00123{bottom:942.796000pt;}
.ya_c00123{bottom:942.800000pt;}
.y20_c00123{bottom:958.160000pt;}
.y8_c00123{bottom:973.440000pt;}
.y4_c00123{bottom:1005.360000pt;}
.y3_c00123{bottom:1023.036000pt;}
.y2_c00123{bottom:1036.800000pt;}
.y1_c00123{bottom:1064.400000pt;}
.h2_c00123{height:47.109375pt;}
.h6_c00123{height:52.448437pt;}
.h5_c00123{height:53.857500pt;}
.h3_c00123{height:62.812500pt;}
.h8_c00123{height:66.750000pt;}
.h7_c00123{height:276.000000pt;}
.h4_c00123{height:352.640000pt;}
.h0_c00123{height:1122.560000pt;}
.h1_c00123{height:1122.666667pt;}
.w2_c00123{width:117.440000pt;}
.w3_c00123{width:215.680000pt;}
.w4_c00123{width:218.718667pt;}
.w0_c00123{width:793.840000pt;}
.w1_c00123{width:794.000000pt;}
.x0_c00123{left:0.000000pt;}
.x4_c00123{left:6.160000pt;}
.x10_c00123{left:12.160000pt;}
.xa_c00123{left:45.120000pt;}
.x12_c00123{left:61.120000pt;}
.x7_c00123{left:76.720000pt;}
.xd_c00123{left:83.920000pt;}
.xb_c00123{left:112.480000pt;}
.x2_c00123{left:113.440000pt;}
.x3_c00123{left:114.400000pt;}
.xc_c00123{left:120.560000pt;}
.x11_c00123{left:124.560000pt;}
.x13_c00123{left:137.440000pt;}
.xf_c00123{left:142.880000pt;}
.x14_c00123{left:161.440000pt;}
.xe_c00123{left:166.560000pt;}
.x5_c00123{left:233.840000pt;}
.x6_c00123{left:240.000000pt;}
.x1_c00123{left:396.960000pt;}
.x8_c00123{left:451.520000pt;}
.x9_c00123{left:457.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_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_dc862fe4efc2ad45822b017f.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_93ede9b6139c1e8b7e5e1173.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;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_c00124;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_1fbbbe443b7354349ee3525a.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00124;src:url('chunks/assets/font_eea543e2b486ca970077830b.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00124{vertical-align:-142.560000px;}
.v2_c00124{vertical-align:-14.760000px;}
.v7_c00124{vertical-align:-12.960000px;}
.v5_c00124{vertical-align:-10.800000px;}
.v6_c00124{vertical-align:-2.147040px;}
.v0_c00124{vertical-align:0.000000px;}
.v3_c00124{vertical-align:14.760000px;}
.v8_c00124{vertical-align:34.200000px;}
.v4_c00124{vertical-align:56.880000px;}
.ls17_c00124{letter-spacing:-0.216000px;}
.ls16_c00124{letter-spacing:-0.144000px;}
.ls14_c00124{letter-spacing:-0.108000px;}
.ls15_c00124{letter-spacing:-0.072000px;}
.ls13_c00124{letter-spacing:0.000000px;}
.ls12_c00124{letter-spacing:0.009360px;}
.ls0_c00124{letter-spacing:0.072000px;}
.lsc_c00124{letter-spacing:0.109440px;}
.lse_c00124{letter-spacing:0.121680px;}
.ls11_c00124{letter-spacing:0.144000px;}
.ls5_c00124{letter-spacing:0.360000px;}
.ls6_c00124{letter-spacing:0.720000px;}
.ls10_c00124{letter-spacing:1.728000px;}
.ls3_c00124{letter-spacing:5.400000px;}
.ls2_c00124{letter-spacing:5.760000px;}
.ls8_c00124{letter-spacing:7.200000px;}
.lsd_c00124{letter-spacing:8.434800px;}
.lsf_c00124{letter-spacing:13.725000px;}
.ls7_c00124{letter-spacing:20.880000px;}
.lsa_c00124{letter-spacing:24.536880px;}
.ls4_c00124{letter-spacing:25.560000px;}
.ls1_c00124{letter-spacing:30.744000px;}
.lsb_c00124{letter-spacing:42.336000px;}
.ls9_c00124{letter-spacing:141.120000px;}
.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;}
}
.ws6_c00124{word-spacing:-72.000000px;}
.ws0_c00124{word-spacing:-18.144000px;}
.ws1_c00124{word-spacing:-18.072000px;}
.ws2_c00124{word-spacing:-18.000000px;}
.ws3_c00124{word-spacing:-17.928000px;}
.ws4_c00124{word-spacing:-17.856000px;}
.ws5_c00124{word-spacing:-17.784000px;}
.ws17_c00124{word-spacing:-0.144000px;}
.ws1d_c00124{word-spacing:-0.072000px;}
.ws7_c00124{word-spacing:0.000000px;}
.ws12_c00124{word-spacing:0.072000px;}
.ws9_c00124{word-spacing:0.162000px;}
.ws26_c00124{word-spacing:0.216000px;}
.ws8_c00124{word-spacing:0.270000px;}
.ws28_c00124{word-spacing:0.360000px;}
.ws27_c00124{word-spacing:0.720000px;}
.ws2e_c00124{word-spacing:3.600000px;}
.wsf_c00124{word-spacing:5.040000px;}
.ws11_c00124{word-spacing:5.400000px;}
.ws10_c00124{word-spacing:5.760000px;}
.wsc_c00124{word-spacing:6.768000px;}
.wsd_c00124{word-spacing:7.128000px;}
.ws2f_c00124{word-spacing:7.200000px;}
.ws2b_c00124{word-spacing:7.560000px;}
.ws1a_c00124{word-spacing:7.848000px;}
.ws19_c00124{word-spacing:7.920000px;}
.ws15_c00124{word-spacing:8.208000px;}
.ws14_c00124{word-spacing:8.280000px;}
.ws13_c00124{word-spacing:8.352000px;}
.wse_c00124{word-spacing:8.640000px;}
.ws2d_c00124{word-spacing:15.768000px;}
.ws2c_c00124{word-spacing:16.200000px;}
.ws1b_c00124{word-spacing:18.288000px;}
.ws18_c00124{word-spacing:18.648000px;}
.ws20_c00124{word-spacing:20.016000px;}
.ws1f_c00124{word-spacing:20.088000px;}
.ws1e_c00124{word-spacing:20.160000px;}
.ws2a_c00124{word-spacing:20.808000px;}
.ws29_c00124{word-spacing:20.880000px;}
.ws1c_c00124{word-spacing:23.760000px;}
.wsa_c00124{word-spacing:25.128000px;}
.wsb_c00124{word-spacing:25.200000px;}
.ws22_c00124{word-spacing:25.488000px;}
.ws21_c00124{word-spacing:25.560000px;}
.ws23_c00124{word-spacing:25.848000px;}
.ws24_c00124{word-spacing:26.136000px;}
.ws25_c00124{word-spacing:26.208000px;}
.ws16_c00124{word-spacing:32.328000px;}
._7_c00124{margin-left:-8.085600px;}
._1_c00124{margin-left:-1.058400px;}
._0_c00124{width:1.220400px;}
._6_c00124{width:4.464000px;}
._4_c00124{width:7.927200px;}
._5_c00124{width:15.984000px;}
._2_c00124{width:20.160000px;}
._3_c00124{width:25.704000px;}
.fc0_c00124{color:rgb(0,0,0);}
.fs3_c00124{font-size:42.120000px;}
.fs4_c00124{font-size:47.880000px;}
.fs2_c00124{font-size:51.120000px;}
.fs0_c00124{font-size:54.000000px;}
.fs1_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y27_c00124{bottom:57.240000px;}
.y26_c00124{bottom:114.480000px;}
.y25_c00124{bottom:135.180000px;}
.y24_c00124{bottom:165.780000px;}
.y23_c00124{bottom:209.970000px;}
.y22_c00124{bottom:241.020000px;}
.y21_c00124{bottom:272.070000px;}
.y20_c00124{bottom:303.120000px;}
.y1f_c00124{bottom:334.170000px;}
.y1e_c00124{bottom:365.220000px;}
.y1d_c00124{bottom:396.270000px;}
.y1c_c00124{bottom:427.320000px;}
.y1b_c00124{bottom:458.370000px;}
.y1a_c00124{bottom:489.420000px;}
.y19_c00124{bottom:520.470000px;}
.y18_c00124{bottom:551.520000px;}
.y17_c00124{bottom:582.570000px;}
.y16_c00124{bottom:613.620000px;}
.y15_c00124{bottom:644.670000px;}
.y14_c00124{bottom:675.720000px;}
.y13_c00124{bottom:706.770000px;}
.y12_c00124{bottom:737.820000px;}
.y11_c00124{bottom:768.870000px;}
.y10_c00124{bottom:799.920000px;}
.yf_c00124{bottom:830.970000px;}
.ye_c00124{bottom:861.930000px;}
.yd_c00124{bottom:892.980000px;}
.yc_c00124{bottom:924.030000px;}
.yb_c00124{bottom:955.080000px;}
.ya_c00124{bottom:986.130000px;}
.y9_c00124{bottom:1017.180000px;}
.y8_c00124{bottom:1048.230000px;}
.y7_c00124{bottom:1079.280000px;}
.y6_c00124{bottom:1110.330000px;}
.y5_c00124{bottom:1131.030000px;}
.y4_c00124{bottom:1150.920000px;}
.y3_c00124{bottom:1166.404500px;}
.y2_c00124{bottom:1181.970000px;}
.y1_c00124{bottom:1197.450000px;}
.h3_c00124{height:52.971680px;}
.h2_c00124{height:52.998047px;}
.h4_c00124{height:70.664062px;}
.h5_c00124{height:75.093750px;}
.h6_c00124{height:177.742969px;}
.h0_c00124{height:1262.880000px;}
.h1_c00124{height:1263.000000px;}
.w0_c00124{width:893.070000px;}
.w1_c00124{width:893.250000px;}
.x0_c00124{left:0.000000px;}
.x3_c00124{left:127.620000px;}
.x4_c00124{left:154.620000px;}
.x5_c00124{left:181.620000px;}
.x2_c00124{left:425.160000px;}
.x1_c00124{left:446.580000px;}
.x6_c00124{left:747.540000px;}
@media print{
.v1_c00124{vertical-align:-126.720000pt;}
.v2_c00124{vertical-align:-13.120000pt;}
.v7_c00124{vertical-align:-11.520000pt;}
.v5_c00124{vertical-align:-9.600000pt;}
.v6_c00124{vertical-align:-1.908480pt;}
.v0_c00124{vertical-align:0.000000pt;}
.v3_c00124{vertical-align:13.120000pt;}
.v8_c00124{vertical-align:30.400000pt;}
.v4_c00124{vertical-align:50.560000pt;}
.ls17_c00124{letter-spacing:-0.192000pt;}
.ls16_c00124{letter-spacing:-0.128000pt;}
.ls14_c00124{letter-spacing:-0.096000pt;}
.ls15_c00124{letter-spacing:-0.064000pt;}
.ls13_c00124{letter-spacing:0.000000pt;}
.ls12_c00124{letter-spacing:0.008320pt;}
.ls0_c00124{letter-spacing:0.064000pt;}
.lsc_c00124{letter-spacing:0.097280pt;}
.lse_c00124{letter-spacing:0.108160pt;}
.ls11_c00124{letter-spacing:0.128000pt;}
.ls5_c00124{letter-spacing:0.320000pt;}
.ls6_c00124{letter-spacing:0.640000pt;}
.ls10_c00124{letter-spacing:1.536000pt;}
.ls3_c00124{letter-spacing:4.800000pt;}
.ls2_c00124{letter-spacing:5.120000pt;}
.ls8_c00124{letter-spacing:6.400000pt;}
.lsd_c00124{letter-spacing:7.497600pt;}
.lsf_c00124{letter-spacing:12.200000pt;}
.ls7_c00124{letter-spacing:18.560000pt;}
.lsa_c00124{letter-spacing:21.810560pt;}
.ls4_c00124{letter-spacing:22.720000pt;}
.ls1_c00124{letter-spacing:27.328000pt;}
.lsb_c00124{letter-spacing:37.632000pt;}
.ls9_c00124{letter-spacing:125.440000pt;}
.ws6_c00124{word-spacing:-64.000000pt;}
.ws0_c00124{word-spacing:-16.128000pt;}
.ws1_c00124{word-spacing:-16.064000pt;}
.ws2_c00124{word-spacing:-16.000000pt;}
.ws3_c00124{word-spacing:-15.936000pt;}
.ws4_c00124{word-spacing:-15.872000pt;}
.ws5_c00124{word-spacing:-15.808000pt;}
.ws17_c00124{word-spacing:-0.128000pt;}
.ws1d_c00124{word-spacing:-0.064000pt;}
.ws7_c00124{word-spacing:0.000000pt;}
.ws12_c00124{word-spacing:0.064000pt;}
.ws9_c00124{word-spacing:0.144000pt;}
.ws26_c00124{word-spacing:0.192000pt;}
.ws8_c00124{word-spacing:0.240000pt;}
.ws28_c00124{word-spacing:0.320000pt;}
.ws27_c00124{word-spacing:0.640000pt;}
.ws2e_c00124{word-spacing:3.200000pt;}
.wsf_c00124{word-spacing:4.480000pt;}
.ws11_c00124{word-spacing:4.800000pt;}
.ws10_c00124{word-spacing:5.120000pt;}
.wsc_c00124{word-spacing:6.016000pt;}
.wsd_c00124{word-spacing:6.336000pt;}
.ws2f_c00124{word-spacing:6.400000pt;}
.ws2b_c00124{word-spacing:6.720000pt;}
.ws1a_c00124{word-spacing:6.976000pt;}
.ws19_c00124{word-spacing:7.040000pt;}
.ws15_c00124{word-spacing:7.296000pt;}
.ws14_c00124{word-spacing:7.360000pt;}
.ws13_c00124{word-spacing:7.424000pt;}
.wse_c00124{word-spacing:7.680000pt;}
.ws2d_c00124{word-spacing:14.016000pt;}
.ws2c_c00124{word-spacing:14.400000pt;}
.ws1b_c00124{word-spacing:16.256000pt;}
.ws18_c00124{word-spacing:16.576000pt;}
.ws20_c00124{word-spacing:17.792000pt;}
.ws1f_c00124{word-spacing:17.856000pt;}
.ws1e_c00124{word-spacing:17.920000pt;}
.ws2a_c00124{word-spacing:18.496000pt;}
.ws29_c00124{word-spacing:18.560000pt;}
.ws1c_c00124{word-spacing:21.120000pt;}
.wsa_c00124{word-spacing:22.336000pt;}
.wsb_c00124{word-spacing:22.400000pt;}
.ws22_c00124{word-spacing:22.656000pt;}
.ws21_c00124{word-spacing:22.720000pt;}
.ws23_c00124{word-spacing:22.976000pt;}
.ws24_c00124{word-spacing:23.232000pt;}
.ws25_c00124{word-spacing:23.296000pt;}
.ws16_c00124{word-spacing:28.736000pt;}
._7_c00124{margin-left:-7.187200pt;}
._1_c00124{margin-left:-0.940800pt;}
._0_c00124{width:1.084800pt;}
._6_c00124{width:3.968000pt;}
._4_c00124{width:7.046400pt;}
._5_c00124{width:14.208000pt;}
._2_c00124{width:17.920000pt;}
._3_c00124{width:22.848000pt;}
.fs3_c00124{font-size:37.440000pt;}
.fs4_c00124{font-size:42.560000pt;}
.fs2_c00124{font-size:45.440000pt;}
.fs0_c00124{font-size:48.000000pt;}
.fs1_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y27_c00124{bottom:50.880000pt;}
.y26_c00124{bottom:101.760000pt;}
.y25_c00124{bottom:120.160000pt;}
.y24_c00124{bottom:147.360000pt;}
.y23_c00124{bottom:186.640000pt;}
.y22_c00124{bottom:214.240000pt;}
.y21_c00124{bottom:241.840000pt;}
.y20_c00124{bottom:269.440000pt;}
.y1f_c00124{bottom:297.040000pt;}
.y1e_c00124{bottom:324.640000pt;}
.y1d_c00124{bottom:352.240000pt;}
.y1c_c00124{bottom:379.840000pt;}
.y1b_c00124{bottom:407.440000pt;}
.y1a_c00124{bottom:435.040000pt;}
.y19_c00124{bottom:462.640000pt;}
.y18_c00124{bottom:490.240000pt;}
.y17_c00124{bottom:517.840000pt;}
.y16_c00124{bottom:545.440000pt;}
.y15_c00124{bottom:573.040000pt;}
.y14_c00124{bottom:600.640000pt;}
.y13_c00124{bottom:628.240000pt;}
.y12_c00124{bottom:655.840000pt;}
.y11_c00124{bottom:683.440000pt;}
.y10_c00124{bottom:711.040000pt;}
.yf_c00124{bottom:738.640000pt;}
.ye_c00124{bottom:766.160000pt;}
.yd_c00124{bottom:793.760000pt;}
.yc_c00124{bottom:821.360000pt;}
.yb_c00124{bottom:848.960000pt;}
.ya_c00124{bottom:876.560000pt;}
.y9_c00124{bottom:904.160000pt;}
.y8_c00124{bottom:931.760000pt;}
.y7_c00124{bottom:959.360000pt;}
.y6_c00124{bottom:986.960000pt;}
.y5_c00124{bottom:1005.360000pt;}
.y4_c00124{bottom:1023.040000pt;}
.y3_c00124{bottom:1036.804000pt;}
.y2_c00124{bottom:1050.640000pt;}
.y1_c00124{bottom:1064.400000pt;}
.h3_c00124{height:47.085938pt;}
.h2_c00124{height:47.109375pt;}
.h4_c00124{height:62.812500pt;}
.h5_c00124{height:66.750000pt;}
.h6_c00124{height:157.993750pt;}
.h0_c00124{height:1122.560000pt;}
.h1_c00124{height:1122.666667pt;}
.w0_c00124{width:793.840000pt;}
.w1_c00124{width:794.000000pt;}
.x0_c00124{left:0.000000pt;}
.x3_c00124{left:113.440000pt;}
.x4_c00124{left:137.440000pt;}
.x5_c00124{left:161.440000pt;}
.x2_c00124{left:377.920000pt;}
.x1_c00124{left:396.960000pt;}
.x6_c00124{left:664.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_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_9b527221e525846c0f51dfd5.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_2eaec6b8e21a90caef0879d5.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;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_c00125;src:url('chunks/assets/font_3a0b5ce3801c469faeef0545.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;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:ff5_c00125;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00125{font-family:ff5_c00125;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00125{vertical-align:-61.938000px;}
.v4_c00125{vertical-align:-20.880000px;}
.v2_c00125{vertical-align:-2.880000px;}
.v0_c00125{vertical-align:0.000000px;}
.v3_c00125{vertical-align:27.000000px;}
.lse_c00125{letter-spacing:-0.576000px;}
.ls12_c00125{letter-spacing:-0.288000px;}
.ls11_c00125{letter-spacing:-0.216000px;}
.ls14_c00125{letter-spacing:-0.180360px;}
.ls16_c00125{letter-spacing:-0.120240px;}
.ls10_c00125{letter-spacing:-0.072000px;}
.ls15_c00125{letter-spacing:-0.060120px;}
.lsd_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:0.009360px;}
.ls2_c00125{letter-spacing:0.072000px;}
.lsf_c00125{letter-spacing:0.144000px;}
.ls13_c00125{letter-spacing:0.191520px;}
.lsb_c00125{letter-spacing:0.360000px;}
.ls9_c00125{letter-spacing:1.800000px;}
.ls5_c00125{letter-spacing:7.200000px;}
.lsa_c00125{letter-spacing:7.560000px;}
.ls7_c00125{letter-spacing:9.360000px;}
.lsc_c00125{letter-spacing:11.520000px;}
.ls3_c00125{letter-spacing:13.320000px;}
.ls4_c00125{letter-spacing:13.680000px;}
.ls8_c00125{letter-spacing:28.080000px;}
.ls6_c00125{letter-spacing:30.744000px;}
.ls0_c00125{letter-spacing:319.518000px;}
.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;}
}
.ws4_c00125{word-spacing:-18.072000px;}
.ws0_c00125{word-spacing:-18.000000px;}
.ws2_c00125{word-spacing:-17.928000px;}
.ws3_c00125{word-spacing:-17.784000px;}
.ws5_c00125{word-spacing:-17.712000px;}
.ws1_c00125{word-spacing:-17.424000px;}
.ws6_c00125{word-spacing:-12.161520px;}
.ws7_c00125{word-spacing:-9.720000px;}
.ws1a_c00125{word-spacing:-0.360000px;}
.ws9_c00125{word-spacing:-0.162000px;}
.ws1b_c00125{word-spacing:-0.144000px;}
.ws33_c00125{word-spacing:-0.120240px;}
.wsa_c00125{word-spacing:-0.072000px;}
.ws8_c00125{word-spacing:0.000000px;}
.ws32_c00125{word-spacing:0.060120px;}
.wsb_c00125{word-spacing:0.072000px;}
.ws15_c00125{word-spacing:0.288000px;}
.ws31_c00125{word-spacing:0.300600px;}
.ws13_c00125{word-spacing:0.360000px;}
.ws1f_c00125{word-spacing:0.720000px;}
.ws14_c00125{word-spacing:0.936000px;}
.ws18_c00125{word-spacing:1.080000px;}
.ws20_c00125{word-spacing:1.368000px;}
.ws28_c00125{word-spacing:1.656000px;}
.ws29_c00125{word-spacing:1.800000px;}
.ws21_c00125{word-spacing:3.528000px;}
.ws19_c00125{word-spacing:3.888000px;}
.wsd_c00125{word-spacing:4.608000px;}
.wsc_c00125{word-spacing:4.680000px;}
.ws1d_c00125{word-spacing:6.768000px;}
.ws16_c00125{word-spacing:7.128000px;}
.ws17_c00125{word-spacing:7.200000px;}
.ws1e_c00125{word-spacing:7.488000px;}
.ws2b_c00125{word-spacing:7.560000px;}
.ws30_c00125{word-spacing:7.848000px;}
.ws2f_c00125{word-spacing:7.920000px;}
.ws23_c00125{word-spacing:9.360000px;}
.ws26_c00125{word-spacing:10.008000px;}
.ws27_c00125{word-spacing:10.080000px;}
.ws2d_c00125{word-spacing:11.448000px;}
.ws2c_c00125{word-spacing:11.520000px;}
.ws2e_c00125{word-spacing:11.808000px;}
.ws22_c00125{word-spacing:11.880000px;}
.ws12_c00125{word-spacing:13.680000px;}
.ws2a_c00125{word-spacing:20.088000px;}
.ws1c_c00125{word-spacing:21.168000px;}
.wse_c00125{word-spacing:22.608000px;}
.wsf_c00125{word-spacing:22.680000px;}
.ws10_c00125{word-spacing:25.056000px;}
.ws11_c00125{word-spacing:25.200000px;}
.ws25_c00125{word-spacing:28.008000px;}
.ws24_c00125{word-spacing:28.080000px;}
._5_c00125{margin-left:-9.216000px;}
._1_c00125{margin-left:-1.087200px;}
._0_c00125{width:1.080000px;}
._6_c00125{width:3.240000px;}
._4_c00125{width:4.248000px;}
._2_c00125{width:6.768000px;}
._3_c00125{width:21.456000px;}
.fc0_c00125{color:rgb(0,0,0);}
.fs3_c00125{font-size:38.880000px;}
.fs2_c00125{font-size:47.880000px;}
.fs0_c00125{font-size:54.000000px;}
.fs4_c00125{font-size:60.120000px;}
.fs1_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y26_c00125{bottom:57.240000px;}
.y25_c00125{bottom:115.020000px;}
.y27_c00125{bottom:127.710000px;}
.y24_c00125{bottom:168.570000px;}
.y23_c00125{bottom:199.620000px;}
.y22_c00125{bottom:230.670000px;}
.y21_c00125{bottom:261.720000px;}
.y20_c00125{bottom:292.770000px;}
.y1f_c00125{bottom:323.820000px;}
.y1e_c00125{bottom:354.870000px;}
.y1d_c00125{bottom:385.920000px;}
.y1c_c00125{bottom:416.970000px;}
.y1b_c00125{bottom:448.020000px;}
.y1a_c00125{bottom:479.070000px;}
.y19_c00125{bottom:510.120000px;}
.y18_c00125{bottom:541.170000px;}
.y17_c00125{bottom:572.220000px;}
.y16_c00125{bottom:603.270000px;}
.y15_c00125{bottom:634.320000px;}
.y14_c00125{bottom:665.370000px;}
.y13_c00125{bottom:696.420000px;}
.y12_c00125{bottom:727.470000px;}
.y11_c00125{bottom:758.520000px;}
.y10_c00125{bottom:789.570000px;}
.yf_c00125{bottom:820.620000px;}
.ye_c00125{bottom:851.580000px;}
.yd_c00125{bottom:882.630000px;}
.yc_c00125{bottom:913.680000px;}
.yb_c00125{bottom:944.730000px;}
.ya_c00125{bottom:975.780000px;}
.y9_c00125{bottom:1006.830000px;}
.y8_c00125{bottom:1037.880000px;}
.y7_c00125{bottom:1068.930000px;}
.y6_c00125{bottom:1089.630000px;}
.y5_c00125{bottom:1110.330000px;}
.y4_c00125{bottom:1131.030000px;}
.y3_c00125{bottom:1150.915500px;}
.y2_c00125{bottom:1166.400000px;}
.y1_c00125{bottom:1197.450000px;}
.h6_c00125{height:38.158594px;}
.h2_c00125{height:52.998047px;}
.h3_c00125{height:70.664062px;}
.h5_c00125{height:73.991602px;}
.h4_c00125{height:75.093750px;}
.h0_c00125{height:1262.880000px;}
.h1_c00125{height:1263.000000px;}
.w0_c00125{width:893.070000px;}
.w1_c00125{width:893.250000px;}
.x0_c00125{left:0.000000px;}
.x2_c00125{left:127.620000px;}
.x3_c00125{left:154.620000px;}
.x1_c00125{left:446.580000px;}
@media print{
.v1_c00125{vertical-align:-55.056000pt;}
.v4_c00125{vertical-align:-18.560000pt;}
.v2_c00125{vertical-align:-2.560000pt;}
.v0_c00125{vertical-align:0.000000pt;}
.v3_c00125{vertical-align:24.000000pt;}
.lse_c00125{letter-spacing:-0.512000pt;}
.ls12_c00125{letter-spacing:-0.256000pt;}
.ls11_c00125{letter-spacing:-0.192000pt;}
.ls14_c00125{letter-spacing:-0.160320pt;}
.ls16_c00125{letter-spacing:-0.106880pt;}
.ls10_c00125{letter-spacing:-0.064000pt;}
.ls15_c00125{letter-spacing:-0.053440pt;}
.lsd_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:0.008320pt;}
.ls2_c00125{letter-spacing:0.064000pt;}
.lsf_c00125{letter-spacing:0.128000pt;}
.ls13_c00125{letter-spacing:0.170240pt;}
.lsb_c00125{letter-spacing:0.320000pt;}
.ls9_c00125{letter-spacing:1.600000pt;}
.ls5_c00125{letter-spacing:6.400000pt;}
.lsa_c00125{letter-spacing:6.720000pt;}
.ls7_c00125{letter-spacing:8.320000pt;}
.lsc_c00125{letter-spacing:10.240000pt;}
.ls3_c00125{letter-spacing:11.840000pt;}
.ls4_c00125{letter-spacing:12.160000pt;}
.ls8_c00125{letter-spacing:24.960000pt;}
.ls6_c00125{letter-spacing:27.328000pt;}
.ls0_c00125{letter-spacing:284.016000pt;}
.ws4_c00125{word-spacing:-16.064000pt;}
.ws0_c00125{word-spacing:-16.000000pt;}
.ws2_c00125{word-spacing:-15.936000pt;}
.ws3_c00125{word-spacing:-15.808000pt;}
.ws5_c00125{word-spacing:-15.744000pt;}
.ws1_c00125{word-spacing:-15.488000pt;}
.ws6_c00125{word-spacing:-10.810240pt;}
.ws7_c00125{word-spacing:-8.640000pt;}
.ws1a_c00125{word-spacing:-0.320000pt;}
.ws9_c00125{word-spacing:-0.144000pt;}
.ws1b_c00125{word-spacing:-0.128000pt;}
.ws33_c00125{word-spacing:-0.106880pt;}
.wsa_c00125{word-spacing:-0.064000pt;}
.ws8_c00125{word-spacing:0.000000pt;}
.ws32_c00125{word-spacing:0.053440pt;}
.wsb_c00125{word-spacing:0.064000pt;}
.ws15_c00125{word-spacing:0.256000pt;}
.ws31_c00125{word-spacing:0.267200pt;}
.ws13_c00125{word-spacing:0.320000pt;}
.ws1f_c00125{word-spacing:0.640000pt;}
.ws14_c00125{word-spacing:0.832000pt;}
.ws18_c00125{word-spacing:0.960000pt;}
.ws20_c00125{word-spacing:1.216000pt;}
.ws28_c00125{word-spacing:1.472000pt;}
.ws29_c00125{word-spacing:1.600000pt;}
.ws21_c00125{word-spacing:3.136000pt;}
.ws19_c00125{word-spacing:3.456000pt;}
.wsd_c00125{word-spacing:4.096000pt;}
.wsc_c00125{word-spacing:4.160000pt;}
.ws1d_c00125{word-spacing:6.016000pt;}
.ws16_c00125{word-spacing:6.336000pt;}
.ws17_c00125{word-spacing:6.400000pt;}
.ws1e_c00125{word-spacing:6.656000pt;}
.ws2b_c00125{word-spacing:6.720000pt;}
.ws30_c00125{word-spacing:6.976000pt;}
.ws2f_c00125{word-spacing:7.040000pt;}
.ws23_c00125{word-spacing:8.320000pt;}
.ws26_c00125{word-spacing:8.896000pt;}
.ws27_c00125{word-spacing:8.960000pt;}
.ws2d_c00125{word-spacing:10.176000pt;}
.ws2c_c00125{word-spacing:10.240000pt;}
.ws2e_c00125{word-spacing:10.496000pt;}
.ws22_c00125{word-spacing:10.560000pt;}
.ws12_c00125{word-spacing:12.160000pt;}
.ws2a_c00125{word-spacing:17.856000pt;}
.ws1c_c00125{word-spacing:18.816000pt;}
.wse_c00125{word-spacing:20.096000pt;}
.wsf_c00125{word-spacing:20.160000pt;}
.ws10_c00125{word-spacing:22.272000pt;}
.ws11_c00125{word-spacing:22.400000pt;}
.ws25_c00125{word-spacing:24.896000pt;}
.ws24_c00125{word-spacing:24.960000pt;}
._5_c00125{margin-left:-8.192000pt;}
._1_c00125{margin-left:-0.966400pt;}
._0_c00125{width:0.960000pt;}
._6_c00125{width:2.880000pt;}
._4_c00125{width:3.776000pt;}
._2_c00125{width:6.016000pt;}
._3_c00125{width:19.072000pt;}
.fs3_c00125{font-size:34.560000pt;}
.fs2_c00125{font-size:42.560000pt;}
.fs0_c00125{font-size:48.000000pt;}
.fs4_c00125{font-size:53.440000pt;}
.fs1_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y26_c00125{bottom:50.880000pt;}
.y25_c00125{bottom:102.240000pt;}
.y27_c00125{bottom:113.520000pt;}
.y24_c00125{bottom:149.840000pt;}
.y23_c00125{bottom:177.440000pt;}
.y22_c00125{bottom:205.040000pt;}
.y21_c00125{bottom:232.640000pt;}
.y20_c00125{bottom:260.240000pt;}
.y1f_c00125{bottom:287.840000pt;}
.y1e_c00125{bottom:315.440000pt;}
.y1d_c00125{bottom:343.040000pt;}
.y1c_c00125{bottom:370.640000pt;}
.y1b_c00125{bottom:398.240000pt;}
.y1a_c00125{bottom:425.840000pt;}
.y19_c00125{bottom:453.440000pt;}
.y18_c00125{bottom:481.040000pt;}
.y17_c00125{bottom:508.640000pt;}
.y16_c00125{bottom:536.240000pt;}
.y15_c00125{bottom:563.840000pt;}
.y14_c00125{bottom:591.440000pt;}
.y13_c00125{bottom:619.040000pt;}
.y12_c00125{bottom:646.640000pt;}
.y11_c00125{bottom:674.240000pt;}
.y10_c00125{bottom:701.840000pt;}
.yf_c00125{bottom:729.440000pt;}
.ye_c00125{bottom:756.960000pt;}
.yd_c00125{bottom:784.560000pt;}
.yc_c00125{bottom:812.160000pt;}
.yb_c00125{bottom:839.760000pt;}
.ya_c00125{bottom:867.360000pt;}
.y9_c00125{bottom:894.960000pt;}
.y8_c00125{bottom:922.560000pt;}
.y7_c00125{bottom:950.160000pt;}
.y6_c00125{bottom:968.560000pt;}
.y5_c00125{bottom:986.960000pt;}
.y4_c00125{bottom:1005.360000pt;}
.y3_c00125{bottom:1023.036000pt;}
.y2_c00125{bottom:1036.800000pt;}
.y1_c00125{bottom:1064.400000pt;}
.h6_c00125{height:33.918750pt;}
.h2_c00125{height:47.109375pt;}
.h3_c00125{height:62.812500pt;}
.h5_c00125{height:65.770313pt;}
.h4_c00125{height:66.750000pt;}
.h0_c00125{height:1122.560000pt;}
.h1_c00125{height:1122.666667pt;}
.w0_c00125{width:793.840000pt;}
.w1_c00125{width:794.000000pt;}
.x0_c00125{left:0.000000pt;}
.x2_c00125{left:113.440000pt;}
.x3_c00125{left:137.440000pt;}
.x1_c00125{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e3bb4ba36c12d34f901b291.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.284668;font-style:normal;font-weight:normal;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_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_824fa66f58cc62ce0a76446c.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls15_c00126{letter-spacing:-0.480960px;}
.ls18_c00126{letter-spacing:-0.360720px;}
.lse_c00126{letter-spacing:-0.288000px;}
.ls12_c00126{letter-spacing:-0.240480px;}
.lsf_c00126{letter-spacing:-0.216000px;}
.ls17_c00126{letter-spacing:-0.180360px;}
.lsd_c00126{letter-spacing:-0.144000px;}
.ls14_c00126{letter-spacing:-0.120240px;}
.lsb_c00126{letter-spacing:-0.108000px;}
.ls10_c00126{letter-spacing:-0.072000px;}
.ls11_c00126{letter-spacing:-0.060120px;}
.lsa_c00126{letter-spacing:0.000000px;}
.ls4_c00126{letter-spacing:0.053280px;}
.lsc_c00126{letter-spacing:0.072000px;}
.ls13_c00126{letter-spacing:0.120240px;}
.ls3_c00126{letter-spacing:0.140040px;}
.ls2_c00126{letter-spacing:0.144000px;}
.ls16_c00126{letter-spacing:0.180360px;}
.ls7_c00126{letter-spacing:1.563120px;}
.ls5_c00126{letter-spacing:6.930000px;}
.ls1_c00126{letter-spacing:9.000000px;}
.ls0_c00126{letter-spacing:19.440000px;}
.ls9_c00126{letter-spacing:29.609100px;}
.ls8_c00126{letter-spacing:35.370000px;}
.ls6_c00126{letter-spacing:36.090000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00126{word-spacing:-18.072000px;}
.ws3_c00126{word-spacing:-17.928000px;}
.ws0_c00126{word-spacing:-17.856000px;}
.ws1_c00126{word-spacing:-17.712000px;}
.ws9_c00126{word-spacing:-15.210360px;}
.ws6_c00126{word-spacing:-15.150240px;}
.ws8_c00126{word-spacing:-15.030000px;}
.ws4_c00126{word-spacing:-14.969880px;}
.wsc_c00126{word-spacing:-14.909760px;}
.wsa_c00126{word-spacing:-14.849640px;}
.ws5_c00126{word-spacing:-14.789520px;}
.wsb_c00126{word-spacing:-14.669280px;}
.ws7_c00126{word-spacing:-14.549040px;}
.ws1e_c00126{word-spacing:-0.432000px;}
.ws26_c00126{word-spacing:-0.420840px;}
.ws24_c00126{word-spacing:-0.288000px;}
.ws18_c00126{word-spacing:-0.144000px;}
.ws3d_c00126{word-spacing:-0.120240px;}
.ws1f_c00126{word-spacing:-0.072000px;}
.ws2f_c00126{word-spacing:-0.060120px;}
.wsd_c00126{word-spacing:0.000000px;}
.ws28_c00126{word-spacing:0.060120px;}
.ws23_c00126{word-spacing:0.072000px;}
.ws27_c00126{word-spacing:0.120240px;}
.wsf_c00126{word-spacing:0.162000px;}
.ws19_c00126{word-spacing:0.216000px;}
.ws25_c00126{word-spacing:0.240480px;}
.wse_c00126{word-spacing:0.270000px;}
.ws32_c00126{word-spacing:0.300600px;}
.ws47_c00126{word-spacing:0.480960px;}
.ws34_c00126{word-spacing:0.661320px;}
.ws21_c00126{word-spacing:1.008000px;}
.ws3e_c00126{word-spacing:1.022040px;}
.ws20_c00126{word-spacing:1.080000px;}
.ws3c_c00126{word-spacing:1.262520px;}
.ws40_c00126{word-spacing:1.923840px;}
.ws16_c00126{word-spacing:2.016000px;}
.ws17_c00126{word-spacing:2.160000px;}
.ws4e_c00126{word-spacing:2.284560px;}
.ws37_c00126{word-spacing:3.006000px;}
.ws4c_c00126{word-spacing:4.809600px;}
.ws43_c00126{word-spacing:4.929840px;}
.ws44_c00126{word-spacing:5.290560px;}
.ws48_c00126{word-spacing:5.591160px;}
.ws31_c00126{word-spacing:6.372720px;}
.ws2d_c00126{word-spacing:6.733440px;}
.ws2e_c00126{word-spacing:6.973920px;}
.ws22_c00126{word-spacing:7.560000px;}
.ws4a_c00126{word-spacing:8.176320px;}
.ws4b_c00126{word-spacing:8.777520px;}
.ws1d_c00126{word-spacing:8.928000px;}
.ws4f_c00126{word-spacing:9.498960px;}
.ws38_c00126{word-spacing:10.581120px;}
.ws2b_c00126{word-spacing:10.701360px;}
.ws1a_c00126{word-spacing:14.976000px;}
.ws1c_c00126{word-spacing:15.048000px;}
.ws1b_c00126{word-spacing:15.120000px;}
.ws42_c00126{word-spacing:16.833600px;}
.ws30_c00126{word-spacing:18.156240px;}
.ws13_c00126{word-spacing:18.648000px;}
.ws10_c00126{word-spacing:18.936000px;}
.ws12_c00126{word-spacing:19.008000px;}
.ws11_c00126{word-spacing:19.080000px;}
.ws14_c00126{word-spacing:19.656000px;}
.ws15_c00126{word-spacing:19.728000px;}
.ws35_c00126{word-spacing:24.408720px;}
.ws39_c00126{word-spacing:27.474840px;}
.ws3a_c00126{word-spacing:27.595080px;}
.ws46_c00126{word-spacing:30.060000px;}
.ws2c_c00126{word-spacing:30.781440px;}
.ws49_c00126{word-spacing:31.142160px;}
.ws3b_c00126{word-spacing:32.164200px;}
.ws45_c00126{word-spacing:32.524920px;}
.ws3f_c00126{word-spacing:35.170200px;}
.ws33_c00126{word-spacing:36.132120px;}
.ws4d_c00126{word-spacing:39.017880px;}
.ws29_c00126{word-spacing:43.346520px;}
.ws36_c00126{word-spacing:50.320440px;}
.ws41_c00126{word-spacing:62.765280px;}
.ws2a_c00126{word-spacing:67.935600px;}
._1_c00126{margin-left:-1.058400px;}
._0_c00126{width:1.220400px;}
._3_c00126{width:6.746400px;}
._4_c00126{width:7.776000px;}
._2_c00126{width:19.756800px;}
.fc1_c00126{color:transparent;}
.fc0_c00126{color:rgb(0,0,0);}
.fs0_c00126{font-size:54.000000px;}
.fs2_c00126{font-size:60.120000px;}
.fs1_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y18_c00126{bottom:3.240000px;}
.y20_c00126{bottom:3.420000px;}
.y22_c00126{bottom:3.510000px;}
.y15_c00126{bottom:5.220000px;}
.y17_c00126{bottom:20.520000px;}
.y1f_c00126{bottom:20.700000px;}
.y24_c00126{bottom:37.800000px;}
.y1e_c00126{bottom:37.980000px;}
.y1c_c00126{bottom:55.170000px;}
.y43_c00126{bottom:57.240000px;}
.y1a_c00126{bottom:72.270000px;}
.y1b_c00126{bottom:72.450000px;}
.y3e_c00126{bottom:106.920000px;}
.y3c_c00126{bottom:124.200000px;}
.y30_c00126{bottom:158.670000px;}
.y2f_c00126{bottom:175.950000px;}
.y42_c00126{bottom:183.150000px;}
.y39_c00126{bottom:193.140000px;}
.y25_c00126{bottom:198.450000px;}
.y38_c00126{bottom:210.420000px;}
.y36_c00126{bottom:227.700000px;}
.y41_c00126{bottom:236.430000px;}
.y2a_c00126{bottom:244.890000px;}
.y40_c00126{bottom:253.620000px;}
.y29_c00126{bottom:262.170000px;}
.y33_c00126{bottom:279.450000px;}
.y3f_c00126{bottom:288.090000px;}
.y26_c00126{bottom:296.460000px;}
.y27_c00126{bottom:296.640000px;}
.y3d_c00126{bottom:305.370000px;}
.y32_c00126{bottom:322.645680px;}
.y3b_c00126{bottom:339.831000px;}
.y31_c00126{bottom:339.840000px;}
.y3a_c00126{bottom:357.115500px;}
.y2e_c00126{bottom:374.400000px;}
.y2d_c00126{bottom:391.581000px;}
.y2c_c00126{bottom:408.865500px;}
.y37_c00126{bottom:408.870000px;}
.y2b_c00126{bottom:426.150000px;}
.y35_c00126{bottom:443.335500px;}
.y34_c00126{bottom:460.620000px;}
.y28_c00126{bottom:477.900000px;}
.y23_c00126{bottom:509.670000px;}
.y21_c00126{bottom:562.140000px;}
.y19_c00126{bottom:597.420000px;}
.y1d_c00126{bottom:635.400000px;}
.y16_c00126{bottom:685.890000px;}
.y13_c00126{bottom:709.830000px;}
.y14_c00126{bottom:722.610000px;}
.y12_c00126{bottom:747.990000px;}
.y11_c00126{bottom:768.690000px;}
.y10_c00126{bottom:799.920000px;}
.yf_c00126{bottom:830.970000px;}
.ye_c00126{bottom:861.930000px;}
.yd_c00126{bottom:892.980000px;}
.yc_c00126{bottom:924.030000px;}
.yb_c00126{bottom:955.080000px;}
.ya_c00126{bottom:986.130000px;}
.y9_c00126{bottom:1017.180000px;}
.y8_c00126{bottom:1048.230000px;}
.y7_c00126{bottom:1079.280000px;}
.y6_c00126{bottom:1110.330000px;}
.y5_c00126{bottom:1131.030000px;}
.y4_c00126{bottom:1150.920000px;}
.y3_c00126{bottom:1166.404500px;}
.y2_c00126{bottom:1181.970000px;}
.y1_c00126{bottom:1197.450000px;}
.h7_c00126{height:19.170000px;}
.h8_c00126{height:34.470000px;}
.hb_c00126{height:51.751500px;}
.h3_c00126{height:52.971680px;}
.h2_c00126{height:52.998047px;}
.ha_c00126{height:59.004492px;}
.h6_c00126{height:60.589687px;}
.h4_c00126{height:70.664062px;}
.h5_c00126{height:72.562500px;}
.h9_c00126{height:86.220000px;}
.hc_c00126{height:310.410000px;}
.h0_c00126{height:1262.880000px;}
.h1_c00126{height:1263.000000px;}
.w5_c00126{width:133.920000px;}
.w4_c00126{width:252.268500px;}
.w3_c00126{width:252.990000px;}
.w2_c00126{width:507.600000px;}
.w6_c00126{width:893.031000px;}
.w0_c00126{width:893.070000px;}
.w1_c00126{width:893.250000px;}
.x0_c00126{left:0.000000px;}
.xd_c00126{left:6.930000px;}
.xa_c00126{left:15.480000px;}
.x8_c00126{left:47.160000px;}
.xb_c00126{left:55.530000px;}
.x10_c00126{left:59.310000px;}
.xf_c00126{left:80.550000px;}
.x12_c00126{left:100.980000px;}
.x3_c00126{left:127.620000px;}
.xc_c00126{left:128.700000px;}
.x4_c00126{left:131.850000px;}
.x5_c00126{left:147.060000px;}
.x13_c00126{left:178.740000px;}
.x7_c00126{left:195.300000px;}
.x6_c00126{left:264.870000px;}
.xe_c00126{left:271.890000px;}
.x2_c00126{left:425.160000px;}
.x1_c00126{left:446.580000px;}
.x9_c00126{left:520.110000px;}
.x11_c00126{left:527.130000px;}
.x14_c00126{left:696.330000px;}
.x16_c00126{left:747.540000px;}
.x15_c00126{left:981.540000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls15_c00126{letter-spacing:-0.427520pt;}
.ls18_c00126{letter-spacing:-0.320640pt;}
.lse_c00126{letter-spacing:-0.256000pt;}
.ls12_c00126{letter-spacing:-0.213760pt;}
.lsf_c00126{letter-spacing:-0.192000pt;}
.ls17_c00126{letter-spacing:-0.160320pt;}
.lsd_c00126{letter-spacing:-0.128000pt;}
.ls14_c00126{letter-spacing:-0.106880pt;}
.lsb_c00126{letter-spacing:-0.096000pt;}
.ls10_c00126{letter-spacing:-0.064000pt;}
.ls11_c00126{letter-spacing:-0.053440pt;}
.lsa_c00126{letter-spacing:0.000000pt;}
.ls4_c00126{letter-spacing:0.047360pt;}
.lsc_c00126{letter-spacing:0.064000pt;}
.ls13_c00126{letter-spacing:0.106880pt;}
.ls3_c00126{letter-spacing:0.124480pt;}
.ls2_c00126{letter-spacing:0.128000pt;}
.ls16_c00126{letter-spacing:0.160320pt;}
.ls7_c00126{letter-spacing:1.389440pt;}
.ls5_c00126{letter-spacing:6.160000pt;}
.ls1_c00126{letter-spacing:8.000000pt;}
.ls0_c00126{letter-spacing:17.280000pt;}
.ls9_c00126{letter-spacing:26.319200pt;}
.ls8_c00126{letter-spacing:31.440000pt;}
.ls6_c00126{letter-spacing:32.080000pt;}
.ws2_c00126{word-spacing:-16.064000pt;}
.ws3_c00126{word-spacing:-15.936000pt;}
.ws0_c00126{word-spacing:-15.872000pt;}
.ws1_c00126{word-spacing:-15.744000pt;}
.ws9_c00126{word-spacing:-13.520320pt;}
.ws6_c00126{word-spacing:-13.466880pt;}
.ws8_c00126{word-spacing:-13.360000pt;}
.ws4_c00126{word-spacing:-13.306560pt;}
.wsc_c00126{word-spacing:-13.253120pt;}
.wsa_c00126{word-spacing:-13.199680pt;}
.ws5_c00126{word-spacing:-13.146240pt;}
.wsb_c00126{word-spacing:-13.039360pt;}
.ws7_c00126{word-spacing:-12.932480pt;}
.ws1e_c00126{word-spacing:-0.384000pt;}
.ws26_c00126{word-spacing:-0.374080pt;}
.ws24_c00126{word-spacing:-0.256000pt;}
.ws18_c00126{word-spacing:-0.128000pt;}
.ws3d_c00126{word-spacing:-0.106880pt;}
.ws1f_c00126{word-spacing:-0.064000pt;}
.ws2f_c00126{word-spacing:-0.053440pt;}
.wsd_c00126{word-spacing:0.000000pt;}
.ws28_c00126{word-spacing:0.053440pt;}
.ws23_c00126{word-spacing:0.064000pt;}
.ws27_c00126{word-spacing:0.106880pt;}
.wsf_c00126{word-spacing:0.144000pt;}
.ws19_c00126{word-spacing:0.192000pt;}
.ws25_c00126{word-spacing:0.213760pt;}
.wse_c00126{word-spacing:0.240000pt;}
.ws32_c00126{word-spacing:0.267200pt;}
.ws47_c00126{word-spacing:0.427520pt;}
.ws34_c00126{word-spacing:0.587840pt;}
.ws21_c00126{word-spacing:0.896000pt;}
.ws3e_c00126{word-spacing:0.908480pt;}
.ws20_c00126{word-spacing:0.960000pt;}
.ws3c_c00126{word-spacing:1.122240pt;}
.ws40_c00126{word-spacing:1.710080pt;}
.ws16_c00126{word-spacing:1.792000pt;}
.ws17_c00126{word-spacing:1.920000pt;}
.ws4e_c00126{word-spacing:2.030720pt;}
.ws37_c00126{word-spacing:2.672000pt;}
.ws4c_c00126{word-spacing:4.275200pt;}
.ws43_c00126{word-spacing:4.382080pt;}
.ws44_c00126{word-spacing:4.702720pt;}
.ws48_c00126{word-spacing:4.969920pt;}
.ws31_c00126{word-spacing:5.664640pt;}
.ws2d_c00126{word-spacing:5.985280pt;}
.ws2e_c00126{word-spacing:6.199040pt;}
.ws22_c00126{word-spacing:6.720000pt;}
.ws4a_c00126{word-spacing:7.267840pt;}
.ws4b_c00126{word-spacing:7.802240pt;}
.ws1d_c00126{word-spacing:7.936000pt;}
.ws4f_c00126{word-spacing:8.443520pt;}
.ws38_c00126{word-spacing:9.405440pt;}
.ws2b_c00126{word-spacing:9.512320pt;}
.ws1a_c00126{word-spacing:13.312000pt;}
.ws1c_c00126{word-spacing:13.376000pt;}
.ws1b_c00126{word-spacing:13.440000pt;}
.ws42_c00126{word-spacing:14.963200pt;}
.ws30_c00126{word-spacing:16.138880pt;}
.ws13_c00126{word-spacing:16.576000pt;}
.ws10_c00126{word-spacing:16.832000pt;}
.ws12_c00126{word-spacing:16.896000pt;}
.ws11_c00126{word-spacing:16.960000pt;}
.ws14_c00126{word-spacing:17.472000pt;}
.ws15_c00126{word-spacing:17.536000pt;}
.ws35_c00126{word-spacing:21.696640pt;}
.ws39_c00126{word-spacing:24.422080pt;}
.ws3a_c00126{word-spacing:24.528960pt;}
.ws46_c00126{word-spacing:26.720000pt;}
.ws2c_c00126{word-spacing:27.361280pt;}
.ws49_c00126{word-spacing:27.681920pt;}
.ws3b_c00126{word-spacing:28.590400pt;}
.ws45_c00126{word-spacing:28.911040pt;}
.ws3f_c00126{word-spacing:31.262400pt;}
.ws33_c00126{word-spacing:32.117440pt;}
.ws4d_c00126{word-spacing:34.682560pt;}
.ws29_c00126{word-spacing:38.530240pt;}
.ws36_c00126{word-spacing:44.729280pt;}
.ws41_c00126{word-spacing:55.791360pt;}
.ws2a_c00126{word-spacing:60.387200pt;}
._1_c00126{margin-left:-0.940800pt;}
._0_c00126{width:1.084800pt;}
._3_c00126{width:5.996800pt;}
._4_c00126{width:6.912000pt;}
._2_c00126{width:17.561600pt;}
.fs0_c00126{font-size:48.000000pt;}
.fs2_c00126{font-size:53.440000pt;}
.fs1_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y18_c00126{bottom:2.880000pt;}
.y20_c00126{bottom:3.040000pt;}
.y22_c00126{bottom:3.120000pt;}
.y15_c00126{bottom:4.640000pt;}
.y17_c00126{bottom:18.240000pt;}
.y1f_c00126{bottom:18.400000pt;}
.y24_c00126{bottom:33.600000pt;}
.y1e_c00126{bottom:33.760000pt;}
.y1c_c00126{bottom:49.040000pt;}
.y43_c00126{bottom:50.880000pt;}
.y1a_c00126{bottom:64.240000pt;}
.y1b_c00126{bottom:64.400000pt;}
.y3e_c00126{bottom:95.040000pt;}
.y3c_c00126{bottom:110.400000pt;}
.y30_c00126{bottom:141.040000pt;}
.y2f_c00126{bottom:156.400000pt;}
.y42_c00126{bottom:162.800000pt;}
.y39_c00126{bottom:171.680000pt;}
.y25_c00126{bottom:176.400000pt;}
.y38_c00126{bottom:187.040000pt;}
.y36_c00126{bottom:202.400000pt;}
.y41_c00126{bottom:210.160000pt;}
.y2a_c00126{bottom:217.680000pt;}
.y40_c00126{bottom:225.440000pt;}
.y29_c00126{bottom:233.040000pt;}
.y33_c00126{bottom:248.400000pt;}
.y3f_c00126{bottom:256.080000pt;}
.y26_c00126{bottom:263.520000pt;}
.y27_c00126{bottom:263.680000pt;}
.y3d_c00126{bottom:271.440000pt;}
.y32_c00126{bottom:286.796160pt;}
.y3b_c00126{bottom:302.072000pt;}
.y31_c00126{bottom:302.080000pt;}
.y3a_c00126{bottom:317.436000pt;}
.y2e_c00126{bottom:332.800000pt;}
.y2d_c00126{bottom:348.072000pt;}
.y2c_c00126{bottom:363.436000pt;}
.y37_c00126{bottom:363.440000pt;}
.y2b_c00126{bottom:378.800000pt;}
.y35_c00126{bottom:394.076000pt;}
.y34_c00126{bottom:409.440000pt;}
.y28_c00126{bottom:424.800000pt;}
.y23_c00126{bottom:453.040000pt;}
.y21_c00126{bottom:499.680000pt;}
.y19_c00126{bottom:531.040000pt;}
.y1d_c00126{bottom:564.800000pt;}
.y16_c00126{bottom:609.680000pt;}
.y13_c00126{bottom:630.960000pt;}
.y14_c00126{bottom:642.320000pt;}
.y12_c00126{bottom:664.880000pt;}
.y11_c00126{bottom:683.280000pt;}
.y10_c00126{bottom:711.040000pt;}
.yf_c00126{bottom:738.640000pt;}
.ye_c00126{bottom:766.160000pt;}
.yd_c00126{bottom:793.760000pt;}
.yc_c00126{bottom:821.360000pt;}
.yb_c00126{bottom:848.960000pt;}
.ya_c00126{bottom:876.560000pt;}
.y9_c00126{bottom:904.160000pt;}
.y8_c00126{bottom:931.760000pt;}
.y7_c00126{bottom:959.360000pt;}
.y6_c00126{bottom:986.960000pt;}
.y5_c00126{bottom:1005.360000pt;}
.y4_c00126{bottom:1023.040000pt;}
.y3_c00126{bottom:1036.804000pt;}
.y2_c00126{bottom:1050.640000pt;}
.y1_c00126{bottom:1064.400000pt;}
.h7_c00126{height:17.040000pt;}
.h8_c00126{height:30.640000pt;}
.hb_c00126{height:46.001333pt;}
.h3_c00126{height:47.085938pt;}
.h2_c00126{height:47.109375pt;}
.ha_c00126{height:52.448437pt;}
.h6_c00126{height:53.857500pt;}
.h4_c00126{height:62.812500pt;}
.h5_c00126{height:64.500000pt;}
.h9_c00126{height:76.640000pt;}
.hc_c00126{height:275.920000pt;}
.h0_c00126{height:1122.560000pt;}
.h1_c00126{height:1122.666667pt;}
.w5_c00126{width:119.040000pt;}
.w4_c00126{width:224.238667pt;}
.w3_c00126{width:224.880000pt;}
.w2_c00126{width:451.200000pt;}
.w6_c00126{width:793.805333pt;}
.w0_c00126{width:793.840000pt;}
.w1_c00126{width:794.000000pt;}
.x0_c00126{left:0.000000pt;}
.xd_c00126{left:6.160000pt;}
.xa_c00126{left:13.760000pt;}
.x8_c00126{left:41.920000pt;}
.xb_c00126{left:49.360000pt;}
.x10_c00126{left:52.720000pt;}
.xf_c00126{left:71.600000pt;}
.x12_c00126{left:89.760000pt;}
.x3_c00126{left:113.440000pt;}
.xc_c00126{left:114.400000pt;}
.x4_c00126{left:117.200000pt;}
.x5_c00126{left:130.720000pt;}
.x13_c00126{left:158.880000pt;}
.x7_c00126{left:173.600000pt;}
.x6_c00126{left:235.440000pt;}
.xe_c00126{left:241.680000pt;}
.x2_c00126{left:377.920000pt;}
.x1_c00126{left:396.960000pt;}
.x9_c00126{left:462.320000pt;}
.x11_c00126{left:468.560000pt;}
.x14_c00126{left:618.960000pt;}
.x16_c00126{left:664.480000pt;}
.x15_c00126{left:872.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_c00127 {
    display:none;
  }
  .loading-indicator_c00127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00127 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00127 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00127" -> "#page-container .classname_c00127")
 */
.pf_c00127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00127 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00127 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00127 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00127 {overflow:visible;}
  }
}
.c_c00127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00127 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00127:after { /* webkit #35443 */
  content: '';
}
.t_c00127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00127 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00127 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00127 { /* info for Javascript */
  display:none;
}
.l_c00127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00127:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00127;src:url('chunks/assets/font_a028a517bef09fb71f4f10b4.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_6f98ed939c6929383c7bba70.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00127{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00127{vertical-align:-61.938000px;}
.v3_c00127{vertical-align:-20.880000px;}
.v0_c00127{vertical-align:0.000000px;}
.v2_c00127{vertical-align:27.000000px;}
.ls12_c00127{letter-spacing:-0.420840px;}
.ls16_c00127{letter-spacing:-0.300600px;}
.ls19_c00127{letter-spacing:-0.288000px;}
.ls15_c00127{letter-spacing:-0.180360px;}
.ls11_c00127{letter-spacing:-0.120240px;}
.ls18_c00127{letter-spacing:-0.072000px;}
.ls13_c00127{letter-spacing:-0.060120px;}
.ls10_c00127{letter-spacing:0.000000px;}
.ls1_c00127{letter-spacing:0.053280px;}
.ls4_c00127{letter-spacing:0.060120px;}
.ls5_c00127{letter-spacing:0.072000px;}
.ls6_c00127{letter-spacing:0.079200px;}
.ls14_c00127{letter-spacing:0.120240px;}
.ls17_c00127{letter-spacing:0.144000px;}
.ls2_c00127{letter-spacing:0.180360px;}
.ls9_c00127{letter-spacing:0.191520px;}
.lsd_c00127{letter-spacing:0.198396px;}
.ls3_c00127{letter-spacing:0.228456px;}
.ls8_c00127{letter-spacing:0.360000px;}
.lsc_c00127{letter-spacing:0.781560px;}
.lsa_c00127{letter-spacing:6.120000px;}
.lsf_c00127{letter-spacing:7.635240px;}
.ls7_c00127{letter-spacing:8.280000px;}
.lse_c00127{letter-spacing:8.356680px;}
.lsb_c00127{letter-spacing:15.840000px;}
.ls0_c00127{letter-spacing:319.518000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00127{word-spacing:-18.072000px;}
.ws8_c00127{word-spacing:-18.000000px;}
.wsa_c00127{word-spacing:-17.928000px;}
.ws6_c00127{word-spacing:-15.210360px;}
.ws3_c00127{word-spacing:-15.150240px;}
.ws1_c00127{word-spacing:-15.030000px;}
.ws5_c00127{word-spacing:-14.969880px;}
.ws0_c00127{word-spacing:-14.909760px;}
.wsc_c00127{word-spacing:-14.849640px;}
.ws4_c00127{word-spacing:-14.729400px;}
.ws2_c00127{word-spacing:-14.609160px;}
.ws9_c00127{word-spacing:-12.161520px;}
.wsb_c00127{word-spacing:-9.720000px;}
.ws1d_c00127{word-spacing:-0.420840px;}
.ws3f_c00127{word-spacing:-0.360000px;}
.ws10_c00127{word-spacing:-0.180360px;}
.wse_c00127{word-spacing:-0.162000px;}
.ws39_c00127{word-spacing:-0.072000px;}
.wsd_c00127{word-spacing:0.000000px;}
.wsf_c00127{word-spacing:0.120240px;}
.ws17_c00127{word-spacing:0.180360px;}
.ws26_c00127{word-spacing:0.240480px;}
.ws44_c00127{word-spacing:0.288000px;}
.ws27_c00127{word-spacing:0.300600px;}
.ws49_c00127{word-spacing:0.901800px;}
.ws4a_c00127{word-spacing:1.022040px;}
.ws2e_c00127{word-spacing:1.262520px;}
.ws2d_c00127{word-spacing:1.683360px;}
.ws2c_c00127{word-spacing:2.044080px;}
.ws34_c00127{word-spacing:3.366720px;}
.ws3e_c00127{word-spacing:3.600000px;}
.ws14_c00127{word-spacing:3.847680px;}
.ws3a_c00127{word-spacing:3.888000px;}
.ws3b_c00127{word-spacing:3.960000px;}
.ws21_c00127{word-spacing:5.290560px;}
.ws43_c00127{word-spacing:5.760000px;}
.ws20_c00127{word-spacing:5.891760px;}
.ws42_c00127{word-spacing:6.120000px;}
.ws18_c00127{word-spacing:6.733440px;}
.ws37_c00127{word-spacing:6.793560px;}
.ws31_c00127{word-spacing:7.334640px;}
.ws38_c00127{word-spacing:7.394760px;}
.ws32_c00127{word-spacing:7.695360px;}
.ws33_c00127{word-spacing:7.755480px;}
.ws4d_c00127{word-spacing:8.176320px;}
.ws3c_c00127{word-spacing:8.208000px;}
.ws3d_c00127{word-spacing:8.496000px;}
.ws4b_c00127{word-spacing:8.537040px;}
.ws4e_c00127{word-spacing:8.777520px;}
.ws4c_c00127{word-spacing:9.138240px;}
.ws40_c00127{word-spacing:9.720000px;}
.ws23_c00127{word-spacing:11.663280px;}
.ws41_c00127{word-spacing:12.240000px;}
.ws47_c00127{word-spacing:12.528000px;}
.ws1c_c00127{word-spacing:13.226400px;}
.ws2b_c00127{word-spacing:13.887720px;}
.ws46_c00127{word-spacing:16.128000px;}
.ws45_c00127{word-spacing:16.200000px;}
.ws30_c00127{word-spacing:17.555040px;}
.ws2f_c00127{word-spacing:17.795520px;}
.ws11_c00127{word-spacing:19.659240px;}
.ws1b_c00127{word-spacing:21.522960px;}
.ws1f_c00127{word-spacing:22.484880px;}
.ws48_c00127{word-spacing:22.680000px;}
.ws16_c00127{word-spacing:26.813520px;}
.ws29_c00127{word-spacing:28.256400px;}
.ws36_c00127{word-spacing:37.695240px;}
.ws19_c00127{word-spacing:45.510840px;}
.ws1a_c00127{word-spacing:45.631080px;}
.ws13_c00127{word-spacing:45.991800px;}
.ws22_c00127{word-spacing:46.713240px;}
.ws24_c00127{word-spacing:47.073960px;}
.ws25_c00127{word-spacing:47.434680px;}
.ws35_c00127{word-spacing:48.035880px;}
.ws2a_c00127{word-spacing:50.621040px;}
.ws1e_c00127{word-spacing:54.288360px;}
.ws12_c00127{word-spacing:60.781320px;}
.ws28_c00127{word-spacing:63.486720px;}
.ws15_c00127{word-spacing:66.011760px;}
._2_c00127{margin-left:-1.173636px;}
._0_c00127{width:1.016028px;}
._6_c00127{width:2.736000px;}
._4_c00127{width:3.888000px;}
._7_c00127{width:6.687972px;}
._5_c00127{width:8.013636px;}
._a_c00127{width:9.156276px;}
._3_c00127{width:11.846232px;}
._8_c00127{width:16.056000px;}
._1_c00127{width:19.603800px;}
._9_c00127{width:22.125636px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs4_c00127{font-size:38.880000px;}
.fs3_c00127{font-size:47.880000px;}
.fs0_c00127{font-size:54.000000px;}
.fs2_c00127{font-size:60.120000px;}
.fs1_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y14_c00127{bottom:3.510000px;}
.y13_c00127{bottom:20.700000px;}
.y12_c00127{bottom:37.980000px;}
.y11_c00127{bottom:55.260000px;}
.y3b_c00127{bottom:57.240000px;}
.yf_c00127{bottom:72.450000px;}
.y1f_c00127{bottom:106.920000px;}
.yd_c00127{bottom:107.010000px;}
.y3a_c00127{bottom:109.782360px;}
.yc_c00127{bottom:124.200000px;}
.y39_c00127{bottom:126.976680px;}
.y18_c00127{bottom:141.300000px;}
.y1c_c00127{bottom:141.480000px;}
.y38_c00127{bottom:144.261180px;}
.ya_c00127{bottom:158.760000px;}
.y37_c00127{bottom:161.545680px;}
.y9_c00127{bottom:175.950000px;}
.y36_c00127{bottom:183.960000px;}
.y6_c00127{bottom:193.050000px;}
.y7_c00127{bottom:193.230000px;}
.y3c_c00127{bottom:196.650000px;}
.y35_c00127{bottom:261.450000px;}
.y34_c00127{bottom:292.500000px;}
.y33_c00127{bottom:323.550000px;}
.y32_c00127{bottom:354.600000px;}
.y31_c00127{bottom:385.650000px;}
.y30_c00127{bottom:416.700000px;}
.y2f_c00127{bottom:447.750000px;}
.y2e_c00127{bottom:478.800000px;}
.y2d_c00127{bottom:509.760000px;}
.y2c_c00127{bottom:540.810000px;}
.y2b_c00127{bottom:571.860000px;}
.y2a_c00127{bottom:602.910000px;}
.y29_c00127{bottom:633.960000px;}
.y28_c00127{bottom:665.010000px;}
.y27_c00127{bottom:695.880000px;}
.y26_c00127{bottom:727.110000px;}
.y25_c00127{bottom:747.180000px;}
.y17_c00127{bottom:763.200000px;}
.y24_c00127{bottom:783.900000px;}
.y23_c00127{bottom:801.166680px;}
.y22_c00127{bottom:818.451180px;}
.y21_c00127{bottom:835.645500px;}
.y1b_c00127{bottom:852.741180px;}
.y20_c00127{bottom:852.930000px;}
.y1a_c00127{bottom:869.935500px;}
.y1e_c00127{bottom:870.115500px;}
.y19_c00127{bottom:887.220000px;}
.y1d_c00127{bottom:887.400000px;}
.y5_c00127{bottom:919.170000px;}
.y10_c00127{bottom:974.430000px;}
.y16_c00127{bottom:991.615500px;}
.ye_c00127{bottom:1008.900000px;}
.y15_c00127{bottom:1026.180000px;}
.yb_c00127{bottom:1060.650000px;}
.y8_c00127{bottom:1095.120000px;}
.y4_c00127{bottom:1131.030000px;}
.y3_c00127{bottom:1150.915500px;}
.y2_c00127{bottom:1166.400000px;}
.y1_c00127{bottom:1197.450000px;}
.ha_c00127{height:38.158594px;}
.h2_c00127{height:52.998047px;}
.h6_c00127{height:59.004492px;}
.h5_c00127{height:60.589687px;}
.h3_c00127{height:70.664062px;}
.h8_c00127{height:72.562500px;}
.h9_c00127{height:73.991602px;}
.h7_c00127{height:155.250000px;}
.h4_c00127{height:207.000000px;}
.h0_c00127{height:1262.880000px;}
.h1_c00127{height:1263.000000px;}
.w2_c00127{width:133.920000px;}
.w4_c00127{width:252.540000px;}
.w3_c00127{width:252.810000px;}
.w0_c00127{width:893.070000px;}
.w1_c00127{width:893.250000px;}
.x0_c00127{left:0.000000px;}
.x4_c00127{left:6.930000px;}
.xd_c00127{left:17.910000px;}
.x7_c00127{left:44.640000px;}
.xb_c00127{left:117.900000px;}
.x2_c00127{left:127.620000px;}
.x3_c00127{left:128.700000px;}
.x8_c00127{left:133.110000px;}
.xc_c00127{left:135.630000px;}
.x5_c00127{left:264.870000px;}
.x6_c00127{left:271.890000px;}
.x1_c00127{left:446.580000px;}
.x9_c00127{left:519.930000px;}
.xa_c00127{left:526.860000px;}
@media print{
.v1_c00127{vertical-align:-55.056000pt;}
.v3_c00127{vertical-align:-18.560000pt;}
.v0_c00127{vertical-align:0.000000pt;}
.v2_c00127{vertical-align:24.000000pt;}
.ls12_c00127{letter-spacing:-0.374080pt;}
.ls16_c00127{letter-spacing:-0.267200pt;}
.ls19_c00127{letter-spacing:-0.256000pt;}
.ls15_c00127{letter-spacing:-0.160320pt;}
.ls11_c00127{letter-spacing:-0.106880pt;}
.ls18_c00127{letter-spacing:-0.064000pt;}
.ls13_c00127{letter-spacing:-0.053440pt;}
.ls10_c00127{letter-spacing:0.000000pt;}
.ls1_c00127{letter-spacing:0.047360pt;}
.ls4_c00127{letter-spacing:0.053440pt;}
.ls5_c00127{letter-spacing:0.064000pt;}
.ls6_c00127{letter-spacing:0.070400pt;}
.ls14_c00127{letter-spacing:0.106880pt;}
.ls17_c00127{letter-spacing:0.128000pt;}
.ls2_c00127{letter-spacing:0.160320pt;}
.ls9_c00127{letter-spacing:0.170240pt;}
.lsd_c00127{letter-spacing:0.176352pt;}
.ls3_c00127{letter-spacing:0.203072pt;}
.ls8_c00127{letter-spacing:0.320000pt;}
.lsc_c00127{letter-spacing:0.694720pt;}
.lsa_c00127{letter-spacing:5.440000pt;}
.lsf_c00127{letter-spacing:6.786880pt;}
.ls7_c00127{letter-spacing:7.360000pt;}
.lse_c00127{letter-spacing:7.428160pt;}
.lsb_c00127{letter-spacing:14.080000pt;}
.ls0_c00127{letter-spacing:284.016000pt;}
.ws7_c00127{word-spacing:-16.064000pt;}
.ws8_c00127{word-spacing:-16.000000pt;}
.wsa_c00127{word-spacing:-15.936000pt;}
.ws6_c00127{word-spacing:-13.520320pt;}
.ws3_c00127{word-spacing:-13.466880pt;}
.ws1_c00127{word-spacing:-13.360000pt;}
.ws5_c00127{word-spacing:-13.306560pt;}
.ws0_c00127{word-spacing:-13.253120pt;}
.wsc_c00127{word-spacing:-13.199680pt;}
.ws4_c00127{word-spacing:-13.092800pt;}
.ws2_c00127{word-spacing:-12.985920pt;}
.ws9_c00127{word-spacing:-10.810240pt;}
.wsb_c00127{word-spacing:-8.640000pt;}
.ws1d_c00127{word-spacing:-0.374080pt;}
.ws3f_c00127{word-spacing:-0.320000pt;}
.ws10_c00127{word-spacing:-0.160320pt;}
.wse_c00127{word-spacing:-0.144000pt;}
.ws39_c00127{word-spacing:-0.064000pt;}
.wsd_c00127{word-spacing:0.000000pt;}
.wsf_c00127{word-spacing:0.106880pt;}
.ws17_c00127{word-spacing:0.160320pt;}
.ws26_c00127{word-spacing:0.213760pt;}
.ws44_c00127{word-spacing:0.256000pt;}
.ws27_c00127{word-spacing:0.267200pt;}
.ws49_c00127{word-spacing:0.801600pt;}
.ws4a_c00127{word-spacing:0.908480pt;}
.ws2e_c00127{word-spacing:1.122240pt;}
.ws2d_c00127{word-spacing:1.496320pt;}
.ws2c_c00127{word-spacing:1.816960pt;}
.ws34_c00127{word-spacing:2.992640pt;}
.ws3e_c00127{word-spacing:3.200000pt;}
.ws14_c00127{word-spacing:3.420160pt;}
.ws3a_c00127{word-spacing:3.456000pt;}
.ws3b_c00127{word-spacing:3.520000pt;}
.ws21_c00127{word-spacing:4.702720pt;}
.ws43_c00127{word-spacing:5.120000pt;}
.ws20_c00127{word-spacing:5.237120pt;}
.ws42_c00127{word-spacing:5.440000pt;}
.ws18_c00127{word-spacing:5.985280pt;}
.ws37_c00127{word-spacing:6.038720pt;}
.ws31_c00127{word-spacing:6.519680pt;}
.ws38_c00127{word-spacing:6.573120pt;}
.ws32_c00127{word-spacing:6.840320pt;}
.ws33_c00127{word-spacing:6.893760pt;}
.ws4d_c00127{word-spacing:7.267840pt;}
.ws3c_c00127{word-spacing:7.296000pt;}
.ws3d_c00127{word-spacing:7.552000pt;}
.ws4b_c00127{word-spacing:7.588480pt;}
.ws4e_c00127{word-spacing:7.802240pt;}
.ws4c_c00127{word-spacing:8.122880pt;}
.ws40_c00127{word-spacing:8.640000pt;}
.ws23_c00127{word-spacing:10.367360pt;}
.ws41_c00127{word-spacing:10.880000pt;}
.ws47_c00127{word-spacing:11.136000pt;}
.ws1c_c00127{word-spacing:11.756800pt;}
.ws2b_c00127{word-spacing:12.344640pt;}
.ws46_c00127{word-spacing:14.336000pt;}
.ws45_c00127{word-spacing:14.400000pt;}
.ws30_c00127{word-spacing:15.604480pt;}
.ws2f_c00127{word-spacing:15.818240pt;}
.ws11_c00127{word-spacing:17.474880pt;}
.ws1b_c00127{word-spacing:19.131520pt;}
.ws1f_c00127{word-spacing:19.986560pt;}
.ws48_c00127{word-spacing:20.160000pt;}
.ws16_c00127{word-spacing:23.834240pt;}
.ws29_c00127{word-spacing:25.116800pt;}
.ws36_c00127{word-spacing:33.506880pt;}
.ws19_c00127{word-spacing:40.454080pt;}
.ws1a_c00127{word-spacing:40.560960pt;}
.ws13_c00127{word-spacing:40.881600pt;}
.ws22_c00127{word-spacing:41.522880pt;}
.ws24_c00127{word-spacing:41.843520pt;}
.ws25_c00127{word-spacing:42.164160pt;}
.ws35_c00127{word-spacing:42.698560pt;}
.ws2a_c00127{word-spacing:44.996480pt;}
.ws1e_c00127{word-spacing:48.256320pt;}
.ws12_c00127{word-spacing:54.027840pt;}
.ws28_c00127{word-spacing:56.432640pt;}
.ws15_c00127{word-spacing:58.677120pt;}
._2_c00127{margin-left:-1.043232pt;}
._0_c00127{width:0.903136pt;}
._6_c00127{width:2.432000pt;}
._4_c00127{width:3.456000pt;}
._7_c00127{width:5.944864pt;}
._5_c00127{width:7.123232pt;}
._a_c00127{width:8.138912pt;}
._3_c00127{width:10.529984pt;}
._8_c00127{width:14.272000pt;}
._1_c00127{width:17.425600pt;}
._9_c00127{width:19.667232pt;}
.fs4_c00127{font-size:34.560000pt;}
.fs3_c00127{font-size:42.560000pt;}
.fs0_c00127{font-size:48.000000pt;}
.fs2_c00127{font-size:53.440000pt;}
.fs1_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y14_c00127{bottom:3.120000pt;}
.y13_c00127{bottom:18.400000pt;}
.y12_c00127{bottom:33.760000pt;}
.y11_c00127{bottom:49.120000pt;}
.y3b_c00127{bottom:50.880000pt;}
.yf_c00127{bottom:64.400000pt;}
.y1f_c00127{bottom:95.040000pt;}
.yd_c00127{bottom:95.120000pt;}
.y3a_c00127{bottom:97.584320pt;}
.yc_c00127{bottom:110.400000pt;}
.y39_c00127{bottom:112.868160pt;}
.y18_c00127{bottom:125.600000pt;}
.y1c_c00127{bottom:125.760000pt;}
.y38_c00127{bottom:128.232160pt;}
.ya_c00127{bottom:141.120000pt;}
.y37_c00127{bottom:143.596160pt;}
.y9_c00127{bottom:156.400000pt;}
.y36_c00127{bottom:163.520000pt;}
.y6_c00127{bottom:171.600000pt;}
.y7_c00127{bottom:171.760000pt;}
.y3c_c00127{bottom:174.800000pt;}
.y35_c00127{bottom:232.400000pt;}
.y34_c00127{bottom:260.000000pt;}
.y33_c00127{bottom:287.600000pt;}
.y32_c00127{bottom:315.200000pt;}
.y31_c00127{bottom:342.800000pt;}
.y30_c00127{bottom:370.400000pt;}
.y2f_c00127{bottom:398.000000pt;}
.y2e_c00127{bottom:425.600000pt;}
.y2d_c00127{bottom:453.120000pt;}
.y2c_c00127{bottom:480.720000pt;}
.y2b_c00127{bottom:508.320000pt;}
.y2a_c00127{bottom:535.920000pt;}
.y29_c00127{bottom:563.520000pt;}
.y28_c00127{bottom:591.120000pt;}
.y27_c00127{bottom:618.560000pt;}
.y26_c00127{bottom:646.320000pt;}
.y25_c00127{bottom:664.160000pt;}
.y17_c00127{bottom:678.400000pt;}
.y24_c00127{bottom:696.800000pt;}
.y23_c00127{bottom:712.148160pt;}
.y22_c00127{bottom:727.512160pt;}
.y21_c00127{bottom:742.796000pt;}
.y1b_c00127{bottom:757.992160pt;}
.y20_c00127{bottom:758.160000pt;}
.y1a_c00127{bottom:773.276000pt;}
.y1e_c00127{bottom:773.436000pt;}
.y19_c00127{bottom:788.640000pt;}
.y1d_c00127{bottom:788.800000pt;}
.y5_c00127{bottom:817.040000pt;}
.y10_c00127{bottom:866.160000pt;}
.y16_c00127{bottom:881.436000pt;}
.ye_c00127{bottom:896.800000pt;}
.y15_c00127{bottom:912.160000pt;}
.yb_c00127{bottom:942.800000pt;}
.y8_c00127{bottom:973.440000pt;}
.y4_c00127{bottom:1005.360000pt;}
.y3_c00127{bottom:1023.036000pt;}
.y2_c00127{bottom:1036.800000pt;}
.y1_c00127{bottom:1064.400000pt;}
.ha_c00127{height:33.918750pt;}
.h2_c00127{height:47.109375pt;}
.h6_c00127{height:52.448437pt;}
.h5_c00127{height:53.857500pt;}
.h3_c00127{height:62.812500pt;}
.h8_c00127{height:64.500000pt;}
.h9_c00127{height:65.770313pt;}
.h7_c00127{height:138.000000pt;}
.h4_c00127{height:184.000000pt;}
.h0_c00127{height:1122.560000pt;}
.h1_c00127{height:1122.666667pt;}
.w2_c00127{width:119.040000pt;}
.w4_c00127{width:224.480000pt;}
.w3_c00127{width:224.720000pt;}
.w0_c00127{width:793.840000pt;}
.w1_c00127{width:794.000000pt;}
.x0_c00127{left:0.000000pt;}
.x4_c00127{left:6.160000pt;}
.xd_c00127{left:15.920000pt;}
.x7_c00127{left:39.680000pt;}
.xb_c00127{left:104.800000pt;}
.x2_c00127{left:113.440000pt;}
.x3_c00127{left:114.400000pt;}
.x8_c00127{left:118.320000pt;}
.xc_c00127{left:120.560000pt;}
.x5_c00127{left:235.440000pt;}
.x6_c00127{left:241.680000pt;}
.x1_c00127{left:396.960000pt;}
.x9_c00127{left:462.160000pt;}
.xa_c00127{left:468.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_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_009de893a66c96066c61767b.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_a3bce62161b250b565a65b7b.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c00128{letter-spacing:-0.576000px;}
.ls15_c00128{letter-spacing:-0.420840px;}
.ls16_c00128{letter-spacing:-0.360000px;}
.lse_c00128{letter-spacing:-0.288000px;}
.ls14_c00128{letter-spacing:-0.240480px;}
.ls18_c00128{letter-spacing:-0.216000px;}
.ls13_c00128{letter-spacing:-0.180360px;}
.ls10_c00128{letter-spacing:-0.120240px;}
.lsc_c00128{letter-spacing:-0.108000px;}
.lsf_c00128{letter-spacing:-0.072000px;}
.ls12_c00128{letter-spacing:-0.060120px;}
.lsb_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:0.072000px;}
.ls5_c00128{letter-spacing:0.120240px;}
.ls4_c00128{letter-spacing:0.144000px;}
.ls11_c00128{letter-spacing:0.180360px;}
.ls19_c00128{letter-spacing:0.360000px;}
.ls8_c00128{letter-spacing:0.432000px;}
.ls17_c00128{letter-spacing:0.504000px;}
.ls6_c00128{letter-spacing:1.440000px;}
.ls9_c00128{letter-spacing:5.760000px;}
.ls2_c00128{letter-spacing:6.840000px;}
.lsa_c00128{letter-spacing:7.560000px;}
.ls7_c00128{letter-spacing:9.000000px;}
.ls3_c00128{letter-spacing:18.000000px;}
.ls1_c00128{letter-spacing:21.240000px;}
.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;}
}
.wsb_c00128{word-spacing:-18.432000px;}
.wsc_c00128{word-spacing:-18.144000px;}
.ws3_c00128{word-spacing:-18.072000px;}
.ws2_c00128{word-spacing:-18.000000px;}
.ws1_c00128{word-spacing:-17.928000px;}
.wsd_c00128{word-spacing:-17.640000px;}
.ws0_c00128{word-spacing:-17.424000px;}
.ws5_c00128{word-spacing:-15.210360px;}
.ws7_c00128{word-spacing:-15.150240px;}
.ws6_c00128{word-spacing:-14.969880px;}
.ws4_c00128{word-spacing:-14.909760px;}
.wsa_c00128{word-spacing:-14.849640px;}
.ws8_c00128{word-spacing:-14.789520px;}
.ws9_c00128{word-spacing:-14.609160px;}
.ws34_c00128{word-spacing:-0.504000px;}
.ws22_c00128{word-spacing:-0.420840px;}
.ws42_c00128{word-spacing:-0.360000px;}
.ws21_c00128{word-spacing:-0.180360px;}
.ws1b_c00128{word-spacing:-0.144000px;}
.ws1a_c00128{word-spacing:-0.072000px;}
.ws1e_c00128{word-spacing:-0.060120px;}
.wse_c00128{word-spacing:0.000000px;}
.ws1c_c00128{word-spacing:0.072000px;}
.ws1f_c00128{word-spacing:0.120240px;}
.ws10_c00128{word-spacing:0.162000px;}
.ws20_c00128{word-spacing:0.240480px;}
.wsf_c00128{word-spacing:0.270000px;}
.ws14_c00128{word-spacing:0.288000px;}
.ws1d_c00128{word-spacing:0.300600px;}
.ws26_c00128{word-spacing:0.576000px;}
.ws2c_c00128{word-spacing:0.720000px;}
.ws23_c00128{word-spacing:1.368000px;}
.ws24_c00128{word-spacing:1.440000px;}
.ws44_c00128{word-spacing:1.728000px;}
.ws11_c00128{word-spacing:2.088000px;}
.ws25_c00128{word-spacing:3.600000px;}
.ws2e_c00128{word-spacing:4.320000px;}
.ws2d_c00128{word-spacing:4.608000px;}
.ws2f_c00128{word-spacing:4.680000px;}
.ws30_c00128{word-spacing:4.896000px;}
.ws3e_c00128{word-spacing:5.688000px;}
.ws15_c00128{word-spacing:6.408000px;}
.ws16_c00128{word-spacing:6.768000px;}
.ws45_c00128{word-spacing:7.488000px;}
.ws46_c00128{word-spacing:7.560000px;}
.ws2a_c00128{word-spacing:8.280000px;}
.ws2b_c00128{word-spacing:8.496000px;}
.ws29_c00128{word-spacing:8.568000px;}
.ws17_c00128{word-spacing:8.640000px;}
.ws27_c00128{word-spacing:9.000000px;}
.ws37_c00128{word-spacing:9.216000px;}
.ws36_c00128{word-spacing:9.288000px;}
.ws35_c00128{word-spacing:9.360000px;}
.ws41_c00128{word-spacing:12.528000px;}
.ws3f_c00128{word-spacing:12.960000px;}
.ws3d_c00128{word-spacing:13.248000px;}
.ws40_c00128{word-spacing:13.320000px;}
.ws3b_c00128{word-spacing:13.608000px;}
.ws3c_c00128{word-spacing:13.680000px;}
.ws43_c00128{word-spacing:15.840000px;}
.ws39_c00128{word-spacing:16.200000px;}
.ws38_c00128{word-spacing:16.488000px;}
.ws3a_c00128{word-spacing:16.560000px;}
.ws32_c00128{word-spacing:16.848000px;}
.ws31_c00128{word-spacing:17.280000px;}
.ws19_c00128{word-spacing:17.928000px;}
.ws18_c00128{word-spacing:18.000000px;}
.ws33_c00128{word-spacing:19.728000px;}
.ws12_c00128{word-spacing:21.168000px;}
.ws13_c00128{word-spacing:21.240000px;}
.ws28_c00128{word-spacing:21.960000px;}
._1_c00128{margin-left:-1.058400px;}
._0_c00128{width:1.220400px;}
._3_c00128{width:3.168000px;}
._5_c00128{width:4.240800px;}
._7_c00128{width:6.912000px;}
._4_c00128{width:9.072000px;}
._6_c00128{width:13.276800px;}
._2_c00128{width:21.794400px;}
.fc0_c00128{color:rgb(0,0,0);}
.fs0_c00128{font-size:54.000000px;}
.fs2_c00128{font-size:60.120000px;}
.fs1_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y11_c00128{bottom:4.590000px;}
.y18_c00128{bottom:4.769850px;}
.y12_c00128{bottom:4.770000px;}
.y14_c00128{bottom:5.580000px;}
.y1a_c00128{bottom:5.670000px;}
.y15_c00128{bottom:5.760000px;}
.y1b_c00128{bottom:5.850000px;}
.yf_c00128{bottom:9.630000px;}
.y33_c00128{bottom:57.240000px;}
.y32_c00128{bottom:110.700000px;}
.y31_c00128{bottom:141.750000px;}
.y30_c00128{bottom:172.800000px;}
.y2f_c00128{bottom:203.850000px;}
.y2e_c00128{bottom:234.900000px;}
.y2d_c00128{bottom:265.950000px;}
.y2c_c00128{bottom:297.000000px;}
.y2b_c00128{bottom:328.050000px;}
.y2a_c00128{bottom:359.010000px;}
.y29_c00128{bottom:390.060000px;}
.y28_c00128{bottom:421.110000px;}
.y27_c00128{bottom:452.160000px;}
.y26_c00128{bottom:483.210000px;}
.y25_c00128{bottom:514.260000px;}
.y24_c00128{bottom:545.310000px;}
.y23_c00128{bottom:576.360000px;}
.y22_c00128{bottom:607.410000px;}
.y21_c00128{bottom:638.460000px;}
.y20_c00128{bottom:669.510000px;}
.y1f_c00128{bottom:700.560000px;}
.y1e_c00128{bottom:720.621180px;}
.y1d_c00128{bottom:737.815500px;}
.y1c_c00128{bottom:755.100000px;}
.y19_c00128{bottom:771.120000px;}
.y17_c00128{bottom:791.460000px;}
.y16_c00128{bottom:811.440000px;}
.y13_c00128{bottom:831.510000px;}
.y10_c00128{bottom:852.570000px;}
.ye_c00128{bottom:873.360000px;}
.yd_c00128{bottom:903.150000px;}
.yc_c00128{bottom:923.850000px;}
.yb_c00128{bottom:955.080000px;}
.ya_c00128{bottom:986.130000px;}
.y9_c00128{bottom:1017.180000px;}
.y8_c00128{bottom:1048.230000px;}
.y7_c00128{bottom:1079.280000px;}
.y6_c00128{bottom:1110.330000px;}
.y5_c00128{bottom:1131.030000px;}
.y4_c00128{bottom:1150.920000px;}
.y3_c00128{bottom:1166.404500px;}
.y2_c00128{bottom:1181.970000px;}
.y1_c00128{bottom:1197.450000px;}
.hb_c00128{height:18.540000px;}
.h8_c00128{height:18.541500px;}
.ha_c00128{height:19.530000px;}
.hc_c00128{height:19.620000px;}
.h6_c00128{height:23.580000px;}
.h3_c00128{height:52.971680px;}
.h2_c00128{height:52.998047px;}
.h9_c00128{height:59.004492px;}
.h7_c00128{height:60.589687px;}
.h4_c00128{height:70.664062px;}
.h5_c00128{height:72.562500px;}
.h0_c00128{height:1262.880000px;}
.h1_c00128{height:1263.000000px;}
.w5_c00128{width:125.370000px;}
.w4_c00128{width:146.610000px;}
.w2_c00128{width:152.191500px;}
.w3_c00128{width:160.831500px;}
.w0_c00128{width:893.070000px;}
.w1_c00128{width:893.250000px;}
.x0_c00128{left:0.000000px;}
.xe_c00128{left:7.020000px;}
.xd_c00128{left:27.900000px;}
.xb_c00128{left:35.640000px;}
.x10_c00128{left:45.180000px;}
.x13_c00128{left:48.150000px;}
.x9_c00128{left:50.220000px;}
.x12_c00128{left:52.110000px;}
.x11_c00128{left:55.800000px;}
.xf_c00128{left:59.220000px;}
.x7_c00128{left:60.930000px;}
.x3_c00128{left:127.620000px;}
.x4_c00128{left:136.350000px;}
.x6_c00128{left:151.380000px;}
.x5_c00128{left:158.580000px;}
.x8_c00128{left:305.820000px;}
.x2_c00128{left:425.160000px;}
.x1_c00128{left:446.580000px;}
.xa_c00128{left:468.900000px;}
.xc_c00128{left:617.760000px;}
.x14_c00128{left:747.540000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.lsd_c00128{letter-spacing:-0.512000pt;}
.ls15_c00128{letter-spacing:-0.374080pt;}
.ls16_c00128{letter-spacing:-0.320000pt;}
.lse_c00128{letter-spacing:-0.256000pt;}
.ls14_c00128{letter-spacing:-0.213760pt;}
.ls18_c00128{letter-spacing:-0.192000pt;}
.ls13_c00128{letter-spacing:-0.160320pt;}
.ls10_c00128{letter-spacing:-0.106880pt;}
.lsc_c00128{letter-spacing:-0.096000pt;}
.lsf_c00128{letter-spacing:-0.064000pt;}
.ls12_c00128{letter-spacing:-0.053440pt;}
.lsb_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:0.064000pt;}
.ls5_c00128{letter-spacing:0.106880pt;}
.ls4_c00128{letter-spacing:0.128000pt;}
.ls11_c00128{letter-spacing:0.160320pt;}
.ls19_c00128{letter-spacing:0.320000pt;}
.ls8_c00128{letter-spacing:0.384000pt;}
.ls17_c00128{letter-spacing:0.448000pt;}
.ls6_c00128{letter-spacing:1.280000pt;}
.ls9_c00128{letter-spacing:5.120000pt;}
.ls2_c00128{letter-spacing:6.080000pt;}
.lsa_c00128{letter-spacing:6.720000pt;}
.ls7_c00128{letter-spacing:8.000000pt;}
.ls3_c00128{letter-spacing:16.000000pt;}
.ls1_c00128{letter-spacing:18.880000pt;}
.wsb_c00128{word-spacing:-16.384000pt;}
.wsc_c00128{word-spacing:-16.128000pt;}
.ws3_c00128{word-spacing:-16.064000pt;}
.ws2_c00128{word-spacing:-16.000000pt;}
.ws1_c00128{word-spacing:-15.936000pt;}
.wsd_c00128{word-spacing:-15.680000pt;}
.ws0_c00128{word-spacing:-15.488000pt;}
.ws5_c00128{word-spacing:-13.520320pt;}
.ws7_c00128{word-spacing:-13.466880pt;}
.ws6_c00128{word-spacing:-13.306560pt;}
.ws4_c00128{word-spacing:-13.253120pt;}
.wsa_c00128{word-spacing:-13.199680pt;}
.ws8_c00128{word-spacing:-13.146240pt;}
.ws9_c00128{word-spacing:-12.985920pt;}
.ws34_c00128{word-spacing:-0.448000pt;}
.ws22_c00128{word-spacing:-0.374080pt;}
.ws42_c00128{word-spacing:-0.320000pt;}
.ws21_c00128{word-spacing:-0.160320pt;}
.ws1b_c00128{word-spacing:-0.128000pt;}
.ws1a_c00128{word-spacing:-0.064000pt;}
.ws1e_c00128{word-spacing:-0.053440pt;}
.wse_c00128{word-spacing:0.000000pt;}
.ws1c_c00128{word-spacing:0.064000pt;}
.ws1f_c00128{word-spacing:0.106880pt;}
.ws10_c00128{word-spacing:0.144000pt;}
.ws20_c00128{word-spacing:0.213760pt;}
.wsf_c00128{word-spacing:0.240000pt;}
.ws14_c00128{word-spacing:0.256000pt;}
.ws1d_c00128{word-spacing:0.267200pt;}
.ws26_c00128{word-spacing:0.512000pt;}
.ws2c_c00128{word-spacing:0.640000pt;}
.ws23_c00128{word-spacing:1.216000pt;}
.ws24_c00128{word-spacing:1.280000pt;}
.ws44_c00128{word-spacing:1.536000pt;}
.ws11_c00128{word-spacing:1.856000pt;}
.ws25_c00128{word-spacing:3.200000pt;}
.ws2e_c00128{word-spacing:3.840000pt;}
.ws2d_c00128{word-spacing:4.096000pt;}
.ws2f_c00128{word-spacing:4.160000pt;}
.ws30_c00128{word-spacing:4.352000pt;}
.ws3e_c00128{word-spacing:5.056000pt;}
.ws15_c00128{word-spacing:5.696000pt;}
.ws16_c00128{word-spacing:6.016000pt;}
.ws45_c00128{word-spacing:6.656000pt;}
.ws46_c00128{word-spacing:6.720000pt;}
.ws2a_c00128{word-spacing:7.360000pt;}
.ws2b_c00128{word-spacing:7.552000pt;}
.ws29_c00128{word-spacing:7.616000pt;}
.ws17_c00128{word-spacing:7.680000pt;}
.ws27_c00128{word-spacing:8.000000pt;}
.ws37_c00128{word-spacing:8.192000pt;}
.ws36_c00128{word-spacing:8.256000pt;}
.ws35_c00128{word-spacing:8.320000pt;}
.ws41_c00128{word-spacing:11.136000pt;}
.ws3f_c00128{word-spacing:11.520000pt;}
.ws3d_c00128{word-spacing:11.776000pt;}
.ws40_c00128{word-spacing:11.840000pt;}
.ws3b_c00128{word-spacing:12.096000pt;}
.ws3c_c00128{word-spacing:12.160000pt;}
.ws43_c00128{word-spacing:14.080000pt;}
.ws39_c00128{word-spacing:14.400000pt;}
.ws38_c00128{word-spacing:14.656000pt;}
.ws3a_c00128{word-spacing:14.720000pt;}
.ws32_c00128{word-spacing:14.976000pt;}
.ws31_c00128{word-spacing:15.360000pt;}
.ws19_c00128{word-spacing:15.936000pt;}
.ws18_c00128{word-spacing:16.000000pt;}
.ws33_c00128{word-spacing:17.536000pt;}
.ws12_c00128{word-spacing:18.816000pt;}
.ws13_c00128{word-spacing:18.880000pt;}
.ws28_c00128{word-spacing:19.520000pt;}
._1_c00128{margin-left:-0.940800pt;}
._0_c00128{width:1.084800pt;}
._3_c00128{width:2.816000pt;}
._5_c00128{width:3.769600pt;}
._7_c00128{width:6.144000pt;}
._4_c00128{width:8.064000pt;}
._6_c00128{width:11.801600pt;}
._2_c00128{width:19.372800pt;}
.fs0_c00128{font-size:48.000000pt;}
.fs2_c00128{font-size:53.440000pt;}
.fs1_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y11_c00128{bottom:4.080000pt;}
.y18_c00128{bottom:4.239867pt;}
.y12_c00128{bottom:4.240000pt;}
.y14_c00128{bottom:4.960000pt;}
.y1a_c00128{bottom:5.040000pt;}
.y15_c00128{bottom:5.120000pt;}
.y1b_c00128{bottom:5.200000pt;}
.yf_c00128{bottom:8.560000pt;}
.y33_c00128{bottom:50.880000pt;}
.y32_c00128{bottom:98.400000pt;}
.y31_c00128{bottom:126.000000pt;}
.y30_c00128{bottom:153.600000pt;}
.y2f_c00128{bottom:181.200000pt;}
.y2e_c00128{bottom:208.800000pt;}
.y2d_c00128{bottom:236.400000pt;}
.y2c_c00128{bottom:264.000000pt;}
.y2b_c00128{bottom:291.600000pt;}
.y2a_c00128{bottom:319.120000pt;}
.y29_c00128{bottom:346.720000pt;}
.y28_c00128{bottom:374.320000pt;}
.y27_c00128{bottom:401.920000pt;}
.y26_c00128{bottom:429.520000pt;}
.y25_c00128{bottom:457.120000pt;}
.y24_c00128{bottom:484.720000pt;}
.y23_c00128{bottom:512.320000pt;}
.y22_c00128{bottom:539.920000pt;}
.y21_c00128{bottom:567.520000pt;}
.y20_c00128{bottom:595.120000pt;}
.y1f_c00128{bottom:622.720000pt;}
.y1e_c00128{bottom:640.552160pt;}
.y1d_c00128{bottom:655.836000pt;}
.y1c_c00128{bottom:671.200000pt;}
.y19_c00128{bottom:685.440000pt;}
.y17_c00128{bottom:703.520000pt;}
.y16_c00128{bottom:721.280000pt;}
.y13_c00128{bottom:739.120000pt;}
.y10_c00128{bottom:757.840000pt;}
.ye_c00128{bottom:776.320000pt;}
.yd_c00128{bottom:802.800000pt;}
.yc_c00128{bottom:821.200000pt;}
.yb_c00128{bottom:848.960000pt;}
.ya_c00128{bottom:876.560000pt;}
.y9_c00128{bottom:904.160000pt;}
.y8_c00128{bottom:931.760000pt;}
.y7_c00128{bottom:959.360000pt;}
.y6_c00128{bottom:986.960000pt;}
.y5_c00128{bottom:1005.360000pt;}
.y4_c00128{bottom:1023.040000pt;}
.y3_c00128{bottom:1036.804000pt;}
.y2_c00128{bottom:1050.640000pt;}
.y1_c00128{bottom:1064.400000pt;}
.hb_c00128{height:16.480000pt;}
.h8_c00128{height:16.481333pt;}
.ha_c00128{height:17.360000pt;}
.hc_c00128{height:17.440000pt;}
.h6_c00128{height:20.960000pt;}
.h3_c00128{height:47.085938pt;}
.h2_c00128{height:47.109375pt;}
.h9_c00128{height:52.448437pt;}
.h7_c00128{height:53.857500pt;}
.h4_c00128{height:62.812500pt;}
.h5_c00128{height:64.500000pt;}
.h0_c00128{height:1122.560000pt;}
.h1_c00128{height:1122.666667pt;}
.w5_c00128{width:111.440000pt;}
.w4_c00128{width:130.320000pt;}
.w2_c00128{width:135.281333pt;}
.w3_c00128{width:142.961333pt;}
.w0_c00128{width:793.840000pt;}
.w1_c00128{width:794.000000pt;}
.x0_c00128{left:0.000000pt;}
.xe_c00128{left:6.240000pt;}
.xd_c00128{left:24.800000pt;}
.xb_c00128{left:31.680000pt;}
.x10_c00128{left:40.160000pt;}
.x13_c00128{left:42.800000pt;}
.x9_c00128{left:44.640000pt;}
.x12_c00128{left:46.320000pt;}
.x11_c00128{left:49.600000pt;}
.xf_c00128{left:52.640000pt;}
.x7_c00128{left:54.160000pt;}
.x3_c00128{left:113.440000pt;}
.x4_c00128{left:121.200000pt;}
.x6_c00128{left:134.560000pt;}
.x5_c00128{left:140.960000pt;}
.x8_c00128{left:271.840000pt;}
.x2_c00128{left:377.920000pt;}
.x1_c00128{left:396.960000pt;}
.xa_c00128{left:416.800000pt;}
.xc_c00128{left:549.120000pt;}
.x14_c00128{left:664.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_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_363682c6a4a7d68c95ca2d17.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_e321057bc0fac6edab74faaa.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00129{vertical-align:-61.938000px;}
.v3_c00129{vertical-align:-20.880000px;}
.v0_c00129{vertical-align:0.000000px;}
.v2_c00129{vertical-align:27.000000px;}
.ls13_c00129{letter-spacing:-0.576000px;}
.ls19_c00129{letter-spacing:-0.420840px;}
.ls1a_c00129{letter-spacing:-0.240480px;}
.ls18_c00129{letter-spacing:-0.180360px;}
.ls15_c00129{letter-spacing:-0.120240px;}
.ls14_c00129{letter-spacing:-0.072000px;}
.ls17_c00129{letter-spacing:-0.060120px;}
.ls12_c00129{letter-spacing:0.000000px;}
.lsc_c00129{letter-spacing:0.060120px;}
.ls4_c00129{letter-spacing:0.072000px;}
.lsb_c00129{letter-spacing:0.120240px;}
.lsa_c00129{letter-spacing:0.144000px;}
.ls16_c00129{letter-spacing:0.180360px;}
.ls1_c00129{letter-spacing:0.191520px;}
.ls11_c00129{letter-spacing:0.420840px;}
.ls3_c00129{letter-spacing:1.440000px;}
.lsd_c00129{letter-spacing:2.160000px;}
.ls10_c00129{letter-spacing:2.901600px;}
.ls2_c00129{letter-spacing:3.960000px;}
.ls7_c00129{letter-spacing:4.320000px;}
.ls9_c00129{letter-spacing:6.120000px;}
.ls8_c00129{letter-spacing:8.640000px;}
.ls5_c00129{letter-spacing:9.360000px;}
.lse_c00129{letter-spacing:14.760000px;}
.ls6_c00129{letter-spacing:19.800000px;}
.lsf_c00129{letter-spacing:23.760000px;}
.ls0_c00129{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00129{word-spacing:-18.144000px;}
.ws1_c00129{word-spacing:-18.072000px;}
.wsc_c00129{word-spacing:-18.000000px;}
.ws4_c00129{word-spacing:-17.928000px;}
.ws3_c00129{word-spacing:-17.424000px;}
.ws6_c00129{word-spacing:-15.210360px;}
.ws8_c00129{word-spacing:-15.150240px;}
.ws7_c00129{word-spacing:-14.969880px;}
.ws5_c00129{word-spacing:-14.909760px;}
.wsb_c00129{word-spacing:-14.849640px;}
.wsa_c00129{word-spacing:-14.789520px;}
.ws9_c00129{word-spacing:-14.609160px;}
.ws0_c00129{word-spacing:-12.161520px;}
.wsd_c00129{word-spacing:-9.720000px;}
.ws26_c00129{word-spacing:-0.180360px;}
.wsf_c00129{word-spacing:-0.162000px;}
.ws1f_c00129{word-spacing:-0.144000px;}
.ws16_c00129{word-spacing:-0.072000px;}
.ws23_c00129{word-spacing:-0.060120px;}
.wse_c00129{word-spacing:0.000000px;}
.ws21_c00129{word-spacing:0.072000px;}
.ws24_c00129{word-spacing:0.120240px;}
.ws25_c00129{word-spacing:0.240480px;}
.ws22_c00129{word-spacing:0.300600px;}
.ws37_c00129{word-spacing:0.541080px;}
.ws13_c00129{word-spacing:1.440000px;}
.ws2a_c00129{word-spacing:2.088000px;}
.ws2d_c00129{word-spacing:2.160000px;}
.ws32_c00129{word-spacing:2.808000px;}
.ws12_c00129{word-spacing:3.816000px;}
.ws11_c00129{word-spacing:3.888000px;}
.ws10_c00129{word-spacing:3.960000px;}
.ws1c_c00129{word-spacing:4.248000px;}
.ws1b_c00129{word-spacing:4.320000px;}
.ws28_c00129{word-spacing:5.328000px;}
.ws27_c00129{word-spacing:5.400000px;}
.ws38_c00129{word-spacing:5.531040px;}
.ws29_c00129{word-spacing:5.760000px;}
.ws33_c00129{word-spacing:6.048000px;}
.ws34_c00129{word-spacing:6.120000px;}
.ws20_c00129{word-spacing:6.408000px;}
.ws2f_c00129{word-spacing:7.128000px;}
.ws2e_c00129{word-spacing:7.200000px;}
.ws35_c00129{word-spacing:8.208000px;}
.ws1e_c00129{word-spacing:8.568000px;}
.ws36_c00129{word-spacing:8.640000px;}
.ws1d_c00129{word-spacing:8.928000px;}
.ws14_c00129{word-spacing:9.288000px;}
.ws15_c00129{word-spacing:9.360000px;}
.ws39_c00129{word-spacing:10.340640px;}
.ws3a_c00129{word-spacing:10.581120px;}
.ws2b_c00129{word-spacing:14.688000px;}
.ws2c_c00129{word-spacing:14.760000px;}
.ws19_c00129{word-spacing:19.440000px;}
.ws17_c00129{word-spacing:19.656000px;}
.ws1a_c00129{word-spacing:19.728000px;}
.ws18_c00129{word-spacing:19.800000px;}
.ws31_c00129{word-spacing:23.688000px;}
.ws30_c00129{word-spacing:23.760000px;}
._1_c00129{margin-left:-1.015200px;}
._6_c00129{width:1.728000px;}
._2_c00129{width:3.182400px;}
._0_c00129{width:4.536000px;}
._a_c00129{width:5.551200px;}
._8_c00129{width:6.775200px;}
._5_c00129{width:8.157600px;}
._3_c00129{width:9.367200px;}
._7_c00129{width:14.400000px;}
._4_c00129{width:19.454400px;}
._9_c00129{width:23.047200px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs4_c00129{font-size:38.880000px;}
.fs2_c00129{font-size:47.880000px;}
.fs0_c00129{font-size:54.000000px;}
.fs3_c00129{font-size:60.120000px;}
.fs1_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y16_c00129{bottom:3.240000px;}
.y11_c00129{bottom:3.330000px;}
.y17_c00129{bottom:3.420000px;}
.y13_c00129{bottom:3.510000px;}
.y2f_c00129{bottom:57.240000px;}
.y2e_c00129{bottom:109.786680px;}
.y2d_c00129{bottom:126.981000px;}
.y2c_c00129{bottom:144.265500px;}
.y2b_c00129{bottom:166.770000px;}
.y30_c00129{bottom:179.460000px;}
.y2a_c00129{bottom:204.840000px;}
.y29_c00129{bottom:235.890000px;}
.y28_c00129{bottom:266.940000px;}
.y27_c00129{bottom:297.990000px;}
.y26_c00129{bottom:329.040000px;}
.y25_c00129{bottom:360.090000px;}
.y24_c00129{bottom:391.140000px;}
.y23_c00129{bottom:422.190000px;}
.y22_c00129{bottom:453.240000px;}
.y21_c00129{bottom:484.290000px;}
.y20_c00129{bottom:515.340000px;}
.y1f_c00129{bottom:546.390000px;}
.y1e_c00129{bottom:577.440000px;}
.y1d_c00129{bottom:608.490000px;}
.y1c_c00129{bottom:639.540000px;}
.y1b_c00129{bottom:659.605680px;}
.y1a_c00129{bottom:676.800000px;}
.y19_c00129{bottom:692.820000px;}
.y18_c00129{bottom:710.820000px;}
.y15_c00129{bottom:729.630000px;}
.y14_c00129{bottom:748.350000px;}
.y12_c00129{bottom:767.070000px;}
.y10_c00129{bottom:786.600000px;}
.yf_c00129{bottom:810.090000px;}
.ye_c00129{bottom:830.790000px;}
.yd_c00129{bottom:861.930000px;}
.yc_c00129{bottom:892.980000px;}
.yb_c00129{bottom:924.030000px;}
.ya_c00129{bottom:955.080000px;}
.y9_c00129{bottom:986.130000px;}
.y8_c00129{bottom:1017.180000px;}
.y7_c00129{bottom:1048.230000px;}
.y6_c00129{bottom:1079.280000px;}
.y5_c00129{bottom:1110.330000px;}
.y4_c00129{bottom:1131.030000px;}
.y3_c00129{bottom:1150.915500px;}
.y2_c00129{bottom:1166.400000px;}
.y1_c00129{bottom:1197.450000px;}
.h9_c00129{height:17.190000px;}
.h6_c00129{height:17.280000px;}
.ha_c00129{height:38.158594px;}
.h2_c00129{height:52.998047px;}
.h8_c00129{height:59.004492px;}
.h7_c00129{height:60.589687px;}
.h3_c00129{height:70.664062px;}
.h5_c00129{height:72.562500px;}
.h4_c00129{height:73.991602px;}
.h0_c00129{height:1262.880000px;}
.h1_c00129{height:1263.000000px;}
.w2_c00129{width:128.971500px;}
.w5_c00129{width:146.610000px;}
.w3_c00129{width:150.571500px;}
.w4_c00129{width:158.760000px;}
.w0_c00129{width:893.070000px;}
.w1_c00129{width:893.250000px;}
.x0_c00129{left:0.000000px;}
.xc_c00129{left:7.020000px;}
.xb_c00129{left:38.430000px;}
.x9_c00129{left:41.670000px;}
.x7_c00129{left:45.090000px;}
.x5_c00129{left:49.230000px;}
.x11_c00129{left:52.020000px;}
.xd_c00129{left:54.090000px;}
.xf_c00129{left:55.710000px;}
.x10_c00129{left:58.140000px;}
.xe_c00129{left:64.800000px;}
.x2_c00129{left:127.620000px;}
.x3_c00129{left:150.750000px;}
.x4_c00129{left:160.830000px;}
.x6_c00129{left:282.600000px;}
.x8_c00129{left:435.420000px;}
.x1_c00129{left:446.580000px;}
.xa_c00129{left:596.520000px;}
@media print{
.v1_c00129{vertical-align:-55.056000pt;}
.v3_c00129{vertical-align:-18.560000pt;}
.v0_c00129{vertical-align:0.000000pt;}
.v2_c00129{vertical-align:24.000000pt;}
.ls13_c00129{letter-spacing:-0.512000pt;}
.ls19_c00129{letter-spacing:-0.374080pt;}
.ls1a_c00129{letter-spacing:-0.213760pt;}
.ls18_c00129{letter-spacing:-0.160320pt;}
.ls15_c00129{letter-spacing:-0.106880pt;}
.ls14_c00129{letter-spacing:-0.064000pt;}
.ls17_c00129{letter-spacing:-0.053440pt;}
.ls12_c00129{letter-spacing:0.000000pt;}
.lsc_c00129{letter-spacing:0.053440pt;}
.ls4_c00129{letter-spacing:0.064000pt;}
.lsb_c00129{letter-spacing:0.106880pt;}
.lsa_c00129{letter-spacing:0.128000pt;}
.ls16_c00129{letter-spacing:0.160320pt;}
.ls1_c00129{letter-spacing:0.170240pt;}
.ls11_c00129{letter-spacing:0.374080pt;}
.ls3_c00129{letter-spacing:1.280000pt;}
.lsd_c00129{letter-spacing:1.920000pt;}
.ls10_c00129{letter-spacing:2.579200pt;}
.ls2_c00129{letter-spacing:3.520000pt;}
.ls7_c00129{letter-spacing:3.840000pt;}
.ls9_c00129{letter-spacing:5.440000pt;}
.ls8_c00129{letter-spacing:7.680000pt;}
.ls5_c00129{letter-spacing:8.320000pt;}
.lse_c00129{letter-spacing:13.120000pt;}
.ls6_c00129{letter-spacing:17.600000pt;}
.lsf_c00129{letter-spacing:21.120000pt;}
.ls0_c00129{letter-spacing:284.016000pt;}
.ws2_c00129{word-spacing:-16.128000pt;}
.ws1_c00129{word-spacing:-16.064000pt;}
.wsc_c00129{word-spacing:-16.000000pt;}
.ws4_c00129{word-spacing:-15.936000pt;}
.ws3_c00129{word-spacing:-15.488000pt;}
.ws6_c00129{word-spacing:-13.520320pt;}
.ws8_c00129{word-spacing:-13.466880pt;}
.ws7_c00129{word-spacing:-13.306560pt;}
.ws5_c00129{word-spacing:-13.253120pt;}
.wsb_c00129{word-spacing:-13.199680pt;}
.wsa_c00129{word-spacing:-13.146240pt;}
.ws9_c00129{word-spacing:-12.985920pt;}
.ws0_c00129{word-spacing:-10.810240pt;}
.wsd_c00129{word-spacing:-8.640000pt;}
.ws26_c00129{word-spacing:-0.160320pt;}
.wsf_c00129{word-spacing:-0.144000pt;}
.ws1f_c00129{word-spacing:-0.128000pt;}
.ws16_c00129{word-spacing:-0.064000pt;}
.ws23_c00129{word-spacing:-0.053440pt;}
.wse_c00129{word-spacing:0.000000pt;}
.ws21_c00129{word-spacing:0.064000pt;}
.ws24_c00129{word-spacing:0.106880pt;}
.ws25_c00129{word-spacing:0.213760pt;}
.ws22_c00129{word-spacing:0.267200pt;}
.ws37_c00129{word-spacing:0.480960pt;}
.ws13_c00129{word-spacing:1.280000pt;}
.ws2a_c00129{word-spacing:1.856000pt;}
.ws2d_c00129{word-spacing:1.920000pt;}
.ws32_c00129{word-spacing:2.496000pt;}
.ws12_c00129{word-spacing:3.392000pt;}
.ws11_c00129{word-spacing:3.456000pt;}
.ws10_c00129{word-spacing:3.520000pt;}
.ws1c_c00129{word-spacing:3.776000pt;}
.ws1b_c00129{word-spacing:3.840000pt;}
.ws28_c00129{word-spacing:4.736000pt;}
.ws27_c00129{word-spacing:4.800000pt;}
.ws38_c00129{word-spacing:4.916480pt;}
.ws29_c00129{word-spacing:5.120000pt;}
.ws33_c00129{word-spacing:5.376000pt;}
.ws34_c00129{word-spacing:5.440000pt;}
.ws20_c00129{word-spacing:5.696000pt;}
.ws2f_c00129{word-spacing:6.336000pt;}
.ws2e_c00129{word-spacing:6.400000pt;}
.ws35_c00129{word-spacing:7.296000pt;}
.ws1e_c00129{word-spacing:7.616000pt;}
.ws36_c00129{word-spacing:7.680000pt;}
.ws1d_c00129{word-spacing:7.936000pt;}
.ws14_c00129{word-spacing:8.256000pt;}
.ws15_c00129{word-spacing:8.320000pt;}
.ws39_c00129{word-spacing:9.191680pt;}
.ws3a_c00129{word-spacing:9.405440pt;}
.ws2b_c00129{word-spacing:13.056000pt;}
.ws2c_c00129{word-spacing:13.120000pt;}
.ws19_c00129{word-spacing:17.280000pt;}
.ws17_c00129{word-spacing:17.472000pt;}
.ws1a_c00129{word-spacing:17.536000pt;}
.ws18_c00129{word-spacing:17.600000pt;}
.ws31_c00129{word-spacing:21.056000pt;}
.ws30_c00129{word-spacing:21.120000pt;}
._1_c00129{margin-left:-0.902400pt;}
._6_c00129{width:1.536000pt;}
._2_c00129{width:2.828800pt;}
._0_c00129{width:4.032000pt;}
._a_c00129{width:4.934400pt;}
._8_c00129{width:6.022400pt;}
._5_c00129{width:7.251200pt;}
._3_c00129{width:8.326400pt;}
._7_c00129{width:12.800000pt;}
._4_c00129{width:17.292800pt;}
._9_c00129{width:20.486400pt;}
.fs4_c00129{font-size:34.560000pt;}
.fs2_c00129{font-size:42.560000pt;}
.fs0_c00129{font-size:48.000000pt;}
.fs3_c00129{font-size:53.440000pt;}
.fs1_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y16_c00129{bottom:2.880000pt;}
.y11_c00129{bottom:2.960000pt;}
.y17_c00129{bottom:3.040000pt;}
.y13_c00129{bottom:3.120000pt;}
.y2f_c00129{bottom:50.880000pt;}
.y2e_c00129{bottom:97.588160pt;}
.y2d_c00129{bottom:112.872000pt;}
.y2c_c00129{bottom:128.236000pt;}
.y2b_c00129{bottom:148.240000pt;}
.y30_c00129{bottom:159.520000pt;}
.y2a_c00129{bottom:182.080000pt;}
.y29_c00129{bottom:209.680000pt;}
.y28_c00129{bottom:237.280000pt;}
.y27_c00129{bottom:264.880000pt;}
.y26_c00129{bottom:292.480000pt;}
.y25_c00129{bottom:320.080000pt;}
.y24_c00129{bottom:347.680000pt;}
.y23_c00129{bottom:375.280000pt;}
.y22_c00129{bottom:402.880000pt;}
.y21_c00129{bottom:430.480000pt;}
.y20_c00129{bottom:458.080000pt;}
.y1f_c00129{bottom:485.680000pt;}
.y1e_c00129{bottom:513.280000pt;}
.y1d_c00129{bottom:540.880000pt;}
.y1c_c00129{bottom:568.480000pt;}
.y1b_c00129{bottom:586.316160pt;}
.y1a_c00129{bottom:601.600000pt;}
.y19_c00129{bottom:615.840000pt;}
.y18_c00129{bottom:631.840000pt;}
.y15_c00129{bottom:648.560000pt;}
.y14_c00129{bottom:665.200000pt;}
.y12_c00129{bottom:681.840000pt;}
.y10_c00129{bottom:699.200000pt;}
.yf_c00129{bottom:720.080000pt;}
.ye_c00129{bottom:738.480000pt;}
.yd_c00129{bottom:766.160000pt;}
.yc_c00129{bottom:793.760000pt;}
.yb_c00129{bottom:821.360000pt;}
.ya_c00129{bottom:848.960000pt;}
.y9_c00129{bottom:876.560000pt;}
.y8_c00129{bottom:904.160000pt;}
.y7_c00129{bottom:931.760000pt;}
.y6_c00129{bottom:959.360000pt;}
.y5_c00129{bottom:986.960000pt;}
.y4_c00129{bottom:1005.360000pt;}
.y3_c00129{bottom:1023.036000pt;}
.y2_c00129{bottom:1036.800000pt;}
.y1_c00129{bottom:1064.400000pt;}
.h9_c00129{height:15.280000pt;}
.h6_c00129{height:15.360000pt;}
.ha_c00129{height:33.918750pt;}
.h2_c00129{height:47.109375pt;}
.h8_c00129{height:52.448437pt;}
.h7_c00129{height:53.857500pt;}
.h3_c00129{height:62.812500pt;}
.h5_c00129{height:64.500000pt;}
.h4_c00129{height:65.770312pt;}
.h0_c00129{height:1122.560000pt;}
.h1_c00129{height:1122.666667pt;}
.w2_c00129{width:114.641333pt;}
.w5_c00129{width:130.320000pt;}
.w3_c00129{width:133.841333pt;}
.w4_c00129{width:141.120000pt;}
.w0_c00129{width:793.840000pt;}
.w1_c00129{width:794.000000pt;}
.x0_c00129{left:0.000000pt;}
.xc_c00129{left:6.240000pt;}
.xb_c00129{left:34.160000pt;}
.x9_c00129{left:37.040000pt;}
.x7_c00129{left:40.080000pt;}
.x5_c00129{left:43.760000pt;}
.x11_c00129{left:46.240000pt;}
.xd_c00129{left:48.080000pt;}
.xf_c00129{left:49.520000pt;}
.x10_c00129{left:51.680000pt;}
.xe_c00129{left:57.600000pt;}
.x2_c00129{left:113.440000pt;}
.x3_c00129{left:134.000000pt;}
.x4_c00129{left:142.960000pt;}
.x6_c00129{left:251.200000pt;}
.x8_c00129{left:387.040000pt;}
.x1_c00129{left:396.960000pt;}
.xa_c00129{left:530.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bf64d70ab4b96fb32ddf2d7.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00130{vertical-align:-20.880000px;}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:27.000000px;}
.ls10_c00130{letter-spacing:-0.360000px;}
.ls11_c00130{letter-spacing:-0.288000px;}
.ls12_c00130{letter-spacing:-0.216000px;}
.lse_c00130{letter-spacing:-0.108000px;}
.lsf_c00130{letter-spacing:-0.072000px;}
.ls13_c00130{letter-spacing:-0.060120px;}
.lsd_c00130{letter-spacing:0.000000px;}
.ls3_c00130{letter-spacing:0.072000px;}
.lsa_c00130{letter-spacing:0.079200px;}
.ls1_c00130{letter-spacing:0.144000px;}
.ls14_c00130{letter-spacing:0.180360px;}
.ls7_c00130{letter-spacing:0.191520px;}
.lsb_c00130{letter-spacing:1.094400px;}
.ls4_c00130{letter-spacing:7.560000px;}
.ls5_c00130{letter-spacing:8.640000px;}
.lsc_c00130{letter-spacing:8.717400px;}
.ls8_c00130{letter-spacing:11.160000px;}
.ls9_c00130{letter-spacing:11.520000px;}
.ls6_c00130{letter-spacing:13.933080px;}
.ls0_c00130{letter-spacing:15.840000px;}
.ls2_c00130{letter-spacing:24.854400px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00130{word-spacing:-18.072000px;}
.ws2_c00130{word-spacing:-18.000000px;}
.ws0_c00130{word-spacing:-17.928000px;}
.ws4_c00130{word-spacing:-17.784000px;}
.ws3_c00130{word-spacing:-12.161520px;}
.ws5_c00130{word-spacing:-9.720000px;}
.ws1f_c00130{word-spacing:-0.360000px;}
.ws1e_c00130{word-spacing:-0.144000px;}
.ws9_c00130{word-spacing:-0.072000px;}
.ws35_c00130{word-spacing:-0.060120px;}
.ws6_c00130{word-spacing:0.000000px;}
.ws8_c00130{word-spacing:0.162000px;}
.ws34_c00130{word-spacing:0.180360px;}
.ws7_c00130{word-spacing:0.270000px;}
.ws21_c00130{word-spacing:0.288000px;}
.ws20_c00130{word-spacing:0.360000px;}
.ws2f_c00130{word-spacing:0.720000px;}
.ws2e_c00130{word-spacing:1.008000px;}
.ws30_c00130{word-spacing:1.080000px;}
.ws24_c00130{word-spacing:1.728000px;}
.ws29_c00130{word-spacing:2.160000px;}
.ws2d_c00130{word-spacing:2.736000px;}
.ws2c_c00130{word-spacing:2.880000px;}
.ws2b_c00130{word-spacing:4.608000px;}
.ws33_c00130{word-spacing:5.170320px;}
.ws11_c00130{word-spacing:7.056000px;}
.ws13_c00130{word-spacing:7.128000px;}
.ws12_c00130{word-spacing:7.560000px;}
.ws31_c00130{word-spacing:8.280000px;}
.ws15_c00130{word-spacing:8.568000px;}
.ws14_c00130{word-spacing:8.640000px;}
.ws32_c00130{word-spacing:8.777520px;}
.ws2a_c00130{word-spacing:8.928000px;}
.ws25_c00130{word-spacing:9.360000px;}
.ws26_c00130{word-spacing:9.648000px;}
.ws22_c00130{word-spacing:10.368000px;}
.ws18_c00130{word-spacing:11.016000px;}
.ws17_c00130{word-spacing:11.088000px;}
.ws16_c00130{word-spacing:11.160000px;}
.ws1c_c00130{word-spacing:11.448000px;}
.ws1d_c00130{word-spacing:11.520000px;}
.ws23_c00130{word-spacing:12.888000px;}
.ws1b_c00130{word-spacing:14.400000px;}
.wsa_c00130{word-spacing:15.768000px;}
.wsb_c00130{word-spacing:15.840000px;}
.ws28_c00130{word-spacing:19.368000px;}
.ws27_c00130{word-spacing:19.440000px;}
.ws1a_c00130{word-spacing:20.088000px;}
.ws19_c00130{word-spacing:20.448000px;}
.wsf_c00130{word-spacing:24.696000px;}
.ws10_c00130{word-spacing:24.768000px;}
.wsd_c00130{word-spacing:32.616000px;}
.wsc_c00130{word-spacing:32.760000px;}
.wse_c00130{word-spacing:33.048000px;}
._1_c00130{margin-left:-1.058400px;}
._0_c00130{width:1.220400px;}
._5_c00130{width:7.495200px;}
._6_c00130{width:8.928000px;}
._7_c00130{width:11.664000px;}
._8_c00130{width:13.824000px;}
._2_c00130{width:15.264000px;}
._4_c00130{width:24.624000px;}
._3_c00130{width:32.832000px;}
.fc0_c00130{color:rgb(0,0,0);}
.fs3_c00130{font-size:38.880000px;}
.fs2_c00130{font-size:47.880000px;}
.fs0_c00130{font-size:54.000000px;}
.fs4_c00130{font-size:60.120000px;}
.fs1_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y27_c00130{bottom:57.240000px;}
.y26_c00130{bottom:109.791180px;}
.y25_c00130{bottom:126.985500px;}
.y24_c00130{bottom:149.490000px;}
.y28_c00130{bottom:162.180000px;}
.y23_c00130{bottom:209.970000px;}
.y22_c00130{bottom:241.020000px;}
.y21_c00130{bottom:272.070000px;}
.y20_c00130{bottom:303.120000px;}
.y1f_c00130{bottom:334.170000px;}
.y1e_c00130{bottom:365.220000px;}
.y1d_c00130{bottom:396.270000px;}
.y1c_c00130{bottom:427.320000px;}
.y1b_c00130{bottom:458.370000px;}
.y1a_c00130{bottom:489.420000px;}
.y19_c00130{bottom:520.470000px;}
.y18_c00130{bottom:551.520000px;}
.y17_c00130{bottom:582.570000px;}
.y16_c00130{bottom:613.620000px;}
.y15_c00130{bottom:644.670000px;}
.y14_c00130{bottom:675.720000px;}
.y13_c00130{bottom:706.770000px;}
.y12_c00130{bottom:737.820000px;}
.y11_c00130{bottom:768.870000px;}
.y10_c00130{bottom:799.920000px;}
.yf_c00130{bottom:830.970000px;}
.ye_c00130{bottom:861.930000px;}
.yd_c00130{bottom:892.980000px;}
.yc_c00130{bottom:924.030000px;}
.yb_c00130{bottom:955.080000px;}
.ya_c00130{bottom:986.130000px;}
.y9_c00130{bottom:1017.180000px;}
.y8_c00130{bottom:1048.230000px;}
.y7_c00130{bottom:1079.280000px;}
.y6_c00130{bottom:1110.330000px;}
.y5_c00130{bottom:1131.030000px;}
.y4_c00130{bottom:1150.920000px;}
.y3_c00130{bottom:1166.404500px;}
.y2_c00130{bottom:1181.970000px;}
.y1_c00130{bottom:1197.450000px;}
.h6_c00130{height:38.158594px;}
.h3_c00130{height:52.971680px;}
.h2_c00130{height:52.998047px;}
.h7_c00130{height:59.004492px;}
.h4_c00130{height:70.664062px;}
.h5_c00130{height:73.991602px;}
.h0_c00130{height:1262.880000px;}
.h1_c00130{height:1263.000000px;}
.w0_c00130{width:893.070000px;}
.w1_c00130{width:893.250000px;}
.x0_c00130{left:0.000000px;}
.x3_c00130{left:127.620000px;}
.x2_c00130{left:425.160000px;}
.x1_c00130{left:446.580000px;}
.x4_c00130{left:747.540000px;}
@media print{
.v2_c00130{vertical-align:-18.560000pt;}
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:24.000000pt;}
.ls10_c00130{letter-spacing:-0.320000pt;}
.ls11_c00130{letter-spacing:-0.256000pt;}
.ls12_c00130{letter-spacing:-0.192000pt;}
.lse_c00130{letter-spacing:-0.096000pt;}
.lsf_c00130{letter-spacing:-0.064000pt;}
.ls13_c00130{letter-spacing:-0.053440pt;}
.lsd_c00130{letter-spacing:0.000000pt;}
.ls3_c00130{letter-spacing:0.064000pt;}
.lsa_c00130{letter-spacing:0.070400pt;}
.ls1_c00130{letter-spacing:0.128000pt;}
.ls14_c00130{letter-spacing:0.160320pt;}
.ls7_c00130{letter-spacing:0.170240pt;}
.lsb_c00130{letter-spacing:0.972800pt;}
.ls4_c00130{letter-spacing:6.720000pt;}
.ls5_c00130{letter-spacing:7.680000pt;}
.lsc_c00130{letter-spacing:7.748800pt;}
.ls8_c00130{letter-spacing:9.920000pt;}
.ls9_c00130{letter-spacing:10.240000pt;}
.ls6_c00130{letter-spacing:12.384960pt;}
.ls0_c00130{letter-spacing:14.080000pt;}
.ls2_c00130{letter-spacing:22.092800pt;}
.ws1_c00130{word-spacing:-16.064000pt;}
.ws2_c00130{word-spacing:-16.000000pt;}
.ws0_c00130{word-spacing:-15.936000pt;}
.ws4_c00130{word-spacing:-15.808000pt;}
.ws3_c00130{word-spacing:-10.810240pt;}
.ws5_c00130{word-spacing:-8.640000pt;}
.ws1f_c00130{word-spacing:-0.320000pt;}
.ws1e_c00130{word-spacing:-0.128000pt;}
.ws9_c00130{word-spacing:-0.064000pt;}
.ws35_c00130{word-spacing:-0.053440pt;}
.ws6_c00130{word-spacing:0.000000pt;}
.ws8_c00130{word-spacing:0.144000pt;}
.ws34_c00130{word-spacing:0.160320pt;}
.ws7_c00130{word-spacing:0.240000pt;}
.ws21_c00130{word-spacing:0.256000pt;}
.ws20_c00130{word-spacing:0.320000pt;}
.ws2f_c00130{word-spacing:0.640000pt;}
.ws2e_c00130{word-spacing:0.896000pt;}
.ws30_c00130{word-spacing:0.960000pt;}
.ws24_c00130{word-spacing:1.536000pt;}
.ws29_c00130{word-spacing:1.920000pt;}
.ws2d_c00130{word-spacing:2.432000pt;}
.ws2c_c00130{word-spacing:2.560000pt;}
.ws2b_c00130{word-spacing:4.096000pt;}
.ws33_c00130{word-spacing:4.595840pt;}
.ws11_c00130{word-spacing:6.272000pt;}
.ws13_c00130{word-spacing:6.336000pt;}
.ws12_c00130{word-spacing:6.720000pt;}
.ws31_c00130{word-spacing:7.360000pt;}
.ws15_c00130{word-spacing:7.616000pt;}
.ws14_c00130{word-spacing:7.680000pt;}
.ws32_c00130{word-spacing:7.802240pt;}
.ws2a_c00130{word-spacing:7.936000pt;}
.ws25_c00130{word-spacing:8.320000pt;}
.ws26_c00130{word-spacing:8.576000pt;}
.ws22_c00130{word-spacing:9.216000pt;}
.ws18_c00130{word-spacing:9.792000pt;}
.ws17_c00130{word-spacing:9.856000pt;}
.ws16_c00130{word-spacing:9.920000pt;}
.ws1c_c00130{word-spacing:10.176000pt;}
.ws1d_c00130{word-spacing:10.240000pt;}
.ws23_c00130{word-spacing:11.456000pt;}
.ws1b_c00130{word-spacing:12.800000pt;}
.wsa_c00130{word-spacing:14.016000pt;}
.wsb_c00130{word-spacing:14.080000pt;}
.ws28_c00130{word-spacing:17.216000pt;}
.ws27_c00130{word-spacing:17.280000pt;}
.ws1a_c00130{word-spacing:17.856000pt;}
.ws19_c00130{word-spacing:18.176000pt;}
.wsf_c00130{word-spacing:21.952000pt;}
.ws10_c00130{word-spacing:22.016000pt;}
.wsd_c00130{word-spacing:28.992000pt;}
.wsc_c00130{word-spacing:29.120000pt;}
.wse_c00130{word-spacing:29.376000pt;}
._1_c00130{margin-left:-0.940800pt;}
._0_c00130{width:1.084800pt;}
._5_c00130{width:6.662400pt;}
._6_c00130{width:7.936000pt;}
._7_c00130{width:10.368000pt;}
._8_c00130{width:12.288000pt;}
._2_c00130{width:13.568000pt;}
._4_c00130{width:21.888000pt;}
._3_c00130{width:29.184000pt;}
.fs3_c00130{font-size:34.560000pt;}
.fs2_c00130{font-size:42.560000pt;}
.fs0_c00130{font-size:48.000000pt;}
.fs4_c00130{font-size:53.440000pt;}
.fs1_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y27_c00130{bottom:50.880000pt;}
.y26_c00130{bottom:97.592160pt;}
.y25_c00130{bottom:112.876000pt;}
.y24_c00130{bottom:132.880000pt;}
.y28_c00130{bottom:144.160000pt;}
.y23_c00130{bottom:186.640000pt;}
.y22_c00130{bottom:214.240000pt;}
.y21_c00130{bottom:241.840000pt;}
.y20_c00130{bottom:269.440000pt;}
.y1f_c00130{bottom:297.040000pt;}
.y1e_c00130{bottom:324.640000pt;}
.y1d_c00130{bottom:352.240000pt;}
.y1c_c00130{bottom:379.840000pt;}
.y1b_c00130{bottom:407.440000pt;}
.y1a_c00130{bottom:435.040000pt;}
.y19_c00130{bottom:462.640000pt;}
.y18_c00130{bottom:490.240000pt;}
.y17_c00130{bottom:517.840000pt;}
.y16_c00130{bottom:545.440000pt;}
.y15_c00130{bottom:573.040000pt;}
.y14_c00130{bottom:600.640000pt;}
.y13_c00130{bottom:628.240000pt;}
.y12_c00130{bottom:655.840000pt;}
.y11_c00130{bottom:683.440000pt;}
.y10_c00130{bottom:711.040000pt;}
.yf_c00130{bottom:738.640000pt;}
.ye_c00130{bottom:766.160000pt;}
.yd_c00130{bottom:793.760000pt;}
.yc_c00130{bottom:821.360000pt;}
.yb_c00130{bottom:848.960000pt;}
.ya_c00130{bottom:876.560000pt;}
.y9_c00130{bottom:904.160000pt;}
.y8_c00130{bottom:931.760000pt;}
.y7_c00130{bottom:959.360000pt;}
.y6_c00130{bottom:986.960000pt;}
.y5_c00130{bottom:1005.360000pt;}
.y4_c00130{bottom:1023.040000pt;}
.y3_c00130{bottom:1036.804000pt;}
.y2_c00130{bottom:1050.640000pt;}
.y1_c00130{bottom:1064.400000pt;}
.h6_c00130{height:33.918750pt;}
.h3_c00130{height:47.085938pt;}
.h2_c00130{height:47.109375pt;}
.h7_c00130{height:52.448437pt;}
.h4_c00130{height:62.812500pt;}
.h5_c00130{height:65.770312pt;}
.h0_c00130{height:1122.560000pt;}
.h1_c00130{height:1122.666667pt;}
.w0_c00130{width:793.840000pt;}
.w1_c00130{width:794.000000pt;}
.x0_c00130{left:0.000000pt;}
.x3_c00130{left:113.440000pt;}
.x2_c00130{left:377.920000pt;}
.x1_c00130{left:396.960000pt;}
.x4_c00130{left:664.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_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_a6f86ad5aa8e16d04381519c.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00131{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00131{vertical-align:-61.938000px;}
.v3_c00131{vertical-align:-20.880000px;}
.v0_c00131{vertical-align:0.000000px;}
.v2_c00131{vertical-align:27.000000px;}
.lsf_c00131{letter-spacing:-0.360000px;}
.ls11_c00131{letter-spacing:-0.288000px;}
.ls10_c00131{letter-spacing:-0.216000px;}
.ls14_c00131{letter-spacing:-0.120240px;}
.lsd_c00131{letter-spacing:-0.072000px;}
.ls12_c00131{letter-spacing:-0.060120px;}
.lsc_c00131{letter-spacing:0.000000px;}
.ls2_c00131{letter-spacing:0.072000px;}
.lse_c00131{letter-spacing:0.144000px;}
.ls13_c00131{letter-spacing:0.180360px;}
.ls7_c00131{letter-spacing:0.191520px;}
.lsb_c00131{letter-spacing:5.110200px;}
.ls5_c00131{letter-spacing:6.120000px;}
.ls9_c00131{letter-spacing:10.080000px;}
.ls4_c00131{letter-spacing:10.440000px;}
.ls3_c00131{letter-spacing:10.447200px;}
.lsa_c00131{letter-spacing:10.800000px;}
.ls6_c00131{letter-spacing:11.880000px;}
.ls1_c00131{letter-spacing:28.080000px;}
.ls8_c00131{letter-spacing:29.880000px;}
.ls0_c00131{letter-spacing:319.518000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00131{word-spacing:-18.072000px;}
.ws0_c00131{word-spacing:-17.928000px;}
.ws2_c00131{word-spacing:-17.784000px;}
.ws4_c00131{word-spacing:-17.712000px;}
.ws3_c00131{word-spacing:-12.161520px;}
.ws5_c00131{word-spacing:-9.720000px;}
.ws7_c00131{word-spacing:-0.162000px;}
.wsb_c00131{word-spacing:-0.144000px;}
.wsd_c00131{word-spacing:-0.072000px;}
.ws6_c00131{word-spacing:0.000000px;}
.ws38_c00131{word-spacing:0.240480px;}
.ws32_c00131{word-spacing:0.288000px;}
.ws37_c00131{word-spacing:0.300600px;}
.ws14_c00131{word-spacing:0.360000px;}
.ws28_c00131{word-spacing:1.368000px;}
.ws27_c00131{word-spacing:1.440000px;}
.ws17_c00131{word-spacing:2.448000px;}
.ws18_c00131{word-spacing:2.520000px;}
.ws1c_c00131{word-spacing:2.880000px;}
.ws1b_c00131{word-spacing:3.168000px;}
.ws1d_c00131{word-spacing:3.600000px;}
.ws1a_c00131{word-spacing:3.888000px;}
.ws19_c00131{word-spacing:3.960000px;}
.ws36_c00131{word-spacing:5.170320px;}
.ws1f_c00131{word-spacing:5.760000px;}
.ws1e_c00131{word-spacing:6.048000px;}
.ws35_c00131{word-spacing:6.408000px;}
.ws11_c00131{word-spacing:7.128000px;}
.ws10_c00131{word-spacing:7.488000px;}
.wsf_c00131{word-spacing:7.560000px;}
.wsa_c00131{word-spacing:7.848000px;}
.ws31_c00131{word-spacing:7.920000px;}
.ws9_c00131{word-spacing:8.280000px;}
.ws20_c00131{word-spacing:8.640000px;}
.ws12_c00131{word-spacing:10.368000px;}
.ws13_c00131{word-spacing:10.440000px;}
.ws33_c00131{word-spacing:10.728000px;}
.ws34_c00131{word-spacing:10.800000px;}
.ws2a_c00131{word-spacing:11.160000px;}
.ws2b_c00131{word-spacing:11.448000px;}
.ws29_c00131{word-spacing:11.520000px;}
.ws21_c00131{word-spacing:11.808000px;}
.ws22_c00131{word-spacing:11.880000px;}
.ws2e_c00131{word-spacing:14.328000px;}
.ws2f_c00131{word-spacing:14.688000px;}
.ws30_c00131{word-spacing:14.760000px;}
.wse_c00131{word-spacing:16.848000px;}
.wsc_c00131{word-spacing:16.920000px;}
.ws24_c00131{word-spacing:19.368000px;}
.ws23_c00131{word-spacing:19.440000px;}
.ws15_c00131{word-spacing:21.528000px;}
.ws16_c00131{word-spacing:21.600000px;}
.ws25_c00131{word-spacing:22.608000px;}
.ws26_c00131{word-spacing:22.680000px;}
.ws8_c00131{word-spacing:28.008000px;}
.ws2c_c00131{word-spacing:29.448000px;}
.ws2d_c00131{word-spacing:30.240000px;}
._0_c00131{margin-left:-1.015200px;}
._3_c00131{width:1.008000px;}
._7_c00131{width:2.160000px;}
._8_c00131{width:3.261600px;}
._9_c00131{width:5.493600px;}
._4_c00131{width:7.272000px;}
._1_c00131{width:8.424000px;}
._5_c00131{width:10.512000px;}
._d_c00131{width:11.606400px;}
._2_c00131{width:15.991200px;}
._a_c00131{width:19.224000px;}
._6_c00131{width:20.815200px;}
._b_c00131{width:22.536000px;}
._c_c00131{width:29.966400px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs3_c00131{font-size:38.880000px;}
.fs2_c00131{font-size:47.880000px;}
.fs0_c00131{font-size:54.000000px;}
.fs4_c00131{font-size:60.120000px;}
.fs1_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y26_c00131{bottom:57.240000px;}
.y25_c00131{bottom:109.791180px;}
.y24_c00131{bottom:126.985500px;}
.y23_c00131{bottom:149.490000px;}
.y27_c00131{bottom:162.180000px;}
.y22_c00131{bottom:209.970000px;}
.y21_c00131{bottom:241.020000px;}
.y20_c00131{bottom:272.070000px;}
.y1f_c00131{bottom:303.120000px;}
.y1e_c00131{bottom:334.170000px;}
.y1d_c00131{bottom:365.220000px;}
.y1c_c00131{bottom:396.270000px;}
.y1b_c00131{bottom:427.320000px;}
.y1a_c00131{bottom:458.370000px;}
.y19_c00131{bottom:489.420000px;}
.y18_c00131{bottom:520.470000px;}
.y17_c00131{bottom:551.520000px;}
.y16_c00131{bottom:582.570000px;}
.y15_c00131{bottom:613.620000px;}
.y14_c00131{bottom:644.670000px;}
.y13_c00131{bottom:675.720000px;}
.y12_c00131{bottom:706.770000px;}
.y11_c00131{bottom:737.820000px;}
.y10_c00131{bottom:768.870000px;}
.yf_c00131{bottom:799.920000px;}
.ye_c00131{bottom:830.970000px;}
.yd_c00131{bottom:861.930000px;}
.yc_c00131{bottom:892.980000px;}
.yb_c00131{bottom:924.030000px;}
.ya_c00131{bottom:955.080000px;}
.y9_c00131{bottom:986.130000px;}
.y8_c00131{bottom:1017.180000px;}
.y7_c00131{bottom:1048.230000px;}
.y6_c00131{bottom:1079.280000px;}
.y5_c00131{bottom:1110.330000px;}
.y4_c00131{bottom:1131.030000px;}
.y3_c00131{bottom:1150.915500px;}
.y2_c00131{bottom:1166.400000px;}
.y1_c00131{bottom:1197.450000px;}
.h5_c00131{height:38.158594px;}
.h2_c00131{height:52.998047px;}
.h6_c00131{height:59.004492px;}
.h3_c00131{height:70.664062px;}
.h4_c00131{height:73.991602px;}
.h0_c00131{height:1262.880000px;}
.h1_c00131{height:1263.000000px;}
.w0_c00131{width:893.070000px;}
.w1_c00131{width:893.250000px;}
.x0_c00131{left:0.000000px;}
.x2_c00131{left:127.620000px;}
.x1_c00131{left:446.580000px;}
@media print{
.v1_c00131{vertical-align:-55.056000pt;}
.v3_c00131{vertical-align:-18.560000pt;}
.v0_c00131{vertical-align:0.000000pt;}
.v2_c00131{vertical-align:24.000000pt;}
.lsf_c00131{letter-spacing:-0.320000pt;}
.ls11_c00131{letter-spacing:-0.256000pt;}
.ls10_c00131{letter-spacing:-0.192000pt;}
.ls14_c00131{letter-spacing:-0.106880pt;}
.lsd_c00131{letter-spacing:-0.064000pt;}
.ls12_c00131{letter-spacing:-0.053440pt;}
.lsc_c00131{letter-spacing:0.000000pt;}
.ls2_c00131{letter-spacing:0.064000pt;}
.lse_c00131{letter-spacing:0.128000pt;}
.ls13_c00131{letter-spacing:0.160320pt;}
.ls7_c00131{letter-spacing:0.170240pt;}
.lsb_c00131{letter-spacing:4.542400pt;}
.ls5_c00131{letter-spacing:5.440000pt;}
.ls9_c00131{letter-spacing:8.960000pt;}
.ls4_c00131{letter-spacing:9.280000pt;}
.ls3_c00131{letter-spacing:9.286400pt;}
.lsa_c00131{letter-spacing:9.600000pt;}
.ls6_c00131{letter-spacing:10.560000pt;}
.ls1_c00131{letter-spacing:24.960000pt;}
.ls8_c00131{letter-spacing:26.560000pt;}
.ls0_c00131{letter-spacing:284.016000pt;}
.ws1_c00131{word-spacing:-16.064000pt;}
.ws0_c00131{word-spacing:-15.936000pt;}
.ws2_c00131{word-spacing:-15.808000pt;}
.ws4_c00131{word-spacing:-15.744000pt;}
.ws3_c00131{word-spacing:-10.810240pt;}
.ws5_c00131{word-spacing:-8.640000pt;}
.ws7_c00131{word-spacing:-0.144000pt;}
.wsb_c00131{word-spacing:-0.128000pt;}
.wsd_c00131{word-spacing:-0.064000pt;}
.ws6_c00131{word-spacing:0.000000pt;}
.ws38_c00131{word-spacing:0.213760pt;}
.ws32_c00131{word-spacing:0.256000pt;}
.ws37_c00131{word-spacing:0.267200pt;}
.ws14_c00131{word-spacing:0.320000pt;}
.ws28_c00131{word-spacing:1.216000pt;}
.ws27_c00131{word-spacing:1.280000pt;}
.ws17_c00131{word-spacing:2.176000pt;}
.ws18_c00131{word-spacing:2.240000pt;}
.ws1c_c00131{word-spacing:2.560000pt;}
.ws1b_c00131{word-spacing:2.816000pt;}
.ws1d_c00131{word-spacing:3.200000pt;}
.ws1a_c00131{word-spacing:3.456000pt;}
.ws19_c00131{word-spacing:3.520000pt;}
.ws36_c00131{word-spacing:4.595840pt;}
.ws1f_c00131{word-spacing:5.120000pt;}
.ws1e_c00131{word-spacing:5.376000pt;}
.ws35_c00131{word-spacing:5.696000pt;}
.ws11_c00131{word-spacing:6.336000pt;}
.ws10_c00131{word-spacing:6.656000pt;}
.wsf_c00131{word-spacing:6.720000pt;}
.wsa_c00131{word-spacing:6.976000pt;}
.ws31_c00131{word-spacing:7.040000pt;}
.ws9_c00131{word-spacing:7.360000pt;}
.ws20_c00131{word-spacing:7.680000pt;}
.ws12_c00131{word-spacing:9.216000pt;}
.ws13_c00131{word-spacing:9.280000pt;}
.ws33_c00131{word-spacing:9.536000pt;}
.ws34_c00131{word-spacing:9.600000pt;}
.ws2a_c00131{word-spacing:9.920000pt;}
.ws2b_c00131{word-spacing:10.176000pt;}
.ws29_c00131{word-spacing:10.240000pt;}
.ws21_c00131{word-spacing:10.496000pt;}
.ws22_c00131{word-spacing:10.560000pt;}
.ws2e_c00131{word-spacing:12.736000pt;}
.ws2f_c00131{word-spacing:13.056000pt;}
.ws30_c00131{word-spacing:13.120000pt;}
.wse_c00131{word-spacing:14.976000pt;}
.wsc_c00131{word-spacing:15.040000pt;}
.ws24_c00131{word-spacing:17.216000pt;}
.ws23_c00131{word-spacing:17.280000pt;}
.ws15_c00131{word-spacing:19.136000pt;}
.ws16_c00131{word-spacing:19.200000pt;}
.ws25_c00131{word-spacing:20.096000pt;}
.ws26_c00131{word-spacing:20.160000pt;}
.ws8_c00131{word-spacing:24.896000pt;}
.ws2c_c00131{word-spacing:26.176000pt;}
.ws2d_c00131{word-spacing:26.880000pt;}
._0_c00131{margin-left:-0.902400pt;}
._3_c00131{width:0.896000pt;}
._7_c00131{width:1.920000pt;}
._8_c00131{width:2.899200pt;}
._9_c00131{width:4.883200pt;}
._4_c00131{width:6.464000pt;}
._1_c00131{width:7.488000pt;}
._5_c00131{width:9.344000pt;}
._d_c00131{width:10.316800pt;}
._2_c00131{width:14.214400pt;}
._a_c00131{width:17.088000pt;}
._6_c00131{width:18.502400pt;}
._b_c00131{width:20.032000pt;}
._c_c00131{width:26.636800pt;}
.fs3_c00131{font-size:34.560000pt;}
.fs2_c00131{font-size:42.560000pt;}
.fs0_c00131{font-size:48.000000pt;}
.fs4_c00131{font-size:53.440000pt;}
.fs1_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y26_c00131{bottom:50.880000pt;}
.y25_c00131{bottom:97.592160pt;}
.y24_c00131{bottom:112.876000pt;}
.y23_c00131{bottom:132.880000pt;}
.y27_c00131{bottom:144.160000pt;}
.y22_c00131{bottom:186.640000pt;}
.y21_c00131{bottom:214.240000pt;}
.y20_c00131{bottom:241.840000pt;}
.y1f_c00131{bottom:269.440000pt;}
.y1e_c00131{bottom:297.040000pt;}
.y1d_c00131{bottom:324.640000pt;}
.y1c_c00131{bottom:352.240000pt;}
.y1b_c00131{bottom:379.840000pt;}
.y1a_c00131{bottom:407.440000pt;}
.y19_c00131{bottom:435.040000pt;}
.y18_c00131{bottom:462.640000pt;}
.y17_c00131{bottom:490.240000pt;}
.y16_c00131{bottom:517.840000pt;}
.y15_c00131{bottom:545.440000pt;}
.y14_c00131{bottom:573.040000pt;}
.y13_c00131{bottom:600.640000pt;}
.y12_c00131{bottom:628.240000pt;}
.y11_c00131{bottom:655.840000pt;}
.y10_c00131{bottom:683.440000pt;}
.yf_c00131{bottom:711.040000pt;}
.ye_c00131{bottom:738.640000pt;}
.yd_c00131{bottom:766.160000pt;}
.yc_c00131{bottom:793.760000pt;}
.yb_c00131{bottom:821.360000pt;}
.ya_c00131{bottom:848.960000pt;}
.y9_c00131{bottom:876.560000pt;}
.y8_c00131{bottom:904.160000pt;}
.y7_c00131{bottom:931.760000pt;}
.y6_c00131{bottom:959.360000pt;}
.y5_c00131{bottom:986.960000pt;}
.y4_c00131{bottom:1005.360000pt;}
.y3_c00131{bottom:1023.036000pt;}
.y2_c00131{bottom:1036.800000pt;}
.y1_c00131{bottom:1064.400000pt;}
.h5_c00131{height:33.918750pt;}
.h2_c00131{height:47.109375pt;}
.h6_c00131{height:52.448437pt;}
.h3_c00131{height:62.812500pt;}
.h4_c00131{height:65.770313pt;}
.h0_c00131{height:1122.560000pt;}
.h1_c00131{height:1122.666667pt;}
.w0_c00131{width:793.840000pt;}
.w1_c00131{width:794.000000pt;}
.x0_c00131{left:0.000000pt;}
.x2_c00131{left:113.440000pt;}
.x1_c00131{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5269b06ad29dfb77106bf5d7.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_a3ee36531befb2398ce5cf64.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;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_c00132;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.432129;font-style: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;}
.lsc_c00132{letter-spacing:-0.576000px;}
.lsd_c00132{letter-spacing:-0.288000px;}
.ls9_c00132{letter-spacing:-0.144000px;}
.ls8_c00132{letter-spacing:-0.108000px;}
.ls7_c00132{letter-spacing:0.000000px;}
.ls5_c00132{letter-spacing:0.072000px;}
.lsa_c00132{letter-spacing:0.144000px;}
.lsb_c00132{letter-spacing:0.360000px;}
.ls2_c00132{letter-spacing:2.520000px;}
.ls1_c00132{letter-spacing:2.880000px;}
.ls4_c00132{letter-spacing:3.960000px;}
.ls3_c00132{letter-spacing:15.840000px;}
.ls6_c00132{letter-spacing:30.744000px;}
.ls0_c00132{letter-spacing:32.760000px;}
.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;}
}
.ws3_c00132{word-spacing:-18.144000px;}
.ws1_c00132{word-spacing:-18.072000px;}
.ws2_c00132{word-spacing:-18.000000px;}
.ws0_c00132{word-spacing:-17.856000px;}
.ws4_c00132{word-spacing:-17.424000px;}
.ws1a_c00132{word-spacing:-0.432000px;}
.ws12_c00132{word-spacing:-0.360000px;}
.ws24_c00132{word-spacing:-0.072000px;}
.ws5_c00132{word-spacing:0.000000px;}
.ws7_c00132{word-spacing:0.162000px;}
.ws6_c00132{word-spacing:0.270000px;}
.ws26_c00132{word-spacing:0.288000px;}
.ws29_c00132{word-spacing:0.360000px;}
.ws11_c00132{word-spacing:2.448000px;}
.ws1b_c00132{word-spacing:2.520000px;}
.wsf_c00132{word-spacing:2.808000px;}
.ws10_c00132{word-spacing:2.880000px;}
.wsd_c00132{word-spacing:3.888000px;}
.ws25_c00132{word-spacing:3.960000px;}
.ws23_c00132{word-spacing:4.320000px;}
.ws21_c00132{word-spacing:6.480000px;}
.ws17_c00132{word-spacing:7.416000px;}
.ws18_c00132{word-spacing:7.560000px;}
.ws20_c00132{word-spacing:9.000000px;}
.wsc_c00132{word-spacing:9.216000px;}
.wsb_c00132{word-spacing:9.288000px;}
.ws1f_c00132{word-spacing:9.360000px;}
.ws19_c00132{word-spacing:11.808000px;}
.ws1d_c00132{word-spacing:12.168000px;}
.ws1e_c00132{word-spacing:13.248000px;}
.ws28_c00132{word-spacing:13.968000px;}
.ws27_c00132{word-spacing:14.040000px;}
.ws13_c00132{word-spacing:14.328000px;}
.ws15_c00132{word-spacing:15.480000px;}
.ws1c_c00132{word-spacing:15.840000px;}
.wse_c00132{word-spacing:17.640000px;}
.wsa_c00132{word-spacing:17.928000px;}
.ws16_c00132{word-spacing:19.080000px;}
.ws14_c00132{word-spacing:20.808000px;}
.ws2a_c00132{word-spacing:31.680000px;}
.ws9_c00132{word-spacing:32.760000px;}
.ws8_c00132{word-spacing:33.120000px;}
.ws22_c00132{word-spacing:37.080000px;}
._1_c00132{margin-left:-1.058400px;}
._0_c00132{width:1.220400px;}
._3_c00132{width:3.988800px;}
._2_c00132{width:12.888000px;}
._4_c00132{width:14.259600px;}
.fc0_c00132{color:rgb(0,0,0);}
.fs0_c00132{font-size:54.000000px;}
.fs1_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y27_c00132{bottom:57.240000px;}
.y26_c00132{bottom:116.820000px;}
.y25_c00132{bottom:147.870000px;}
.y24_c00132{bottom:178.920000px;}
.y23_c00132{bottom:209.970000px;}
.y22_c00132{bottom:241.020000px;}
.y21_c00132{bottom:272.070000px;}
.y20_c00132{bottom:303.120000px;}
.y1f_c00132{bottom:334.170000px;}
.y1e_c00132{bottom:365.220000px;}
.y1d_c00132{bottom:396.270000px;}
.y1c_c00132{bottom:427.320000px;}
.y1b_c00132{bottom:458.370000px;}
.y1a_c00132{bottom:489.420000px;}
.y19_c00132{bottom:520.470000px;}
.y18_c00132{bottom:551.520000px;}
.y17_c00132{bottom:582.570000px;}
.y16_c00132{bottom:613.620000px;}
.y15_c00132{bottom:644.670000px;}
.y14_c00132{bottom:675.720000px;}
.y13_c00132{bottom:706.770000px;}
.y12_c00132{bottom:737.820000px;}
.y11_c00132{bottom:768.870000px;}
.y10_c00132{bottom:799.920000px;}
.yf_c00132{bottom:830.970000px;}
.ye_c00132{bottom:861.930000px;}
.yd_c00132{bottom:892.980000px;}
.yc_c00132{bottom:924.030000px;}
.yb_c00132{bottom:955.080000px;}
.ya_c00132{bottom:986.130000px;}
.y9_c00132{bottom:1017.180000px;}
.y8_c00132{bottom:1048.230000px;}
.y7_c00132{bottom:1079.280000px;}
.y6_c00132{bottom:1110.330000px;}
.y5_c00132{bottom:1131.030000px;}
.y4_c00132{bottom:1150.920000px;}
.y3_c00132{bottom:1166.404500px;}
.y2_c00132{bottom:1181.970000px;}
.y1_c00132{bottom:1197.450000px;}
.h3_c00132{height:52.971680px;}
.h2_c00132{height:52.998047px;}
.h4_c00132{height:70.664062px;}
.h5_c00132{height:75.093750px;}
.h0_c00132{height:1262.880000px;}
.h1_c00132{height:1263.000000px;}
.w0_c00132{width:893.070000px;}
.w1_c00132{width:893.250000px;}
.x0_c00132{left:0.000000px;}
.x3_c00132{left:127.620000px;}
.x4_c00132{left:154.620000px;}
.x5_c00132{left:181.620000px;}
.x2_c00132{left:425.160000px;}
.x1_c00132{left:446.580000px;}
.x6_c00132{left:747.540000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.lsc_c00132{letter-spacing:-0.512000pt;}
.lsd_c00132{letter-spacing:-0.256000pt;}
.ls9_c00132{letter-spacing:-0.128000pt;}
.ls8_c00132{letter-spacing:-0.096000pt;}
.ls7_c00132{letter-spacing:0.000000pt;}
.ls5_c00132{letter-spacing:0.064000pt;}
.lsa_c00132{letter-spacing:0.128000pt;}
.lsb_c00132{letter-spacing:0.320000pt;}
.ls2_c00132{letter-spacing:2.240000pt;}
.ls1_c00132{letter-spacing:2.560000pt;}
.ls4_c00132{letter-spacing:3.520000pt;}
.ls3_c00132{letter-spacing:14.080000pt;}
.ls6_c00132{letter-spacing:27.328000pt;}
.ls0_c00132{letter-spacing:29.120000pt;}
.ws3_c00132{word-spacing:-16.128000pt;}
.ws1_c00132{word-spacing:-16.064000pt;}
.ws2_c00132{word-spacing:-16.000000pt;}
.ws0_c00132{word-spacing:-15.872000pt;}
.ws4_c00132{word-spacing:-15.488000pt;}
.ws1a_c00132{word-spacing:-0.384000pt;}
.ws12_c00132{word-spacing:-0.320000pt;}
.ws24_c00132{word-spacing:-0.064000pt;}
.ws5_c00132{word-spacing:0.000000pt;}
.ws7_c00132{word-spacing:0.144000pt;}
.ws6_c00132{word-spacing:0.240000pt;}
.ws26_c00132{word-spacing:0.256000pt;}
.ws29_c00132{word-spacing:0.320000pt;}
.ws11_c00132{word-spacing:2.176000pt;}
.ws1b_c00132{word-spacing:2.240000pt;}
.wsf_c00132{word-spacing:2.496000pt;}
.ws10_c00132{word-spacing:2.560000pt;}
.wsd_c00132{word-spacing:3.456000pt;}
.ws25_c00132{word-spacing:3.520000pt;}
.ws23_c00132{word-spacing:3.840000pt;}
.ws21_c00132{word-spacing:5.760000pt;}
.ws17_c00132{word-spacing:6.592000pt;}
.ws18_c00132{word-spacing:6.720000pt;}
.ws20_c00132{word-spacing:8.000000pt;}
.wsc_c00132{word-spacing:8.192000pt;}
.wsb_c00132{word-spacing:8.256000pt;}
.ws1f_c00132{word-spacing:8.320000pt;}
.ws19_c00132{word-spacing:10.496000pt;}
.ws1d_c00132{word-spacing:10.816000pt;}
.ws1e_c00132{word-spacing:11.776000pt;}
.ws28_c00132{word-spacing:12.416000pt;}
.ws27_c00132{word-spacing:12.480000pt;}
.ws13_c00132{word-spacing:12.736000pt;}
.ws15_c00132{word-spacing:13.760000pt;}
.ws1c_c00132{word-spacing:14.080000pt;}
.wse_c00132{word-spacing:15.680000pt;}
.wsa_c00132{word-spacing:15.936000pt;}
.ws16_c00132{word-spacing:16.960000pt;}
.ws14_c00132{word-spacing:18.496000pt;}
.ws2a_c00132{word-spacing:28.160000pt;}
.ws9_c00132{word-spacing:29.120000pt;}
.ws8_c00132{word-spacing:29.440000pt;}
.ws22_c00132{word-spacing:32.960000pt;}
._1_c00132{margin-left:-0.940800pt;}
._0_c00132{width:1.084800pt;}
._3_c00132{width:3.545600pt;}
._2_c00132{width:11.456000pt;}
._4_c00132{width:12.675200pt;}
.fs0_c00132{font-size:48.000000pt;}
.fs1_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y27_c00132{bottom:50.880000pt;}
.y26_c00132{bottom:103.840000pt;}
.y25_c00132{bottom:131.440000pt;}
.y24_c00132{bottom:159.040000pt;}
.y23_c00132{bottom:186.640000pt;}
.y22_c00132{bottom:214.240000pt;}
.y21_c00132{bottom:241.840000pt;}
.y20_c00132{bottom:269.440000pt;}
.y1f_c00132{bottom:297.040000pt;}
.y1e_c00132{bottom:324.640000pt;}
.y1d_c00132{bottom:352.240000pt;}
.y1c_c00132{bottom:379.840000pt;}
.y1b_c00132{bottom:407.440000pt;}
.y1a_c00132{bottom:435.040000pt;}
.y19_c00132{bottom:462.640000pt;}
.y18_c00132{bottom:490.240000pt;}
.y17_c00132{bottom:517.840000pt;}
.y16_c00132{bottom:545.440000pt;}
.y15_c00132{bottom:573.040000pt;}
.y14_c00132{bottom:600.640000pt;}
.y13_c00132{bottom:628.240000pt;}
.y12_c00132{bottom:655.840000pt;}
.y11_c00132{bottom:683.440000pt;}
.y10_c00132{bottom:711.040000pt;}
.yf_c00132{bottom:738.640000pt;}
.ye_c00132{bottom:766.160000pt;}
.yd_c00132{bottom:793.760000pt;}
.yc_c00132{bottom:821.360000pt;}
.yb_c00132{bottom:848.960000pt;}
.ya_c00132{bottom:876.560000pt;}
.y9_c00132{bottom:904.160000pt;}
.y8_c00132{bottom:931.760000pt;}
.y7_c00132{bottom:959.360000pt;}
.y6_c00132{bottom:986.960000pt;}
.y5_c00132{bottom:1005.360000pt;}
.y4_c00132{bottom:1023.040000pt;}
.y3_c00132{bottom:1036.804000pt;}
.y2_c00132{bottom:1050.640000pt;}
.y1_c00132{bottom:1064.400000pt;}
.h3_c00132{height:47.085938pt;}
.h2_c00132{height:47.109375pt;}
.h4_c00132{height:62.812500pt;}
.h5_c00132{height:66.750000pt;}
.h0_c00132{height:1122.560000pt;}
.h1_c00132{height:1122.666667pt;}
.w0_c00132{width:793.840000pt;}
.w1_c00132{width:794.000000pt;}
.x0_c00132{left:0.000000pt;}
.x3_c00132{left:113.440000pt;}
.x4_c00132{left:137.440000pt;}
.x5_c00132{left:161.440000pt;}
.x2_c00132{left:377.920000pt;}
.x1_c00132{left:396.960000pt;}
.x6_c00132{left:664.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_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_cb07a76cbbea608dee3add6f.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_e8e2bd8cfc80c7ba0c75c9fb.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;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_c00133;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00133{vertical-align:-61.938000px;}
.v3_c00133{vertical-align:-20.880000px;}
.v0_c00133{vertical-align:0.000000px;}
.v2_c00133{vertical-align:27.000000px;}
.ls13_c00133{letter-spacing:-0.576000px;}
.ls11_c00133{letter-spacing:-0.216000px;}
.ls12_c00133{letter-spacing:-0.144000px;}
.ls14_c00133{letter-spacing:-0.120240px;}
.ls10_c00133{letter-spacing:0.000000px;}
.ls4_c00133{letter-spacing:0.072000px;}
.lsf_c00133{letter-spacing:0.120240px;}
.ls6_c00133{letter-spacing:0.144000px;}
.ls15_c00133{letter-spacing:0.180360px;}
.ls7_c00133{letter-spacing:0.191520px;}
.ls5_c00133{letter-spacing:3.600000px;}
.lsb_c00133{letter-spacing:8.280000px;}
.lsa_c00133{letter-spacing:11.527200px;}
.ls9_c00133{letter-spacing:12.960000px;}
.lse_c00133{letter-spacing:19.178280px;}
.ls8_c00133{letter-spacing:24.120000px;}
.ls1_c00133{letter-spacing:25.207200px;}
.lsd_c00133{letter-spacing:30.744000px;}
.lsc_c00133{letter-spacing:34.920000px;}
.ls3_c00133{letter-spacing:36.360000px;}
.ls2_c00133{letter-spacing:38.520000px;}
.ls0_c00133{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00133{word-spacing:-18.144000px;}
.ws1_c00133{word-spacing:-18.072000px;}
.ws0_c00133{word-spacing:-18.000000px;}
.ws4_c00133{word-spacing:-17.424000px;}
.ws3_c00133{word-spacing:-12.161520px;}
.ws5_c00133{word-spacing:-9.720000px;}
.ws34_c00133{word-spacing:-0.432000px;}
.ws39_c00133{word-spacing:-0.420840px;}
.ws7_c00133{word-spacing:-0.162000px;}
.ws27_c00133{word-spacing:-0.072000px;}
.ws3a_c00133{word-spacing:-0.060120px;}
.ws6_c00133{word-spacing:0.000000px;}
.ws10_c00133{word-spacing:0.360000px;}
.ws15_c00133{word-spacing:0.576000px;}
.wsf_c00133{word-spacing:0.648000px;}
.wse_c00133{word-spacing:0.720000px;}
.ws1d_c00133{word-spacing:2.448000px;}
.ws1e_c00133{word-spacing:2.808000px;}
.ws1c_c00133{word-spacing:2.880000px;}
.ws33_c00133{word-spacing:3.240000px;}
.ws12_c00133{word-spacing:3.456000px;}
.ws14_c00133{word-spacing:3.528000px;}
.ws11_c00133{word-spacing:3.600000px;}
.ws13_c00133{word-spacing:3.816000px;}
.ws17_c00133{word-spacing:4.248000px;}
.ws16_c00133{word-spacing:4.320000px;}
.ws36_c00133{word-spacing:7.128000px;}
.ws28_c00133{word-spacing:7.488000px;}
.ws29_c00133{word-spacing:7.560000px;}
.ws22_c00133{word-spacing:8.064000px;}
.ws2f_c00133{word-spacing:8.136000px;}
.ws20_c00133{word-spacing:8.208000px;}
.ws21_c00133{word-spacing:8.280000px;}
.ws2e_c00133{word-spacing:9.648000px;}
.ws2d_c00133{word-spacing:9.720000px;}
.ws25_c00133{word-spacing:11.376000px;}
.ws26_c00133{word-spacing:11.448000px;}
.ws24_c00133{word-spacing:12.600000px;}
.ws23_c00133{word-spacing:12.960000px;}
.ws38_c00133{word-spacing:18.997920px;}
.ws37_c00133{word-spacing:19.298520px;}
.ws1f_c00133{word-spacing:20.520000px;}
.ws35_c00133{word-spacing:21.600000px;}
.ws1b_c00133{word-spacing:23.760000px;}
.ws1a_c00133{word-spacing:24.048000px;}
.ws19_c00133{word-spacing:24.120000px;}
.ws8_c00133{word-spacing:25.128000px;}
.ws9_c00133{word-spacing:25.200000px;}
.ws2c_c00133{word-spacing:26.856000px;}
.ws2b_c00133{word-spacing:26.928000px;}
.ws2a_c00133{word-spacing:27.000000px;}
.ws18_c00133{word-spacing:29.088000px;}
.ws32_c00133{word-spacing:34.488000px;}
.ws30_c00133{word-spacing:34.560000px;}
.ws31_c00133{word-spacing:34.920000px;}
.wsc_c00133{word-spacing:36.288000px;}
.wsd_c00133{word-spacing:36.360000px;}
.wsa_c00133{word-spacing:38.448000px;}
.wsb_c00133{word-spacing:38.520000px;}
._0_c00133{margin-left:-1.224000px;}
._3_c00133{width:1.303200px;}
._2_c00133{width:2.808000px;}
._4_c00133{width:4.096800px;}
._5_c00133{width:8.136000px;}
._7_c00133{width:10.080000px;}
._1_c00133{width:24.400800px;}
._6_c00133{width:27.144000px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs3_c00133{font-size:38.880000px;}
.fs2_c00133{font-size:47.880000px;}
.fs0_c00133{font-size:54.000000px;}
.fs4_c00133{font-size:60.120000px;}
.fs1_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y26_c00133{bottom:57.240000px;}
.y25_c00133{bottom:115.020000px;}
.y24_c00133{bottom:126.985500px;}
.y23_c00133{bottom:149.490000px;}
.y27_c00133{bottom:162.180000px;}
.y22_c00133{bottom:209.970000px;}
.y21_c00133{bottom:241.020000px;}
.y20_c00133{bottom:272.070000px;}
.y1f_c00133{bottom:303.120000px;}
.y1e_c00133{bottom:334.170000px;}
.y1d_c00133{bottom:365.220000px;}
.y1c_c00133{bottom:396.270000px;}
.y1b_c00133{bottom:427.320000px;}
.y1a_c00133{bottom:458.370000px;}
.y19_c00133{bottom:489.420000px;}
.y18_c00133{bottom:520.470000px;}
.y17_c00133{bottom:551.520000px;}
.y16_c00133{bottom:582.570000px;}
.y15_c00133{bottom:613.620000px;}
.y14_c00133{bottom:644.670000px;}
.y13_c00133{bottom:675.720000px;}
.y12_c00133{bottom:706.770000px;}
.y11_c00133{bottom:737.820000px;}
.y10_c00133{bottom:768.870000px;}
.yf_c00133{bottom:799.920000px;}
.ye_c00133{bottom:830.970000px;}
.yd_c00133{bottom:861.930000px;}
.yc_c00133{bottom:892.980000px;}
.yb_c00133{bottom:924.030000px;}
.ya_c00133{bottom:955.080000px;}
.y9_c00133{bottom:986.130000px;}
.y8_c00133{bottom:1017.180000px;}
.y7_c00133{bottom:1048.230000px;}
.y6_c00133{bottom:1079.280000px;}
.y5_c00133{bottom:1110.330000px;}
.y4_c00133{bottom:1131.030000px;}
.y3_c00133{bottom:1150.915500px;}
.y2_c00133{bottom:1166.400000px;}
.y1_c00133{bottom:1197.450000px;}
.h6_c00133{height:38.158594px;}
.h2_c00133{height:52.998047px;}
.h7_c00133{height:59.004492px;}
.h3_c00133{height:70.664062px;}
.h4_c00133{height:73.991602px;}
.h5_c00133{height:75.093750px;}
.h0_c00133{height:1262.880000px;}
.h1_c00133{height:1263.000000px;}
.w0_c00133{width:893.070000px;}
.w1_c00133{width:893.250000px;}
.x0_c00133{left:0.000000px;}
.x2_c00133{left:127.620000px;}
.x3_c00133{left:154.620000px;}
.x4_c00133{left:181.620000px;}
.x1_c00133{left:446.580000px;}
@media print{
.v1_c00133{vertical-align:-55.056000pt;}
.v3_c00133{vertical-align:-18.560000pt;}
.v0_c00133{vertical-align:0.000000pt;}
.v2_c00133{vertical-align:24.000000pt;}
.ls13_c00133{letter-spacing:-0.512000pt;}
.ls11_c00133{letter-spacing:-0.192000pt;}
.ls12_c00133{letter-spacing:-0.128000pt;}
.ls14_c00133{letter-spacing:-0.106880pt;}
.ls10_c00133{letter-spacing:0.000000pt;}
.ls4_c00133{letter-spacing:0.064000pt;}
.lsf_c00133{letter-spacing:0.106880pt;}
.ls6_c00133{letter-spacing:0.128000pt;}
.ls15_c00133{letter-spacing:0.160320pt;}
.ls7_c00133{letter-spacing:0.170240pt;}
.ls5_c00133{letter-spacing:3.200000pt;}
.lsb_c00133{letter-spacing:7.360000pt;}
.lsa_c00133{letter-spacing:10.246400pt;}
.ls9_c00133{letter-spacing:11.520000pt;}
.lse_c00133{letter-spacing:17.047360pt;}
.ls8_c00133{letter-spacing:21.440000pt;}
.ls1_c00133{letter-spacing:22.406400pt;}
.lsd_c00133{letter-spacing:27.328000pt;}
.lsc_c00133{letter-spacing:31.040000pt;}
.ls3_c00133{letter-spacing:32.320000pt;}
.ls2_c00133{letter-spacing:34.240000pt;}
.ls0_c00133{letter-spacing:284.016000pt;}
.ws2_c00133{word-spacing:-16.128000pt;}
.ws1_c00133{word-spacing:-16.064000pt;}
.ws0_c00133{word-spacing:-16.000000pt;}
.ws4_c00133{word-spacing:-15.488000pt;}
.ws3_c00133{word-spacing:-10.810240pt;}
.ws5_c00133{word-spacing:-8.640000pt;}
.ws34_c00133{word-spacing:-0.384000pt;}
.ws39_c00133{word-spacing:-0.374080pt;}
.ws7_c00133{word-spacing:-0.144000pt;}
.ws27_c00133{word-spacing:-0.064000pt;}
.ws3a_c00133{word-spacing:-0.053440pt;}
.ws6_c00133{word-spacing:0.000000pt;}
.ws10_c00133{word-spacing:0.320000pt;}
.ws15_c00133{word-spacing:0.512000pt;}
.wsf_c00133{word-spacing:0.576000pt;}
.wse_c00133{word-spacing:0.640000pt;}
.ws1d_c00133{word-spacing:2.176000pt;}
.ws1e_c00133{word-spacing:2.496000pt;}
.ws1c_c00133{word-spacing:2.560000pt;}
.ws33_c00133{word-spacing:2.880000pt;}
.ws12_c00133{word-spacing:3.072000pt;}
.ws14_c00133{word-spacing:3.136000pt;}
.ws11_c00133{word-spacing:3.200000pt;}
.ws13_c00133{word-spacing:3.392000pt;}
.ws17_c00133{word-spacing:3.776000pt;}
.ws16_c00133{word-spacing:3.840000pt;}
.ws36_c00133{word-spacing:6.336000pt;}
.ws28_c00133{word-spacing:6.656000pt;}
.ws29_c00133{word-spacing:6.720000pt;}
.ws22_c00133{word-spacing:7.168000pt;}
.ws2f_c00133{word-spacing:7.232000pt;}
.ws20_c00133{word-spacing:7.296000pt;}
.ws21_c00133{word-spacing:7.360000pt;}
.ws2e_c00133{word-spacing:8.576000pt;}
.ws2d_c00133{word-spacing:8.640000pt;}
.ws25_c00133{word-spacing:10.112000pt;}
.ws26_c00133{word-spacing:10.176000pt;}
.ws24_c00133{word-spacing:11.200000pt;}
.ws23_c00133{word-spacing:11.520000pt;}
.ws38_c00133{word-spacing:16.887040pt;}
.ws37_c00133{word-spacing:17.154240pt;}
.ws1f_c00133{word-spacing:18.240000pt;}
.ws35_c00133{word-spacing:19.200000pt;}
.ws1b_c00133{word-spacing:21.120000pt;}
.ws1a_c00133{word-spacing:21.376000pt;}
.ws19_c00133{word-spacing:21.440000pt;}
.ws8_c00133{word-spacing:22.336000pt;}
.ws9_c00133{word-spacing:22.400000pt;}
.ws2c_c00133{word-spacing:23.872000pt;}
.ws2b_c00133{word-spacing:23.936000pt;}
.ws2a_c00133{word-spacing:24.000000pt;}
.ws18_c00133{word-spacing:25.856000pt;}
.ws32_c00133{word-spacing:30.656000pt;}
.ws30_c00133{word-spacing:30.720000pt;}
.ws31_c00133{word-spacing:31.040000pt;}
.wsc_c00133{word-spacing:32.256000pt;}
.wsd_c00133{word-spacing:32.320000pt;}
.wsa_c00133{word-spacing:34.176000pt;}
.wsb_c00133{word-spacing:34.240000pt;}
._0_c00133{margin-left:-1.088000pt;}
._3_c00133{width:1.158400pt;}
._2_c00133{width:2.496000pt;}
._4_c00133{width:3.641600pt;}
._5_c00133{width:7.232000pt;}
._7_c00133{width:8.960000pt;}
._1_c00133{width:21.689600pt;}
._6_c00133{width:24.128000pt;}
.fs3_c00133{font-size:34.560000pt;}
.fs2_c00133{font-size:42.560000pt;}
.fs0_c00133{font-size:48.000000pt;}
.fs4_c00133{font-size:53.440000pt;}
.fs1_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y26_c00133{bottom:50.880000pt;}
.y25_c00133{bottom:102.240000pt;}
.y24_c00133{bottom:112.876000pt;}
.y23_c00133{bottom:132.880000pt;}
.y27_c00133{bottom:144.160000pt;}
.y22_c00133{bottom:186.640000pt;}
.y21_c00133{bottom:214.240000pt;}
.y20_c00133{bottom:241.840000pt;}
.y1f_c00133{bottom:269.440000pt;}
.y1e_c00133{bottom:297.040000pt;}
.y1d_c00133{bottom:324.640000pt;}
.y1c_c00133{bottom:352.240000pt;}
.y1b_c00133{bottom:379.840000pt;}
.y1a_c00133{bottom:407.440000pt;}
.y19_c00133{bottom:435.040000pt;}
.y18_c00133{bottom:462.640000pt;}
.y17_c00133{bottom:490.240000pt;}
.y16_c00133{bottom:517.840000pt;}
.y15_c00133{bottom:545.440000pt;}
.y14_c00133{bottom:573.040000pt;}
.y13_c00133{bottom:600.640000pt;}
.y12_c00133{bottom:628.240000pt;}
.y11_c00133{bottom:655.840000pt;}
.y10_c00133{bottom:683.440000pt;}
.yf_c00133{bottom:711.040000pt;}
.ye_c00133{bottom:738.640000pt;}
.yd_c00133{bottom:766.160000pt;}
.yc_c00133{bottom:793.760000pt;}
.yb_c00133{bottom:821.360000pt;}
.ya_c00133{bottom:848.960000pt;}
.y9_c00133{bottom:876.560000pt;}
.y8_c00133{bottom:904.160000pt;}
.y7_c00133{bottom:931.760000pt;}
.y6_c00133{bottom:959.360000pt;}
.y5_c00133{bottom:986.960000pt;}
.y4_c00133{bottom:1005.360000pt;}
.y3_c00133{bottom:1023.036000pt;}
.y2_c00133{bottom:1036.800000pt;}
.y1_c00133{bottom:1064.400000pt;}
.h6_c00133{height:33.918750pt;}
.h2_c00133{height:47.109375pt;}
.h7_c00133{height:52.448437pt;}
.h3_c00133{height:62.812500pt;}
.h4_c00133{height:65.770312pt;}
.h5_c00133{height:66.750000pt;}
.h0_c00133{height:1122.560000pt;}
.h1_c00133{height:1122.666667pt;}
.w0_c00133{width:793.840000pt;}
.w1_c00133{width:794.000000pt;}
.x0_c00133{left:0.000000pt;}
.x2_c00133{left:113.440000pt;}
.x3_c00133{left:137.440000pt;}
.x4_c00133{left:161.440000pt;}
.x1_c00133{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9181ece08a4fff36c8d28c7.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_bfb8fa5606de20994b805f60.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;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_c00134;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00134{vertical-align:-82.800000px;}
.v3_c00134{vertical-align:-20.880000px;}
.v0_c00134{vertical-align:0.000000px;}
.v2_c00134{vertical-align:27.000000px;}
.ls14_c00134{letter-spacing:-0.661320px;}
.lsf_c00134{letter-spacing:-0.576000px;}
.ls11_c00134{letter-spacing:-0.360000px;}
.ls12_c00134{letter-spacing:-0.288000px;}
.ls13_c00134{letter-spacing:-0.180360px;}
.lse_c00134{letter-spacing:-0.108000px;}
.lsd_c00134{letter-spacing:0.000000px;}
.ls3_c00134{letter-spacing:0.072000px;}
.lsc_c00134{letter-spacing:0.120240px;}
.ls10_c00134{letter-spacing:0.144000px;}
.ls7_c00134{letter-spacing:0.191520px;}
.ls1_c00134{letter-spacing:0.720000px;}
.ls6_c00134{letter-spacing:1.440000px;}
.ls2_c00134{letter-spacing:2.520000px;}
.lsa_c00134{letter-spacing:2.880000px;}
.ls5_c00134{letter-spacing:5.040000px;}
.ls9_c00134{letter-spacing:12.600000px;}
.ls4_c00134{letter-spacing:25.927200px;}
.lsb_c00134{letter-spacing:29.880000px;}
.ls8_c00134{letter-spacing:30.744000px;}
.ls0_c00134{letter-spacing:198.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00134{word-spacing:-18.000000px;}
.ws3_c00134{word-spacing:-17.712000px;}
.ws0_c00134{word-spacing:-17.424000px;}
.ws5_c00134{word-spacing:-14.368680px;}
.ws1_c00134{word-spacing:-12.161520px;}
.ws4_c00134{word-spacing:-9.720000px;}
.wsa_c00134{word-spacing:-0.072000px;}
.ws6_c00134{word-spacing:0.000000px;}
.ws8_c00134{word-spacing:0.162000px;}
.ws7_c00134{word-spacing:0.270000px;}
.ws2c_c00134{word-spacing:0.300600px;}
.ws19_c00134{word-spacing:0.360000px;}
.ws9_c00134{word-spacing:0.720000px;}
.ws1d_c00134{word-spacing:1.080000px;}
.ws1c_c00134{word-spacing:1.296000px;}
.ws10_c00134{word-spacing:1.368000px;}
.ws11_c00134{word-spacing:1.440000px;}
.ws28_c00134{word-spacing:1.728000px;}
.ws1b_c00134{word-spacing:1.800000px;}
.ws27_c00134{word-spacing:2.376000px;}
.wsb_c00134{word-spacing:2.448000px;}
.wsc_c00134{word-spacing:2.520000px;}
.ws1e_c00134{word-spacing:2.808000px;}
.ws12_c00134{word-spacing:2.880000px;}
.ws26_c00134{word-spacing:3.168000px;}
.ws25_c00134{word-spacing:4.536000px;}
.ws18_c00134{word-spacing:4.608000px;}
.ws24_c00134{word-spacing:4.680000px;}
.wsf_c00134{word-spacing:4.968000px;}
.wse_c00134{word-spacing:5.040000px;}
.ws22_c00134{word-spacing:6.048000px;}
.ws23_c00134{word-spacing:6.120000px;}
.ws21_c00134{word-spacing:10.728000px;}
.ws15_c00134{word-spacing:12.240000px;}
.ws20_c00134{word-spacing:12.528000px;}
.ws1f_c00134{word-spacing:12.600000px;}
.ws13_c00134{word-spacing:13.896000px;}
.ws14_c00134{word-spacing:13.968000px;}
.ws16_c00134{word-spacing:20.448000px;}
.ws17_c00134{word-spacing:20.520000px;}
.ws1a_c00134{word-spacing:23.400000px;}
.wsd_c00134{word-spacing:25.848000px;}
.ws2b_c00134{word-spacing:29.808000px;}
.ws2a_c00134{word-spacing:35.280000px;}
.ws29_c00134{word-spacing:35.568000px;}
._1_c00134{margin-left:-1.058400px;}
._0_c00134{width:1.220400px;}
._3_c00134{width:2.404800px;}
._2_c00134{width:5.616000px;}
._5_c00134{width:13.307040px;}
._4_c00134{width:20.311200px;}
._6_c00134{width:30.146400px;}
.fc0_c00134{color:rgb(0,0,0);}
.fs3_c00134{font-size:38.880000px;}
.fs2_c00134{font-size:47.880000px;}
.fs0_c00134{font-size:54.000000px;}
.fs4_c00134{font-size:60.120000px;}
.fs1_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y26_c00134{bottom:57.240000px;}
.y25_c00134{bottom:115.020000px;}
.y24_c00134{bottom:132.210000px;}
.y23_c00134{bottom:149.490000px;}
.y27_c00134{bottom:162.180000px;}
.y22_c00134{bottom:209.970000px;}
.y21_c00134{bottom:241.020000px;}
.y20_c00134{bottom:272.070000px;}
.y1f_c00134{bottom:303.120000px;}
.y1e_c00134{bottom:334.170000px;}
.y1d_c00134{bottom:365.220000px;}
.y1c_c00134{bottom:396.270000px;}
.y1b_c00134{bottom:427.320000px;}
.y1a_c00134{bottom:458.370000px;}
.y19_c00134{bottom:489.420000px;}
.y18_c00134{bottom:520.470000px;}
.y17_c00134{bottom:551.520000px;}
.y16_c00134{bottom:582.570000px;}
.y15_c00134{bottom:613.620000px;}
.y14_c00134{bottom:644.670000px;}
.y13_c00134{bottom:675.720000px;}
.y12_c00134{bottom:706.770000px;}
.y11_c00134{bottom:737.820000px;}
.y10_c00134{bottom:768.870000px;}
.yf_c00134{bottom:799.920000px;}
.ye_c00134{bottom:830.970000px;}
.yd_c00134{bottom:861.930000px;}
.yc_c00134{bottom:892.980000px;}
.yb_c00134{bottom:924.030000px;}
.ya_c00134{bottom:955.080000px;}
.y9_c00134{bottom:986.130000px;}
.y8_c00134{bottom:1017.180000px;}
.y7_c00134{bottom:1048.230000px;}
.y6_c00134{bottom:1079.280000px;}
.y5_c00134{bottom:1131.030000px;}
.y4_c00134{bottom:1150.920000px;}
.y3_c00134{bottom:1166.404500px;}
.y2_c00134{bottom:1181.970000px;}
.y1_c00134{bottom:1197.450000px;}
.h7_c00134{height:38.158594px;}
.h3_c00134{height:52.971680px;}
.h2_c00134{height:52.998047px;}
.h4_c00134{height:70.664062px;}
.h5_c00134{height:73.991602px;}
.h6_c00134{height:75.093750px;}
.h0_c00134{height:1262.880000px;}
.h1_c00134{height:1263.000000px;}
.w0_c00134{width:893.070000px;}
.w1_c00134{width:893.250000px;}
.x0_c00134{left:0.000000px;}
.x3_c00134{left:127.620000px;}
.x5_c00134{left:154.620000px;}
.x4_c00134{left:181.620000px;}
.x2_c00134{left:425.160000px;}
.x1_c00134{left:446.580000px;}
.x6_c00134{left:747.540000px;}
@media print{
.v1_c00134{vertical-align:-73.600000pt;}
.v3_c00134{vertical-align:-18.560000pt;}
.v0_c00134{vertical-align:0.000000pt;}
.v2_c00134{vertical-align:24.000000pt;}
.ls14_c00134{letter-spacing:-0.587840pt;}
.lsf_c00134{letter-spacing:-0.512000pt;}
.ls11_c00134{letter-spacing:-0.320000pt;}
.ls12_c00134{letter-spacing:-0.256000pt;}
.ls13_c00134{letter-spacing:-0.160320pt;}
.lse_c00134{letter-spacing:-0.096000pt;}
.lsd_c00134{letter-spacing:0.000000pt;}
.ls3_c00134{letter-spacing:0.064000pt;}
.lsc_c00134{letter-spacing:0.106880pt;}
.ls10_c00134{letter-spacing:0.128000pt;}
.ls7_c00134{letter-spacing:0.170240pt;}
.ls1_c00134{letter-spacing:0.640000pt;}
.ls6_c00134{letter-spacing:1.280000pt;}
.ls2_c00134{letter-spacing:2.240000pt;}
.lsa_c00134{letter-spacing:2.560000pt;}
.ls5_c00134{letter-spacing:4.480000pt;}
.ls9_c00134{letter-spacing:11.200000pt;}
.ls4_c00134{letter-spacing:23.046400pt;}
.lsb_c00134{letter-spacing:26.560000pt;}
.ls8_c00134{letter-spacing:27.328000pt;}
.ls0_c00134{letter-spacing:176.000000pt;}
.ws2_c00134{word-spacing:-16.000000pt;}
.ws3_c00134{word-spacing:-15.744000pt;}
.ws0_c00134{word-spacing:-15.488000pt;}
.ws5_c00134{word-spacing:-12.772160pt;}
.ws1_c00134{word-spacing:-10.810240pt;}
.ws4_c00134{word-spacing:-8.640000pt;}
.wsa_c00134{word-spacing:-0.064000pt;}
.ws6_c00134{word-spacing:0.000000pt;}
.ws8_c00134{word-spacing:0.144000pt;}
.ws7_c00134{word-spacing:0.240000pt;}
.ws2c_c00134{word-spacing:0.267200pt;}
.ws19_c00134{word-spacing:0.320000pt;}
.ws9_c00134{word-spacing:0.640000pt;}
.ws1d_c00134{word-spacing:0.960000pt;}
.ws1c_c00134{word-spacing:1.152000pt;}
.ws10_c00134{word-spacing:1.216000pt;}
.ws11_c00134{word-spacing:1.280000pt;}
.ws28_c00134{word-spacing:1.536000pt;}
.ws1b_c00134{word-spacing:1.600000pt;}
.ws27_c00134{word-spacing:2.112000pt;}
.wsb_c00134{word-spacing:2.176000pt;}
.wsc_c00134{word-spacing:2.240000pt;}
.ws1e_c00134{word-spacing:2.496000pt;}
.ws12_c00134{word-spacing:2.560000pt;}
.ws26_c00134{word-spacing:2.816000pt;}
.ws25_c00134{word-spacing:4.032000pt;}
.ws18_c00134{word-spacing:4.096000pt;}
.ws24_c00134{word-spacing:4.160000pt;}
.wsf_c00134{word-spacing:4.416000pt;}
.wse_c00134{word-spacing:4.480000pt;}
.ws22_c00134{word-spacing:5.376000pt;}
.ws23_c00134{word-spacing:5.440000pt;}
.ws21_c00134{word-spacing:9.536000pt;}
.ws15_c00134{word-spacing:10.880000pt;}
.ws20_c00134{word-spacing:11.136000pt;}
.ws1f_c00134{word-spacing:11.200000pt;}
.ws13_c00134{word-spacing:12.352000pt;}
.ws14_c00134{word-spacing:12.416000pt;}
.ws16_c00134{word-spacing:18.176000pt;}
.ws17_c00134{word-spacing:18.240000pt;}
.ws1a_c00134{word-spacing:20.800000pt;}
.wsd_c00134{word-spacing:22.976000pt;}
.ws2b_c00134{word-spacing:26.496000pt;}
.ws2a_c00134{word-spacing:31.360000pt;}
.ws29_c00134{word-spacing:31.616000pt;}
._1_c00134{margin-left:-0.940800pt;}
._0_c00134{width:1.084800pt;}
._3_c00134{width:2.137600pt;}
._2_c00134{width:4.992000pt;}
._5_c00134{width:11.828480pt;}
._4_c00134{width:18.054400pt;}
._6_c00134{width:26.796800pt;}
.fs3_c00134{font-size:34.560000pt;}
.fs2_c00134{font-size:42.560000pt;}
.fs0_c00134{font-size:48.000000pt;}
.fs4_c00134{font-size:53.440000pt;}
.fs1_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y26_c00134{bottom:50.880000pt;}
.y25_c00134{bottom:102.240000pt;}
.y24_c00134{bottom:117.520000pt;}
.y23_c00134{bottom:132.880000pt;}
.y27_c00134{bottom:144.160000pt;}
.y22_c00134{bottom:186.640000pt;}
.y21_c00134{bottom:214.240000pt;}
.y20_c00134{bottom:241.840000pt;}
.y1f_c00134{bottom:269.440000pt;}
.y1e_c00134{bottom:297.040000pt;}
.y1d_c00134{bottom:324.640000pt;}
.y1c_c00134{bottom:352.240000pt;}
.y1b_c00134{bottom:379.840000pt;}
.y1a_c00134{bottom:407.440000pt;}
.y19_c00134{bottom:435.040000pt;}
.y18_c00134{bottom:462.640000pt;}
.y17_c00134{bottom:490.240000pt;}
.y16_c00134{bottom:517.840000pt;}
.y15_c00134{bottom:545.440000pt;}
.y14_c00134{bottom:573.040000pt;}
.y13_c00134{bottom:600.640000pt;}
.y12_c00134{bottom:628.240000pt;}
.y11_c00134{bottom:655.840000pt;}
.y10_c00134{bottom:683.440000pt;}
.yf_c00134{bottom:711.040000pt;}
.ye_c00134{bottom:738.640000pt;}
.yd_c00134{bottom:766.160000pt;}
.yc_c00134{bottom:793.760000pt;}
.yb_c00134{bottom:821.360000pt;}
.ya_c00134{bottom:848.960000pt;}
.y9_c00134{bottom:876.560000pt;}
.y8_c00134{bottom:904.160000pt;}
.y7_c00134{bottom:931.760000pt;}
.y6_c00134{bottom:959.360000pt;}
.y5_c00134{bottom:1005.360000pt;}
.y4_c00134{bottom:1023.040000pt;}
.y3_c00134{bottom:1036.804000pt;}
.y2_c00134{bottom:1050.640000pt;}
.y1_c00134{bottom:1064.400000pt;}
.h7_c00134{height:33.918750pt;}
.h3_c00134{height:47.085938pt;}
.h2_c00134{height:47.109375pt;}
.h4_c00134{height:62.812500pt;}
.h5_c00134{height:65.770312pt;}
.h6_c00134{height:66.750000pt;}
.h0_c00134{height:1122.560000pt;}
.h1_c00134{height:1122.666667pt;}
.w0_c00134{width:793.840000pt;}
.w1_c00134{width:794.000000pt;}
.x0_c00134{left:0.000000pt;}
.x3_c00134{left:113.440000pt;}
.x5_c00134{left:137.440000pt;}
.x4_c00134{left:161.440000pt;}
.x2_c00134{left:377.920000pt;}
.x1_c00134{left:396.960000pt;}
.x6_c00134{left:664.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_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_dd3fb2d74db178e690838c44.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_4c9fa65a76dd66de681f87aa.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;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_c00135;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00135;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00135{font-family:ff5_c00135;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-82.800000px;}
.v1_c00135{vertical-align:-61.938000px;}
.v4_c00135{vertical-align:-20.880000px;}
.v0_c00135{vertical-align:0.000000px;}
.v3_c00135{vertical-align:27.000000px;}
.lsf_c00135{letter-spacing:-0.360000px;}
.ls11_c00135{letter-spacing:-0.288000px;}
.ls12_c00135{letter-spacing:-0.216000px;}
.ls15_c00135{letter-spacing:-0.180360px;}
.ls14_c00135{letter-spacing:-0.060120px;}
.lse_c00135{letter-spacing:0.000000px;}
.ls4_c00135{letter-spacing:0.072000px;}
.lsd_c00135{letter-spacing:0.120240px;}
.ls9_c00135{letter-spacing:0.144000px;}
.ls13_c00135{letter-spacing:0.180360px;}
.ls7_c00135{letter-spacing:0.191520px;}
.ls10_c00135{letter-spacing:0.432000px;}
.ls8_c00135{letter-spacing:1.080000px;}
.lsc_c00135{letter-spacing:2.224440px;}
.ls3_c00135{letter-spacing:4.320000px;}
.lsa_c00135{letter-spacing:12.240000px;}
.ls6_c00135{letter-spacing:16.920000px;}
.ls2_c00135{letter-spacing:17.280000px;}
.ls5_c00135{letter-spacing:30.744000px;}
.lsb_c00135{letter-spacing:45.360000px;}
.ls1_c00135{letter-spacing:198.000000px;}
.ls0_c00135{letter-spacing:319.518000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00135{word-spacing:-18.144000px;}
.ws0_c00135{word-spacing:-18.072000px;}
.ws3_c00135{word-spacing:-17.640000px;}
.ws5_c00135{word-spacing:-14.969880px;}
.ws1_c00135{word-spacing:-12.161520px;}
.ws4_c00135{word-spacing:-9.720000px;}
.wsf_c00135{word-spacing:-0.432000px;}
.ws7_c00135{word-spacing:-0.162000px;}
.ws2d_c00135{word-spacing:-0.072000px;}
.ws33_c00135{word-spacing:-0.060120px;}
.ws6_c00135{word-spacing:0.000000px;}
.ws32_c00135{word-spacing:0.180360px;}
.ws22_c00135{word-spacing:0.216000px;}
.ws17_c00135{word-spacing:0.288000px;}
.ws9_c00135{word-spacing:0.360000px;}
.ws10_c00135{word-spacing:0.648000px;}
.ws31_c00135{word-spacing:0.661320px;}
.ws11_c00135{word-spacing:0.720000px;}
.ws16_c00135{word-spacing:1.008000px;}
.ws2f_c00135{word-spacing:2.044080px;}
.ws30_c00135{word-spacing:2.284560px;}
.wsc_c00135{word-spacing:3.528000px;}
.ws1b_c00135{word-spacing:3.600000px;}
.wsb_c00135{word-spacing:4.248000px;}
.wsa_c00135{word-spacing:4.320000px;}
.ws29_c00135{word-spacing:4.680000px;}
.ws2e_c00135{word-spacing:6.048000px;}
.ws24_c00135{word-spacing:6.120000px;}
.ws25_c00135{word-spacing:6.408000px;}
.ws2c_c00135{word-spacing:6.480000px;}
.ws21_c00135{word-spacing:11.808000px;}
.ws20_c00135{word-spacing:12.168000px;}
.ws1f_c00135{word-spacing:12.240000px;}
.ws14_c00135{word-spacing:15.768000px;}
.ws15_c00135{word-spacing:15.840000px;}
.ws18_c00135{word-spacing:16.128000px;}
.ws13_c00135{word-spacing:16.848000px;}
.ws12_c00135{word-spacing:16.920000px;}
.ws8_c00135{word-spacing:17.280000px;}
.ws1d_c00135{word-spacing:20.376000px;}
.ws1e_c00135{word-spacing:20.448000px;}
.ws1c_c00135{word-spacing:20.520000px;}
.wse_c00135{word-spacing:27.648000px;}
.wsd_c00135{word-spacing:27.720000px;}
.ws23_c00135{word-spacing:28.800000px;}
.ws1a_c00135{word-spacing:31.608000px;}
.ws19_c00135{word-spacing:32.328000px;}
.ws27_c00135{word-spacing:41.040000px;}
.ws26_c00135{word-spacing:41.328000px;}
.ws28_c00135{word-spacing:41.688000px;}
.ws2a_c00135{word-spacing:44.928000px;}
.ws2b_c00135{word-spacing:45.360000px;}
._1_c00135{margin-left:-1.303200px;}
._0_c00135{width:1.008000px;}
._2_c00135{width:2.966400px;}
._7_c00135{width:6.278400px;}
._5_c00135{width:12.823200px;}
._4_c00135{width:15.343200px;}
._3_c00135{width:27.655200px;}
._6_c00135{width:41.335200px;}
._8_c00135{width:44.647200px;}
.fc0_c00135{color:rgb(0,0,0);}
.fs3_c00135{font-size:38.880000px;}
.fs2_c00135{font-size:47.880000px;}
.fs0_c00135{font-size:54.000000px;}
.fs4_c00135{font-size:60.120000px;}
.fs1_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y25_c00135{bottom:57.240000px;}
.y24_c00135{bottom:115.020000px;}
.y23_c00135{bottom:126.981000px;}
.y22_c00135{bottom:144.265500px;}
.y21_c00135{bottom:166.770000px;}
.y26_c00135{bottom:179.460000px;}
.y20_c00135{bottom:241.020000px;}
.y1f_c00135{bottom:272.070000px;}
.y1e_c00135{bottom:303.120000px;}
.y1d_c00135{bottom:334.170000px;}
.y1c_c00135{bottom:365.220000px;}
.y1b_c00135{bottom:396.270000px;}
.y1a_c00135{bottom:427.320000px;}
.y19_c00135{bottom:458.370000px;}
.y18_c00135{bottom:489.420000px;}
.y17_c00135{bottom:520.470000px;}
.y16_c00135{bottom:551.520000px;}
.y15_c00135{bottom:582.570000px;}
.y14_c00135{bottom:613.620000px;}
.y13_c00135{bottom:644.670000px;}
.y12_c00135{bottom:675.720000px;}
.y11_c00135{bottom:706.770000px;}
.y10_c00135{bottom:737.820000px;}
.yf_c00135{bottom:768.870000px;}
.ye_c00135{bottom:799.920000px;}
.yd_c00135{bottom:830.970000px;}
.yc_c00135{bottom:861.930000px;}
.yb_c00135{bottom:892.980000px;}
.ya_c00135{bottom:924.030000px;}
.y9_c00135{bottom:955.080000px;}
.y8_c00135{bottom:986.130000px;}
.y7_c00135{bottom:1017.180000px;}
.y6_c00135{bottom:1048.230000px;}
.y5_c00135{bottom:1079.280000px;}
.y4_c00135{bottom:1131.030000px;}
.y3_c00135{bottom:1150.915500px;}
.y2_c00135{bottom:1166.400000px;}
.y1_c00135{bottom:1197.450000px;}
.h7_c00135{height:38.158594px;}
.h2_c00135{height:52.998047px;}
.h8_c00135{height:59.004492px;}
.h3_c00135{height:70.664062px;}
.h6_c00135{height:72.562500px;}
.h5_c00135{height:73.991602px;}
.h4_c00135{height:75.093750px;}
.h0_c00135{height:1262.880000px;}
.h1_c00135{height:1263.000000px;}
.w0_c00135{width:893.070000px;}
.w1_c00135{width:893.250000px;}
.x0_c00135{left:0.000000px;}
.x2_c00135{left:127.620000px;}
.x4_c00135{left:154.620000px;}
.x3_c00135{left:181.620000px;}
.x1_c00135{left:446.580000px;}
@media print{
.v2_c00135{vertical-align:-73.600000pt;}
.v1_c00135{vertical-align:-55.056000pt;}
.v4_c00135{vertical-align:-18.560000pt;}
.v0_c00135{vertical-align:0.000000pt;}
.v3_c00135{vertical-align:24.000000pt;}
.lsf_c00135{letter-spacing:-0.320000pt;}
.ls11_c00135{letter-spacing:-0.256000pt;}
.ls12_c00135{letter-spacing:-0.192000pt;}
.ls15_c00135{letter-spacing:-0.160320pt;}
.ls14_c00135{letter-spacing:-0.053440pt;}
.lse_c00135{letter-spacing:0.000000pt;}
.ls4_c00135{letter-spacing:0.064000pt;}
.lsd_c00135{letter-spacing:0.106880pt;}
.ls9_c00135{letter-spacing:0.128000pt;}
.ls13_c00135{letter-spacing:0.160320pt;}
.ls7_c00135{letter-spacing:0.170240pt;}
.ls10_c00135{letter-spacing:0.384000pt;}
.ls8_c00135{letter-spacing:0.960000pt;}
.lsc_c00135{letter-spacing:1.977280pt;}
.ls3_c00135{letter-spacing:3.840000pt;}
.lsa_c00135{letter-spacing:10.880000pt;}
.ls6_c00135{letter-spacing:15.040000pt;}
.ls2_c00135{letter-spacing:15.360000pt;}
.ls5_c00135{letter-spacing:27.328000pt;}
.lsb_c00135{letter-spacing:40.320000pt;}
.ls1_c00135{letter-spacing:176.000000pt;}
.ls0_c00135{letter-spacing:284.016000pt;}
.ws2_c00135{word-spacing:-16.128000pt;}
.ws0_c00135{word-spacing:-16.064000pt;}
.ws3_c00135{word-spacing:-15.680000pt;}
.ws5_c00135{word-spacing:-13.306560pt;}
.ws1_c00135{word-spacing:-10.810240pt;}
.ws4_c00135{word-spacing:-8.640000pt;}
.wsf_c00135{word-spacing:-0.384000pt;}
.ws7_c00135{word-spacing:-0.144000pt;}
.ws2d_c00135{word-spacing:-0.064000pt;}
.ws33_c00135{word-spacing:-0.053440pt;}
.ws6_c00135{word-spacing:0.000000pt;}
.ws32_c00135{word-spacing:0.160320pt;}
.ws22_c00135{word-spacing:0.192000pt;}
.ws17_c00135{word-spacing:0.256000pt;}
.ws9_c00135{word-spacing:0.320000pt;}
.ws10_c00135{word-spacing:0.576000pt;}
.ws31_c00135{word-spacing:0.587840pt;}
.ws11_c00135{word-spacing:0.640000pt;}
.ws16_c00135{word-spacing:0.896000pt;}
.ws2f_c00135{word-spacing:1.816960pt;}
.ws30_c00135{word-spacing:2.030720pt;}
.wsc_c00135{word-spacing:3.136000pt;}
.ws1b_c00135{word-spacing:3.200000pt;}
.wsb_c00135{word-spacing:3.776000pt;}
.wsa_c00135{word-spacing:3.840000pt;}
.ws29_c00135{word-spacing:4.160000pt;}
.ws2e_c00135{word-spacing:5.376000pt;}
.ws24_c00135{word-spacing:5.440000pt;}
.ws25_c00135{word-spacing:5.696000pt;}
.ws2c_c00135{word-spacing:5.760000pt;}
.ws21_c00135{word-spacing:10.496000pt;}
.ws20_c00135{word-spacing:10.816000pt;}
.ws1f_c00135{word-spacing:10.880000pt;}
.ws14_c00135{word-spacing:14.016000pt;}
.ws15_c00135{word-spacing:14.080000pt;}
.ws18_c00135{word-spacing:14.336000pt;}
.ws13_c00135{word-spacing:14.976000pt;}
.ws12_c00135{word-spacing:15.040000pt;}
.ws8_c00135{word-spacing:15.360000pt;}
.ws1d_c00135{word-spacing:18.112000pt;}
.ws1e_c00135{word-spacing:18.176000pt;}
.ws1c_c00135{word-spacing:18.240000pt;}
.wse_c00135{word-spacing:24.576000pt;}
.wsd_c00135{word-spacing:24.640000pt;}
.ws23_c00135{word-spacing:25.600000pt;}
.ws1a_c00135{word-spacing:28.096000pt;}
.ws19_c00135{word-spacing:28.736000pt;}
.ws27_c00135{word-spacing:36.480000pt;}
.ws26_c00135{word-spacing:36.736000pt;}
.ws28_c00135{word-spacing:37.056000pt;}
.ws2a_c00135{word-spacing:39.936000pt;}
.ws2b_c00135{word-spacing:40.320000pt;}
._1_c00135{margin-left:-1.158400pt;}
._0_c00135{width:0.896000pt;}
._2_c00135{width:2.636800pt;}
._7_c00135{width:5.580800pt;}
._5_c00135{width:11.398400pt;}
._4_c00135{width:13.638400pt;}
._3_c00135{width:24.582400pt;}
._6_c00135{width:36.742400pt;}
._8_c00135{width:39.686400pt;}
.fs3_c00135{font-size:34.560000pt;}
.fs2_c00135{font-size:42.560000pt;}
.fs0_c00135{font-size:48.000000pt;}
.fs4_c00135{font-size:53.440000pt;}
.fs1_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y25_c00135{bottom:50.880000pt;}
.y24_c00135{bottom:102.240000pt;}
.y23_c00135{bottom:112.872000pt;}
.y22_c00135{bottom:128.236000pt;}
.y21_c00135{bottom:148.240000pt;}
.y26_c00135{bottom:159.520000pt;}
.y20_c00135{bottom:214.240000pt;}
.y1f_c00135{bottom:241.840000pt;}
.y1e_c00135{bottom:269.440000pt;}
.y1d_c00135{bottom:297.040000pt;}
.y1c_c00135{bottom:324.640000pt;}
.y1b_c00135{bottom:352.240000pt;}
.y1a_c00135{bottom:379.840000pt;}
.y19_c00135{bottom:407.440000pt;}
.y18_c00135{bottom:435.040000pt;}
.y17_c00135{bottom:462.640000pt;}
.y16_c00135{bottom:490.240000pt;}
.y15_c00135{bottom:517.840000pt;}
.y14_c00135{bottom:545.440000pt;}
.y13_c00135{bottom:573.040000pt;}
.y12_c00135{bottom:600.640000pt;}
.y11_c00135{bottom:628.240000pt;}
.y10_c00135{bottom:655.840000pt;}
.yf_c00135{bottom:683.440000pt;}
.ye_c00135{bottom:711.040000pt;}
.yd_c00135{bottom:738.640000pt;}
.yc_c00135{bottom:766.160000pt;}
.yb_c00135{bottom:793.760000pt;}
.ya_c00135{bottom:821.360000pt;}
.y9_c00135{bottom:848.960000pt;}
.y8_c00135{bottom:876.560000pt;}
.y7_c00135{bottom:904.160000pt;}
.y6_c00135{bottom:931.760000pt;}
.y5_c00135{bottom:959.360000pt;}
.y4_c00135{bottom:1005.360000pt;}
.y3_c00135{bottom:1023.036000pt;}
.y2_c00135{bottom:1036.800000pt;}
.y1_c00135{bottom:1064.400000pt;}
.h7_c00135{height:33.918750pt;}
.h2_c00135{height:47.109375pt;}
.h8_c00135{height:52.448437pt;}
.h3_c00135{height:62.812500pt;}
.h6_c00135{height:64.500000pt;}
.h5_c00135{height:65.770312pt;}
.h4_c00135{height:66.750000pt;}
.h0_c00135{height:1122.560000pt;}
.h1_c00135{height:1122.666667pt;}
.w0_c00135{width:793.840000pt;}
.w1_c00135{width:794.000000pt;}
.x0_c00135{left:0.000000pt;}
.x2_c00135{left:113.440000pt;}
.x4_c00135{left:137.440000pt;}
.x3_c00135{left:161.440000pt;}
.x1_c00135{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a81e664930eb524d0880f361.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_9923479b40d7311a2433bbd8.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;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_c00136;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.432129;font-style: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);}
.v1_c00136{vertical-align:-82.800000px;}
.v0_c00136{vertical-align:0.000000px;}
.lsd_c00136{letter-spacing:-0.576000px;}
.lsc_c00136{letter-spacing:-0.288000px;}
.lsb_c00136{letter-spacing:-0.108000px;}
.lsa_c00136{letter-spacing:0.000000px;}
.ls2_c00136{letter-spacing:0.072000px;}
.ls7_c00136{letter-spacing:0.144000px;}
.ls4_c00136{letter-spacing:1.800000px;}
.ls6_c00136{letter-spacing:6.480000px;}
.ls1_c00136{letter-spacing:7.560000px;}
.ls9_c00136{letter-spacing:19.800000px;}
.ls8_c00136{letter-spacing:23.904000px;}
.ls3_c00136{letter-spacing:30.744000px;}
.ls5_c00136{letter-spacing:33.120000px;}
.ls0_c00136{letter-spacing:198.000000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00136{word-spacing:-72.000000px;}
.ws3_c00136{word-spacing:-18.144000px;}
.ws0_c00136{word-spacing:-18.072000px;}
.ws1_c00136{word-spacing:-18.000000px;}
.ws2_c00136{word-spacing:-17.712000px;}
.ws4_c00136{word-spacing:-17.424000px;}
.ws24_c00136{word-spacing:-0.360000px;}
.ws23_c00136{word-spacing:-0.144000px;}
.wsa_c00136{word-spacing:-0.072000px;}
.ws6_c00136{word-spacing:0.000000px;}
.ws8_c00136{word-spacing:0.162000px;}
.ws7_c00136{word-spacing:0.270000px;}
.wsc_c00136{word-spacing:0.648000px;}
.wsb_c00136{word-spacing:1.008000px;}
.ws15_c00136{word-spacing:1.440000px;}
.ws17_c00136{word-spacing:1.728000px;}
.ws18_c00136{word-spacing:1.800000px;}
.ws1f_c00136{word-spacing:6.408000px;}
.ws1e_c00136{word-spacing:6.480000px;}
.ws10_c00136{word-spacing:7.128000px;}
.wsf_c00136{word-spacing:7.560000px;}
.ws11_c00136{word-spacing:8.208000px;}
.ws19_c00136{word-spacing:8.640000px;}
.ws13_c00136{word-spacing:10.008000px;}
.ws14_c00136{word-spacing:10.080000px;}
.ws21_c00136{word-spacing:10.368000px;}
.ws22_c00136{word-spacing:10.440000px;}
.ws9_c00136{word-spacing:11.520000px;}
.ws16_c00136{word-spacing:12.168000px;}
.ws20_c00136{word-spacing:15.048000px;}
.ws25_c00136{word-spacing:19.440000px;}
.ws26_c00136{word-spacing:19.800000px;}
.wsd_c00136{word-spacing:25.848000px;}
.ws1c_c00136{word-spacing:29.448000px;}
.wse_c00136{word-spacing:29.520000px;}
.ws1d_c00136{word-spacing:29.880000px;}
.ws12_c00136{word-spacing:31.680000px;}
.ws1a_c00136{word-spacing:33.408000px;}
.ws1b_c00136{word-spacing:33.480000px;}
._1_c00136{margin-left:-1.058400px;}
._0_c00136{width:1.220400px;}
._2_c00136{width:9.892800px;}
._3_c00136{width:11.952000px;}
._4_c00136{width:20.304000px;}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:54.000000px;}
.fs1_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y25_c00136{bottom:57.240000px;}
.y24_c00136{bottom:147.870000px;}
.y23_c00136{bottom:178.920000px;}
.y22_c00136{bottom:209.970000px;}
.y21_c00136{bottom:241.020000px;}
.y20_c00136{bottom:272.070000px;}
.y1f_c00136{bottom:303.120000px;}
.y1e_c00136{bottom:334.170000px;}
.y1d_c00136{bottom:365.220000px;}
.y1c_c00136{bottom:396.270000px;}
.y1b_c00136{bottom:427.320000px;}
.y1a_c00136{bottom:458.370000px;}
.y19_c00136{bottom:489.420000px;}
.y18_c00136{bottom:520.470000px;}
.y17_c00136{bottom:551.520000px;}
.y16_c00136{bottom:582.570000px;}
.y15_c00136{bottom:613.620000px;}
.y14_c00136{bottom:644.670000px;}
.y13_c00136{bottom:675.720000px;}
.y12_c00136{bottom:706.770000px;}
.y11_c00136{bottom:737.820000px;}
.y10_c00136{bottom:768.870000px;}
.yf_c00136{bottom:799.920000px;}
.ye_c00136{bottom:830.970000px;}
.yd_c00136{bottom:861.930000px;}
.yc_c00136{bottom:892.980000px;}
.yb_c00136{bottom:924.030000px;}
.ya_c00136{bottom:955.080000px;}
.y9_c00136{bottom:986.130000px;}
.y8_c00136{bottom:1017.180000px;}
.y7_c00136{bottom:1048.230000px;}
.y6_c00136{bottom:1079.280000px;}
.y5_c00136{bottom:1131.030000px;}
.y4_c00136{bottom:1150.920000px;}
.y3_c00136{bottom:1166.404500px;}
.y2_c00136{bottom:1181.970000px;}
.y1_c00136{bottom:1197.450000px;}
.h3_c00136{height:52.971680px;}
.h2_c00136{height:52.998047px;}
.h4_c00136{height:70.664062px;}
.h5_c00136{height:75.093750px;}
.h0_c00136{height:1262.880000px;}
.h1_c00136{height:1263.000000px;}
.w0_c00136{width:893.070000px;}
.w1_c00136{width:893.250000px;}
.x0_c00136{left:0.000000px;}
.x3_c00136{left:127.620000px;}
.x5_c00136{left:154.620000px;}
.x4_c00136{left:181.620000px;}
.x6_c00136{left:208.620000px;}
.x7_c00136{left:235.620000px;}
.x2_c00136{left:425.160000px;}
.x1_c00136{left:446.580000px;}
.x8_c00136{left:738.540000px;}
@media print{
.v1_c00136{vertical-align:-73.600000pt;}
.v0_c00136{vertical-align:0.000000pt;}
.lsd_c00136{letter-spacing:-0.512000pt;}
.lsc_c00136{letter-spacing:-0.256000pt;}
.lsb_c00136{letter-spacing:-0.096000pt;}
.lsa_c00136{letter-spacing:0.000000pt;}
.ls2_c00136{letter-spacing:0.064000pt;}
.ls7_c00136{letter-spacing:0.128000pt;}
.ls4_c00136{letter-spacing:1.600000pt;}
.ls6_c00136{letter-spacing:5.760000pt;}
.ls1_c00136{letter-spacing:6.720000pt;}
.ls9_c00136{letter-spacing:17.600000pt;}
.ls8_c00136{letter-spacing:21.248000pt;}
.ls3_c00136{letter-spacing:27.328000pt;}
.ls5_c00136{letter-spacing:29.440000pt;}
.ls0_c00136{letter-spacing:176.000000pt;}
.ws5_c00136{word-spacing:-64.000000pt;}
.ws3_c00136{word-spacing:-16.128000pt;}
.ws0_c00136{word-spacing:-16.064000pt;}
.ws1_c00136{word-spacing:-16.000000pt;}
.ws2_c00136{word-spacing:-15.744000pt;}
.ws4_c00136{word-spacing:-15.488000pt;}
.ws24_c00136{word-spacing:-0.320000pt;}
.ws23_c00136{word-spacing:-0.128000pt;}
.wsa_c00136{word-spacing:-0.064000pt;}
.ws6_c00136{word-spacing:0.000000pt;}
.ws8_c00136{word-spacing:0.144000pt;}
.ws7_c00136{word-spacing:0.240000pt;}
.wsc_c00136{word-spacing:0.576000pt;}
.wsb_c00136{word-spacing:0.896000pt;}
.ws15_c00136{word-spacing:1.280000pt;}
.ws17_c00136{word-spacing:1.536000pt;}
.ws18_c00136{word-spacing:1.600000pt;}
.ws1f_c00136{word-spacing:5.696000pt;}
.ws1e_c00136{word-spacing:5.760000pt;}
.ws10_c00136{word-spacing:6.336000pt;}
.wsf_c00136{word-spacing:6.720000pt;}
.ws11_c00136{word-spacing:7.296000pt;}
.ws19_c00136{word-spacing:7.680000pt;}
.ws13_c00136{word-spacing:8.896000pt;}
.ws14_c00136{word-spacing:8.960000pt;}
.ws21_c00136{word-spacing:9.216000pt;}
.ws22_c00136{word-spacing:9.280000pt;}
.ws9_c00136{word-spacing:10.240000pt;}
.ws16_c00136{word-spacing:10.816000pt;}
.ws20_c00136{word-spacing:13.376000pt;}
.ws25_c00136{word-spacing:17.280000pt;}
.ws26_c00136{word-spacing:17.600000pt;}
.wsd_c00136{word-spacing:22.976000pt;}
.ws1c_c00136{word-spacing:26.176000pt;}
.wse_c00136{word-spacing:26.240000pt;}
.ws1d_c00136{word-spacing:26.560000pt;}
.ws12_c00136{word-spacing:28.160000pt;}
.ws1a_c00136{word-spacing:29.696000pt;}
.ws1b_c00136{word-spacing:29.760000pt;}
._1_c00136{margin-left:-0.940800pt;}
._0_c00136{width:1.084800pt;}
._2_c00136{width:8.793600pt;}
._3_c00136{width:10.624000pt;}
._4_c00136{width:18.048000pt;}
.fs0_c00136{font-size:48.000000pt;}
.fs1_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y25_c00136{bottom:50.880000pt;}
.y24_c00136{bottom:131.440000pt;}
.y23_c00136{bottom:159.040000pt;}
.y22_c00136{bottom:186.640000pt;}
.y21_c00136{bottom:214.240000pt;}
.y20_c00136{bottom:241.840000pt;}
.y1f_c00136{bottom:269.440000pt;}
.y1e_c00136{bottom:297.040000pt;}
.y1d_c00136{bottom:324.640000pt;}
.y1c_c00136{bottom:352.240000pt;}
.y1b_c00136{bottom:379.840000pt;}
.y1a_c00136{bottom:407.440000pt;}
.y19_c00136{bottom:435.040000pt;}
.y18_c00136{bottom:462.640000pt;}
.y17_c00136{bottom:490.240000pt;}
.y16_c00136{bottom:517.840000pt;}
.y15_c00136{bottom:545.440000pt;}
.y14_c00136{bottom:573.040000pt;}
.y13_c00136{bottom:600.640000pt;}
.y12_c00136{bottom:628.240000pt;}
.y11_c00136{bottom:655.840000pt;}
.y10_c00136{bottom:683.440000pt;}
.yf_c00136{bottom:711.040000pt;}
.ye_c00136{bottom:738.640000pt;}
.yd_c00136{bottom:766.160000pt;}
.yc_c00136{bottom:793.760000pt;}
.yb_c00136{bottom:821.360000pt;}
.ya_c00136{bottom:848.960000pt;}
.y9_c00136{bottom:876.560000pt;}
.y8_c00136{bottom:904.160000pt;}
.y7_c00136{bottom:931.760000pt;}
.y6_c00136{bottom:959.360000pt;}
.y5_c00136{bottom:1005.360000pt;}
.y4_c00136{bottom:1023.040000pt;}
.y3_c00136{bottom:1036.804000pt;}
.y2_c00136{bottom:1050.640000pt;}
.y1_c00136{bottom:1064.400000pt;}
.h3_c00136{height:47.085938pt;}
.h2_c00136{height:47.109375pt;}
.h4_c00136{height:62.812500pt;}
.h5_c00136{height:66.750000pt;}
.h0_c00136{height:1122.560000pt;}
.h1_c00136{height:1122.666667pt;}
.w0_c00136{width:793.840000pt;}
.w1_c00136{width:794.000000pt;}
.x0_c00136{left:0.000000pt;}
.x3_c00136{left:113.440000pt;}
.x5_c00136{left:137.440000pt;}
.x4_c00136{left:161.440000pt;}
.x6_c00136{left:185.440000pt;}
.x7_c00136{left:209.440000pt;}
.x2_c00136{left:377.920000pt;}
.x1_c00136{left:396.960000pt;}
.x8_c00136{left:656.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_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_d4dc69aed6b76545671902da.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.284180;font-style:normal;font-weight:normal;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_892e7292345e92f211819c45.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;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_c00137;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.432129;font-style: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);}
.v1_c00137{vertical-align:-61.938000px;}
.v0_c00137{vertical-align:0.000000px;}
.ls7_c00137{letter-spacing:0.000000px;}
.ls2_c00137{letter-spacing:0.072000px;}
.ls8_c00137{letter-spacing:0.144000px;}
.ls4_c00137{letter-spacing:3.600000px;}
.ls5_c00137{letter-spacing:10.440000px;}
.ls6_c00137{letter-spacing:14.400000px;}
.ls1_c00137{letter-spacing:23.904000px;}
.ls3_c00137{letter-spacing:30.744000px;}
.ls0_c00137{letter-spacing:319.518000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:-72.000000px;}
.ws3_c00137{word-spacing:-18.144000px;}
.ws2_c00137{word-spacing:-18.072000px;}
.ws1_c00137{word-spacing:-18.000000px;}
.ws5_c00137{word-spacing:-0.162000px;}
.wsf_c00137{word-spacing:-0.144000px;}
.ws10_c00137{word-spacing:-0.072000px;}
.ws4_c00137{word-spacing:0.000000px;}
.ws27_c00137{word-spacing:0.288000px;}
.ws26_c00137{word-spacing:0.648000px;}
.ws2b_c00137{word-spacing:1.080000px;}
.ws18_c00137{word-spacing:2.088000px;}
.wsb_c00137{word-spacing:2.448000px;}
.ws1b_c00137{word-spacing:2.880000px;}
.wsc_c00137{word-spacing:3.528000px;}
.ws2a_c00137{word-spacing:3.600000px;}
.ws7_c00137{word-spacing:4.968000px;}
.ws6_c00137{word-spacing:5.040000px;}
.ws8_c00137{word-spacing:5.328000px;}
.ws17_c00137{word-spacing:6.840000px;}
.wsa_c00137{word-spacing:7.200000px;}
.ws11_c00137{word-spacing:7.560000px;}
.ws19_c00137{word-spacing:10.368000px;}
.ws1e_c00137{word-spacing:11.520000px;}
.ws12_c00137{word-spacing:11.808000px;}
.ws13_c00137{word-spacing:11.880000px;}
.ws23_c00137{word-spacing:13.968000px;}
.ws21_c00137{word-spacing:14.256000px;}
.ws22_c00137{word-spacing:14.328000px;}
.ws16_c00137{word-spacing:16.200000px;}
.ws1d_c00137{word-spacing:18.720000px;}
.ws1c_c00137{word-spacing:19.080000px;}
.wsd_c00137{word-spacing:21.960000px;}
.ws29_c00137{word-spacing:22.896000px;}
.ws28_c00137{word-spacing:23.040000px;}
.ws9_c00137{word-spacing:25.848000px;}
.wse_c00137{word-spacing:27.000000px;}
.ws1a_c00137{word-spacing:29.088000px;}
.ws20_c00137{word-spacing:33.480000px;}
.ws1f_c00137{word-spacing:33.840000px;}
.ws24_c00137{word-spacing:36.216000px;}
.ws25_c00137{word-spacing:36.360000px;}
.ws15_c00137{word-spacing:45.216000px;}
.ws14_c00137{word-spacing:45.360000px;}
._1_c00137{margin-left:-1.015200px;}
._5_c00137{width:1.080000px;}
._0_c00137{width:5.472000px;}
._3_c00137{width:21.600000px;}
._2_c00137{width:25.992000px;}
._4_c00137{width:27.151200px;}
.fc0_c00137{color:rgb(0,0,0);}
.fs0_c00137{font-size:54.000000px;}
.fs1_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y25_c00137{bottom:57.240000px;}
.y24_c00137{bottom:147.870000px;}
.y23_c00137{bottom:178.920000px;}
.y22_c00137{bottom:209.970000px;}
.y21_c00137{bottom:241.020000px;}
.y20_c00137{bottom:272.070000px;}
.y1f_c00137{bottom:303.120000px;}
.y1e_c00137{bottom:334.170000px;}
.y1d_c00137{bottom:365.220000px;}
.y1c_c00137{bottom:396.270000px;}
.y1b_c00137{bottom:427.320000px;}
.y1a_c00137{bottom:458.370000px;}
.y19_c00137{bottom:489.420000px;}
.y18_c00137{bottom:520.470000px;}
.y17_c00137{bottom:551.520000px;}
.y16_c00137{bottom:582.570000px;}
.y15_c00137{bottom:613.620000px;}
.y14_c00137{bottom:644.670000px;}
.y13_c00137{bottom:675.720000px;}
.y12_c00137{bottom:706.770000px;}
.y11_c00137{bottom:737.820000px;}
.y10_c00137{bottom:768.870000px;}
.yf_c00137{bottom:799.920000px;}
.ye_c00137{bottom:830.970000px;}
.yd_c00137{bottom:861.930000px;}
.yc_c00137{bottom:892.980000px;}
.yb_c00137{bottom:924.030000px;}
.ya_c00137{bottom:955.080000px;}
.y9_c00137{bottom:986.130000px;}
.y8_c00137{bottom:1017.180000px;}
.y7_c00137{bottom:1048.230000px;}
.y6_c00137{bottom:1079.280000px;}
.y5_c00137{bottom:1110.330000px;}
.y4_c00137{bottom:1131.030000px;}
.y3_c00137{bottom:1150.915500px;}
.y2_c00137{bottom:1166.400000px;}
.y1_c00137{bottom:1197.450000px;}
.h2_c00137{height:52.998047px;}
.h3_c00137{height:70.664062px;}
.h4_c00137{height:75.093750px;}
.h0_c00137{height:1262.880000px;}
.h1_c00137{height:1263.000000px;}
.w0_c00137{width:893.070000px;}
.w1_c00137{width:893.250000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:127.620000px;}
.x5_c00137{left:154.620000px;}
.x6_c00137{left:181.620000px;}
.x3_c00137{left:208.620000px;}
.x4_c00137{left:235.620000px;}
.x1_c00137{left:446.580000px;}
@media print{
.v1_c00137{vertical-align:-55.056000pt;}
.v0_c00137{vertical-align:0.000000pt;}
.ls7_c00137{letter-spacing:0.000000pt;}
.ls2_c00137{letter-spacing:0.064000pt;}
.ls8_c00137{letter-spacing:0.128000pt;}
.ls4_c00137{letter-spacing:3.200000pt;}
.ls5_c00137{letter-spacing:9.280000pt;}
.ls6_c00137{letter-spacing:12.800000pt;}
.ls1_c00137{letter-spacing:21.248000pt;}
.ls3_c00137{letter-spacing:27.328000pt;}
.ls0_c00137{letter-spacing:284.016000pt;}
.ws0_c00137{word-spacing:-64.000000pt;}
.ws3_c00137{word-spacing:-16.128000pt;}
.ws2_c00137{word-spacing:-16.064000pt;}
.ws1_c00137{word-spacing:-16.000000pt;}
.ws5_c00137{word-spacing:-0.144000pt;}
.wsf_c00137{word-spacing:-0.128000pt;}
.ws10_c00137{word-spacing:-0.064000pt;}
.ws4_c00137{word-spacing:0.000000pt;}
.ws27_c00137{word-spacing:0.256000pt;}
.ws26_c00137{word-spacing:0.576000pt;}
.ws2b_c00137{word-spacing:0.960000pt;}
.ws18_c00137{word-spacing:1.856000pt;}
.wsb_c00137{word-spacing:2.176000pt;}
.ws1b_c00137{word-spacing:2.560000pt;}
.wsc_c00137{word-spacing:3.136000pt;}
.ws2a_c00137{word-spacing:3.200000pt;}
.ws7_c00137{word-spacing:4.416000pt;}
.ws6_c00137{word-spacing:4.480000pt;}
.ws8_c00137{word-spacing:4.736000pt;}
.ws17_c00137{word-spacing:6.080000pt;}
.wsa_c00137{word-spacing:6.400000pt;}
.ws11_c00137{word-spacing:6.720000pt;}
.ws19_c00137{word-spacing:9.216000pt;}
.ws1e_c00137{word-spacing:10.240000pt;}
.ws12_c00137{word-spacing:10.496000pt;}
.ws13_c00137{word-spacing:10.560000pt;}
.ws23_c00137{word-spacing:12.416000pt;}
.ws21_c00137{word-spacing:12.672000pt;}
.ws22_c00137{word-spacing:12.736000pt;}
.ws16_c00137{word-spacing:14.400000pt;}
.ws1d_c00137{word-spacing:16.640000pt;}
.ws1c_c00137{word-spacing:16.960000pt;}
.wsd_c00137{word-spacing:19.520000pt;}
.ws29_c00137{word-spacing:20.352000pt;}
.ws28_c00137{word-spacing:20.480000pt;}
.ws9_c00137{word-spacing:22.976000pt;}
.wse_c00137{word-spacing:24.000000pt;}
.ws1a_c00137{word-spacing:25.856000pt;}
.ws20_c00137{word-spacing:29.760000pt;}
.ws1f_c00137{word-spacing:30.080000pt;}
.ws24_c00137{word-spacing:32.192000pt;}
.ws25_c00137{word-spacing:32.320000pt;}
.ws15_c00137{word-spacing:40.192000pt;}
.ws14_c00137{word-spacing:40.320000pt;}
._1_c00137{margin-left:-0.902400pt;}
._5_c00137{width:0.960000pt;}
._0_c00137{width:4.864000pt;}
._3_c00137{width:19.200000pt;}
._2_c00137{width:23.104000pt;}
._4_c00137{width:24.134400pt;}
.fs0_c00137{font-size:48.000000pt;}
.fs1_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y25_c00137{bottom:50.880000pt;}
.y24_c00137{bottom:131.440000pt;}
.y23_c00137{bottom:159.040000pt;}
.y22_c00137{bottom:186.640000pt;}
.y21_c00137{bottom:214.240000pt;}
.y20_c00137{bottom:241.840000pt;}
.y1f_c00137{bottom:269.440000pt;}
.y1e_c00137{bottom:297.040000pt;}
.y1d_c00137{bottom:324.640000pt;}
.y1c_c00137{bottom:352.240000pt;}
.y1b_c00137{bottom:379.840000pt;}
.y1a_c00137{bottom:407.440000pt;}
.y19_c00137{bottom:435.040000pt;}
.y18_c00137{bottom:462.640000pt;}
.y17_c00137{bottom:490.240000pt;}
.y16_c00137{bottom:517.840000pt;}
.y15_c00137{bottom:545.440000pt;}
.y14_c00137{bottom:573.040000pt;}
.y13_c00137{bottom:600.640000pt;}
.y12_c00137{bottom:628.240000pt;}
.y11_c00137{bottom:655.840000pt;}
.y10_c00137{bottom:683.440000pt;}
.yf_c00137{bottom:711.040000pt;}
.ye_c00137{bottom:738.640000pt;}
.yd_c00137{bottom:766.160000pt;}
.yc_c00137{bottom:793.760000pt;}
.yb_c00137{bottom:821.360000pt;}
.ya_c00137{bottom:848.960000pt;}
.y9_c00137{bottom:876.560000pt;}
.y8_c00137{bottom:904.160000pt;}
.y7_c00137{bottom:931.760000pt;}
.y6_c00137{bottom:959.360000pt;}
.y5_c00137{bottom:986.960000pt;}
.y4_c00137{bottom:1005.360000pt;}
.y3_c00137{bottom:1023.036000pt;}
.y2_c00137{bottom:1036.800000pt;}
.y1_c00137{bottom:1064.400000pt;}
.h2_c00137{height:47.109375pt;}
.h3_c00137{height:62.812500pt;}
.h4_c00137{height:66.750000pt;}
.h0_c00137{height:1122.560000pt;}
.h1_c00137{height:1122.666667pt;}
.w0_c00137{width:793.840000pt;}
.w1_c00137{width:794.000000pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:113.440000pt;}
.x5_c00137{left:137.440000pt;}
.x6_c00137{left:161.440000pt;}
.x3_c00137{left:185.440000pt;}
.x4_c00137{left:209.440000pt;}
.x1_c00137{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44829aca7747cfba3ee21923.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.284180;font-style:normal;font-weight:normal;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_3902d9d3ab45bf01a4cdcd08.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;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_c00138;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.432129;font-style: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);}
.v1_c00138{vertical-align:-82.800000px;}
.v0_c00138{vertical-align:0.000000px;}
.lsb_c00138{letter-spacing:-0.288000px;}
.lsd_c00138{letter-spacing:-0.216000px;}
.lsa_c00138{letter-spacing:-0.144000px;}
.ls9_c00138{letter-spacing:-0.108000px;}
.ls8_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:0.072000px;}
.lsc_c00138{letter-spacing:0.144000px;}
.ls2_c00138{letter-spacing:1.440000px;}
.ls7_c00138{letter-spacing:2.880000px;}
.ls6_c00138{letter-spacing:3.967200px;}
.ls5_c00138{letter-spacing:11.160000px;}
.ls3_c00138{letter-spacing:12.600000px;}
.ls4_c00138{letter-spacing:30.744000px;}
.ls0_c00138{letter-spacing:414.000000px;}
.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;}
}
.ws3_c00138{word-spacing:-18.144000px;}
.ws1_c00138{word-spacing:-18.072000px;}
.ws2_c00138{word-spacing:-18.000000px;}
.ws0_c00138{word-spacing:-17.856000px;}
.ws4_c00138{word-spacing:-17.784000px;}
.ws5_c00138{word-spacing:-17.712000px;}
.wsb_c00138{word-spacing:-0.432000px;}
.ws24_c00138{word-spacing:-0.144000px;}
.wsa_c00138{word-spacing:-0.072000px;}
.ws6_c00138{word-spacing:0.000000px;}
.ws8_c00138{word-spacing:0.162000px;}
.ws7_c00138{word-spacing:0.270000px;}
.ws27_c00138{word-spacing:0.288000px;}
.wsc_c00138{word-spacing:1.368000px;}
.wsd_c00138{word-spacing:1.440000px;}
.ws10_c00138{word-spacing:2.520000px;}
.ws23_c00138{word-spacing:2.808000px;}
.ws1f_c00138{word-spacing:3.168000px;}
.ws20_c00138{word-spacing:3.240000px;}
.ws1d_c00138{word-spacing:3.888000px;}
.ws1e_c00138{word-spacing:3.960000px;}
.wse_c00138{word-spacing:5.760000px;}
.ws28_c00138{word-spacing:5.976000px;}
.ws2a_c00138{word-spacing:7.128000px;}
.ws2b_c00138{word-spacing:7.200000px;}
.ws25_c00138{word-spacing:7.560000px;}
.ws9_c00138{word-spacing:8.568000px;}
.ws19_c00138{word-spacing:9.288000px;}
.ws1a_c00138{word-spacing:9.360000px;}
.ws1c_c00138{word-spacing:11.088000px;}
.ws1b_c00138{word-spacing:11.160000px;}
.ws15_c00138{word-spacing:12.600000px;}
.ws14_c00138{word-spacing:12.888000px;}
.ws13_c00138{word-spacing:13.608000px;}
.ws22_c00138{word-spacing:13.968000px;}
.ws21_c00138{word-spacing:14.256000px;}
.ws12_c00138{word-spacing:15.048000px;}
.ws11_c00138{word-spacing:15.120000px;}
.ws29_c00138{word-spacing:17.208000px;}
.ws18_c00138{word-spacing:17.568000px;}
.ws17_c00138{word-spacing:19.728000px;}
.ws16_c00138{word-spacing:19.800000px;}
.wsf_c00138{word-spacing:24.408000px;}
.ws26_c00138{word-spacing:24.480000px;}
._1_c00138{margin-left:-1.058400px;}
._0_c00138{width:1.220400px;}
._5_c00138{width:2.865600px;}
._2_c00138{width:6.048000px;}
._4_c00138{width:13.132800px;}
._3_c00138{width:15.408000px;}
.fc0_c00138{color:rgb(0,0,0);}
.fs0_c00138{font-size:54.000000px;}
.fs1_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.y26_c00138{bottom:57.240000px;}
.y25_c00138{bottom:116.820000px;}
.y24_c00138{bottom:147.870000px;}
.y23_c00138{bottom:178.920000px;}
.y22_c00138{bottom:209.970000px;}
.y21_c00138{bottom:241.020000px;}
.y20_c00138{bottom:272.070000px;}
.y1f_c00138{bottom:303.120000px;}
.y1e_c00138{bottom:334.170000px;}
.y1d_c00138{bottom:365.220000px;}
.y1c_c00138{bottom:396.270000px;}
.y1b_c00138{bottom:427.320000px;}
.y1a_c00138{bottom:458.370000px;}
.y19_c00138{bottom:489.420000px;}
.y18_c00138{bottom:520.470000px;}
.y17_c00138{bottom:551.520000px;}
.y16_c00138{bottom:582.570000px;}
.y15_c00138{bottom:613.620000px;}
.y14_c00138{bottom:644.670000px;}
.y13_c00138{bottom:675.720000px;}
.y12_c00138{bottom:706.770000px;}
.y11_c00138{bottom:737.820000px;}
.y10_c00138{bottom:768.870000px;}
.yf_c00138{bottom:799.920000px;}
.ye_c00138{bottom:830.970000px;}
.yd_c00138{bottom:861.930000px;}
.yc_c00138{bottom:892.980000px;}
.yb_c00138{bottom:924.030000px;}
.ya_c00138{bottom:955.080000px;}
.y9_c00138{bottom:986.130000px;}
.y8_c00138{bottom:1017.180000px;}
.y7_c00138{bottom:1048.230000px;}
.y6_c00138{bottom:1079.280000px;}
.y5_c00138{bottom:1131.030000px;}
.y4_c00138{bottom:1150.920000px;}
.y3_c00138{bottom:1166.404500px;}
.y2_c00138{bottom:1181.970000px;}
.y1_c00138{bottom:1197.450000px;}
.h3_c00138{height:52.971680px;}
.h2_c00138{height:52.998047px;}
.h4_c00138{height:70.664062px;}
.h5_c00138{height:75.093750px;}
.h0_c00138{height:1262.880000px;}
.h1_c00138{height:1263.000000px;}
.w0_c00138{width:893.070000px;}
.w1_c00138{width:893.250000px;}
.x0_c00138{left:0.000000px;}
.x3_c00138{left:127.620000px;}
.x5_c00138{left:154.620000px;}
.x6_c00138{left:181.620000px;}
.x4_c00138{left:235.620000px;}
.x2_c00138{left:425.160000px;}
.x1_c00138{left:446.580000px;}
.x7_c00138{left:738.540000px;}
@media print{
.v1_c00138{vertical-align:-73.600000pt;}
.v0_c00138{vertical-align:0.000000pt;}
.lsb_c00138{letter-spacing:-0.256000pt;}
.lsd_c00138{letter-spacing:-0.192000pt;}
.lsa_c00138{letter-spacing:-0.128000pt;}
.ls9_c00138{letter-spacing:-0.096000pt;}
.ls8_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:0.064000pt;}
.lsc_c00138{letter-spacing:0.128000pt;}
.ls2_c00138{letter-spacing:1.280000pt;}
.ls7_c00138{letter-spacing:2.560000pt;}
.ls6_c00138{letter-spacing:3.526400pt;}
.ls5_c00138{letter-spacing:9.920000pt;}
.ls3_c00138{letter-spacing:11.200000pt;}
.ls4_c00138{letter-spacing:27.328000pt;}
.ls0_c00138{letter-spacing:368.000000pt;}
.ws3_c00138{word-spacing:-16.128000pt;}
.ws1_c00138{word-spacing:-16.064000pt;}
.ws2_c00138{word-spacing:-16.000000pt;}
.ws0_c00138{word-spacing:-15.872000pt;}
.ws4_c00138{word-spacing:-15.808000pt;}
.ws5_c00138{word-spacing:-15.744000pt;}
.wsb_c00138{word-spacing:-0.384000pt;}
.ws24_c00138{word-spacing:-0.128000pt;}
.wsa_c00138{word-spacing:-0.064000pt;}
.ws6_c00138{word-spacing:0.000000pt;}
.ws8_c00138{word-spacing:0.144000pt;}
.ws7_c00138{word-spacing:0.240000pt;}
.ws27_c00138{word-spacing:0.256000pt;}
.wsc_c00138{word-spacing:1.216000pt;}
.wsd_c00138{word-spacing:1.280000pt;}
.ws10_c00138{word-spacing:2.240000pt;}
.ws23_c00138{word-spacing:2.496000pt;}
.ws1f_c00138{word-spacing:2.816000pt;}
.ws20_c00138{word-spacing:2.880000pt;}
.ws1d_c00138{word-spacing:3.456000pt;}
.ws1e_c00138{word-spacing:3.520000pt;}
.wse_c00138{word-spacing:5.120000pt;}
.ws28_c00138{word-spacing:5.312000pt;}
.ws2a_c00138{word-spacing:6.336000pt;}
.ws2b_c00138{word-spacing:6.400000pt;}
.ws25_c00138{word-spacing:6.720000pt;}
.ws9_c00138{word-spacing:7.616000pt;}
.ws19_c00138{word-spacing:8.256000pt;}
.ws1a_c00138{word-spacing:8.320000pt;}
.ws1c_c00138{word-spacing:9.856000pt;}
.ws1b_c00138{word-spacing:9.920000pt;}
.ws15_c00138{word-spacing:11.200000pt;}
.ws14_c00138{word-spacing:11.456000pt;}
.ws13_c00138{word-spacing:12.096000pt;}
.ws22_c00138{word-spacing:12.416000pt;}
.ws21_c00138{word-spacing:12.672000pt;}
.ws12_c00138{word-spacing:13.376000pt;}
.ws11_c00138{word-spacing:13.440000pt;}
.ws29_c00138{word-spacing:15.296000pt;}
.ws18_c00138{word-spacing:15.616000pt;}
.ws17_c00138{word-spacing:17.536000pt;}
.ws16_c00138{word-spacing:17.600000pt;}
.wsf_c00138{word-spacing:21.696000pt;}
.ws26_c00138{word-spacing:21.760000pt;}
._1_c00138{margin-left:-0.940800pt;}
._0_c00138{width:1.084800pt;}
._5_c00138{width:2.547200pt;}
._2_c00138{width:5.376000pt;}
._4_c00138{width:11.673600pt;}
._3_c00138{width:13.696000pt;}
.fs0_c00138{font-size:48.000000pt;}
.fs1_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y26_c00138{bottom:50.880000pt;}
.y25_c00138{bottom:103.840000pt;}
.y24_c00138{bottom:131.440000pt;}
.y23_c00138{bottom:159.040000pt;}
.y22_c00138{bottom:186.640000pt;}
.y21_c00138{bottom:214.240000pt;}
.y20_c00138{bottom:241.840000pt;}
.y1f_c00138{bottom:269.440000pt;}
.y1e_c00138{bottom:297.040000pt;}
.y1d_c00138{bottom:324.640000pt;}
.y1c_c00138{bottom:352.240000pt;}
.y1b_c00138{bottom:379.840000pt;}
.y1a_c00138{bottom:407.440000pt;}
.y19_c00138{bottom:435.040000pt;}
.y18_c00138{bottom:462.640000pt;}
.y17_c00138{bottom:490.240000pt;}
.y16_c00138{bottom:517.840000pt;}
.y15_c00138{bottom:545.440000pt;}
.y14_c00138{bottom:573.040000pt;}
.y13_c00138{bottom:600.640000pt;}
.y12_c00138{bottom:628.240000pt;}
.y11_c00138{bottom:655.840000pt;}
.y10_c00138{bottom:683.440000pt;}
.yf_c00138{bottom:711.040000pt;}
.ye_c00138{bottom:738.640000pt;}
.yd_c00138{bottom:766.160000pt;}
.yc_c00138{bottom:793.760000pt;}
.yb_c00138{bottom:821.360000pt;}
.ya_c00138{bottom:848.960000pt;}
.y9_c00138{bottom:876.560000pt;}
.y8_c00138{bottom:904.160000pt;}
.y7_c00138{bottom:931.760000pt;}
.y6_c00138{bottom:959.360000pt;}
.y5_c00138{bottom:1005.360000pt;}
.y4_c00138{bottom:1023.040000pt;}
.y3_c00138{bottom:1036.804000pt;}
.y2_c00138{bottom:1050.640000pt;}
.y1_c00138{bottom:1064.400000pt;}
.h3_c00138{height:47.085938pt;}
.h2_c00138{height:47.109375pt;}
.h4_c00138{height:62.812500pt;}
.h5_c00138{height:66.750000pt;}
.h0_c00138{height:1122.560000pt;}
.h1_c00138{height:1122.666667pt;}
.w0_c00138{width:793.840000pt;}
.w1_c00138{width:794.000000pt;}
.x0_c00138{left:0.000000pt;}
.x3_c00138{left:113.440000pt;}
.x5_c00138{left:137.440000pt;}
.x6_c00138{left:161.440000pt;}
.x4_c00138{left:209.440000pt;}
.x2_c00138{left:377.920000pt;}
.x1_c00138{left:396.960000pt;}
.x7_c00138{left:656.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_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_efd4b92a1666fb6856b93988.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00139{vertical-align:-61.938000px;}
.v3_c00139{vertical-align:-20.880000px;}
.v0_c00139{vertical-align:0.000000px;}
.v2_c00139{vertical-align:27.000000px;}
.ls18_c00139{letter-spacing:-0.420840px;}
.ls10_c00139{letter-spacing:-0.360000px;}
.ls12_c00139{letter-spacing:-0.216000px;}
.ls17_c00139{letter-spacing:-0.180360px;}
.ls19_c00139{letter-spacing:-0.120240px;}
.ls11_c00139{letter-spacing:-0.072000px;}
.ls14_c00139{letter-spacing:-0.060120px;}
.lsf_c00139{letter-spacing:0.000000px;}
.ls2_c00139{letter-spacing:0.072000px;}
.lse_c00139{letter-spacing:0.120240px;}
.ls9_c00139{letter-spacing:0.144000px;}
.ls15_c00139{letter-spacing:0.180360px;}
.ls3_c00139{letter-spacing:0.191520px;}
.ls4_c00139{letter-spacing:0.360000px;}
.ls16_c00139{letter-spacing:0.360720px;}
.lsb_c00139{letter-spacing:0.420840px;}
.ls13_c00139{letter-spacing:0.432000px;}
.lsc_c00139{letter-spacing:0.781560px;}
.ls1_c00139{letter-spacing:6.840000px;}
.lsd_c00139{letter-spacing:7.995960px;}
.ls8_c00139{letter-spacing:8.661600px;}
.ls7_c00139{letter-spacing:9.360000px;}
.ls6_c00139{letter-spacing:9.720000px;}
.ls5_c00139{letter-spacing:17.640000px;}
.lsa_c00139{letter-spacing:20.520000px;}
.ls0_c00139{letter-spacing:319.518000px;}
.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:-18.072000px;}
.ws2_c00139{word-spacing:-17.928000px;}
.ws4_c00139{word-spacing:-14.609160px;}
.ws1_c00139{word-spacing:-12.161520px;}
.ws3_c00139{word-spacing:-9.720000px;}
.ws25_c00139{word-spacing:-0.432000px;}
.ws31_c00139{word-spacing:-0.360720px;}
.ws35_c00139{word-spacing:-0.180360px;}
.ws6_c00139{word-spacing:-0.162000px;}
.ws15_c00139{word-spacing:-0.144000px;}
.wse_c00139{word-spacing:-0.072000px;}
.ws5_c00139{word-spacing:0.000000px;}
.ws2d_c00139{word-spacing:0.060120px;}
.ws34_c00139{word-spacing:0.180360px;}
.ws36_c00139{word-spacing:0.240480px;}
.ws21_c00139{word-spacing:0.288000px;}
.ws2e_c00139{word-spacing:0.300600px;}
.wsc_c00139{word-spacing:0.360000px;}
.ws2f_c00139{word-spacing:0.541080px;}
.ws11_c00139{word-spacing:1.008000px;}
.ws12_c00139{word-spacing:1.080000px;}
.wsd_c00139{word-spacing:3.888000px;}
.ws20_c00139{word-spacing:4.248000px;}
.ws1f_c00139{word-spacing:4.320000px;}
.wsb_c00139{word-spacing:6.768000px;}
.wsa_c00139{word-spacing:6.840000px;}
.wsf_c00139{word-spacing:7.128000px;}
.ws32_c00139{word-spacing:8.056080px;}
.ws33_c00139{word-spacing:8.176320px;}
.ws1e_c00139{word-spacing:8.568000px;}
.ws23_c00139{word-spacing:8.928000px;}
.ws22_c00139{word-spacing:9.288000px;}
.ws24_c00139{word-spacing:9.360000px;}
.ws1b_c00139{word-spacing:9.648000px;}
.ws1a_c00139{word-spacing:9.720000px;}
.ws10_c00139{word-spacing:12.960000px;}
.ws13_c00139{word-spacing:13.968000px;}
.ws14_c00139{word-spacing:14.328000px;}
.ws2a_c00139{word-spacing:17.208000px;}
.ws18_c00139{word-spacing:17.640000px;}
.ws19_c00139{word-spacing:17.856000px;}
.ws1c_c00139{word-spacing:18.288000px;}
.ws1d_c00139{word-spacing:18.648000px;}
.ws30_c00139{word-spacing:18.877680px;}
.ws26_c00139{word-spacing:20.448000px;}
.ws27_c00139{word-spacing:20.520000px;}
.ws9_c00139{word-spacing:21.168000px;}
.ws8_c00139{word-spacing:21.240000px;}
.ws7_c00139{word-spacing:21.600000px;}
.ws2b_c00139{word-spacing:33.768000px;}
.ws2c_c00139{word-spacing:34.200000px;}
.ws17_c00139{word-spacing:35.856000px;}
.ws16_c00139{word-spacing:35.928000px;}
.ws28_c00139{word-spacing:39.528000px;}
.ws29_c00139{word-spacing:39.600000px;}
._1_c00139{margin-left:-1.296000px;}
._2_c00139{width:1.224000px;}
._6_c00139{width:2.304000px;}
._a_c00139{width:4.608000px;}
._4_c00139{width:6.048000px;}
._3_c00139{width:7.776000px;}
._9_c00139{width:9.720000px;}
._5_c00139{width:12.384000px;}
._7_c00139{width:13.968000px;}
._0_c00139{width:21.240000px;}
._8_c00139{width:36.216000px;}
._b_c00139{width:39.312000px;}
.fc0_c00139{color:rgb(0,0,0);}
.fs3_c00139{font-size:38.880000px;}
.fs2_c00139{font-size:47.880000px;}
.fs0_c00139{font-size:54.000000px;}
.fs4_c00139{font-size:60.120000px;}
.fs1_c00139{font-size:72.000000px;}
.y0_c00139{bottom:0.000000px;}
.y26_c00139{bottom:57.240000px;}
.y25_c00139{bottom:109.786680px;}
.y24_c00139{bottom:126.981000px;}
.y23_c00139{bottom:144.265500px;}
.y22_c00139{bottom:166.770000px;}
.y27_c00139{bottom:179.460000px;}
.y21_c00139{bottom:241.020000px;}
.y20_c00139{bottom:272.070000px;}
.y1f_c00139{bottom:303.120000px;}
.y1e_c00139{bottom:334.170000px;}
.y1d_c00139{bottom:365.220000px;}
.y1c_c00139{bottom:396.270000px;}
.y1b_c00139{bottom:427.320000px;}
.y1a_c00139{bottom:458.370000px;}
.y19_c00139{bottom:489.420000px;}
.y18_c00139{bottom:520.470000px;}
.y17_c00139{bottom:551.520000px;}
.y16_c00139{bottom:582.570000px;}
.y15_c00139{bottom:613.620000px;}
.y14_c00139{bottom:644.670000px;}
.y13_c00139{bottom:675.720000px;}
.y12_c00139{bottom:706.770000px;}
.y11_c00139{bottom:737.820000px;}
.y10_c00139{bottom:768.870000px;}
.yf_c00139{bottom:799.920000px;}
.ye_c00139{bottom:830.970000px;}
.yd_c00139{bottom:861.930000px;}
.yc_c00139{bottom:892.980000px;}
.yb_c00139{bottom:924.030000px;}
.ya_c00139{bottom:955.080000px;}
.y9_c00139{bottom:986.130000px;}
.y8_c00139{bottom:1017.180000px;}
.y7_c00139{bottom:1048.230000px;}
.y6_c00139{bottom:1079.280000px;}
.y5_c00139{bottom:1110.330000px;}
.y4_c00139{bottom:1131.030000px;}
.y3_c00139{bottom:1150.915500px;}
.y2_c00139{bottom:1166.400000px;}
.y1_c00139{bottom:1197.450000px;}
.h5_c00139{height:38.158594px;}
.h2_c00139{height:52.998047px;}
.h6_c00139{height:59.004492px;}
.h3_c00139{height:70.664062px;}
.h4_c00139{height:73.991602px;}
.h0_c00139{height:1262.880000px;}
.h1_c00139{height:1263.000000px;}
.w0_c00139{width:893.070000px;}
.w1_c00139{width:893.250000px;}
.x0_c00139{left:0.000000px;}
.x2_c00139{left:127.620000px;}
.x1_c00139{left:446.580000px;}
@media print{
.v1_c00139{vertical-align:-55.056000pt;}
.v3_c00139{vertical-align:-18.560000pt;}
.v0_c00139{vertical-align:0.000000pt;}
.v2_c00139{vertical-align:24.000000pt;}
.ls18_c00139{letter-spacing:-0.374080pt;}
.ls10_c00139{letter-spacing:-0.320000pt;}
.ls12_c00139{letter-spacing:-0.192000pt;}
.ls17_c00139{letter-spacing:-0.160320pt;}
.ls19_c00139{letter-spacing:-0.106880pt;}
.ls11_c00139{letter-spacing:-0.064000pt;}
.ls14_c00139{letter-spacing:-0.053440pt;}
.lsf_c00139{letter-spacing:0.000000pt;}
.ls2_c00139{letter-spacing:0.064000pt;}
.lse_c00139{letter-spacing:0.106880pt;}
.ls9_c00139{letter-spacing:0.128000pt;}
.ls15_c00139{letter-spacing:0.160320pt;}
.ls3_c00139{letter-spacing:0.170240pt;}
.ls4_c00139{letter-spacing:0.320000pt;}
.ls16_c00139{letter-spacing:0.320640pt;}
.lsb_c00139{letter-spacing:0.374080pt;}
.ls13_c00139{letter-spacing:0.384000pt;}
.lsc_c00139{letter-spacing:0.694720pt;}
.ls1_c00139{letter-spacing:6.080000pt;}
.lsd_c00139{letter-spacing:7.107520pt;}
.ls8_c00139{letter-spacing:7.699200pt;}
.ls7_c00139{letter-spacing:8.320000pt;}
.ls6_c00139{letter-spacing:8.640000pt;}
.ls5_c00139{letter-spacing:15.680000pt;}
.lsa_c00139{letter-spacing:18.240000pt;}
.ls0_c00139{letter-spacing:284.016000pt;}
.ws0_c00139{word-spacing:-16.064000pt;}
.ws2_c00139{word-spacing:-15.936000pt;}
.ws4_c00139{word-spacing:-12.985920pt;}
.ws1_c00139{word-spacing:-10.810240pt;}
.ws3_c00139{word-spacing:-8.640000pt;}
.ws25_c00139{word-spacing:-0.384000pt;}
.ws31_c00139{word-spacing:-0.320640pt;}
.ws35_c00139{word-spacing:-0.160320pt;}
.ws6_c00139{word-spacing:-0.144000pt;}
.ws15_c00139{word-spacing:-0.128000pt;}
.wse_c00139{word-spacing:-0.064000pt;}
.ws5_c00139{word-spacing:0.000000pt;}
.ws2d_c00139{word-spacing:0.053440pt;}
.ws34_c00139{word-spacing:0.160320pt;}
.ws36_c00139{word-spacing:0.213760pt;}
.ws21_c00139{word-spacing:0.256000pt;}
.ws2e_c00139{word-spacing:0.267200pt;}
.wsc_c00139{word-spacing:0.320000pt;}
.ws2f_c00139{word-spacing:0.480960pt;}
.ws11_c00139{word-spacing:0.896000pt;}
.ws12_c00139{word-spacing:0.960000pt;}
.wsd_c00139{word-spacing:3.456000pt;}
.ws20_c00139{word-spacing:3.776000pt;}
.ws1f_c00139{word-spacing:3.840000pt;}
.wsb_c00139{word-spacing:6.016000pt;}
.wsa_c00139{word-spacing:6.080000pt;}
.wsf_c00139{word-spacing:6.336000pt;}
.ws32_c00139{word-spacing:7.160960pt;}
.ws33_c00139{word-spacing:7.267840pt;}
.ws1e_c00139{word-spacing:7.616000pt;}
.ws23_c00139{word-spacing:7.936000pt;}
.ws22_c00139{word-spacing:8.256000pt;}
.ws24_c00139{word-spacing:8.320000pt;}
.ws1b_c00139{word-spacing:8.576000pt;}
.ws1a_c00139{word-spacing:8.640000pt;}
.ws10_c00139{word-spacing:11.520000pt;}
.ws13_c00139{word-spacing:12.416000pt;}
.ws14_c00139{word-spacing:12.736000pt;}
.ws2a_c00139{word-spacing:15.296000pt;}
.ws18_c00139{word-spacing:15.680000pt;}
.ws19_c00139{word-spacing:15.872000pt;}
.ws1c_c00139{word-spacing:16.256000pt;}
.ws1d_c00139{word-spacing:16.576000pt;}
.ws30_c00139{word-spacing:16.780160pt;}
.ws26_c00139{word-spacing:18.176000pt;}
.ws27_c00139{word-spacing:18.240000pt;}
.ws9_c00139{word-spacing:18.816000pt;}
.ws8_c00139{word-spacing:18.880000pt;}
.ws7_c00139{word-spacing:19.200000pt;}
.ws2b_c00139{word-spacing:30.016000pt;}
.ws2c_c00139{word-spacing:30.400000pt;}
.ws17_c00139{word-spacing:31.872000pt;}
.ws16_c00139{word-spacing:31.936000pt;}
.ws28_c00139{word-spacing:35.136000pt;}
.ws29_c00139{word-spacing:35.200000pt;}
._1_c00139{margin-left:-1.152000pt;}
._2_c00139{width:1.088000pt;}
._6_c00139{width:2.048000pt;}
._a_c00139{width:4.096000pt;}
._4_c00139{width:5.376000pt;}
._3_c00139{width:6.912000pt;}
._9_c00139{width:8.640000pt;}
._5_c00139{width:11.008000pt;}
._7_c00139{width:12.416000pt;}
._0_c00139{width:18.880000pt;}
._8_c00139{width:32.192000pt;}
._b_c00139{width:34.944000pt;}
.fs3_c00139{font-size:34.560000pt;}
.fs2_c00139{font-size:42.560000pt;}
.fs0_c00139{font-size:48.000000pt;}
.fs4_c00139{font-size:53.440000pt;}
.fs1_c00139{font-size:64.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y26_c00139{bottom:50.880000pt;}
.y25_c00139{bottom:97.588160pt;}
.y24_c00139{bottom:112.872000pt;}
.y23_c00139{bottom:128.236000pt;}
.y22_c00139{bottom:148.240000pt;}
.y27_c00139{bottom:159.520000pt;}
.y21_c00139{bottom:214.240000pt;}
.y20_c00139{bottom:241.840000pt;}
.y1f_c00139{bottom:269.440000pt;}
.y1e_c00139{bottom:297.040000pt;}
.y1d_c00139{bottom:324.640000pt;}
.y1c_c00139{bottom:352.240000pt;}
.y1b_c00139{bottom:379.840000pt;}
.y1a_c00139{bottom:407.440000pt;}
.y19_c00139{bottom:435.040000pt;}
.y18_c00139{bottom:462.640000pt;}
.y17_c00139{bottom:490.240000pt;}
.y16_c00139{bottom:517.840000pt;}
.y15_c00139{bottom:545.440000pt;}
.y14_c00139{bottom:573.040000pt;}
.y13_c00139{bottom:600.640000pt;}
.y12_c00139{bottom:628.240000pt;}
.y11_c00139{bottom:655.840000pt;}
.y10_c00139{bottom:683.440000pt;}
.yf_c00139{bottom:711.040000pt;}
.ye_c00139{bottom:738.640000pt;}
.yd_c00139{bottom:766.160000pt;}
.yc_c00139{bottom:793.760000pt;}
.yb_c00139{bottom:821.360000pt;}
.ya_c00139{bottom:848.960000pt;}
.y9_c00139{bottom:876.560000pt;}
.y8_c00139{bottom:904.160000pt;}
.y7_c00139{bottom:931.760000pt;}
.y6_c00139{bottom:959.360000pt;}
.y5_c00139{bottom:986.960000pt;}
.y4_c00139{bottom:1005.360000pt;}
.y3_c00139{bottom:1023.036000pt;}
.y2_c00139{bottom:1036.800000pt;}
.y1_c00139{bottom:1064.400000pt;}
.h5_c00139{height:33.918750pt;}
.h2_c00139{height:47.109375pt;}
.h6_c00139{height:52.448437pt;}
.h3_c00139{height:62.812500pt;}
.h4_c00139{height:65.770312pt;}
.h0_c00139{height:1122.560000pt;}
.h1_c00139{height:1122.666667pt;}
.w0_c00139{width:793.840000pt;}
.w1_c00139{width:794.000000pt;}
.x0_c00139{left:0.000000pt;}
.x2_c00139{left:113.440000pt;}
.x1_c00139{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2425af14407a2187db3d18f.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.284180;font-style:normal;font-weight:normal;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_ba1e4d60da51d9bfd3a59361.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;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_c00140;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00140{vertical-align:-20.880000px;}
.v0_c00140{vertical-align:0.000000px;}
.v1_c00140{vertical-align:27.000000px;}
.lsd_c00140{letter-spacing:-0.360000px;}
.lsc_c00140{letter-spacing:-0.288000px;}
.lsf_c00140{letter-spacing:-0.120240px;}
.lsa_c00140{letter-spacing:-0.108000px;}
.lsb_c00140{letter-spacing:-0.072000px;}
.lse_c00140{letter-spacing:-0.060120px;}
.ls9_c00140{letter-spacing:0.000000px;}
.ls3_c00140{letter-spacing:0.072000px;}
.ls6_c00140{letter-spacing:0.144000px;}
.ls8_c00140{letter-spacing:0.180360px;}
.ls1_c00140{letter-spacing:0.191520px;}
.ls7_c00140{letter-spacing:0.781560px;}
.ls2_c00140{letter-spacing:6.480000px;}
.ls5_c00140{letter-spacing:16.920000px;}
.ls0_c00140{letter-spacing:17.640000px;}
.ls4_c00140{letter-spacing:30.744000px;}
.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;}
}
.ws5_c00140{word-spacing:-18.144000px;}
.ws4_c00140{word-spacing:-18.072000px;}
.ws1_c00140{word-spacing:-18.000000px;}
.ws0_c00140{word-spacing:-17.928000px;}
.ws3_c00140{word-spacing:-17.712000px;}
.ws7_c00140{word-spacing:-14.909760px;}
.ws2_c00140{word-spacing:-12.161520px;}
.ws6_c00140{word-spacing:-9.720000px;}
.ws10_c00140{word-spacing:-0.144000px;}
.ws16_c00140{word-spacing:-0.072000px;}
.ws8_c00140{word-spacing:0.000000px;}
.wsa_c00140{word-spacing:0.162000px;}
.ws9_c00140{word-spacing:0.270000px;}
.ws1b_c00140{word-spacing:0.360000px;}
.ws2a_c00140{word-spacing:0.661320px;}
.ws1c_c00140{word-spacing:0.720000px;}
.ws2b_c00140{word-spacing:0.901800px;}
.ws24_c00140{word-spacing:1.080000px;}
.ws1a_c00140{word-spacing:1.440000px;}
.ws1d_c00140{word-spacing:1.728000px;}
.ws2c_c00140{word-spacing:2.044080px;}
.ws29_c00140{word-spacing:2.520000px;}
.ws22_c00140{word-spacing:4.248000px;}
.ws20_c00140{word-spacing:4.608000px;}
.ws1f_c00140{word-spacing:4.680000px;}
.ws11_c00140{word-spacing:4.896000px;}
.ws12_c00140{word-spacing:4.968000px;}
.wsf_c00140{word-spacing:6.408000px;}
.wse_c00140{word-spacing:6.480000px;}
.ws21_c00140{word-spacing:7.920000px;}
.ws2d_c00140{word-spacing:8.176320px;}
.ws18_c00140{word-spacing:12.528000px;}
.ws23_c00140{word-spacing:16.848000px;}
.wsb_c00140{word-spacing:17.568000px;}
.ws25_c00140{word-spacing:17.640000px;}
.ws13_c00140{word-spacing:19.080000px;}
.ws17_c00140{word-spacing:23.400000px;}
.ws28_c00140{word-spacing:27.288000px;}
.ws27_c00140{word-spacing:27.360000px;}
.ws26_c00140{word-spacing:30.888000px;}
.ws15_c00140{word-spacing:34.488000px;}
.ws14_c00140{word-spacing:34.560000px;}
.ws19_c00140{word-spacing:41.040000px;}
.ws1e_c00140{word-spacing:42.480000px;}
.wsc_c00140{word-spacing:67.320000px;}
.wsd_c00140{word-spacing:67.680000px;}
._1_c00140{margin-left:-1.058400px;}
._0_c00140{width:1.220400px;}
._3_c00140{width:3.168000px;}
._5_c00140{width:4.500000px;}
._4_c00140{width:6.258240px;}
._8_c00140{width:12.484800px;}
._6_c00140{width:22.392000px;}
._7_c00140{width:23.616000px;}
._a_c00140{width:26.568000px;}
._9_c00140{width:30.506400px;}
._2_c00140{width:67.467600px;}
.fc0_c00140{color:rgb(0,0,0);}
.fs3_c00140{font-size:38.880000px;}
.fs2_c00140{font-size:47.880000px;}
.fs0_c00140{font-size:54.000000px;}
.fs4_c00140{font-size:60.120000px;}
.fs1_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y27_c00140{bottom:57.240000px;}
.y26_c00140{bottom:109.786680px;}
.y25_c00140{bottom:126.981000px;}
.y24_c00140{bottom:144.265500px;}
.y23_c00140{bottom:166.770000px;}
.y28_c00140{bottom:179.460000px;}
.y22_c00140{bottom:218.520000px;}
.y21_c00140{bottom:249.570000px;}
.y20_c00140{bottom:280.620000px;}
.y1f_c00140{bottom:319.050000px;}
.y1e_c00140{bottom:350.190000px;}
.y1d_c00140{bottom:381.240000px;}
.y1c_c00140{bottom:412.290000px;}
.y1b_c00140{bottom:443.340000px;}
.y1a_c00140{bottom:481.770000px;}
.y19_c00140{bottom:512.910000px;}
.y18_c00140{bottom:543.960000px;}
.y17_c00140{bottom:575.010000px;}
.y16_c00140{bottom:606.060000px;}
.y15_c00140{bottom:644.670000px;}
.y14_c00140{bottom:675.720000px;}
.y13_c00140{bottom:706.770000px;}
.y12_c00140{bottom:737.820000px;}
.y11_c00140{bottom:768.870000px;}
.y10_c00140{bottom:799.920000px;}
.yf_c00140{bottom:830.970000px;}
.ye_c00140{bottom:861.930000px;}
.yd_c00140{bottom:892.980000px;}
.yc_c00140{bottom:924.030000px;}
.yb_c00140{bottom:955.080000px;}
.ya_c00140{bottom:986.130000px;}
.y9_c00140{bottom:1017.180000px;}
.y8_c00140{bottom:1048.230000px;}
.y7_c00140{bottom:1079.280000px;}
.y6_c00140{bottom:1110.330000px;}
.y5_c00140{bottom:1131.030000px;}
.y4_c00140{bottom:1150.920000px;}
.y3_c00140{bottom:1166.404500px;}
.y2_c00140{bottom:1181.970000px;}
.y1_c00140{bottom:1197.450000px;}
.h7_c00140{height:38.158594px;}
.h3_c00140{height:52.971680px;}
.h2_c00140{height:52.998047px;}
.h8_c00140{height:59.004492px;}
.h4_c00140{height:70.664062px;}
.h5_c00140{height:73.991602px;}
.h6_c00140{height:75.093750px;}
.h0_c00140{height:1262.880000px;}
.h1_c00140{height:1263.000000px;}
.w0_c00140{width:893.070000px;}
.w1_c00140{width:893.250000px;}
.x0_c00140{left:0.000000px;}
.x3_c00140{left:127.620000px;}
.x4_c00140{left:175.860000px;}
.x5_c00140{left:202.860000px;}
.x2_c00140{left:425.160000px;}
.x1_c00140{left:446.580000px;}
.x6_c00140{left:738.540000px;}
@media print{
.v2_c00140{vertical-align:-18.560000pt;}
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:24.000000pt;}
.lsd_c00140{letter-spacing:-0.320000pt;}
.lsc_c00140{letter-spacing:-0.256000pt;}
.lsf_c00140{letter-spacing:-0.106880pt;}
.lsa_c00140{letter-spacing:-0.096000pt;}
.lsb_c00140{letter-spacing:-0.064000pt;}
.lse_c00140{letter-spacing:-0.053440pt;}
.ls9_c00140{letter-spacing:0.000000pt;}
.ls3_c00140{letter-spacing:0.064000pt;}
.ls6_c00140{letter-spacing:0.128000pt;}
.ls8_c00140{letter-spacing:0.160320pt;}
.ls1_c00140{letter-spacing:0.170240pt;}
.ls7_c00140{letter-spacing:0.694720pt;}
.ls2_c00140{letter-spacing:5.760000pt;}
.ls5_c00140{letter-spacing:15.040000pt;}
.ls0_c00140{letter-spacing:15.680000pt;}
.ls4_c00140{letter-spacing:27.328000pt;}
.ws5_c00140{word-spacing:-16.128000pt;}
.ws4_c00140{word-spacing:-16.064000pt;}
.ws1_c00140{word-spacing:-16.000000pt;}
.ws0_c00140{word-spacing:-15.936000pt;}
.ws3_c00140{word-spacing:-15.744000pt;}
.ws7_c00140{word-spacing:-13.253120pt;}
.ws2_c00140{word-spacing:-10.810240pt;}
.ws6_c00140{word-spacing:-8.640000pt;}
.ws10_c00140{word-spacing:-0.128000pt;}
.ws16_c00140{word-spacing:-0.064000pt;}
.ws8_c00140{word-spacing:0.000000pt;}
.wsa_c00140{word-spacing:0.144000pt;}
.ws9_c00140{word-spacing:0.240000pt;}
.ws1b_c00140{word-spacing:0.320000pt;}
.ws2a_c00140{word-spacing:0.587840pt;}
.ws1c_c00140{word-spacing:0.640000pt;}
.ws2b_c00140{word-spacing:0.801600pt;}
.ws24_c00140{word-spacing:0.960000pt;}
.ws1a_c00140{word-spacing:1.280000pt;}
.ws1d_c00140{word-spacing:1.536000pt;}
.ws2c_c00140{word-spacing:1.816960pt;}
.ws29_c00140{word-spacing:2.240000pt;}
.ws22_c00140{word-spacing:3.776000pt;}
.ws20_c00140{word-spacing:4.096000pt;}
.ws1f_c00140{word-spacing:4.160000pt;}
.ws11_c00140{word-spacing:4.352000pt;}
.ws12_c00140{word-spacing:4.416000pt;}
.wsf_c00140{word-spacing:5.696000pt;}
.wse_c00140{word-spacing:5.760000pt;}
.ws21_c00140{word-spacing:7.040000pt;}
.ws2d_c00140{word-spacing:7.267840pt;}
.ws18_c00140{word-spacing:11.136000pt;}
.ws23_c00140{word-spacing:14.976000pt;}
.wsb_c00140{word-spacing:15.616000pt;}
.ws25_c00140{word-spacing:15.680000pt;}
.ws13_c00140{word-spacing:16.960000pt;}
.ws17_c00140{word-spacing:20.800000pt;}
.ws28_c00140{word-spacing:24.256000pt;}
.ws27_c00140{word-spacing:24.320000pt;}
.ws26_c00140{word-spacing:27.456000pt;}
.ws15_c00140{word-spacing:30.656000pt;}
.ws14_c00140{word-spacing:30.720000pt;}
.ws19_c00140{word-spacing:36.480000pt;}
.ws1e_c00140{word-spacing:37.760000pt;}
.wsc_c00140{word-spacing:59.840000pt;}
.wsd_c00140{word-spacing:60.160000pt;}
._1_c00140{margin-left:-0.940800pt;}
._0_c00140{width:1.084800pt;}
._3_c00140{width:2.816000pt;}
._5_c00140{width:4.000000pt;}
._4_c00140{width:5.562880pt;}
._8_c00140{width:11.097600pt;}
._6_c00140{width:19.904000pt;}
._7_c00140{width:20.992000pt;}
._a_c00140{width:23.616000pt;}
._9_c00140{width:27.116800pt;}
._2_c00140{width:59.971200pt;}
.fs3_c00140{font-size:34.560000pt;}
.fs2_c00140{font-size:42.560000pt;}
.fs0_c00140{font-size:48.000000pt;}
.fs4_c00140{font-size:53.440000pt;}
.fs1_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y27_c00140{bottom:50.880000pt;}
.y26_c00140{bottom:97.588160pt;}
.y25_c00140{bottom:112.872000pt;}
.y24_c00140{bottom:128.236000pt;}
.y23_c00140{bottom:148.240000pt;}
.y28_c00140{bottom:159.520000pt;}
.y22_c00140{bottom:194.240000pt;}
.y21_c00140{bottom:221.840000pt;}
.y20_c00140{bottom:249.440000pt;}
.y1f_c00140{bottom:283.600000pt;}
.y1e_c00140{bottom:311.280000pt;}
.y1d_c00140{bottom:338.880000pt;}
.y1c_c00140{bottom:366.480000pt;}
.y1b_c00140{bottom:394.080000pt;}
.y1a_c00140{bottom:428.240000pt;}
.y19_c00140{bottom:455.920000pt;}
.y18_c00140{bottom:483.520000pt;}
.y17_c00140{bottom:511.120000pt;}
.y16_c00140{bottom:538.720000pt;}
.y15_c00140{bottom:573.040000pt;}
.y14_c00140{bottom:600.640000pt;}
.y13_c00140{bottom:628.240000pt;}
.y12_c00140{bottom:655.840000pt;}
.y11_c00140{bottom:683.440000pt;}
.y10_c00140{bottom:711.040000pt;}
.yf_c00140{bottom:738.640000pt;}
.ye_c00140{bottom:766.160000pt;}
.yd_c00140{bottom:793.760000pt;}
.yc_c00140{bottom:821.360000pt;}
.yb_c00140{bottom:848.960000pt;}
.ya_c00140{bottom:876.560000pt;}
.y9_c00140{bottom:904.160000pt;}
.y8_c00140{bottom:931.760000pt;}
.y7_c00140{bottom:959.360000pt;}
.y6_c00140{bottom:986.960000pt;}
.y5_c00140{bottom:1005.360000pt;}
.y4_c00140{bottom:1023.040000pt;}
.y3_c00140{bottom:1036.804000pt;}
.y2_c00140{bottom:1050.640000pt;}
.y1_c00140{bottom:1064.400000pt;}
.h7_c00140{height:33.918750pt;}
.h3_c00140{height:47.085938pt;}
.h2_c00140{height:47.109375pt;}
.h8_c00140{height:52.448437pt;}
.h4_c00140{height:62.812500pt;}
.h5_c00140{height:65.770312pt;}
.h6_c00140{height:66.750000pt;}
.h0_c00140{height:1122.560000pt;}
.h1_c00140{height:1122.666667pt;}
.w0_c00140{width:793.840000pt;}
.w1_c00140{width:794.000000pt;}
.x0_c00140{left:0.000000pt;}
.x3_c00140{left:113.440000pt;}
.x4_c00140{left:156.320000pt;}
.x5_c00140{left:180.320000pt;}
.x2_c00140{left:377.920000pt;}
.x1_c00140{left:396.960000pt;}
.x6_c00140{left:656.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_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_d13eb4fb5e08cf4f11b1f0a7.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.284180;font-style:normal;font-weight:normal;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_7231a343125637b6c980393d.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;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_c00141;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00141{font-family:ff4_c00141;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00141{vertical-align:-82.800000px;}
.v1_c00141{vertical-align:-61.938000px;}
.v4_c00141{vertical-align:-20.880000px;}
.v0_c00141{vertical-align:0.000000px;}
.v3_c00141{vertical-align:27.000000px;}
.lsa_c00141{letter-spacing:-0.288000px;}
.lsb_c00141{letter-spacing:-0.216000px;}
.ls9_c00141{letter-spacing:0.000000px;}
.ls3_c00141{letter-spacing:0.072000px;}
.ls8_c00141{letter-spacing:0.120240px;}
.ls5_c00141{letter-spacing:0.144000px;}
.lsc_c00141{letter-spacing:0.180360px;}
.ls6_c00141{letter-spacing:0.191520px;}
.ls7_c00141{letter-spacing:2.160000px;}
.ls2_c00141{letter-spacing:5.040000px;}
.ls4_c00141{letter-spacing:30.744000px;}
.ls1_c00141{letter-spacing:282.960000px;}
.ls0_c00141{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00141{word-spacing:-18.144000px;}
.ws0_c00141{word-spacing:-18.072000px;}
.ws1_c00141{word-spacing:-18.000000px;}
.ws3_c00141{word-spacing:-12.161520px;}
.ws4_c00141{word-spacing:-9.720000px;}
.ws2c_c00141{word-spacing:-0.360000px;}
.ws6_c00141{word-spacing:-0.162000px;}
.ws12_c00141{word-spacing:-0.144000px;}
.ws8_c00141{word-spacing:-0.072000px;}
.ws30_c00141{word-spacing:-0.060120px;}
.ws5_c00141{word-spacing:0.000000px;}
.ws21_c00141{word-spacing:0.216000px;}
.ws2a_c00141{word-spacing:2.016000px;}
.ws2b_c00141{word-spacing:2.088000px;}
.ws9_c00141{word-spacing:2.808000px;}
.wsa_c00141{word-spacing:3.600000px;}
.ws26_c00141{word-spacing:3.888000px;}
.ws27_c00141{word-spacing:3.960000px;}
.ws1e_c00141{word-spacing:4.320000px;}
.ws20_c00141{word-spacing:4.608000px;}
.ws1f_c00141{word-spacing:4.680000px;}
.ws14_c00141{word-spacing:4.896000px;}
.ws13_c00141{word-spacing:5.040000px;}
.ws7_c00141{word-spacing:5.400000px;}
.ws16_c00141{word-spacing:6.048000px;}
.ws15_c00141{word-spacing:6.120000px;}
.ws17_c00141{word-spacing:7.128000px;}
.ws18_c00141{word-spacing:7.200000px;}
.ws1a_c00141{word-spacing:8.496000px;}
.ws1b_c00141{word-spacing:8.568000px;}
.ws1c_c00141{word-spacing:8.928000px;}
.ws19_c00141{word-spacing:9.000000px;}
.ws2e_c00141{word-spacing:10.728000px;}
.ws2d_c00141{word-spacing:10.800000px;}
.ws11_c00141{word-spacing:11.016000px;}
.ws10_c00141{word-spacing:11.088000px;}
.wsf_c00141{word-spacing:11.160000px;}
.ws23_c00141{word-spacing:11.880000px;}
.ws24_c00141{word-spacing:12.096000px;}
.ws22_c00141{word-spacing:12.240000px;}
.wsd_c00141{word-spacing:12.888000px;}
.wsc_c00141{word-spacing:12.960000px;}
.ws2f_c00141{word-spacing:15.048000px;}
.wse_c00141{word-spacing:19.728000px;}
.ws28_c00141{word-spacing:21.168000px;}
.ws25_c00141{word-spacing:21.600000px;}
.ws1d_c00141{word-spacing:23.760000px;}
.ws29_c00141{word-spacing:50.328000px;}
.wsb_c00141{word-spacing:62.640000px;}
._1_c00141{margin-left:-1.224000px;}
._6_c00141{width:1.008000px;}
._5_c00141{width:2.952000px;}
._0_c00141{width:4.608000px;}
._7_c00141{width:5.810400px;}
._8_c00141{width:8.352000px;}
._9_c00141{width:9.360000px;}
._4_c00141{width:11.304000px;}
._2_c00141{width:12.528000px;}
._3_c00141{width:19.728000px;}
._a_c00141{width:21.960000px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs3_c00141{font-size:38.880000px;}
.fs2_c00141{font-size:47.880000px;}
.fs0_c00141{font-size:54.000000px;}
.fs4_c00141{font-size:60.120000px;}
.fs1_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.y23_c00141{bottom:57.240000px;}
.y22_c00141{bottom:115.020000px;}
.y24_c00141{bottom:127.710000px;}
.y21_c00141{bottom:180.000000px;}
.y20_c00141{bottom:211.050000px;}
.y1f_c00141{bottom:242.100000px;}
.y1e_c00141{bottom:273.150000px;}
.y1d_c00141{bottom:304.200000px;}
.y1c_c00141{bottom:335.250000px;}
.y1b_c00141{bottom:366.300000px;}
.y1a_c00141{bottom:397.350000px;}
.y19_c00141{bottom:428.400000px;}
.y18_c00141{bottom:459.360000px;}
.y17_c00141{bottom:490.410000px;}
.y16_c00141{bottom:528.930000px;}
.y15_c00141{bottom:560.070000px;}
.y14_c00141{bottom:591.120000px;}
.y13_c00141{bottom:622.170000px;}
.y12_c00141{bottom:653.220000px;}
.y11_c00141{bottom:684.270000px;}
.y10_c00141{bottom:722.700000px;}
.yf_c00141{bottom:753.840000px;}
.ye_c00141{bottom:784.890000px;}
.yd_c00141{bottom:815.940000px;}
.yc_c00141{bottom:846.990000px;}
.yb_c00141{bottom:878.040000px;}
.ya_c00141{bottom:909.090000px;}
.y9_c00141{bottom:947.520000px;}
.y8_c00141{bottom:978.660000px;}
.y7_c00141{bottom:1009.710000px;}
.y6_c00141{bottom:1040.760000px;}
.y5_c00141{bottom:1079.190000px;}
.y4_c00141{bottom:1131.030000px;}
.y3_c00141{bottom:1150.915500px;}
.y2_c00141{bottom:1166.400000px;}
.y1_c00141{bottom:1197.450000px;}
.h6_c00141{height:38.158594px;}
.h2_c00141{height:52.998047px;}
.h3_c00141{height:70.664062px;}
.h5_c00141{height:73.991602px;}
.h4_c00141{height:75.093750px;}
.h0_c00141{height:1262.880000px;}
.h1_c00141{height:1263.000000px;}
.w0_c00141{width:893.070000px;}
.w1_c00141{width:893.250000px;}
.x0_c00141{left:0.000000px;}
.x2_c00141{left:127.620000px;}
.x4_c00141{left:175.860000px;}
.x3_c00141{left:202.860000px;}
.x1_c00141{left:446.580000px;}
@media print{
.v2_c00141{vertical-align:-73.600000pt;}
.v1_c00141{vertical-align:-55.056000pt;}
.v4_c00141{vertical-align:-18.560000pt;}
.v0_c00141{vertical-align:0.000000pt;}
.v3_c00141{vertical-align:24.000000pt;}
.lsa_c00141{letter-spacing:-0.256000pt;}
.lsb_c00141{letter-spacing:-0.192000pt;}
.ls9_c00141{letter-spacing:0.000000pt;}
.ls3_c00141{letter-spacing:0.064000pt;}
.ls8_c00141{letter-spacing:0.106880pt;}
.ls5_c00141{letter-spacing:0.128000pt;}
.lsc_c00141{letter-spacing:0.160320pt;}
.ls6_c00141{letter-spacing:0.170240pt;}
.ls7_c00141{letter-spacing:1.920000pt;}
.ls2_c00141{letter-spacing:4.480000pt;}
.ls4_c00141{letter-spacing:27.328000pt;}
.ls1_c00141{letter-spacing:251.520000pt;}
.ls0_c00141{letter-spacing:284.016000pt;}
.ws2_c00141{word-spacing:-16.128000pt;}
.ws0_c00141{word-spacing:-16.064000pt;}
.ws1_c00141{word-spacing:-16.000000pt;}
.ws3_c00141{word-spacing:-10.810240pt;}
.ws4_c00141{word-spacing:-8.640000pt;}
.ws2c_c00141{word-spacing:-0.320000pt;}
.ws6_c00141{word-spacing:-0.144000pt;}
.ws12_c00141{word-spacing:-0.128000pt;}
.ws8_c00141{word-spacing:-0.064000pt;}
.ws30_c00141{word-spacing:-0.053440pt;}
.ws5_c00141{word-spacing:0.000000pt;}
.ws21_c00141{word-spacing:0.192000pt;}
.ws2a_c00141{word-spacing:1.792000pt;}
.ws2b_c00141{word-spacing:1.856000pt;}
.ws9_c00141{word-spacing:2.496000pt;}
.wsa_c00141{word-spacing:3.200000pt;}
.ws26_c00141{word-spacing:3.456000pt;}
.ws27_c00141{word-spacing:3.520000pt;}
.ws1e_c00141{word-spacing:3.840000pt;}
.ws20_c00141{word-spacing:4.096000pt;}
.ws1f_c00141{word-spacing:4.160000pt;}
.ws14_c00141{word-spacing:4.352000pt;}
.ws13_c00141{word-spacing:4.480000pt;}
.ws7_c00141{word-spacing:4.800000pt;}
.ws16_c00141{word-spacing:5.376000pt;}
.ws15_c00141{word-spacing:5.440000pt;}
.ws17_c00141{word-spacing:6.336000pt;}
.ws18_c00141{word-spacing:6.400000pt;}
.ws1a_c00141{word-spacing:7.552000pt;}
.ws1b_c00141{word-spacing:7.616000pt;}
.ws1c_c00141{word-spacing:7.936000pt;}
.ws19_c00141{word-spacing:8.000000pt;}
.ws2e_c00141{word-spacing:9.536000pt;}
.ws2d_c00141{word-spacing:9.600000pt;}
.ws11_c00141{word-spacing:9.792000pt;}
.ws10_c00141{word-spacing:9.856000pt;}
.wsf_c00141{word-spacing:9.920000pt;}
.ws23_c00141{word-spacing:10.560000pt;}
.ws24_c00141{word-spacing:10.752000pt;}
.ws22_c00141{word-spacing:10.880000pt;}
.wsd_c00141{word-spacing:11.456000pt;}
.wsc_c00141{word-spacing:11.520000pt;}
.ws2f_c00141{word-spacing:13.376000pt;}
.wse_c00141{word-spacing:17.536000pt;}
.ws28_c00141{word-spacing:18.816000pt;}
.ws25_c00141{word-spacing:19.200000pt;}
.ws1d_c00141{word-spacing:21.120000pt;}
.ws29_c00141{word-spacing:44.736000pt;}
.wsb_c00141{word-spacing:55.680000pt;}
._1_c00141{margin-left:-1.088000pt;}
._6_c00141{width:0.896000pt;}
._5_c00141{width:2.624000pt;}
._0_c00141{width:4.096000pt;}
._7_c00141{width:5.164800pt;}
._8_c00141{width:7.424000pt;}
._9_c00141{width:8.320000pt;}
._4_c00141{width:10.048000pt;}
._2_c00141{width:11.136000pt;}
._3_c00141{width:17.536000pt;}
._a_c00141{width:19.520000pt;}
.fs3_c00141{font-size:34.560000pt;}
.fs2_c00141{font-size:42.560000pt;}
.fs0_c00141{font-size:48.000000pt;}
.fs4_c00141{font-size:53.440000pt;}
.fs1_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y23_c00141{bottom:50.880000pt;}
.y22_c00141{bottom:102.240000pt;}
.y24_c00141{bottom:113.520000pt;}
.y21_c00141{bottom:160.000000pt;}
.y20_c00141{bottom:187.600000pt;}
.y1f_c00141{bottom:215.200000pt;}
.y1e_c00141{bottom:242.800000pt;}
.y1d_c00141{bottom:270.400000pt;}
.y1c_c00141{bottom:298.000000pt;}
.y1b_c00141{bottom:325.600000pt;}
.y1a_c00141{bottom:353.200000pt;}
.y19_c00141{bottom:380.800000pt;}
.y18_c00141{bottom:408.320000pt;}
.y17_c00141{bottom:435.920000pt;}
.y16_c00141{bottom:470.160000pt;}
.y15_c00141{bottom:497.840000pt;}
.y14_c00141{bottom:525.440000pt;}
.y13_c00141{bottom:553.040000pt;}
.y12_c00141{bottom:580.640000pt;}
.y11_c00141{bottom:608.240000pt;}
.y10_c00141{bottom:642.400000pt;}
.yf_c00141{bottom:670.080000pt;}
.ye_c00141{bottom:697.680000pt;}
.yd_c00141{bottom:725.280000pt;}
.yc_c00141{bottom:752.880000pt;}
.yb_c00141{bottom:780.480000pt;}
.ya_c00141{bottom:808.080000pt;}
.y9_c00141{bottom:842.240000pt;}
.y8_c00141{bottom:869.920000pt;}
.y7_c00141{bottom:897.520000pt;}
.y6_c00141{bottom:925.120000pt;}
.y5_c00141{bottom:959.280000pt;}
.y4_c00141{bottom:1005.360000pt;}
.y3_c00141{bottom:1023.036000pt;}
.y2_c00141{bottom:1036.800000pt;}
.y1_c00141{bottom:1064.400000pt;}
.h6_c00141{height:33.918750pt;}
.h2_c00141{height:47.109375pt;}
.h3_c00141{height:62.812500pt;}
.h5_c00141{height:65.770313pt;}
.h4_c00141{height:66.750000pt;}
.h0_c00141{height:1122.560000pt;}
.h1_c00141{height:1122.666667pt;}
.w0_c00141{width:793.840000pt;}
.w1_c00141{width:794.000000pt;}
.x0_c00141{left:0.000000pt;}
.x2_c00141{left:113.440000pt;}
.x4_c00141{left:156.320000pt;}
.x3_c00141{left:180.320000pt;}
.x1_c00141{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1433e2dda2e9ae9402e15b43.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_a437880613ad142c532ae864.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;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_c00142;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00142{vertical-align:-82.800000px;}
.v3_c00142{vertical-align:-20.880000px;}
.v0_c00142{vertical-align:0.000000px;}
.v2_c00142{vertical-align:27.000000px;}
.lse_c00142{letter-spacing:-0.661320px;}
.lsb_c00142{letter-spacing:-0.108000px;}
.lsc_c00142{letter-spacing:-0.072000px;}
.lsa_c00142{letter-spacing:0.000000px;}
.ls4_c00142{letter-spacing:0.072000px;}
.ls9_c00142{letter-spacing:0.120240px;}
.ls8_c00142{letter-spacing:0.144000px;}
.lsd_c00142{letter-spacing:0.180360px;}
.ls2_c00142{letter-spacing:0.191520px;}
.ls6_c00142{letter-spacing:2.520000px;}
.ls3_c00142{letter-spacing:15.840000px;}
.ls7_c00142{letter-spacing:21.240000px;}
.ls1_c00142{letter-spacing:29.520000px;}
.ls5_c00142{letter-spacing:30.744000px;}
.ls0_c00142{letter-spacing:282.960000px;}
.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;}
}
.ws3_c00142{word-spacing:-18.144000px;}
.ws4_c00142{word-spacing:-18.072000px;}
.ws2_c00142{word-spacing:-18.000000px;}
.ws0_c00142{word-spacing:-17.928000px;}
.ws6_c00142{word-spacing:-14.368680px;}
.ws1_c00142{word-spacing:-12.161520px;}
.ws5_c00142{word-spacing:-9.720000px;}
.ws18_c00142{word-spacing:-0.144000px;}
.wsb_c00142{word-spacing:-0.072000px;}
.ws28_c00142{word-spacing:-0.060120px;}
.ws7_c00142{word-spacing:0.000000px;}
.ws9_c00142{word-spacing:0.162000px;}
.ws8_c00142{word-spacing:0.270000px;}
.ws24_c00142{word-spacing:0.360000px;}
.ws23_c00142{word-spacing:1.008000px;}
.ws10_c00142{word-spacing:1.728000px;}
.wsf_c00142{word-spacing:1.800000px;}
.ws15_c00142{word-spacing:2.448000px;}
.ws14_c00142{word-spacing:2.520000px;}
.ws13_c00142{word-spacing:3.960000px;}
.ws1b_c00142{word-spacing:4.608000px;}
.ws21_c00142{word-spacing:5.616000px;}
.ws22_c00142{word-spacing:6.120000px;}
.ws26_c00142{word-spacing:7.128000px;}
.ws25_c00142{word-spacing:7.200000px;}
.wsa_c00142{word-spacing:7.560000px;}
.ws17_c00142{word-spacing:8.208000px;}
.ws19_c00142{word-spacing:12.168000px;}
.wsd_c00142{word-spacing:12.528000px;}
.ws1c_c00142{word-spacing:14.040000px;}
.wse_c00142{word-spacing:15.840000px;}
.ws27_c00142{word-spacing:16.488000px;}
.ws1d_c00142{word-spacing:21.240000px;}
.ws1e_c00142{word-spacing:22.680000px;}
.ws11_c00142{word-spacing:24.408000px;}
.ws1a_c00142{word-spacing:26.568000px;}
.wsc_c00142{word-spacing:29.520000px;}
.ws1f_c00142{word-spacing:33.768000px;}
.ws20_c00142{word-spacing:33.840000px;}
.ws16_c00142{word-spacing:37.728000px;}
.ws12_c00142{word-spacing:56.448000px;}
._1_c00142{margin-left:-1.058400px;}
._0_c00142{width:1.220400px;}
._2_c00142{width:2.520000px;}
._3_c00142{width:8.028000px;}
._5_c00142{width:13.896000px;}
._4_c00142{width:26.517600px;}
.fc0_c00142{color:rgb(0,0,0);}
.fs3_c00142{font-size:38.880000px;}
.fs2_c00142{font-size:47.880000px;}
.fs0_c00142{font-size:54.000000px;}
.fs4_c00142{font-size:60.120000px;}
.fs1_c00142{font-size:72.000000px;}
.y0_c00142{bottom:0.000000px;}
.y25_c00142{bottom:57.240000px;}
.y24_c00142{bottom:115.020000px;}
.y23_c00142{bottom:132.210000px;}
.y22_c00142{bottom:149.490000px;}
.y26_c00142{bottom:162.180000px;}
.y21_c00142{bottom:241.020000px;}
.y20_c00142{bottom:272.070000px;}
.y1f_c00142{bottom:303.120000px;}
.y1e_c00142{bottom:334.170000px;}
.y1d_c00142{bottom:365.220000px;}
.y1c_c00142{bottom:396.270000px;}
.y1b_c00142{bottom:427.320000px;}
.y1a_c00142{bottom:458.370000px;}
.y19_c00142{bottom:489.420000px;}
.y18_c00142{bottom:520.470000px;}
.y17_c00142{bottom:551.520000px;}
.y16_c00142{bottom:582.570000px;}
.y15_c00142{bottom:613.620000px;}
.y14_c00142{bottom:644.670000px;}
.y13_c00142{bottom:675.720000px;}
.y12_c00142{bottom:706.770000px;}
.y11_c00142{bottom:737.820000px;}
.y10_c00142{bottom:768.870000px;}
.yf_c00142{bottom:799.920000px;}
.ye_c00142{bottom:830.970000px;}
.yd_c00142{bottom:861.930000px;}
.yc_c00142{bottom:892.980000px;}
.yb_c00142{bottom:924.030000px;}
.ya_c00142{bottom:955.080000px;}
.y9_c00142{bottom:986.130000px;}
.y8_c00142{bottom:1017.180000px;}
.y7_c00142{bottom:1048.230000px;}
.y6_c00142{bottom:1079.280000px;}
.y5_c00142{bottom:1131.030000px;}
.y4_c00142{bottom:1150.920000px;}
.y3_c00142{bottom:1166.404500px;}
.y2_c00142{bottom:1181.970000px;}
.y1_c00142{bottom:1197.450000px;}
.h7_c00142{height:38.158594px;}
.h3_c00142{height:52.971680px;}
.h2_c00142{height:52.998047px;}
.h4_c00142{height:70.664062px;}
.h5_c00142{height:73.991602px;}
.h6_c00142{height:75.093750px;}
.h0_c00142{height:1262.880000px;}
.h1_c00142{height:1263.000000px;}
.w0_c00142{width:893.070000px;}
.w1_c00142{width:893.250000px;}
.x0_c00142{left:0.000000px;}
.x3_c00142{left:127.620000px;}
.x5_c00142{left:175.860000px;}
.x4_c00142{left:202.860000px;}
.x2_c00142{left:425.160000px;}
.x1_c00142{left:446.580000px;}
.x6_c00142{left:738.540000px;}
@media print{
.v1_c00142{vertical-align:-73.600000pt;}
.v3_c00142{vertical-align:-18.560000pt;}
.v0_c00142{vertical-align:0.000000pt;}
.v2_c00142{vertical-align:24.000000pt;}
.lse_c00142{letter-spacing:-0.587840pt;}
.lsb_c00142{letter-spacing:-0.096000pt;}
.lsc_c00142{letter-spacing:-0.064000pt;}
.lsa_c00142{letter-spacing:0.000000pt;}
.ls4_c00142{letter-spacing:0.064000pt;}
.ls9_c00142{letter-spacing:0.106880pt;}
.ls8_c00142{letter-spacing:0.128000pt;}
.lsd_c00142{letter-spacing:0.160320pt;}
.ls2_c00142{letter-spacing:0.170240pt;}
.ls6_c00142{letter-spacing:2.240000pt;}
.ls3_c00142{letter-spacing:14.080000pt;}
.ls7_c00142{letter-spacing:18.880000pt;}
.ls1_c00142{letter-spacing:26.240000pt;}
.ls5_c00142{letter-spacing:27.328000pt;}
.ls0_c00142{letter-spacing:251.520000pt;}
.ws3_c00142{word-spacing:-16.128000pt;}
.ws4_c00142{word-spacing:-16.064000pt;}
.ws2_c00142{word-spacing:-16.000000pt;}
.ws0_c00142{word-spacing:-15.936000pt;}
.ws6_c00142{word-spacing:-12.772160pt;}
.ws1_c00142{word-spacing:-10.810240pt;}
.ws5_c00142{word-spacing:-8.640000pt;}
.ws18_c00142{word-spacing:-0.128000pt;}
.wsb_c00142{word-spacing:-0.064000pt;}
.ws28_c00142{word-spacing:-0.053440pt;}
.ws7_c00142{word-spacing:0.000000pt;}
.ws9_c00142{word-spacing:0.144000pt;}
.ws8_c00142{word-spacing:0.240000pt;}
.ws24_c00142{word-spacing:0.320000pt;}
.ws23_c00142{word-spacing:0.896000pt;}
.ws10_c00142{word-spacing:1.536000pt;}
.wsf_c00142{word-spacing:1.600000pt;}
.ws15_c00142{word-spacing:2.176000pt;}
.ws14_c00142{word-spacing:2.240000pt;}
.ws13_c00142{word-spacing:3.520000pt;}
.ws1b_c00142{word-spacing:4.096000pt;}
.ws21_c00142{word-spacing:4.992000pt;}
.ws22_c00142{word-spacing:5.440000pt;}
.ws26_c00142{word-spacing:6.336000pt;}
.ws25_c00142{word-spacing:6.400000pt;}
.wsa_c00142{word-spacing:6.720000pt;}
.ws17_c00142{word-spacing:7.296000pt;}
.ws19_c00142{word-spacing:10.816000pt;}
.wsd_c00142{word-spacing:11.136000pt;}
.ws1c_c00142{word-spacing:12.480000pt;}
.wse_c00142{word-spacing:14.080000pt;}
.ws27_c00142{word-spacing:14.656000pt;}
.ws1d_c00142{word-spacing:18.880000pt;}
.ws1e_c00142{word-spacing:20.160000pt;}
.ws11_c00142{word-spacing:21.696000pt;}
.ws1a_c00142{word-spacing:23.616000pt;}
.wsc_c00142{word-spacing:26.240000pt;}
.ws1f_c00142{word-spacing:30.016000pt;}
.ws20_c00142{word-spacing:30.080000pt;}
.ws16_c00142{word-spacing:33.536000pt;}
.ws12_c00142{word-spacing:50.176000pt;}
._1_c00142{margin-left:-0.940800pt;}
._0_c00142{width:1.084800pt;}
._2_c00142{width:2.240000pt;}
._3_c00142{width:7.136000pt;}
._5_c00142{width:12.352000pt;}
._4_c00142{width:23.571200pt;}
.fs3_c00142{font-size:34.560000pt;}
.fs2_c00142{font-size:42.560000pt;}
.fs0_c00142{font-size:48.000000pt;}
.fs4_c00142{font-size:53.440000pt;}
.fs1_c00142{font-size:64.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y25_c00142{bottom:50.880000pt;}
.y24_c00142{bottom:102.240000pt;}
.y23_c00142{bottom:117.520000pt;}
.y22_c00142{bottom:132.880000pt;}
.y26_c00142{bottom:144.160000pt;}
.y21_c00142{bottom:214.240000pt;}
.y20_c00142{bottom:241.840000pt;}
.y1f_c00142{bottom:269.440000pt;}
.y1e_c00142{bottom:297.040000pt;}
.y1d_c00142{bottom:324.640000pt;}
.y1c_c00142{bottom:352.240000pt;}
.y1b_c00142{bottom:379.840000pt;}
.y1a_c00142{bottom:407.440000pt;}
.y19_c00142{bottom:435.040000pt;}
.y18_c00142{bottom:462.640000pt;}
.y17_c00142{bottom:490.240000pt;}
.y16_c00142{bottom:517.840000pt;}
.y15_c00142{bottom:545.440000pt;}
.y14_c00142{bottom:573.040000pt;}
.y13_c00142{bottom:600.640000pt;}
.y12_c00142{bottom:628.240000pt;}
.y11_c00142{bottom:655.840000pt;}
.y10_c00142{bottom:683.440000pt;}
.yf_c00142{bottom:711.040000pt;}
.ye_c00142{bottom:738.640000pt;}
.yd_c00142{bottom:766.160000pt;}
.yc_c00142{bottom:793.760000pt;}
.yb_c00142{bottom:821.360000pt;}
.ya_c00142{bottom:848.960000pt;}
.y9_c00142{bottom:876.560000pt;}
.y8_c00142{bottom:904.160000pt;}
.y7_c00142{bottom:931.760000pt;}
.y6_c00142{bottom:959.360000pt;}
.y5_c00142{bottom:1005.360000pt;}
.y4_c00142{bottom:1023.040000pt;}
.y3_c00142{bottom:1036.804000pt;}
.y2_c00142{bottom:1050.640000pt;}
.y1_c00142{bottom:1064.400000pt;}
.h7_c00142{height:33.918750pt;}
.h3_c00142{height:47.085938pt;}
.h2_c00142{height:47.109375pt;}
.h4_c00142{height:62.812500pt;}
.h5_c00142{height:65.770312pt;}
.h6_c00142{height:66.750000pt;}
.h0_c00142{height:1122.560000pt;}
.h1_c00142{height:1122.666667pt;}
.w0_c00142{width:793.840000pt;}
.w1_c00142{width:794.000000pt;}
.x0_c00142{left:0.000000pt;}
.x3_c00142{left:113.440000pt;}
.x5_c00142{left:156.320000pt;}
.x4_c00142{left:180.320000pt;}
.x2_c00142{left:377.920000pt;}
.x1_c00142{left:396.960000pt;}
.x6_c00142{left:656.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_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_11cd606a632737216dc9109d.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00143{vertical-align:-82.800000px;}
.v1_c00143{vertical-align:-61.938000px;}
.v4_c00143{vertical-align:-20.880000px;}
.v0_c00143{vertical-align:0.000000px;}
.v3_c00143{vertical-align:27.000000px;}
.lsf_c00143{letter-spacing:-0.360000px;}
.lse_c00143{letter-spacing:-0.288000px;}
.ls10_c00143{letter-spacing:-0.072000px;}
.ls12_c00143{letter-spacing:-0.060120px;}
.lsd_c00143{letter-spacing:0.000000px;}
.ls4_c00143{letter-spacing:0.072000px;}
.lsc_c00143{letter-spacing:0.120240px;}
.ls6_c00143{letter-spacing:0.144000px;}
.ls11_c00143{letter-spacing:0.180360px;}
.ls5_c00143{letter-spacing:0.191520px;}
.ls9_c00143{letter-spacing:0.360000px;}
.ls2_c00143{letter-spacing:0.720000px;}
.ls8_c00143{letter-spacing:7.927200px;}
.lsb_c00143{letter-spacing:13.406760px;}
.ls7_c00143{letter-spacing:16.200000px;}
.ls3_c00143{letter-spacing:24.480000px;}
.lsa_c00143{letter-spacing:34.560000px;}
.ls1_c00143{letter-spacing:282.960000px;}
.ls0_c00143{letter-spacing:319.518000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00143{word-spacing:-18.144000px;}
.ws4_c00143{word-spacing:-18.072000px;}
.ws3_c00143{word-spacing:-18.000000px;}
.ws0_c00143{word-spacing:-17.640000px;}
.ws2_c00143{word-spacing:-12.161520px;}
.ws5_c00143{word-spacing:-9.720000px;}
.ws21_c00143{word-spacing:-0.360000px;}
.ws7_c00143{word-spacing:-0.162000px;}
.ws11_c00143{word-spacing:-0.144000px;}
.wse_c00143{word-spacing:-0.072000px;}
.ws31_c00143{word-spacing:-0.060120px;}
.ws6_c00143{word-spacing:0.000000px;}
.wsf_c00143{word-spacing:0.072000px;}
.wsb_c00143{word-spacing:0.288000px;}
.ws18_c00143{word-spacing:0.360000px;}
.wsd_c00143{word-spacing:0.648000px;}
.ws26_c00143{word-spacing:1.080000px;}
.ws17_c00143{word-spacing:1.656000px;}
.ws16_c00143{word-spacing:2.088000px;}
.wsc_c00143{word-spacing:3.960000px;}
.ws15_c00143{word-spacing:6.120000px;}
.ws30_c00143{word-spacing:6.252480px;}
.ws24_c00143{word-spacing:7.128000px;}
.ws25_c00143{word-spacing:7.200000px;}
.ws1f_c00143{word-spacing:7.920000px;}
.ws20_c00143{word-spacing:8.280000px;}
.ws2d_c00143{word-spacing:11.520000px;}
.ws22_c00143{word-spacing:11.808000px;}
.ws2f_c00143{word-spacing:13.226400px;}
.ws19_c00143{word-spacing:13.968000px;}
.ws1a_c00143{word-spacing:14.040000px;}
.ws1b_c00143{word-spacing:14.328000px;}
.ws27_c00143{word-spacing:15.480000px;}
.ws1e_c00143{word-spacing:15.840000px;}
.ws1c_c00143{word-spacing:16.128000px;}
.ws1d_c00143{word-spacing:16.200000px;}
.ws8_c00143{word-spacing:16.920000px;}
.ws2e_c00143{word-spacing:22.680000px;}
.ws9_c00143{word-spacing:23.256000px;}
.wsa_c00143{word-spacing:23.328000px;}
.ws23_c00143{word-spacing:23.400000px;}
.ws12_c00143{word-spacing:24.480000px;}
.ws10_c00143{word-spacing:25.920000px;}
.ws14_c00143{word-spacing:29.448000px;}
.ws13_c00143{word-spacing:29.520000px;}
.ws28_c00143{word-spacing:34.056000px;}
.ws2a_c00143{word-spacing:34.488000px;}
.ws29_c00143{word-spacing:34.560000px;}
.ws2c_c00143{word-spacing:36.648000px;}
.ws2b_c00143{word-spacing:36.720000px;}
._1_c00143{margin-left:-1.152000px;}
._0_c00143{width:1.008000px;}
._3_c00143{width:2.808000px;}
._4_c00143{width:6.229440px;}
._6_c00143{width:7.848000px;}
._7_c00143{width:11.952000px;}
._5_c00143{width:13.752000px;}
._2_c00143{width:26.280000px;}
._8_c00143{width:36.864000px;}
.fc0_c00143{color:rgb(0,0,0);}
.fs3_c00143{font-size:38.880000px;}
.fs2_c00143{font-size:47.880000px;}
.fs0_c00143{font-size:54.000000px;}
.fs4_c00143{font-size:60.120000px;}
.fs1_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y25_c00143{bottom:57.240000px;}
.y24_c00143{bottom:115.020000px;}
.y23_c00143{bottom:126.981000px;}
.y22_c00143{bottom:144.265500px;}
.y21_c00143{bottom:166.770000px;}
.y26_c00143{bottom:179.460000px;}
.y20_c00143{bottom:241.020000px;}
.y1f_c00143{bottom:272.070000px;}
.y1e_c00143{bottom:303.120000px;}
.y1d_c00143{bottom:334.170000px;}
.y1c_c00143{bottom:365.220000px;}
.y1b_c00143{bottom:396.270000px;}
.y1a_c00143{bottom:427.320000px;}
.y19_c00143{bottom:458.370000px;}
.y18_c00143{bottom:489.420000px;}
.y17_c00143{bottom:520.470000px;}
.y16_c00143{bottom:551.520000px;}
.y15_c00143{bottom:582.570000px;}
.y14_c00143{bottom:613.620000px;}
.y13_c00143{bottom:644.670000px;}
.y12_c00143{bottom:675.720000px;}
.y11_c00143{bottom:706.770000px;}
.y10_c00143{bottom:737.820000px;}
.yf_c00143{bottom:768.870000px;}
.ye_c00143{bottom:799.920000px;}
.yd_c00143{bottom:830.970000px;}
.yc_c00143{bottom:861.930000px;}
.yb_c00143{bottom:892.980000px;}
.ya_c00143{bottom:924.030000px;}
.y9_c00143{bottom:955.080000px;}
.y8_c00143{bottom:986.130000px;}
.y7_c00143{bottom:1017.180000px;}
.y6_c00143{bottom:1048.230000px;}
.y5_c00143{bottom:1079.280000px;}
.y4_c00143{bottom:1131.030000px;}
.y3_c00143{bottom:1150.915500px;}
.y2_c00143{bottom:1166.400000px;}
.y1_c00143{bottom:1197.450000px;}
.h5_c00143{height:38.158594px;}
.h2_c00143{height:52.998047px;}
.h6_c00143{height:59.004492px;}
.h3_c00143{height:70.664062px;}
.h4_c00143{height:73.991602px;}
.h0_c00143{height:1262.880000px;}
.h1_c00143{height:1263.000000px;}
.w0_c00143{width:893.070000px;}
.w1_c00143{width:893.250000px;}
.x0_c00143{left:0.000000px;}
.x2_c00143{left:127.620000px;}
.x3_c00143{left:202.860000px;}
.x1_c00143{left:446.580000px;}
@media print{
.v2_c00143{vertical-align:-73.600000pt;}
.v1_c00143{vertical-align:-55.056000pt;}
.v4_c00143{vertical-align:-18.560000pt;}
.v0_c00143{vertical-align:0.000000pt;}
.v3_c00143{vertical-align:24.000000pt;}
.lsf_c00143{letter-spacing:-0.320000pt;}
.lse_c00143{letter-spacing:-0.256000pt;}
.ls10_c00143{letter-spacing:-0.064000pt;}
.ls12_c00143{letter-spacing:-0.053440pt;}
.lsd_c00143{letter-spacing:0.000000pt;}
.ls4_c00143{letter-spacing:0.064000pt;}
.lsc_c00143{letter-spacing:0.106880pt;}
.ls6_c00143{letter-spacing:0.128000pt;}
.ls11_c00143{letter-spacing:0.160320pt;}
.ls5_c00143{letter-spacing:0.170240pt;}
.ls9_c00143{letter-spacing:0.320000pt;}
.ls2_c00143{letter-spacing:0.640000pt;}
.ls8_c00143{letter-spacing:7.046400pt;}
.lsb_c00143{letter-spacing:11.917120pt;}
.ls7_c00143{letter-spacing:14.400000pt;}
.ls3_c00143{letter-spacing:21.760000pt;}
.lsa_c00143{letter-spacing:30.720000pt;}
.ls1_c00143{letter-spacing:251.520000pt;}
.ls0_c00143{letter-spacing:284.016000pt;}
.ws1_c00143{word-spacing:-16.128000pt;}
.ws4_c00143{word-spacing:-16.064000pt;}
.ws3_c00143{word-spacing:-16.000000pt;}
.ws0_c00143{word-spacing:-15.680000pt;}
.ws2_c00143{word-spacing:-10.810240pt;}
.ws5_c00143{word-spacing:-8.640000pt;}
.ws21_c00143{word-spacing:-0.320000pt;}
.ws7_c00143{word-spacing:-0.144000pt;}
.ws11_c00143{word-spacing:-0.128000pt;}
.wse_c00143{word-spacing:-0.064000pt;}
.ws31_c00143{word-spacing:-0.053440pt;}
.ws6_c00143{word-spacing:0.000000pt;}
.wsf_c00143{word-spacing:0.064000pt;}
.wsb_c00143{word-spacing:0.256000pt;}
.ws18_c00143{word-spacing:0.320000pt;}
.wsd_c00143{word-spacing:0.576000pt;}
.ws26_c00143{word-spacing:0.960000pt;}
.ws17_c00143{word-spacing:1.472000pt;}
.ws16_c00143{word-spacing:1.856000pt;}
.wsc_c00143{word-spacing:3.520000pt;}
.ws15_c00143{word-spacing:5.440000pt;}
.ws30_c00143{word-spacing:5.557760pt;}
.ws24_c00143{word-spacing:6.336000pt;}
.ws25_c00143{word-spacing:6.400000pt;}
.ws1f_c00143{word-spacing:7.040000pt;}
.ws20_c00143{word-spacing:7.360000pt;}
.ws2d_c00143{word-spacing:10.240000pt;}
.ws22_c00143{word-spacing:10.496000pt;}
.ws2f_c00143{word-spacing:11.756800pt;}
.ws19_c00143{word-spacing:12.416000pt;}
.ws1a_c00143{word-spacing:12.480000pt;}
.ws1b_c00143{word-spacing:12.736000pt;}
.ws27_c00143{word-spacing:13.760000pt;}
.ws1e_c00143{word-spacing:14.080000pt;}
.ws1c_c00143{word-spacing:14.336000pt;}
.ws1d_c00143{word-spacing:14.400000pt;}
.ws8_c00143{word-spacing:15.040000pt;}
.ws2e_c00143{word-spacing:20.160000pt;}
.ws9_c00143{word-spacing:20.672000pt;}
.wsa_c00143{word-spacing:20.736000pt;}
.ws23_c00143{word-spacing:20.800000pt;}
.ws12_c00143{word-spacing:21.760000pt;}
.ws10_c00143{word-spacing:23.040000pt;}
.ws14_c00143{word-spacing:26.176000pt;}
.ws13_c00143{word-spacing:26.240000pt;}
.ws28_c00143{word-spacing:30.272000pt;}
.ws2a_c00143{word-spacing:30.656000pt;}
.ws29_c00143{word-spacing:30.720000pt;}
.ws2c_c00143{word-spacing:32.576000pt;}
.ws2b_c00143{word-spacing:32.640000pt;}
._1_c00143{margin-left:-1.024000pt;}
._0_c00143{width:0.896000pt;}
._3_c00143{width:2.496000pt;}
._4_c00143{width:5.537280pt;}
._6_c00143{width:6.976000pt;}
._7_c00143{width:10.624000pt;}
._5_c00143{width:12.224000pt;}
._2_c00143{width:23.360000pt;}
._8_c00143{width:32.768000pt;}
.fs3_c00143{font-size:34.560000pt;}
.fs2_c00143{font-size:42.560000pt;}
.fs0_c00143{font-size:48.000000pt;}
.fs4_c00143{font-size:53.440000pt;}
.fs1_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y25_c00143{bottom:50.880000pt;}
.y24_c00143{bottom:102.240000pt;}
.y23_c00143{bottom:112.872000pt;}
.y22_c00143{bottom:128.236000pt;}
.y21_c00143{bottom:148.240000pt;}
.y26_c00143{bottom:159.520000pt;}
.y20_c00143{bottom:214.240000pt;}
.y1f_c00143{bottom:241.840000pt;}
.y1e_c00143{bottom:269.440000pt;}
.y1d_c00143{bottom:297.040000pt;}
.y1c_c00143{bottom:324.640000pt;}
.y1b_c00143{bottom:352.240000pt;}
.y1a_c00143{bottom:379.840000pt;}
.y19_c00143{bottom:407.440000pt;}
.y18_c00143{bottom:435.040000pt;}
.y17_c00143{bottom:462.640000pt;}
.y16_c00143{bottom:490.240000pt;}
.y15_c00143{bottom:517.840000pt;}
.y14_c00143{bottom:545.440000pt;}
.y13_c00143{bottom:573.040000pt;}
.y12_c00143{bottom:600.640000pt;}
.y11_c00143{bottom:628.240000pt;}
.y10_c00143{bottom:655.840000pt;}
.yf_c00143{bottom:683.440000pt;}
.ye_c00143{bottom:711.040000pt;}
.yd_c00143{bottom:738.640000pt;}
.yc_c00143{bottom:766.160000pt;}
.yb_c00143{bottom:793.760000pt;}
.ya_c00143{bottom:821.360000pt;}
.y9_c00143{bottom:848.960000pt;}
.y8_c00143{bottom:876.560000pt;}
.y7_c00143{bottom:904.160000pt;}
.y6_c00143{bottom:931.760000pt;}
.y5_c00143{bottom:959.360000pt;}
.y4_c00143{bottom:1005.360000pt;}
.y3_c00143{bottom:1023.036000pt;}
.y2_c00143{bottom:1036.800000pt;}
.y1_c00143{bottom:1064.400000pt;}
.h5_c00143{height:33.918750pt;}
.h2_c00143{height:47.109375pt;}
.h6_c00143{height:52.448437pt;}
.h3_c00143{height:62.812500pt;}
.h4_c00143{height:65.770313pt;}
.h0_c00143{height:1122.560000pt;}
.h1_c00143{height:1122.666667pt;}
.w0_c00143{width:793.840000pt;}
.w1_c00143{width:794.000000pt;}
.x0_c00143{left:0.000000pt;}
.x2_c00143{left:113.440000pt;}
.x3_c00143{left:180.320000pt;}
.x1_c00143{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8038fcb735b7d8bd053ba4e1.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00144{letter-spacing:-0.504000px;}
.ls7_c00144{letter-spacing:-0.108000px;}
.ls9_c00144{letter-spacing:-0.072000px;}
.ls6_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:0.072000px;}
.ls8_c00144{letter-spacing:0.144000px;}
.ls3_c00144{letter-spacing:3.960000px;}
.ls2_c00144{letter-spacing:3.967200px;}
.ls5_c00144{letter-spacing:4.680000px;}
.ls1_c00144{letter-spacing:6.840000px;}
.ls4_c00144{letter-spacing:18.360000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00144{word-spacing:-18.072000px;}
.ws2_c00144{word-spacing:-18.000000px;}
.ws0_c00144{word-spacing:-17.928000px;}
.ws3_c00144{word-spacing:-17.496000px;}
.wsf_c00144{word-spacing:-0.144000px;}
.ws7_c00144{word-spacing:-0.072000px;}
.ws4_c00144{word-spacing:0.000000px;}
.ws6_c00144{word-spacing:0.162000px;}
.ws5_c00144{word-spacing:0.270000px;}
.ws21_c00144{word-spacing:0.936000px;}
.wsc_c00144{word-spacing:1.008000px;}
.wsb_c00144{word-spacing:1.080000px;}
.ws22_c00144{word-spacing:1.368000px;}
.ws1b_c00144{word-spacing:2.088000px;}
.ws18_c00144{word-spacing:2.160000px;}
.ws26_c00144{word-spacing:2.880000px;}
.ws24_c00144{word-spacing:3.168000px;}
.ws25_c00144{word-spacing:3.240000px;}
.ws16_c00144{word-spacing:3.888000px;}
.ws17_c00144{word-spacing:3.960000px;}
.ws14_c00144{word-spacing:4.248000px;}
.ws13_c00144{word-spacing:4.608000px;}
.ws23_c00144{word-spacing:4.680000px;}
.wse_c00144{word-spacing:5.688000px;}
.wsd_c00144{word-spacing:5.760000px;}
.ws9_c00144{word-spacing:6.408000px;}
.ws1e_c00144{word-spacing:6.480000px;}
.wsa_c00144{word-spacing:6.768000px;}
.ws8_c00144{word-spacing:6.840000px;}
.ws1d_c00144{word-spacing:7.128000px;}
.ws15_c00144{word-spacing:8.280000px;}
.ws1c_c00144{word-spacing:8.640000px;}
.ws28_c00144{word-spacing:14.400000px;}
.ws27_c00144{word-spacing:14.688000px;}
.ws10_c00144{word-spacing:15.768000px;}
.ws11_c00144{word-spacing:15.840000px;}
.ws1a_c00144{word-spacing:16.848000px;}
.ws19_c00144{word-spacing:16.920000px;}
.ws20_c00144{word-spacing:17.928000px;}
.ws1f_c00144{word-spacing:18.360000px;}
.ws12_c00144{word-spacing:20.160000px;}
._1_c00144{margin-left:-1.058400px;}
._0_c00144{width:1.220400px;}
._7_c00144{width:2.350800px;}
._6_c00144{width:4.107600px;}
._2_c00144{width:6.264000px;}
._3_c00144{width:7.272000px;}
._8_c00144{width:14.904000px;}
._4_c00144{width:16.128000px;}
._5_c00144{width:20.016000px;}
.fc0_c00144{color:rgb(0,0,0);}
.fs0_c00144{font-size:54.000000px;}
.fs1_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y27_c00144{bottom:57.240000px;}
.y26_c00144{bottom:116.820000px;}
.y25_c00144{bottom:147.870000px;}
.y24_c00144{bottom:178.920000px;}
.y23_c00144{bottom:209.970000px;}
.y22_c00144{bottom:241.020000px;}
.y21_c00144{bottom:272.070000px;}
.y20_c00144{bottom:303.120000px;}
.y1f_c00144{bottom:334.170000px;}
.y1e_c00144{bottom:365.220000px;}
.y1d_c00144{bottom:396.270000px;}
.y1c_c00144{bottom:427.320000px;}
.y1b_c00144{bottom:458.370000px;}
.y1a_c00144{bottom:489.420000px;}
.y19_c00144{bottom:520.470000px;}
.y18_c00144{bottom:551.520000px;}
.y17_c00144{bottom:582.570000px;}
.y16_c00144{bottom:613.620000px;}
.y15_c00144{bottom:644.670000px;}
.y14_c00144{bottom:675.720000px;}
.y13_c00144{bottom:706.770000px;}
.y12_c00144{bottom:737.820000px;}
.y11_c00144{bottom:768.870000px;}
.y10_c00144{bottom:799.920000px;}
.yf_c00144{bottom:830.970000px;}
.ye_c00144{bottom:861.930000px;}
.yd_c00144{bottom:892.980000px;}
.yc_c00144{bottom:924.030000px;}
.yb_c00144{bottom:955.080000px;}
.ya_c00144{bottom:986.130000px;}
.y9_c00144{bottom:1017.180000px;}
.y8_c00144{bottom:1048.230000px;}
.y7_c00144{bottom:1079.280000px;}
.y6_c00144{bottom:1110.330000px;}
.y5_c00144{bottom:1131.030000px;}
.y4_c00144{bottom:1150.920000px;}
.y3_c00144{bottom:1166.404500px;}
.y2_c00144{bottom:1181.970000px;}
.y1_c00144{bottom:1197.450000px;}
.h3_c00144{height:52.971680px;}
.h2_c00144{height:52.998047px;}
.h4_c00144{height:70.664062px;}
.h0_c00144{height:1262.880000px;}
.h1_c00144{height:1263.000000px;}
.w0_c00144{width:893.070000px;}
.w1_c00144{width:893.250000px;}
.x0_c00144{left:0.000000px;}
.x3_c00144{left:127.620000px;}
.x2_c00144{left:425.160000px;}
.x1_c00144{left:446.580000px;}
.x4_c00144{left:738.540000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.lsa_c00144{letter-spacing:-0.448000pt;}
.ls7_c00144{letter-spacing:-0.096000pt;}
.ls9_c00144{letter-spacing:-0.064000pt;}
.ls6_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:0.064000pt;}
.ls8_c00144{letter-spacing:0.128000pt;}
.ls3_c00144{letter-spacing:3.520000pt;}
.ls2_c00144{letter-spacing:3.526400pt;}
.ls5_c00144{letter-spacing:4.160000pt;}
.ls1_c00144{letter-spacing:6.080000pt;}
.ls4_c00144{letter-spacing:16.320000pt;}
.ws1_c00144{word-spacing:-16.064000pt;}
.ws2_c00144{word-spacing:-16.000000pt;}
.ws0_c00144{word-spacing:-15.936000pt;}
.ws3_c00144{word-spacing:-15.552000pt;}
.wsf_c00144{word-spacing:-0.128000pt;}
.ws7_c00144{word-spacing:-0.064000pt;}
.ws4_c00144{word-spacing:0.000000pt;}
.ws6_c00144{word-spacing:0.144000pt;}
.ws5_c00144{word-spacing:0.240000pt;}
.ws21_c00144{word-spacing:0.832000pt;}
.wsc_c00144{word-spacing:0.896000pt;}
.wsb_c00144{word-spacing:0.960000pt;}
.ws22_c00144{word-spacing:1.216000pt;}
.ws1b_c00144{word-spacing:1.856000pt;}
.ws18_c00144{word-spacing:1.920000pt;}
.ws26_c00144{word-spacing:2.560000pt;}
.ws24_c00144{word-spacing:2.816000pt;}
.ws25_c00144{word-spacing:2.880000pt;}
.ws16_c00144{word-spacing:3.456000pt;}
.ws17_c00144{word-spacing:3.520000pt;}
.ws14_c00144{word-spacing:3.776000pt;}
.ws13_c00144{word-spacing:4.096000pt;}
.ws23_c00144{word-spacing:4.160000pt;}
.wse_c00144{word-spacing:5.056000pt;}
.wsd_c00144{word-spacing:5.120000pt;}
.ws9_c00144{word-spacing:5.696000pt;}
.ws1e_c00144{word-spacing:5.760000pt;}
.wsa_c00144{word-spacing:6.016000pt;}
.ws8_c00144{word-spacing:6.080000pt;}
.ws1d_c00144{word-spacing:6.336000pt;}
.ws15_c00144{word-spacing:7.360000pt;}
.ws1c_c00144{word-spacing:7.680000pt;}
.ws28_c00144{word-spacing:12.800000pt;}
.ws27_c00144{word-spacing:13.056000pt;}
.ws10_c00144{word-spacing:14.016000pt;}
.ws11_c00144{word-spacing:14.080000pt;}
.ws1a_c00144{word-spacing:14.976000pt;}
.ws19_c00144{word-spacing:15.040000pt;}
.ws20_c00144{word-spacing:15.936000pt;}
.ws1f_c00144{word-spacing:16.320000pt;}
.ws12_c00144{word-spacing:17.920000pt;}
._1_c00144{margin-left:-0.940800pt;}
._0_c00144{width:1.084800pt;}
._7_c00144{width:2.089600pt;}
._6_c00144{width:3.651200pt;}
._2_c00144{width:5.568000pt;}
._3_c00144{width:6.464000pt;}
._8_c00144{width:13.248000pt;}
._4_c00144{width:14.336000pt;}
._5_c00144{width:17.792000pt;}
.fs0_c00144{font-size:48.000000pt;}
.fs1_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y27_c00144{bottom:50.880000pt;}
.y26_c00144{bottom:103.840000pt;}
.y25_c00144{bottom:131.440000pt;}
.y24_c00144{bottom:159.040000pt;}
.y23_c00144{bottom:186.640000pt;}
.y22_c00144{bottom:214.240000pt;}
.y21_c00144{bottom:241.840000pt;}
.y20_c00144{bottom:269.440000pt;}
.y1f_c00144{bottom:297.040000pt;}
.y1e_c00144{bottom:324.640000pt;}
.y1d_c00144{bottom:352.240000pt;}
.y1c_c00144{bottom:379.840000pt;}
.y1b_c00144{bottom:407.440000pt;}
.y1a_c00144{bottom:435.040000pt;}
.y19_c00144{bottom:462.640000pt;}
.y18_c00144{bottom:490.240000pt;}
.y17_c00144{bottom:517.840000pt;}
.y16_c00144{bottom:545.440000pt;}
.y15_c00144{bottom:573.040000pt;}
.y14_c00144{bottom:600.640000pt;}
.y13_c00144{bottom:628.240000pt;}
.y12_c00144{bottom:655.840000pt;}
.y11_c00144{bottom:683.440000pt;}
.y10_c00144{bottom:711.040000pt;}
.yf_c00144{bottom:738.640000pt;}
.ye_c00144{bottom:766.160000pt;}
.yd_c00144{bottom:793.760000pt;}
.yc_c00144{bottom:821.360000pt;}
.yb_c00144{bottom:848.960000pt;}
.ya_c00144{bottom:876.560000pt;}
.y9_c00144{bottom:904.160000pt;}
.y8_c00144{bottom:931.760000pt;}
.y7_c00144{bottom:959.360000pt;}
.y6_c00144{bottom:986.960000pt;}
.y5_c00144{bottom:1005.360000pt;}
.y4_c00144{bottom:1023.040000pt;}
.y3_c00144{bottom:1036.804000pt;}
.y2_c00144{bottom:1050.640000pt;}
.y1_c00144{bottom:1064.400000pt;}
.h3_c00144{height:47.085938pt;}
.h2_c00144{height:47.109375pt;}
.h4_c00144{height:62.812500pt;}
.h0_c00144{height:1122.560000pt;}
.h1_c00144{height:1122.666667pt;}
.w0_c00144{width:793.840000pt;}
.w1_c00144{width:794.000000pt;}
.x0_c00144{left:0.000000pt;}
.x3_c00144{left:113.440000pt;}
.x2_c00144{left:377.920000pt;}
.x1_c00144{left:396.960000pt;}
.x4_c00144{left:656.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_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_b470eccc23ab93d1fb79c9b6.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_62e4db72ac587416e8eb0e1f.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;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_c00145;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.432129;font-style: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);}
.v1_c00145{vertical-align:-61.938000px;}
.v0_c00145{vertical-align:0.000000px;}
.ls9_c00145{letter-spacing:-0.360000px;}
.lsb_c00145{letter-spacing:-0.288000px;}
.ls8_c00145{letter-spacing:-0.144000px;}
.ls7_c00145{letter-spacing:0.000000px;}
.ls1_c00145{letter-spacing:0.072000px;}
.ls3_c00145{letter-spacing:0.144000px;}
.lsa_c00145{letter-spacing:0.504000px;}
.ls5_c00145{letter-spacing:4.680000px;}
.ls4_c00145{letter-spacing:9.000000px;}
.ls6_c00145{letter-spacing:23.040000px;}
.ls2_c00145{letter-spacing:30.744000px;}
.ls0_c00145{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00145{word-spacing:-18.072000px;}
.ws1_c00145{word-spacing:-18.000000px;}
.ws0_c00145{word-spacing:-17.856000px;}
.ws19_c00145{word-spacing:-0.504000px;}
.ws1f_c00145{word-spacing:-0.360000px;}
.ws4_c00145{word-spacing:-0.162000px;}
.ws13_c00145{word-spacing:-0.144000px;}
.wsc_c00145{word-spacing:-0.072000px;}
.ws3_c00145{word-spacing:0.000000px;}
.ws24_c00145{word-spacing:0.288000px;}
.ws8_c00145{word-spacing:0.360000px;}
.ws25_c00145{word-spacing:0.576000px;}
.wsa_c00145{word-spacing:0.720000px;}
.ws27_c00145{word-spacing:0.936000px;}
.ws26_c00145{word-spacing:1.008000px;}
.ws1e_c00145{word-spacing:1.368000px;}
.ws1b_c00145{word-spacing:1.440000px;}
.ws2a_c00145{word-spacing:2.520000px;}
.wsd_c00145{word-spacing:2.736000px;}
.ws11_c00145{word-spacing:2.808000px;}
.wse_c00145{word-spacing:2.880000px;}
.ws12_c00145{word-spacing:3.168000px;}
.ws1c_c00145{word-spacing:4.608000px;}
.ws1d_c00145{word-spacing:4.968000px;}
.ws10_c00145{word-spacing:5.688000px;}
.ws5_c00145{word-spacing:7.200000px;}
.ws9_c00145{word-spacing:7.416000px;}
.ws7_c00145{word-spacing:7.488000px;}
.ws6_c00145{word-spacing:7.560000px;}
.ws18_c00145{word-spacing:8.640000px;}
.ws16_c00145{word-spacing:8.928000px;}
.ws15_c00145{word-spacing:9.000000px;}
.ws17_c00145{word-spacing:10.368000px;}
.ws23_c00145{word-spacing:10.440000px;}
.ws22_c00145{word-spacing:10.728000px;}
.ws28_c00145{word-spacing:11.808000px;}
.ws29_c00145{word-spacing:11.880000px;}
.wsb_c00145{word-spacing:17.640000px;}
.wsf_c00145{word-spacing:19.800000px;}
.ws1a_c00145{word-spacing:20.448000px;}
.ws14_c00145{word-spacing:21.888000px;}
.ws20_c00145{word-spacing:22.968000px;}
.ws21_c00145{word-spacing:23.040000px;}
._1_c00145{margin-left:-1.080000px;}
._0_c00145{width:1.008000px;}
._2_c00145{width:7.776000px;}
._3_c00145{width:10.944000px;}
.fc0_c00145{color:rgb(0,0,0);}
.fs0_c00145{font-size:54.000000px;}
.fs1_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y25_c00145{bottom:57.240000px;}
.y24_c00145{bottom:147.870000px;}
.y23_c00145{bottom:178.920000px;}
.y22_c00145{bottom:209.970000px;}
.y21_c00145{bottom:241.020000px;}
.y20_c00145{bottom:272.070000px;}
.y1f_c00145{bottom:303.120000px;}
.y1e_c00145{bottom:334.170000px;}
.y1d_c00145{bottom:365.220000px;}
.y1c_c00145{bottom:396.270000px;}
.y1b_c00145{bottom:427.320000px;}
.y1a_c00145{bottom:458.370000px;}
.y19_c00145{bottom:489.420000px;}
.y18_c00145{bottom:520.470000px;}
.y17_c00145{bottom:551.520000px;}
.y16_c00145{bottom:582.570000px;}
.y15_c00145{bottom:613.620000px;}
.y14_c00145{bottom:644.670000px;}
.y13_c00145{bottom:675.720000px;}
.y12_c00145{bottom:706.770000px;}
.y11_c00145{bottom:737.820000px;}
.y10_c00145{bottom:768.870000px;}
.yf_c00145{bottom:799.920000px;}
.ye_c00145{bottom:830.970000px;}
.yd_c00145{bottom:861.930000px;}
.yc_c00145{bottom:892.980000px;}
.yb_c00145{bottom:924.030000px;}
.ya_c00145{bottom:955.080000px;}
.y9_c00145{bottom:986.130000px;}
.y8_c00145{bottom:1017.180000px;}
.y7_c00145{bottom:1048.230000px;}
.y6_c00145{bottom:1079.280000px;}
.y5_c00145{bottom:1110.330000px;}
.y4_c00145{bottom:1131.030000px;}
.y3_c00145{bottom:1150.915500px;}
.y2_c00145{bottom:1166.400000px;}
.y1_c00145{bottom:1197.450000px;}
.h2_c00145{height:52.998047px;}
.h3_c00145{height:70.664062px;}
.h4_c00145{height:75.093750px;}
.h0_c00145{height:1262.880000px;}
.h1_c00145{height:1263.000000px;}
.w0_c00145{width:893.070000px;}
.w1_c00145{width:893.250000px;}
.x0_c00145{left:0.000000px;}
.x2_c00145{left:127.620000px;}
.x3_c00145{left:175.860000px;}
.x4_c00145{left:202.860000px;}
.x1_c00145{left:446.580000px;}
@media print{
.v1_c00145{vertical-align:-55.056000pt;}
.v0_c00145{vertical-align:0.000000pt;}
.ls9_c00145{letter-spacing:-0.320000pt;}
.lsb_c00145{letter-spacing:-0.256000pt;}
.ls8_c00145{letter-spacing:-0.128000pt;}
.ls7_c00145{letter-spacing:0.000000pt;}
.ls1_c00145{letter-spacing:0.064000pt;}
.ls3_c00145{letter-spacing:0.128000pt;}
.lsa_c00145{letter-spacing:0.448000pt;}
.ls5_c00145{letter-spacing:4.160000pt;}
.ls4_c00145{letter-spacing:8.000000pt;}
.ls6_c00145{letter-spacing:20.480000pt;}
.ls2_c00145{letter-spacing:27.328000pt;}
.ls0_c00145{letter-spacing:284.016000pt;}
.ws2_c00145{word-spacing:-16.064000pt;}
.ws1_c00145{word-spacing:-16.000000pt;}
.ws0_c00145{word-spacing:-15.872000pt;}
.ws19_c00145{word-spacing:-0.448000pt;}
.ws1f_c00145{word-spacing:-0.320000pt;}
.ws4_c00145{word-spacing:-0.144000pt;}
.ws13_c00145{word-spacing:-0.128000pt;}
.wsc_c00145{word-spacing:-0.064000pt;}
.ws3_c00145{word-spacing:0.000000pt;}
.ws24_c00145{word-spacing:0.256000pt;}
.ws8_c00145{word-spacing:0.320000pt;}
.ws25_c00145{word-spacing:0.512000pt;}
.wsa_c00145{word-spacing:0.640000pt;}
.ws27_c00145{word-spacing:0.832000pt;}
.ws26_c00145{word-spacing:0.896000pt;}
.ws1e_c00145{word-spacing:1.216000pt;}
.ws1b_c00145{word-spacing:1.280000pt;}
.ws2a_c00145{word-spacing:2.240000pt;}
.wsd_c00145{word-spacing:2.432000pt;}
.ws11_c00145{word-spacing:2.496000pt;}
.wse_c00145{word-spacing:2.560000pt;}
.ws12_c00145{word-spacing:2.816000pt;}
.ws1c_c00145{word-spacing:4.096000pt;}
.ws1d_c00145{word-spacing:4.416000pt;}
.ws10_c00145{word-spacing:5.056000pt;}
.ws5_c00145{word-spacing:6.400000pt;}
.ws9_c00145{word-spacing:6.592000pt;}
.ws7_c00145{word-spacing:6.656000pt;}
.ws6_c00145{word-spacing:6.720000pt;}
.ws18_c00145{word-spacing:7.680000pt;}
.ws16_c00145{word-spacing:7.936000pt;}
.ws15_c00145{word-spacing:8.000000pt;}
.ws17_c00145{word-spacing:9.216000pt;}
.ws23_c00145{word-spacing:9.280000pt;}
.ws22_c00145{word-spacing:9.536000pt;}
.ws28_c00145{word-spacing:10.496000pt;}
.ws29_c00145{word-spacing:10.560000pt;}
.wsb_c00145{word-spacing:15.680000pt;}
.wsf_c00145{word-spacing:17.600000pt;}
.ws1a_c00145{word-spacing:18.176000pt;}
.ws14_c00145{word-spacing:19.456000pt;}
.ws20_c00145{word-spacing:20.416000pt;}
.ws21_c00145{word-spacing:20.480000pt;}
._1_c00145{margin-left:-0.960000pt;}
._0_c00145{width:0.896000pt;}
._2_c00145{width:6.912000pt;}
._3_c00145{width:9.728000pt;}
.fs0_c00145{font-size:48.000000pt;}
.fs1_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y25_c00145{bottom:50.880000pt;}
.y24_c00145{bottom:131.440000pt;}
.y23_c00145{bottom:159.040000pt;}
.y22_c00145{bottom:186.640000pt;}
.y21_c00145{bottom:214.240000pt;}
.y20_c00145{bottom:241.840000pt;}
.y1f_c00145{bottom:269.440000pt;}
.y1e_c00145{bottom:297.040000pt;}
.y1d_c00145{bottom:324.640000pt;}
.y1c_c00145{bottom:352.240000pt;}
.y1b_c00145{bottom:379.840000pt;}
.y1a_c00145{bottom:407.440000pt;}
.y19_c00145{bottom:435.040000pt;}
.y18_c00145{bottom:462.640000pt;}
.y17_c00145{bottom:490.240000pt;}
.y16_c00145{bottom:517.840000pt;}
.y15_c00145{bottom:545.440000pt;}
.y14_c00145{bottom:573.040000pt;}
.y13_c00145{bottom:600.640000pt;}
.y12_c00145{bottom:628.240000pt;}
.y11_c00145{bottom:655.840000pt;}
.y10_c00145{bottom:683.440000pt;}
.yf_c00145{bottom:711.040000pt;}
.ye_c00145{bottom:738.640000pt;}
.yd_c00145{bottom:766.160000pt;}
.yc_c00145{bottom:793.760000pt;}
.yb_c00145{bottom:821.360000pt;}
.ya_c00145{bottom:848.960000pt;}
.y9_c00145{bottom:876.560000pt;}
.y8_c00145{bottom:904.160000pt;}
.y7_c00145{bottom:931.760000pt;}
.y6_c00145{bottom:959.360000pt;}
.y5_c00145{bottom:986.960000pt;}
.y4_c00145{bottom:1005.360000pt;}
.y3_c00145{bottom:1023.036000pt;}
.y2_c00145{bottom:1036.800000pt;}
.y1_c00145{bottom:1064.400000pt;}
.h2_c00145{height:47.109375pt;}
.h3_c00145{height:62.812500pt;}
.h4_c00145{height:66.750000pt;}
.h0_c00145{height:1122.560000pt;}
.h1_c00145{height:1122.666667pt;}
.w0_c00145{width:793.840000pt;}
.w1_c00145{width:794.000000pt;}
.x0_c00145{left:0.000000pt;}
.x2_c00145{left:113.440000pt;}
.x3_c00145{left:156.320000pt;}
.x4_c00145{left:180.320000pt;}
.x1_c00145{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e00594e751c946b6666f1904.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00146{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.m2_c00146{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00146{vertical-align:-20.880000px;}
.v0_c00146{vertical-align:0.000000px;}
.v1_c00146{vertical-align:27.000000px;}
.ls15_c00146{letter-spacing:-0.360000px;}
.ls17_c00146{letter-spacing:-0.120240px;}
.ls11_c00146{letter-spacing:-0.108000px;}
.ls14_c00146{letter-spacing:-0.072000px;}
.ls10_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.072000px;}
.ls12_c00146{letter-spacing:0.144000px;}
.ls16_c00146{letter-spacing:0.180360px;}
.lse_c00146{letter-spacing:0.191520px;}
.ls6_c00146{letter-spacing:0.216000px;}
.ls1_c00146{letter-spacing:0.288000px;}
.ls5_c00146{letter-spacing:0.360000px;}
.lsf_c00146{letter-spacing:0.420840px;}
.ls13_c00146{letter-spacing:0.432000px;}
.ls4_c00146{letter-spacing:1.728000px;}
.lsa_c00146{letter-spacing:1.800000px;}
.lsd_c00146{letter-spacing:2.520000px;}
.ls8_c00146{letter-spacing:2.880000px;}
.ls9_c00146{letter-spacing:5.040000px;}
.ls2_c00146{letter-spacing:5.112000px;}
.ls3_c00146{letter-spacing:5.472000px;}
.lsc_c00146{letter-spacing:6.840000px;}
.ls7_c00146{letter-spacing:6.984000px;}
.lsb_c00146{letter-spacing:7.920000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00146{word-spacing:-18.360000px;}
.ws0_c00146{word-spacing:-18.288000px;}
.ws2_c00146{word-spacing:-18.144000px;}
.ws5_c00146{word-spacing:-18.072000px;}
.ws3_c00146{word-spacing:-18.000000px;}
.ws4_c00146{word-spacing:-17.928000px;}
.ws6_c00146{word-spacing:-12.161520px;}
.ws7_c00146{word-spacing:-9.720000px;}
.wsc_c00146{word-spacing:-0.072000px;}
.ws35_c00146{word-spacing:-0.060120px;}
.ws8_c00146{word-spacing:0.000000px;}
.wsa_c00146{word-spacing:0.162000px;}
.ws9_c00146{word-spacing:0.270000px;}
.ws33_c00146{word-spacing:0.300600px;}
.ws22_c00146{word-spacing:0.360000px;}
.ws34_c00146{word-spacing:0.601200px;}
.wse_c00146{word-spacing:1.440000px;}
.ws28_c00146{word-spacing:1.656000px;}
.ws27_c00146{word-spacing:1.728000px;}
.ws26_c00146{word-spacing:1.800000px;}
.ws11_c00146{word-spacing:2.160000px;}
.ws19_c00146{word-spacing:2.448000px;}
.ws18_c00146{word-spacing:2.520000px;}
.ws1d_c00146{word-spacing:2.808000px;}
.ws1c_c00146{word-spacing:2.880000px;}
.ws1e_c00146{word-spacing:5.040000px;}
.wsd_c00146{word-spacing:5.184000px;}
.ws17_c00146{word-spacing:5.904000px;}
.ws2a_c00146{word-spacing:6.480000px;}
.ws1b_c00146{word-spacing:6.552000px;}
.ws1a_c00146{word-spacing:6.696000px;}
.ws2c_c00146{word-spacing:6.768000px;}
.ws2b_c00146{word-spacing:6.840000px;}
.ws29_c00146{word-spacing:7.848000px;}
.ws2e_c00146{word-spacing:9.648000px;}
.ws2d_c00146{word-spacing:9.720000px;}
.wsb_c00146{word-spacing:10.800000px;}
.ws2f_c00146{word-spacing:11.880000px;}
.ws24_c00146{word-spacing:13.968000px;}
.ws23_c00146{word-spacing:14.040000px;}
.ws10_c00146{word-spacing:14.256000px;}
.wsf_c00146{word-spacing:14.328000px;}
.ws25_c00146{word-spacing:14.400000px;}
.ws16_c00146{word-spacing:15.336000px;}
.ws14_c00146{word-spacing:15.408000px;}
.ws15_c00146{word-spacing:15.480000px;}
.ws21_c00146{word-spacing:19.728000px;}
.ws20_c00146{word-spacing:19.800000px;}
.ws12_c00146{word-spacing:21.024000px;}
.ws13_c00146{word-spacing:21.096000px;}
.ws32_c00146{word-spacing:25.128000px;}
.ws30_c00146{word-spacing:31.968000px;}
.ws31_c00146{word-spacing:32.040000px;}
.ws1f_c00146{word-spacing:37.080000px;}
._1_c00146{margin-left:-1.058400px;}
._0_c00146{width:1.220400px;}
._5_c00146{width:2.952000px;}
._3_c00146{width:6.120000px;}
._7_c00146{width:7.704000px;}
._8_c00146{width:9.576000px;}
._2_c00146{width:10.800000px;}
._4_c00146{width:14.392800px;}
._6_c00146{width:19.728000px;}
.fc0_c00146{color:rgb(0,0,0);}
.fs3_c00146{font-size:38.880000px;}
.fs2_c00146{font-size:47.880000px;}
.fs0_c00146{font-size:54.000000px;}
.fs4_c00146{font-size:60.120000px;}
.fs1_c00146{font-size:72.000000px;}
.y0_c00146{bottom:0.000000px;}
.y27_c00146{bottom:57.240000px;}
.y26_c00146{bottom:109.795680px;}
.y25_c00146{bottom:132.210000px;}
.y28_c00146{bottom:144.900000px;}
.y24_c00146{bottom:178.920000px;}
.y23_c00146{bottom:209.970000px;}
.y22_c00146{bottom:241.020000px;}
.y21_c00146{bottom:272.070000px;}
.y20_c00146{bottom:303.120000px;}
.y1f_c00146{bottom:334.170000px;}
.y1e_c00146{bottom:365.220000px;}
.y1d_c00146{bottom:396.270000px;}
.y1c_c00146{bottom:427.320000px;}
.y1b_c00146{bottom:458.370000px;}
.y1a_c00146{bottom:489.420000px;}
.y19_c00146{bottom:520.470000px;}
.y18_c00146{bottom:551.520000px;}
.y17_c00146{bottom:582.570000px;}
.y16_c00146{bottom:613.620000px;}
.y15_c00146{bottom:644.670000px;}
.y14_c00146{bottom:675.720000px;}
.y13_c00146{bottom:706.770000px;}
.y12_c00146{bottom:737.820000px;}
.y11_c00146{bottom:768.870000px;}
.y10_c00146{bottom:799.920000px;}
.yf_c00146{bottom:830.970000px;}
.ye_c00146{bottom:861.930000px;}
.yd_c00146{bottom:892.980000px;}
.yc_c00146{bottom:924.030000px;}
.yb_c00146{bottom:955.080000px;}
.ya_c00146{bottom:986.130000px;}
.y9_c00146{bottom:1017.180000px;}
.y8_c00146{bottom:1048.230000px;}
.y7_c00146{bottom:1079.280000px;}
.y6_c00146{bottom:1110.330000px;}
.y5_c00146{bottom:1131.030000px;}
.y4_c00146{bottom:1150.920000px;}
.y3_c00146{bottom:1166.404500px;}
.y2_c00146{bottom:1181.970000px;}
.y1_c00146{bottom:1197.450000px;}
.h6_c00146{height:38.158594px;}
.h3_c00146{height:52.971680px;}
.h2_c00146{height:52.998047px;}
.h7_c00146{height:59.004492px;}
.h4_c00146{height:70.664062px;}
.h5_c00146{height:73.991602px;}
.h0_c00146{height:1262.880000px;}
.h1_c00146{height:1263.000000px;}
.w0_c00146{width:893.070000px;}
.w1_c00146{width:893.250000px;}
.x0_c00146{left:0.000000px;}
.x3_c00146{left:127.620000px;}
.x4_c00146{left:130.590000px;}
.x2_c00146{left:425.160000px;}
.x1_c00146{left:446.580000px;}
.x5_c00146{left:738.540000px;}
@media print{
.v2_c00146{vertical-align:-18.560000pt;}
.v0_c00146{vertical-align:0.000000pt;}
.v1_c00146{vertical-align:24.000000pt;}
.ls15_c00146{letter-spacing:-0.320000pt;}
.ls17_c00146{letter-spacing:-0.106880pt;}
.ls11_c00146{letter-spacing:-0.096000pt;}
.ls14_c00146{letter-spacing:-0.064000pt;}
.ls10_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.064000pt;}
.ls12_c00146{letter-spacing:0.128000pt;}
.ls16_c00146{letter-spacing:0.160320pt;}
.lse_c00146{letter-spacing:0.170240pt;}
.ls6_c00146{letter-spacing:0.192000pt;}
.ls1_c00146{letter-spacing:0.256000pt;}
.ls5_c00146{letter-spacing:0.320000pt;}
.lsf_c00146{letter-spacing:0.374080pt;}
.ls13_c00146{letter-spacing:0.384000pt;}
.ls4_c00146{letter-spacing:1.536000pt;}
.lsa_c00146{letter-spacing:1.600000pt;}
.lsd_c00146{letter-spacing:2.240000pt;}
.ls8_c00146{letter-spacing:2.560000pt;}
.ls9_c00146{letter-spacing:4.480000pt;}
.ls2_c00146{letter-spacing:4.544000pt;}
.ls3_c00146{letter-spacing:4.864000pt;}
.lsc_c00146{letter-spacing:6.080000pt;}
.ls7_c00146{letter-spacing:6.208000pt;}
.lsb_c00146{letter-spacing:7.040000pt;}
.ws1_c00146{word-spacing:-16.320000pt;}
.ws0_c00146{word-spacing:-16.256000pt;}
.ws2_c00146{word-spacing:-16.128000pt;}
.ws5_c00146{word-spacing:-16.064000pt;}
.ws3_c00146{word-spacing:-16.000000pt;}
.ws4_c00146{word-spacing:-15.936000pt;}
.ws6_c00146{word-spacing:-10.810240pt;}
.ws7_c00146{word-spacing:-8.640000pt;}
.wsc_c00146{word-spacing:-0.064000pt;}
.ws35_c00146{word-spacing:-0.053440pt;}
.ws8_c00146{word-spacing:0.000000pt;}
.wsa_c00146{word-spacing:0.144000pt;}
.ws9_c00146{word-spacing:0.240000pt;}
.ws33_c00146{word-spacing:0.267200pt;}
.ws22_c00146{word-spacing:0.320000pt;}
.ws34_c00146{word-spacing:0.534400pt;}
.wse_c00146{word-spacing:1.280000pt;}
.ws28_c00146{word-spacing:1.472000pt;}
.ws27_c00146{word-spacing:1.536000pt;}
.ws26_c00146{word-spacing:1.600000pt;}
.ws11_c00146{word-spacing:1.920000pt;}
.ws19_c00146{word-spacing:2.176000pt;}
.ws18_c00146{word-spacing:2.240000pt;}
.ws1d_c00146{word-spacing:2.496000pt;}
.ws1c_c00146{word-spacing:2.560000pt;}
.ws1e_c00146{word-spacing:4.480000pt;}
.wsd_c00146{word-spacing:4.608000pt;}
.ws17_c00146{word-spacing:5.248000pt;}
.ws2a_c00146{word-spacing:5.760000pt;}
.ws1b_c00146{word-spacing:5.824000pt;}
.ws1a_c00146{word-spacing:5.952000pt;}
.ws2c_c00146{word-spacing:6.016000pt;}
.ws2b_c00146{word-spacing:6.080000pt;}
.ws29_c00146{word-spacing:6.976000pt;}
.ws2e_c00146{word-spacing:8.576000pt;}
.ws2d_c00146{word-spacing:8.640000pt;}
.wsb_c00146{word-spacing:9.600000pt;}
.ws2f_c00146{word-spacing:10.560000pt;}
.ws24_c00146{word-spacing:12.416000pt;}
.ws23_c00146{word-spacing:12.480000pt;}
.ws10_c00146{word-spacing:12.672000pt;}
.wsf_c00146{word-spacing:12.736000pt;}
.ws25_c00146{word-spacing:12.800000pt;}
.ws16_c00146{word-spacing:13.632000pt;}
.ws14_c00146{word-spacing:13.696000pt;}
.ws15_c00146{word-spacing:13.760000pt;}
.ws21_c00146{word-spacing:17.536000pt;}
.ws20_c00146{word-spacing:17.600000pt;}
.ws12_c00146{word-spacing:18.688000pt;}
.ws13_c00146{word-spacing:18.752000pt;}
.ws32_c00146{word-spacing:22.336000pt;}
.ws30_c00146{word-spacing:28.416000pt;}
.ws31_c00146{word-spacing:28.480000pt;}
.ws1f_c00146{word-spacing:32.960000pt;}
._1_c00146{margin-left:-0.940800pt;}
._0_c00146{width:1.084800pt;}
._5_c00146{width:2.624000pt;}
._3_c00146{width:5.440000pt;}
._7_c00146{width:6.848000pt;}
._8_c00146{width:8.512000pt;}
._2_c00146{width:9.600000pt;}
._4_c00146{width:12.793600pt;}
._6_c00146{width:17.536000pt;}
.fs3_c00146{font-size:34.560000pt;}
.fs2_c00146{font-size:42.560000pt;}
.fs0_c00146{font-size:48.000000pt;}
.fs4_c00146{font-size:53.440000pt;}
.fs1_c00146{font-size:64.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.y27_c00146{bottom:50.880000pt;}
.y26_c00146{bottom:97.596160pt;}
.y25_c00146{bottom:117.520000pt;}
.y28_c00146{bottom:128.800000pt;}
.y24_c00146{bottom:159.040000pt;}
.y23_c00146{bottom:186.640000pt;}
.y22_c00146{bottom:214.240000pt;}
.y21_c00146{bottom:241.840000pt;}
.y20_c00146{bottom:269.440000pt;}
.y1f_c00146{bottom:297.040000pt;}
.y1e_c00146{bottom:324.640000pt;}
.y1d_c00146{bottom:352.240000pt;}
.y1c_c00146{bottom:379.840000pt;}
.y1b_c00146{bottom:407.440000pt;}
.y1a_c00146{bottom:435.040000pt;}
.y19_c00146{bottom:462.640000pt;}
.y18_c00146{bottom:490.240000pt;}
.y17_c00146{bottom:517.840000pt;}
.y16_c00146{bottom:545.440000pt;}
.y15_c00146{bottom:573.040000pt;}
.y14_c00146{bottom:600.640000pt;}
.y13_c00146{bottom:628.240000pt;}
.y12_c00146{bottom:655.840000pt;}
.y11_c00146{bottom:683.440000pt;}
.y10_c00146{bottom:711.040000pt;}
.yf_c00146{bottom:738.640000pt;}
.ye_c00146{bottom:766.160000pt;}
.yd_c00146{bottom:793.760000pt;}
.yc_c00146{bottom:821.360000pt;}
.yb_c00146{bottom:848.960000pt;}
.ya_c00146{bottom:876.560000pt;}
.y9_c00146{bottom:904.160000pt;}
.y8_c00146{bottom:931.760000pt;}
.y7_c00146{bottom:959.360000pt;}
.y6_c00146{bottom:986.960000pt;}
.y5_c00146{bottom:1005.360000pt;}
.y4_c00146{bottom:1023.040000pt;}
.y3_c00146{bottom:1036.804000pt;}
.y2_c00146{bottom:1050.640000pt;}
.y1_c00146{bottom:1064.400000pt;}
.h6_c00146{height:33.918750pt;}
.h3_c00146{height:47.085938pt;}
.h2_c00146{height:47.109375pt;}
.h7_c00146{height:52.448437pt;}
.h4_c00146{height:62.812500pt;}
.h5_c00146{height:65.770313pt;}
.h0_c00146{height:1122.560000pt;}
.h1_c00146{height:1122.666667pt;}
.w0_c00146{width:793.840000pt;}
.w1_c00146{width:794.000000pt;}
.x0_c00146{left:0.000000pt;}
.x3_c00146{left:113.440000pt;}
.x4_c00146{left:116.080000pt;}
.x2_c00146{left:377.920000pt;}
.x1_c00146{left:396.960000pt;}
.x5_c00146{left:656.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_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_c657bf8d50f65bd567c88210.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00147{vertical-align:-61.938000px;}
.v0_c00147{vertical-align:0.000000px;}
.lsd_c00147{letter-spacing:-0.360000px;}
.lsc_c00147{letter-spacing:-0.288000px;}
.lsf_c00147{letter-spacing:-0.216000px;}
.lsb_c00147{letter-spacing:-0.072000px;}
.lsa_c00147{letter-spacing:0.000000px;}
.ls2_c00147{letter-spacing:0.072000px;}
.lse_c00147{letter-spacing:0.144000px;}
.ls5_c00147{letter-spacing:0.216000px;}
.ls3_c00147{letter-spacing:0.727200px;}
.ls6_c00147{letter-spacing:5.040000px;}
.ls9_c00147{letter-spacing:6.840000px;}
.ls7_c00147{letter-spacing:7.200000px;}
.ls4_c00147{letter-spacing:8.280000px;}
.ls1_c00147{letter-spacing:9.360000px;}
.ls8_c00147{letter-spacing:15.120000px;}
.ls0_c00147{letter-spacing:319.518000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00147{word-spacing:-18.144000px;}
.ws1_c00147{word-spacing:-18.072000px;}
.ws0_c00147{word-spacing:-17.928000px;}
.ws4_c00147{word-spacing:-0.162000px;}
.ws8_c00147{word-spacing:-0.072000px;}
.ws3_c00147{word-spacing:0.000000px;}
.ws29_c00147{word-spacing:0.216000px;}
.wsa_c00147{word-spacing:0.288000px;}
.wsb_c00147{word-spacing:0.360000px;}
.wsc_c00147{word-spacing:0.648000px;}
.wsd_c00147{word-spacing:0.720000px;}
.ws1e_c00147{word-spacing:3.168000px;}
.ws22_c00147{word-spacing:3.528000px;}
.ws1b_c00147{word-spacing:3.600000px;}
.ws2a_c00147{word-spacing:3.888000px;}
.wse_c00147{word-spacing:3.960000px;}
.ws1a_c00147{word-spacing:4.320000px;}
.ws14_c00147{word-spacing:4.968000px;}
.ws15_c00147{word-spacing:5.040000px;}
.ws1d_c00147{word-spacing:6.408000px;}
.ws1c_c00147{word-spacing:6.480000px;}
.ws28_c00147{word-spacing:6.768000px;}
.ws27_c00147{word-spacing:6.840000px;}
.ws18_c00147{word-spacing:7.128000px;}
.ws19_c00147{word-spacing:7.200000px;}
.ws10_c00147{word-spacing:8.208000px;}
.wsf_c00147{word-spacing:8.280000px;}
.ws7_c00147{word-spacing:9.288000px;}
.ws9_c00147{word-spacing:9.360000px;}
.ws16_c00147{word-spacing:11.880000px;}
.ws17_c00147{word-spacing:12.600000px;}
.ws21_c00147{word-spacing:13.320000px;}
.ws20_c00147{word-spacing:15.048000px;}
.ws1f_c00147{word-spacing:15.120000px;}
.ws25_c00147{word-spacing:16.488000px;}
.ws24_c00147{word-spacing:16.560000px;}
.ws12_c00147{word-spacing:16.848000px;}
.ws13_c00147{word-spacing:17.280000px;}
.ws11_c00147{word-spacing:17.568000px;}
.ws2c_c00147{word-spacing:19.728000px;}
.ws2b_c00147{word-spacing:19.800000px;}
.ws23_c00147{word-spacing:20.520000px;}
.ws5_c00147{word-spacing:21.528000px;}
.ws6_c00147{word-spacing:21.600000px;}
.ws26_c00147{word-spacing:37.440000px;}
._0_c00147{margin-left:-1.015200px;}
._3_c00147{width:1.008000px;}
._6_c00147{width:3.096000px;}
._9_c00147{width:7.574400px;}
._2_c00147{width:8.935200px;}
._4_c00147{width:10.224000px;}
._7_c00147{width:14.760000px;}
._5_c00147{width:16.855200px;}
._8_c00147{width:19.800000px;}
._1_c00147{width:20.815200px;}
.fc0_c00147{color:rgb(0,0,0);}
.fs0_c00147{font-size:54.000000px;}
.fs1_c00147{font-size:72.000000px;}
.y0_c00147{bottom:0.000000px;}
.y26_c00147{bottom:57.240000px;}
.y25_c00147{bottom:116.820000px;}
.y24_c00147{bottom:147.870000px;}
.y23_c00147{bottom:178.920000px;}
.y22_c00147{bottom:209.970000px;}
.y21_c00147{bottom:241.020000px;}
.y20_c00147{bottom:272.070000px;}
.y1f_c00147{bottom:303.120000px;}
.y1e_c00147{bottom:334.170000px;}
.y1d_c00147{bottom:365.220000px;}
.y1c_c00147{bottom:396.270000px;}
.y1b_c00147{bottom:427.320000px;}
.y1a_c00147{bottom:458.370000px;}
.y19_c00147{bottom:489.420000px;}
.y18_c00147{bottom:520.470000px;}
.y17_c00147{bottom:551.520000px;}
.y16_c00147{bottom:582.570000px;}
.y15_c00147{bottom:613.620000px;}
.y14_c00147{bottom:644.670000px;}
.y13_c00147{bottom:675.720000px;}
.y12_c00147{bottom:706.770000px;}
.y11_c00147{bottom:737.820000px;}
.y10_c00147{bottom:768.870000px;}
.yf_c00147{bottom:799.920000px;}
.ye_c00147{bottom:830.970000px;}
.yd_c00147{bottom:861.930000px;}
.yc_c00147{bottom:892.980000px;}
.yb_c00147{bottom:924.030000px;}
.ya_c00147{bottom:955.080000px;}
.y9_c00147{bottom:986.130000px;}
.y8_c00147{bottom:1017.180000px;}
.y7_c00147{bottom:1048.230000px;}
.y6_c00147{bottom:1079.280000px;}
.y5_c00147{bottom:1110.330000px;}
.y4_c00147{bottom:1131.030000px;}
.y3_c00147{bottom:1150.915500px;}
.y2_c00147{bottom:1166.400000px;}
.y1_c00147{bottom:1197.450000px;}
.h2_c00147{height:52.998047px;}
.h3_c00147{height:70.664062px;}
.h0_c00147{height:1262.880000px;}
.h1_c00147{height:1263.000000px;}
.w0_c00147{width:893.070000px;}
.w1_c00147{width:893.250000px;}
.x0_c00147{left:0.000000px;}
.x2_c00147{left:127.620000px;}
.x1_c00147{left:446.580000px;}
@media print{
.v1_c00147{vertical-align:-55.056000pt;}
.v0_c00147{vertical-align:0.000000pt;}
.lsd_c00147{letter-spacing:-0.320000pt;}
.lsc_c00147{letter-spacing:-0.256000pt;}
.lsf_c00147{letter-spacing:-0.192000pt;}
.lsb_c00147{letter-spacing:-0.064000pt;}
.lsa_c00147{letter-spacing:0.000000pt;}
.ls2_c00147{letter-spacing:0.064000pt;}
.lse_c00147{letter-spacing:0.128000pt;}
.ls5_c00147{letter-spacing:0.192000pt;}
.ls3_c00147{letter-spacing:0.646400pt;}
.ls6_c00147{letter-spacing:4.480000pt;}
.ls9_c00147{letter-spacing:6.080000pt;}
.ls7_c00147{letter-spacing:6.400000pt;}
.ls4_c00147{letter-spacing:7.360000pt;}
.ls1_c00147{letter-spacing:8.320000pt;}
.ls8_c00147{letter-spacing:13.440000pt;}
.ls0_c00147{letter-spacing:284.016000pt;}
.ws2_c00147{word-spacing:-16.128000pt;}
.ws1_c00147{word-spacing:-16.064000pt;}
.ws0_c00147{word-spacing:-15.936000pt;}
.ws4_c00147{word-spacing:-0.144000pt;}
.ws8_c00147{word-spacing:-0.064000pt;}
.ws3_c00147{word-spacing:0.000000pt;}
.ws29_c00147{word-spacing:0.192000pt;}
.wsa_c00147{word-spacing:0.256000pt;}
.wsb_c00147{word-spacing:0.320000pt;}
.wsc_c00147{word-spacing:0.576000pt;}
.wsd_c00147{word-spacing:0.640000pt;}
.ws1e_c00147{word-spacing:2.816000pt;}
.ws22_c00147{word-spacing:3.136000pt;}
.ws1b_c00147{word-spacing:3.200000pt;}
.ws2a_c00147{word-spacing:3.456000pt;}
.wse_c00147{word-spacing:3.520000pt;}
.ws1a_c00147{word-spacing:3.840000pt;}
.ws14_c00147{word-spacing:4.416000pt;}
.ws15_c00147{word-spacing:4.480000pt;}
.ws1d_c00147{word-spacing:5.696000pt;}
.ws1c_c00147{word-spacing:5.760000pt;}
.ws28_c00147{word-spacing:6.016000pt;}
.ws27_c00147{word-spacing:6.080000pt;}
.ws18_c00147{word-spacing:6.336000pt;}
.ws19_c00147{word-spacing:6.400000pt;}
.ws10_c00147{word-spacing:7.296000pt;}
.wsf_c00147{word-spacing:7.360000pt;}
.ws7_c00147{word-spacing:8.256000pt;}
.ws9_c00147{word-spacing:8.320000pt;}
.ws16_c00147{word-spacing:10.560000pt;}
.ws17_c00147{word-spacing:11.200000pt;}
.ws21_c00147{word-spacing:11.840000pt;}
.ws20_c00147{word-spacing:13.376000pt;}
.ws1f_c00147{word-spacing:13.440000pt;}
.ws25_c00147{word-spacing:14.656000pt;}
.ws24_c00147{word-spacing:14.720000pt;}
.ws12_c00147{word-spacing:14.976000pt;}
.ws13_c00147{word-spacing:15.360000pt;}
.ws11_c00147{word-spacing:15.616000pt;}
.ws2c_c00147{word-spacing:17.536000pt;}
.ws2b_c00147{word-spacing:17.600000pt;}
.ws23_c00147{word-spacing:18.240000pt;}
.ws5_c00147{word-spacing:19.136000pt;}
.ws6_c00147{word-spacing:19.200000pt;}
.ws26_c00147{word-spacing:33.280000pt;}
._0_c00147{margin-left:-0.902400pt;}
._3_c00147{width:0.896000pt;}
._6_c00147{width:2.752000pt;}
._9_c00147{width:6.732800pt;}
._2_c00147{width:7.942400pt;}
._4_c00147{width:9.088000pt;}
._7_c00147{width:13.120000pt;}
._5_c00147{width:14.982400pt;}
._8_c00147{width:17.600000pt;}
._1_c00147{width:18.502400pt;}
.fs0_c00147{font-size:48.000000pt;}
.fs1_c00147{font-size:64.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y26_c00147{bottom:50.880000pt;}
.y25_c00147{bottom:103.840000pt;}
.y24_c00147{bottom:131.440000pt;}
.y23_c00147{bottom:159.040000pt;}
.y22_c00147{bottom:186.640000pt;}
.y21_c00147{bottom:214.240000pt;}
.y20_c00147{bottom:241.840000pt;}
.y1f_c00147{bottom:269.440000pt;}
.y1e_c00147{bottom:297.040000pt;}
.y1d_c00147{bottom:324.640000pt;}
.y1c_c00147{bottom:352.240000pt;}
.y1b_c00147{bottom:379.840000pt;}
.y1a_c00147{bottom:407.440000pt;}
.y19_c00147{bottom:435.040000pt;}
.y18_c00147{bottom:462.640000pt;}
.y17_c00147{bottom:490.240000pt;}
.y16_c00147{bottom:517.840000pt;}
.y15_c00147{bottom:545.440000pt;}
.y14_c00147{bottom:573.040000pt;}
.y13_c00147{bottom:600.640000pt;}
.y12_c00147{bottom:628.240000pt;}
.y11_c00147{bottom:655.840000pt;}
.y10_c00147{bottom:683.440000pt;}
.yf_c00147{bottom:711.040000pt;}
.ye_c00147{bottom:738.640000pt;}
.yd_c00147{bottom:766.160000pt;}
.yc_c00147{bottom:793.760000pt;}
.yb_c00147{bottom:821.360000pt;}
.ya_c00147{bottom:848.960000pt;}
.y9_c00147{bottom:876.560000pt;}
.y8_c00147{bottom:904.160000pt;}
.y7_c00147{bottom:931.760000pt;}
.y6_c00147{bottom:959.360000pt;}
.y5_c00147{bottom:986.960000pt;}
.y4_c00147{bottom:1005.360000pt;}
.y3_c00147{bottom:1023.036000pt;}
.y2_c00147{bottom:1036.800000pt;}
.y1_c00147{bottom:1064.400000pt;}
.h2_c00147{height:47.109375pt;}
.h3_c00147{height:62.812500pt;}
.h0_c00147{height:1122.560000pt;}
.h1_c00147{height:1122.666667pt;}
.w0_c00147{width:793.840000pt;}
.w1_c00147{width:794.000000pt;}
.x0_c00147{left:0.000000pt;}
.x2_c00147{left:113.440000pt;}
.x1_c00147{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24fe12cea5eba411f942def3.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00148{letter-spacing:-0.576000px;}
.lsb_c00148{letter-spacing:-0.288000px;}
.lsa_c00148{letter-spacing:-0.108000px;}
.ls9_c00148{letter-spacing:0.000000px;}
.ls3_c00148{letter-spacing:0.072000px;}
.ls4_c00148{letter-spacing:0.144000px;}
.ls1_c00148{letter-spacing:1.440000px;}
.ls7_c00148{letter-spacing:12.600000px;}
.ls5_c00148{letter-spacing:14.400000px;}
.ls6_c00148{letter-spacing:17.280000px;}
.ls2_c00148{letter-spacing:24.480000px;}
.ls8_c00148{letter-spacing:26.280000px;}
.ls0_c00148{letter-spacing:28.080000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00148{word-spacing:-18.144000px;}
.ws1_c00148{word-spacing:-18.072000px;}
.ws0_c00148{word-spacing:-18.000000px;}
.ws3_c00148{word-spacing:-17.712000px;}
.ws14_c00148{word-spacing:-0.360000px;}
.ws11_c00148{word-spacing:-0.072000px;}
.ws4_c00148{word-spacing:0.000000px;}
.ws6_c00148{word-spacing:0.162000px;}
.ws5_c00148{word-spacing:0.270000px;}
.ws10_c00148{word-spacing:0.288000px;}
.ws23_c00148{word-spacing:0.576000px;}
.wsc_c00148{word-spacing:1.008000px;}
.wsd_c00148{word-spacing:1.080000px;}
.wsb_c00148{word-spacing:1.440000px;}
.ws17_c00148{word-spacing:3.096000px;}
.ws18_c00148{word-spacing:3.240000px;}
.ws35_c00148{word-spacing:3.528000px;}
.ws28_c00148{word-spacing:3.600000px;}
.ws9_c00148{word-spacing:3.888000px;}
.ws8_c00148{word-spacing:3.960000px;}
.ws15_c00148{word-spacing:4.536000px;}
.ws16_c00148{word-spacing:4.680000px;}
.ws1a_c00148{word-spacing:6.768000px;}
.ws12_c00148{word-spacing:8.928000px;}
.ws13_c00148{word-spacing:9.000000px;}
.ws2f_c00148{word-spacing:10.368000px;}
.ws2d_c00148{word-spacing:10.440000px;}
.ws2e_c00148{word-spacing:10.800000px;}
.wse_c00148{word-spacing:11.448000px;}
.ws30_c00148{word-spacing:11.808000px;}
.ws24_c00148{word-spacing:12.168000px;}
.ws25_c00148{word-spacing:12.240000px;}
.ws22_c00148{word-spacing:12.600000px;}
.wsa_c00148{word-spacing:12.888000px;}
.ws1b_c00148{word-spacing:14.256000px;}
.ws1c_c00148{word-spacing:14.400000px;}
.ws34_c00148{word-spacing:16.920000px;}
.ws1d_c00148{word-spacing:17.280000px;}
.ws1e_c00148{word-spacing:17.568000px;}
.ws2c_c00148{word-spacing:20.160000px;}
.wsf_c00148{word-spacing:24.480000px;}
.ws2a_c00148{word-spacing:25.920000px;}
.ws2b_c00148{word-spacing:26.208000px;}
.ws29_c00148{word-spacing:26.280000px;}
.ws27_c00148{word-spacing:27.288000px;}
.ws7_c00148{word-spacing:28.080000px;}
.ws19_c00148{word-spacing:28.800000px;}
.ws31_c00148{word-spacing:32.256000px;}
.ws32_c00148{word-spacing:32.400000px;}
.ws33_c00148{word-spacing:33.408000px;}
.ws1f_c00148{word-spacing:36.288000px;}
.ws21_c00148{word-spacing:36.648000px;}
.ws20_c00148{word-spacing:36.720000px;}
.ws26_c00148{word-spacing:60.120000px;}
._7_c00148{margin-left:-13.392000px;}
._1_c00148{margin-left:-1.058400px;}
._0_c00148{width:1.220400px;}
._4_c00148{width:2.980800px;}
._3_c00148{width:4.708800px;}
._6_c00148{width:12.823200px;}
._2_c00148{width:24.696000px;}
._5_c00148{width:36.698400px;}
.fc0_c00148{color:rgb(0,0,0);}
.fs0_c00148{font-size:54.000000px;}
.fs1_c00148{font-size:72.000000px;}
.y0_c00148{bottom:0.000000px;}
.y27_c00148{bottom:57.240000px;}
.y26_c00148{bottom:116.820000px;}
.y25_c00148{bottom:147.870000px;}
.y24_c00148{bottom:178.920000px;}
.y23_c00148{bottom:209.970000px;}
.y22_c00148{bottom:241.020000px;}
.y21_c00148{bottom:272.070000px;}
.y20_c00148{bottom:303.120000px;}
.y1f_c00148{bottom:334.170000px;}
.y1e_c00148{bottom:365.220000px;}
.y1d_c00148{bottom:396.270000px;}
.y1c_c00148{bottom:427.320000px;}
.y1b_c00148{bottom:458.370000px;}
.y1a_c00148{bottom:489.420000px;}
.y19_c00148{bottom:520.470000px;}
.y18_c00148{bottom:551.520000px;}
.y17_c00148{bottom:582.570000px;}
.y16_c00148{bottom:613.620000px;}
.y15_c00148{bottom:644.670000px;}
.y14_c00148{bottom:675.720000px;}
.y13_c00148{bottom:706.770000px;}
.y12_c00148{bottom:737.820000px;}
.y11_c00148{bottom:768.870000px;}
.y10_c00148{bottom:799.920000px;}
.yf_c00148{bottom:830.970000px;}
.ye_c00148{bottom:861.930000px;}
.yd_c00148{bottom:892.980000px;}
.yc_c00148{bottom:924.030000px;}
.yb_c00148{bottom:955.080000px;}
.ya_c00148{bottom:986.130000px;}
.y9_c00148{bottom:1017.180000px;}
.y8_c00148{bottom:1048.230000px;}
.y7_c00148{bottom:1079.280000px;}
.y6_c00148{bottom:1110.330000px;}
.y5_c00148{bottom:1131.030000px;}
.y4_c00148{bottom:1150.920000px;}
.y3_c00148{bottom:1166.404500px;}
.y2_c00148{bottom:1181.970000px;}
.y1_c00148{bottom:1197.450000px;}
.h3_c00148{height:52.971680px;}
.h2_c00148{height:52.998047px;}
.h4_c00148{height:70.664062px;}
.h0_c00148{height:1262.880000px;}
.h1_c00148{height:1263.000000px;}
.w0_c00148{width:893.070000px;}
.w1_c00148{width:893.250000px;}
.x0_c00148{left:0.000000px;}
.x3_c00148{left:127.620000px;}
.x2_c00148{left:425.160000px;}
.x1_c00148{left:446.580000px;}
.x4_c00148{left:738.540000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.lsc_c00148{letter-spacing:-0.512000pt;}
.lsb_c00148{letter-spacing:-0.256000pt;}
.lsa_c00148{letter-spacing:-0.096000pt;}
.ls9_c00148{letter-spacing:0.000000pt;}
.ls3_c00148{letter-spacing:0.064000pt;}
.ls4_c00148{letter-spacing:0.128000pt;}
.ls1_c00148{letter-spacing:1.280000pt;}
.ls7_c00148{letter-spacing:11.200000pt;}
.ls5_c00148{letter-spacing:12.800000pt;}
.ls6_c00148{letter-spacing:15.360000pt;}
.ls2_c00148{letter-spacing:21.760000pt;}
.ls8_c00148{letter-spacing:23.360000pt;}
.ls0_c00148{letter-spacing:24.960000pt;}
.ws2_c00148{word-spacing:-16.128000pt;}
.ws1_c00148{word-spacing:-16.064000pt;}
.ws0_c00148{word-spacing:-16.000000pt;}
.ws3_c00148{word-spacing:-15.744000pt;}
.ws14_c00148{word-spacing:-0.320000pt;}
.ws11_c00148{word-spacing:-0.064000pt;}
.ws4_c00148{word-spacing:0.000000pt;}
.ws6_c00148{word-spacing:0.144000pt;}
.ws5_c00148{word-spacing:0.240000pt;}
.ws10_c00148{word-spacing:0.256000pt;}
.ws23_c00148{word-spacing:0.512000pt;}
.wsc_c00148{word-spacing:0.896000pt;}
.wsd_c00148{word-spacing:0.960000pt;}
.wsb_c00148{word-spacing:1.280000pt;}
.ws17_c00148{word-spacing:2.752000pt;}
.ws18_c00148{word-spacing:2.880000pt;}
.ws35_c00148{word-spacing:3.136000pt;}
.ws28_c00148{word-spacing:3.200000pt;}
.ws9_c00148{word-spacing:3.456000pt;}
.ws8_c00148{word-spacing:3.520000pt;}
.ws15_c00148{word-spacing:4.032000pt;}
.ws16_c00148{word-spacing:4.160000pt;}
.ws1a_c00148{word-spacing:6.016000pt;}
.ws12_c00148{word-spacing:7.936000pt;}
.ws13_c00148{word-spacing:8.000000pt;}
.ws2f_c00148{word-spacing:9.216000pt;}
.ws2d_c00148{word-spacing:9.280000pt;}
.ws2e_c00148{word-spacing:9.600000pt;}
.wse_c00148{word-spacing:10.176000pt;}
.ws30_c00148{word-spacing:10.496000pt;}
.ws24_c00148{word-spacing:10.816000pt;}
.ws25_c00148{word-spacing:10.880000pt;}
.ws22_c00148{word-spacing:11.200000pt;}
.wsa_c00148{word-spacing:11.456000pt;}
.ws1b_c00148{word-spacing:12.672000pt;}
.ws1c_c00148{word-spacing:12.800000pt;}
.ws34_c00148{word-spacing:15.040000pt;}
.ws1d_c00148{word-spacing:15.360000pt;}
.ws1e_c00148{word-spacing:15.616000pt;}
.ws2c_c00148{word-spacing:17.920000pt;}
.wsf_c00148{word-spacing:21.760000pt;}
.ws2a_c00148{word-spacing:23.040000pt;}
.ws2b_c00148{word-spacing:23.296000pt;}
.ws29_c00148{word-spacing:23.360000pt;}
.ws27_c00148{word-spacing:24.256000pt;}
.ws7_c00148{word-spacing:24.960000pt;}
.ws19_c00148{word-spacing:25.600000pt;}
.ws31_c00148{word-spacing:28.672000pt;}
.ws32_c00148{word-spacing:28.800000pt;}
.ws33_c00148{word-spacing:29.696000pt;}
.ws1f_c00148{word-spacing:32.256000pt;}
.ws21_c00148{word-spacing:32.576000pt;}
.ws20_c00148{word-spacing:32.640000pt;}
.ws26_c00148{word-spacing:53.440000pt;}
._7_c00148{margin-left:-11.904000pt;}
._1_c00148{margin-left:-0.940800pt;}
._0_c00148{width:1.084800pt;}
._4_c00148{width:2.649600pt;}
._3_c00148{width:4.185600pt;}
._6_c00148{width:11.398400pt;}
._2_c00148{width:21.952000pt;}
._5_c00148{width:32.620800pt;}
.fs0_c00148{font-size:48.000000pt;}
.fs1_c00148{font-size:64.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y27_c00148{bottom:50.880000pt;}
.y26_c00148{bottom:103.840000pt;}
.y25_c00148{bottom:131.440000pt;}
.y24_c00148{bottom:159.040000pt;}
.y23_c00148{bottom:186.640000pt;}
.y22_c00148{bottom:214.240000pt;}
.y21_c00148{bottom:241.840000pt;}
.y20_c00148{bottom:269.440000pt;}
.y1f_c00148{bottom:297.040000pt;}
.y1e_c00148{bottom:324.640000pt;}
.y1d_c00148{bottom:352.240000pt;}
.y1c_c00148{bottom:379.840000pt;}
.y1b_c00148{bottom:407.440000pt;}
.y1a_c00148{bottom:435.040000pt;}
.y19_c00148{bottom:462.640000pt;}
.y18_c00148{bottom:490.240000pt;}
.y17_c00148{bottom:517.840000pt;}
.y16_c00148{bottom:545.440000pt;}
.y15_c00148{bottom:573.040000pt;}
.y14_c00148{bottom:600.640000pt;}
.y13_c00148{bottom:628.240000pt;}
.y12_c00148{bottom:655.840000pt;}
.y11_c00148{bottom:683.440000pt;}
.y10_c00148{bottom:711.040000pt;}
.yf_c00148{bottom:738.640000pt;}
.ye_c00148{bottom:766.160000pt;}
.yd_c00148{bottom:793.760000pt;}
.yc_c00148{bottom:821.360000pt;}
.yb_c00148{bottom:848.960000pt;}
.ya_c00148{bottom:876.560000pt;}
.y9_c00148{bottom:904.160000pt;}
.y8_c00148{bottom:931.760000pt;}
.y7_c00148{bottom:959.360000pt;}
.y6_c00148{bottom:986.960000pt;}
.y5_c00148{bottom:1005.360000pt;}
.y4_c00148{bottom:1023.040000pt;}
.y3_c00148{bottom:1036.804000pt;}
.y2_c00148{bottom:1050.640000pt;}
.y1_c00148{bottom:1064.400000pt;}
.h3_c00148{height:47.085938pt;}
.h2_c00148{height:47.109375pt;}
.h4_c00148{height:62.812500pt;}
.h0_c00148{height:1122.560000pt;}
.h1_c00148{height:1122.666667pt;}
.w0_c00148{width:793.840000pt;}
.w1_c00148{width:794.000000pt;}
.x0_c00148{left:0.000000pt;}
.x3_c00148{left:113.440000pt;}
.x2_c00148{left:377.920000pt;}
.x1_c00148{left:396.960000pt;}
.x4_c00148{left:656.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_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_68a129c6d04bbcaa3dd985c8.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00149{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.m3_c00149{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00149{vertical-align:-61.938000px;}
.v3_c00149{vertical-align:-20.880000px;}
.v0_c00149{vertical-align:0.000000px;}
.v2_c00149{vertical-align:27.000000px;}
.ls15_c00149{letter-spacing:-0.661320px;}
.ls12_c00149{letter-spacing:-0.239400px;}
.ls17_c00149{letter-spacing:-0.120240px;}
.ls16_c00149{letter-spacing:-0.060120px;}
.ls10_c00149{letter-spacing:0.000000px;}
.ls8_c00149{letter-spacing:0.072000px;}
.lsf_c00149{letter-spacing:0.106560px;}
.lse_c00149{letter-spacing:0.120240px;}
.ls11_c00149{letter-spacing:0.144000px;}
.ls14_c00149{letter-spacing:0.180360px;}
.ls1_c00149{letter-spacing:0.191520px;}
.ls13_c00149{letter-spacing:0.360000px;}
.lsb_c00149{letter-spacing:0.432000px;}
.ls5_c00149{letter-spacing:3.600000px;}
.ls6_c00149{letter-spacing:3.960000px;}
.ls9_c00149{letter-spacing:4.320000px;}
.lsa_c00149{letter-spacing:6.840000px;}
.ls3_c00149{letter-spacing:7.200000px;}
.lsc_c00149{letter-spacing:9.216000px;}
.ls7_c00149{letter-spacing:16.920000px;}
.ls2_c00149{letter-spacing:18.360000px;}
.lsd_c00149{letter-spacing:23.184000px;}
.ls4_c00149{letter-spacing:32.774400px;}
.ls0_c00149{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00149{word-spacing:-18.432000px;}
.ws2_c00149{word-spacing:-18.072000px;}
.ws1_c00149{word-spacing:-18.000000px;}
.ws5_c00149{word-spacing:-14.368680px;}
.ws0_c00149{word-spacing:-12.161520px;}
.ws4_c00149{word-spacing:-9.720000px;}
.ws2f_c00149{word-spacing:-0.432000px;}
.ws31_c00149{word-spacing:-0.420840px;}
.ws2d_c00149{word-spacing:-0.360000px;}
.ws7_c00149{word-spacing:-0.162000px;}
.wse_c00149{word-spacing:-0.144000px;}
.wsd_c00149{word-spacing:-0.072000px;}
.ws6_c00149{word-spacing:0.000000px;}
.ws33_c00149{word-spacing:0.120240px;}
.ws35_c00149{word-spacing:0.180360px;}
.ws2b_c00149{word-spacing:0.239400px;}
.ws34_c00149{word-spacing:0.240480px;}
.ws17_c00149{word-spacing:0.360000px;}
.wsa_c00149{word-spacing:0.720000px;}
.ws26_c00149{word-spacing:1.296000px;}
.ws25_c00149{word-spacing:1.728000px;}
.ws24_c00149{word-spacing:1.800000px;}
.ws22_c00149{word-spacing:2.520000px;}
.ws21_c00149{word-spacing:2.808000px;}
.ws20_c00149{word-spacing:2.880000px;}
.ws32_c00149{word-spacing:3.366720px;}
.wsb_c00149{word-spacing:3.528000px;}
.wsc_c00149{word-spacing:3.600000px;}
.ws1c_c00149{word-spacing:3.888000px;}
.ws1b_c00149{word-spacing:3.960000px;}
.ws27_c00149{word-spacing:4.320000px;}
.ws11_c00149{word-spacing:4.680000px;}
.ws12_c00149{word-spacing:5.328000px;}
.ws29_c00149{word-spacing:6.840000px;}
.ws16_c00149{word-spacing:7.128000px;}
.ws15_c00149{word-spacing:7.200000px;}
.wsf_c00149{word-spacing:8.208000px;}
.ws10_c00149{word-spacing:8.280000px;}
.ws2c_c00149{word-spacing:8.352000px;}
.ws2a_c00149{word-spacing:8.784000px;}
.ws30_c00149{word-spacing:11.160000px;}
.ws23_c00149{word-spacing:13.680000px;}
.ws1d_c00149{word-spacing:15.048000px;}
.ws1f_c00149{word-spacing:16.848000px;}
.ws1e_c00149{word-spacing:16.920000px;}
.ws13_c00149{word-spacing:18.288000px;}
.ws14_c00149{word-spacing:18.360000px;}
.ws28_c00149{word-spacing:19.440000px;}
.ws2e_c00149{word-spacing:22.752000px;}
.ws19_c00149{word-spacing:32.688000px;}
.ws18_c00149{word-spacing:33.048000px;}
.ws1a_c00149{word-spacing:33.120000px;}
.ws9_c00149{word-spacing:37.368000px;}
.ws8_c00149{word-spacing:37.440000px;}
._1_c00149{margin-left:-1.015200px;}
._0_c00149{width:1.080000px;}
._4_c00149{width:2.160000px;}
._2_c00149{width:4.235040px;}
._3_c00149{width:7.992000px;}
._5_c00149{width:22.838400px;}
.fc0_c00149{color:rgb(0,0,0);}
.fs3_c00149{font-size:38.880000px;}
.fs2_c00149{font-size:47.880000px;}
.fs0_c00149{font-size:54.000000px;}
.fs4_c00149{font-size:60.120000px;}
.fs1_c00149{font-size:72.000000px;}
.y0_c00149{bottom:0.000000px;}
.y28_c00149{bottom:57.240000px;}
.y27_c00149{bottom:109.795680px;}
.y26_c00149{bottom:132.210000px;}
.y25_c00149{bottom:149.490000px;}
.y24_c00149{bottom:166.770000px;}
.y29_c00149{bottom:179.460000px;}
.y23_c00149{bottom:209.970000px;}
.y22_c00149{bottom:241.020000px;}
.y20_c00149{bottom:272.070000px;}
.y21_c00149{bottom:278.820000px;}
.y1f_c00149{bottom:303.120000px;}
.y1e_c00149{bottom:334.170000px;}
.y1d_c00149{bottom:365.220000px;}
.y1c_c00149{bottom:396.270000px;}
.y1b_c00149{bottom:427.320000px;}
.y1a_c00149{bottom:458.370000px;}
.y19_c00149{bottom:489.420000px;}
.y18_c00149{bottom:520.470000px;}
.y17_c00149{bottom:551.520000px;}
.y16_c00149{bottom:582.570000px;}
.y15_c00149{bottom:613.620000px;}
.y14_c00149{bottom:644.670000px;}
.y13_c00149{bottom:675.720000px;}
.y12_c00149{bottom:706.770000px;}
.y11_c00149{bottom:737.820000px;}
.y10_c00149{bottom:768.870000px;}
.yf_c00149{bottom:799.920000px;}
.ye_c00149{bottom:830.970000px;}
.yd_c00149{bottom:861.930000px;}
.yc_c00149{bottom:892.980000px;}
.yb_c00149{bottom:924.030000px;}
.ya_c00149{bottom:955.080000px;}
.y9_c00149{bottom:986.130000px;}
.y8_c00149{bottom:1017.180000px;}
.y7_c00149{bottom:1048.230000px;}
.y6_c00149{bottom:1079.280000px;}
.y5_c00149{bottom:1110.330000px;}
.y4_c00149{bottom:1131.030000px;}
.y3_c00149{bottom:1150.915500px;}
.y2_c00149{bottom:1166.400000px;}
.y1_c00149{bottom:1197.450000px;}
.h6_c00149{height:38.158594px;}
.h5_c00149{height:46.991602px;}
.h2_c00149{height:52.998047px;}
.h3_c00149{height:70.664062px;}
.h7_c00149{height:70.681343px;}
.h4_c00149{height:73.991602px;}
.h0_c00149{height:1262.880000px;}
.h1_c00149{height:1263.000000px;}
.w0_c00149{width:893.070000px;}
.w1_c00149{width:893.250000px;}
.x0_c00149{left:0.000000px;}
.x2_c00149{left:127.620000px;}
.x3_c00149{left:302.400000px;}
.x4_c00149{left:318.330000px;}
.x1_c00149{left:446.580000px;}
@media print{
.v1_c00149{vertical-align:-55.056000pt;}
.v3_c00149{vertical-align:-18.560000pt;}
.v0_c00149{vertical-align:0.000000pt;}
.v2_c00149{vertical-align:24.000000pt;}
.ls15_c00149{letter-spacing:-0.587840pt;}
.ls12_c00149{letter-spacing:-0.212800pt;}
.ls17_c00149{letter-spacing:-0.106880pt;}
.ls16_c00149{letter-spacing:-0.053440pt;}
.ls10_c00149{letter-spacing:0.000000pt;}
.ls8_c00149{letter-spacing:0.064000pt;}
.lsf_c00149{letter-spacing:0.094720pt;}
.lse_c00149{letter-spacing:0.106880pt;}
.ls11_c00149{letter-spacing:0.128000pt;}
.ls14_c00149{letter-spacing:0.160320pt;}
.ls1_c00149{letter-spacing:0.170240pt;}
.ls13_c00149{letter-spacing:0.320000pt;}
.lsb_c00149{letter-spacing:0.384000pt;}
.ls5_c00149{letter-spacing:3.200000pt;}
.ls6_c00149{letter-spacing:3.520000pt;}
.ls9_c00149{letter-spacing:3.840000pt;}
.lsa_c00149{letter-spacing:6.080000pt;}
.ls3_c00149{letter-spacing:6.400000pt;}
.lsc_c00149{letter-spacing:8.192000pt;}
.ls7_c00149{letter-spacing:15.040000pt;}
.ls2_c00149{letter-spacing:16.320000pt;}
.lsd_c00149{letter-spacing:20.608000pt;}
.ls4_c00149{letter-spacing:29.132800pt;}
.ls0_c00149{letter-spacing:284.016000pt;}
.ws3_c00149{word-spacing:-16.384000pt;}
.ws2_c00149{word-spacing:-16.064000pt;}
.ws1_c00149{word-spacing:-16.000000pt;}
.ws5_c00149{word-spacing:-12.772160pt;}
.ws0_c00149{word-spacing:-10.810240pt;}
.ws4_c00149{word-spacing:-8.640000pt;}
.ws2f_c00149{word-spacing:-0.384000pt;}
.ws31_c00149{word-spacing:-0.374080pt;}
.ws2d_c00149{word-spacing:-0.320000pt;}
.ws7_c00149{word-spacing:-0.144000pt;}
.wse_c00149{word-spacing:-0.128000pt;}
.wsd_c00149{word-spacing:-0.064000pt;}
.ws6_c00149{word-spacing:0.000000pt;}
.ws33_c00149{word-spacing:0.106880pt;}
.ws35_c00149{word-spacing:0.160320pt;}
.ws2b_c00149{word-spacing:0.212800pt;}
.ws34_c00149{word-spacing:0.213760pt;}
.ws17_c00149{word-spacing:0.320000pt;}
.wsa_c00149{word-spacing:0.640000pt;}
.ws26_c00149{word-spacing:1.152000pt;}
.ws25_c00149{word-spacing:1.536000pt;}
.ws24_c00149{word-spacing:1.600000pt;}
.ws22_c00149{word-spacing:2.240000pt;}
.ws21_c00149{word-spacing:2.496000pt;}
.ws20_c00149{word-spacing:2.560000pt;}
.ws32_c00149{word-spacing:2.992640pt;}
.wsb_c00149{word-spacing:3.136000pt;}
.wsc_c00149{word-spacing:3.200000pt;}
.ws1c_c00149{word-spacing:3.456000pt;}
.ws1b_c00149{word-spacing:3.520000pt;}
.ws27_c00149{word-spacing:3.840000pt;}
.ws11_c00149{word-spacing:4.160000pt;}
.ws12_c00149{word-spacing:4.736000pt;}
.ws29_c00149{word-spacing:6.080000pt;}
.ws16_c00149{word-spacing:6.336000pt;}
.ws15_c00149{word-spacing:6.400000pt;}
.wsf_c00149{word-spacing:7.296000pt;}
.ws10_c00149{word-spacing:7.360000pt;}
.ws2c_c00149{word-spacing:7.424000pt;}
.ws2a_c00149{word-spacing:7.808000pt;}
.ws30_c00149{word-spacing:9.920000pt;}
.ws23_c00149{word-spacing:12.160000pt;}
.ws1d_c00149{word-spacing:13.376000pt;}
.ws1f_c00149{word-spacing:14.976000pt;}
.ws1e_c00149{word-spacing:15.040000pt;}
.ws13_c00149{word-spacing:16.256000pt;}
.ws14_c00149{word-spacing:16.320000pt;}
.ws28_c00149{word-spacing:17.280000pt;}
.ws2e_c00149{word-spacing:20.224000pt;}
.ws19_c00149{word-spacing:29.056000pt;}
.ws18_c00149{word-spacing:29.376000pt;}
.ws1a_c00149{word-spacing:29.440000pt;}
.ws9_c00149{word-spacing:33.216000pt;}
.ws8_c00149{word-spacing:33.280000pt;}
._1_c00149{margin-left:-0.902400pt;}
._0_c00149{width:0.960000pt;}
._4_c00149{width:1.920000pt;}
._2_c00149{width:3.764480pt;}
._3_c00149{width:7.104000pt;}
._5_c00149{width:20.300800pt;}
.fs3_c00149{font-size:34.560000pt;}
.fs2_c00149{font-size:42.560000pt;}
.fs0_c00149{font-size:48.000000pt;}
.fs4_c00149{font-size:53.440000pt;}
.fs1_c00149{font-size:64.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y28_c00149{bottom:50.880000pt;}
.y27_c00149{bottom:97.596160pt;}
.y26_c00149{bottom:117.520000pt;}
.y25_c00149{bottom:132.880000pt;}
.y24_c00149{bottom:148.240000pt;}
.y29_c00149{bottom:159.520000pt;}
.y23_c00149{bottom:186.640000pt;}
.y22_c00149{bottom:214.240000pt;}
.y20_c00149{bottom:241.840000pt;}
.y21_c00149{bottom:247.840000pt;}
.y1f_c00149{bottom:269.440000pt;}
.y1e_c00149{bottom:297.040000pt;}
.y1d_c00149{bottom:324.640000pt;}
.y1c_c00149{bottom:352.240000pt;}
.y1b_c00149{bottom:379.840000pt;}
.y1a_c00149{bottom:407.440000pt;}
.y19_c00149{bottom:435.040000pt;}
.y18_c00149{bottom:462.640000pt;}
.y17_c00149{bottom:490.240000pt;}
.y16_c00149{bottom:517.840000pt;}
.y15_c00149{bottom:545.440000pt;}
.y14_c00149{bottom:573.040000pt;}
.y13_c00149{bottom:600.640000pt;}
.y12_c00149{bottom:628.240000pt;}
.y11_c00149{bottom:655.840000pt;}
.y10_c00149{bottom:683.440000pt;}
.yf_c00149{bottom:711.040000pt;}
.ye_c00149{bottom:738.640000pt;}
.yd_c00149{bottom:766.160000pt;}
.yc_c00149{bottom:793.760000pt;}
.yb_c00149{bottom:821.360000pt;}
.ya_c00149{bottom:848.960000pt;}
.y9_c00149{bottom:876.560000pt;}
.y8_c00149{bottom:904.160000pt;}
.y7_c00149{bottom:931.760000pt;}
.y6_c00149{bottom:959.360000pt;}
.y5_c00149{bottom:986.960000pt;}
.y4_c00149{bottom:1005.360000pt;}
.y3_c00149{bottom:1023.036000pt;}
.y2_c00149{bottom:1036.800000pt;}
.y1_c00149{bottom:1064.400000pt;}
.h6_c00149{height:33.918750pt;}
.h5_c00149{height:41.770312pt;}
.h2_c00149{height:47.109375pt;}
.h3_c00149{height:62.812500pt;}
.h7_c00149{height:62.827860pt;}
.h4_c00149{height:65.770312pt;}
.h0_c00149{height:1122.560000pt;}
.h1_c00149{height:1122.666667pt;}
.w0_c00149{width:793.840000pt;}
.w1_c00149{width:794.000000pt;}
.x0_c00149{left:0.000000pt;}
.x2_c00149{left:113.440000pt;}
.x3_c00149{left:268.800000pt;}
.x4_c00149{left:282.960000pt;}
.x1_c00149{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cba5a88effab2299e37e9af8.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.284668;font-style:normal;font-weight:normal;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_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00150;src:url('chunks/assets/font_929cc163b570e0c2fca35292.woff2')format("woff");}.ff3_c00150{font-family:ff3_c00150;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00150{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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;}
.ls26_c00150{letter-spacing:-0.480960px;}
.ls21_c00150{letter-spacing:-0.420840px;}
.ls27_c00150{letter-spacing:-0.360720px;}
.ls25_c00150{letter-spacing:-0.240480px;}
.ls24_c00150{letter-spacing:-0.180360px;}
.ls22_c00150{letter-spacing:-0.120240px;}
.ls1d_c00150{letter-spacing:-0.108000px;}
.ls1f_c00150{letter-spacing:-0.072000px;}
.ls23_c00150{letter-spacing:-0.060120px;}
.ls1c_c00150{letter-spacing:0.000000px;}
.ls20_c00150{letter-spacing:0.060120px;}
.ls1e_c00150{letter-spacing:0.072000px;}
.ls15_c00150{letter-spacing:0.090000px;}
.ls16_c00150{letter-spacing:0.120240px;}
.ls19_c00150{letter-spacing:0.180360px;}
.ls10_c00150{letter-spacing:0.360000px;}
.ls1_c00150{letter-spacing:0.388800px;}
.ls2_c00150{letter-spacing:0.432000px;}
.ls1a_c00150{letter-spacing:1.863720px;}
.ls5_c00150{letter-spacing:2.275200px;}
.lse_c00150{letter-spacing:2.296800px;}
.ls6_c00150{letter-spacing:2.332800px;}
.ls7_c00150{letter-spacing:2.376000px;}
.lsf_c00150{letter-spacing:2.808000px;}
.lsd_c00150{letter-spacing:2.815200px;}
.ls13_c00150{letter-spacing:7.632000px;}
.ls14_c00150{letter-spacing:7.992000px;}
.ls8_c00150{letter-spacing:8.690400px;}
.lsa_c00150{letter-spacing:8.740800px;}
.ls9_c00150{letter-spacing:8.784000px;}
.lsc_c00150{letter-spacing:9.216000px;}
.ls4_c00150{letter-spacing:10.008000px;}
.ls11_c00150{letter-spacing:10.771200px;}
.ls12_c00150{letter-spacing:10.778400px;}
.ls3_c00150{letter-spacing:14.306400px;}
.ls0_c00150{letter-spacing:14.400000px;}
.lsb_c00150{letter-spacing:19.224000px;}
.ls18_c00150{letter-spacing:20.981880px;}
.ls17_c00150{letter-spacing:21.342600px;}
.ls1b_c00150{letter-spacing:35.711280px;}
.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;}
}
.ws0_c00150{word-spacing:-18.432000px;}
.ws2_c00150{word-spacing:-18.360000px;}
.ws1_c00150{word-spacing:-18.000000px;}
.ws3_c00150{word-spacing:-17.928000px;}
.ws9_c00150{word-spacing:-15.210360px;}
.ws4_c00150{word-spacing:-15.090120px;}
.ws8_c00150{word-spacing:-14.969880px;}
.ws5_c00150{word-spacing:-14.909760px;}
.ws6_c00150{word-spacing:-14.849640px;}
.ws7_c00150{word-spacing:-14.789520px;}
.wse_c00150{word-spacing:-0.432000px;}
.ws24_c00150{word-spacing:-0.120240px;}
.ws23_c00150{word-spacing:-0.060120px;}
.wsa_c00150{word-spacing:0.000000px;}
.ws22_c00150{word-spacing:0.060120px;}
.ws1f_c00150{word-spacing:0.072000px;}
.ws25_c00150{word-spacing:0.120240px;}
.wsc_c00150{word-spacing:0.162000px;}
.ws28_c00150{word-spacing:0.180360px;}
.ws21_c00150{word-spacing:0.240480px;}
.wsb_c00150{word-spacing:0.270000px;}
.ws39_c00150{word-spacing:0.300600px;}
.ws2c_c00150{word-spacing:0.480960px;}
.ws20_c00150{word-spacing:0.541080px;}
.ws38_c00150{word-spacing:0.841680px;}
.ws2e_c00150{word-spacing:0.901800px;}
.ws11_c00150{word-spacing:1.944000px;}
.ws30_c00150{word-spacing:1.983960px;}
.ws31_c00150{word-spacing:2.224440px;}
.ws19_c00150{word-spacing:2.376000px;}
.ws32_c00150{word-spacing:3.847680px;}
.ws12_c00150{word-spacing:3.960000px;}
.ws2a_c00150{word-spacing:6.252480px;}
.ws13_c00150{word-spacing:6.768000px;}
.ws34_c00150{word-spacing:6.973920px;}
.ws1c_c00150{word-spacing:7.200000px;}
.ws1d_c00150{word-spacing:7.560000px;}
.ws15_c00150{word-spacing:8.352000px;}
.ws14_c00150{word-spacing:8.784000px;}
.ws10_c00150{word-spacing:9.144000px;}
.wsf_c00150{word-spacing:9.576000px;}
.ws26_c00150{word-spacing:9.679320px;}
.ws27_c00150{word-spacing:9.979920px;}
.ws1a_c00150{word-spacing:10.008000px;}
.ws18_c00150{word-spacing:10.368000px;}
.ws1b_c00150{word-spacing:10.800000px;}
.wsd_c00150{word-spacing:13.968000px;}
.ws35_c00150{word-spacing:18.516960px;}
.ws16_c00150{word-spacing:18.792000px;}
.ws17_c00150{word-spacing:19.152000px;}
.ws3a_c00150{word-spacing:21.042000px;}
.ws2b_c00150{word-spacing:21.162240px;}
.ws36_c00150{word-spacing:22.484880px;}
.ws37_c00150{word-spacing:22.845600px;}
.ws29_c00150{word-spacing:23.927760px;}
.ws3b_c00150{word-spacing:24.408720px;}
.ws2f_c00150{word-spacing:28.977840px;}
.ws3d_c00150{word-spacing:32.645160px;}
.ws1e_c00150{word-spacing:33.984000px;}
.ws33_c00150{word-spacing:35.771400px;}
.ws3c_c00150{word-spacing:52.003800px;}
.ws2d_c00150{word-spacing:63.546840px;}
._1_c00150{margin-left:-1.058400px;}
._0_c00150{width:1.220400px;}
._4_c00150{width:2.232000px;}
._5_c00150{width:8.532000px;}
._3_c00150{width:10.000800px;}
._2_c00150{width:14.076000px;}
._6_c00150{width:19.180800px;}
._8_c00150{width:20.910600px;}
._7_c00150{width:33.962400px;}
._9_c00150{width:35.470800px;}
.fc1_c00150{color:transparent;}
.fc0_c00150{color:rgb(0,0,0);}
.fs0_c00150{font-size:54.000000px;}
.fs2_c00150{font-size:60.120000px;}
.fs1_c00150{font-size:72.000000px;}
.y0_c00150{bottom:0.000000px;}
.y1c_c00150{bottom:3.240000px;}
.y3a_c00150{bottom:3.510000px;}
.y1b_c00150{bottom:20.520000px;}
.y39_c00150{bottom:20.700000px;}
.y38_c00150{bottom:37.980000px;}
.y37_c00150{bottom:55.260000px;}
.y3c_c00150{bottom:57.240000px;}
.y36_c00150{bottom:72.450000px;}
.y2a_c00150{bottom:107.010000px;}
.y34_c00150{bottom:124.200000px;}
.y27_c00150{bottom:141.480000px;}
.y3b_c00150{bottom:197.190000px;}
.y1d_c00150{bottom:211.680000px;}
.y22_c00150{bottom:227.700000px;}
.y1e_c00150{bottom:262.080000px;}
.y20_c00150{bottom:262.260000px;}
.y2d_c00150{bottom:266.931180px;}
.y2c_c00150{bottom:284.125500px;}
.y2b_c00150{bottom:301.410000px;}
.y29_c00150{bottom:318.685680px;}
.y35_c00150{bottom:318.690000px;}
.y28_c00150{bottom:335.880000px;}
.y33_c00150{bottom:353.160000px;}
.y32_c00150{bottom:370.417860px;}
.y26_c00150{bottom:370.435680px;}
.y31_c00150{bottom:387.612180px;}
.y25_c00150{bottom:387.630000px;}
.y30_c00150{bottom:404.896680px;}
.y24_c00150{bottom:404.905500px;}
.y2f_c00150{bottom:422.181180px;}
.y23_c00150{bottom:422.190000px;}
.y2e_c00150{bottom:439.375500px;}
.y1f_c00150{bottom:456.480000px;}
.y21_c00150{bottom:456.660000px;}
.y1a_c00150{bottom:489.960000px;}
.y19_c00150{bottom:530.640000px;}
.y18_c00150{bottom:551.340000px;}
.y17_c00150{bottom:582.570000px;}
.y16_c00150{bottom:613.620000px;}
.y15_c00150{bottom:644.670000px;}
.y14_c00150{bottom:675.720000px;}
.y13_c00150{bottom:706.770000px;}
.y12_c00150{bottom:737.820000px;}
.y11_c00150{bottom:768.870000px;}
.y10_c00150{bottom:799.920000px;}
.yf_c00150{bottom:830.970000px;}
.ye_c00150{bottom:861.930000px;}
.yd_c00150{bottom:892.980000px;}
.yc_c00150{bottom:924.030000px;}
.yb_c00150{bottom:955.080000px;}
.ya_c00150{bottom:986.130000px;}
.y9_c00150{bottom:1017.180000px;}
.y8_c00150{bottom:1048.230000px;}
.y7_c00150{bottom:1079.280000px;}
.y6_c00150{bottom:1110.330000px;}
.y5_c00150{bottom:1131.030000px;}
.y4_c00150{bottom:1150.920000px;}
.y3_c00150{bottom:1166.404500px;}
.y2_c00150{bottom:1181.970000px;}
.y1_c00150{bottom:1197.450000px;}
.h6_c00150{height:34.471500px;}
.h3_c00150{height:52.971680px;}
.h2_c00150{height:52.998047px;}
.h9_c00150{height:59.004492px;}
.h7_c00150{height:60.589687px;}
.h4_c00150{height:70.664062px;}
.h5_c00150{height:72.562500px;}
.h8_c00150{height:276.030000px;}
.h0_c00150{height:1262.880000px;}
.h1_c00150{height:1263.000000px;}
.w2_c00150{width:105.570000px;}
.w3_c00150{width:252.900000px;}
.w4_c00150{width:263.430000px;}
.w5_c00150{width:893.031000px;}
.w0_c00150{width:893.070000px;}
.w1_c00150{width:893.250000px;}
.x0_c00150{left:0.000000px;}
.xe_c00150{left:6.930000px;}
.xa_c00150{left:11.340000px;}
.x8_c00150{left:19.980000px;}
.xd_c00150{left:34.650000px;}
.xb_c00150{left:72.270000px;}
.x3_c00150{left:127.620000px;}
.x7_c00150{left:128.700000px;}
.x5_c00150{left:130.590000px;}
.xf_c00150{left:135.630000px;}
.x13_c00150{left:142.470000px;}
.x11_c00150{left:206.550000px;}
.x9_c00150{left:236.520000px;}
.x10_c00150{left:243.450000px;}
.x6_c00150{left:408.780000px;}
.x2_c00150{left:425.160000px;}
.x1_c00150{left:446.580000px;}
.xc_c00150{left:491.670000px;}
.x12_c00150{left:498.600000px;}
.x4_c00150{left:573.210000px;}
.x14_c00150{left:696.330000px;}
.x16_c00150{left:738.540000px;}
.x15_c00150{left:981.540000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls26_c00150{letter-spacing:-0.427520pt;}
.ls21_c00150{letter-spacing:-0.374080pt;}
.ls27_c00150{letter-spacing:-0.320640pt;}
.ls25_c00150{letter-spacing:-0.213760pt;}
.ls24_c00150{letter-spacing:-0.160320pt;}
.ls22_c00150{letter-spacing:-0.106880pt;}
.ls1d_c00150{letter-spacing:-0.096000pt;}
.ls1f_c00150{letter-spacing:-0.064000pt;}
.ls23_c00150{letter-spacing:-0.053440pt;}
.ls1c_c00150{letter-spacing:0.000000pt;}
.ls20_c00150{letter-spacing:0.053440pt;}
.ls1e_c00150{letter-spacing:0.064000pt;}
.ls15_c00150{letter-spacing:0.080000pt;}
.ls16_c00150{letter-spacing:0.106880pt;}
.ls19_c00150{letter-spacing:0.160320pt;}
.ls10_c00150{letter-spacing:0.320000pt;}
.ls1_c00150{letter-spacing:0.345600pt;}
.ls2_c00150{letter-spacing:0.384000pt;}
.ls1a_c00150{letter-spacing:1.656640pt;}
.ls5_c00150{letter-spacing:2.022400pt;}
.lse_c00150{letter-spacing:2.041600pt;}
.ls6_c00150{letter-spacing:2.073600pt;}
.ls7_c00150{letter-spacing:2.112000pt;}
.lsf_c00150{letter-spacing:2.496000pt;}
.lsd_c00150{letter-spacing:2.502400pt;}
.ls13_c00150{letter-spacing:6.784000pt;}
.ls14_c00150{letter-spacing:7.104000pt;}
.ls8_c00150{letter-spacing:7.724800pt;}
.lsa_c00150{letter-spacing:7.769600pt;}
.ls9_c00150{letter-spacing:7.808000pt;}
.lsc_c00150{letter-spacing:8.192000pt;}
.ls4_c00150{letter-spacing:8.896000pt;}
.ls11_c00150{letter-spacing:9.574400pt;}
.ls12_c00150{letter-spacing:9.580800pt;}
.ls3_c00150{letter-spacing:12.716800pt;}
.ls0_c00150{letter-spacing:12.800000pt;}
.lsb_c00150{letter-spacing:17.088000pt;}
.ls18_c00150{letter-spacing:18.650560pt;}
.ls17_c00150{letter-spacing:18.971200pt;}
.ls1b_c00150{letter-spacing:31.743360pt;}
.ws0_c00150{word-spacing:-16.384000pt;}
.ws2_c00150{word-spacing:-16.320000pt;}
.ws1_c00150{word-spacing:-16.000000pt;}
.ws3_c00150{word-spacing:-15.936000pt;}
.ws9_c00150{word-spacing:-13.520320pt;}
.ws4_c00150{word-spacing:-13.413440pt;}
.ws8_c00150{word-spacing:-13.306560pt;}
.ws5_c00150{word-spacing:-13.253120pt;}
.ws6_c00150{word-spacing:-13.199680pt;}
.ws7_c00150{word-spacing:-13.146240pt;}
.wse_c00150{word-spacing:-0.384000pt;}
.ws24_c00150{word-spacing:-0.106880pt;}
.ws23_c00150{word-spacing:-0.053440pt;}
.wsa_c00150{word-spacing:0.000000pt;}
.ws22_c00150{word-spacing:0.053440pt;}
.ws1f_c00150{word-spacing:0.064000pt;}
.ws25_c00150{word-spacing:0.106880pt;}
.wsc_c00150{word-spacing:0.144000pt;}
.ws28_c00150{word-spacing:0.160320pt;}
.ws21_c00150{word-spacing:0.213760pt;}
.wsb_c00150{word-spacing:0.240000pt;}
.ws39_c00150{word-spacing:0.267200pt;}
.ws2c_c00150{word-spacing:0.427520pt;}
.ws20_c00150{word-spacing:0.480960pt;}
.ws38_c00150{word-spacing:0.748160pt;}
.ws2e_c00150{word-spacing:0.801600pt;}
.ws11_c00150{word-spacing:1.728000pt;}
.ws30_c00150{word-spacing:1.763520pt;}
.ws31_c00150{word-spacing:1.977280pt;}
.ws19_c00150{word-spacing:2.112000pt;}
.ws32_c00150{word-spacing:3.420160pt;}
.ws12_c00150{word-spacing:3.520000pt;}
.ws2a_c00150{word-spacing:5.557760pt;}
.ws13_c00150{word-spacing:6.016000pt;}
.ws34_c00150{word-spacing:6.199040pt;}
.ws1c_c00150{word-spacing:6.400000pt;}
.ws1d_c00150{word-spacing:6.720000pt;}
.ws15_c00150{word-spacing:7.424000pt;}
.ws14_c00150{word-spacing:7.808000pt;}
.ws10_c00150{word-spacing:8.128000pt;}
.wsf_c00150{word-spacing:8.512000pt;}
.ws26_c00150{word-spacing:8.603840pt;}
.ws27_c00150{word-spacing:8.871040pt;}
.ws1a_c00150{word-spacing:8.896000pt;}
.ws18_c00150{word-spacing:9.216000pt;}
.ws1b_c00150{word-spacing:9.600000pt;}
.wsd_c00150{word-spacing:12.416000pt;}
.ws35_c00150{word-spacing:16.459520pt;}
.ws16_c00150{word-spacing:16.704000pt;}
.ws17_c00150{word-spacing:17.024000pt;}
.ws3a_c00150{word-spacing:18.704000pt;}
.ws2b_c00150{word-spacing:18.810880pt;}
.ws36_c00150{word-spacing:19.986560pt;}
.ws37_c00150{word-spacing:20.307200pt;}
.ws29_c00150{word-spacing:21.269120pt;}
.ws3b_c00150{word-spacing:21.696640pt;}
.ws2f_c00150{word-spacing:25.758080pt;}
.ws3d_c00150{word-spacing:29.017920pt;}
.ws1e_c00150{word-spacing:30.208000pt;}
.ws33_c00150{word-spacing:31.796800pt;}
.ws3c_c00150{word-spacing:46.225600pt;}
.ws2d_c00150{word-spacing:56.486080pt;}
._1_c00150{margin-left:-0.940800pt;}
._0_c00150{width:1.084800pt;}
._4_c00150{width:1.984000pt;}
._5_c00150{width:7.584000pt;}
._3_c00150{width:8.889600pt;}
._2_c00150{width:12.512000pt;}
._6_c00150{width:17.049600pt;}
._8_c00150{width:18.587200pt;}
._7_c00150{width:30.188800pt;}
._9_c00150{width:31.529600pt;}
.fs0_c00150{font-size:48.000000pt;}
.fs2_c00150{font-size:53.440000pt;}
.fs1_c00150{font-size:64.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y1c_c00150{bottom:2.880000pt;}
.y3a_c00150{bottom:3.120000pt;}
.y1b_c00150{bottom:18.240000pt;}
.y39_c00150{bottom:18.400000pt;}
.y38_c00150{bottom:33.760000pt;}
.y37_c00150{bottom:49.120000pt;}
.y3c_c00150{bottom:50.880000pt;}
.y36_c00150{bottom:64.400000pt;}
.y2a_c00150{bottom:95.120000pt;}
.y34_c00150{bottom:110.400000pt;}
.y27_c00150{bottom:125.760000pt;}
.y3b_c00150{bottom:175.280000pt;}
.y1d_c00150{bottom:188.160000pt;}
.y22_c00150{bottom:202.400000pt;}
.y1e_c00150{bottom:232.960000pt;}
.y20_c00150{bottom:233.120000pt;}
.y2d_c00150{bottom:237.272160pt;}
.y2c_c00150{bottom:252.556000pt;}
.y2b_c00150{bottom:267.920000pt;}
.y29_c00150{bottom:283.276160pt;}
.y35_c00150{bottom:283.280000pt;}
.y28_c00150{bottom:298.560000pt;}
.y33_c00150{bottom:313.920000pt;}
.y32_c00150{bottom:329.260320pt;}
.y26_c00150{bottom:329.276160pt;}
.y31_c00150{bottom:344.544160pt;}
.y25_c00150{bottom:344.560000pt;}
.y30_c00150{bottom:359.908160pt;}
.y24_c00150{bottom:359.916000pt;}
.y2f_c00150{bottom:375.272160pt;}
.y23_c00150{bottom:375.280000pt;}
.y2e_c00150{bottom:390.556000pt;}
.y1f_c00150{bottom:405.760000pt;}
.y21_c00150{bottom:405.920000pt;}
.y1a_c00150{bottom:435.520000pt;}
.y19_c00150{bottom:471.680000pt;}
.y18_c00150{bottom:490.080000pt;}
.y17_c00150{bottom:517.840000pt;}
.y16_c00150{bottom:545.440000pt;}
.y15_c00150{bottom:573.040000pt;}
.y14_c00150{bottom:600.640000pt;}
.y13_c00150{bottom:628.240000pt;}
.y12_c00150{bottom:655.840000pt;}
.y11_c00150{bottom:683.440000pt;}
.y10_c00150{bottom:711.040000pt;}
.yf_c00150{bottom:738.640000pt;}
.ye_c00150{bottom:766.160000pt;}
.yd_c00150{bottom:793.760000pt;}
.yc_c00150{bottom:821.360000pt;}
.yb_c00150{bottom:848.960000pt;}
.ya_c00150{bottom:876.560000pt;}
.y9_c00150{bottom:904.160000pt;}
.y8_c00150{bottom:931.760000pt;}
.y7_c00150{bottom:959.360000pt;}
.y6_c00150{bottom:986.960000pt;}
.y5_c00150{bottom:1005.360000pt;}
.y4_c00150{bottom:1023.040000pt;}
.y3_c00150{bottom:1036.804000pt;}
.y2_c00150{bottom:1050.640000pt;}
.y1_c00150{bottom:1064.400000pt;}
.h6_c00150{height:30.641333pt;}
.h3_c00150{height:47.085938pt;}
.h2_c00150{height:47.109375pt;}
.h9_c00150{height:52.448437pt;}
.h7_c00150{height:53.857500pt;}
.h4_c00150{height:62.812500pt;}
.h5_c00150{height:64.500000pt;}
.h8_c00150{height:245.360000pt;}
.h0_c00150{height:1122.560000pt;}
.h1_c00150{height:1122.666667pt;}
.w2_c00150{width:93.840000pt;}
.w3_c00150{width:224.800000pt;}
.w4_c00150{width:234.160000pt;}
.w5_c00150{width:793.805333pt;}
.w0_c00150{width:793.840000pt;}
.w1_c00150{width:794.000000pt;}
.x0_c00150{left:0.000000pt;}
.xe_c00150{left:6.160000pt;}
.xa_c00150{left:10.080000pt;}
.x8_c00150{left:17.760000pt;}
.xd_c00150{left:30.800000pt;}
.xb_c00150{left:64.240000pt;}
.x3_c00150{left:113.440000pt;}
.x7_c00150{left:114.400000pt;}
.x5_c00150{left:116.080000pt;}
.xf_c00150{left:120.560000pt;}
.x13_c00150{left:126.640000pt;}
.x11_c00150{left:183.600000pt;}
.x9_c00150{left:210.240000pt;}
.x10_c00150{left:216.400000pt;}
.x6_c00150{left:363.360000pt;}
.x2_c00150{left:377.920000pt;}
.x1_c00150{left:396.960000pt;}
.xc_c00150{left:437.040000pt;}
.x12_c00150{left:443.200000pt;}
.x4_c00150{left:509.520000pt;}
.x14_c00150{left:618.960000pt;}
.x16_c00150{left:656.480000pt;}
.x15_c00150{left:872.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_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_2a98a5b8855128c45e6d1d2c.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00151;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00151;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00151{font-family:ff3_c00151;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00151{vertical-align:-61.938000px;}
.v0_c00151{vertical-align:0.000000px;}
.lsc_c00151{letter-spacing:-0.480960px;}
.lsd_c00151{letter-spacing:-0.420840px;}
.lsb_c00151{letter-spacing:-0.240480px;}
.lsa_c00151{letter-spacing:-0.180360px;}
.ls9_c00151{letter-spacing:-0.120240px;}
.ls8_c00151{letter-spacing:-0.060120px;}
.ls7_c00151{letter-spacing:0.000000px;}
.ls2_c00151{letter-spacing:0.090000px;}
.ls3_c00151{letter-spacing:0.120240px;}
.ls1_c00151{letter-spacing:0.140040px;}
.ls6_c00151{letter-spacing:0.180000px;}
.ls5_c00151{letter-spacing:0.180360px;}
.ls4_c00151{letter-spacing:48.336480px;}
.ls0_c00151{letter-spacing:319.518000px;}
.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:-15.210360px;}
.ws1_c00151{word-spacing:-15.150240px;}
.ws3_c00151{word-spacing:-14.969880px;}
.ws2_c00151{word-spacing:-14.849640px;}
.ws4_c00151{word-spacing:-14.789520px;}
.ws34_c00151{word-spacing:-0.420840px;}
.ws6_c00151{word-spacing:-0.162000px;}
.ws51_c00151{word-spacing:-0.120240px;}
.ws47_c00151{word-spacing:-0.060120px;}
.ws5_c00151{word-spacing:0.000000px;}
.wsc_c00151{word-spacing:0.060120px;}
.ws21_c00151{word-spacing:0.120240px;}
.ws1f_c00151{word-spacing:0.180360px;}
.ws20_c00151{word-spacing:0.240480px;}
.ws42_c00151{word-spacing:0.300600px;}
.ws3e_c00151{word-spacing:0.420840px;}
.ws36_c00151{word-spacing:0.480960px;}
.ws41_c00151{word-spacing:0.601200px;}
.ws4b_c00151{word-spacing:1.563120px;}
.ws28_c00151{word-spacing:2.765520px;}
.ws3c_c00151{word-spacing:3.847680px;}
.ws48_c00151{word-spacing:4.148280px;}
.ws49_c00151{word-spacing:4.208400px;}
.ws37_c00151{word-spacing:4.809600px;}
.ws31_c00151{word-spacing:5.651280px;}
.ws22_c00151{word-spacing:6.072120px;}
.ws23_c00151{word-spacing:6.252480px;}
.ws3d_c00151{word-spacing:6.613200px;}
.ws1a_c00151{word-spacing:6.973920px;}
.ws25_c00151{word-spacing:7.094160px;}
.ws1e_c00151{word-spacing:7.334640px;}
.ws10_c00151{word-spacing:7.815600px;}
.ws4f_c00151{word-spacing:9.859680px;}
.ws50_c00151{word-spacing:10.040040px;}
.ws9_c00151{word-spacing:10.220400px;}
.wse_c00151{word-spacing:10.701360px;}
.ws15_c00151{word-spacing:10.941840px;}
.ws44_c00151{word-spacing:11.062080px;}
.wsf_c00151{word-spacing:11.302560px;}
.ws4a_c00151{word-spacing:12.144240px;}
.ws4e_c00151{word-spacing:12.504960px;}
.ws12_c00151{word-spacing:12.745440px;}
.wsb_c00151{word-spacing:13.106160px;}
.wsd_c00151{word-spacing:13.166280px;}
.ws39_c00151{word-spacing:13.587120px;}
.ws3b_c00151{word-spacing:15.030000px;}
.ws4c_c00151{word-spacing:15.631200px;}
.ws4d_c00151{word-spacing:15.751440px;}
.ws55_c00151{word-spacing:15.991920px;}
.ws54_c00151{word-spacing:16.112160px;}
.ws1b_c00151{word-spacing:16.472880px;}
.ws7_c00151{word-spacing:17.194320px;}
.ws8_c00151{word-spacing:17.795520px;}
.ws24_c00151{word-spacing:17.915760px;}
.ws3a_c00151{word-spacing:18.997920px;}
.ws2d_c00151{word-spacing:19.358640px;}
.ws26_c00151{word-spacing:20.801520px;}
.ws27_c00151{word-spacing:21.402720px;}
.ws43_c00151{word-spacing:21.522960px;}
.wsa_c00151{word-spacing:24.048000px;}
.ws46_c00151{word-spacing:24.408720px;}
.ws53_c00151{word-spacing:25.130160px;}
.ws1c_c00151{word-spacing:26.092080px;}
.ws29_c00151{word-spacing:27.895680px;}
.ws52_c00151{word-spacing:29.458800px;}
.ws14_c00151{word-spacing:30.901680px;}
.ws33_c00151{word-spacing:31.142160px;}
.ws32_c00151{word-spacing:31.442760px;}
.ws45_c00151{word-spacing:32.224320px;}
.ws40_c00151{word-spacing:34.088040px;}
.ws30_c00151{word-spacing:37.935720px;}
.ws18_c00151{word-spacing:39.378600px;}
.ws1d_c00151{word-spacing:40.460760px;}
.ws13_c00151{word-spacing:41.182200px;}
.ws2a_c00151{word-spacing:41.542920px;}
.ws16_c00151{word-spacing:42.745320px;}
.ws17_c00151{word-spacing:43.406640px;}
.ws35_c00151{word-spacing:48.216240px;}
.ws11_c00151{word-spacing:48.877560px;}
.ws2f_c00151{word-spacing:49.839480px;}
.ws2e_c00151{word-spacing:50.260320px;}
.ws19_c00151{word-spacing:50.320440px;}
.ws2b_c00151{word-spacing:53.446680px;}
.ws2c_c00151{word-spacing:60.420600px;}
.ws3f_c00151{word-spacing:83.085840px;}
.ws38_c00151{word-spacing:94.208040px;}
._0_c00151{margin-left:-1.665324px;}
._1_c00151{width:1.172340px;}
._3_c00151{width:5.230440px;}
._4_c00151{width:7.575120px;}
._5_c00151{width:10.581120px;}
._2_c00151{width:48.378564px;}
.fc0_c00151{color:rgb(0,0,0);}
.fs0_c00151{font-size:54.000000px;}
.fs2_c00151{font-size:60.120000px;}
.fs1_c00151{font-size:72.000000px;}
.y0_c00151{bottom:0.000000px;}
.y53_c00151{bottom:3.420000px;}
.y52_c00151{bottom:20.700000px;}
.y51_c00151{bottom:37.890000px;}
.y54_c00151{bottom:57.240000px;}
.y4e_c00151{bottom:72.450000px;}
.y4b_c00151{bottom:106.920000px;}
.y5_c00151{bottom:108.540000px;}
.y4a_c00151{bottom:124.200000px;}
.y50_c00151{bottom:146.430000px;}
.y47_c00151{bottom:158.670000px;}
.y4f_c00151{bottom:163.710000px;}
.y4d_c00151{bottom:180.990000px;}
.y4c_c00151{bottom:198.180000px;}
.y49_c00151{bottom:232.735680px;}
.y42_c00151{bottom:244.890000px;}
.y48_c00151{bottom:249.930000px;}
.y41_c00151{bottom:262.170000px;}
.y40_c00151{bottom:279.450000px;}
.y46_c00151{bottom:284.476680px;}
.y3f_c00151{bottom:296.640000px;}
.y45_c00151{bottom:301.671000px;}
.y3e_c00151{bottom:313.920000px;}
.y44_c00151{bottom:318.955500px;}
.y3d_c00151{bottom:331.200000px;}
.y43_c00151{bottom:336.240000px;}
.y39_c00151{bottom:400.140000px;}
.y38_c00151{bottom:417.420000px;}
.y37_c00151{bottom:434.610000px;}
.y36_c00151{bottom:451.890000px;}
.y3c_c00151{bottom:456.925500px;}
.y3b_c00151{bottom:474.210000px;}
.y3a_c00151{bottom:491.400000px;}
.y33_c00151{bottom:503.640000px;}
.y32_c00151{bottom:520.920000px;}
.y31_c00151{bottom:538.110000px;}
.y30_c00151{bottom:555.390000px;}
.y2f_c00151{bottom:572.670000px;}
.y35_c00151{bottom:577.705680px;}
.y34_c00151{bottom:594.900000px;}
.y1f_c00151{bottom:641.610000px;}
.y1e_c00151{bottom:658.890000px;}
.y1d_c00151{bottom:676.170000px;}
.y2e_c00151{bottom:698.400000px;}
.y1b_c00151{bottom:710.640000px;}
.y2d_c00151{bottom:715.653360px;}
.y21_c00151{bottom:715.675500px;}
.y2c_c00151{bottom:732.937860px;}
.y20_c00151{bottom:732.960000px;}
.y25_c00151{bottom:745.110000px;}
.y2b_c00151{bottom:750.132180px;}
.y24_c00151{bottom:762.390000px;}
.y2a_c00151{bottom:767.416680px;}
.y17_c00151{bottom:779.580000px;}
.y29_c00151{bottom:784.701180px;}
.y16_c00151{bottom:796.860000px;}
.y28_c00151{bottom:801.895500px;}
.y1c_c00151{bottom:801.900000px;}
.y23_c00151{bottom:814.140000px;}
.y27_c00151{bottom:819.180000px;}
.y13_c00151{bottom:831.330000px;}
.y1a_c00151{bottom:836.455680px;}
.y26_c00151{bottom:836.460000px;}
.y12_c00151{bottom:848.610000px;}
.y19_c00151{bottom:853.650000px;}
.y11_c00151{bottom:865.890000px;}
.y18_c00151{bottom:870.930000px;}
.y10_c00151{bottom:883.080000px;}
.yf_c00151{bottom:900.360000px;}
.y15_c00151{bottom:905.395500px;}
.y14_c00151{bottom:922.680000px;}
.yd_c00151{bottom:934.830000px;}
.yb_c00151{bottom:952.110000px;}
.y22_c00151{bottom:969.390000px;}
.y9_c00151{bottom:986.580000px;}
.y6_c00151{bottom:1003.680000px;}
.y7_c00151{bottom:1003.860000px;}
.ye_c00151{bottom:1026.180000px;}
.yc_c00151{bottom:1043.370000px;}
.ya_c00151{bottom:1077.930000px;}
.y8_c00151{bottom:1095.120000px;}
.y4_c00151{bottom:1131.030000px;}
.y3_c00151{bottom:1150.915500px;}
.y2_c00151{bottom:1166.400000px;}
.y1_c00151{bottom:1197.450000px;}
.h2_c00151{height:52.998047px;}
.h6_c00151{height:59.004492px;}
.h5_c00151{height:60.589687px;}
.h3_c00151{height:70.664062px;}
.h4_c00151{height:1017.630000px;}
.h0_c00151{height:1262.880000px;}
.h1_c00151{height:1263.000000px;}
.w2_c00151{width:105.570000px;}
.w3_c00151{width:252.900000px;}
.w4_c00151{width:263.430000px;}
.w0_c00151{width:893.070000px;}
.w1_c00151{width:893.250000px;}
.x0_c00151{left:0.000000px;}
.x4_c00151{left:6.930000px;}
.x10_c00151{left:31.860000px;}
.x7_c00151{left:89.190000px;}
.xd_c00151{left:100.260000px;}
.x9_c00151{left:104.040000px;}
.xc_c00151{left:106.740000px;}
.x2_c00151{left:127.620000px;}
.x3_c00151{left:128.700000px;}
.xe_c00151{left:132.480000px;}
.xf_c00151{left:159.480000px;}
.x8_c00151{left:178.110000px;}
.x5_c00151{left:236.520000px;}
.x6_c00151{left:243.450000px;}
.x1_c00151{left:446.580000px;}
.xa_c00151{left:491.670000px;}
.xb_c00151{left:498.600000px;}
@media print{
.v1_c00151{vertical-align:-55.056000pt;}
.v0_c00151{vertical-align:0.000000pt;}
.lsc_c00151{letter-spacing:-0.427520pt;}
.lsd_c00151{letter-spacing:-0.374080pt;}
.lsb_c00151{letter-spacing:-0.213760pt;}
.lsa_c00151{letter-spacing:-0.160320pt;}
.ls9_c00151{letter-spacing:-0.106880pt;}
.ls8_c00151{letter-spacing:-0.053440pt;}
.ls7_c00151{letter-spacing:0.000000pt;}
.ls2_c00151{letter-spacing:0.080000pt;}
.ls3_c00151{letter-spacing:0.106880pt;}
.ls1_c00151{letter-spacing:0.124480pt;}
.ls6_c00151{letter-spacing:0.160000pt;}
.ls5_c00151{letter-spacing:0.160320pt;}
.ls4_c00151{letter-spacing:42.965760pt;}
.ls0_c00151{letter-spacing:284.016000pt;}
.ws0_c00151{word-spacing:-13.520320pt;}
.ws1_c00151{word-spacing:-13.466880pt;}
.ws3_c00151{word-spacing:-13.306560pt;}
.ws2_c00151{word-spacing:-13.199680pt;}
.ws4_c00151{word-spacing:-13.146240pt;}
.ws34_c00151{word-spacing:-0.374080pt;}
.ws6_c00151{word-spacing:-0.144000pt;}
.ws51_c00151{word-spacing:-0.106880pt;}
.ws47_c00151{word-spacing:-0.053440pt;}
.ws5_c00151{word-spacing:0.000000pt;}
.wsc_c00151{word-spacing:0.053440pt;}
.ws21_c00151{word-spacing:0.106880pt;}
.ws1f_c00151{word-spacing:0.160320pt;}
.ws20_c00151{word-spacing:0.213760pt;}
.ws42_c00151{word-spacing:0.267200pt;}
.ws3e_c00151{word-spacing:0.374080pt;}
.ws36_c00151{word-spacing:0.427520pt;}
.ws41_c00151{word-spacing:0.534400pt;}
.ws4b_c00151{word-spacing:1.389440pt;}
.ws28_c00151{word-spacing:2.458240pt;}
.ws3c_c00151{word-spacing:3.420160pt;}
.ws48_c00151{word-spacing:3.687360pt;}
.ws49_c00151{word-spacing:3.740800pt;}
.ws37_c00151{word-spacing:4.275200pt;}
.ws31_c00151{word-spacing:5.023360pt;}
.ws22_c00151{word-spacing:5.397440pt;}
.ws23_c00151{word-spacing:5.557760pt;}
.ws3d_c00151{word-spacing:5.878400pt;}
.ws1a_c00151{word-spacing:6.199040pt;}
.ws25_c00151{word-spacing:6.305920pt;}
.ws1e_c00151{word-spacing:6.519680pt;}
.ws10_c00151{word-spacing:6.947200pt;}
.ws4f_c00151{word-spacing:8.764160pt;}
.ws50_c00151{word-spacing:8.924480pt;}
.ws9_c00151{word-spacing:9.084800pt;}
.wse_c00151{word-spacing:9.512320pt;}
.ws15_c00151{word-spacing:9.726080pt;}
.ws44_c00151{word-spacing:9.832960pt;}
.wsf_c00151{word-spacing:10.046720pt;}
.ws4a_c00151{word-spacing:10.794880pt;}
.ws4e_c00151{word-spacing:11.115520pt;}
.ws12_c00151{word-spacing:11.329280pt;}
.wsb_c00151{word-spacing:11.649920pt;}
.wsd_c00151{word-spacing:11.703360pt;}
.ws39_c00151{word-spacing:12.077440pt;}
.ws3b_c00151{word-spacing:13.360000pt;}
.ws4c_c00151{word-spacing:13.894400pt;}
.ws4d_c00151{word-spacing:14.001280pt;}
.ws55_c00151{word-spacing:14.215040pt;}
.ws54_c00151{word-spacing:14.321920pt;}
.ws1b_c00151{word-spacing:14.642560pt;}
.ws7_c00151{word-spacing:15.283840pt;}
.ws8_c00151{word-spacing:15.818240pt;}
.ws24_c00151{word-spacing:15.925120pt;}
.ws3a_c00151{word-spacing:16.887040pt;}
.ws2d_c00151{word-spacing:17.207680pt;}
.ws26_c00151{word-spacing:18.490240pt;}
.ws27_c00151{word-spacing:19.024640pt;}
.ws43_c00151{word-spacing:19.131520pt;}
.wsa_c00151{word-spacing:21.376000pt;}
.ws46_c00151{word-spacing:21.696640pt;}
.ws53_c00151{word-spacing:22.337920pt;}
.ws1c_c00151{word-spacing:23.192960pt;}
.ws29_c00151{word-spacing:24.796160pt;}
.ws52_c00151{word-spacing:26.185600pt;}
.ws14_c00151{word-spacing:27.468160pt;}
.ws33_c00151{word-spacing:27.681920pt;}
.ws32_c00151{word-spacing:27.949120pt;}
.ws45_c00151{word-spacing:28.643840pt;}
.ws40_c00151{word-spacing:30.300480pt;}
.ws30_c00151{word-spacing:33.720640pt;}
.ws18_c00151{word-spacing:35.003200pt;}
.ws1d_c00151{word-spacing:35.965120pt;}
.ws13_c00151{word-spacing:36.606400pt;}
.ws2a_c00151{word-spacing:36.927040pt;}
.ws16_c00151{word-spacing:37.995840pt;}
.ws17_c00151{word-spacing:38.583680pt;}
.ws35_c00151{word-spacing:42.858880pt;}
.ws11_c00151{word-spacing:43.446720pt;}
.ws2f_c00151{word-spacing:44.301760pt;}
.ws2e_c00151{word-spacing:44.675840pt;}
.ws19_c00151{word-spacing:44.729280pt;}
.ws2b_c00151{word-spacing:47.508160pt;}
.ws2c_c00151{word-spacing:53.707200pt;}
.ws3f_c00151{word-spacing:73.854080pt;}
.ws38_c00151{word-spacing:83.740480pt;}
._0_c00151{margin-left:-1.480288pt;}
._1_c00151{width:1.042080pt;}
._3_c00151{width:4.649280pt;}
._4_c00151{width:6.733440pt;}
._5_c00151{width:9.405440pt;}
._2_c00151{width:43.003168pt;}
.fs0_c00151{font-size:48.000000pt;}
.fs2_c00151{font-size:53.440000pt;}
.fs1_c00151{font-size:64.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y53_c00151{bottom:3.040000pt;}
.y52_c00151{bottom:18.400000pt;}
.y51_c00151{bottom:33.680000pt;}
.y54_c00151{bottom:50.880000pt;}
.y4e_c00151{bottom:64.400000pt;}
.y4b_c00151{bottom:95.040000pt;}
.y5_c00151{bottom:96.480000pt;}
.y4a_c00151{bottom:110.400000pt;}
.y50_c00151{bottom:130.160000pt;}
.y47_c00151{bottom:141.040000pt;}
.y4f_c00151{bottom:145.520000pt;}
.y4d_c00151{bottom:160.880000pt;}
.y4c_c00151{bottom:176.160000pt;}
.y49_c00151{bottom:206.876160pt;}
.y42_c00151{bottom:217.680000pt;}
.y48_c00151{bottom:222.160000pt;}
.y41_c00151{bottom:233.040000pt;}
.y40_c00151{bottom:248.400000pt;}
.y46_c00151{bottom:252.868160pt;}
.y3f_c00151{bottom:263.680000pt;}
.y45_c00151{bottom:268.152000pt;}
.y3e_c00151{bottom:279.040000pt;}
.y44_c00151{bottom:283.516000pt;}
.y3d_c00151{bottom:294.400000pt;}
.y43_c00151{bottom:298.880000pt;}
.y39_c00151{bottom:355.680000pt;}
.y38_c00151{bottom:371.040000pt;}
.y37_c00151{bottom:386.320000pt;}
.y36_c00151{bottom:401.680000pt;}
.y3c_c00151{bottom:406.156000pt;}
.y3b_c00151{bottom:421.520000pt;}
.y3a_c00151{bottom:436.800000pt;}
.y33_c00151{bottom:447.680000pt;}
.y32_c00151{bottom:463.040000pt;}
.y31_c00151{bottom:478.320000pt;}
.y30_c00151{bottom:493.680000pt;}
.y2f_c00151{bottom:509.040000pt;}
.y35_c00151{bottom:513.516160pt;}
.y34_c00151{bottom:528.800000pt;}
.y1f_c00151{bottom:570.320000pt;}
.y1e_c00151{bottom:585.680000pt;}
.y1d_c00151{bottom:601.040000pt;}
.y2e_c00151{bottom:620.800000pt;}
.y1b_c00151{bottom:631.680000pt;}
.y2d_c00151{bottom:636.136320pt;}
.y21_c00151{bottom:636.156000pt;}
.y2c_c00151{bottom:651.500320pt;}
.y20_c00151{bottom:651.520000pt;}
.y25_c00151{bottom:662.320000pt;}
.y2b_c00151{bottom:666.784160pt;}
.y24_c00151{bottom:677.680000pt;}
.y2a_c00151{bottom:682.148160pt;}
.y17_c00151{bottom:692.960000pt;}
.y29_c00151{bottom:697.512160pt;}
.y16_c00151{bottom:708.320000pt;}
.y28_c00151{bottom:712.796000pt;}
.y1c_c00151{bottom:712.800000pt;}
.y23_c00151{bottom:723.680000pt;}
.y27_c00151{bottom:728.160000pt;}
.y13_c00151{bottom:738.960000pt;}
.y1a_c00151{bottom:743.516160pt;}
.y26_c00151{bottom:743.520000pt;}
.y12_c00151{bottom:754.320000pt;}
.y19_c00151{bottom:758.800000pt;}
.y11_c00151{bottom:769.680000pt;}
.y18_c00151{bottom:774.160000pt;}
.y10_c00151{bottom:784.960000pt;}
.yf_c00151{bottom:800.320000pt;}
.y15_c00151{bottom:804.796000pt;}
.y14_c00151{bottom:820.160000pt;}
.yd_c00151{bottom:830.960000pt;}
.yb_c00151{bottom:846.320000pt;}
.y22_c00151{bottom:861.680000pt;}
.y9_c00151{bottom:876.960000pt;}
.y6_c00151{bottom:892.160000pt;}
.y7_c00151{bottom:892.320000pt;}
.ye_c00151{bottom:912.160000pt;}
.yc_c00151{bottom:927.440000pt;}
.ya_c00151{bottom:958.160000pt;}
.y8_c00151{bottom:973.440000pt;}
.y4_c00151{bottom:1005.360000pt;}
.y3_c00151{bottom:1023.036000pt;}
.y2_c00151{bottom:1036.800000pt;}
.y1_c00151{bottom:1064.400000pt;}
.h2_c00151{height:47.109375pt;}
.h6_c00151{height:52.448437pt;}
.h5_c00151{height:53.857500pt;}
.h3_c00151{height:62.812500pt;}
.h4_c00151{height:904.560000pt;}
.h0_c00151{height:1122.560000pt;}
.h1_c00151{height:1122.666667pt;}
.w2_c00151{width:93.840000pt;}
.w3_c00151{width:224.800000pt;}
.w4_c00151{width:234.160000pt;}
.w0_c00151{width:793.840000pt;}
.w1_c00151{width:794.000000pt;}
.x0_c00151{left:0.000000pt;}
.x4_c00151{left:6.160000pt;}
.x10_c00151{left:28.320000pt;}
.x7_c00151{left:79.280000pt;}
.xd_c00151{left:89.120000pt;}
.x9_c00151{left:92.480000pt;}
.xc_c00151{left:94.880000pt;}
.x2_c00151{left:113.440000pt;}
.x3_c00151{left:114.400000pt;}
.xe_c00151{left:117.760000pt;}
.xf_c00151{left:141.760000pt;}
.x8_c00151{left:158.320000pt;}
.x5_c00151{left:210.240000pt;}
.x6_c00151{left:216.400000pt;}
.x1_c00151{left:396.960000pt;}
.xa_c00151{left:437.040000pt;}
.xb_c00151{left:443.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_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_d3a020e4cf9e815d2ee6dc39.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00152{letter-spacing:-0.480960px;}
.ls7_c00152{letter-spacing:-0.420840px;}
.ls8_c00152{letter-spacing:-0.180360px;}
.ls9_c00152{letter-spacing:-0.120240px;}
.ls5_c00152{letter-spacing:-0.108000px;}
.ls6_c00152{letter-spacing:-0.060120px;}
.ls4_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:0.120240px;}
.ls3_c00152{letter-spacing:0.140040px;}
.ls2_c00152{letter-spacing:0.180360px;}
.ls1_c00152{letter-spacing:1.863720px;}
.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;}
}
.ws3_c00152{word-spacing:-15.210360px;}
.ws2_c00152{word-spacing:-14.909760px;}
.ws1_c00152{word-spacing:-14.849640px;}
.ws0_c00152{word-spacing:-14.609160px;}
.ws15_c00152{word-spacing:-0.420840px;}
.wsb_c00152{word-spacing:-0.180360px;}
.ws30_c00152{word-spacing:-0.120240px;}
.ws35_c00152{word-spacing:-0.060120px;}
.ws4_c00152{word-spacing:0.000000px;}
.ws1f_c00152{word-spacing:0.120240px;}
.ws6_c00152{word-spacing:0.162000px;}
.ws2d_c00152{word-spacing:0.180360px;}
.ws3d_c00152{word-spacing:0.240480px;}
.ws5_c00152{word-spacing:0.270000px;}
.ws1a_c00152{word-spacing:0.300600px;}
.ws13_c00152{word-spacing:0.420840px;}
.ws3e_c00152{word-spacing:0.480960px;}
.ws1b_c00152{word-spacing:1.683360px;}
.ws1c_c00152{word-spacing:1.923840px;}
.ws26_c00152{word-spacing:2.645280px;}
.ws2e_c00152{word-spacing:4.088160px;}
.ws27_c00152{word-spacing:4.208400px;}
.ws7_c00152{word-spacing:5.290560px;}
.ws17_c00152{word-spacing:5.531040px;}
.ws28_c00152{word-spacing:5.891760px;}
.ws41_c00152{word-spacing:5.951880px;}
.ws20_c00152{word-spacing:6.012000px;}
.ws1d_c00152{word-spacing:7.815600px;}
.ws1e_c00152{word-spacing:7.875720px;}
.ws29_c00152{word-spacing:8.537040px;}
.ws14_c00152{word-spacing:9.619200px;}
.wsd_c00152{word-spacing:10.340640px;}
.ws16_c00152{word-spacing:10.581120px;}
.ws42_c00152{word-spacing:11.062080px;}
.ws12_c00152{word-spacing:13.827600px;}
.wse_c00152{word-spacing:16.472880px;}
.ws3a_c00152{word-spacing:18.877680px;}
.ws10_c00152{word-spacing:18.997920px;}
.ws3c_c00152{word-spacing:19.238400px;}
.ws3b_c00152{word-spacing:20.320560px;}
.ws31_c00152{word-spacing:21.402720px;}
.ws39_c00152{word-spacing:21.883680px;}
.ws43_c00152{word-spacing:23.206320px;}
.ws32_c00152{word-spacing:25.490880px;}
.ws2b_c00152{word-spacing:26.813520px;}
.ws36_c00152{word-spacing:26.993880px;}
.ws37_c00152{word-spacing:27.174240px;}
.ws33_c00152{word-spacing:28.256400px;}
.wsc_c00152{word-spacing:28.737360px;}
.ws2f_c00152{word-spacing:30.781440px;}
.ws21_c00152{word-spacing:34.749360px;}
.ws44_c00152{word-spacing:35.410680px;}
.ws19_c00152{word-spacing:35.891640px;}
.ws3f_c00152{word-spacing:36.312480px;}
.ws40_c00152{word-spacing:36.492840px;}
.ws2a_c00152{word-spacing:37.575000px;}
.ws23_c00152{word-spacing:37.935720px;}
.ws24_c00152{word-spacing:37.995840px;}
.ws9_c00152{word-spacing:40.100040px;}
.ws8_c00152{word-spacing:41.542920px;}
.ws22_c00152{word-spacing:42.625080px;}
.wsa_c00152{word-spacing:42.985800px;}
.ws25_c00152{word-spacing:43.707240px;}
.ws2c_c00152{word-spacing:54.528840px;}
.ws34_c00152{word-spacing:61.382520px;}
.ws11_c00152{word-spacing:62.164080px;}
.ws38_c00152{word-spacing:65.711160px;}
.wsf_c00152{word-spacing:67.815360px;}
.ws18_c00152{word-spacing:68.897520px;}
._1_c00152{margin-left:-1.058400px;}
._0_c00152{width:1.220400px;}
._2_c00152{width:44.308440px;}
.fc0_c00152{color:rgb(0,0,0);}
.fs0_c00152{font-size:54.000000px;}
.fs2_c00152{font-size:60.120000px;}
.fs1_c00152{font-size:72.000000px;}
.y0_c00152{bottom:0.000000px;}
.y37_c00152{bottom:3.420000px;}
.y44_c00152{bottom:3.510000px;}
.y36_c00152{bottom:20.700000px;}
.y35_c00152{bottom:37.980000px;}
.y42_c00152{bottom:55.170000px;}
.y4b_c00152{bottom:57.240000px;}
.y33_c00152{bottom:72.450000px;}
.y32_c00152{bottom:89.730000px;}
.y3f_c00152{bottom:106.920000px;}
.y30_c00152{bottom:124.200000px;}
.y38_c00152{bottom:125.010000px;}
.y2f_c00152{bottom:141.390000px;}
.y3e_c00152{bottom:141.480000px;}
.y4a_c00152{bottom:145.701180px;}
.y3d_c00152{bottom:158.670000px;}
.y49_c00152{bottom:162.985680px;}
.y43_c00152{bottom:162.990000px;}
.y48_c00152{bottom:180.180000px;}
.y41_c00152{bottom:197.460000px;}
.y39_c00152{bottom:210.240000px;}
.y2a_c00152{bottom:210.420000px;}
.y40_c00152{bottom:214.740000px;}
.y29_c00152{bottom:227.700000px;}
.y27_c00152{bottom:244.890000px;}
.y26_c00152{bottom:262.170000px;}
.y47_c00152{bottom:266.490000px;}
.y3c_c00152{bottom:283.680000px;}
.y24_c00152{bottom:296.640000px;}
.y3b_c00152{bottom:300.775500px;}
.y46_c00152{bottom:300.955500px;}
.y3a_c00152{bottom:318.060000px;}
.y45_c00152{bottom:318.240000px;}
.y22_c00152{bottom:331.200000px;}
.y21_c00152{bottom:348.390000px;}
.y6_c00152{bottom:350.010000px;}
.y1f_c00152{bottom:365.670000px;}
.y1e_c00152{bottom:382.950000px;}
.y1d_c00152{bottom:400.140000px;}
.y34_c00152{bottom:405.180000px;}
.y31_c00152{bottom:456.930000px;}
.y18_c00152{bottom:486.450000px;}
.y2e_c00152{bottom:491.395500px;}
.y17_c00152{bottom:503.640000px;}
.y2d_c00152{bottom:508.680000px;}
.y2c_c00152{bottom:525.955680px;}
.y15_c00152{bottom:538.110000px;}
.y2b_c00152{bottom:543.150000px;}
.y13_c00152{bottom:572.670000px;}
.y28_c00152{bottom:577.710000px;}
.y11_c00152{bottom:607.140000px;}
.y10_c00152{bottom:624.420000px;}
.y25_c00152{bottom:629.460000px;}
.yf_c00152{bottom:641.610000px;}
.ye_c00152{bottom:658.890000px;}
.y23_c00152{bottom:663.930000px;}
.yd_c00152{bottom:676.170000px;}
.yc_c00152{bottom:693.360000px;}
.y20_c00152{bottom:698.400000px;}
.ya_c00152{bottom:710.640000px;}
.y9_c00152{bottom:727.920000px;}
.y8_c00152{bottom:745.110000px;}
.y7_c00152{bottom:762.390000px;}
.y1c_c00152{bottom:767.421180px;}
.y1b_c00152{bottom:784.705680px;}
.y1a_c00152{bottom:801.900000px;}
.y19_c00152{bottom:819.180000px;}
.y16_c00152{bottom:870.930000px;}
.y14_c00152{bottom:905.400000px;}
.y12_c00152{bottom:939.870000px;}
.yb_c00152{bottom:1043.370000px;}
.y5_c00152{bottom:1131.030000px;}
.y4_c00152{bottom:1150.920000px;}
.y3_c00152{bottom:1166.404500px;}
.y2_c00152{bottom:1181.970000px;}
.y1_c00152{bottom:1197.450000px;}
.h3_c00152{height:52.971680px;}
.h2_c00152{height:52.998047px;}
.h6_c00152{height:59.004492px;}
.h8_c00152{height:60.589687px;}
.h4_c00152{height:70.664062px;}
.h7_c00152{height:224.190000px;}
.h5_c00152{height:776.160000px;}
.h0_c00152{height:1262.880000px;}
.h1_c00152{height:1263.000000px;}
.w3_c00152{width:105.570000px;}
.w4_c00152{width:252.900000px;}
.w2_c00152{width:263.430000px;}
.w0_c00152{width:893.070000px;}
.w1_c00152{width:893.250000px;}
.x0_c00152{left:0.000000px;}
.x5_c00152{left:6.930000px;}
.x7_c00152{left:19.440000px;}
.xa_c00152{left:56.790000px;}
.x9_c00152{left:73.620000px;}
.xe_c00152{left:95.220000px;}
.xf_c00152{left:98.640000px;}
.x3_c00152{left:127.620000px;}
.xb_c00152{left:128.700000px;}
.x8_c00152{left:195.750000px;}
.xc_c00152{left:236.520000px;}
.xd_c00152{left:243.450000px;}
.x2_c00152{left:425.160000px;}
.x1_c00152{left:446.580000px;}
.x4_c00152{left:491.670000px;}
.x6_c00152{left:498.600000px;}
.x10_c00152{left:738.540000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.lsa_c00152{letter-spacing:-0.427520pt;}
.ls7_c00152{letter-spacing:-0.374080pt;}
.ls8_c00152{letter-spacing:-0.160320pt;}
.ls9_c00152{letter-spacing:-0.106880pt;}
.ls5_c00152{letter-spacing:-0.096000pt;}
.ls6_c00152{letter-spacing:-0.053440pt;}
.ls4_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:0.106880pt;}
.ls3_c00152{letter-spacing:0.124480pt;}
.ls2_c00152{letter-spacing:0.160320pt;}
.ls1_c00152{letter-spacing:1.656640pt;}
.ws3_c00152{word-spacing:-13.520320pt;}
.ws2_c00152{word-spacing:-13.253120pt;}
.ws1_c00152{word-spacing:-13.199680pt;}
.ws0_c00152{word-spacing:-12.985920pt;}
.ws15_c00152{word-spacing:-0.374080pt;}
.wsb_c00152{word-spacing:-0.160320pt;}
.ws30_c00152{word-spacing:-0.106880pt;}
.ws35_c00152{word-spacing:-0.053440pt;}
.ws4_c00152{word-spacing:0.000000pt;}
.ws1f_c00152{word-spacing:0.106880pt;}
.ws6_c00152{word-spacing:0.144000pt;}
.ws2d_c00152{word-spacing:0.160320pt;}
.ws3d_c00152{word-spacing:0.213760pt;}
.ws5_c00152{word-spacing:0.240000pt;}
.ws1a_c00152{word-spacing:0.267200pt;}
.ws13_c00152{word-spacing:0.374080pt;}
.ws3e_c00152{word-spacing:0.427520pt;}
.ws1b_c00152{word-spacing:1.496320pt;}
.ws1c_c00152{word-spacing:1.710080pt;}
.ws26_c00152{word-spacing:2.351360pt;}
.ws2e_c00152{word-spacing:3.633920pt;}
.ws27_c00152{word-spacing:3.740800pt;}
.ws7_c00152{word-spacing:4.702720pt;}
.ws17_c00152{word-spacing:4.916480pt;}
.ws28_c00152{word-spacing:5.237120pt;}
.ws41_c00152{word-spacing:5.290560pt;}
.ws20_c00152{word-spacing:5.344000pt;}
.ws1d_c00152{word-spacing:6.947200pt;}
.ws1e_c00152{word-spacing:7.000640pt;}
.ws29_c00152{word-spacing:7.588480pt;}
.ws14_c00152{word-spacing:8.550400pt;}
.wsd_c00152{word-spacing:9.191680pt;}
.ws16_c00152{word-spacing:9.405440pt;}
.ws42_c00152{word-spacing:9.832960pt;}
.ws12_c00152{word-spacing:12.291200pt;}
.wse_c00152{word-spacing:14.642560pt;}
.ws3a_c00152{word-spacing:16.780160pt;}
.ws10_c00152{word-spacing:16.887040pt;}
.ws3c_c00152{word-spacing:17.100800pt;}
.ws3b_c00152{word-spacing:18.062720pt;}
.ws31_c00152{word-spacing:19.024640pt;}
.ws39_c00152{word-spacing:19.452160pt;}
.ws43_c00152{word-spacing:20.627840pt;}
.ws32_c00152{word-spacing:22.658560pt;}
.ws2b_c00152{word-spacing:23.834240pt;}
.ws36_c00152{word-spacing:23.994560pt;}
.ws37_c00152{word-spacing:24.154880pt;}
.ws33_c00152{word-spacing:25.116800pt;}
.wsc_c00152{word-spacing:25.544320pt;}
.ws2f_c00152{word-spacing:27.361280pt;}
.ws21_c00152{word-spacing:30.888320pt;}
.ws44_c00152{word-spacing:31.476160pt;}
.ws19_c00152{word-spacing:31.903680pt;}
.ws3f_c00152{word-spacing:32.277760pt;}
.ws40_c00152{word-spacing:32.438080pt;}
.ws2a_c00152{word-spacing:33.400000pt;}
.ws23_c00152{word-spacing:33.720640pt;}
.ws24_c00152{word-spacing:33.774080pt;}
.ws9_c00152{word-spacing:35.644480pt;}
.ws8_c00152{word-spacing:36.927040pt;}
.ws22_c00152{word-spacing:37.888960pt;}
.wsa_c00152{word-spacing:38.209600pt;}
.ws25_c00152{word-spacing:38.850880pt;}
.ws2c_c00152{word-spacing:48.470080pt;}
.ws34_c00152{word-spacing:54.562240pt;}
.ws11_c00152{word-spacing:55.256960pt;}
.ws38_c00152{word-spacing:58.409920pt;}
.wsf_c00152{word-spacing:60.280320pt;}
.ws18_c00152{word-spacing:61.242240pt;}
._1_c00152{margin-left:-0.940800pt;}
._0_c00152{width:1.084800pt;}
._2_c00152{width:39.385280pt;}
.fs0_c00152{font-size:48.000000pt;}
.fs2_c00152{font-size:53.440000pt;}
.fs1_c00152{font-size:64.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y37_c00152{bottom:3.040000pt;}
.y44_c00152{bottom:3.120000pt;}
.y36_c00152{bottom:18.400000pt;}
.y35_c00152{bottom:33.760000pt;}
.y42_c00152{bottom:49.040000pt;}
.y4b_c00152{bottom:50.880000pt;}
.y33_c00152{bottom:64.400000pt;}
.y32_c00152{bottom:79.760000pt;}
.y3f_c00152{bottom:95.040000pt;}
.y30_c00152{bottom:110.400000pt;}
.y38_c00152{bottom:111.120000pt;}
.y2f_c00152{bottom:125.680000pt;}
.y3e_c00152{bottom:125.760000pt;}
.y4a_c00152{bottom:129.512160pt;}
.y3d_c00152{bottom:141.040000pt;}
.y49_c00152{bottom:144.876160pt;}
.y43_c00152{bottom:144.880000pt;}
.y48_c00152{bottom:160.160000pt;}
.y41_c00152{bottom:175.520000pt;}
.y39_c00152{bottom:186.880000pt;}
.y2a_c00152{bottom:187.040000pt;}
.y40_c00152{bottom:190.880000pt;}
.y29_c00152{bottom:202.400000pt;}
.y27_c00152{bottom:217.680000pt;}
.y26_c00152{bottom:233.040000pt;}
.y47_c00152{bottom:236.880000pt;}
.y3c_c00152{bottom:252.160000pt;}
.y24_c00152{bottom:263.680000pt;}
.y3b_c00152{bottom:267.356000pt;}
.y46_c00152{bottom:267.516000pt;}
.y3a_c00152{bottom:282.720000pt;}
.y45_c00152{bottom:282.880000pt;}
.y22_c00152{bottom:294.400000pt;}
.y21_c00152{bottom:309.680000pt;}
.y6_c00152{bottom:311.120000pt;}
.y1f_c00152{bottom:325.040000pt;}
.y1e_c00152{bottom:340.400000pt;}
.y1d_c00152{bottom:355.680000pt;}
.y34_c00152{bottom:360.160000pt;}
.y31_c00152{bottom:406.160000pt;}
.y18_c00152{bottom:432.400000pt;}
.y2e_c00152{bottom:436.796000pt;}
.y17_c00152{bottom:447.680000pt;}
.y2d_c00152{bottom:452.160000pt;}
.y2c_c00152{bottom:467.516160pt;}
.y15_c00152{bottom:478.320000pt;}
.y2b_c00152{bottom:482.800000pt;}
.y13_c00152{bottom:509.040000pt;}
.y28_c00152{bottom:513.520000pt;}
.y11_c00152{bottom:539.680000pt;}
.y10_c00152{bottom:555.040000pt;}
.y25_c00152{bottom:559.520000pt;}
.yf_c00152{bottom:570.320000pt;}
.ye_c00152{bottom:585.680000pt;}
.y23_c00152{bottom:590.160000pt;}
.yd_c00152{bottom:601.040000pt;}
.yc_c00152{bottom:616.320000pt;}
.y20_c00152{bottom:620.800000pt;}
.ya_c00152{bottom:631.680000pt;}
.y9_c00152{bottom:647.040000pt;}
.y8_c00152{bottom:662.320000pt;}
.y7_c00152{bottom:677.680000pt;}
.y1c_c00152{bottom:682.152160pt;}
.y1b_c00152{bottom:697.516160pt;}
.y1a_c00152{bottom:712.800000pt;}
.y19_c00152{bottom:728.160000pt;}
.y16_c00152{bottom:774.160000pt;}
.y14_c00152{bottom:804.800000pt;}
.y12_c00152{bottom:835.440000pt;}
.yb_c00152{bottom:927.440000pt;}
.y5_c00152{bottom:1005.360000pt;}
.y4_c00152{bottom:1023.040000pt;}
.y3_c00152{bottom:1036.804000pt;}
.y2_c00152{bottom:1050.640000pt;}
.y1_c00152{bottom:1064.400000pt;}
.h3_c00152{height:47.085938pt;}
.h2_c00152{height:47.109375pt;}
.h6_c00152{height:52.448437pt;}
.h8_c00152{height:53.857500pt;}
.h4_c00152{height:62.812500pt;}
.h7_c00152{height:199.280000pt;}
.h5_c00152{height:689.920000pt;}
.h0_c00152{height:1122.560000pt;}
.h1_c00152{height:1122.666667pt;}
.w3_c00152{width:93.840000pt;}
.w4_c00152{width:224.800000pt;}
.w2_c00152{width:234.160000pt;}
.w0_c00152{width:793.840000pt;}
.w1_c00152{width:794.000000pt;}
.x0_c00152{left:0.000000pt;}
.x5_c00152{left:6.160000pt;}
.x7_c00152{left:17.280000pt;}
.xa_c00152{left:50.480000pt;}
.x9_c00152{left:65.440000pt;}
.xe_c00152{left:84.640000pt;}
.xf_c00152{left:87.680000pt;}
.x3_c00152{left:113.440000pt;}
.xb_c00152{left:114.400000pt;}
.x8_c00152{left:174.000000pt;}
.xc_c00152{left:210.240000pt;}
.xd_c00152{left:216.400000pt;}
.x2_c00152{left:377.920000pt;}
.x1_c00152{left:396.960000pt;}
.x4_c00152{left:437.040000pt;}
.x6_c00152{left:443.200000pt;}
.x10_c00152{left:656.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_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_a4915a3cfe08cde261e4e006.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_0e7a9385f454a0063b29ac93.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00153{vertical-align:-61.938000px;}
.v0_c00153{vertical-align:0.000000px;}
.lsc_c00153{letter-spacing:-0.480960px;}
.lse_c00153{letter-spacing:-0.420840px;}
.lsd_c00153{letter-spacing:-0.360720px;}
.lsa_c00153{letter-spacing:-0.240480px;}
.lsb_c00153{letter-spacing:-0.180360px;}
.ls8_c00153{letter-spacing:-0.120240px;}
.ls9_c00153{letter-spacing:-0.060120px;}
.ls7_c00153{letter-spacing:0.000000px;}
.ls6_c00153{letter-spacing:0.060120px;}
.ls3_c00153{letter-spacing:0.090000px;}
.ls1_c00153{letter-spacing:0.120240px;}
.ls4_c00153{letter-spacing:0.140040px;}
.ls2_c00153{letter-spacing:0.180360px;}
.ls5_c00153{letter-spacing:65.230200px;}
.ls0_c00153{letter-spacing:319.518000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00153{word-spacing:-15.210360px;}
.ws5_c00153{word-spacing:-15.150240px;}
.ws2_c00153{word-spacing:-15.090120px;}
.ws0_c00153{word-spacing:-14.969880px;}
.ws4_c00153{word-spacing:-14.909760px;}
.ws3_c00153{word-spacing:-14.789520px;}
.ws4c_c00153{word-spacing:-0.420840px;}
.ws28_c00153{word-spacing:-0.180360px;}
.ws7_c00153{word-spacing:-0.162000px;}
.wsb_c00153{word-spacing:-0.120240px;}
.ws15_c00153{word-spacing:-0.060120px;}
.ws6_c00153{word-spacing:0.000000px;}
.ws37_c00153{word-spacing:0.060120px;}
.ws10_c00153{word-spacing:0.120240px;}
.ws1b_c00153{word-spacing:0.180360px;}
.ws1a_c00153{word-spacing:0.240480px;}
.ws36_c00153{word-spacing:0.300600px;}
.ws49_c00153{word-spacing:0.360720px;}
.ws39_c00153{word-spacing:0.480960px;}
.wsa_c00153{word-spacing:1.322640px;}
.ws2f_c00153{word-spacing:1.563120px;}
.ws4a_c00153{word-spacing:1.623240px;}
.ws4d_c00153{word-spacing:1.743480px;}
.ws4e_c00153{word-spacing:1.983960px;}
.ws1f_c00153{word-spacing:3.066120px;}
.ws29_c00153{word-spacing:3.126240px;}
.ws57_c00153{word-spacing:3.426840px;}
.ws3a_c00153{word-spacing:3.486960px;}
.ws2a_c00153{word-spacing:3.727440px;}
.ws38_c00153{word-spacing:3.907800px;}
.ws34_c00153{word-spacing:4.929840px;}
.ws2c_c00153{word-spacing:5.531040px;}
.ws5a_c00153{word-spacing:6.072120px;}
.ws19_c00153{word-spacing:6.252480px;}
.ws21_c00153{word-spacing:6.613200px;}
.ws51_c00153{word-spacing:7.454880px;}
.ws35_c00153{word-spacing:8.416800px;}
.ws33_c00153{word-spacing:8.537040px;}
.ws23_c00153{word-spacing:9.559080px;}
.ws24_c00153{word-spacing:9.619200px;}
.ws50_c00153{word-spacing:10.581120px;}
.ws9_c00153{word-spacing:10.701360px;}
.ws3d_c00153{word-spacing:11.663280px;}
.ws43_c00153{word-spacing:12.745440px;}
.ws48_c00153{word-spacing:13.106160px;}
.ws25_c00153{word-spacing:14.308560px;}
.ws26_c00153{word-spacing:14.909760px;}
.ws5c_c00153{word-spacing:15.631200px;}
.ws2e_c00153{word-spacing:15.991920px;}
.ws3e_c00153{word-spacing:16.472880px;}
.ws1c_c00153{word-spacing:16.533000px;}
.ws1d_c00153{word-spacing:16.713360px;}
.wse_c00153{word-spacing:17.434800px;}
.ws16_c00153{word-spacing:17.915760px;}
.ws58_c00153{word-spacing:18.516960px;}
.ws18_c00153{word-spacing:18.877680px;}
.ws40_c00153{word-spacing:19.238400px;}
.ws14_c00153{word-spacing:21.042000px;}
.ws30_c00153{word-spacing:21.402720px;}
.ws4b_c00153{word-spacing:21.883680px;}
.wsc_c00153{word-spacing:22.605120px;}
.ws31_c00153{word-spacing:24.408720px;}
.ws32_c00153{word-spacing:24.769440px;}
.ws3c_c00153{word-spacing:25.731360px;}
.ws45_c00153{word-spacing:26.813520px;}
.ws54_c00153{word-spacing:27.174240px;}
.ws13_c00153{word-spacing:27.895680px;}
.ws3b_c00153{word-spacing:28.256400px;}
.ws11_c00153{word-spacing:29.819520px;}
.ws17_c00153{word-spacing:32.705280px;}
.ws2b_c00153{word-spacing:32.885640px;}
.ws4f_c00153{word-spacing:34.027920px;}
.ws55_c00153{word-spacing:35.410680px;}
.ws22_c00153{word-spacing:42.264360px;}
.ws44_c00153{word-spacing:43.707240px;}
.ws1e_c00153{word-spacing:45.150120px;}
.ws52_c00153{word-spacing:45.510840px;}
.wsd_c00153{word-spacing:47.314440px;}
.ws42_c00153{word-spacing:47.795400px;}
.ws2d_c00153{word-spacing:56.813400px;}
.ws12_c00153{word-spacing:58.136040px;}
.wsf_c00153{word-spacing:58.857480px;}
.ws56_c00153{word-spacing:59.218200px;}
.ws41_c00153{word-spacing:65.290320px;}
.ws5b_c00153{word-spacing:68.657040px;}
.ws47_c00153{word-spacing:72.264240px;}
.ws46_c00153{word-spacing:78.396480px;}
.ws8_c00153{word-spacing:79.779240px;}
.ws59_c00153{word-spacing:91.622880px;}
.ws20_c00153{word-spacing:93.005640px;}
.ws53_c00153{word-spacing:120.720960px;}
.ws3f_c00153{word-spacing:123.606720px;}
.ws27_c00153{word-spacing:186.011280px;}
._1_c00153{margin-left:-1.250496px;}
._0_c00153{width:1.172340px;}
._4_c00153{width:4.196376px;}
._3_c00153{width:33.210288px;}
._2_c00153{width:60.120000px;}
.fc0_c00153{color:rgb(0,0,0);}
.fs0_c00153{font-size:54.000000px;}
.fs2_c00153{font-size:60.120000px;}
.fs1_c00153{font-size:72.000000px;}
.y0_c00153{bottom:0.000000px;}
.y1b_c00153{bottom:3.510000px;}
.y52_c00153{bottom:20.700000px;}
.y26_c00153{bottom:37.980000px;}
.y51_c00153{bottom:55.170000px;}
.y18_c00153{bottom:55.260000px;}
.y53_c00153{bottom:57.240000px;}
.y25_c00153{bottom:72.450000px;}
.y24_c00153{bottom:89.730000px;}
.y4f_c00153{bottom:106.920000px;}
.y15_c00153{bottom:107.010000px;}
.y2e_c00153{bottom:120.510000px;}
.y22_c00153{bottom:124.200000px;}
.y12_c00153{bottom:141.480000px;}
.y43_c00153{bottom:158.670000px;}
.y11_c00153{bottom:158.760000px;}
.yb_c00153{bottom:175.950000px;}
.y50_c00153{bottom:192.960000px;}
.ya_c00153{bottom:193.230000px;}
.y40_c00153{bottom:210.420000px;}
.y1f_c00153{bottom:210.510000px;}
.y1d_c00153{bottom:227.520000px;}
.y28_c00153{bottom:227.700000px;}
.y4e_c00153{bottom:244.710000px;}
.y7_c00153{bottom:244.980000px;}
.y44_c00153{bottom:261.990000px;}
.y6_c00153{bottom:262.260000px;}
.y4d_c00153{bottom:279.180000px;}
.y3e_c00153{bottom:279.450000px;}
.y42_c00153{bottom:296.455500px;}
.y3d_c00153{bottom:296.730000px;}
.y41_c00153{bottom:313.740000px;}
.y3c_c00153{bottom:313.920000px;}
.y3a_c00153{bottom:348.480000px;}
.y39_c00153{bottom:365.670000px;}
.y3f_c00153{bottom:382.680000px;}
.y38_c00153{bottom:382.950000px;}
.y37_c00153{bottom:400.140000px;}
.y4c_c00153{bottom:417.231180px;}
.y36_c00153{bottom:417.420000px;}
.y4b_c00153{bottom:434.425500px;}
.y35_c00153{bottom:434.700000px;}
.y3b_c00153{bottom:451.710000px;}
.y2f_c00153{bottom:468.990000px;}
.y45_c00153{bottom:469.170000px;}
.y4a_c00153{bottom:486.175500px;}
.y49_c00153{bottom:503.460000px;}
.y33_c00153{bottom:520.456680px;}
.y48_c00153{bottom:520.645500px;}
.y32_c00153{bottom:537.741180px;}
.y47_c00153{bottom:537.930000px;}
.y31_c00153{bottom:555.025680px;}
.y46_c00153{bottom:555.205680px;}
.y30_c00153{bottom:572.220000px;}
.y34_c00153{bottom:572.400000px;}
.y1c_c00153{bottom:605.700000px;}
.y27_c00153{bottom:626.400000px;}
.y2d_c00153{bottom:678.150000px;}
.y23_c00153{bottom:695.430000px;}
.y2c_c00153{bottom:712.705680px;}
.y2b_c00153{bottom:729.900000px;}
.y21_c00153{bottom:747.180000px;}
.y2a_c00153{bottom:781.641000px;}
.y20_c00153{bottom:781.650000px;}
.y29_c00153{bottom:798.925500px;}
.y1e_c00153{bottom:816.210000px;}
.y5_c00153{bottom:849.420000px;}
.y1a_c00153{bottom:870.115500px;}
.y19_c00153{bottom:887.400000px;}
.y17_c00153{bottom:921.870000px;}
.y16_c00153{bottom:939.150000px;}
.y14_c00153{bottom:956.430000px;}
.y13_c00153{bottom:973.620000px;}
.yd_c00153{bottom:990.895500px;}
.yc_c00153{bottom:1008.180000px;}
.y10_c00153{bottom:1059.921180px;}
.y9_c00153{bottom:1059.925680px;}
.yf_c00153{bottom:1077.115500px;}
.y8_c00153{bottom:1077.120000px;}
.ye_c00153{bottom:1094.400000px;}
.y4_c00153{bottom:1131.030000px;}
.y3_c00153{bottom:1150.915500px;}
.y2_c00153{bottom:1166.400000px;}
.y1_c00153{bottom:1197.450000px;}
.h2_c00153{height:52.998047px;}
.h5_c00153{height:59.004492px;}
.h7_c00153{height:60.589687px;}
.h3_c00153{height:70.664062px;}
.h6_c00153{height:241.468500px;}
.h4_c00153{height:276.030000px;}
.h8_c00153{height:482.940000px;}
.h0_c00153{height:1262.880000px;}
.h1_c00153{height:1263.000000px;}
.w4_c00153{width:105.570000px;}
.w2_c00153{width:252.900000px;}
.w3_c00153{width:263.430000px;}
.w0_c00153{width:893.070000px;}
.w1_c00153{width:893.250000px;}
.x0_c00153{left:0.000000px;}
.x4_c00153{left:6.930000px;}
.x8_c00153{left:11.970000px;}
.xe_c00153{left:13.590000px;}
.xa_c00153{left:78.120000px;}
.x9_c00153{left:90.090000px;}
.xb_c00153{left:93.960000px;}
.x2_c00153{left:127.620000px;}
.xc_c00153{left:128.700000px;}
.xd_c00153{left:135.630000px;}
.xf_c00153{left:220.590000px;}
.x3_c00153{left:236.520000px;}
.x5_c00153{left:243.450000px;}
.x1_c00153{left:446.580000px;}
.x6_c00153{left:491.670000px;}
.x7_c00153{left:498.600000px;}
@media print{
.v1_c00153{vertical-align:-55.056000pt;}
.v0_c00153{vertical-align:0.000000pt;}
.lsc_c00153{letter-spacing:-0.427520pt;}
.lse_c00153{letter-spacing:-0.374080pt;}
.lsd_c00153{letter-spacing:-0.320640pt;}
.lsa_c00153{letter-spacing:-0.213760pt;}
.lsb_c00153{letter-spacing:-0.160320pt;}
.ls8_c00153{letter-spacing:-0.106880pt;}
.ls9_c00153{letter-spacing:-0.053440pt;}
.ls7_c00153{letter-spacing:0.000000pt;}
.ls6_c00153{letter-spacing:0.053440pt;}
.ls3_c00153{letter-spacing:0.080000pt;}
.ls1_c00153{letter-spacing:0.106880pt;}
.ls4_c00153{letter-spacing:0.124480pt;}
.ls2_c00153{letter-spacing:0.160320pt;}
.ls5_c00153{letter-spacing:57.982400pt;}
.ls0_c00153{letter-spacing:284.016000pt;}
.ws1_c00153{word-spacing:-13.520320pt;}
.ws5_c00153{word-spacing:-13.466880pt;}
.ws2_c00153{word-spacing:-13.413440pt;}
.ws0_c00153{word-spacing:-13.306560pt;}
.ws4_c00153{word-spacing:-13.253120pt;}
.ws3_c00153{word-spacing:-13.146240pt;}
.ws4c_c00153{word-spacing:-0.374080pt;}
.ws28_c00153{word-spacing:-0.160320pt;}
.ws7_c00153{word-spacing:-0.144000pt;}
.wsb_c00153{word-spacing:-0.106880pt;}
.ws15_c00153{word-spacing:-0.053440pt;}
.ws6_c00153{word-spacing:0.000000pt;}
.ws37_c00153{word-spacing:0.053440pt;}
.ws10_c00153{word-spacing:0.106880pt;}
.ws1b_c00153{word-spacing:0.160320pt;}
.ws1a_c00153{word-spacing:0.213760pt;}
.ws36_c00153{word-spacing:0.267200pt;}
.ws49_c00153{word-spacing:0.320640pt;}
.ws39_c00153{word-spacing:0.427520pt;}
.wsa_c00153{word-spacing:1.175680pt;}
.ws2f_c00153{word-spacing:1.389440pt;}
.ws4a_c00153{word-spacing:1.442880pt;}
.ws4d_c00153{word-spacing:1.549760pt;}
.ws4e_c00153{word-spacing:1.763520pt;}
.ws1f_c00153{word-spacing:2.725440pt;}
.ws29_c00153{word-spacing:2.778880pt;}
.ws57_c00153{word-spacing:3.046080pt;}
.ws3a_c00153{word-spacing:3.099520pt;}
.ws2a_c00153{word-spacing:3.313280pt;}
.ws38_c00153{word-spacing:3.473600pt;}
.ws34_c00153{word-spacing:4.382080pt;}
.ws2c_c00153{word-spacing:4.916480pt;}
.ws5a_c00153{word-spacing:5.397440pt;}
.ws19_c00153{word-spacing:5.557760pt;}
.ws21_c00153{word-spacing:5.878400pt;}
.ws51_c00153{word-spacing:6.626560pt;}
.ws35_c00153{word-spacing:7.481600pt;}
.ws33_c00153{word-spacing:7.588480pt;}
.ws23_c00153{word-spacing:8.496960pt;}
.ws24_c00153{word-spacing:8.550400pt;}
.ws50_c00153{word-spacing:9.405440pt;}
.ws9_c00153{word-spacing:9.512320pt;}
.ws3d_c00153{word-spacing:10.367360pt;}
.ws43_c00153{word-spacing:11.329280pt;}
.ws48_c00153{word-spacing:11.649920pt;}
.ws25_c00153{word-spacing:12.718720pt;}
.ws26_c00153{word-spacing:13.253120pt;}
.ws5c_c00153{word-spacing:13.894400pt;}
.ws2e_c00153{word-spacing:14.215040pt;}
.ws3e_c00153{word-spacing:14.642560pt;}
.ws1c_c00153{word-spacing:14.696000pt;}
.ws1d_c00153{word-spacing:14.856320pt;}
.wse_c00153{word-spacing:15.497600pt;}
.ws16_c00153{word-spacing:15.925120pt;}
.ws58_c00153{word-spacing:16.459520pt;}
.ws18_c00153{word-spacing:16.780160pt;}
.ws40_c00153{word-spacing:17.100800pt;}
.ws14_c00153{word-spacing:18.704000pt;}
.ws30_c00153{word-spacing:19.024640pt;}
.ws4b_c00153{word-spacing:19.452160pt;}
.wsc_c00153{word-spacing:20.093440pt;}
.ws31_c00153{word-spacing:21.696640pt;}
.ws32_c00153{word-spacing:22.017280pt;}
.ws3c_c00153{word-spacing:22.872320pt;}
.ws45_c00153{word-spacing:23.834240pt;}
.ws54_c00153{word-spacing:24.154880pt;}
.ws13_c00153{word-spacing:24.796160pt;}
.ws3b_c00153{word-spacing:25.116800pt;}
.ws11_c00153{word-spacing:26.506240pt;}
.ws17_c00153{word-spacing:29.071360pt;}
.ws2b_c00153{word-spacing:29.231680pt;}
.ws4f_c00153{word-spacing:30.247040pt;}
.ws55_c00153{word-spacing:31.476160pt;}
.ws22_c00153{word-spacing:37.568320pt;}
.ws44_c00153{word-spacing:38.850880pt;}
.ws1e_c00153{word-spacing:40.133440pt;}
.ws52_c00153{word-spacing:40.454080pt;}
.wsd_c00153{word-spacing:42.057280pt;}
.ws42_c00153{word-spacing:42.484800pt;}
.ws2d_c00153{word-spacing:50.500800pt;}
.ws12_c00153{word-spacing:51.676480pt;}
.wsf_c00153{word-spacing:52.317760pt;}
.ws56_c00153{word-spacing:52.638400pt;}
.ws41_c00153{word-spacing:58.035840pt;}
.ws5b_c00153{word-spacing:61.028480pt;}
.ws47_c00153{word-spacing:64.234880pt;}
.ws46_c00153{word-spacing:69.685760pt;}
.ws8_c00153{word-spacing:70.914880pt;}
.ws59_c00153{word-spacing:81.442560pt;}
.ws20_c00153{word-spacing:82.671680pt;}
.ws53_c00153{word-spacing:107.307520pt;}
.ws3f_c00153{word-spacing:109.872640pt;}
.ws27_c00153{word-spacing:165.343360pt;}
._1_c00153{margin-left:-1.111552pt;}
._0_c00153{width:1.042080pt;}
._4_c00153{width:3.730112pt;}
._3_c00153{width:29.520256pt;}
._2_c00153{width:53.440000pt;}
.fs0_c00153{font-size:48.000000pt;}
.fs2_c00153{font-size:53.440000pt;}
.fs1_c00153{font-size:64.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y1b_c00153{bottom:3.120000pt;}
.y52_c00153{bottom:18.400000pt;}
.y26_c00153{bottom:33.760000pt;}
.y51_c00153{bottom:49.040000pt;}
.y18_c00153{bottom:49.120000pt;}
.y53_c00153{bottom:50.880000pt;}
.y25_c00153{bottom:64.400000pt;}
.y24_c00153{bottom:79.760000pt;}
.y4f_c00153{bottom:95.040000pt;}
.y15_c00153{bottom:95.120000pt;}
.y2e_c00153{bottom:107.120000pt;}
.y22_c00153{bottom:110.400000pt;}
.y12_c00153{bottom:125.760000pt;}
.y43_c00153{bottom:141.040000pt;}
.y11_c00153{bottom:141.120000pt;}
.yb_c00153{bottom:156.400000pt;}
.y50_c00153{bottom:171.520000pt;}
.ya_c00153{bottom:171.760000pt;}
.y40_c00153{bottom:187.040000pt;}
.y1f_c00153{bottom:187.120000pt;}
.y1d_c00153{bottom:202.240000pt;}
.y28_c00153{bottom:202.400000pt;}
.y4e_c00153{bottom:217.520000pt;}
.y7_c00153{bottom:217.760000pt;}
.y44_c00153{bottom:232.880000pt;}
.y6_c00153{bottom:233.120000pt;}
.y4d_c00153{bottom:248.160000pt;}
.y3e_c00153{bottom:248.400000pt;}
.y42_c00153{bottom:263.516000pt;}
.y3d_c00153{bottom:263.760000pt;}
.y41_c00153{bottom:278.880000pt;}
.y3c_c00153{bottom:279.040000pt;}
.y3a_c00153{bottom:309.760000pt;}
.y39_c00153{bottom:325.040000pt;}
.y3f_c00153{bottom:340.160000pt;}
.y38_c00153{bottom:340.400000pt;}
.y37_c00153{bottom:355.680000pt;}
.y4c_c00153{bottom:370.872160pt;}
.y36_c00153{bottom:371.040000pt;}
.y4b_c00153{bottom:386.156000pt;}
.y35_c00153{bottom:386.400000pt;}
.y3b_c00153{bottom:401.520000pt;}
.y2f_c00153{bottom:416.880000pt;}
.y45_c00153{bottom:417.040000pt;}
.y4a_c00153{bottom:432.156000pt;}
.y49_c00153{bottom:447.520000pt;}
.y33_c00153{bottom:462.628160pt;}
.y48_c00153{bottom:462.796000pt;}
.y32_c00153{bottom:477.992160pt;}
.y47_c00153{bottom:478.160000pt;}
.y31_c00153{bottom:493.356160pt;}
.y46_c00153{bottom:493.516160pt;}
.y30_c00153{bottom:508.640000pt;}
.y34_c00153{bottom:508.800000pt;}
.y1c_c00153{bottom:538.400000pt;}
.y27_c00153{bottom:556.800000pt;}
.y2d_c00153{bottom:602.800000pt;}
.y23_c00153{bottom:618.160000pt;}
.y2c_c00153{bottom:633.516160pt;}
.y2b_c00153{bottom:648.800000pt;}
.y21_c00153{bottom:664.160000pt;}
.y2a_c00153{bottom:694.792000pt;}
.y20_c00153{bottom:694.800000pt;}
.y29_c00153{bottom:710.156000pt;}
.y1e_c00153{bottom:725.520000pt;}
.y5_c00153{bottom:755.040000pt;}
.y1a_c00153{bottom:773.436000pt;}
.y19_c00153{bottom:788.800000pt;}
.y17_c00153{bottom:819.440000pt;}
.y16_c00153{bottom:834.800000pt;}
.y14_c00153{bottom:850.160000pt;}
.y13_c00153{bottom:865.440000pt;}
.yd_c00153{bottom:880.796000pt;}
.yc_c00153{bottom:896.160000pt;}
.y10_c00153{bottom:942.152160pt;}
.y9_c00153{bottom:942.156160pt;}
.yf_c00153{bottom:957.436000pt;}
.y8_c00153{bottom:957.440000pt;}
.ye_c00153{bottom:972.800000pt;}
.y4_c00153{bottom:1005.360000pt;}
.y3_c00153{bottom:1023.036000pt;}
.y2_c00153{bottom:1036.800000pt;}
.y1_c00153{bottom:1064.400000pt;}
.h2_c00153{height:47.109375pt;}
.h5_c00153{height:52.448437pt;}
.h7_c00153{height:53.857500pt;}
.h3_c00153{height:62.812500pt;}
.h6_c00153{height:214.638667pt;}
.h4_c00153{height:245.360000pt;}
.h8_c00153{height:429.280000pt;}
.h0_c00153{height:1122.560000pt;}
.h1_c00153{height:1122.666667pt;}
.w4_c00153{width:93.840000pt;}
.w2_c00153{width:224.800000pt;}
.w3_c00153{width:234.160000pt;}
.w0_c00153{width:793.840000pt;}
.w1_c00153{width:794.000000pt;}
.x0_c00153{left:0.000000pt;}
.x4_c00153{left:6.160000pt;}
.x8_c00153{left:10.640000pt;}
.xe_c00153{left:12.080000pt;}
.xa_c00153{left:69.440000pt;}
.x9_c00153{left:80.080000pt;}
.xb_c00153{left:83.520000pt;}
.x2_c00153{left:113.440000pt;}
.xc_c00153{left:114.400000pt;}
.xd_c00153{left:120.560000pt;}
.xf_c00153{left:196.080000pt;}
.x3_c00153{left:210.240000pt;}
.x5_c00153{left:216.400000pt;}
.x1_c00153{left:396.960000pt;}
.x6_c00153{left:437.040000pt;}
.x7_c00153{left:443.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_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_90401c0a790a7879f90231a8.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.284180;font-style: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;}
.lsd_c00154{letter-spacing:-0.420840px;}
.lsc_c00154{letter-spacing:-0.180360px;}
.lsb_c00154{letter-spacing:-0.120240px;}
.ls9_c00154{letter-spacing:-0.108000px;}
.lsa_c00154{letter-spacing:-0.060120px;}
.ls8_c00154{letter-spacing:0.000000px;}
.ls7_c00154{letter-spacing:0.060120px;}
.ls4_c00154{letter-spacing:0.120240px;}
.ls5_c00154{letter-spacing:0.180360px;}
.ls2_c00154{letter-spacing:1.142280px;}
.ls0_c00154{letter-spacing:2.945880px;}
.ls6_c00154{letter-spacing:5.470920px;}
.ls1_c00154{letter-spacing:31.382640px;}
.ls3_c00154{letter-spacing:45.811440px;}
.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;}
}
.ws3_c00154{word-spacing:-15.210360px;}
.ws2_c00154{word-spacing:-15.090120px;}
.ws0_c00154{word-spacing:-14.969880px;}
.ws1_c00154{word-spacing:-14.909760px;}
.ws16_c00154{word-spacing:-0.120240px;}
.ws11_c00154{word-spacing:-0.060120px;}
.ws4_c00154{word-spacing:0.000000px;}
.ws2e_c00154{word-spacing:0.120240px;}
.ws6_c00154{word-spacing:0.162000px;}
.ws1e_c00154{word-spacing:0.180360px;}
.ws1c_c00154{word-spacing:0.240480px;}
.ws5_c00154{word-spacing:0.270000px;}
.ws39_c00154{word-spacing:0.541080px;}
.ws25_c00154{word-spacing:1.022040px;}
.ws26_c00154{word-spacing:1.262520px;}
.ws12_c00154{word-spacing:2.404800px;}
.wsd_c00154{word-spacing:2.765520px;}
.wse_c00154{word-spacing:3.006000px;}
.ws2c_c00154{word-spacing:3.126240px;}
.ws18_c00154{word-spacing:3.486960px;}
.ws3d_c00154{word-spacing:3.847680px;}
.ws35_c00154{word-spacing:4.208400px;}
.ws13_c00154{word-spacing:4.448880px;}
.ws2f_c00154{word-spacing:5.350680px;}
.ws31_c00154{word-spacing:5.651280px;}
.ws30_c00154{word-spacing:5.891760px;}
.ws24_c00154{word-spacing:6.973920px;}
.ws21_c00154{word-spacing:8.777520px;}
.ws19_c00154{word-spacing:9.138240px;}
.ws34_c00154{word-spacing:10.761480px;}
.ws8_c00154{word-spacing:10.941840px;}
.ws10_c00154{word-spacing:11.663280px;}
.ws41_c00154{word-spacing:12.504960px;}
.ws9_c00154{word-spacing:12.745440px;}
.ws2a_c00154{word-spacing:13.106160px;}
.ws37_c00154{word-spacing:14.188320px;}
.ws3f_c00154{word-spacing:15.390720px;}
.ws3e_c00154{word-spacing:15.751440px;}
.ws20_c00154{word-spacing:17.074080px;}
.wsf_c00154{word-spacing:18.637200px;}
.ws1f_c00154{word-spacing:20.801520px;}
.ws33_c00154{word-spacing:23.687280px;}
.ws17_c00154{word-spacing:24.288480px;}
.wsc_c00154{word-spacing:26.933760px;}
.ws38_c00154{word-spacing:28.977840px;}
.ws14_c00154{word-spacing:30.060000px;}
.ws28_c00154{word-spacing:30.120120px;}
.ws22_c00154{word-spacing:30.540960px;}
.ws15_c00154{word-spacing:31.202280px;}
.ws29_c00154{word-spacing:32.284440px;}
.ws7_c00154{word-spacing:35.170200px;}
.ws3a_c00154{word-spacing:36.132120px;}
.ws40_c00154{word-spacing:36.613080px;}
.ws3b_c00154{word-spacing:38.657160px;}
.wsa_c00154{word-spacing:41.302440px;}
.ws23_c00154{word-spacing:41.903640px;}
.wsb_c00154{word-spacing:42.264360px;}
.ws32_c00154{word-spacing:44.428680px;}
.ws2d_c00154{word-spacing:46.232280px;}
.ws1b_c00154{word-spacing:47.314440px;}
.ws3c_c00154{word-spacing:48.035880px;}
.ws1a_c00154{word-spacing:69.378480px;}
.ws27_c00154{word-spacing:72.144000px;}
.ws1d_c00154{word-spacing:86.272200px;}
.ws2b_c00154{word-spacing:100.701000px;}
.ws36_c00154{word-spacing:119.698920px;}
._1_c00154{margin-left:-1.058400px;}
._0_c00154{width:1.220400px;}
.fc0_c00154{color:rgb(0,0,0);}
.fs0_c00154{font-size:54.000000px;}
.fs2_c00154{font-size:60.120000px;}
.fs1_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.y42_c00154{bottom:3.420000px;}
.y41_c00154{bottom:20.700000px;}
.y40_c00154{bottom:37.890000px;}
.y3e_c00154{bottom:55.170000px;}
.y43_c00154{bottom:57.240000px;}
.y3c_c00154{bottom:89.640000px;}
.y3b_c00154{bottom:106.920000px;}
.y3a_c00154{bottom:124.200000px;}
.y6_c00154{bottom:124.290000px;}
.y38_c00154{bottom:158.670000px;}
.y3f_c00154{bottom:162.180000px;}
.y36_c00154{bottom:193.140000px;}
.y3d_c00154{bottom:196.740000px;}
.y35_c00154{bottom:210.420000px;}
.y34_c00154{bottom:227.700000px;}
.y33_c00154{bottom:244.890000px;}
.y39_c00154{bottom:265.680000px;}
.y31_c00154{bottom:279.450000px;}
.y2f_c00154{bottom:296.640000px;}
.y37_c00154{bottom:300.240000px;}
.y2e_c00154{bottom:313.920000px;}
.y32_c00154{bottom:386.460000px;}
.y30_c00154{bottom:403.740000px;}
.y28_c00154{bottom:417.420000px;}
.y27_c00154{bottom:434.610000px;}
.y26_c00154{bottom:451.890000px;}
.y2d_c00154{bottom:455.490000px;}
.y25_c00154{bottom:469.170000px;}
.y2c_c00154{bottom:472.675500px;}
.y24_c00154{bottom:486.360000px;}
.y2b_c00154{bottom:489.960000px;}
.y23_c00154{bottom:503.640000px;}
.y2a_c00154{bottom:507.145500px;}
.y29_c00154{bottom:524.430000px;}
.y20_c00154{bottom:555.390000px;}
.y1f_c00154{bottom:572.670000px;}
.y1d_c00154{bottom:607.140000px;}
.y1c_c00154{bottom:624.420000px;}
.y22_c00154{bottom:645.205680px;}
.y21_c00154{bottom:662.400000px;}
.y19_c00154{bottom:676.170000px;}
.y18_c00154{bottom:693.360000px;}
.y1e_c00154{bottom:714.150000px;}
.y16_c00154{bottom:727.830000px;}
.y15_c00154{bottom:745.110000px;}
.y1b_c00154{bottom:765.900000px;}
.y13_c00154{bottom:779.580000px;}
.y1a_c00154{bottom:783.180000px;}
.y11_c00154{bottom:814.140000px;}
.y17_c00154{bottom:834.930000px;}
.yf_c00154{bottom:848.610000px;}
.ye_c00154{bottom:865.890000px;}
.y14_c00154{bottom:886.680000px;}
.yc_c00154{bottom:900.360000px;}
.yb_c00154{bottom:917.640000px;}
.y12_c00154{bottom:921.150000px;}
.ya_c00154{bottom:934.830000px;}
.y9_c00154{bottom:952.110000px;}
.y10_c00154{bottom:955.620000px;}
.y8_c00154{bottom:969.390000px;}
.y7_c00154{bottom:986.580000px;}
.yd_c00154{bottom:1007.370000px;}
.y5_c00154{bottom:1131.030000px;}
.y4_c00154{bottom:1150.920000px;}
.y3_c00154{bottom:1166.404500px;}
.y2_c00154{bottom:1181.970000px;}
.y1_c00154{bottom:1197.450000px;}
.h3_c00154{height:52.971680px;}
.h2_c00154{height:52.998047px;}
.h6_c00154{height:59.004492px;}
.h4_c00154{height:70.664062px;}
.h5_c00154{height:1000.350000px;}
.h0_c00154{height:1262.880000px;}
.h1_c00154{height:1263.000000px;}
.w2_c00154{width:263.430000px;}
.w0_c00154{width:893.070000px;}
.w1_c00154{width:893.250000px;}
.x0_c00154{left:0.000000px;}
.x5_c00154{left:6.930000px;}
.x3_c00154{left:127.620000px;}
.x8_c00154{left:192.870000px;}
.x7_c00154{left:226.170000px;}
.x2_c00154{left:425.160000px;}
.x1_c00154{left:446.580000px;}
.x4_c00154{left:491.670000px;}
.x6_c00154{left:498.600000px;}
.x9_c00154{left:738.540000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.lsd_c00154{letter-spacing:-0.374080pt;}
.lsc_c00154{letter-spacing:-0.160320pt;}
.lsb_c00154{letter-spacing:-0.106880pt;}
.ls9_c00154{letter-spacing:-0.096000pt;}
.lsa_c00154{letter-spacing:-0.053440pt;}
.ls8_c00154{letter-spacing:0.000000pt;}
.ls7_c00154{letter-spacing:0.053440pt;}
.ls4_c00154{letter-spacing:0.106880pt;}
.ls5_c00154{letter-spacing:0.160320pt;}
.ls2_c00154{letter-spacing:1.015360pt;}
.ls0_c00154{letter-spacing:2.618560pt;}
.ls6_c00154{letter-spacing:4.863040pt;}
.ls1_c00154{letter-spacing:27.895680pt;}
.ls3_c00154{letter-spacing:40.721280pt;}
.ws3_c00154{word-spacing:-13.520320pt;}
.ws2_c00154{word-spacing:-13.413440pt;}
.ws0_c00154{word-spacing:-13.306560pt;}
.ws1_c00154{word-spacing:-13.253120pt;}
.ws16_c00154{word-spacing:-0.106880pt;}
.ws11_c00154{word-spacing:-0.053440pt;}
.ws4_c00154{word-spacing:0.000000pt;}
.ws2e_c00154{word-spacing:0.106880pt;}
.ws6_c00154{word-spacing:0.144000pt;}
.ws1e_c00154{word-spacing:0.160320pt;}
.ws1c_c00154{word-spacing:0.213760pt;}
.ws5_c00154{word-spacing:0.240000pt;}
.ws39_c00154{word-spacing:0.480960pt;}
.ws25_c00154{word-spacing:0.908480pt;}
.ws26_c00154{word-spacing:1.122240pt;}
.ws12_c00154{word-spacing:2.137600pt;}
.wsd_c00154{word-spacing:2.458240pt;}
.wse_c00154{word-spacing:2.672000pt;}
.ws2c_c00154{word-spacing:2.778880pt;}
.ws18_c00154{word-spacing:3.099520pt;}
.ws3d_c00154{word-spacing:3.420160pt;}
.ws35_c00154{word-spacing:3.740800pt;}
.ws13_c00154{word-spacing:3.954560pt;}
.ws2f_c00154{word-spacing:4.756160pt;}
.ws31_c00154{word-spacing:5.023360pt;}
.ws30_c00154{word-spacing:5.237120pt;}
.ws24_c00154{word-spacing:6.199040pt;}
.ws21_c00154{word-spacing:7.802240pt;}
.ws19_c00154{word-spacing:8.122880pt;}
.ws34_c00154{word-spacing:9.565760pt;}
.ws8_c00154{word-spacing:9.726080pt;}
.ws10_c00154{word-spacing:10.367360pt;}
.ws41_c00154{word-spacing:11.115520pt;}
.ws9_c00154{word-spacing:11.329280pt;}
.ws2a_c00154{word-spacing:11.649920pt;}
.ws37_c00154{word-spacing:12.611840pt;}
.ws3f_c00154{word-spacing:13.680640pt;}
.ws3e_c00154{word-spacing:14.001280pt;}
.ws20_c00154{word-spacing:15.176960pt;}
.wsf_c00154{word-spacing:16.566400pt;}
.ws1f_c00154{word-spacing:18.490240pt;}
.ws33_c00154{word-spacing:21.055360pt;}
.ws17_c00154{word-spacing:21.589760pt;}
.wsc_c00154{word-spacing:23.941120pt;}
.ws38_c00154{word-spacing:25.758080pt;}
.ws14_c00154{word-spacing:26.720000pt;}
.ws28_c00154{word-spacing:26.773440pt;}
.ws22_c00154{word-spacing:27.147520pt;}
.ws15_c00154{word-spacing:27.735360pt;}
.ws29_c00154{word-spacing:28.697280pt;}
.ws7_c00154{word-spacing:31.262400pt;}
.ws3a_c00154{word-spacing:32.117440pt;}
.ws40_c00154{word-spacing:32.544960pt;}
.ws3b_c00154{word-spacing:34.361920pt;}
.wsa_c00154{word-spacing:36.713280pt;}
.ws23_c00154{word-spacing:37.247680pt;}
.wsb_c00154{word-spacing:37.568320pt;}
.ws32_c00154{word-spacing:39.492160pt;}
.ws2d_c00154{word-spacing:41.095360pt;}
.ws1b_c00154{word-spacing:42.057280pt;}
.ws3c_c00154{word-spacing:42.698560pt;}
.ws1a_c00154{word-spacing:61.669760pt;}
.ws27_c00154{word-spacing:64.128000pt;}
.ws1d_c00154{word-spacing:76.686400pt;}
.ws2b_c00154{word-spacing:89.512000pt;}
.ws36_c00154{word-spacing:106.399040pt;}
._1_c00154{margin-left:-0.940800pt;}
._0_c00154{width:1.084800pt;}
.fs0_c00154{font-size:48.000000pt;}
.fs2_c00154{font-size:53.440000pt;}
.fs1_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y42_c00154{bottom:3.040000pt;}
.y41_c00154{bottom:18.400000pt;}
.y40_c00154{bottom:33.680000pt;}
.y3e_c00154{bottom:49.040000pt;}
.y43_c00154{bottom:50.880000pt;}
.y3c_c00154{bottom:79.680000pt;}
.y3b_c00154{bottom:95.040000pt;}
.y3a_c00154{bottom:110.400000pt;}
.y6_c00154{bottom:110.480000pt;}
.y38_c00154{bottom:141.040000pt;}
.y3f_c00154{bottom:144.160000pt;}
.y36_c00154{bottom:171.680000pt;}
.y3d_c00154{bottom:174.880000pt;}
.y35_c00154{bottom:187.040000pt;}
.y34_c00154{bottom:202.400000pt;}
.y33_c00154{bottom:217.680000pt;}
.y39_c00154{bottom:236.160000pt;}
.y31_c00154{bottom:248.400000pt;}
.y2f_c00154{bottom:263.680000pt;}
.y37_c00154{bottom:266.880000pt;}
.y2e_c00154{bottom:279.040000pt;}
.y32_c00154{bottom:343.520000pt;}
.y30_c00154{bottom:358.880000pt;}
.y28_c00154{bottom:371.040000pt;}
.y27_c00154{bottom:386.320000pt;}
.y26_c00154{bottom:401.680000pt;}
.y2d_c00154{bottom:404.880000pt;}
.y25_c00154{bottom:417.040000pt;}
.y2c_c00154{bottom:420.156000pt;}
.y24_c00154{bottom:432.320000pt;}
.y2b_c00154{bottom:435.520000pt;}
.y23_c00154{bottom:447.680000pt;}
.y2a_c00154{bottom:450.796000pt;}
.y29_c00154{bottom:466.160000pt;}
.y20_c00154{bottom:493.680000pt;}
.y1f_c00154{bottom:509.040000pt;}
.y1d_c00154{bottom:539.680000pt;}
.y1c_c00154{bottom:555.040000pt;}
.y22_c00154{bottom:573.516160pt;}
.y21_c00154{bottom:588.800000pt;}
.y19_c00154{bottom:601.040000pt;}
.y18_c00154{bottom:616.320000pt;}
.y1e_c00154{bottom:634.800000pt;}
.y16_c00154{bottom:646.960000pt;}
.y15_c00154{bottom:662.320000pt;}
.y1b_c00154{bottom:680.800000pt;}
.y13_c00154{bottom:692.960000pt;}
.y1a_c00154{bottom:696.160000pt;}
.y11_c00154{bottom:723.680000pt;}
.y17_c00154{bottom:742.160000pt;}
.yf_c00154{bottom:754.320000pt;}
.ye_c00154{bottom:769.680000pt;}
.y14_c00154{bottom:788.160000pt;}
.yc_c00154{bottom:800.320000pt;}
.yb_c00154{bottom:815.680000pt;}
.y12_c00154{bottom:818.800000pt;}
.ya_c00154{bottom:830.960000pt;}
.y9_c00154{bottom:846.320000pt;}
.y10_c00154{bottom:849.440000pt;}
.y8_c00154{bottom:861.680000pt;}
.y7_c00154{bottom:876.960000pt;}
.yd_c00154{bottom:895.440000pt;}
.y5_c00154{bottom:1005.360000pt;}
.y4_c00154{bottom:1023.040000pt;}
.y3_c00154{bottom:1036.804000pt;}
.y2_c00154{bottom:1050.640000pt;}
.y1_c00154{bottom:1064.400000pt;}
.h3_c00154{height:47.085938pt;}
.h2_c00154{height:47.109375pt;}
.h6_c00154{height:52.448437pt;}
.h4_c00154{height:62.812500pt;}
.h5_c00154{height:889.200000pt;}
.h0_c00154{height:1122.560000pt;}
.h1_c00154{height:1122.666667pt;}
.w2_c00154{width:234.160000pt;}
.w0_c00154{width:793.840000pt;}
.w1_c00154{width:794.000000pt;}
.x0_c00154{left:0.000000pt;}
.x5_c00154{left:6.160000pt;}
.x3_c00154{left:113.440000pt;}
.x8_c00154{left:171.440000pt;}
.x7_c00154{left:201.040000pt;}
.x2_c00154{left:377.920000pt;}
.x1_c00154{left:396.960000pt;}
.x4_c00154{left:437.040000pt;}
.x6_c00154{left:443.200000pt;}
.x9_c00154{left:656.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_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_023535fe95936a49c29a62a1.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_6ebbdf2c1e448ff76999ef8d.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00155{vertical-align:-61.938000px;}
.v0_c00155{vertical-align:0.000000px;}
.lsb_c00155{letter-spacing:-0.420840px;}
.lsc_c00155{letter-spacing:-0.300600px;}
.lsa_c00155{letter-spacing:-0.180360px;}
.ls9_c00155{letter-spacing:-0.120240px;}
.ls8_c00155{letter-spacing:-0.060120px;}
.ls7_c00155{letter-spacing:0.000000px;}
.ls6_c00155{letter-spacing:0.120240px;}
.ls5_c00155{letter-spacing:0.140040px;}
.ls4_c00155{letter-spacing:0.180360px;}
.ls2_c00155{letter-spacing:6.913800px;}
.ls1_c00155{letter-spacing:8.356680px;}
.ls3_c00155{letter-spacing:59.855472px;}
.ls0_c00155{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00155{word-spacing:-15.210360px;}
.ws0_c00155{word-spacing:-14.909760px;}
.ws3_c00155{word-spacing:-14.849640px;}
.ws1_c00155{word-spacing:-14.729400px;}
.ws3d_c00155{word-spacing:-0.420840px;}
.ws3b_c00155{word-spacing:-0.180360px;}
.ws5_c00155{word-spacing:-0.162000px;}
.ws14_c00155{word-spacing:-0.120240px;}
.ws3a_c00155{word-spacing:-0.060120px;}
.ws4_c00155{word-spacing:0.000000px;}
.ws3c_c00155{word-spacing:0.060120px;}
.ws32_c00155{word-spacing:0.120240px;}
.wsb_c00155{word-spacing:0.180360px;}
.ws17_c00155{word-spacing:0.240480px;}
.ws1e_c00155{word-spacing:0.420840px;}
.ws46_c00155{word-spacing:2.705400px;}
.ws6_c00155{word-spacing:3.006000px;}
.ws4f_c00155{word-spacing:3.727440px;}
.ws54_c00155{word-spacing:3.847680px;}
.ws56_c00155{word-spacing:4.088160px;}
.ws47_c00155{word-spacing:4.448880px;}
.ws22_c00155{word-spacing:4.569120px;}
.ws45_c00155{word-spacing:4.809600px;}
.ws44_c00155{word-spacing:4.929840px;}
.ws16_c00155{word-spacing:6.012000px;}
.ws15_c00155{word-spacing:6.673320px;}
.wsf_c00155{word-spacing:7.034040px;}
.ws10_c00155{word-spacing:7.334640px;}
.ws12_c00155{word-spacing:7.695360px;}
.ws20_c00155{word-spacing:8.176320px;}
.wsa_c00155{word-spacing:8.476920px;}
.ws55_c00155{word-spacing:9.138240px;}
.ws4a_c00155{word-spacing:9.498960px;}
.ws4d_c00155{word-spacing:10.040040px;}
.ws4e_c00155{word-spacing:10.220400px;}
.ws28_c00155{word-spacing:11.302560px;}
.ws29_c00155{word-spacing:11.422800px;}
.ws1a_c00155{word-spacing:11.663280px;}
.ws21_c00155{word-spacing:12.024000px;}
.ws1f_c00155{word-spacing:15.030000px;}
.ws27_c00155{word-spacing:18.516960px;}
.ws1b_c00155{word-spacing:19.779480px;}
.ws1c_c00155{word-spacing:19.959840px;}
.ws39_c00155{word-spacing:21.522960px;}
.ws49_c00155{word-spacing:22.244400px;}
.ws2c_c00155{word-spacing:22.484880px;}
.ws38_c00155{word-spacing:22.845600px;}
.ws3e_c00155{word-spacing:22.965840px;}
.ws25_c00155{word-spacing:23.567040px;}
.ws24_c00155{word-spacing:23.627160px;}
.ws2d_c00155{word-spacing:24.649200px;}
.ws2a_c00155{word-spacing:27.534960px;}
.ws34_c00155{word-spacing:27.655200px;}
.ws35_c00155{word-spacing:27.895680px;}
.ws37_c00155{word-spacing:28.376640px;}
.ws4c_c00155{word-spacing:28.737360px;}
.ws48_c00155{word-spacing:30.420720px;}
.ws3f_c00155{word-spacing:30.781440px;}
.ws40_c00155{word-spacing:30.841560px;}
.ws41_c00155{word-spacing:30.901680px;}
.wse_c00155{word-spacing:32.885640px;}
.ws57_c00155{word-spacing:35.771400px;}
.ws50_c00155{word-spacing:36.252360px;}
.ws51_c00155{word-spacing:36.492840px;}
.ws13_c00155{word-spacing:37.575000px;}
.ws4b_c00155{word-spacing:39.017880px;}
.ws52_c00155{word-spacing:40.941720px;}
.ws42_c00155{word-spacing:42.745320px;}
.ws43_c00155{word-spacing:43.346520px;}
.ws33_c00155{word-spacing:43.526880px;}
.ws23_c00155{word-spacing:43.707240px;}
.ws11_c00155{word-spacing:44.428680px;}
.wsd_c00155{word-spacing:44.909640px;}
.wsc_c00155{word-spacing:45.210240px;}
.ws2f_c00155{word-spacing:53.206200px;}
.ws2e_c00155{word-spacing:53.807400px;}
.ws1d_c00155{word-spacing:59.578920px;}
.ws30_c00155{word-spacing:62.584920px;}
.ws31_c00155{word-spacing:62.825400px;}
.ws8_c00155{word-spacing:64.689120px;}
.ws26_c00155{word-spacing:67.093920px;}
.ws36_c00155{word-spacing:68.176080px;}
.ws7_c00155{word-spacing:68.657040px;}
.ws19_c00155{word-spacing:68.897520px;}
.ws18_c00155{word-spacing:72.504720px;}
.ws53_c00155{word-spacing:79.358400px;}
.ws9_c00155{word-spacing:109.598760px;}
.ws2b_c00155{word-spacing:143.867160px;}
._1_c00155{margin-left:-1.040076px;}
._0_c00155{width:1.004004px;}
._3_c00155{width:35.645040px;}
._2_c00155{width:62.735112px;}
.fc0_c00155{color:rgb(0,0,0);}
.fs0_c00155{font-size:54.000000px;}
.fs2_c00155{font-size:60.120000px;}
.fs1_c00155{font-size:72.000000px;}
.y0_c00155{bottom:0.000000px;}
.y18_c00155{bottom:3.420000px;}
.y4f_c00155{bottom:3.510000px;}
.y46_c00155{bottom:20.700000px;}
.y16_c00155{bottom:37.890000px;}
.y33_c00155{bottom:37.980000px;}
.y15_c00155{bottom:55.170000px;}
.y55_c00155{bottom:57.240000px;}
.y14_c00155{bottom:72.450000px;}
.y32_c00155{bottom:89.730000px;}
.y30_c00155{bottom:106.920000px;}
.y47_c00155{bottom:122.760000px;}
.y2f_c00155{bottom:124.200000px;}
.y54_c00155{bottom:143.428860px;}
.y4e_c00155{bottom:143.451180px;}
.y48_c00155{bottom:158.490000px;}
.yf_c00155{bottom:158.670000px;}
.y53_c00155{bottom:160.713360px;}
.y4d_c00155{bottom:160.735680px;}
.y2d_c00155{bottom:175.950000px;}
.y52_c00155{bottom:177.907680px;}
.y4c_c00155{bottom:177.930000px;}
.y2c_c00155{bottom:193.140000px;}
.y51_c00155{bottom:195.192180px;}
.yc_c00155{bottom:210.420000px;}
.y50_c00155{bottom:212.476680px;}
.y2a_c00155{bottom:227.700000px;}
.y4b_c00155{bottom:229.671000px;}
.y9_c00155{bottom:244.890000px;}
.y4a_c00155{bottom:246.955500px;}
.y8_c00155{bottom:262.170000px;}
.y49_c00155{bottom:264.240000px;}
.y7_c00155{bottom:279.450000px;}
.y19_c00155{bottom:296.010000px;}
.y6_c00155{bottom:296.640000px;}
.y34_c00155{bottom:316.710000px;}
.y39_c00155{bottom:365.670000px;}
.y45_c00155{bottom:368.455500px;}
.y22_c00155{bottom:382.950000px;}
.y31_c00155{bottom:385.740000px;}
.y21_c00155{bottom:400.140000px;}
.y38_c00155{bottom:417.420000px;}
.y1f_c00155{bottom:434.700000px;}
.y44_c00155{bottom:437.485680px;}
.y2e_c00155{bottom:437.490000px;}
.y43_c00155{bottom:454.680000px;}
.y36_c00155{bottom:469.170000px;}
.y42_c00155{bottom:471.960000px;}
.y41_c00155{bottom:489.145500px;}
.y1a_c00155{bottom:503.640000px;}
.y2b_c00155{bottom:506.430000px;}
.y40_c00155{bottom:523.710000px;}
.y3f_c00155{bottom:540.895500px;}
.y29_c00155{bottom:558.180000px;}
.y28_c00155{bottom:575.446680px;}
.y3e_c00155{bottom:575.460000px;}
.y27_c00155{bottom:592.641000px;}
.y3d_c00155{bottom:592.650000px;}
.y3c_c00155{bottom:609.921180px;}
.y26_c00155{bottom:609.925500px;}
.y3b_c00155{bottom:627.205680px;}
.y25_c00155{bottom:627.210000px;}
.y24_c00155{bottom:644.395500px;}
.y3a_c00155{bottom:644.400000px;}
.y23_c00155{bottom:661.680000px;}
.y20_c00155{bottom:713.430000px;}
.y1e_c00155{bottom:730.710000px;}
.y1d_c00155{bottom:747.891000px;}
.y37_c00155{bottom:747.900000px;}
.y1c_c00155{bottom:765.175500px;}
.y35_c00155{bottom:765.180000px;}
.y1b_c00155{bottom:782.460000px;}
.y5_c00155{bottom:814.230000px;}
.y17_c00155{bottom:834.930000px;}
.y13_c00155{bottom:903.856680px;}
.y12_c00155{bottom:921.141180px;}
.y11_c00155{bottom:938.425680px;}
.y10_c00155{bottom:955.620000px;}
.ye_c00155{bottom:990.175680px;}
.yd_c00155{bottom:1007.370000px;}
.yb_c00155{bottom:1024.645500px;}
.ya_c00155{bottom:1041.930000px;}
.y4_c00155{bottom:1131.030000px;}
.y3_c00155{bottom:1150.915500px;}
.y2_c00155{bottom:1166.400000px;}
.y1_c00155{bottom:1197.450000px;}
.h2_c00155{height:52.998047px;}
.h5_c00155{height:59.004492px;}
.h8_c00155{height:60.589687px;}
.h3_c00155{height:70.664062px;}
.h7_c00155{height:172.441500px;}
.h4_c00155{height:310.411500px;}
.h6_c00155{height:517.408500px;}
.h0_c00155{height:1262.880000px;}
.h1_c00155{height:1263.000000px;}
.w3_c00155{width:252.900000px;}
.w2_c00155{width:263.430000px;}
.w0_c00155{width:893.070000px;}
.w1_c00155{width:893.250000px;}
.x0_c00155{left:0.000000px;}
.x4_c00155{left:6.930000px;}
.xe_c00155{left:11.970000px;}
.x6_c00155{left:39.420000px;}
.xb_c00155{left:63.180000px;}
.x11_c00155{left:78.570000px;}
.x9_c00155{left:91.710000px;}
.xd_c00155{left:94.320000px;}
.x10_c00155{left:96.930000px;}
.xa_c00155{left:105.750000px;}
.x2_c00155{left:127.620000px;}
.xc_c00155{left:129.240000px;}
.xf_c00155{left:226.710000px;}
.x7_c00155{left:236.520000px;}
.x8_c00155{left:243.450000px;}
.x1_c00155{left:446.580000px;}
.x3_c00155{left:491.670000px;}
.x5_c00155{left:498.600000px;}
@media print{
.v1_c00155{vertical-align:-55.056000pt;}
.v0_c00155{vertical-align:0.000000pt;}
.lsb_c00155{letter-spacing:-0.374080pt;}
.lsc_c00155{letter-spacing:-0.267200pt;}
.lsa_c00155{letter-spacing:-0.160320pt;}
.ls9_c00155{letter-spacing:-0.106880pt;}
.ls8_c00155{letter-spacing:-0.053440pt;}
.ls7_c00155{letter-spacing:0.000000pt;}
.ls6_c00155{letter-spacing:0.106880pt;}
.ls5_c00155{letter-spacing:0.124480pt;}
.ls4_c00155{letter-spacing:0.160320pt;}
.ls2_c00155{letter-spacing:6.145600pt;}
.ls1_c00155{letter-spacing:7.428160pt;}
.ls3_c00155{letter-spacing:53.204864pt;}
.ls0_c00155{letter-spacing:284.016000pt;}
.ws2_c00155{word-spacing:-13.520320pt;}
.ws0_c00155{word-spacing:-13.253120pt;}
.ws3_c00155{word-spacing:-13.199680pt;}
.ws1_c00155{word-spacing:-13.092800pt;}
.ws3d_c00155{word-spacing:-0.374080pt;}
.ws3b_c00155{word-spacing:-0.160320pt;}
.ws5_c00155{word-spacing:-0.144000pt;}
.ws14_c00155{word-spacing:-0.106880pt;}
.ws3a_c00155{word-spacing:-0.053440pt;}
.ws4_c00155{word-spacing:0.000000pt;}
.ws3c_c00155{word-spacing:0.053440pt;}
.ws32_c00155{word-spacing:0.106880pt;}
.wsb_c00155{word-spacing:0.160320pt;}
.ws17_c00155{word-spacing:0.213760pt;}
.ws1e_c00155{word-spacing:0.374080pt;}
.ws46_c00155{word-spacing:2.404800pt;}
.ws6_c00155{word-spacing:2.672000pt;}
.ws4f_c00155{word-spacing:3.313280pt;}
.ws54_c00155{word-spacing:3.420160pt;}
.ws56_c00155{word-spacing:3.633920pt;}
.ws47_c00155{word-spacing:3.954560pt;}
.ws22_c00155{word-spacing:4.061440pt;}
.ws45_c00155{word-spacing:4.275200pt;}
.ws44_c00155{word-spacing:4.382080pt;}
.ws16_c00155{word-spacing:5.344000pt;}
.ws15_c00155{word-spacing:5.931840pt;}
.wsf_c00155{word-spacing:6.252480pt;}
.ws10_c00155{word-spacing:6.519680pt;}
.ws12_c00155{word-spacing:6.840320pt;}
.ws20_c00155{word-spacing:7.267840pt;}
.wsa_c00155{word-spacing:7.535040pt;}
.ws55_c00155{word-spacing:8.122880pt;}
.ws4a_c00155{word-spacing:8.443520pt;}
.ws4d_c00155{word-spacing:8.924480pt;}
.ws4e_c00155{word-spacing:9.084800pt;}
.ws28_c00155{word-spacing:10.046720pt;}
.ws29_c00155{word-spacing:10.153600pt;}
.ws1a_c00155{word-spacing:10.367360pt;}
.ws21_c00155{word-spacing:10.688000pt;}
.ws1f_c00155{word-spacing:13.360000pt;}
.ws27_c00155{word-spacing:16.459520pt;}
.ws1b_c00155{word-spacing:17.581760pt;}
.ws1c_c00155{word-spacing:17.742080pt;}
.ws39_c00155{word-spacing:19.131520pt;}
.ws49_c00155{word-spacing:19.772800pt;}
.ws2c_c00155{word-spacing:19.986560pt;}
.ws38_c00155{word-spacing:20.307200pt;}
.ws3e_c00155{word-spacing:20.414080pt;}
.ws25_c00155{word-spacing:20.948480pt;}
.ws24_c00155{word-spacing:21.001920pt;}
.ws2d_c00155{word-spacing:21.910400pt;}
.ws2a_c00155{word-spacing:24.475520pt;}
.ws34_c00155{word-spacing:24.582400pt;}
.ws35_c00155{word-spacing:24.796160pt;}
.ws37_c00155{word-spacing:25.223680pt;}
.ws4c_c00155{word-spacing:25.544320pt;}
.ws48_c00155{word-spacing:27.040640pt;}
.ws3f_c00155{word-spacing:27.361280pt;}
.ws40_c00155{word-spacing:27.414720pt;}
.ws41_c00155{word-spacing:27.468160pt;}
.wse_c00155{word-spacing:29.231680pt;}
.ws57_c00155{word-spacing:31.796800pt;}
.ws50_c00155{word-spacing:32.224320pt;}
.ws51_c00155{word-spacing:32.438080pt;}
.ws13_c00155{word-spacing:33.400000pt;}
.ws4b_c00155{word-spacing:34.682560pt;}
.ws52_c00155{word-spacing:36.392640pt;}
.ws42_c00155{word-spacing:37.995840pt;}
.ws43_c00155{word-spacing:38.530240pt;}
.ws33_c00155{word-spacing:38.690560pt;}
.ws23_c00155{word-spacing:38.850880pt;}
.ws11_c00155{word-spacing:39.492160pt;}
.wsd_c00155{word-spacing:39.919680pt;}
.wsc_c00155{word-spacing:40.186880pt;}
.ws2f_c00155{word-spacing:47.294400pt;}
.ws2e_c00155{word-spacing:47.828800pt;}
.ws1d_c00155{word-spacing:52.959040pt;}
.ws30_c00155{word-spacing:55.631040pt;}
.ws31_c00155{word-spacing:55.844800pt;}
.ws8_c00155{word-spacing:57.501440pt;}
.ws26_c00155{word-spacing:59.639040pt;}
.ws36_c00155{word-spacing:60.600960pt;}
.ws7_c00155{word-spacing:61.028480pt;}
.ws19_c00155{word-spacing:61.242240pt;}
.ws18_c00155{word-spacing:64.448640pt;}
.ws53_c00155{word-spacing:70.540800pt;}
.ws9_c00155{word-spacing:97.421120pt;}
.ws2b_c00155{word-spacing:127.881920pt;}
._1_c00155{margin-left:-0.924512pt;}
._0_c00155{width:0.892448pt;}
._3_c00155{width:31.684480pt;}
._2_c00155{width:55.764544pt;}
.fs0_c00155{font-size:48.000000pt;}
.fs2_c00155{font-size:53.440000pt;}
.fs1_c00155{font-size:64.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.y18_c00155{bottom:3.040000pt;}
.y4f_c00155{bottom:3.120000pt;}
.y46_c00155{bottom:18.400000pt;}
.y16_c00155{bottom:33.680000pt;}
.y33_c00155{bottom:33.760000pt;}
.y15_c00155{bottom:49.040000pt;}
.y55_c00155{bottom:50.880000pt;}
.y14_c00155{bottom:64.400000pt;}
.y32_c00155{bottom:79.760000pt;}
.y30_c00155{bottom:95.040000pt;}
.y47_c00155{bottom:109.120000pt;}
.y2f_c00155{bottom:110.400000pt;}
.y54_c00155{bottom:127.492320pt;}
.y4e_c00155{bottom:127.512160pt;}
.y48_c00155{bottom:140.880000pt;}
.yf_c00155{bottom:141.040000pt;}
.y53_c00155{bottom:142.856320pt;}
.y4d_c00155{bottom:142.876160pt;}
.y2d_c00155{bottom:156.400000pt;}
.y52_c00155{bottom:158.140160pt;}
.y4c_c00155{bottom:158.160000pt;}
.y2c_c00155{bottom:171.680000pt;}
.y51_c00155{bottom:173.504160pt;}
.yc_c00155{bottom:187.040000pt;}
.y50_c00155{bottom:188.868160pt;}
.y2a_c00155{bottom:202.400000pt;}
.y4b_c00155{bottom:204.152000pt;}
.y9_c00155{bottom:217.680000pt;}
.y4a_c00155{bottom:219.516000pt;}
.y8_c00155{bottom:233.040000pt;}
.y49_c00155{bottom:234.880000pt;}
.y7_c00155{bottom:248.400000pt;}
.y19_c00155{bottom:263.120000pt;}
.y6_c00155{bottom:263.680000pt;}
.y34_c00155{bottom:281.520000pt;}
.y39_c00155{bottom:325.040000pt;}
.y45_c00155{bottom:327.516000pt;}
.y22_c00155{bottom:340.400000pt;}
.y31_c00155{bottom:342.880000pt;}
.y21_c00155{bottom:355.680000pt;}
.y38_c00155{bottom:371.040000pt;}
.y1f_c00155{bottom:386.400000pt;}
.y44_c00155{bottom:388.876160pt;}
.y2e_c00155{bottom:388.880000pt;}
.y43_c00155{bottom:404.160000pt;}
.y36_c00155{bottom:417.040000pt;}
.y42_c00155{bottom:419.520000pt;}
.y41_c00155{bottom:434.796000pt;}
.y1a_c00155{bottom:447.680000pt;}
.y2b_c00155{bottom:450.160000pt;}
.y40_c00155{bottom:465.520000pt;}
.y3f_c00155{bottom:480.796000pt;}
.y29_c00155{bottom:496.160000pt;}
.y28_c00155{bottom:511.508160pt;}
.y3e_c00155{bottom:511.520000pt;}
.y27_c00155{bottom:526.792000pt;}
.y3d_c00155{bottom:526.800000pt;}
.y3c_c00155{bottom:542.152160pt;}
.y26_c00155{bottom:542.156000pt;}
.y3b_c00155{bottom:557.516160pt;}
.y25_c00155{bottom:557.520000pt;}
.y24_c00155{bottom:572.796000pt;}
.y3a_c00155{bottom:572.800000pt;}
.y23_c00155{bottom:588.160000pt;}
.y20_c00155{bottom:634.160000pt;}
.y1e_c00155{bottom:649.520000pt;}
.y1d_c00155{bottom:664.792000pt;}
.y37_c00155{bottom:664.800000pt;}
.y1c_c00155{bottom:680.156000pt;}
.y35_c00155{bottom:680.160000pt;}
.y1b_c00155{bottom:695.520000pt;}
.y5_c00155{bottom:723.760000pt;}
.y17_c00155{bottom:742.160000pt;}
.y13_c00155{bottom:803.428160pt;}
.y12_c00155{bottom:818.792160pt;}
.y11_c00155{bottom:834.156160pt;}
.y10_c00155{bottom:849.440000pt;}
.ye_c00155{bottom:880.156160pt;}
.yd_c00155{bottom:895.440000pt;}
.yb_c00155{bottom:910.796000pt;}
.ya_c00155{bottom:926.160000pt;}
.y4_c00155{bottom:1005.360000pt;}
.y3_c00155{bottom:1023.036000pt;}
.y2_c00155{bottom:1036.800000pt;}
.y1_c00155{bottom:1064.400000pt;}
.h2_c00155{height:47.109375pt;}
.h5_c00155{height:52.448437pt;}
.h8_c00155{height:53.857500pt;}
.h3_c00155{height:62.812500pt;}
.h7_c00155{height:153.281333pt;}
.h4_c00155{height:275.921333pt;}
.h6_c00155{height:459.918667pt;}
.h0_c00155{height:1122.560000pt;}
.h1_c00155{height:1122.666667pt;}
.w3_c00155{width:224.800000pt;}
.w2_c00155{width:234.160000pt;}
.w0_c00155{width:793.840000pt;}
.w1_c00155{width:794.000000pt;}
.x0_c00155{left:0.000000pt;}
.x4_c00155{left:6.160000pt;}
.xe_c00155{left:10.640000pt;}
.x6_c00155{left:35.040000pt;}
.xb_c00155{left:56.160000pt;}
.x11_c00155{left:69.840000pt;}
.x9_c00155{left:81.520000pt;}
.xd_c00155{left:83.840000pt;}
.x10_c00155{left:86.160000pt;}
.xa_c00155{left:94.000000pt;}
.x2_c00155{left:113.440000pt;}
.xc_c00155{left:114.880000pt;}
.xf_c00155{left:201.520000pt;}
.x7_c00155{left:210.240000pt;}
.x8_c00155{left:216.400000pt;}
.x1_c00155{left:396.960000pt;}
.x3_c00155{left:437.040000pt;}
.x5_c00155{left:443.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_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_7802c3415ac7aa768be2cf90.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls6_c00156{letter-spacing:-0.480960px;}
.ls7_c00156{letter-spacing:-0.360720px;}
.lsb_c00156{letter-spacing:-0.240480px;}
.ls9_c00156{letter-spacing:-0.180360px;}
.lsa_c00156{letter-spacing:-0.120240px;}
.ls5_c00156{letter-spacing:-0.108000px;}
.ls8_c00156{letter-spacing:-0.060120px;}
.ls4_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:0.120240px;}
.ls2_c00156{letter-spacing:0.140040px;}
.ls1_c00156{letter-spacing:0.180360px;}
.ls3_c00156{letter-spacing:5.867712px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00156{word-spacing:-15.210360px;}
.ws3_c00156{word-spacing:-15.150240px;}
.ws4_c00156{word-spacing:-14.909760px;}
.ws1_c00156{word-spacing:-14.849640px;}
.ws0_c00156{word-spacing:-14.669280px;}
.ws16_c00156{word-spacing:-0.420840px;}
.ws35_c00156{word-spacing:-0.180360px;}
.ws46_c00156{word-spacing:-0.120240px;}
.ws11_c00156{word-spacing:-0.060120px;}
.ws5_c00156{word-spacing:0.000000px;}
.wsf_c00156{word-spacing:0.060120px;}
.ws18_c00156{word-spacing:0.120240px;}
.ws7_c00156{word-spacing:0.162000px;}
.ws21_c00156{word-spacing:0.180360px;}
.ws30_c00156{word-spacing:0.240480px;}
.ws6_c00156{word-spacing:0.270000px;}
.ws10_c00156{word-spacing:0.300600px;}
.ws9_c00156{word-spacing:0.480960px;}
.ws13_c00156{word-spacing:1.563120px;}
.ws3a_c00156{word-spacing:2.044080px;}
.ws14_c00156{word-spacing:2.404800px;}
.ws31_c00156{word-spacing:2.645280px;}
.ws43_c00156{word-spacing:2.765520px;}
.ws47_c00156{word-spacing:2.825640px;}
.ws4b_c00156{word-spacing:3.186360px;}
.ws4e_c00156{word-spacing:3.366720px;}
.ws4c_c00156{word-spacing:3.426840px;}
.ws27_c00156{word-spacing:3.486960px;}
.ws2b_c00156{word-spacing:4.208400px;}
.ws29_c00156{word-spacing:4.929840px;}
.ws1b_c00156{word-spacing:5.531040px;}
.ws3b_c00156{word-spacing:5.651280px;}
.wse_c00156{word-spacing:6.012000px;}
.ws41_c00156{word-spacing:6.973920px;}
.ws26_c00156{word-spacing:8.056080px;}
.ws1c_c00156{word-spacing:8.897760px;}
.ws32_c00156{word-spacing:9.258480px;}
.ws1a_c00156{word-spacing:9.498960px;}
.ws33_c00156{word-spacing:9.859680px;}
.ws4a_c00156{word-spacing:9.979920px;}
.wsb_c00156{word-spacing:10.340640px;}
.ws8_c00156{word-spacing:11.422800px;}
.ws4d_c00156{word-spacing:11.482920px;}
.wsa_c00156{word-spacing:14.308560px;}
.ws3f_c00156{word-spacing:14.909760px;}
.ws2d_c00156{word-spacing:15.270480px;}
.ws42_c00156{word-spacing:17.074080px;}
.ws49_c00156{word-spacing:17.434800px;}
.ws1d_c00156{word-spacing:18.516960px;}
.ws20_c00156{word-spacing:18.937800px;}
.ws3e_c00156{word-spacing:19.659240px;}
.wsd_c00156{word-spacing:19.719360px;}
.ws2c_c00156{word-spacing:20.320560px;}
.ws12_c00156{word-spacing:21.402720px;}
.ws2e_c00156{word-spacing:21.883680px;}
.ws40_c00156{word-spacing:25.130160px;}
.ws39_c00156{word-spacing:25.370640px;}
.ws38_c00156{word-spacing:26.573040px;}
.ws15_c00156{word-spacing:27.534960px;}
.ws34_c00156{word-spacing:33.005880px;}
.ws1f_c00156{word-spacing:33.246360px;}
.ws19_c00156{word-spacing:39.378600px;}
.ws3c_c00156{word-spacing:39.739320px;}
.ws17_c00156{word-spacing:42.264360px;}
.ws2a_c00156{word-spacing:43.466760px;}
.ws2f_c00156{word-spacing:46.232280px;}
.ws4f_c00156{word-spacing:46.593000px;}
.ws25_c00156{word-spacing:48.757320px;}
.wsc_c00156{word-spacing:50.320440px;}
.ws1e_c00156{word-spacing:50.560920px;}
.ws23_c00156{word-spacing:58.496760px;}
.ws22_c00156{word-spacing:58.556880px;}
.ws3d_c00156{word-spacing:69.618960px;}
.ws45_c00156{word-spacing:82.244160px;}
.ws28_c00156{word-spacing:82.364400px;}
.ws36_c00156{word-spacing:83.085840px;}
.ws48_c00156{word-spacing:83.446560px;}
.ws37_c00156{word-spacing:101.302200px;}
.ws44_c00156{word-spacing:125.169840px;}
.ws24_c00156{word-spacing:201.161520px;}
._1_c00156{margin-left:-1.058400px;}
._0_c00156{width:1.220400px;}
._3_c00156{width:3.248640px;}
._2_c00156{width:41.885640px;}
.fc0_c00156{color:rgb(0,0,0);}
.fs0_c00156{font-size:54.000000px;}
.fs2_c00156{font-size:60.120000px;}
.fs1_c00156{font-size:72.000000px;}
.y0_c00156{bottom:0.000000px;}
.y1d_c00156{bottom:3.420000px;}
.y44_c00156{bottom:3.510000px;}
.y1c_c00156{bottom:20.700000px;}
.y1b_c00156{bottom:37.980000px;}
.y1a_c00156{bottom:55.170000px;}
.y43_c00156{bottom:55.260000px;}
.y4c_c00156{bottom:57.240000px;}
.y19_c00156{bottom:72.450000px;}
.y18_c00156{bottom:89.640000px;}
.y46_c00156{bottom:106.830000px;}
.y41_c00156{bottom:107.010000px;}
.y45_c00156{bottom:123.480000px;}
.y15_c00156{bottom:141.390000px;}
.y4b_c00156{bottom:161.455500px;}
.y3d_c00156{bottom:175.950000px;}
.y4a_c00156{bottom:178.740000px;}
.y3c_c00156{bottom:193.230000px;}
.y48_c00156{bottom:195.930000px;}
.y11_c00156{bottom:210.420000px;}
.y3b_c00156{bottom:210.510000px;}
.y47_c00156{bottom:213.030000px;}
.y49_c00156{bottom:213.210000px;}
.y3a_c00156{bottom:227.700000px;}
.y1e_c00156{bottom:244.980000px;}
.ye_c00156{bottom:262.170000px;}
.ya_c00156{bottom:279.450000px;}
.y9_c00156{bottom:296.640000px;}
.y2d_c00156{bottom:296.730000px;}
.y8_c00156{bottom:313.920000px;}
.y7_c00156{bottom:331.200000px;}
.y42_c00156{bottom:334.710000px;}
.y2a_c00156{bottom:348.480000px;}
.y29_c00156{bottom:365.670000px;}
.y40_c00156{bottom:369.175500px;}
.y28_c00156{bottom:382.950000px;}
.y3f_c00156{bottom:386.460000px;}
.y27_c00156{bottom:400.230000px;}
.y3e_c00156{bottom:403.740000px;}
.y24_c00156{bottom:451.980000px;}
.y23_c00156{bottom:469.170000px;}
.y2e_c00156{bottom:472.680000px;}
.y22_c00156{bottom:486.450000px;}
.y39_c00156{bottom:489.955680px;}
.y38_c00156{bottom:507.150000px;}
.y1f_c00156{bottom:520.740000px;}
.y2f_c00156{bottom:520.920000px;}
.y2c_c00156{bottom:558.900000px;}
.y37_c00156{bottom:576.157860px;}
.y2b_c00156{bottom:576.180000px;}
.y36_c00156{bottom:593.442360px;}
.y35_c00156{bottom:610.636680px;}
.y34_c00156{bottom:627.921180px;}
.y33_c00156{bottom:645.205680px;}
.y26_c00156{bottom:662.395500px;}
.y32_c00156{bottom:662.400000px;}
.y25_c00156{bottom:679.680000px;}
.y31_c00156{bottom:696.960000px;}
.y21_c00156{bottom:731.430000px;}
.y20_c00156{bottom:748.530000px;}
.y30_c00156{bottom:748.710000px;}
.y6_c00156{bottom:780.480000px;}
.y17_c00156{bottom:887.395500px;}
.y16_c00156{bottom:904.680000px;}
.y14_c00156{bottom:939.145500px;}
.y13_c00156{bottom:956.430000px;}
.y12_c00156{bottom:973.620000px;}
.y10_c00156{bottom:1008.175680px;}
.yf_c00156{bottom:1025.370000px;}
.yb_c00156{bottom:1042.650000px;}
.yd_c00156{bottom:1059.925680px;}
.yc_c00156{bottom:1077.120000px;}
.y5_c00156{bottom:1131.030000px;}
.y4_c00156{bottom:1150.920000px;}
.y3_c00156{bottom:1166.404500px;}
.y2_c00156{bottom:1181.970000px;}
.y1_c00156{bottom:1197.450000px;}
.h3_c00156{height:52.971680px;}
.h2_c00156{height:52.998047px;}
.h6_c00156{height:59.004492px;}
.h8_c00156{height:60.589687px;}
.h4_c00156{height:70.664062px;}
.h9_c00156{height:120.778500px;}
.h5_c00156{height:344.971500px;}
.h7_c00156{height:534.688500px;}
.h0_c00156{height:1262.880000px;}
.h1_c00156{height:1263.000000px;}
.w2_c00156{width:252.900000px;}
.w3_c00156{width:263.430000px;}
.w0_c00156{width:893.070000px;}
.w1_c00156{width:893.250000px;}
.x0_c00156{left:0.000000px;}
.x5_c00156{left:6.930000px;}
.xa_c00156{left:42.480000px;}
.xb_c00156{left:85.230000px;}
.xd_c00156{left:89.100000px;}
.xc_c00156{left:105.660000px;}
.x9_c00156{left:110.880000px;}
.x3_c00156{left:127.620000px;}
.x4_c00156{left:236.520000px;}
.x6_c00156{left:243.450000px;}
.x2_c00156{left:425.160000px;}
.x1_c00156{left:446.580000px;}
.x7_c00156{left:491.670000px;}
.x8_c00156{left:498.600000px;}
.xe_c00156{left:738.540000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls6_c00156{letter-spacing:-0.427520pt;}
.ls7_c00156{letter-spacing:-0.320640pt;}
.lsb_c00156{letter-spacing:-0.213760pt;}
.ls9_c00156{letter-spacing:-0.160320pt;}
.lsa_c00156{letter-spacing:-0.106880pt;}
.ls5_c00156{letter-spacing:-0.096000pt;}
.ls8_c00156{letter-spacing:-0.053440pt;}
.ls4_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:0.106880pt;}
.ls2_c00156{letter-spacing:0.124480pt;}
.ls1_c00156{letter-spacing:0.160320pt;}
.ls3_c00156{letter-spacing:5.215744pt;}
.ws2_c00156{word-spacing:-13.520320pt;}
.ws3_c00156{word-spacing:-13.466880pt;}
.ws4_c00156{word-spacing:-13.253120pt;}
.ws1_c00156{word-spacing:-13.199680pt;}
.ws0_c00156{word-spacing:-13.039360pt;}
.ws16_c00156{word-spacing:-0.374080pt;}
.ws35_c00156{word-spacing:-0.160320pt;}
.ws46_c00156{word-spacing:-0.106880pt;}
.ws11_c00156{word-spacing:-0.053440pt;}
.ws5_c00156{word-spacing:0.000000pt;}
.wsf_c00156{word-spacing:0.053440pt;}
.ws18_c00156{word-spacing:0.106880pt;}
.ws7_c00156{word-spacing:0.144000pt;}
.ws21_c00156{word-spacing:0.160320pt;}
.ws30_c00156{word-spacing:0.213760pt;}
.ws6_c00156{word-spacing:0.240000pt;}
.ws10_c00156{word-spacing:0.267200pt;}
.ws9_c00156{word-spacing:0.427520pt;}
.ws13_c00156{word-spacing:1.389440pt;}
.ws3a_c00156{word-spacing:1.816960pt;}
.ws14_c00156{word-spacing:2.137600pt;}
.ws31_c00156{word-spacing:2.351360pt;}
.ws43_c00156{word-spacing:2.458240pt;}
.ws47_c00156{word-spacing:2.511680pt;}
.ws4b_c00156{word-spacing:2.832320pt;}
.ws4e_c00156{word-spacing:2.992640pt;}
.ws4c_c00156{word-spacing:3.046080pt;}
.ws27_c00156{word-spacing:3.099520pt;}
.ws2b_c00156{word-spacing:3.740800pt;}
.ws29_c00156{word-spacing:4.382080pt;}
.ws1b_c00156{word-spacing:4.916480pt;}
.ws3b_c00156{word-spacing:5.023360pt;}
.wse_c00156{word-spacing:5.344000pt;}
.ws41_c00156{word-spacing:6.199040pt;}
.ws26_c00156{word-spacing:7.160960pt;}
.ws1c_c00156{word-spacing:7.909120pt;}
.ws32_c00156{word-spacing:8.229760pt;}
.ws1a_c00156{word-spacing:8.443520pt;}
.ws33_c00156{word-spacing:8.764160pt;}
.ws4a_c00156{word-spacing:8.871040pt;}
.wsb_c00156{word-spacing:9.191680pt;}
.ws8_c00156{word-spacing:10.153600pt;}
.ws4d_c00156{word-spacing:10.207040pt;}
.wsa_c00156{word-spacing:12.718720pt;}
.ws3f_c00156{word-spacing:13.253120pt;}
.ws2d_c00156{word-spacing:13.573760pt;}
.ws42_c00156{word-spacing:15.176960pt;}
.ws49_c00156{word-spacing:15.497600pt;}
.ws1d_c00156{word-spacing:16.459520pt;}
.ws20_c00156{word-spacing:16.833600pt;}
.ws3e_c00156{word-spacing:17.474880pt;}
.wsd_c00156{word-spacing:17.528320pt;}
.ws2c_c00156{word-spacing:18.062720pt;}
.ws12_c00156{word-spacing:19.024640pt;}
.ws2e_c00156{word-spacing:19.452160pt;}
.ws40_c00156{word-spacing:22.337920pt;}
.ws39_c00156{word-spacing:22.551680pt;}
.ws38_c00156{word-spacing:23.620480pt;}
.ws15_c00156{word-spacing:24.475520pt;}
.ws34_c00156{word-spacing:29.338560pt;}
.ws1f_c00156{word-spacing:29.552320pt;}
.ws19_c00156{word-spacing:35.003200pt;}
.ws3c_c00156{word-spacing:35.323840pt;}
.ws17_c00156{word-spacing:37.568320pt;}
.ws2a_c00156{word-spacing:38.637120pt;}
.ws2f_c00156{word-spacing:41.095360pt;}
.ws4f_c00156{word-spacing:41.416000pt;}
.ws25_c00156{word-spacing:43.339840pt;}
.wsc_c00156{word-spacing:44.729280pt;}
.ws1e_c00156{word-spacing:44.943040pt;}
.ws23_c00156{word-spacing:51.997120pt;}
.ws22_c00156{word-spacing:52.050560pt;}
.ws3d_c00156{word-spacing:61.883520pt;}
.ws45_c00156{word-spacing:73.105920pt;}
.ws28_c00156{word-spacing:73.212800pt;}
.ws36_c00156{word-spacing:73.854080pt;}
.ws48_c00156{word-spacing:74.174720pt;}
.ws37_c00156{word-spacing:90.046400pt;}
.ws44_c00156{word-spacing:111.262080pt;}
.ws24_c00156{word-spacing:178.810240pt;}
._1_c00156{margin-left:-0.940800pt;}
._0_c00156{width:1.084800pt;}
._3_c00156{width:2.887680pt;}
._2_c00156{width:37.231680pt;}
.fs0_c00156{font-size:48.000000pt;}
.fs2_c00156{font-size:53.440000pt;}
.fs1_c00156{font-size:64.000000pt;}
.y0_c00156{bottom:0.000000pt;}
.y1d_c00156{bottom:3.040000pt;}
.y44_c00156{bottom:3.120000pt;}
.y1c_c00156{bottom:18.400000pt;}
.y1b_c00156{bottom:33.760000pt;}
.y1a_c00156{bottom:49.040000pt;}
.y43_c00156{bottom:49.120000pt;}
.y4c_c00156{bottom:50.880000pt;}
.y19_c00156{bottom:64.400000pt;}
.y18_c00156{bottom:79.680000pt;}
.y46_c00156{bottom:94.960000pt;}
.y41_c00156{bottom:95.120000pt;}
.y45_c00156{bottom:109.760000pt;}
.y15_c00156{bottom:125.680000pt;}
.y4b_c00156{bottom:143.516000pt;}
.y3d_c00156{bottom:156.400000pt;}
.y4a_c00156{bottom:158.880000pt;}
.y3c_c00156{bottom:171.760000pt;}
.y48_c00156{bottom:174.160000pt;}
.y11_c00156{bottom:187.040000pt;}
.y3b_c00156{bottom:187.120000pt;}
.y47_c00156{bottom:189.360000pt;}
.y49_c00156{bottom:189.520000pt;}
.y3a_c00156{bottom:202.400000pt;}
.y1e_c00156{bottom:217.760000pt;}
.ye_c00156{bottom:233.040000pt;}
.ya_c00156{bottom:248.400000pt;}
.y9_c00156{bottom:263.680000pt;}
.y2d_c00156{bottom:263.760000pt;}
.y8_c00156{bottom:279.040000pt;}
.y7_c00156{bottom:294.400000pt;}
.y42_c00156{bottom:297.520000pt;}
.y2a_c00156{bottom:309.760000pt;}
.y29_c00156{bottom:325.040000pt;}
.y40_c00156{bottom:328.156000pt;}
.y28_c00156{bottom:340.400000pt;}
.y3f_c00156{bottom:343.520000pt;}
.y27_c00156{bottom:355.760000pt;}
.y3e_c00156{bottom:358.880000pt;}
.y24_c00156{bottom:401.760000pt;}
.y23_c00156{bottom:417.040000pt;}
.y2e_c00156{bottom:420.160000pt;}
.y22_c00156{bottom:432.400000pt;}
.y39_c00156{bottom:435.516160pt;}
.y38_c00156{bottom:450.800000pt;}
.y1f_c00156{bottom:462.880000pt;}
.y2f_c00156{bottom:463.040000pt;}
.y2c_c00156{bottom:496.800000pt;}
.y37_c00156{bottom:512.140320pt;}
.y2b_c00156{bottom:512.160000pt;}
.y36_c00156{bottom:527.504320pt;}
.y35_c00156{bottom:542.788160pt;}
.y34_c00156{bottom:558.152160pt;}
.y33_c00156{bottom:573.516160pt;}
.y26_c00156{bottom:588.796000pt;}
.y32_c00156{bottom:588.800000pt;}
.y25_c00156{bottom:604.160000pt;}
.y31_c00156{bottom:619.520000pt;}
.y21_c00156{bottom:650.160000pt;}
.y20_c00156{bottom:665.360000pt;}
.y30_c00156{bottom:665.520000pt;}
.y6_c00156{bottom:693.760000pt;}
.y17_c00156{bottom:788.796000pt;}
.y16_c00156{bottom:804.160000pt;}
.y14_c00156{bottom:834.796000pt;}
.y13_c00156{bottom:850.160000pt;}
.y12_c00156{bottom:865.440000pt;}
.y10_c00156{bottom:896.156160pt;}
.yf_c00156{bottom:911.440000pt;}
.yb_c00156{bottom:926.800000pt;}
.yd_c00156{bottom:942.156160pt;}
.yc_c00156{bottom:957.440000pt;}
.y5_c00156{bottom:1005.360000pt;}
.y4_c00156{bottom:1023.040000pt;}
.y3_c00156{bottom:1036.804000pt;}
.y2_c00156{bottom:1050.640000pt;}
.y1_c00156{bottom:1064.400000pt;}
.h3_c00156{height:47.085938pt;}
.h2_c00156{height:47.109375pt;}
.h6_c00156{height:52.448437pt;}
.h8_c00156{height:53.857500pt;}
.h4_c00156{height:62.812500pt;}
.h9_c00156{height:107.358667pt;}
.h5_c00156{height:306.641333pt;}
.h7_c00156{height:475.278667pt;}
.h0_c00156{height:1122.560000pt;}
.h1_c00156{height:1122.666667pt;}
.w2_c00156{width:224.800000pt;}
.w3_c00156{width:234.160000pt;}
.w0_c00156{width:793.840000pt;}
.w1_c00156{width:794.000000pt;}
.x0_c00156{left:0.000000pt;}
.x5_c00156{left:6.160000pt;}
.xa_c00156{left:37.760000pt;}
.xb_c00156{left:75.760000pt;}
.xd_c00156{left:79.200000pt;}
.xc_c00156{left:93.920000pt;}
.x9_c00156{left:98.560000pt;}
.x3_c00156{left:113.440000pt;}
.x4_c00156{left:210.240000pt;}
.x6_c00156{left:216.400000pt;}
.x2_c00156{left:377.920000pt;}
.x1_c00156{left:396.960000pt;}
.x7_c00156{left:437.040000pt;}
.x8_c00156{left:443.200000pt;}
.xe_c00156{left:656.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_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_b4e555c72b9cc0b041db540b.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00157{vertical-align:-61.938000px;}
.v3_c00157{vertical-align:-20.880000px;}
.v0_c00157{vertical-align:0.000000px;}
.v2_c00157{vertical-align:20.880000px;}
.lsa_c00157{letter-spacing:-0.420840px;}
.ls6_c00157{letter-spacing:-0.360720px;}
.ls9_c00157{letter-spacing:-0.240480px;}
.ls7_c00157{letter-spacing:-0.180360px;}
.ls8_c00157{letter-spacing:-0.120240px;}
.ls5_c00157{letter-spacing:-0.060120px;}
.ls4_c00157{letter-spacing:0.000000px;}
.ls1_c00157{letter-spacing:0.120240px;}
.ls2_c00157{letter-spacing:0.140040px;}
.ls3_c00157{letter-spacing:0.180360px;}
.ls0_c00157{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00157{word-spacing:-15.210360px;}
.ws0_c00157{word-spacing:-15.150240px;}
.ws6_c00157{word-spacing:-15.030000px;}
.ws5_c00157{word-spacing:-14.969880px;}
.ws4_c00157{word-spacing:-14.909760px;}
.ws1_c00157{word-spacing:-14.789520px;}
.ws2_c00157{word-spacing:-9.720000px;}
.ws18_c00157{word-spacing:-0.420840px;}
.ws22_c00157{word-spacing:-0.180360px;}
.ws8_c00157{word-spacing:-0.162000px;}
.ws35_c00157{word-spacing:-0.120240px;}
.ws3a_c00157{word-spacing:-0.060120px;}
.ws7_c00157{word-spacing:0.000000px;}
.ws34_c00157{word-spacing:0.060120px;}
.wsd_c00157{word-spacing:0.180360px;}
.ws39_c00157{word-spacing:0.240480px;}
.ws38_c00157{word-spacing:0.300600px;}
.wsb_c00157{word-spacing:0.360720px;}
.ws52_c00157{word-spacing:0.541080px;}
.ws50_c00157{word-spacing:0.601200px;}
.ws49_c00157{word-spacing:0.661320px;}
.ws41_c00157{word-spacing:1.262520px;}
.ws29_c00157{word-spacing:1.322640px;}
.ws2a_c00157{word-spacing:1.382760px;}
.ws2c_c00157{word-spacing:1.563120px;}
.ws2d_c00157{word-spacing:2.645280px;}
.ws4c_c00157{word-spacing:2.765520px;}
.ws19_c00157{word-spacing:3.126240px;}
.ws51_c00157{word-spacing:3.486960px;}
.ws43_c00157{word-spacing:3.727440px;}
.ws1a_c00157{word-spacing:3.847680px;}
.ws2e_c00157{word-spacing:4.809600px;}
.ws25_c00157{word-spacing:5.651280px;}
.ws46_c00157{word-spacing:6.012000px;}
.ws45_c00157{word-spacing:6.673320px;}
.ws1b_c00157{word-spacing:7.334640px;}
.ws1c_c00157{word-spacing:7.695360px;}
.ws44_c00157{word-spacing:8.056080px;}
.ws9_c00157{word-spacing:8.537040px;}
.ws14_c00157{word-spacing:8.777520px;}
.ws13_c00157{word-spacing:9.138240px;}
.ws16_c00157{word-spacing:9.498960px;}
.ws4a_c00157{word-spacing:9.619200px;}
.ws15_c00157{word-spacing:9.979920px;}
.ws1f_c00157{word-spacing:10.581120px;}
.ws1d_c00157{word-spacing:10.701360px;}
.ws3d_c00157{word-spacing:11.783520px;}
.ws42_c00157{word-spacing:14.188320px;}
.ws47_c00157{word-spacing:15.270480px;}
.ws10_c00157{word-spacing:15.751440px;}
.ws37_c00157{word-spacing:16.352640px;}
.wsc_c00157{word-spacing:16.833600px;}
.ws40_c00157{word-spacing:18.276480px;}
.ws3f_c00157{word-spacing:18.516960px;}
.ws4d_c00157{word-spacing:19.719360px;}
.ws4e_c00157{word-spacing:20.080080px;}
.ws21_c00157{word-spacing:21.823560px;}
.ws4b_c00157{word-spacing:23.567040px;}
.wse_c00157{word-spacing:24.048000px;}
.ws17_c00157{word-spacing:26.452800px;}
.wsf_c00157{word-spacing:26.933760px;}
.ws23_c00157{word-spacing:26.993880px;}
.ws24_c00157{word-spacing:27.174240px;}
.wsa_c00157{word-spacing:28.256400px;}
.ws48_c00157{word-spacing:31.502880px;}
.ws4f_c00157{word-spacing:37.274400px;}
.ws2b_c00157{word-spacing:38.055960px;}
.ws12_c00157{word-spacing:42.985800px;}
.ws11_c00157{word-spacing:44.428680px;}
.ws3e_c00157{word-spacing:46.292400px;}
.ws3b_c00157{word-spacing:49.959720px;}
.ws30_c00157{word-spacing:50.681160px;}
.ws2f_c00157{word-spacing:51.282360px;}
.ws31_c00157{word-spacing:52.725240px;}
.ws3c_c00157{word-spacing:53.206200px;}
.ws20_c00157{word-spacing:64.629000px;}
.ws27_c00157{word-spacing:65.651040px;}
.ws28_c00157{word-spacing:68.176080px;}
.ws32_c00157{word-spacing:69.739200px;}
.ws1e_c00157{word-spacing:71.903520px;}
.ws26_c00157{word-spacing:93.486600px;}
.ws33_c00157{word-spacing:101.061720px;}
.ws36_c00157{word-spacing:171.522360px;}
._0_c00157{margin-left:-1.382760px;}
._1_c00157{width:1.292580px;}
._3_c00157{width:2.924640px;}
._2_c00157{width:111.161880px;}
.fc0_c00157{color:rgb(0,0,0);}
.fs3_c00157{font-size:38.880000px;}
.fs0_c00157{font-size:54.000000px;}
.fs2_c00157{font-size:60.120000px;}
.fs1_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y18_c00157{bottom:3.510000px;}
.y4d_c00157{bottom:20.700000px;}
.y17_c00157{bottom:20.790000px;}
.y4b_c00157{bottom:37.980000px;}
.y4a_c00157{bottom:55.260000px;}
.y51_c00157{bottom:57.240000px;}
.y49_c00157{bottom:72.450000px;}
.y13_c00157{bottom:89.730000px;}
.y12_c00157{bottom:107.010000px;}
.y50_c00157{bottom:109.791180px;}
.y11_c00157{bottom:124.200000px;}
.y4f_c00157{bottom:126.985500px;}
.y10_c00157{bottom:141.480000px;}
.y4e_c00157{bottom:149.490000px;}
.yf_c00157{bottom:158.760000px;}
.y52_c00157{bottom:162.180000px;}
.y45_c00157{bottom:175.950000px;}
.y1f_c00157{bottom:193.230000px;}
.y1e_c00157{bottom:210.510000px;}
.y4c_c00157{bottom:213.930000px;}
.y1d_c00157{bottom:227.700000px;}
.y1c_c00157{bottom:244.980000px;}
.y1b_c00157{bottom:262.260000px;}
.y8_c00157{bottom:279.450000px;}
.y48_c00157{bottom:282.955500px;}
.y19_c00157{bottom:296.730000px;}
.y47_c00157{bottom:300.240000px;}
.y33_c00157{bottom:313.920000px;}
.y6_c00157{bottom:314.010000px;}
.y32_c00157{bottom:331.200000px;}
.y46_c00157{bottom:334.710000px;}
.y2f_c00157{bottom:365.670000px;}
.y3d_c00157{bottom:400.230000px;}
.y44_c00157{bottom:403.731180px;}
.y35_c00157{bottom:403.740000px;}
.y43_c00157{bottom:420.925500px;}
.y2b_c00157{bottom:434.700000px;}
.y42_c00157{bottom:438.210000px;}
.y3a_c00157{bottom:451.980000px;}
.y34_c00157{bottom:455.490000px;}
.y39_c00157{bottom:469.170000px;}
.y38_c00157{bottom:486.450000px;}
.y41_c00157{bottom:489.960000px;}
.y27_c00157{bottom:503.730000px;}
.y26_c00157{bottom:520.920000px;}
.y31_c00157{bottom:524.430000px;}
.y25_c00157{bottom:538.200000px;}
.y40_c00157{bottom:541.701180px;}
.y30_c00157{bottom:541.710000px;}
.y24_c00157{bottom:555.480000px;}
.y3f_c00157{bottom:558.895500px;}
.y23_c00157{bottom:572.670000px;}
.y2e_c00157{bottom:576.171180px;}
.y3e_c00157{bottom:576.180000px;}
.y21_c00157{bottom:589.770000px;}
.y36_c00157{bottom:589.950000px;}
.y2d_c00157{bottom:593.455680px;}
.y3c_c00157{bottom:610.645500px;}
.y2c_c00157{bottom:610.650000px;}
.y3b_c00157{bottom:627.930000px;}
.y2a_c00157{bottom:645.205680px;}
.y29_c00157{bottom:662.400000px;}
.y28_c00157{bottom:679.680000px;}
.y37_c00157{bottom:731.430000px;}
.y22_c00157{bottom:765.900000px;}
.y5_c00157{bottom:797.670000px;}
.y16_c00157{bottom:835.641180px;}
.y15_c00157{bottom:852.925680px;}
.y14_c00157{bottom:870.120000px;}
.ye_c00157{bottom:973.602180px;}
.y20_c00157{bottom:973.620000px;}
.yd_c00157{bottom:990.886680px;}
.yc_c00157{bottom:1008.171180px;}
.yb_c00157{bottom:1025.365500px;}
.ya_c00157{bottom:1042.650000px;}
.y9_c00157{bottom:1059.930000px;}
.y1a_c00157{bottom:1077.120000px;}
.y7_c00157{bottom:1094.400000px;}
.y4_c00157{bottom:1131.030000px;}
.y3_c00157{bottom:1150.915500px;}
.y2_c00157{bottom:1166.400000px;}
.y1_c00157{bottom:1197.450000px;}
.h9_c00157{height:38.158594px;}
.h2_c00157{height:52.998047px;}
.h5_c00157{height:59.004492px;}
.h8_c00157{height:59.038594px;}
.h7_c00157{height:60.589687px;}
.h3_c00157{height:70.664062px;}
.h4_c00157{height:327.780000px;}
.h6_c00157{height:603.720000px;}
.h0_c00157{height:1262.880000px;}
.h1_c00157{height:1263.000000px;}
.w2_c00157{width:252.900000px;}
.w3_c00157{width:263.430000px;}
.w0_c00157{width:893.070000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x4_c00157{left:6.930000px;}
.x8_c00157{left:96.750000px;}
.xb_c00157{left:117.630000px;}
.x2_c00157{left:127.620000px;}
.x9_c00157{left:153.090000px;}
.xa_c00157{left:203.040000px;}
.x3_c00157{left:236.520000px;}
.x5_c00157{left:243.450000px;}
.x1_c00157{left:446.580000px;}
.x6_c00157{left:491.670000px;}
.x7_c00157{left:498.600000px;}
@media print{
.v1_c00157{vertical-align:-55.056000pt;}
.v3_c00157{vertical-align:-18.560000pt;}
.v0_c00157{vertical-align:0.000000pt;}
.v2_c00157{vertical-align:18.560000pt;}
.lsa_c00157{letter-spacing:-0.374080pt;}
.ls6_c00157{letter-spacing:-0.320640pt;}
.ls9_c00157{letter-spacing:-0.213760pt;}
.ls7_c00157{letter-spacing:-0.160320pt;}
.ls8_c00157{letter-spacing:-0.106880pt;}
.ls5_c00157{letter-spacing:-0.053440pt;}
.ls4_c00157{letter-spacing:0.000000pt;}
.ls1_c00157{letter-spacing:0.106880pt;}
.ls2_c00157{letter-spacing:0.124480pt;}
.ls3_c00157{letter-spacing:0.160320pt;}
.ls0_c00157{letter-spacing:284.016000pt;}
.ws3_c00157{word-spacing:-13.520320pt;}
.ws0_c00157{word-spacing:-13.466880pt;}
.ws6_c00157{word-spacing:-13.360000pt;}
.ws5_c00157{word-spacing:-13.306560pt;}
.ws4_c00157{word-spacing:-13.253120pt;}
.ws1_c00157{word-spacing:-13.146240pt;}
.ws2_c00157{word-spacing:-8.640000pt;}
.ws18_c00157{word-spacing:-0.374080pt;}
.ws22_c00157{word-spacing:-0.160320pt;}
.ws8_c00157{word-spacing:-0.144000pt;}
.ws35_c00157{word-spacing:-0.106880pt;}
.ws3a_c00157{word-spacing:-0.053440pt;}
.ws7_c00157{word-spacing:0.000000pt;}
.ws34_c00157{word-spacing:0.053440pt;}
.wsd_c00157{word-spacing:0.160320pt;}
.ws39_c00157{word-spacing:0.213760pt;}
.ws38_c00157{word-spacing:0.267200pt;}
.wsb_c00157{word-spacing:0.320640pt;}
.ws52_c00157{word-spacing:0.480960pt;}
.ws50_c00157{word-spacing:0.534400pt;}
.ws49_c00157{word-spacing:0.587840pt;}
.ws41_c00157{word-spacing:1.122240pt;}
.ws29_c00157{word-spacing:1.175680pt;}
.ws2a_c00157{word-spacing:1.229120pt;}
.ws2c_c00157{word-spacing:1.389440pt;}
.ws2d_c00157{word-spacing:2.351360pt;}
.ws4c_c00157{word-spacing:2.458240pt;}
.ws19_c00157{word-spacing:2.778880pt;}
.ws51_c00157{word-spacing:3.099520pt;}
.ws43_c00157{word-spacing:3.313280pt;}
.ws1a_c00157{word-spacing:3.420160pt;}
.ws2e_c00157{word-spacing:4.275200pt;}
.ws25_c00157{word-spacing:5.023360pt;}
.ws46_c00157{word-spacing:5.344000pt;}
.ws45_c00157{word-spacing:5.931840pt;}
.ws1b_c00157{word-spacing:6.519680pt;}
.ws1c_c00157{word-spacing:6.840320pt;}
.ws44_c00157{word-spacing:7.160960pt;}
.ws9_c00157{word-spacing:7.588480pt;}
.ws14_c00157{word-spacing:7.802240pt;}
.ws13_c00157{word-spacing:8.122880pt;}
.ws16_c00157{word-spacing:8.443520pt;}
.ws4a_c00157{word-spacing:8.550400pt;}
.ws15_c00157{word-spacing:8.871040pt;}
.ws1f_c00157{word-spacing:9.405440pt;}
.ws1d_c00157{word-spacing:9.512320pt;}
.ws3d_c00157{word-spacing:10.474240pt;}
.ws42_c00157{word-spacing:12.611840pt;}
.ws47_c00157{word-spacing:13.573760pt;}
.ws10_c00157{word-spacing:14.001280pt;}
.ws37_c00157{word-spacing:14.535680pt;}
.wsc_c00157{word-spacing:14.963200pt;}
.ws40_c00157{word-spacing:16.245760pt;}
.ws3f_c00157{word-spacing:16.459520pt;}
.ws4d_c00157{word-spacing:17.528320pt;}
.ws4e_c00157{word-spacing:17.848960pt;}
.ws21_c00157{word-spacing:19.398720pt;}
.ws4b_c00157{word-spacing:20.948480pt;}
.wse_c00157{word-spacing:21.376000pt;}
.ws17_c00157{word-spacing:23.513600pt;}
.wsf_c00157{word-spacing:23.941120pt;}
.ws23_c00157{word-spacing:23.994560pt;}
.ws24_c00157{word-spacing:24.154880pt;}
.wsa_c00157{word-spacing:25.116800pt;}
.ws48_c00157{word-spacing:28.002560pt;}
.ws4f_c00157{word-spacing:33.132800pt;}
.ws2b_c00157{word-spacing:33.827520pt;}
.ws12_c00157{word-spacing:38.209600pt;}
.ws11_c00157{word-spacing:39.492160pt;}
.ws3e_c00157{word-spacing:41.148800pt;}
.ws3b_c00157{word-spacing:44.408640pt;}
.ws30_c00157{word-spacing:45.049920pt;}
.ws2f_c00157{word-spacing:45.584320pt;}
.ws31_c00157{word-spacing:46.866880pt;}
.ws3c_c00157{word-spacing:47.294400pt;}
.ws20_c00157{word-spacing:57.448000pt;}
.ws27_c00157{word-spacing:58.356480pt;}
.ws28_c00157{word-spacing:60.600960pt;}
.ws32_c00157{word-spacing:61.990400pt;}
.ws1e_c00157{word-spacing:63.914240pt;}
.ws26_c00157{word-spacing:83.099200pt;}
.ws33_c00157{word-spacing:89.832640pt;}
.ws36_c00157{word-spacing:152.464320pt;}
._0_c00157{margin-left:-1.229120pt;}
._1_c00157{width:1.148960pt;}
._3_c00157{width:2.599680pt;}
._2_c00157{width:98.810560pt;}
.fs3_c00157{font-size:34.560000pt;}
.fs0_c00157{font-size:48.000000pt;}
.fs2_c00157{font-size:53.440000pt;}
.fs1_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y18_c00157{bottom:3.120000pt;}
.y4d_c00157{bottom:18.400000pt;}
.y17_c00157{bottom:18.480000pt;}
.y4b_c00157{bottom:33.760000pt;}
.y4a_c00157{bottom:49.120000pt;}
.y51_c00157{bottom:50.880000pt;}
.y49_c00157{bottom:64.400000pt;}
.y13_c00157{bottom:79.760000pt;}
.y12_c00157{bottom:95.120000pt;}
.y50_c00157{bottom:97.592160pt;}
.y11_c00157{bottom:110.400000pt;}
.y4f_c00157{bottom:112.876000pt;}
.y10_c00157{bottom:125.760000pt;}
.y4e_c00157{bottom:132.880000pt;}
.yf_c00157{bottom:141.120000pt;}
.y52_c00157{bottom:144.160000pt;}
.y45_c00157{bottom:156.400000pt;}
.y1f_c00157{bottom:171.760000pt;}
.y1e_c00157{bottom:187.120000pt;}
.y4c_c00157{bottom:190.160000pt;}
.y1d_c00157{bottom:202.400000pt;}
.y1c_c00157{bottom:217.760000pt;}
.y1b_c00157{bottom:233.120000pt;}
.y8_c00157{bottom:248.400000pt;}
.y48_c00157{bottom:251.516000pt;}
.y19_c00157{bottom:263.760000pt;}
.y47_c00157{bottom:266.880000pt;}
.y33_c00157{bottom:279.040000pt;}
.y6_c00157{bottom:279.120000pt;}
.y32_c00157{bottom:294.400000pt;}
.y46_c00157{bottom:297.520000pt;}
.y2f_c00157{bottom:325.040000pt;}
.y3d_c00157{bottom:355.760000pt;}
.y44_c00157{bottom:358.872160pt;}
.y35_c00157{bottom:358.880000pt;}
.y43_c00157{bottom:374.156000pt;}
.y2b_c00157{bottom:386.400000pt;}
.y42_c00157{bottom:389.520000pt;}
.y3a_c00157{bottom:401.760000pt;}
.y34_c00157{bottom:404.880000pt;}
.y39_c00157{bottom:417.040000pt;}
.y38_c00157{bottom:432.400000pt;}
.y41_c00157{bottom:435.520000pt;}
.y27_c00157{bottom:447.760000pt;}
.y26_c00157{bottom:463.040000pt;}
.y31_c00157{bottom:466.160000pt;}
.y25_c00157{bottom:478.400000pt;}
.y40_c00157{bottom:481.512160pt;}
.y30_c00157{bottom:481.520000pt;}
.y24_c00157{bottom:493.760000pt;}
.y3f_c00157{bottom:496.796000pt;}
.y23_c00157{bottom:509.040000pt;}
.y2e_c00157{bottom:512.152160pt;}
.y3e_c00157{bottom:512.160000pt;}
.y21_c00157{bottom:524.240000pt;}
.y36_c00157{bottom:524.400000pt;}
.y2d_c00157{bottom:527.516160pt;}
.y3c_c00157{bottom:542.796000pt;}
.y2c_c00157{bottom:542.800000pt;}
.y3b_c00157{bottom:558.160000pt;}
.y2a_c00157{bottom:573.516160pt;}
.y29_c00157{bottom:588.800000pt;}
.y28_c00157{bottom:604.160000pt;}
.y37_c00157{bottom:650.160000pt;}
.y22_c00157{bottom:680.800000pt;}
.y5_c00157{bottom:709.040000pt;}
.y16_c00157{bottom:742.792160pt;}
.y15_c00157{bottom:758.156160pt;}
.y14_c00157{bottom:773.440000pt;}
.ye_c00157{bottom:865.424160pt;}
.y20_c00157{bottom:865.440000pt;}
.yd_c00157{bottom:880.788160pt;}
.yc_c00157{bottom:896.152160pt;}
.yb_c00157{bottom:911.436000pt;}
.ya_c00157{bottom:926.800000pt;}
.y9_c00157{bottom:942.160000pt;}
.y1a_c00157{bottom:957.440000pt;}
.y7_c00157{bottom:972.800000pt;}
.y4_c00157{bottom:1005.360000pt;}
.y3_c00157{bottom:1023.036000pt;}
.y2_c00157{bottom:1036.800000pt;}
.y1_c00157{bottom:1064.400000pt;}
.h9_c00157{height:33.918750pt;}
.h2_c00157{height:47.109375pt;}
.h5_c00157{height:52.448437pt;}
.h8_c00157{height:52.478750pt;}
.h7_c00157{height:53.857500pt;}
.h3_c00157{height:62.812500pt;}
.h4_c00157{height:291.360000pt;}
.h6_c00157{height:536.640000pt;}
.h0_c00157{height:1122.560000pt;}
.h1_c00157{height:1122.666667pt;}
.w2_c00157{width:224.800000pt;}
.w3_c00157{width:234.160000pt;}
.w0_c00157{width:793.840000pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x4_c00157{left:6.160000pt;}
.x8_c00157{left:86.000000pt;}
.xb_c00157{left:104.560000pt;}
.x2_c00157{left:113.440000pt;}
.x9_c00157{left:136.080000pt;}
.xa_c00157{left:180.480000pt;}
.x3_c00157{left:210.240000pt;}
.x5_c00157{left:216.400000pt;}
.x1_c00157{left:396.960000pt;}
.x6_c00157{left:437.040000pt;}
.x7_c00157{left:443.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_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_73044ace099f276bb60733da.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00158{letter-spacing:-0.180360px;}
.ls5_c00158{letter-spacing:-0.120240px;}
.ls2_c00158{letter-spacing:-0.108000px;}
.ls4_c00158{letter-spacing:-0.060120px;}
.ls1_c00158{letter-spacing:0.000000px;}
.ls3_c00158{letter-spacing:0.180360px;}
.ls0_c00158{letter-spacing:22.785480px;}
.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:-15.210360px;}
.ws1_c00158{word-spacing:-14.969880px;}
.ws9_c00158{word-spacing:-0.420840px;}
.ws25_c00158{word-spacing:-0.180360px;}
.ws2_c00158{word-spacing:0.000000px;}
.ws12_c00158{word-spacing:0.060120px;}
.ws4_c00158{word-spacing:0.162000px;}
.ws17_c00158{word-spacing:0.180360px;}
.ws3_c00158{word-spacing:0.270000px;}
.ws30_c00158{word-spacing:0.300600px;}
.ws7_c00158{word-spacing:0.541080px;}
.ws21_c00158{word-spacing:2.284560px;}
.ws2c_c00158{word-spacing:2.645280px;}
.ws2f_c00158{word-spacing:3.366720px;}
.wsb_c00158{word-spacing:3.486960px;}
.wsa_c00158{word-spacing:3.667320px;}
.ws18_c00158{word-spacing:3.727440px;}
.ws34_c00158{word-spacing:3.847680px;}
.ws13_c00158{word-spacing:4.088160px;}
.wsd_c00158{word-spacing:4.148280px;}
.ws24_c00158{word-spacing:4.448880px;}
.ws1b_c00158{word-spacing:6.372720px;}
.wse_c00158{word-spacing:6.973920px;}
.ws3c_c00158{word-spacing:9.258480px;}
.ws1c_c00158{word-spacing:10.941840px;}
.ws36_c00158{word-spacing:11.302560px;}
.ws29_c00158{word-spacing:11.422800px;}
.ws35_c00158{word-spacing:12.384720px;}
.ws38_c00158{word-spacing:13.947840px;}
.ws1e_c00158{word-spacing:14.669280px;}
.ws1d_c00158{word-spacing:15.631200px;}
.ws3b_c00158{word-spacing:17.434800px;}
.ws23_c00158{word-spacing:18.156240px;}
.ws19_c00158{word-spacing:18.276480px;}
.ws1f_c00158{word-spacing:18.516960px;}
.ws1a_c00158{word-spacing:18.637200px;}
.ws8_c00158{word-spacing:19.358640px;}
.ws5_c00158{word-spacing:20.080080px;}
.ws11_c00158{word-spacing:22.845600px;}
.ws2d_c00158{word-spacing:23.326560px;}
.ws3a_c00158{word-spacing:23.687280px;}
.ws26_c00158{word-spacing:25.851600px;}
.ws14_c00158{word-spacing:30.540960px;}
.ws28_c00158{word-spacing:30.781440px;}
.ws6_c00158{word-spacing:30.901680px;}
.ws10_c00158{word-spacing:32.524920px;}
.ws3d_c00158{word-spacing:32.885640px;}
.ws20_c00158{word-spacing:33.246360px;}
.ws39_c00158{word-spacing:33.967800px;}
.wsc_c00158{word-spacing:35.771400px;}
.ws2a_c00158{word-spacing:39.739320px;}
.wsf_c00158{word-spacing:40.941720px;}
.ws2e_c00158{word-spacing:46.713240px;}
.ws32_c00158{word-spacing:47.314440px;}
.ws15_c00158{word-spacing:49.478760px;}
.ws16_c00158{word-spacing:50.921640px;}
.ws27_c00158{word-spacing:58.617000px;}
.ws33_c00158{word-spacing:59.578920px;}
.ws37_c00158{word-spacing:65.049840px;}
.ws22_c00158{word-spacing:67.454640px;}
.ws2b_c00158{word-spacing:101.302200px;}
.ws31_c00158{word-spacing:363.124800px;}
._1_c00158{margin-left:-1.058400px;}
._0_c00158{width:1.220400px;}
.fc0_c00158{color:rgb(0,0,0);}
.fs0_c00158{font-size:54.000000px;}
.fs2_c00158{font-size:60.120000px;}
.fs1_c00158{font-size:72.000000px;}
.y0_c00158{bottom:0.000000px;}
.y44_c00158{bottom:3.510000px;}
.y43_c00158{bottom:20.700000px;}
.y42_c00158{bottom:37.980000px;}
.y45_c00158{bottom:57.240000px;}
.y40_c00158{bottom:72.450000px;}
.y3e_c00158{bottom:106.920000px;}
.y3d_c00158{bottom:124.200000px;}
.y6_c00158{bottom:125.010000px;}
.y3c_c00158{bottom:141.480000px;}
.y3b_c00158{bottom:158.670000px;}
.y3a_c00158{bottom:175.950000px;}
.y41_c00158{bottom:180.180000px;}
.y39_c00158{bottom:193.230000px;}
.y37_c00158{bottom:210.420000px;}
.y3f_c00158{bottom:214.740000px;}
.y36_c00158{bottom:227.700000px;}
.y33_c00158{bottom:279.450000px;}
.y32_c00158{bottom:296.730000px;}
.y38_c00158{bottom:318.240000px;}
.y30_c00158{bottom:331.200000px;}
.y2f_c00158{bottom:348.480000px;}
.y2e_c00158{bottom:365.670000px;}
.y35_c00158{bottom:369.985680px;}
.y2d_c00158{bottom:382.950000px;}
.y34_c00158{bottom:387.180000px;}
.y2b_c00158{bottom:417.420000px;}
.y2a_c00158{bottom:434.700000px;}
.y31_c00158{bottom:438.930000px;}
.y26_c00158{bottom:486.450000px;}
.y25_c00158{bottom:503.640000px;}
.y2c_c00158{bottom:525.150000px;}
.y23_c00158{bottom:538.200000px;}
.y22_c00158{bottom:555.390000px;}
.y29_c00158{bottom:559.701180px;}
.y28_c00158{bottom:576.895500px;}
.y1f_c00158{bottom:589.950000px;}
.y27_c00158{bottom:594.180000px;}
.y1e_c00158{bottom:607.140000px;}
.y1c_c00158{bottom:641.700000px;}
.y24_c00158{bottom:645.930000px;}
.y1b_c00158{bottom:658.890000px;}
.y1a_c00158{bottom:676.170000px;}
.y21_c00158{bottom:680.400000px;}
.y20_c00158{bottom:697.680000px;}
.y16_c00158{bottom:727.920000px;}
.y15_c00158{bottom:745.110000px;}
.y1d_c00158{bottom:749.430000px;}
.y14_c00158{bottom:762.390000px;}
.y19_c00158{bottom:801.175500px;}
.y11_c00158{bottom:814.140000px;}
.y18_c00158{bottom:818.460000px;}
.y10_c00158{bottom:831.420000px;}
.y17_c00158{bottom:835.650000px;}
.yd_c00158{bottom:883.170000px;}
.y13_c00158{bottom:904.675680px;}
.y12_c00158{bottom:921.870000px;}
.ya_c00158{bottom:934.920000px;}
.y8_c00158{bottom:969.390000px;}
.yf_c00158{bottom:973.615500px;}
.y7_c00158{bottom:986.670000px;}
.ye_c00158{bottom:990.900000px;}
.yc_c00158{bottom:1025.370000px;}
.yb_c00158{bottom:1042.650000px;}
.y9_c00158{bottom:1077.120000px;}
.y5_c00158{bottom:1131.030000px;}
.y4_c00158{bottom:1150.920000px;}
.y3_c00158{bottom:1166.404500px;}
.y2_c00158{bottom:1181.970000px;}
.y1_c00158{bottom:1197.450000px;}
.h3_c00158{height:52.971680px;}
.h2_c00158{height:52.998047px;}
.h6_c00158{height:59.004492px;}
.h4_c00158{height:70.664062px;}
.h5_c00158{height:1000.440000px;}
.h0_c00158{height:1262.880000px;}
.h1_c00158{height:1263.000000px;}
.w2_c00158{width:263.430000px;}
.w0_c00158{width:893.070000px;}
.w1_c00158{width:893.250000px;}
.x0_c00158{left:0.000000px;}
.x5_c00158{left:6.930000px;}
.x9_c00158{left:21.150000px;}
.x3_c00158{left:127.620000px;}
.x8_c00158{left:148.860000px;}
.x7_c00158{left:188.100000px;}
.x2_c00158{left:425.160000px;}
.x1_c00158{left:446.580000px;}
.x4_c00158{left:491.670000px;}
.x6_c00158{left:498.600000px;}
.xa_c00158{left:738.540000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls6_c00158{letter-spacing:-0.160320pt;}
.ls5_c00158{letter-spacing:-0.106880pt;}
.ls2_c00158{letter-spacing:-0.096000pt;}
.ls4_c00158{letter-spacing:-0.053440pt;}
.ls1_c00158{letter-spacing:0.000000pt;}
.ls3_c00158{letter-spacing:0.160320pt;}
.ls0_c00158{letter-spacing:20.253760pt;}
.ws0_c00158{word-spacing:-13.520320pt;}
.ws1_c00158{word-spacing:-13.306560pt;}
.ws9_c00158{word-spacing:-0.374080pt;}
.ws25_c00158{word-spacing:-0.160320pt;}
.ws2_c00158{word-spacing:0.000000pt;}
.ws12_c00158{word-spacing:0.053440pt;}
.ws4_c00158{word-spacing:0.144000pt;}
.ws17_c00158{word-spacing:0.160320pt;}
.ws3_c00158{word-spacing:0.240000pt;}
.ws30_c00158{word-spacing:0.267200pt;}
.ws7_c00158{word-spacing:0.480960pt;}
.ws21_c00158{word-spacing:2.030720pt;}
.ws2c_c00158{word-spacing:2.351360pt;}
.ws2f_c00158{word-spacing:2.992640pt;}
.wsb_c00158{word-spacing:3.099520pt;}
.wsa_c00158{word-spacing:3.259840pt;}
.ws18_c00158{word-spacing:3.313280pt;}
.ws34_c00158{word-spacing:3.420160pt;}
.ws13_c00158{word-spacing:3.633920pt;}
.wsd_c00158{word-spacing:3.687360pt;}
.ws24_c00158{word-spacing:3.954560pt;}
.ws1b_c00158{word-spacing:5.664640pt;}
.wse_c00158{word-spacing:6.199040pt;}
.ws3c_c00158{word-spacing:8.229760pt;}
.ws1c_c00158{word-spacing:9.726080pt;}
.ws36_c00158{word-spacing:10.046720pt;}
.ws29_c00158{word-spacing:10.153600pt;}
.ws35_c00158{word-spacing:11.008640pt;}
.ws38_c00158{word-spacing:12.398080pt;}
.ws1e_c00158{word-spacing:13.039360pt;}
.ws1d_c00158{word-spacing:13.894400pt;}
.ws3b_c00158{word-spacing:15.497600pt;}
.ws23_c00158{word-spacing:16.138880pt;}
.ws19_c00158{word-spacing:16.245760pt;}
.ws1f_c00158{word-spacing:16.459520pt;}
.ws1a_c00158{word-spacing:16.566400pt;}
.ws8_c00158{word-spacing:17.207680pt;}
.ws5_c00158{word-spacing:17.848960pt;}
.ws11_c00158{word-spacing:20.307200pt;}
.ws2d_c00158{word-spacing:20.734720pt;}
.ws3a_c00158{word-spacing:21.055360pt;}
.ws26_c00158{word-spacing:22.979200pt;}
.ws14_c00158{word-spacing:27.147520pt;}
.ws28_c00158{word-spacing:27.361280pt;}
.ws6_c00158{word-spacing:27.468160pt;}
.ws10_c00158{word-spacing:28.911040pt;}
.ws3d_c00158{word-spacing:29.231680pt;}
.ws20_c00158{word-spacing:29.552320pt;}
.ws39_c00158{word-spacing:30.193600pt;}
.wsc_c00158{word-spacing:31.796800pt;}
.ws2a_c00158{word-spacing:35.323840pt;}
.wsf_c00158{word-spacing:36.392640pt;}
.ws2e_c00158{word-spacing:41.522880pt;}
.ws32_c00158{word-spacing:42.057280pt;}
.ws15_c00158{word-spacing:43.981120pt;}
.ws16_c00158{word-spacing:45.263680pt;}
.ws27_c00158{word-spacing:52.104000pt;}
.ws33_c00158{word-spacing:52.959040pt;}
.ws37_c00158{word-spacing:57.822080pt;}
.ws22_c00158{word-spacing:59.959680pt;}
.ws2b_c00158{word-spacing:90.046400pt;}
.ws31_c00158{word-spacing:322.777600pt;}
._1_c00158{margin-left:-0.940800pt;}
._0_c00158{width:1.084800pt;}
.fs0_c00158{font-size:48.000000pt;}
.fs2_c00158{font-size:53.440000pt;}
.fs1_c00158{font-size:64.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y44_c00158{bottom:3.120000pt;}
.y43_c00158{bottom:18.400000pt;}
.y42_c00158{bottom:33.760000pt;}
.y45_c00158{bottom:50.880000pt;}
.y40_c00158{bottom:64.400000pt;}
.y3e_c00158{bottom:95.040000pt;}
.y3d_c00158{bottom:110.400000pt;}
.y6_c00158{bottom:111.120000pt;}
.y3c_c00158{bottom:125.760000pt;}
.y3b_c00158{bottom:141.040000pt;}
.y3a_c00158{bottom:156.400000pt;}
.y41_c00158{bottom:160.160000pt;}
.y39_c00158{bottom:171.760000pt;}
.y37_c00158{bottom:187.040000pt;}
.y3f_c00158{bottom:190.880000pt;}
.y36_c00158{bottom:202.400000pt;}
.y33_c00158{bottom:248.400000pt;}
.y32_c00158{bottom:263.760000pt;}
.y38_c00158{bottom:282.880000pt;}
.y30_c00158{bottom:294.400000pt;}
.y2f_c00158{bottom:309.760000pt;}
.y2e_c00158{bottom:325.040000pt;}
.y35_c00158{bottom:328.876160pt;}
.y2d_c00158{bottom:340.400000pt;}
.y34_c00158{bottom:344.160000pt;}
.y2b_c00158{bottom:371.040000pt;}
.y2a_c00158{bottom:386.400000pt;}
.y31_c00158{bottom:390.160000pt;}
.y26_c00158{bottom:432.400000pt;}
.y25_c00158{bottom:447.680000pt;}
.y2c_c00158{bottom:466.800000pt;}
.y23_c00158{bottom:478.400000pt;}
.y22_c00158{bottom:493.680000pt;}
.y29_c00158{bottom:497.512160pt;}
.y28_c00158{bottom:512.796000pt;}
.y1f_c00158{bottom:524.400000pt;}
.y27_c00158{bottom:528.160000pt;}
.y1e_c00158{bottom:539.680000pt;}
.y1c_c00158{bottom:570.400000pt;}
.y24_c00158{bottom:574.160000pt;}
.y1b_c00158{bottom:585.680000pt;}
.y1a_c00158{bottom:601.040000pt;}
.y21_c00158{bottom:604.800000pt;}
.y20_c00158{bottom:620.160000pt;}
.y16_c00158{bottom:647.040000pt;}
.y15_c00158{bottom:662.320000pt;}
.y1d_c00158{bottom:666.160000pt;}
.y14_c00158{bottom:677.680000pt;}
.y19_c00158{bottom:712.156000pt;}
.y11_c00158{bottom:723.680000pt;}
.y18_c00158{bottom:727.520000pt;}
.y10_c00158{bottom:739.040000pt;}
.y17_c00158{bottom:742.800000pt;}
.yd_c00158{bottom:785.040000pt;}
.y13_c00158{bottom:804.156160pt;}
.y12_c00158{bottom:819.440000pt;}
.ya_c00158{bottom:831.040000pt;}
.y8_c00158{bottom:861.680000pt;}
.yf_c00158{bottom:865.436000pt;}
.y7_c00158{bottom:877.040000pt;}
.ye_c00158{bottom:880.800000pt;}
.yc_c00158{bottom:911.440000pt;}
.yb_c00158{bottom:926.800000pt;}
.y9_c00158{bottom:957.440000pt;}
.y5_c00158{bottom:1005.360000pt;}
.y4_c00158{bottom:1023.040000pt;}
.y3_c00158{bottom:1036.804000pt;}
.y2_c00158{bottom:1050.640000pt;}
.y1_c00158{bottom:1064.400000pt;}
.h3_c00158{height:47.085938pt;}
.h2_c00158{height:47.109375pt;}
.h6_c00158{height:52.448437pt;}
.h4_c00158{height:62.812500pt;}
.h5_c00158{height:889.280000pt;}
.h0_c00158{height:1122.560000pt;}
.h1_c00158{height:1122.666667pt;}
.w2_c00158{width:234.160000pt;}
.w0_c00158{width:793.840000pt;}
.w1_c00158{width:794.000000pt;}
.x0_c00158{left:0.000000pt;}
.x5_c00158{left:6.160000pt;}
.x9_c00158{left:18.800000pt;}
.x3_c00158{left:113.440000pt;}
.x8_c00158{left:132.320000pt;}
.x7_c00158{left:167.200000pt;}
.x2_c00158{left:377.920000pt;}
.x1_c00158{left:396.960000pt;}
.x4_c00158{left:437.040000pt;}
.x6_c00158{left:443.200000pt;}
.xa_c00158{left:656.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_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_5c4026e895a8af69034072fc.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00159{vertical-align:-61.938000px;}
.v0_c00159{vertical-align:0.000000px;}
.lsc_c00159{letter-spacing:-0.480960px;}
.lsa_c00159{letter-spacing:-0.360720px;}
.lsb_c00159{letter-spacing:-0.180360px;}
.ls9_c00159{letter-spacing:-0.120240px;}
.ls8_c00159{letter-spacing:-0.060120px;}
.ls7_c00159{letter-spacing:0.000000px;}
.ls4_c00159{letter-spacing:0.060120px;}
.ls1_c00159{letter-spacing:0.120240px;}
.ls2_c00159{letter-spacing:0.140040px;}
.ls3_c00159{letter-spacing:0.180360px;}
.ls6_c00159{letter-spacing:1.142280px;}
.ls5_c00159{letter-spacing:13.046040px;}
.ls0_c00159{letter-spacing:319.518000px;}
.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;}
}
.ws0_c00159{word-spacing:-15.210360px;}
.ws2_c00159{word-spacing:-15.150240px;}
.ws4_c00159{word-spacing:-15.030000px;}
.ws3_c00159{word-spacing:-14.969880px;}
.ws1_c00159{word-spacing:-14.909760px;}
.ws13_c00159{word-spacing:-0.180360px;}
.ws6_c00159{word-spacing:-0.162000px;}
.ws2a_c00159{word-spacing:-0.120240px;}
.wsb_c00159{word-spacing:-0.060120px;}
.ws5_c00159{word-spacing:0.000000px;}
.ws19_c00159{word-spacing:0.060120px;}
.ws17_c00159{word-spacing:0.120240px;}
.ws1b_c00159{word-spacing:0.180360px;}
.ws14_c00159{word-spacing:0.240480px;}
.ws1d_c00159{word-spacing:0.360720px;}
.ws2f_c00159{word-spacing:0.480960px;}
.ws1f_c00159{word-spacing:0.541080px;}
.ws20_c00159{word-spacing:0.601200px;}
.ws3e_c00159{word-spacing:1.322640px;}
.ws4c_c00159{word-spacing:1.563120px;}
.ws3f_c00159{word-spacing:1.623240px;}
.ws2b_c00159{word-spacing:1.683360px;}
.ws3a_c00159{word-spacing:2.044080px;}
.ws1c_c00159{word-spacing:2.404800px;}
.ws39_c00159{word-spacing:2.705400px;}
.ws38_c00159{word-spacing:3.126240px;}
.ws25_c00159{word-spacing:3.366720px;}
.ws42_c00159{word-spacing:3.486960px;}
.ws3c_c00159{word-spacing:4.448880px;}
.ws4a_c00159{word-spacing:4.929840px;}
.ws49_c00159{word-spacing:5.230440px;}
.ws37_c00159{word-spacing:6.613200px;}
.wsa_c00159{word-spacing:7.094160px;}
.ws7_c00159{word-spacing:7.815600px;}
.wsc_c00159{word-spacing:9.318600px;}
.wsd_c00159{word-spacing:9.498960px;}
.ws3b_c00159{word-spacing:10.701360px;}
.ws23_c00159{word-spacing:11.723400px;}
.wsf_c00159{word-spacing:12.024000px;}
.ws10_c00159{word-spacing:12.384720px;}
.ws24_c00159{word-spacing:12.504960px;}
.ws45_c00159{word-spacing:12.745440px;}
.ws4b_c00159{word-spacing:13.226400px;}
.ws2c_c00159{word-spacing:13.527000px;}
.ws26_c00159{word-spacing:14.188320px;}
.ws41_c00159{word-spacing:14.669280px;}
.ws40_c00159{word-spacing:15.030000px;}
.ws44_c00159{word-spacing:16.833600px;}
.ws21_c00159{word-spacing:17.194320px;}
.ws3d_c00159{word-spacing:17.795520px;}
.ws9_c00159{word-spacing:17.915760px;}
.ws12_c00159{word-spacing:18.276480px;}
.ws43_c00159{word-spacing:18.997920px;}
.ws8_c00159{word-spacing:19.599120px;}
.ws4d_c00159{word-spacing:19.719360px;}
.ws16_c00159{word-spacing:20.681280px;}
.ws2d_c00159{word-spacing:23.567040px;}
.ws34_c00159{word-spacing:23.687280px;}
.ws48_c00159{word-spacing:26.933760px;}
.ws47_c00159{word-spacing:27.174240px;}
.ws18_c00159{word-spacing:27.354600px;}
.ws15_c00159{word-spacing:27.534960px;}
.ws1a_c00159{word-spacing:27.655200px;}
.ws32_c00159{word-spacing:28.977840px;}
.ws46_c00159{word-spacing:33.246360px;}
.wse_c00159{word-spacing:34.809480px;}
.ws11_c00159{word-spacing:36.252360px;}
.ws35_c00159{word-spacing:39.739320px;}
.ws36_c00159{word-spacing:43.466760px;}
.ws29_c00159{word-spacing:46.232280px;}
.ws22_c00159{word-spacing:48.035880px;}
.ws2e_c00159{word-spacing:48.396600px;}
.ws33_c00159{word-spacing:51.041880px;}
.ws27_c00159{word-spacing:55.250280px;}
.ws30_c00159{word-spacing:58.617000px;}
.ws31_c00159{word-spacing:58.857480px;}
.ws1e_c00159{word-spacing:77.675040px;}
.ws28_c00159{word-spacing:93.125880px;}
._0_c00159{margin-left:-1.521036px;}
._1_c00159{width:1.151568px;}
._3_c00159{width:3.883752px;}
._2_c00159{width:48.997800px;}
.fc0_c00159{color:rgb(0,0,0);}
.fs0_c00159{font-size:54.000000px;}
.fs2_c00159{font-size:60.120000px;}
.fs1_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y58_c00159{bottom:3.420000px;}
.yb_c00159{bottom:3.510000px;}
.ya_c00159{bottom:20.790000px;}
.y56_c00159{bottom:37.890000px;}
.y9_c00159{bottom:37.980000px;}
.y7_c00159{bottom:55.260000px;}
.y59_c00159{bottom:57.240000px;}
.y53_c00159{bottom:72.450000px;}
.y6_c00159{bottom:72.540000px;}
.y51_c00159{bottom:89.640000px;}
.y50_c00159{bottom:106.920000px;}
.y4f_c00159{bottom:124.200000px;}
.yc_c00159{bottom:124.290000px;}
.y4e_c00159{bottom:141.390000px;}
.y57_c00159{bottom:144.990000px;}
.y4d_c00159{bottom:158.670000px;}
.y55_c00159{bottom:162.175500px;}
.y4c_c00159{bottom:175.950000px;}
.y54_c00159{bottom:179.460000px;}
.y52_c00159{bottom:196.740000px;}
.y49_c00159{bottom:210.420000px;}
.y47_c00159{bottom:244.890000px;}
.y46_c00159{bottom:262.170000px;}
.y4b_c00159{bottom:300.235680px;}
.y4a_c00159{bottom:317.430000px;}
.y42_c00159{bottom:331.200000px;}
.y41_c00159{bottom:348.390000px;}
.y48_c00159{bottom:351.990000px;}
.y40_c00159{bottom:365.670000px;}
.y3f_c00159{bottom:382.860000px;}
.y3e_c00159{bottom:400.140000px;}
.y45_c00159{bottom:403.731180px;}
.y3d_c00159{bottom:417.420000px;}
.y44_c00159{bottom:420.925500px;}
.y43_c00159{bottom:438.210000px;}
.y38_c00159{bottom:486.360000px;}
.y3c_c00159{bottom:541.710000px;}
.y3b_c00159{bottom:558.895500px;}
.y3a_c00159{bottom:576.180000px;}
.y32_c00159{bottom:589.860000px;}
.y39_c00159{bottom:593.460000px;}
.y30_c00159{bottom:624.420000px;}
.y37_c00159{bottom:627.921180px;}
.y2f_c00159{bottom:641.610000px;}
.y36_c00159{bottom:645.205680px;}
.y2e_c00159{bottom:658.890000px;}
.y35_c00159{bottom:662.400000px;}
.y34_c00159{bottom:679.680000px;}
.y2c_c00159{bottom:693.360000px;}
.y33_c00159{bottom:696.960000px;}
.y2a_c00159{bottom:727.830000px;}
.y31_c00159{bottom:731.430000px;}
.y29_c00159{bottom:745.110000px;}
.y17_c00159{bottom:762.390000px;}
.y16_c00159{bottom:779.580000px;}
.y1d_c00159{bottom:783.162360px;}
.y14_c00159{bottom:796.860000px;}
.y1c_c00159{bottom:800.446860px;}
.y2d_c00159{bottom:800.460000px;}
.y12_c00159{bottom:814.140000px;}
.y1b_c00159{bottom:817.641180px;}
.y23_c00159{bottom:831.330000px;}
.y1a_c00159{bottom:834.925680px;}
.y2b_c00159{bottom:834.930000px;}
.y19_c00159{bottom:852.120000px;}
.y21_c00159{bottom:865.890000px;}
.y28_c00159{bottom:869.395500px;}
.y18_c00159{bottom:869.400000px;}
.y20_c00159{bottom:883.080000px;}
.y27_c00159{bottom:886.680000px;}
.yd_c00159{bottom:900.180000px;}
.y1e_c00159{bottom:900.360000px;}
.y26_c00159{bottom:903.861000px;}
.y15_c00159{bottom:903.870000px;}
.y25_c00159{bottom:921.145500px;}
.y13_c00159{bottom:921.150000px;}
.y24_c00159{bottom:938.430000px;}
.y11_c00159{bottom:955.620000px;}
.y10_c00159{bottom:972.711180px;}
.y22_c00159{bottom:972.900000px;}
.yf_c00159{bottom:989.995680px;}
.ye_c00159{bottom:1007.190000px;}
.y1f_c00159{bottom:1007.370000px;}
.y5_c00159{bottom:1039.140000px;}
.y8_c00159{bottom:1077.120000px;}
.y4_c00159{bottom:1131.030000px;}
.y3_c00159{bottom:1150.915500px;}
.y2_c00159{bottom:1166.400000px;}
.y1_c00159{bottom:1197.450000px;}
.h2_c00159{height:52.998047px;}
.h5_c00159{height:59.004492px;}
.h7_c00159{height:60.589687px;}
.h3_c00159{height:70.664062px;}
.h4_c00159{height:86.311500px;}
.h6_c00159{height:914.130000px;}
.h0_c00159{height:1262.880000px;}
.h1_c00159{height:1263.000000px;}
.w3_c00159{width:252.900000px;}
.w2_c00159{width:263.430000px;}
.w0_c00159{width:893.070000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x4_c00159{left:6.930000px;}
.xb_c00159{left:11.970000px;}
.xd_c00159{left:18.450000px;}
.x12_c00159{left:62.370000px;}
.xa_c00159{left:72.810000px;}
.x6_c00159{left:81.990000px;}
.x9_c00159{left:109.710000px;}
.xc_c00159{left:125.280000px;}
.x2_c00159{left:127.620000px;}
.x10_c00159{left:135.450000px;}
.x11_c00159{left:136.890000px;}
.xf_c00159{left:139.680000px;}
.xe_c00159{left:151.650000px;}
.x7_c00159{left:236.520000px;}
.x8_c00159{left:243.450000px;}
.x1_c00159{left:446.580000px;}
.x3_c00159{left:491.670000px;}
.x5_c00159{left:498.600000px;}
@media print{
.v1_c00159{vertical-align:-55.056000pt;}
.v0_c00159{vertical-align:0.000000pt;}
.lsc_c00159{letter-spacing:-0.427520pt;}
.lsa_c00159{letter-spacing:-0.320640pt;}
.lsb_c00159{letter-spacing:-0.160320pt;}
.ls9_c00159{letter-spacing:-0.106880pt;}
.ls8_c00159{letter-spacing:-0.053440pt;}
.ls7_c00159{letter-spacing:0.000000pt;}
.ls4_c00159{letter-spacing:0.053440pt;}
.ls1_c00159{letter-spacing:0.106880pt;}
.ls2_c00159{letter-spacing:0.124480pt;}
.ls3_c00159{letter-spacing:0.160320pt;}
.ls6_c00159{letter-spacing:1.015360pt;}
.ls5_c00159{letter-spacing:11.596480pt;}
.ls0_c00159{letter-spacing:284.016000pt;}
.ws0_c00159{word-spacing:-13.520320pt;}
.ws2_c00159{word-spacing:-13.466880pt;}
.ws4_c00159{word-spacing:-13.360000pt;}
.ws3_c00159{word-spacing:-13.306560pt;}
.ws1_c00159{word-spacing:-13.253120pt;}
.ws13_c00159{word-spacing:-0.160320pt;}
.ws6_c00159{word-spacing:-0.144000pt;}
.ws2a_c00159{word-spacing:-0.106880pt;}
.wsb_c00159{word-spacing:-0.053440pt;}
.ws5_c00159{word-spacing:0.000000pt;}
.ws19_c00159{word-spacing:0.053440pt;}
.ws17_c00159{word-spacing:0.106880pt;}
.ws1b_c00159{word-spacing:0.160320pt;}
.ws14_c00159{word-spacing:0.213760pt;}
.ws1d_c00159{word-spacing:0.320640pt;}
.ws2f_c00159{word-spacing:0.427520pt;}
.ws1f_c00159{word-spacing:0.480960pt;}
.ws20_c00159{word-spacing:0.534400pt;}
.ws3e_c00159{word-spacing:1.175680pt;}
.ws4c_c00159{word-spacing:1.389440pt;}
.ws3f_c00159{word-spacing:1.442880pt;}
.ws2b_c00159{word-spacing:1.496320pt;}
.ws3a_c00159{word-spacing:1.816960pt;}
.ws1c_c00159{word-spacing:2.137600pt;}
.ws39_c00159{word-spacing:2.404800pt;}
.ws38_c00159{word-spacing:2.778880pt;}
.ws25_c00159{word-spacing:2.992640pt;}
.ws42_c00159{word-spacing:3.099520pt;}
.ws3c_c00159{word-spacing:3.954560pt;}
.ws4a_c00159{word-spacing:4.382080pt;}
.ws49_c00159{word-spacing:4.649280pt;}
.ws37_c00159{word-spacing:5.878400pt;}
.wsa_c00159{word-spacing:6.305920pt;}
.ws7_c00159{word-spacing:6.947200pt;}
.wsc_c00159{word-spacing:8.283200pt;}
.wsd_c00159{word-spacing:8.443520pt;}
.ws3b_c00159{word-spacing:9.512320pt;}
.ws23_c00159{word-spacing:10.420800pt;}
.wsf_c00159{word-spacing:10.688000pt;}
.ws10_c00159{word-spacing:11.008640pt;}
.ws24_c00159{word-spacing:11.115520pt;}
.ws45_c00159{word-spacing:11.329280pt;}
.ws4b_c00159{word-spacing:11.756800pt;}
.ws2c_c00159{word-spacing:12.024000pt;}
.ws26_c00159{word-spacing:12.611840pt;}
.ws41_c00159{word-spacing:13.039360pt;}
.ws40_c00159{word-spacing:13.360000pt;}
.ws44_c00159{word-spacing:14.963200pt;}
.ws21_c00159{word-spacing:15.283840pt;}
.ws3d_c00159{word-spacing:15.818240pt;}
.ws9_c00159{word-spacing:15.925120pt;}
.ws12_c00159{word-spacing:16.245760pt;}
.ws43_c00159{word-spacing:16.887040pt;}
.ws8_c00159{word-spacing:17.421440pt;}
.ws4d_c00159{word-spacing:17.528320pt;}
.ws16_c00159{word-spacing:18.383360pt;}
.ws2d_c00159{word-spacing:20.948480pt;}
.ws34_c00159{word-spacing:21.055360pt;}
.ws48_c00159{word-spacing:23.941120pt;}
.ws47_c00159{word-spacing:24.154880pt;}
.ws18_c00159{word-spacing:24.315200pt;}
.ws15_c00159{word-spacing:24.475520pt;}
.ws1a_c00159{word-spacing:24.582400pt;}
.ws32_c00159{word-spacing:25.758080pt;}
.ws46_c00159{word-spacing:29.552320pt;}
.wse_c00159{word-spacing:30.941760pt;}
.ws11_c00159{word-spacing:32.224320pt;}
.ws35_c00159{word-spacing:35.323840pt;}
.ws36_c00159{word-spacing:38.637120pt;}
.ws29_c00159{word-spacing:41.095360pt;}
.ws22_c00159{word-spacing:42.698560pt;}
.ws2e_c00159{word-spacing:43.019200pt;}
.ws33_c00159{word-spacing:45.370560pt;}
.ws27_c00159{word-spacing:49.111360pt;}
.ws30_c00159{word-spacing:52.104000pt;}
.ws31_c00159{word-spacing:52.317760pt;}
.ws1e_c00159{word-spacing:69.044480pt;}
.ws28_c00159{word-spacing:82.778560pt;}
._0_c00159{margin-left:-1.352032pt;}
._1_c00159{width:1.023616pt;}
._3_c00159{width:3.452224pt;}
._2_c00159{width:43.553600pt;}
.fs0_c00159{font-size:48.000000pt;}
.fs2_c00159{font-size:53.440000pt;}
.fs1_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y58_c00159{bottom:3.040000pt;}
.yb_c00159{bottom:3.120000pt;}
.ya_c00159{bottom:18.480000pt;}
.y56_c00159{bottom:33.680000pt;}
.y9_c00159{bottom:33.760000pt;}
.y7_c00159{bottom:49.120000pt;}
.y59_c00159{bottom:50.880000pt;}
.y53_c00159{bottom:64.400000pt;}
.y6_c00159{bottom:64.480000pt;}
.y51_c00159{bottom:79.680000pt;}
.y50_c00159{bottom:95.040000pt;}
.y4f_c00159{bottom:110.400000pt;}
.yc_c00159{bottom:110.480000pt;}
.y4e_c00159{bottom:125.680000pt;}
.y57_c00159{bottom:128.880000pt;}
.y4d_c00159{bottom:141.040000pt;}
.y55_c00159{bottom:144.156000pt;}
.y4c_c00159{bottom:156.400000pt;}
.y54_c00159{bottom:159.520000pt;}
.y52_c00159{bottom:174.880000pt;}
.y49_c00159{bottom:187.040000pt;}
.y47_c00159{bottom:217.680000pt;}
.y46_c00159{bottom:233.040000pt;}
.y4b_c00159{bottom:266.876160pt;}
.y4a_c00159{bottom:282.160000pt;}
.y42_c00159{bottom:294.400000pt;}
.y41_c00159{bottom:309.680000pt;}
.y48_c00159{bottom:312.880000pt;}
.y40_c00159{bottom:325.040000pt;}
.y3f_c00159{bottom:340.320000pt;}
.y3e_c00159{bottom:355.680000pt;}
.y45_c00159{bottom:358.872160pt;}
.y3d_c00159{bottom:371.040000pt;}
.y44_c00159{bottom:374.156000pt;}
.y43_c00159{bottom:389.520000pt;}
.y38_c00159{bottom:432.320000pt;}
.y3c_c00159{bottom:481.520000pt;}
.y3b_c00159{bottom:496.796000pt;}
.y3a_c00159{bottom:512.160000pt;}
.y32_c00159{bottom:524.320000pt;}
.y39_c00159{bottom:527.520000pt;}
.y30_c00159{bottom:555.040000pt;}
.y37_c00159{bottom:558.152160pt;}
.y2f_c00159{bottom:570.320000pt;}
.y36_c00159{bottom:573.516160pt;}
.y2e_c00159{bottom:585.680000pt;}
.y35_c00159{bottom:588.800000pt;}
.y34_c00159{bottom:604.160000pt;}
.y2c_c00159{bottom:616.320000pt;}
.y33_c00159{bottom:619.520000pt;}
.y2a_c00159{bottom:646.960000pt;}
.y31_c00159{bottom:650.160000pt;}
.y29_c00159{bottom:662.320000pt;}
.y17_c00159{bottom:677.680000pt;}
.y16_c00159{bottom:692.960000pt;}
.y1d_c00159{bottom:696.144320pt;}
.y14_c00159{bottom:708.320000pt;}
.y1c_c00159{bottom:711.508320pt;}
.y2d_c00159{bottom:711.520000pt;}
.y12_c00159{bottom:723.680000pt;}
.y1b_c00159{bottom:726.792160pt;}
.y23_c00159{bottom:738.960000pt;}
.y1a_c00159{bottom:742.156160pt;}
.y2b_c00159{bottom:742.160000pt;}
.y19_c00159{bottom:757.440000pt;}
.y21_c00159{bottom:769.680000pt;}
.y28_c00159{bottom:772.796000pt;}
.y18_c00159{bottom:772.800000pt;}
.y20_c00159{bottom:784.960000pt;}
.y27_c00159{bottom:788.160000pt;}
.yd_c00159{bottom:800.160000pt;}
.y1e_c00159{bottom:800.320000pt;}
.y26_c00159{bottom:803.432000pt;}
.y15_c00159{bottom:803.440000pt;}
.y25_c00159{bottom:818.796000pt;}
.y13_c00159{bottom:818.800000pt;}
.y24_c00159{bottom:834.160000pt;}
.y11_c00159{bottom:849.440000pt;}
.y10_c00159{bottom:864.632160pt;}
.y22_c00159{bottom:864.800000pt;}
.yf_c00159{bottom:879.996160pt;}
.ye_c00159{bottom:895.280000pt;}
.y1f_c00159{bottom:895.440000pt;}
.y5_c00159{bottom:923.680000pt;}
.y8_c00159{bottom:957.440000pt;}
.y4_c00159{bottom:1005.360000pt;}
.y3_c00159{bottom:1023.036000pt;}
.y2_c00159{bottom:1036.800000pt;}
.y1_c00159{bottom:1064.400000pt;}
.h2_c00159{height:47.109375pt;}
.h5_c00159{height:52.448437pt;}
.h7_c00159{height:53.857500pt;}
.h3_c00159{height:62.812500pt;}
.h4_c00159{height:76.721333pt;}
.h6_c00159{height:812.560000pt;}
.h0_c00159{height:1122.560000pt;}
.h1_c00159{height:1122.666667pt;}
.w3_c00159{width:224.800000pt;}
.w2_c00159{width:234.160000pt;}
.w0_c00159{width:793.840000pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x4_c00159{left:6.160000pt;}
.xb_c00159{left:10.640000pt;}
.xd_c00159{left:16.400000pt;}
.x12_c00159{left:55.440000pt;}
.xa_c00159{left:64.720000pt;}
.x6_c00159{left:72.880000pt;}
.x9_c00159{left:97.520000pt;}
.xc_c00159{left:111.360000pt;}
.x2_c00159{left:113.440000pt;}
.x10_c00159{left:120.400000pt;}
.x11_c00159{left:121.680000pt;}
.xf_c00159{left:124.160000pt;}
.xe_c00159{left:134.800000pt;}
.x7_c00159{left:210.240000pt;}
.x8_c00159{left:216.400000pt;}
.x1_c00159{left:396.960000pt;}
.x3_c00159{left:437.040000pt;}
.x5_c00159{left:443.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_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_5a36747b97e927413d20ac74.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00160{letter-spacing:-0.240480px;}
.ls9_c00160{letter-spacing:-0.180360px;}
.ls5_c00160{letter-spacing:-0.120240px;}
.ls4_c00160{letter-spacing:-0.108000px;}
.ls6_c00160{letter-spacing:-0.060120px;}
.ls3_c00160{letter-spacing:0.000000px;}
.ls7_c00160{letter-spacing:0.120240px;}
.ls1_c00160{letter-spacing:0.140040px;}
.ls0_c00160{letter-spacing:0.180360px;}
.ls2_c00160{letter-spacing:13.767480px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00160{word-spacing:-15.210360px;}
.ws3_c00160{word-spacing:-15.150240px;}
.ws2_c00160{word-spacing:-15.030000px;}
.ws0_c00160{word-spacing:-14.909760px;}
.ws5_c00160{word-spacing:-14.849640px;}
.ws4_c00160{word-spacing:-14.789520px;}
.wsb_c00160{word-spacing:-0.420840px;}
.ws1a_c00160{word-spacing:-0.180360px;}
.ws36_c00160{word-spacing:-0.120240px;}
.ws20_c00160{word-spacing:-0.060120px;}
.ws6_c00160{word-spacing:0.000000px;}
.ws2c_c00160{word-spacing:0.120240px;}
.ws8_c00160{word-spacing:0.162000px;}
.ws2a_c00160{word-spacing:0.180360px;}
.ws26_c00160{word-spacing:0.240480px;}
.ws7_c00160{word-spacing:0.270000px;}
.ws3f_c00160{word-spacing:1.322640px;}
.ws10_c00160{word-spacing:1.683360px;}
.ws41_c00160{word-spacing:3.366720px;}
.ws35_c00160{word-spacing:4.088160px;}
.ws3d_c00160{word-spacing:4.208400px;}
.ws29_c00160{word-spacing:4.809600px;}
.ws2b_c00160{word-spacing:5.531040px;}
.ws28_c00160{word-spacing:6.012000px;}
.ws33_c00160{word-spacing:6.733440px;}
.ws19_c00160{word-spacing:6.973920px;}
.ws32_c00160{word-spacing:7.094160px;}
.ws44_c00160{word-spacing:7.334640px;}
.wsf_c00160{word-spacing:8.176320px;}
.ws17_c00160{word-spacing:9.498960px;}
.ws1c_c00160{word-spacing:10.701360px;}
.wsd_c00160{word-spacing:11.422800px;}
.wse_c00160{word-spacing:11.663280px;}
.ws11_c00160{word-spacing:12.504960px;}
.ws1e_c00160{word-spacing:13.226400px;}
.ws15_c00160{word-spacing:13.587120px;}
.ws3e_c00160{word-spacing:13.647240px;}
.ws1f_c00160{word-spacing:13.827600px;}
.ws42_c00160{word-spacing:14.669280px;}
.ws23_c00160{word-spacing:15.631200px;}
.ws9_c00160{word-spacing:20.440800px;}
.ws31_c00160{word-spacing:21.042000px;}
.ws1b_c00160{word-spacing:21.162240px;}
.ws46_c00160{word-spacing:22.605120px;}
.ws1d_c00160{word-spacing:23.927760px;}
.ws22_c00160{word-spacing:24.048000px;}
.ws21_c00160{word-spacing:24.108120px;}
.ws40_c00160{word-spacing:24.348600px;}
.ws38_c00160{word-spacing:24.408720px;}
.ws37_c00160{word-spacing:24.709320px;}
.ws18_c00160{word-spacing:26.933760px;}
.ws30_c00160{word-spacing:27.655200px;}
.wsa_c00160{word-spacing:29.098080px;}
.ws3a_c00160{word-spacing:29.338560px;}
.ws3b_c00160{word-spacing:30.180240px;}
.ws24_c00160{word-spacing:30.781440px;}
.ws39_c00160{word-spacing:32.645160px;}
.ws45_c00160{word-spacing:35.771400px;}
.ws2f_c00160{word-spacing:39.739320px;}
.ws25_c00160{word-spacing:40.460760px;}
.ws27_c00160{word-spacing:42.745320px;}
.ws43_c00160{word-spacing:44.909640px;}
.ws34_c00160{word-spacing:45.510840px;}
.wsc_c00160{word-spacing:48.817440px;}
.ws3c_c00160{word-spacing:49.538880px;}
.ws2d_c00160{word-spacing:51.943680px;}
.ws2e_c00160{word-spacing:52.003800px;}
.ws13_c00160{word-spacing:52.484760px;}
.ws12_c00160{word-spacing:52.725240px;}
.ws14_c00160{word-spacing:57.895560px;}
.ws16_c00160{word-spacing:105.390360px;}
._1_c00160{margin-left:-1.058400px;}
._0_c00160{width:1.220400px;}
.fc0_c00160{color:rgb(0,0,0);}
.fs0_c00160{font-size:54.000000px;}
.fs2_c00160{font-size:60.120000px;}
.fs1_c00160{font-size:72.000000px;}
.y0_c00160{bottom:0.000000px;}
.y4f_c00160{bottom:3.420000px;}
.y1f_c00160{bottom:3.510000px;}
.y1e_c00160{bottom:20.700000px;}
.y1c_c00160{bottom:37.980000px;}
.y1b_c00160{bottom:55.260000px;}
.y50_c00160{bottom:57.240000px;}
.y1a_c00160{bottom:72.450000px;}
.y4b_c00160{bottom:89.640000px;}
.y49_c00160{bottom:124.200000px;}
.y20_c00160{bottom:124.290000px;}
.y16_c00160{bottom:141.480000px;}
.y15_c00160{bottom:158.670000px;}
.y4e_c00160{bottom:162.171000px;}
.y14_c00160{bottom:175.950000px;}
.y4d_c00160{bottom:179.455500px;}
.y45_c00160{bottom:193.140000px;}
.y13_c00160{bottom:193.230000px;}
.y4c_c00160{bottom:196.740000px;}
.y12_c00160{bottom:210.420000px;}
.y10_c00160{bottom:227.700000px;}
.y4a_c00160{bottom:231.210000px;}
.y43_c00160{bottom:244.890000px;}
.ye_c00160{bottom:262.170000px;}
.y48_c00160{bottom:265.675500px;}
.yd_c00160{bottom:279.450000px;}
.y47_c00160{bottom:282.960000px;}
.y41_c00160{bottom:296.640000px;}
.yb_c00160{bottom:296.730000px;}
.y46_c00160{bottom:300.240000px;}
.y3f_c00160{bottom:313.920000px;}
.y9_c00160{bottom:331.200000px;}
.y7_c00160{bottom:348.480000px;}
.y44_c00160{bottom:351.990000px;}
.y3b_c00160{bottom:365.670000px;}
.y3a_c00160{bottom:382.860000px;}
.y42_c00160{bottom:403.740000px;}
.y38_c00160{bottom:417.420000px;}
.y40_c00160{bottom:420.930000px;}
.y37_c00160{bottom:434.610000px;}
.y3e_c00160{bottom:438.210000px;}
.y36_c00160{bottom:451.890000px;}
.y3d_c00160{bottom:455.485680px;}
.y34_c00160{bottom:469.170000px;}
.y3c_c00160{bottom:472.680000px;}
.y28_c00160{bottom:520.920000px;}
.y39_c00160{bottom:524.430000px;}
.y27_c00160{bottom:538.110000px;}
.y25_c00160{bottom:572.670000px;}
.y35_c00160{bottom:576.180000px;}
.y24_c00160{bottom:589.860000px;}
.y33_c00160{bottom:593.460000px;}
.y23_c00160{bottom:607.140000px;}
.y32_c00160{bottom:610.618860px;}
.y2a_c00160{bottom:610.645500px;}
.y21_c00160{bottom:624.240000px;}
.y2b_c00160{bottom:624.420000px;}
.y31_c00160{bottom:627.903360px;}
.y29_c00160{bottom:627.930000px;}
.y30_c00160{bottom:645.187860px;}
.y2f_c00160{bottom:662.382180px;}
.y2e_c00160{bottom:679.666680px;}
.y26_c00160{bottom:679.680000px;}
.y2d_c00160{bottom:696.951180px;}
.y2c_c00160{bottom:714.145500px;}
.y22_c00160{bottom:731.430000px;}
.y6_c00160{bottom:763.200000px;}
.y1d_c00160{bottom:783.900000px;}
.y19_c00160{bottom:852.921180px;}
.y18_c00160{bottom:870.115500px;}
.y17_c00160{bottom:887.400000px;}
.y11_c00160{bottom:973.620000px;}
.yf_c00160{bottom:1008.180000px;}
.yc_c00160{bottom:1042.650000px;}
.ya_c00160{bottom:1077.120000px;}
.y8_c00160{bottom:1094.400000px;}
.y5_c00160{bottom:1131.030000px;}
.y4_c00160{bottom:1150.920000px;}
.y3_c00160{bottom:1166.404500px;}
.y2_c00160{bottom:1181.970000px;}
.y1_c00160{bottom:1197.450000px;}
.h3_c00160{height:52.971680px;}
.h2_c00160{height:52.998047px;}
.h6_c00160{height:59.004492px;}
.h8_c00160{height:60.589687px;}
.h4_c00160{height:70.664062px;}
.h5_c00160{height:362.251500px;}
.h7_c00160{height:638.190000px;}
.h0_c00160{height:1262.880000px;}
.h1_c00160{height:1263.000000px;}
.w3_c00160{width:252.900000px;}
.w2_c00160{width:263.430000px;}
.w0_c00160{width:893.070000px;}
.w1_c00160{width:893.250000px;}
.x0_c00160{left:0.000000px;}
.x5_c00160{left:6.930000px;}
.x11_c00160{left:45.900000px;}
.xe_c00160{left:57.780000px;}
.xa_c00160{left:72.180000px;}
.x10_c00160{left:85.050000px;}
.xd_c00160{left:95.310000px;}
.x3_c00160{left:127.620000px;}
.xf_c00160{left:129.150000px;}
.x7_c00160{left:146.700000px;}
.x13_c00160{left:198.000000px;}
.x12_c00160{left:203.850000px;}
.x9_c00160{left:214.560000px;}
.x8_c00160{left:235.170000px;}
.xb_c00160{left:236.520000px;}
.xc_c00160{left:243.450000px;}
.x2_c00160{left:425.160000px;}
.x1_c00160{left:446.580000px;}
.x4_c00160{left:491.670000px;}
.x6_c00160{left:498.600000px;}
.x14_c00160{left:738.540000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls8_c00160{letter-spacing:-0.213760pt;}
.ls9_c00160{letter-spacing:-0.160320pt;}
.ls5_c00160{letter-spacing:-0.106880pt;}
.ls4_c00160{letter-spacing:-0.096000pt;}
.ls6_c00160{letter-spacing:-0.053440pt;}
.ls3_c00160{letter-spacing:0.000000pt;}
.ls7_c00160{letter-spacing:0.106880pt;}
.ls1_c00160{letter-spacing:0.124480pt;}
.ls0_c00160{letter-spacing:0.160320pt;}
.ls2_c00160{letter-spacing:12.237760pt;}
.ws1_c00160{word-spacing:-13.520320pt;}
.ws3_c00160{word-spacing:-13.466880pt;}
.ws2_c00160{word-spacing:-13.360000pt;}
.ws0_c00160{word-spacing:-13.253120pt;}
.ws5_c00160{word-spacing:-13.199680pt;}
.ws4_c00160{word-spacing:-13.146240pt;}
.wsb_c00160{word-spacing:-0.374080pt;}
.ws1a_c00160{word-spacing:-0.160320pt;}
.ws36_c00160{word-spacing:-0.106880pt;}
.ws20_c00160{word-spacing:-0.053440pt;}
.ws6_c00160{word-spacing:0.000000pt;}
.ws2c_c00160{word-spacing:0.106880pt;}
.ws8_c00160{word-spacing:0.144000pt;}
.ws2a_c00160{word-spacing:0.160320pt;}
.ws26_c00160{word-spacing:0.213760pt;}
.ws7_c00160{word-spacing:0.240000pt;}
.ws3f_c00160{word-spacing:1.175680pt;}
.ws10_c00160{word-spacing:1.496320pt;}
.ws41_c00160{word-spacing:2.992640pt;}
.ws35_c00160{word-spacing:3.633920pt;}
.ws3d_c00160{word-spacing:3.740800pt;}
.ws29_c00160{word-spacing:4.275200pt;}
.ws2b_c00160{word-spacing:4.916480pt;}
.ws28_c00160{word-spacing:5.344000pt;}
.ws33_c00160{word-spacing:5.985280pt;}
.ws19_c00160{word-spacing:6.199040pt;}
.ws32_c00160{word-spacing:6.305920pt;}
.ws44_c00160{word-spacing:6.519680pt;}
.wsf_c00160{word-spacing:7.267840pt;}
.ws17_c00160{word-spacing:8.443520pt;}
.ws1c_c00160{word-spacing:9.512320pt;}
.wsd_c00160{word-spacing:10.153600pt;}
.wse_c00160{word-spacing:10.367360pt;}
.ws11_c00160{word-spacing:11.115520pt;}
.ws1e_c00160{word-spacing:11.756800pt;}
.ws15_c00160{word-spacing:12.077440pt;}
.ws3e_c00160{word-spacing:12.130880pt;}
.ws1f_c00160{word-spacing:12.291200pt;}
.ws42_c00160{word-spacing:13.039360pt;}
.ws23_c00160{word-spacing:13.894400pt;}
.ws9_c00160{word-spacing:18.169600pt;}
.ws31_c00160{word-spacing:18.704000pt;}
.ws1b_c00160{word-spacing:18.810880pt;}
.ws46_c00160{word-spacing:20.093440pt;}
.ws1d_c00160{word-spacing:21.269120pt;}
.ws22_c00160{word-spacing:21.376000pt;}
.ws21_c00160{word-spacing:21.429440pt;}
.ws40_c00160{word-spacing:21.643200pt;}
.ws38_c00160{word-spacing:21.696640pt;}
.ws37_c00160{word-spacing:21.963840pt;}
.ws18_c00160{word-spacing:23.941120pt;}
.ws30_c00160{word-spacing:24.582400pt;}
.wsa_c00160{word-spacing:25.864960pt;}
.ws3a_c00160{word-spacing:26.078720pt;}
.ws3b_c00160{word-spacing:26.826880pt;}
.ws24_c00160{word-spacing:27.361280pt;}
.ws39_c00160{word-spacing:29.017920pt;}
.ws45_c00160{word-spacing:31.796800pt;}
.ws2f_c00160{word-spacing:35.323840pt;}
.ws25_c00160{word-spacing:35.965120pt;}
.ws27_c00160{word-spacing:37.995840pt;}
.ws43_c00160{word-spacing:39.919680pt;}
.ws34_c00160{word-spacing:40.454080pt;}
.wsc_c00160{word-spacing:43.393280pt;}
.ws3c_c00160{word-spacing:44.034560pt;}
.ws2d_c00160{word-spacing:46.172160pt;}
.ws2e_c00160{word-spacing:46.225600pt;}
.ws13_c00160{word-spacing:46.653120pt;}
.ws12_c00160{word-spacing:46.866880pt;}
.ws14_c00160{word-spacing:51.462720pt;}
.ws16_c00160{word-spacing:93.680320pt;}
._1_c00160{margin-left:-0.940800pt;}
._0_c00160{width:1.084800pt;}
.fs0_c00160{font-size:48.000000pt;}
.fs2_c00160{font-size:53.440000pt;}
.fs1_c00160{font-size:64.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y4f_c00160{bottom:3.040000pt;}
.y1f_c00160{bottom:3.120000pt;}
.y1e_c00160{bottom:18.400000pt;}
.y1c_c00160{bottom:33.760000pt;}
.y1b_c00160{bottom:49.120000pt;}
.y50_c00160{bottom:50.880000pt;}
.y1a_c00160{bottom:64.400000pt;}
.y4b_c00160{bottom:79.680000pt;}
.y49_c00160{bottom:110.400000pt;}
.y20_c00160{bottom:110.480000pt;}
.y16_c00160{bottom:125.760000pt;}
.y15_c00160{bottom:141.040000pt;}
.y4e_c00160{bottom:144.152000pt;}
.y14_c00160{bottom:156.400000pt;}
.y4d_c00160{bottom:159.516000pt;}
.y45_c00160{bottom:171.680000pt;}
.y13_c00160{bottom:171.760000pt;}
.y4c_c00160{bottom:174.880000pt;}
.y12_c00160{bottom:187.040000pt;}
.y10_c00160{bottom:202.400000pt;}
.y4a_c00160{bottom:205.520000pt;}
.y43_c00160{bottom:217.680000pt;}
.ye_c00160{bottom:233.040000pt;}
.y48_c00160{bottom:236.156000pt;}
.yd_c00160{bottom:248.400000pt;}
.y47_c00160{bottom:251.520000pt;}
.y41_c00160{bottom:263.680000pt;}
.yb_c00160{bottom:263.760000pt;}
.y46_c00160{bottom:266.880000pt;}
.y3f_c00160{bottom:279.040000pt;}
.y9_c00160{bottom:294.400000pt;}
.y7_c00160{bottom:309.760000pt;}
.y44_c00160{bottom:312.880000pt;}
.y3b_c00160{bottom:325.040000pt;}
.y3a_c00160{bottom:340.320000pt;}
.y42_c00160{bottom:358.880000pt;}
.y38_c00160{bottom:371.040000pt;}
.y40_c00160{bottom:374.160000pt;}
.y37_c00160{bottom:386.320000pt;}
.y3e_c00160{bottom:389.520000pt;}
.y36_c00160{bottom:401.680000pt;}
.y3d_c00160{bottom:404.876160pt;}
.y34_c00160{bottom:417.040000pt;}
.y3c_c00160{bottom:420.160000pt;}
.y28_c00160{bottom:463.040000pt;}
.y39_c00160{bottom:466.160000pt;}
.y27_c00160{bottom:478.320000pt;}
.y25_c00160{bottom:509.040000pt;}
.y35_c00160{bottom:512.160000pt;}
.y24_c00160{bottom:524.320000pt;}
.y33_c00160{bottom:527.520000pt;}
.y23_c00160{bottom:539.680000pt;}
.y32_c00160{bottom:542.772320pt;}
.y2a_c00160{bottom:542.796000pt;}
.y21_c00160{bottom:554.880000pt;}
.y2b_c00160{bottom:555.040000pt;}
.y31_c00160{bottom:558.136320pt;}
.y29_c00160{bottom:558.160000pt;}
.y30_c00160{bottom:573.500320pt;}
.y2f_c00160{bottom:588.784160pt;}
.y2e_c00160{bottom:604.148160pt;}
.y26_c00160{bottom:604.160000pt;}
.y2d_c00160{bottom:619.512160pt;}
.y2c_c00160{bottom:634.796000pt;}
.y22_c00160{bottom:650.160000pt;}
.y6_c00160{bottom:678.400000pt;}
.y1d_c00160{bottom:696.800000pt;}
.y19_c00160{bottom:758.152160pt;}
.y18_c00160{bottom:773.436000pt;}
.y17_c00160{bottom:788.800000pt;}
.y11_c00160{bottom:865.440000pt;}
.yf_c00160{bottom:896.160000pt;}
.yc_c00160{bottom:926.800000pt;}
.ya_c00160{bottom:957.440000pt;}
.y8_c00160{bottom:972.800000pt;}
.y5_c00160{bottom:1005.360000pt;}
.y4_c00160{bottom:1023.040000pt;}
.y3_c00160{bottom:1036.804000pt;}
.y2_c00160{bottom:1050.640000pt;}
.y1_c00160{bottom:1064.400000pt;}
.h3_c00160{height:47.085938pt;}
.h2_c00160{height:47.109375pt;}
.h6_c00160{height:52.448437pt;}
.h8_c00160{height:53.857500pt;}
.h4_c00160{height:62.812500pt;}
.h5_c00160{height:322.001333pt;}
.h7_c00160{height:567.280000pt;}
.h0_c00160{height:1122.560000pt;}
.h1_c00160{height:1122.666667pt;}
.w3_c00160{width:224.800000pt;}
.w2_c00160{width:234.160000pt;}
.w0_c00160{width:793.840000pt;}
.w1_c00160{width:794.000000pt;}
.x0_c00160{left:0.000000pt;}
.x5_c00160{left:6.160000pt;}
.x11_c00160{left:40.800000pt;}
.xe_c00160{left:51.360000pt;}
.xa_c00160{left:64.160000pt;}
.x10_c00160{left:75.600000pt;}
.xd_c00160{left:84.720000pt;}
.x3_c00160{left:113.440000pt;}
.xf_c00160{left:114.800000pt;}
.x7_c00160{left:130.400000pt;}
.x13_c00160{left:176.000000pt;}
.x12_c00160{left:181.200000pt;}
.x9_c00160{left:190.720000pt;}
.x8_c00160{left:209.040000pt;}
.xb_c00160{left:210.240000pt;}
.xc_c00160{left:216.400000pt;}
.x2_c00160{left:377.920000pt;}
.x1_c00160{left:396.960000pt;}
.x4_c00160{left:437.040000pt;}
.x6_c00160{left:443.200000pt;}
.x14_c00160{left:656.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_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_6c43e475688e867b161797ed.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_17de76b478a9b51304ba759d.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00161{vertical-align:-61.938000px;}
.v0_c00161{vertical-align:0.000000px;}
.lsc_c00161{letter-spacing:-0.541080px;}
.ls11_c00161{letter-spacing:-0.480960px;}
.ls9_c00161{letter-spacing:-0.420840px;}
.lsd_c00161{letter-spacing:-0.360720px;}
.ls10_c00161{letter-spacing:-0.300600px;}
.lsf_c00161{letter-spacing:-0.240480px;}
.lse_c00161{letter-spacing:-0.180360px;}
.lsb_c00161{letter-spacing:-0.120240px;}
.lsa_c00161{letter-spacing:-0.060120px;}
.ls8_c00161{letter-spacing:0.000000px;}
.ls6_c00161{letter-spacing:0.060120px;}
.ls4_c00161{letter-spacing:0.120240px;}
.ls3_c00161{letter-spacing:0.140040px;}
.ls5_c00161{letter-spacing:0.180360px;}
.ls1_c00161{letter-spacing:1.142280px;}
.ls7_c00161{letter-spacing:2.585160px;}
.ls2_c00161{letter-spacing:14.128200px;}
.ls0_c00161{letter-spacing:319.518000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00161{word-spacing:-15.210360px;}
.ws5_c00161{word-spacing:-15.090120px;}
.ws4_c00161{word-spacing:-15.030000px;}
.ws0_c00161{word-spacing:-14.969880px;}
.ws1_c00161{word-spacing:-14.909760px;}
.ws2_c00161{word-spacing:-14.849640px;}
.ws6_c00161{word-spacing:-14.789520px;}
.ws7_c00161{word-spacing:-14.729400px;}
.ws8_c00161{word-spacing:-14.549040px;}
.ws1c_c00161{word-spacing:-0.180360px;}
.wsa_c00161{word-spacing:-0.162000px;}
.ws27_c00161{word-spacing:-0.120240px;}
.ws1b_c00161{word-spacing:-0.060120px;}
.ws9_c00161{word-spacing:0.000000px;}
.ws28_c00161{word-spacing:0.060120px;}
.ws1e_c00161{word-spacing:0.120240px;}
.ws48_c00161{word-spacing:0.180360px;}
.ws64_c00161{word-spacing:0.204480px;}
.ws3c_c00161{word-spacing:0.240480px;}
.ws5b_c00161{word-spacing:0.300600px;}
.ws18_c00161{word-spacing:0.360720px;}
.ws11_c00161{word-spacing:0.541080px;}
.ws35_c00161{word-spacing:1.022040px;}
.ws34_c00161{word-spacing:1.082160px;}
.ws22_c00161{word-spacing:1.262520px;}
.ws10_c00161{word-spacing:1.322640px;}
.ws55_c00161{word-spacing:1.563120px;}
.ws24_c00161{word-spacing:1.983960px;}
.ws33_c00161{word-spacing:2.044080px;}
.ws30_c00161{word-spacing:2.344680px;}
.ws2f_c00161{word-spacing:2.404800px;}
.ws1d_c00161{word-spacing:2.645280px;}
.ws13_c00161{word-spacing:2.765520px;}
.ws53_c00161{word-spacing:3.366720px;}
.ws3a_c00161{word-spacing:3.486960px;}
.ws43_c00161{word-spacing:3.727440px;}
.ws50_c00161{word-spacing:3.847680px;}
.ws5e_c00161{word-spacing:4.448880px;}
.ws5f_c00161{word-spacing:4.569120px;}
.ws39_c00161{word-spacing:5.170320px;}
.ws60_c00161{word-spacing:5.290560px;}
.ws61_c00161{word-spacing:5.591160px;}
.ws16_c00161{word-spacing:5.651280px;}
.ws56_c00161{word-spacing:5.891760px;}
.ws4d_c00161{word-spacing:6.012000px;}
.ws4e_c00161{word-spacing:6.312600px;}
.ws36_c00161{word-spacing:6.372720px;}
.ws3f_c00161{word-spacing:7.094160px;}
.ws3e_c00161{word-spacing:7.154280px;}
.wsd_c00161{word-spacing:7.454880px;}
.ws5c_c00161{word-spacing:7.695360px;}
.ws5d_c00161{word-spacing:8.416800px;}
.ws12_c00161{word-spacing:9.138240px;}
.ws32_c00161{word-spacing:9.258480px;}
.ws57_c00161{word-spacing:13.466880px;}
.ws62_c00161{word-spacing:13.827600px;}
.ws17_c00161{word-spacing:14.188320px;}
.ws20_c00161{word-spacing:15.390720px;}
.ws1f_c00161{word-spacing:15.450840px;}
.ws40_c00161{word-spacing:16.472880px;}
.ws21_c00161{word-spacing:17.194320px;}
.ws47_c00161{word-spacing:17.434800px;}
.ws49_c00161{word-spacing:18.697320px;}
.ws4a_c00161{word-spacing:19.238400px;}
.ws42_c00161{word-spacing:19.599120px;}
.ws41_c00161{word-spacing:19.659240px;}
.ws31_c00161{word-spacing:20.801520px;}
.ws29_c00161{word-spacing:21.462840px;}
.wse_c00161{word-spacing:23.386680px;}
.wsf_c00161{word-spacing:23.567040px;}
.ws4f_c00161{word-spacing:23.687280px;}
.ws4c_c00161{word-spacing:24.288480px;}
.ws54_c00161{word-spacing:24.649200px;}
.ws58_c00161{word-spacing:25.490880px;}
.ws14_c00161{word-spacing:25.851600px;}
.ws4b_c00161{word-spacing:28.256400px;}
.ws23_c00161{word-spacing:28.977840px;}
.ws51_c00161{word-spacing:29.158200px;}
.ws52_c00161{word-spacing:29.338560px;}
.ws37_c00161{word-spacing:30.360600px;}
.ws59_c00161{word-spacing:31.502880px;}
.ws26_c00161{word-spacing:32.585040px;}
.ws2c_c00161{word-spacing:36.552960px;}
.ws2d_c00161{word-spacing:36.613080px;}
.ws2b_c00161{word-spacing:37.274400px;}
.ws45_c00161{word-spacing:37.695240px;}
.ws44_c00161{word-spacing:37.935720px;}
.ws19_c00161{word-spacing:39.498840px;}
.ws5a_c00161{word-spacing:39.859560px;}
.ws2a_c00161{word-spacing:40.821480px;}
.ws25_c00161{word-spacing:44.548920px;}
.ws38_c00161{word-spacing:44.789400px;}
.ws1a_c00161{word-spacing:45.871560px;}
.ws15_c00161{word-spacing:48.516840px;}
.ws3b_c00161{word-spacing:57.053880px;}
.wsb_c00161{word-spacing:65.290320px;}
.ws2e_c00161{word-spacing:70.099920px;}
.ws46_c00161{word-spacing:79.117920px;}
.ws63_c00161{word-spacing:116.572680px;}
.wsc_c00161{word-spacing:150.901200px;}
.ws3d_c00161{word-spacing:181.021320px;}
._1_c00161{margin-left:-1.160316px;}
._0_c00161{width:1.208412px;}
._3_c00161{width:13.827600px;}
._2_c00161{width:49.118040px;}
.fc0_c00161{color:rgb(0,0,0);}
.fs3_c00161{font-size:51.120000px;}
.fs0_c00161{font-size:54.000000px;}
.fs2_c00161{font-size:60.120000px;}
.fs1_c00161{font-size:72.000000px;}
.y0_c00161{bottom:0.000000px;}
.y48_c00161{bottom:3.420000px;}
.y30_c00161{bottom:3.510000px;}
.y50_c00161{bottom:20.700000px;}
.y37_c00161{bottom:20.790000px;}
.y2e_c00161{bottom:37.980000px;}
.y46_c00161{bottom:55.170000px;}
.y2d_c00161{bottom:55.260000px;}
.y5a_c00161{bottom:57.240000px;}
.y56_c00161{bottom:72.450000px;}
.y3b_c00161{bottom:72.540000px;}
.y2b_c00161{bottom:89.730000px;}
.y43_c00161{bottom:106.920000px;}
.y2a_c00161{bottom:107.010000px;}
.y59_c00161{bottom:109.710000px;}
.y5_c00161{bottom:123.480000px;}
.y41_c00161{bottom:124.200000px;}
.y28_c00161{bottom:124.290000px;}
.y40_c00161{bottom:141.390000px;}
.y27_c00161{bottom:141.480000px;}
.y32_c00161{bottom:158.580000px;}
.y3e_c00161{bottom:158.670000px;}
.y26_c00161{bottom:158.760000px;}
.y58_c00161{bottom:161.455500px;}
.y19_c00161{bottom:175.950000px;}
.y57_c00161{bottom:178.740000px;}
.y18_c00161{bottom:193.230000px;}
.y4f_c00161{bottom:195.930000px;}
.y4a_c00161{bottom:210.510000px;}
.y16_c00161{bottom:227.700000px;}
.y55_c00161{bottom:230.472360px;}
.y4e_c00161{bottom:230.490000px;}
.y15_c00161{bottom:244.980000px;}
.y54_c00161{bottom:247.666680px;}
.y14_c00161{bottom:262.260000px;}
.y53_c00161{bottom:264.951180px;}
.y4d_c00161{bottom:264.955500px;}
.y21_c00161{bottom:279.450000px;}
.y52_c00161{bottom:282.235680px;}
.y4c_c00161{bottom:282.240000px;}
.y51_c00161{bottom:299.430000px;}
.y1f_c00161{bottom:314.010000px;}
.y4b_c00161{bottom:316.710000px;}
.y1e_c00161{bottom:331.200000px;}
.y49_c00161{bottom:333.990000px;}
.yf_c00161{bottom:348.480000px;}
.y3d_c00161{bottom:365.760000px;}
.y47_c00161{bottom:386.460000px;}
.yb_c00161{bottom:400.050000px;}
.y1b_c00161{bottom:400.230000px;}
.y45_c00161{bottom:420.925500px;}
.y44_c00161{bottom:438.210000px;}
.y42_c00161{bottom:472.680000px;}
.y3f_c00161{bottom:507.150000px;}
.y31_c00161{bottom:538.920000px;}
.y3c_c00161{bottom:559.710000px;}
.y36_c00161{bottom:576.891000px;}
.y35_c00161{bottom:594.175500px;}
.y3a_c00161{bottom:611.455680px;}
.y34_c00161{bottom:611.460000px;}
.y39_c00161{bottom:628.650000px;}
.y38_c00161{bottom:645.930000px;}
.y33_c00161{bottom:680.400000px;}
.ya_c00161{bottom:712.170000px;}
.y2f_c00161{bottom:732.960000px;}
.y2c_c00161{bottom:784.710000px;}
.y29_c00161{bottom:819.180000px;}
.y1a_c00161{bottom:870.930000px;}
.y25_c00161{bottom:888.120000px;}
.y24_c00161{bottom:905.400000px;}
.y17_c00161{bottom:922.680000px;}
.y23_c00161{bottom:939.870000px;}
.y7_c00161{bottom:971.460000px;}
.y22_c00161{bottom:974.430000px;}
.y6_c00161{bottom:988.740000px;}
.y13_c00161{bottom:991.606680px;}
.y12_c00161{bottom:1008.891180px;}
.y20_c00161{bottom:1008.900000px;}
.y11_c00161{bottom:1026.175680px;}
.y10_c00161{bottom:1043.370000px;}
.y9_c00161{bottom:1060.465500px;}
.ye_c00161{bottom:1060.650000px;}
.yd_c00161{bottom:1077.745680px;}
.y8_c00161{bottom:1077.750000px;}
.y1d_c00161{bottom:1077.925680px;}
.yc_c00161{bottom:1094.940000px;}
.y1c_c00161{bottom:1095.120000px;}
.y4_c00161{bottom:1131.030000px;}
.y3_c00161{bottom:1150.915500px;}
.y2_c00161{bottom:1166.400000px;}
.y1_c00161{bottom:1197.450000px;}
.h2_c00161{height:52.998047px;}
.h7_c00161{height:59.004492px;}
.h5_c00161{height:60.589687px;}
.h3_c00161{height:70.664062px;}
.h9_c00161{height:172.441500px;}
.h8_c00161{height:172.530000px;}
.ha_c00161{height:241.468500px;}
.h6_c00161{height:414.000000px;}
.h4_c00161{height:1002.690000px;}
.h0_c00161{height:1262.880000px;}
.h1_c00161{height:1263.000000px;}
.w2_c00161{width:105.570000px;}
.w3_c00161{width:252.900000px;}
.w4_c00161{width:263.430000px;}
.w0_c00161{width:893.070000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x4_c00161{left:6.930000px;}
.x18_c00161{left:59.760000px;}
.xd_c00161{left:66.330000px;}
.x11_c00161{left:80.100000px;}
.xf_c00161{left:86.940000px;}
.xb_c00161{left:90.990000px;}
.x12_c00161{left:92.700000px;}
.x8_c00161{left:94.950000px;}
.x15_c00161{left:97.920000px;}
.x16_c00161{left:103.230000px;}
.x13_c00161{left:119.160000px;}
.x14_c00161{left:125.370000px;}
.x2_c00161{left:127.620000px;}
.x3_c00161{left:128.700000px;}
.x5_c00161{left:135.630000px;}
.xc_c00161{left:147.870000px;}
.x10_c00161{left:158.670000px;}
.xe_c00161{left:216.090000px;}
.x17_c00161{left:233.190000px;}
.x6_c00161{left:236.520000px;}
.x7_c00161{left:243.450000px;}
.x1_c00161{left:446.580000px;}
.x9_c00161{left:491.670000px;}
.xa_c00161{left:498.600000px;}
@media print{
.v1_c00161{vertical-align:-55.056000pt;}
.v0_c00161{vertical-align:0.000000pt;}
.lsc_c00161{letter-spacing:-0.480960pt;}
.ls11_c00161{letter-spacing:-0.427520pt;}
.ls9_c00161{letter-spacing:-0.374080pt;}
.lsd_c00161{letter-spacing:-0.320640pt;}
.ls10_c00161{letter-spacing:-0.267200pt;}
.lsf_c00161{letter-spacing:-0.213760pt;}
.lse_c00161{letter-spacing:-0.160320pt;}
.lsb_c00161{letter-spacing:-0.106880pt;}
.lsa_c00161{letter-spacing:-0.053440pt;}
.ls8_c00161{letter-spacing:0.000000pt;}
.ls6_c00161{letter-spacing:0.053440pt;}
.ls4_c00161{letter-spacing:0.106880pt;}
.ls3_c00161{letter-spacing:0.124480pt;}
.ls5_c00161{letter-spacing:0.160320pt;}
.ls1_c00161{letter-spacing:1.015360pt;}
.ls7_c00161{letter-spacing:2.297920pt;}
.ls2_c00161{letter-spacing:12.558400pt;}
.ls0_c00161{letter-spacing:284.016000pt;}
.ws3_c00161{word-spacing:-13.520320pt;}
.ws5_c00161{word-spacing:-13.413440pt;}
.ws4_c00161{word-spacing:-13.360000pt;}
.ws0_c00161{word-spacing:-13.306560pt;}
.ws1_c00161{word-spacing:-13.253120pt;}
.ws2_c00161{word-spacing:-13.199680pt;}
.ws6_c00161{word-spacing:-13.146240pt;}
.ws7_c00161{word-spacing:-13.092800pt;}
.ws8_c00161{word-spacing:-12.932480pt;}
.ws1c_c00161{word-spacing:-0.160320pt;}
.wsa_c00161{word-spacing:-0.144000pt;}
.ws27_c00161{word-spacing:-0.106880pt;}
.ws1b_c00161{word-spacing:-0.053440pt;}
.ws9_c00161{word-spacing:0.000000pt;}
.ws28_c00161{word-spacing:0.053440pt;}
.ws1e_c00161{word-spacing:0.106880pt;}
.ws48_c00161{word-spacing:0.160320pt;}
.ws64_c00161{word-spacing:0.181760pt;}
.ws3c_c00161{word-spacing:0.213760pt;}
.ws5b_c00161{word-spacing:0.267200pt;}
.ws18_c00161{word-spacing:0.320640pt;}
.ws11_c00161{word-spacing:0.480960pt;}
.ws35_c00161{word-spacing:0.908480pt;}
.ws34_c00161{word-spacing:0.961920pt;}
.ws22_c00161{word-spacing:1.122240pt;}
.ws10_c00161{word-spacing:1.175680pt;}
.ws55_c00161{word-spacing:1.389440pt;}
.ws24_c00161{word-spacing:1.763520pt;}
.ws33_c00161{word-spacing:1.816960pt;}
.ws30_c00161{word-spacing:2.084160pt;}
.ws2f_c00161{word-spacing:2.137600pt;}
.ws1d_c00161{word-spacing:2.351360pt;}
.ws13_c00161{word-spacing:2.458240pt;}
.ws53_c00161{word-spacing:2.992640pt;}
.ws3a_c00161{word-spacing:3.099520pt;}
.ws43_c00161{word-spacing:3.313280pt;}
.ws50_c00161{word-spacing:3.420160pt;}
.ws5e_c00161{word-spacing:3.954560pt;}
.ws5f_c00161{word-spacing:4.061440pt;}
.ws39_c00161{word-spacing:4.595840pt;}
.ws60_c00161{word-spacing:4.702720pt;}
.ws61_c00161{word-spacing:4.969920pt;}
.ws16_c00161{word-spacing:5.023360pt;}
.ws56_c00161{word-spacing:5.237120pt;}
.ws4d_c00161{word-spacing:5.344000pt;}
.ws4e_c00161{word-spacing:5.611200pt;}
.ws36_c00161{word-spacing:5.664640pt;}
.ws3f_c00161{word-spacing:6.305920pt;}
.ws3e_c00161{word-spacing:6.359360pt;}
.wsd_c00161{word-spacing:6.626560pt;}
.ws5c_c00161{word-spacing:6.840320pt;}
.ws5d_c00161{word-spacing:7.481600pt;}
.ws12_c00161{word-spacing:8.122880pt;}
.ws32_c00161{word-spacing:8.229760pt;}
.ws57_c00161{word-spacing:11.970560pt;}
.ws62_c00161{word-spacing:12.291200pt;}
.ws17_c00161{word-spacing:12.611840pt;}
.ws20_c00161{word-spacing:13.680640pt;}
.ws1f_c00161{word-spacing:13.734080pt;}
.ws40_c00161{word-spacing:14.642560pt;}
.ws21_c00161{word-spacing:15.283840pt;}
.ws47_c00161{word-spacing:15.497600pt;}
.ws49_c00161{word-spacing:16.619840pt;}
.ws4a_c00161{word-spacing:17.100800pt;}
.ws42_c00161{word-spacing:17.421440pt;}
.ws41_c00161{word-spacing:17.474880pt;}
.ws31_c00161{word-spacing:18.490240pt;}
.ws29_c00161{word-spacing:19.078080pt;}
.wse_c00161{word-spacing:20.788160pt;}
.wsf_c00161{word-spacing:20.948480pt;}
.ws4f_c00161{word-spacing:21.055360pt;}
.ws4c_c00161{word-spacing:21.589760pt;}
.ws54_c00161{word-spacing:21.910400pt;}
.ws58_c00161{word-spacing:22.658560pt;}
.ws14_c00161{word-spacing:22.979200pt;}
.ws4b_c00161{word-spacing:25.116800pt;}
.ws23_c00161{word-spacing:25.758080pt;}
.ws51_c00161{word-spacing:25.918400pt;}
.ws52_c00161{word-spacing:26.078720pt;}
.ws37_c00161{word-spacing:26.987200pt;}
.ws59_c00161{word-spacing:28.002560pt;}
.ws26_c00161{word-spacing:28.964480pt;}
.ws2c_c00161{word-spacing:32.491520pt;}
.ws2d_c00161{word-spacing:32.544960pt;}
.ws2b_c00161{word-spacing:33.132800pt;}
.ws45_c00161{word-spacing:33.506880pt;}
.ws44_c00161{word-spacing:33.720640pt;}
.ws19_c00161{word-spacing:35.110080pt;}
.ws5a_c00161{word-spacing:35.430720pt;}
.ws2a_c00161{word-spacing:36.285760pt;}
.ws25_c00161{word-spacing:39.599040pt;}
.ws38_c00161{word-spacing:39.812800pt;}
.ws1a_c00161{word-spacing:40.774720pt;}
.ws15_c00161{word-spacing:43.126080pt;}
.ws3b_c00161{word-spacing:50.714560pt;}
.wsb_c00161{word-spacing:58.035840pt;}
.ws2e_c00161{word-spacing:62.311040pt;}
.ws46_c00161{word-spacing:70.327040pt;}
.ws63_c00161{word-spacing:103.620160pt;}
.wsc_c00161{word-spacing:134.134400pt;}
.ws3d_c00161{word-spacing:160.907840pt;}
._1_c00161{margin-left:-1.031392pt;}
._0_c00161{width:1.074144pt;}
._3_c00161{width:12.291200pt;}
._2_c00161{width:43.660480pt;}
.fs3_c00161{font-size:45.440000pt;}
.fs0_c00161{font-size:48.000000pt;}
.fs2_c00161{font-size:53.440000pt;}
.fs1_c00161{font-size:64.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y48_c00161{bottom:3.040000pt;}
.y30_c00161{bottom:3.120000pt;}
.y50_c00161{bottom:18.400000pt;}
.y37_c00161{bottom:18.480000pt;}
.y2e_c00161{bottom:33.760000pt;}
.y46_c00161{bottom:49.040000pt;}
.y2d_c00161{bottom:49.120000pt;}
.y5a_c00161{bottom:50.880000pt;}
.y56_c00161{bottom:64.400000pt;}
.y3b_c00161{bottom:64.480000pt;}
.y2b_c00161{bottom:79.760000pt;}
.y43_c00161{bottom:95.040000pt;}
.y2a_c00161{bottom:95.120000pt;}
.y59_c00161{bottom:97.520000pt;}
.y5_c00161{bottom:109.760000pt;}
.y41_c00161{bottom:110.400000pt;}
.y28_c00161{bottom:110.480000pt;}
.y40_c00161{bottom:125.680000pt;}
.y27_c00161{bottom:125.760000pt;}
.y32_c00161{bottom:140.960000pt;}
.y3e_c00161{bottom:141.040000pt;}
.y26_c00161{bottom:141.120000pt;}
.y58_c00161{bottom:143.516000pt;}
.y19_c00161{bottom:156.400000pt;}
.y57_c00161{bottom:158.880000pt;}
.y18_c00161{bottom:171.760000pt;}
.y4f_c00161{bottom:174.160000pt;}
.y4a_c00161{bottom:187.120000pt;}
.y16_c00161{bottom:202.400000pt;}
.y55_c00161{bottom:204.864320pt;}
.y4e_c00161{bottom:204.880000pt;}
.y15_c00161{bottom:217.760000pt;}
.y54_c00161{bottom:220.148160pt;}
.y14_c00161{bottom:233.120000pt;}
.y53_c00161{bottom:235.512160pt;}
.y4d_c00161{bottom:235.516000pt;}
.y21_c00161{bottom:248.400000pt;}
.y52_c00161{bottom:250.876160pt;}
.y4c_c00161{bottom:250.880000pt;}
.y51_c00161{bottom:266.160000pt;}
.y1f_c00161{bottom:279.120000pt;}
.y4b_c00161{bottom:281.520000pt;}
.y1e_c00161{bottom:294.400000pt;}
.y49_c00161{bottom:296.880000pt;}
.yf_c00161{bottom:309.760000pt;}
.y3d_c00161{bottom:325.120000pt;}
.y47_c00161{bottom:343.520000pt;}
.yb_c00161{bottom:355.600000pt;}
.y1b_c00161{bottom:355.760000pt;}
.y45_c00161{bottom:374.156000pt;}
.y44_c00161{bottom:389.520000pt;}
.y42_c00161{bottom:420.160000pt;}
.y3f_c00161{bottom:450.800000pt;}
.y31_c00161{bottom:479.040000pt;}
.y3c_c00161{bottom:497.520000pt;}
.y36_c00161{bottom:512.792000pt;}
.y35_c00161{bottom:528.156000pt;}
.y3a_c00161{bottom:543.516160pt;}
.y34_c00161{bottom:543.520000pt;}
.y39_c00161{bottom:558.800000pt;}
.y38_c00161{bottom:574.160000pt;}
.y33_c00161{bottom:604.800000pt;}
.ya_c00161{bottom:633.040000pt;}
.y2f_c00161{bottom:651.520000pt;}
.y2c_c00161{bottom:697.520000pt;}
.y29_c00161{bottom:728.160000pt;}
.y1a_c00161{bottom:774.160000pt;}
.y25_c00161{bottom:789.440000pt;}
.y24_c00161{bottom:804.800000pt;}
.y17_c00161{bottom:820.160000pt;}
.y23_c00161{bottom:835.440000pt;}
.y7_c00161{bottom:863.520000pt;}
.y22_c00161{bottom:866.160000pt;}
.y6_c00161{bottom:878.880000pt;}
.y13_c00161{bottom:881.428160pt;}
.y12_c00161{bottom:896.792160pt;}
.y20_c00161{bottom:896.800000pt;}
.y11_c00161{bottom:912.156160pt;}
.y10_c00161{bottom:927.440000pt;}
.y9_c00161{bottom:942.636000pt;}
.ye_c00161{bottom:942.800000pt;}
.yd_c00161{bottom:957.996160pt;}
.y8_c00161{bottom:958.000000pt;}
.y1d_c00161{bottom:958.156160pt;}
.yc_c00161{bottom:973.280000pt;}
.y1c_c00161{bottom:973.440000pt;}
.y4_c00161{bottom:1005.360000pt;}
.y3_c00161{bottom:1023.036000pt;}
.y2_c00161{bottom:1036.800000pt;}
.y1_c00161{bottom:1064.400000pt;}
.h2_c00161{height:47.109375pt;}
.h7_c00161{height:52.448437pt;}
.h5_c00161{height:53.857500pt;}
.h3_c00161{height:62.812500pt;}
.h9_c00161{height:153.281333pt;}
.h8_c00161{height:153.360000pt;}
.ha_c00161{height:214.638667pt;}
.h6_c00161{height:368.000000pt;}
.h4_c00161{height:891.280000pt;}
.h0_c00161{height:1122.560000pt;}
.h1_c00161{height:1122.666667pt;}
.w2_c00161{width:93.840000pt;}
.w3_c00161{width:224.800000pt;}
.w4_c00161{width:234.160000pt;}
.w0_c00161{width:793.840000pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x4_c00161{left:6.160000pt;}
.x18_c00161{left:53.120000pt;}
.xd_c00161{left:58.960000pt;}
.x11_c00161{left:71.200000pt;}
.xf_c00161{left:77.280000pt;}
.xb_c00161{left:80.880000pt;}
.x12_c00161{left:82.400000pt;}
.x8_c00161{left:84.400000pt;}
.x15_c00161{left:87.040000pt;}
.x16_c00161{left:91.760000pt;}
.x13_c00161{left:105.920000pt;}
.x14_c00161{left:111.440000pt;}
.x2_c00161{left:113.440000pt;}
.x3_c00161{left:114.400000pt;}
.x5_c00161{left:120.560000pt;}
.xc_c00161{left:131.440000pt;}
.x10_c00161{left:141.040000pt;}
.xe_c00161{left:192.080000pt;}
.x17_c00161{left:207.280000pt;}
.x6_c00161{left:210.240000pt;}
.x7_c00161{left:216.400000pt;}
.x1_c00161{left:396.960000pt;}
.x9_c00161{left:437.040000pt;}
.xa_c00161{left:443.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_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_f63e35f57275282215b23d12.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.284180;font-style:normal;font-weight:normal;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_ca912419dbe2a111c38faebe.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;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_c00162;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00162{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00162{vertical-align:-20.880000px;}
.v0_c00162{vertical-align:0.000000px;}
.v1_c00162{vertical-align:27.000000px;}
.lsc_c00162{letter-spacing:-0.576000px;}
.lsa_c00162{letter-spacing:-0.288000px;}
.ls9_c00162{letter-spacing:-0.108000px;}
.lsd_c00162{letter-spacing:-0.072000px;}
.lse_c00162{letter-spacing:-0.060120px;}
.ls8_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.072000px;}
.ls6_c00162{letter-spacing:0.120240px;}
.lsb_c00162{letter-spacing:0.144000px;}
.lsf_c00162{letter-spacing:0.180360px;}
.ls3_c00162{letter-spacing:0.191520px;}
.ls1_c00162{letter-spacing:3.240000px;}
.ls5_c00162{letter-spacing:6.120000px;}
.ls4_c00162{letter-spacing:8.280000px;}
.ls7_c00162{letter-spacing:17.013960px;}
.ls2_c00162{letter-spacing:30.744000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00162{word-spacing:-18.144000px;}
.ws1_c00162{word-spacing:-18.072000px;}
.ws2_c00162{word-spacing:-18.000000px;}
.ws4_c00162{word-spacing:-17.928000px;}
.ws3_c00162{word-spacing:-12.161520px;}
.ws5_c00162{word-spacing:-9.720000px;}
.ws20_c00162{word-spacing:-0.360000px;}
.ws1d_c00162{word-spacing:-0.144000px;}
.wsb_c00162{word-spacing:-0.072000px;}
.ws2c_c00162{word-spacing:-0.060120px;}
.ws6_c00162{word-spacing:0.000000px;}
.ws8_c00162{word-spacing:0.162000px;}
.ws2a_c00162{word-spacing:0.180360px;}
.ws7_c00162{word-spacing:0.270000px;}
.wsa_c00162{word-spacing:0.288000px;}
.ws15_c00162{word-spacing:0.576000px;}
.ws18_c00162{word-spacing:0.648000px;}
.ws14_c00162{word-spacing:1.728000px;}
.ws13_c00162{word-spacing:1.800000px;}
.ws24_c00162{word-spacing:2.160000px;}
.ws12_c00162{word-spacing:2.736000px;}
.ws10_c00162{word-spacing:2.880000px;}
.ws11_c00162{word-spacing:3.240000px;}
.wsf_c00162{word-spacing:3.600000px;}
.ws17_c00162{word-spacing:5.400000px;}
.ws9_c00162{word-spacing:5.760000px;}
.ws27_c00162{word-spacing:6.048000px;}
.ws23_c00162{word-spacing:6.408000px;}
.ws26_c00162{word-spacing:6.480000px;}
.ws1f_c00162{word-spacing:7.920000px;}
.ws1e_c00162{word-spacing:8.280000px;}
.ws19_c00162{word-spacing:11.088000px;}
.ws1a_c00162{word-spacing:11.160000px;}
.ws22_c00162{word-spacing:11.808000px;}
.ws21_c00162{word-spacing:11.880000px;}
.ws29_c00162{word-spacing:13.248000px;}
.ws28_c00162{word-spacing:13.320000px;}
.ws16_c00162{word-spacing:15.120000px;}
.ws2b_c00162{word-spacing:16.833600px;}
.ws25_c00162{word-spacing:20.160000px;}
.wsd_c00162{word-spacing:22.320000px;}
.wse_c00162{word-spacing:22.608000px;}
.wsc_c00162{word-spacing:22.680000px;}
.ws1b_c00162{word-spacing:23.760000px;}
.ws1c_c00162{word-spacing:25.848000px;}
._1_c00162{margin-left:-1.058400px;}
._0_c00162{width:1.220400px;}
._4_c00162{width:2.714400px;}
._2_c00162{width:6.267600px;}
._6_c00162{width:11.188800px;}
._5_c00162{width:14.976000px;}
._3_c00162{width:22.608000px;}
.fc0_c00162{color:rgb(0,0,0);}
.fs4_c00162{font-size:38.880000px;}
.fs3_c00162{font-size:47.880000px;}
.fs0_c00162{font-size:54.000000px;}
.fs2_c00162{font-size:60.120000px;}
.fs1_c00162{font-size:72.000000px;}
.y0_c00162{bottom:0.000000px;}
.y27_c00162{bottom:57.240000px;}
.y26_c00162{bottom:109.795680px;}
.y25_c00162{bottom:132.210000px;}
.y24_c00162{bottom:149.490000px;}
.y28_c00162{bottom:162.180000px;}
.y23_c00162{bottom:209.970000px;}
.y22_c00162{bottom:241.020000px;}
.y21_c00162{bottom:272.070000px;}
.y20_c00162{bottom:303.120000px;}
.y1f_c00162{bottom:334.170000px;}
.y1e_c00162{bottom:365.220000px;}
.y1d_c00162{bottom:396.270000px;}
.y1c_c00162{bottom:427.320000px;}
.y1b_c00162{bottom:458.370000px;}
.y1a_c00162{bottom:489.420000px;}
.y19_c00162{bottom:520.470000px;}
.y18_c00162{bottom:551.520000px;}
.y17_c00162{bottom:582.570000px;}
.y16_c00162{bottom:613.620000px;}
.y15_c00162{bottom:644.670000px;}
.y14_c00162{bottom:675.720000px;}
.y13_c00162{bottom:706.770000px;}
.y12_c00162{bottom:737.820000px;}
.y11_c00162{bottom:768.870000px;}
.y10_c00162{bottom:799.920000px;}
.yf_c00162{bottom:830.970000px;}
.ye_c00162{bottom:861.930000px;}
.yd_c00162{bottom:892.980000px;}
.yc_c00162{bottom:924.030000px;}
.yb_c00162{bottom:955.080000px;}
.ya_c00162{bottom:986.130000px;}
.y9_c00162{bottom:1017.180000px;}
.y8_c00162{bottom:1048.230000px;}
.y7_c00162{bottom:1079.280000px;}
.y6_c00162{bottom:1110.330000px;}
.y5_c00162{bottom:1131.030000px;}
.y4_c00162{bottom:1150.920000px;}
.y3_c00162{bottom:1166.404500px;}
.y2_c00162{bottom:1181.970000px;}
.y1_c00162{bottom:1197.450000px;}
.h6_c00162{height:38.158594px;}
.h3_c00162{height:52.971680px;}
.h2_c00162{height:52.998047px;}
.h7_c00162{height:59.004492px;}
.h4_c00162{height:70.664062px;}
.h5_c00162{height:75.093750px;}
.h0_c00162{height:1262.880000px;}
.h1_c00162{height:1263.000000px;}
.w0_c00162{width:893.070000px;}
.w1_c00162{width:893.250000px;}
.x0_c00162{left:0.000000px;}
.x3_c00162{left:127.620000px;}
.x4_c00162{left:154.620000px;}
.x5_c00162{left:181.620000px;}
.x2_c00162{left:425.160000px;}
.x1_c00162{left:446.580000px;}
.x6_c00162{left:738.540000px;}
@media print{
.v2_c00162{vertical-align:-18.560000pt;}
.v0_c00162{vertical-align:0.000000pt;}
.v1_c00162{vertical-align:24.000000pt;}
.lsc_c00162{letter-spacing:-0.512000pt;}
.lsa_c00162{letter-spacing:-0.256000pt;}
.ls9_c00162{letter-spacing:-0.096000pt;}
.lsd_c00162{letter-spacing:-0.064000pt;}
.lse_c00162{letter-spacing:-0.053440pt;}
.ls8_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.064000pt;}
.ls6_c00162{letter-spacing:0.106880pt;}
.lsb_c00162{letter-spacing:0.128000pt;}
.lsf_c00162{letter-spacing:0.160320pt;}
.ls3_c00162{letter-spacing:0.170240pt;}
.ls1_c00162{letter-spacing:2.880000pt;}
.ls5_c00162{letter-spacing:5.440000pt;}
.ls4_c00162{letter-spacing:7.360000pt;}
.ls7_c00162{letter-spacing:15.123520pt;}
.ls2_c00162{letter-spacing:27.328000pt;}
.ws0_c00162{word-spacing:-16.128000pt;}
.ws1_c00162{word-spacing:-16.064000pt;}
.ws2_c00162{word-spacing:-16.000000pt;}
.ws4_c00162{word-spacing:-15.936000pt;}
.ws3_c00162{word-spacing:-10.810240pt;}
.ws5_c00162{word-spacing:-8.640000pt;}
.ws20_c00162{word-spacing:-0.320000pt;}
.ws1d_c00162{word-spacing:-0.128000pt;}
.wsb_c00162{word-spacing:-0.064000pt;}
.ws2c_c00162{word-spacing:-0.053440pt;}
.ws6_c00162{word-spacing:0.000000pt;}
.ws8_c00162{word-spacing:0.144000pt;}
.ws2a_c00162{word-spacing:0.160320pt;}
.ws7_c00162{word-spacing:0.240000pt;}
.wsa_c00162{word-spacing:0.256000pt;}
.ws15_c00162{word-spacing:0.512000pt;}
.ws18_c00162{word-spacing:0.576000pt;}
.ws14_c00162{word-spacing:1.536000pt;}
.ws13_c00162{word-spacing:1.600000pt;}
.ws24_c00162{word-spacing:1.920000pt;}
.ws12_c00162{word-spacing:2.432000pt;}
.ws10_c00162{word-spacing:2.560000pt;}
.ws11_c00162{word-spacing:2.880000pt;}
.wsf_c00162{word-spacing:3.200000pt;}
.ws17_c00162{word-spacing:4.800000pt;}
.ws9_c00162{word-spacing:5.120000pt;}
.ws27_c00162{word-spacing:5.376000pt;}
.ws23_c00162{word-spacing:5.696000pt;}
.ws26_c00162{word-spacing:5.760000pt;}
.ws1f_c00162{word-spacing:7.040000pt;}
.ws1e_c00162{word-spacing:7.360000pt;}
.ws19_c00162{word-spacing:9.856000pt;}
.ws1a_c00162{word-spacing:9.920000pt;}
.ws22_c00162{word-spacing:10.496000pt;}
.ws21_c00162{word-spacing:10.560000pt;}
.ws29_c00162{word-spacing:11.776000pt;}
.ws28_c00162{word-spacing:11.840000pt;}
.ws16_c00162{word-spacing:13.440000pt;}
.ws2b_c00162{word-spacing:14.963200pt;}
.ws25_c00162{word-spacing:17.920000pt;}
.wsd_c00162{word-spacing:19.840000pt;}
.wse_c00162{word-spacing:20.096000pt;}
.wsc_c00162{word-spacing:20.160000pt;}
.ws1b_c00162{word-spacing:21.120000pt;}
.ws1c_c00162{word-spacing:22.976000pt;}
._1_c00162{margin-left:-0.940800pt;}
._0_c00162{width:1.084800pt;}
._4_c00162{width:2.412800pt;}
._2_c00162{width:5.571200pt;}
._6_c00162{width:9.945600pt;}
._5_c00162{width:13.312000pt;}
._3_c00162{width:20.096000pt;}
.fs4_c00162{font-size:34.560000pt;}
.fs3_c00162{font-size:42.560000pt;}
.fs0_c00162{font-size:48.000000pt;}
.fs2_c00162{font-size:53.440000pt;}
.fs1_c00162{font-size:64.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y27_c00162{bottom:50.880000pt;}
.y26_c00162{bottom:97.596160pt;}
.y25_c00162{bottom:117.520000pt;}
.y24_c00162{bottom:132.880000pt;}
.y28_c00162{bottom:144.160000pt;}
.y23_c00162{bottom:186.640000pt;}
.y22_c00162{bottom:214.240000pt;}
.y21_c00162{bottom:241.840000pt;}
.y20_c00162{bottom:269.440000pt;}
.y1f_c00162{bottom:297.040000pt;}
.y1e_c00162{bottom:324.640000pt;}
.y1d_c00162{bottom:352.240000pt;}
.y1c_c00162{bottom:379.840000pt;}
.y1b_c00162{bottom:407.440000pt;}
.y1a_c00162{bottom:435.040000pt;}
.y19_c00162{bottom:462.640000pt;}
.y18_c00162{bottom:490.240000pt;}
.y17_c00162{bottom:517.840000pt;}
.y16_c00162{bottom:545.440000pt;}
.y15_c00162{bottom:573.040000pt;}
.y14_c00162{bottom:600.640000pt;}
.y13_c00162{bottom:628.240000pt;}
.y12_c00162{bottom:655.840000pt;}
.y11_c00162{bottom:683.440000pt;}
.y10_c00162{bottom:711.040000pt;}
.yf_c00162{bottom:738.640000pt;}
.ye_c00162{bottom:766.160000pt;}
.yd_c00162{bottom:793.760000pt;}
.yc_c00162{bottom:821.360000pt;}
.yb_c00162{bottom:848.960000pt;}
.ya_c00162{bottom:876.560000pt;}
.y9_c00162{bottom:904.160000pt;}
.y8_c00162{bottom:931.760000pt;}
.y7_c00162{bottom:959.360000pt;}
.y6_c00162{bottom:986.960000pt;}
.y5_c00162{bottom:1005.360000pt;}
.y4_c00162{bottom:1023.040000pt;}
.y3_c00162{bottom:1036.804000pt;}
.y2_c00162{bottom:1050.640000pt;}
.y1_c00162{bottom:1064.400000pt;}
.h6_c00162{height:33.918750pt;}
.h3_c00162{height:47.085938pt;}
.h2_c00162{height:47.109375pt;}
.h7_c00162{height:52.448437pt;}
.h4_c00162{height:62.812500pt;}
.h5_c00162{height:66.750000pt;}
.h0_c00162{height:1122.560000pt;}
.h1_c00162{height:1122.666667pt;}
.w0_c00162{width:793.840000pt;}
.w1_c00162{width:794.000000pt;}
.x0_c00162{left:0.000000pt;}
.x3_c00162{left:113.440000pt;}
.x4_c00162{left:137.440000pt;}
.x5_c00162{left:161.440000pt;}
.x2_c00162{left:377.920000pt;}
.x1_c00162{left:396.960000pt;}
.x6_c00162{left:656.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_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_f5a1f7163d6db29f6440530b.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00163{vertical-align:-61.938000px;}
.v0_c00163{vertical-align:0.000000px;}
.ls10_c00163{letter-spacing:-0.576000px;}
.ls11_c00163{letter-spacing:-0.360000px;}
.ls14_c00163{letter-spacing:-0.216000px;}
.ls13_c00163{letter-spacing:-0.144000px;}
.lsf_c00163{letter-spacing:0.000000px;}
.ls1_c00163{letter-spacing:0.072000px;}
.lsd_c00163{letter-spacing:0.144000px;}
.ls12_c00163{letter-spacing:0.432000px;}
.ls6_c00163{letter-spacing:0.720000px;}
.ls4_c00163{letter-spacing:1.440000px;}
.ls9_c00163{letter-spacing:3.960000px;}
.lsa_c00163{letter-spacing:6.840000px;}
.lsb_c00163{letter-spacing:11.880000px;}
.lse_c00163{letter-spacing:13.680000px;}
.ls3_c00163{letter-spacing:14.760000px;}
.ls2_c00163{letter-spacing:15.127200px;}
.lsc_c00163{letter-spacing:19.800000px;}
.ls5_c00163{letter-spacing:22.320000px;}
.ls7_c00163{letter-spacing:36.360000px;}
.ls8_c00163{letter-spacing:37.440000px;}
.ls0_c00163{letter-spacing:319.518000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00163{word-spacing:-18.144000px;}
.ws0_c00163{word-spacing:-18.072000px;}
.ws4_c00163{word-spacing:-18.000000px;}
.ws3_c00163{word-spacing:-17.856000px;}
.ws5_c00163{word-spacing:-17.784000px;}
.ws1_c00163{word-spacing:-17.640000px;}
.wse_c00163{word-spacing:-0.432000px;}
.ws7_c00163{word-spacing:-0.162000px;}
.ws32_c00163{word-spacing:-0.144000px;}
.wsa_c00163{word-spacing:-0.072000px;}
.ws6_c00163{word-spacing:0.000000px;}
.ws28_c00163{word-spacing:0.288000px;}
.ws27_c00163{word-spacing:0.360000px;}
.ws9_c00163{word-spacing:0.576000px;}
.ws12_c00163{word-spacing:0.648000px;}
.ws13_c00163{word-spacing:0.720000px;}
.ws18_c00163{word-spacing:1.008000px;}
.ws17_c00163{word-spacing:1.080000px;}
.wsd_c00163{word-spacing:1.728000px;}
.wsc_c00163{word-spacing:1.800000px;}
.ws26_c00163{word-spacing:2.448000px;}
.ws16_c00163{word-spacing:2.520000px;}
.ws25_c00163{word-spacing:2.808000px;}
.ws2b_c00163{word-spacing:3.816000px;}
.ws1a_c00163{word-spacing:3.888000px;}
.ws1b_c00163{word-spacing:3.960000px;}
.ws1f_c00163{word-spacing:6.480000px;}
.ws1c_c00163{word-spacing:6.768000px;}
.ws1d_c00163{word-spacing:6.840000px;}
.ws24_c00163{word-spacing:7.200000px;}
.ws30_c00163{word-spacing:8.640000px;}
.ws2f_c00163{word-spacing:8.856000px;}
.ws2e_c00163{word-spacing:8.928000px;}
.ws31_c00163{word-spacing:9.000000px;}
.wsf_c00163{word-spacing:11.808000px;}
.ws10_c00163{word-spacing:11.880000px;}
.ws22_c00163{word-spacing:12.960000px;}
.ws23_c00163{word-spacing:13.536000px;}
.ws2c_c00163{word-spacing:13.608000px;}
.ws2d_c00163{word-spacing:13.680000px;}
.ws8_c00163{word-spacing:15.048000px;}
.ws20_c00163{word-spacing:16.488000px;}
.ws21_c00163{word-spacing:16.560000px;}
.ws2a_c00163{word-spacing:19.656000px;}
.ws29_c00163{word-spacing:19.728000px;}
.ws1e_c00163{word-spacing:21.600000px;}
.ws11_c00163{word-spacing:22.248000px;}
.wsb_c00163{word-spacing:25.848000px;}
.ws15_c00163{word-spacing:35.928000px;}
.ws14_c00163{word-spacing:36.288000px;}
.ws19_c00163{word-spacing:37.368000px;}
._0_c00163{margin-left:-1.080000px;}
._1_c00163{width:1.432800px;}
._7_c00163{width:4.320000px;}
._5_c00163{width:6.480000px;}
._3_c00163{width:11.160000px;}
._4_c00163{width:12.168000px;}
._8_c00163{width:13.536000px;}
._2_c00163{width:15.703200px;}
._6_c00163{width:19.872000px;}
.fc0_c00163{color:rgb(0,0,0);}
.fs0_c00163{font-size:54.000000px;}
.fs1_c00163{font-size:72.000000px;}
.y0_c00163{bottom:0.000000px;}
.y25_c00163{bottom:57.240000px;}
.y24_c00163{bottom:147.870000px;}
.y23_c00163{bottom:178.920000px;}
.y22_c00163{bottom:209.970000px;}
.y21_c00163{bottom:241.020000px;}
.y20_c00163{bottom:272.070000px;}
.y1f_c00163{bottom:303.120000px;}
.y1e_c00163{bottom:334.170000px;}
.y1d_c00163{bottom:365.220000px;}
.y1c_c00163{bottom:396.270000px;}
.y1b_c00163{bottom:427.320000px;}
.y1a_c00163{bottom:458.370000px;}
.y19_c00163{bottom:489.420000px;}
.y18_c00163{bottom:520.470000px;}
.y17_c00163{bottom:551.520000px;}
.y16_c00163{bottom:582.570000px;}
.y15_c00163{bottom:613.620000px;}
.y14_c00163{bottom:644.670000px;}
.y13_c00163{bottom:675.720000px;}
.y12_c00163{bottom:706.770000px;}
.y11_c00163{bottom:737.820000px;}
.y10_c00163{bottom:768.870000px;}
.yf_c00163{bottom:799.920000px;}
.ye_c00163{bottom:830.970000px;}
.yd_c00163{bottom:861.930000px;}
.yc_c00163{bottom:892.980000px;}
.yb_c00163{bottom:924.030000px;}
.ya_c00163{bottom:955.080000px;}
.y9_c00163{bottom:986.130000px;}
.y8_c00163{bottom:1017.180000px;}
.y7_c00163{bottom:1048.230000px;}
.y6_c00163{bottom:1079.280000px;}
.y5_c00163{bottom:1110.330000px;}
.y4_c00163{bottom:1131.030000px;}
.y3_c00163{bottom:1150.915500px;}
.y2_c00163{bottom:1166.400000px;}
.y1_c00163{bottom:1197.450000px;}
.h2_c00163{height:52.998047px;}
.h3_c00163{height:70.664062px;}
.h0_c00163{height:1262.880000px;}
.h1_c00163{height:1263.000000px;}
.w0_c00163{width:893.070000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.x2_c00163{left:127.620000px;}
.x1_c00163{left:446.580000px;}
@media print{
.v1_c00163{vertical-align:-55.056000pt;}
.v0_c00163{vertical-align:0.000000pt;}
.ls10_c00163{letter-spacing:-0.512000pt;}
.ls11_c00163{letter-spacing:-0.320000pt;}
.ls14_c00163{letter-spacing:-0.192000pt;}
.ls13_c00163{letter-spacing:-0.128000pt;}
.lsf_c00163{letter-spacing:0.000000pt;}
.ls1_c00163{letter-spacing:0.064000pt;}
.lsd_c00163{letter-spacing:0.128000pt;}
.ls12_c00163{letter-spacing:0.384000pt;}
.ls6_c00163{letter-spacing:0.640000pt;}
.ls4_c00163{letter-spacing:1.280000pt;}
.ls9_c00163{letter-spacing:3.520000pt;}
.lsa_c00163{letter-spacing:6.080000pt;}
.lsb_c00163{letter-spacing:10.560000pt;}
.lse_c00163{letter-spacing:12.160000pt;}
.ls3_c00163{letter-spacing:13.120000pt;}
.ls2_c00163{letter-spacing:13.446400pt;}
.lsc_c00163{letter-spacing:17.600000pt;}
.ls5_c00163{letter-spacing:19.840000pt;}
.ls7_c00163{letter-spacing:32.320000pt;}
.ls8_c00163{letter-spacing:33.280000pt;}
.ls0_c00163{letter-spacing:284.016000pt;}
.ws2_c00163{word-spacing:-16.128000pt;}
.ws0_c00163{word-spacing:-16.064000pt;}
.ws4_c00163{word-spacing:-16.000000pt;}
.ws3_c00163{word-spacing:-15.872000pt;}
.ws5_c00163{word-spacing:-15.808000pt;}
.ws1_c00163{word-spacing:-15.680000pt;}
.wse_c00163{word-spacing:-0.384000pt;}
.ws7_c00163{word-spacing:-0.144000pt;}
.ws32_c00163{word-spacing:-0.128000pt;}
.wsa_c00163{word-spacing:-0.064000pt;}
.ws6_c00163{word-spacing:0.000000pt;}
.ws28_c00163{word-spacing:0.256000pt;}
.ws27_c00163{word-spacing:0.320000pt;}
.ws9_c00163{word-spacing:0.512000pt;}
.ws12_c00163{word-spacing:0.576000pt;}
.ws13_c00163{word-spacing:0.640000pt;}
.ws18_c00163{word-spacing:0.896000pt;}
.ws17_c00163{word-spacing:0.960000pt;}
.wsd_c00163{word-spacing:1.536000pt;}
.wsc_c00163{word-spacing:1.600000pt;}
.ws26_c00163{word-spacing:2.176000pt;}
.ws16_c00163{word-spacing:2.240000pt;}
.ws25_c00163{word-spacing:2.496000pt;}
.ws2b_c00163{word-spacing:3.392000pt;}
.ws1a_c00163{word-spacing:3.456000pt;}
.ws1b_c00163{word-spacing:3.520000pt;}
.ws1f_c00163{word-spacing:5.760000pt;}
.ws1c_c00163{word-spacing:6.016000pt;}
.ws1d_c00163{word-spacing:6.080000pt;}
.ws24_c00163{word-spacing:6.400000pt;}
.ws30_c00163{word-spacing:7.680000pt;}
.ws2f_c00163{word-spacing:7.872000pt;}
.ws2e_c00163{word-spacing:7.936000pt;}
.ws31_c00163{word-spacing:8.000000pt;}
.wsf_c00163{word-spacing:10.496000pt;}
.ws10_c00163{word-spacing:10.560000pt;}
.ws22_c00163{word-spacing:11.520000pt;}
.ws23_c00163{word-spacing:12.032000pt;}
.ws2c_c00163{word-spacing:12.096000pt;}
.ws2d_c00163{word-spacing:12.160000pt;}
.ws8_c00163{word-spacing:13.376000pt;}
.ws20_c00163{word-spacing:14.656000pt;}
.ws21_c00163{word-spacing:14.720000pt;}
.ws2a_c00163{word-spacing:17.472000pt;}
.ws29_c00163{word-spacing:17.536000pt;}
.ws1e_c00163{word-spacing:19.200000pt;}
.ws11_c00163{word-spacing:19.776000pt;}
.wsb_c00163{word-spacing:22.976000pt;}
.ws15_c00163{word-spacing:31.936000pt;}
.ws14_c00163{word-spacing:32.256000pt;}
.ws19_c00163{word-spacing:33.216000pt;}
._0_c00163{margin-left:-0.960000pt;}
._1_c00163{width:1.273600pt;}
._7_c00163{width:3.840000pt;}
._5_c00163{width:5.760000pt;}
._3_c00163{width:9.920000pt;}
._4_c00163{width:10.816000pt;}
._8_c00163{width:12.032000pt;}
._2_c00163{width:13.958400pt;}
._6_c00163{width:17.664000pt;}
.fs0_c00163{font-size:48.000000pt;}
.fs1_c00163{font-size:64.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y25_c00163{bottom:50.880000pt;}
.y24_c00163{bottom:131.440000pt;}
.y23_c00163{bottom:159.040000pt;}
.y22_c00163{bottom:186.640000pt;}
.y21_c00163{bottom:214.240000pt;}
.y20_c00163{bottom:241.840000pt;}
.y1f_c00163{bottom:269.440000pt;}
.y1e_c00163{bottom:297.040000pt;}
.y1d_c00163{bottom:324.640000pt;}
.y1c_c00163{bottom:352.240000pt;}
.y1b_c00163{bottom:379.840000pt;}
.y1a_c00163{bottom:407.440000pt;}
.y19_c00163{bottom:435.040000pt;}
.y18_c00163{bottom:462.640000pt;}
.y17_c00163{bottom:490.240000pt;}
.y16_c00163{bottom:517.840000pt;}
.y15_c00163{bottom:545.440000pt;}
.y14_c00163{bottom:573.040000pt;}
.y13_c00163{bottom:600.640000pt;}
.y12_c00163{bottom:628.240000pt;}
.y11_c00163{bottom:655.840000pt;}
.y10_c00163{bottom:683.440000pt;}
.yf_c00163{bottom:711.040000pt;}
.ye_c00163{bottom:738.640000pt;}
.yd_c00163{bottom:766.160000pt;}
.yc_c00163{bottom:793.760000pt;}
.yb_c00163{bottom:821.360000pt;}
.ya_c00163{bottom:848.960000pt;}
.y9_c00163{bottom:876.560000pt;}
.y8_c00163{bottom:904.160000pt;}
.y7_c00163{bottom:931.760000pt;}
.y6_c00163{bottom:959.360000pt;}
.y5_c00163{bottom:986.960000pt;}
.y4_c00163{bottom:1005.360000pt;}
.y3_c00163{bottom:1023.036000pt;}
.y2_c00163{bottom:1036.800000pt;}
.y1_c00163{bottom:1064.400000pt;}
.h2_c00163{height:47.109375pt;}
.h3_c00163{height:62.812500pt;}
.h0_c00163{height:1122.560000pt;}
.h1_c00163{height:1122.666667pt;}
.w0_c00163{width:793.840000pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.x2_c00163{left:113.440000pt;}
.x1_c00163{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_762ccbb0befe6ad49976b118.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_3623b607d9dd627d0366c005.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;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_c00164;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.432129;font-style:normal;font-weight:normal;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_89135a5f64aedfc4813010e3.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls11_c00164{letter-spacing:-0.288000px;}
.ls10_c00164{letter-spacing:-0.144000px;}
.lsf_c00164{letter-spacing:-0.108000px;}
.lse_c00164{letter-spacing:0.000000px;}
.ls3_c00164{letter-spacing:0.072000px;}
.ls0_c00164{letter-spacing:0.079200px;}
.lsb_c00164{letter-spacing:0.086400px;}
.ls1_c00164{letter-spacing:0.144000px;}
.ls7_c00164{letter-spacing:3.240000px;}
.ls8_c00164{letter-spacing:6.120000px;}
.ls2_c00164{letter-spacing:8.640000px;}
.ls5_c00164{letter-spacing:16.560000px;}
.lsc_c00164{letter-spacing:22.320000px;}
.ls6_c00164{letter-spacing:23.904000px;}
.lsa_c00164{letter-spacing:24.112800px;}
.ls9_c00164{letter-spacing:24.120000px;}
.lsd_c00164{letter-spacing:28.080000px;}
.ls4_c00164{letter-spacing:30.744000px;}
.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;}
}
.ws3_c00164{word-spacing:-72.000000px;}
.ws1_c00164{word-spacing:-18.144000px;}
.ws2_c00164{word-spacing:-18.072000px;}
.ws0_c00164{word-spacing:-18.000000px;}
.ws4_c00164{word-spacing:-17.856000px;}
.ws9_c00164{word-spacing:-0.144000px;}
.wse_c00164{word-spacing:-0.072000px;}
.ws5_c00164{word-spacing:0.000000px;}
.ws7_c00164{word-spacing:0.162000px;}
.ws6_c00164{word-spacing:0.270000px;}
.ws22_c00164{word-spacing:0.288000px;}
.ws13_c00164{word-spacing:0.648000px;}
.ws14_c00164{word-spacing:0.720000px;}
.ws8_c00164{word-spacing:1.800000px;}
.ws11_c00164{word-spacing:2.808000px;}
.ws12_c00164{word-spacing:2.880000px;}
.ws17_c00164{word-spacing:3.168000px;}
.ws16_c00164{word-spacing:3.240000px;}
.ws27_c00164{word-spacing:4.608000px;}
.ws28_c00164{word-spacing:4.680000px;}
.ws18_c00164{word-spacing:6.120000px;}
.ws1c_c00164{word-spacing:7.848000px;}
.ws1d_c00164{word-spacing:7.920000px;}
.wsd_c00164{word-spacing:8.640000px;}
.ws2a_c00164{word-spacing:11.448000px;}
.ws29_c00164{word-spacing:13.320000px;}
.wsb_c00164{word-spacing:14.400000px;}
.wsc_c00164{word-spacing:14.688000px;}
.wsa_c00164{word-spacing:14.760000px;}
.ws1f_c00164{word-spacing:15.048000px;}
.ws1e_c00164{word-spacing:15.480000px;}
.ws10_c00164{word-spacing:16.488000px;}
.wsf_c00164{word-spacing:16.560000px;}
.ws15_c00164{word-spacing:18.360000px;}
.ws21_c00164{word-spacing:21.960000px;}
.ws20_c00164{word-spacing:22.248000px;}
.ws1a_c00164{word-spacing:23.976000px;}
.ws1b_c00164{word-spacing:24.120000px;}
.ws19_c00164{word-spacing:25.920000px;}
.ws25_c00164{word-spacing:27.936000px;}
.ws24_c00164{word-spacing:28.008000px;}
.ws26_c00164{word-spacing:28.080000px;}
.ws23_c00164{word-spacing:38.448000px;}
._1_c00164{margin-left:-1.058400px;}
._0_c00164{width:1.220400px;}
._3_c00164{width:2.808000px;}
._2_c00164{width:16.920000px;}
._4_c00164{width:21.412800px;}
.fc0_c00164{color:rgb(0,0,0);}
.fs0_c00164{font-size:54.000000px;}
.fs1_c00164{font-size:72.000000px;}
.y0_c00164{bottom:0.000000px;}
.y27_c00164{bottom:57.240000px;}
.y26_c00164{bottom:116.820000px;}
.y25_c00164{bottom:147.870000px;}
.y24_c00164{bottom:178.920000px;}
.y23_c00164{bottom:209.970000px;}
.y22_c00164{bottom:241.020000px;}
.y21_c00164{bottom:272.070000px;}
.y20_c00164{bottom:303.120000px;}
.y1f_c00164{bottom:334.170000px;}
.y1e_c00164{bottom:365.220000px;}
.y1d_c00164{bottom:396.270000px;}
.y1c_c00164{bottom:427.320000px;}
.y1b_c00164{bottom:458.370000px;}
.y1a_c00164{bottom:489.420000px;}
.y19_c00164{bottom:520.290000px;}
.y18_c00164{bottom:551.520000px;}
.y17_c00164{bottom:582.570000px;}
.y16_c00164{bottom:613.620000px;}
.y15_c00164{bottom:644.670000px;}
.y14_c00164{bottom:675.720000px;}
.y13_c00164{bottom:706.770000px;}
.y12_c00164{bottom:737.820000px;}
.y11_c00164{bottom:768.870000px;}
.y10_c00164{bottom:799.920000px;}
.yf_c00164{bottom:830.970000px;}
.ye_c00164{bottom:861.930000px;}
.yd_c00164{bottom:892.980000px;}
.yc_c00164{bottom:924.030000px;}
.yb_c00164{bottom:955.080000px;}
.ya_c00164{bottom:986.130000px;}
.y9_c00164{bottom:1017.180000px;}
.y8_c00164{bottom:1048.230000px;}
.y7_c00164{bottom:1079.280000px;}
.y6_c00164{bottom:1110.330000px;}
.y5_c00164{bottom:1131.030000px;}
.y4_c00164{bottom:1150.920000px;}
.y3_c00164{bottom:1166.404500px;}
.y2_c00164{bottom:1181.970000px;}
.y1_c00164{bottom:1197.450000px;}
.h3_c00164{height:52.971680px;}
.h2_c00164{height:52.998047px;}
.h4_c00164{height:70.664062px;}
.h6_c00164{height:72.562500px;}
.h5_c00164{height:75.093750px;}
.h0_c00164{height:1262.880000px;}
.h1_c00164{height:1263.000000px;}
.w0_c00164{width:893.070000px;}
.w1_c00164{width:893.250000px;}
.x0_c00164{left:0.000000px;}
.x3_c00164{left:127.620000px;}
.x4_c00164{left:154.620000px;}
.x5_c00164{left:181.620000px;}
.x6_c00164{left:208.620000px;}
.x7_c00164{left:235.620000px;}
.x2_c00164{left:425.160000px;}
.x1_c00164{left:446.580000px;}
.x8_c00164{left:738.540000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls11_c00164{letter-spacing:-0.256000pt;}
.ls10_c00164{letter-spacing:-0.128000pt;}
.lsf_c00164{letter-spacing:-0.096000pt;}
.lse_c00164{letter-spacing:0.000000pt;}
.ls3_c00164{letter-spacing:0.064000pt;}
.ls0_c00164{letter-spacing:0.070400pt;}
.lsb_c00164{letter-spacing:0.076800pt;}
.ls1_c00164{letter-spacing:0.128000pt;}
.ls7_c00164{letter-spacing:2.880000pt;}
.ls8_c00164{letter-spacing:5.440000pt;}
.ls2_c00164{letter-spacing:7.680000pt;}
.ls5_c00164{letter-spacing:14.720000pt;}
.lsc_c00164{letter-spacing:19.840000pt;}
.ls6_c00164{letter-spacing:21.248000pt;}
.lsa_c00164{letter-spacing:21.433600pt;}
.ls9_c00164{letter-spacing:21.440000pt;}
.lsd_c00164{letter-spacing:24.960000pt;}
.ls4_c00164{letter-spacing:27.328000pt;}
.ws3_c00164{word-spacing:-64.000000pt;}
.ws1_c00164{word-spacing:-16.128000pt;}
.ws2_c00164{word-spacing:-16.064000pt;}
.ws0_c00164{word-spacing:-16.000000pt;}
.ws4_c00164{word-spacing:-15.872000pt;}
.ws9_c00164{word-spacing:-0.128000pt;}
.wse_c00164{word-spacing:-0.064000pt;}
.ws5_c00164{word-spacing:0.000000pt;}
.ws7_c00164{word-spacing:0.144000pt;}
.ws6_c00164{word-spacing:0.240000pt;}
.ws22_c00164{word-spacing:0.256000pt;}
.ws13_c00164{word-spacing:0.576000pt;}
.ws14_c00164{word-spacing:0.640000pt;}
.ws8_c00164{word-spacing:1.600000pt;}
.ws11_c00164{word-spacing:2.496000pt;}
.ws12_c00164{word-spacing:2.560000pt;}
.ws17_c00164{word-spacing:2.816000pt;}
.ws16_c00164{word-spacing:2.880000pt;}
.ws27_c00164{word-spacing:4.096000pt;}
.ws28_c00164{word-spacing:4.160000pt;}
.ws18_c00164{word-spacing:5.440000pt;}
.ws1c_c00164{word-spacing:6.976000pt;}
.ws1d_c00164{word-spacing:7.040000pt;}
.wsd_c00164{word-spacing:7.680000pt;}
.ws2a_c00164{word-spacing:10.176000pt;}
.ws29_c00164{word-spacing:11.840000pt;}
.wsb_c00164{word-spacing:12.800000pt;}
.wsc_c00164{word-spacing:13.056000pt;}
.wsa_c00164{word-spacing:13.120000pt;}
.ws1f_c00164{word-spacing:13.376000pt;}
.ws1e_c00164{word-spacing:13.760000pt;}
.ws10_c00164{word-spacing:14.656000pt;}
.wsf_c00164{word-spacing:14.720000pt;}
.ws15_c00164{word-spacing:16.320000pt;}
.ws21_c00164{word-spacing:19.520000pt;}
.ws20_c00164{word-spacing:19.776000pt;}
.ws1a_c00164{word-spacing:21.312000pt;}
.ws1b_c00164{word-spacing:21.440000pt;}
.ws19_c00164{word-spacing:23.040000pt;}
.ws25_c00164{word-spacing:24.832000pt;}
.ws24_c00164{word-spacing:24.896000pt;}
.ws26_c00164{word-spacing:24.960000pt;}
.ws23_c00164{word-spacing:34.176000pt;}
._1_c00164{margin-left:-0.940800pt;}
._0_c00164{width:1.084800pt;}
._3_c00164{width:2.496000pt;}
._2_c00164{width:15.040000pt;}
._4_c00164{width:19.033600pt;}
.fs0_c00164{font-size:48.000000pt;}
.fs1_c00164{font-size:64.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y27_c00164{bottom:50.880000pt;}
.y26_c00164{bottom:103.840000pt;}
.y25_c00164{bottom:131.440000pt;}
.y24_c00164{bottom:159.040000pt;}
.y23_c00164{bottom:186.640000pt;}
.y22_c00164{bottom:214.240000pt;}
.y21_c00164{bottom:241.840000pt;}
.y20_c00164{bottom:269.440000pt;}
.y1f_c00164{bottom:297.040000pt;}
.y1e_c00164{bottom:324.640000pt;}
.y1d_c00164{bottom:352.240000pt;}
.y1c_c00164{bottom:379.840000pt;}
.y1b_c00164{bottom:407.440000pt;}
.y1a_c00164{bottom:435.040000pt;}
.y19_c00164{bottom:462.480000pt;}
.y18_c00164{bottom:490.240000pt;}
.y17_c00164{bottom:517.840000pt;}
.y16_c00164{bottom:545.440000pt;}
.y15_c00164{bottom:573.040000pt;}
.y14_c00164{bottom:600.640000pt;}
.y13_c00164{bottom:628.240000pt;}
.y12_c00164{bottom:655.840000pt;}
.y11_c00164{bottom:683.440000pt;}
.y10_c00164{bottom:711.040000pt;}
.yf_c00164{bottom:738.640000pt;}
.ye_c00164{bottom:766.160000pt;}
.yd_c00164{bottom:793.760000pt;}
.yc_c00164{bottom:821.360000pt;}
.yb_c00164{bottom:848.960000pt;}
.ya_c00164{bottom:876.560000pt;}
.y9_c00164{bottom:904.160000pt;}
.y8_c00164{bottom:931.760000pt;}
.y7_c00164{bottom:959.360000pt;}
.y6_c00164{bottom:986.960000pt;}
.y5_c00164{bottom:1005.360000pt;}
.y4_c00164{bottom:1023.040000pt;}
.y3_c00164{bottom:1036.804000pt;}
.y2_c00164{bottom:1050.640000pt;}
.y1_c00164{bottom:1064.400000pt;}
.h3_c00164{height:47.085938pt;}
.h2_c00164{height:47.109375pt;}
.h4_c00164{height:62.812500pt;}
.h6_c00164{height:64.500000pt;}
.h5_c00164{height:66.750000pt;}
.h0_c00164{height:1122.560000pt;}
.h1_c00164{height:1122.666667pt;}
.w0_c00164{width:793.840000pt;}
.w1_c00164{width:794.000000pt;}
.x0_c00164{left:0.000000pt;}
.x3_c00164{left:113.440000pt;}
.x4_c00164{left:137.440000pt;}
.x5_c00164{left:161.440000pt;}
.x6_c00164{left:185.440000pt;}
.x7_c00164{left:209.440000pt;}
.x2_c00164{left:377.920000pt;}
.x1_c00164{left:396.960000pt;}
.x8_c00164{left:656.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_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_d39cde44a1d7c74b7c8f764a.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.284180;font-style: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);}
.v1_c00165{vertical-align:-61.938000px;}
.v0_c00165{vertical-align:0.000000px;}
.lse_c00165{letter-spacing:-0.360000px;}
.ls11_c00165{letter-spacing:-0.288000px;}
.lsf_c00165{letter-spacing:-0.216000px;}
.ls12_c00165{letter-spacing:-0.144000px;}
.ls10_c00165{letter-spacing:-0.072000px;}
.lsd_c00165{letter-spacing:0.000000px;}
.ls1_c00165{letter-spacing:0.072000px;}
.ls6_c00165{letter-spacing:0.144000px;}
.ls5_c00165{letter-spacing:0.360000px;}
.lsa_c00165{letter-spacing:0.720000px;}
.lsc_c00165{letter-spacing:1.468800px;}
.ls7_c00165{letter-spacing:2.880000px;}
.ls3_c00165{letter-spacing:9.007200px;}
.lsb_c00165{letter-spacing:9.720000px;}
.ls9_c00165{letter-spacing:12.240000px;}
.ls8_c00165{letter-spacing:12.600000px;}
.ls2_c00165{letter-spacing:14.760000px;}
.ls4_c00165{letter-spacing:22.680000px;}
.ls0_c00165{letter-spacing:319.518000px;}
.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;}
}
.ws4_c00165{word-spacing:-18.144000px;}
.ws1_c00165{word-spacing:-18.072000px;}
.ws0_c00165{word-spacing:-18.000000px;}
.ws2_c00165{word-spacing:-17.928000px;}
.ws3_c00165{word-spacing:-17.856000px;}
.wsc_c00165{word-spacing:-0.360000px;}
.ws6_c00165{word-spacing:-0.162000px;}
.ws8_c00165{word-spacing:-0.072000px;}
.ws5_c00165{word-spacing:0.000000px;}
.wsf_c00165{word-spacing:0.216000px;}
.ws12_c00165{word-spacing:0.288000px;}
.wsa_c00165{word-spacing:0.360000px;}
.ws1c_c00165{word-spacing:0.576000px;}
.ws2d_c00165{word-spacing:0.648000px;}
.ws1b_c00165{word-spacing:0.720000px;}
.ws1d_c00165{word-spacing:0.936000px;}
.ws1f_c00165{word-spacing:1.008000px;}
.ws1e_c00165{word-spacing:1.080000px;}
.ws2f_c00165{word-spacing:1.368000px;}
.ws30_c00165{word-spacing:1.440000px;}
.ws14_c00165{word-spacing:2.736000px;}
.ws15_c00165{word-spacing:2.808000px;}
.ws13_c00165{word-spacing:2.880000px;}
.ws20_c00165{word-spacing:3.240000px;}
.ws21_c00165{word-spacing:3.600000px;}
.ws29_c00165{word-spacing:4.680000px;}
.ws2a_c00165{word-spacing:6.768000px;}
.ws1a_c00165{word-spacing:7.488000px;}
.ws19_c00165{word-spacing:7.560000px;}
.wsd_c00165{word-spacing:8.928000px;}
.wse_c00165{word-spacing:9.000000px;}
.ws16_c00165{word-spacing:9.360000px;}
.ws2c_c00165{word-spacing:9.648000px;}
.ws2b_c00165{word-spacing:9.720000px;}
.ws2e_c00165{word-spacing:10.368000px;}
.ws18_c00165{word-spacing:12.528000px;}
.ws17_c00165{word-spacing:12.600000px;}
.ws23_c00165{word-spacing:13.608000px;}
.ws22_c00165{word-spacing:13.680000px;}
.ws28_c00165{word-spacing:14.040000px;}
.wsb_c00165{word-spacing:15.048000px;}
.ws25_c00165{word-spacing:16.488000px;}
.ws9_c00165{word-spacing:17.640000px;}
.ws7_c00165{word-spacing:18.000000px;}
.ws10_c00165{word-spacing:22.608000px;}
.ws11_c00165{word-spacing:22.680000px;}
.ws26_c00165{word-spacing:23.688000px;}
.ws27_c00165{word-spacing:23.760000px;}
.ws24_c00165{word-spacing:28.368000px;}
._0_c00165{margin-left:-1.008000px;}
._2_c00165{width:1.008000px;}
._5_c00165{width:7.920000px;}
._3_c00165{width:9.216000px;}
._6_c00165{width:11.088000px;}
._1_c00165{width:15.192000px;}
._4_c00165{width:22.456800px;}
.fc0_c00165{color:rgb(0,0,0);}
.fs0_c00165{font-size:54.000000px;}
.fs1_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y26_c00165{bottom:57.240000px;}
.y25_c00165{bottom:116.820000px;}
.y24_c00165{bottom:147.870000px;}
.y23_c00165{bottom:178.920000px;}
.y22_c00165{bottom:209.970000px;}
.y21_c00165{bottom:241.020000px;}
.y20_c00165{bottom:272.070000px;}
.y1f_c00165{bottom:303.120000px;}
.y1e_c00165{bottom:334.170000px;}
.y1d_c00165{bottom:365.220000px;}
.y1c_c00165{bottom:396.270000px;}
.y1b_c00165{bottom:427.320000px;}
.y1a_c00165{bottom:458.370000px;}
.y19_c00165{bottom:489.420000px;}
.y18_c00165{bottom:520.470000px;}
.y17_c00165{bottom:551.520000px;}
.y16_c00165{bottom:582.570000px;}
.y15_c00165{bottom:613.620000px;}
.y14_c00165{bottom:644.670000px;}
.y13_c00165{bottom:675.720000px;}
.y12_c00165{bottom:706.770000px;}
.y11_c00165{bottom:737.820000px;}
.y10_c00165{bottom:768.870000px;}
.yf_c00165{bottom:799.920000px;}
.ye_c00165{bottom:830.970000px;}
.yd_c00165{bottom:861.930000px;}
.yc_c00165{bottom:892.980000px;}
.yb_c00165{bottom:924.030000px;}
.ya_c00165{bottom:955.080000px;}
.y9_c00165{bottom:986.130000px;}
.y8_c00165{bottom:1017.180000px;}
.y7_c00165{bottom:1048.230000px;}
.y6_c00165{bottom:1079.280000px;}
.y5_c00165{bottom:1110.330000px;}
.y4_c00165{bottom:1131.030000px;}
.y3_c00165{bottom:1150.915500px;}
.y2_c00165{bottom:1166.400000px;}
.y1_c00165{bottom:1197.450000px;}
.h2_c00165{height:52.998047px;}
.h3_c00165{height:70.664062px;}
.h0_c00165{height:1262.880000px;}
.h1_c00165{height:1263.000000px;}
.w0_c00165{width:893.070000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x2_c00165{left:127.620000px;}
.x1_c00165{left:446.580000px;}
@media print{
.v1_c00165{vertical-align:-55.056000pt;}
.v0_c00165{vertical-align:0.000000pt;}
.lse_c00165{letter-spacing:-0.320000pt;}
.ls11_c00165{letter-spacing:-0.256000pt;}
.lsf_c00165{letter-spacing:-0.192000pt;}
.ls12_c00165{letter-spacing:-0.128000pt;}
.ls10_c00165{letter-spacing:-0.064000pt;}
.lsd_c00165{letter-spacing:0.000000pt;}
.ls1_c00165{letter-spacing:0.064000pt;}
.ls6_c00165{letter-spacing:0.128000pt;}
.ls5_c00165{letter-spacing:0.320000pt;}
.lsa_c00165{letter-spacing:0.640000pt;}
.lsc_c00165{letter-spacing:1.305600pt;}
.ls7_c00165{letter-spacing:2.560000pt;}
.ls3_c00165{letter-spacing:8.006400pt;}
.lsb_c00165{letter-spacing:8.640000pt;}
.ls9_c00165{letter-spacing:10.880000pt;}
.ls8_c00165{letter-spacing:11.200000pt;}
.ls2_c00165{letter-spacing:13.120000pt;}
.ls4_c00165{letter-spacing:20.160000pt;}
.ls0_c00165{letter-spacing:284.016000pt;}
.ws4_c00165{word-spacing:-16.128000pt;}
.ws1_c00165{word-spacing:-16.064000pt;}
.ws0_c00165{word-spacing:-16.000000pt;}
.ws2_c00165{word-spacing:-15.936000pt;}
.ws3_c00165{word-spacing:-15.872000pt;}
.wsc_c00165{word-spacing:-0.320000pt;}
.ws6_c00165{word-spacing:-0.144000pt;}
.ws8_c00165{word-spacing:-0.064000pt;}
.ws5_c00165{word-spacing:0.000000pt;}
.wsf_c00165{word-spacing:0.192000pt;}
.ws12_c00165{word-spacing:0.256000pt;}
.wsa_c00165{word-spacing:0.320000pt;}
.ws1c_c00165{word-spacing:0.512000pt;}
.ws2d_c00165{word-spacing:0.576000pt;}
.ws1b_c00165{word-spacing:0.640000pt;}
.ws1d_c00165{word-spacing:0.832000pt;}
.ws1f_c00165{word-spacing:0.896000pt;}
.ws1e_c00165{word-spacing:0.960000pt;}
.ws2f_c00165{word-spacing:1.216000pt;}
.ws30_c00165{word-spacing:1.280000pt;}
.ws14_c00165{word-spacing:2.432000pt;}
.ws15_c00165{word-spacing:2.496000pt;}
.ws13_c00165{word-spacing:2.560000pt;}
.ws20_c00165{word-spacing:2.880000pt;}
.ws21_c00165{word-spacing:3.200000pt;}
.ws29_c00165{word-spacing:4.160000pt;}
.ws2a_c00165{word-spacing:6.016000pt;}
.ws1a_c00165{word-spacing:6.656000pt;}
.ws19_c00165{word-spacing:6.720000pt;}
.wsd_c00165{word-spacing:7.936000pt;}
.wse_c00165{word-spacing:8.000000pt;}
.ws16_c00165{word-spacing:8.320000pt;}
.ws2c_c00165{word-spacing:8.576000pt;}
.ws2b_c00165{word-spacing:8.640000pt;}
.ws2e_c00165{word-spacing:9.216000pt;}
.ws18_c00165{word-spacing:11.136000pt;}
.ws17_c00165{word-spacing:11.200000pt;}
.ws23_c00165{word-spacing:12.096000pt;}
.ws22_c00165{word-spacing:12.160000pt;}
.ws28_c00165{word-spacing:12.480000pt;}
.wsb_c00165{word-spacing:13.376000pt;}
.ws25_c00165{word-spacing:14.656000pt;}
.ws9_c00165{word-spacing:15.680000pt;}
.ws7_c00165{word-spacing:16.000000pt;}
.ws10_c00165{word-spacing:20.096000pt;}
.ws11_c00165{word-spacing:20.160000pt;}
.ws26_c00165{word-spacing:21.056000pt;}
.ws27_c00165{word-spacing:21.120000pt;}
.ws24_c00165{word-spacing:25.216000pt;}
._0_c00165{margin-left:-0.896000pt;}
._2_c00165{width:0.896000pt;}
._5_c00165{width:7.040000pt;}
._3_c00165{width:8.192000pt;}
._6_c00165{width:9.856000pt;}
._1_c00165{width:13.504000pt;}
._4_c00165{width:19.961600pt;}
.fs0_c00165{font-size:48.000000pt;}
.fs1_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y26_c00165{bottom:50.880000pt;}
.y25_c00165{bottom:103.840000pt;}
.y24_c00165{bottom:131.440000pt;}
.y23_c00165{bottom:159.040000pt;}
.y22_c00165{bottom:186.640000pt;}
.y21_c00165{bottom:214.240000pt;}
.y20_c00165{bottom:241.840000pt;}
.y1f_c00165{bottom:269.440000pt;}
.y1e_c00165{bottom:297.040000pt;}
.y1d_c00165{bottom:324.640000pt;}
.y1c_c00165{bottom:352.240000pt;}
.y1b_c00165{bottom:379.840000pt;}
.y1a_c00165{bottom:407.440000pt;}
.y19_c00165{bottom:435.040000pt;}
.y18_c00165{bottom:462.640000pt;}
.y17_c00165{bottom:490.240000pt;}
.y16_c00165{bottom:517.840000pt;}
.y15_c00165{bottom:545.440000pt;}
.y14_c00165{bottom:573.040000pt;}
.y13_c00165{bottom:600.640000pt;}
.y12_c00165{bottom:628.240000pt;}
.y11_c00165{bottom:655.840000pt;}
.y10_c00165{bottom:683.440000pt;}
.yf_c00165{bottom:711.040000pt;}
.ye_c00165{bottom:738.640000pt;}
.yd_c00165{bottom:766.160000pt;}
.yc_c00165{bottom:793.760000pt;}
.yb_c00165{bottom:821.360000pt;}
.ya_c00165{bottom:848.960000pt;}
.y9_c00165{bottom:876.560000pt;}
.y8_c00165{bottom:904.160000pt;}
.y7_c00165{bottom:931.760000pt;}
.y6_c00165{bottom:959.360000pt;}
.y5_c00165{bottom:986.960000pt;}
.y4_c00165{bottom:1005.360000pt;}
.y3_c00165{bottom:1023.036000pt;}
.y2_c00165{bottom:1036.800000pt;}
.y1_c00165{bottom:1064.400000pt;}
.h2_c00165{height:47.109375pt;}
.h3_c00165{height:62.812500pt;}
.h0_c00165{height:1122.560000pt;}
.h1_c00165{height:1122.666667pt;}
.w0_c00165{width:793.840000pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x2_c00165{left:113.440000pt;}
.x1_c00165{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3fa9f3f065368f3d0444d091.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00166{letter-spacing:-0.288000px;}
.lsd_c00166{letter-spacing:-0.216000px;}
.lsb_c00166{letter-spacing:-0.108000px;}
.lsa_c00166{letter-spacing:0.000000px;}
.ls1_c00166{letter-spacing:0.072000px;}
.ls0_c00166{letter-spacing:0.079200px;}
.ls2_c00166{letter-spacing:0.144000px;}
.ls8_c00166{letter-spacing:2.527200px;}
.ls6_c00166{letter-spacing:7.207200px;}
.ls9_c00166{letter-spacing:7.920000px;}
.ls7_c00166{letter-spacing:9.720000px;}
.ls4_c00166{letter-spacing:11.520000px;}
.ls3_c00166{letter-spacing:11.880000px;}
.ls5_c00166{letter-spacing:15.120000px;}
.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;}
}
.ws3_c00166{word-spacing:-18.144000px;}
.ws1_c00166{word-spacing:-18.072000px;}
.ws0_c00166{word-spacing:-18.000000px;}
.ws4_c00166{word-spacing:-17.784000px;}
.ws2_c00166{word-spacing:-17.712000px;}
.wsb_c00166{word-spacing:-0.072000px;}
.ws5_c00166{word-spacing:0.000000px;}
.ws7_c00166{word-spacing:0.162000px;}
.ws32_c00166{word-spacing:0.216000px;}
.ws6_c00166{word-spacing:0.270000px;}
.ws33_c00166{word-spacing:0.288000px;}
.ws31_c00166{word-spacing:0.360000px;}
.ws18_c00166{word-spacing:0.648000px;}
.ws29_c00166{word-spacing:1.080000px;}
.wse_c00166{word-spacing:1.656000px;}
.wsd_c00166{word-spacing:1.728000px;}
.wsc_c00166{word-spacing:1.800000px;}
.ws2c_c00166{word-spacing:2.448000px;}
.ws17_c00166{word-spacing:2.520000px;}
.ws36_c00166{word-spacing:3.528000px;}
.ws10_c00166{word-spacing:3.600000px;}
.wsf_c00166{word-spacing:3.888000px;}
.ws8_c00166{word-spacing:3.960000px;}
.ws1b_c00166{word-spacing:4.176000px;}
.ws1c_c00166{word-spacing:4.320000px;}
.ws2d_c00166{word-spacing:4.968000px;}
.ws2e_c00166{word-spacing:5.040000px;}
.ws16_c00166{word-spacing:6.768000px;}
.ws15_c00166{word-spacing:6.840000px;}
.ws20_c00166{word-spacing:7.128000px;}
.ws1f_c00166{word-spacing:7.200000px;}
.ws9_c00166{word-spacing:7.488000px;}
.wsa_c00166{word-spacing:7.560000px;}
.ws2f_c00166{word-spacing:7.848000px;}
.ws30_c00166{word-spacing:7.920000px;}
.ws1a_c00166{word-spacing:9.288000px;}
.ws19_c00166{word-spacing:9.360000px;}
.ws24_c00166{word-spacing:9.648000px;}
.ws21_c00166{word-spacing:9.720000px;}
.ws22_c00166{word-spacing:10.008000px;}
.ws23_c00166{word-spacing:10.080000px;}
.ws2a_c00166{word-spacing:10.368000px;}
.ws2b_c00166{word-spacing:10.440000px;}
.ws13_c00166{word-spacing:11.520000px;}
.ws11_c00166{word-spacing:11.808000px;}
.ws12_c00166{word-spacing:11.880000px;}
.ws1e_c00166{word-spacing:15.048000px;}
.ws1d_c00166{word-spacing:15.120000px;}
.ws14_c00166{word-spacing:16.200000px;}
.ws28_c00166{word-spacing:17.208000px;}
.ws27_c00166{word-spacing:17.280000px;}
.ws25_c00166{word-spacing:23.256000px;}
.ws26_c00166{word-spacing:23.328000px;}
.ws35_c00166{word-spacing:27.360000px;}
.ws34_c00166{word-spacing:27.720000px;}
._1_c00166{margin-left:-1.058400px;}
._0_c00166{width:1.220400px;}
._4_c00166{width:2.451600px;}
._2_c00166{width:4.320000px;}
._3_c00166{width:6.696000px;}
._9_c00166{width:7.848000px;}
._8_c00166{width:10.296000px;}
._7_c00166{width:16.754400px;}
._5_c00166{width:22.730400px;}
._6_c00166{width:23.904000px;}
.fc0_c00166{color:rgb(0,0,0);}
.fs0_c00166{font-size:54.000000px;}
.fs1_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y26_c00166{bottom:57.240000px;}
.y25_c00166{bottom:147.870000px;}
.y24_c00166{bottom:178.920000px;}
.y23_c00166{bottom:209.970000px;}
.y22_c00166{bottom:241.020000px;}
.y21_c00166{bottom:272.070000px;}
.y20_c00166{bottom:303.120000px;}
.y1f_c00166{bottom:334.170000px;}
.y1e_c00166{bottom:365.220000px;}
.y1d_c00166{bottom:396.270000px;}
.y1c_c00166{bottom:427.320000px;}
.y1b_c00166{bottom:458.370000px;}
.y1a_c00166{bottom:489.420000px;}
.y19_c00166{bottom:520.470000px;}
.y18_c00166{bottom:551.520000px;}
.y17_c00166{bottom:582.570000px;}
.y16_c00166{bottom:613.620000px;}
.y15_c00166{bottom:644.670000px;}
.y14_c00166{bottom:675.720000px;}
.y13_c00166{bottom:706.770000px;}
.y12_c00166{bottom:737.820000px;}
.y11_c00166{bottom:768.870000px;}
.y10_c00166{bottom:799.920000px;}
.yf_c00166{bottom:830.970000px;}
.ye_c00166{bottom:861.930000px;}
.yd_c00166{bottom:892.980000px;}
.yc_c00166{bottom:924.030000px;}
.yb_c00166{bottom:955.080000px;}
.ya_c00166{bottom:986.130000px;}
.y9_c00166{bottom:1017.180000px;}
.y8_c00166{bottom:1048.230000px;}
.y7_c00166{bottom:1079.280000px;}
.y6_c00166{bottom:1110.330000px;}
.y5_c00166{bottom:1131.030000px;}
.y4_c00166{bottom:1150.920000px;}
.y3_c00166{bottom:1166.404500px;}
.y2_c00166{bottom:1181.970000px;}
.y1_c00166{bottom:1197.450000px;}
.h3_c00166{height:52.971680px;}
.h2_c00166{height:52.998047px;}
.h4_c00166{height:70.664062px;}
.h0_c00166{height:1262.880000px;}
.h1_c00166{height:1263.000000px;}
.w0_c00166{width:893.070000px;}
.w1_c00166{width:893.250000px;}
.x0_c00166{left:0.000000px;}
.x3_c00166{left:127.620000px;}
.x2_c00166{left:425.160000px;}
.x1_c00166{left:446.580000px;}
.x4_c00166{left:738.540000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.lsc_c00166{letter-spacing:-0.256000pt;}
.lsd_c00166{letter-spacing:-0.192000pt;}
.lsb_c00166{letter-spacing:-0.096000pt;}
.lsa_c00166{letter-spacing:0.000000pt;}
.ls1_c00166{letter-spacing:0.064000pt;}
.ls0_c00166{letter-spacing:0.070400pt;}
.ls2_c00166{letter-spacing:0.128000pt;}
.ls8_c00166{letter-spacing:2.246400pt;}
.ls6_c00166{letter-spacing:6.406400pt;}
.ls9_c00166{letter-spacing:7.040000pt;}
.ls7_c00166{letter-spacing:8.640000pt;}
.ls4_c00166{letter-spacing:10.240000pt;}
.ls3_c00166{letter-spacing:10.560000pt;}
.ls5_c00166{letter-spacing:13.440000pt;}
.ws3_c00166{word-spacing:-16.128000pt;}
.ws1_c00166{word-spacing:-16.064000pt;}
.ws0_c00166{word-spacing:-16.000000pt;}
.ws4_c00166{word-spacing:-15.808000pt;}
.ws2_c00166{word-spacing:-15.744000pt;}
.wsb_c00166{word-spacing:-0.064000pt;}
.ws5_c00166{word-spacing:0.000000pt;}
.ws7_c00166{word-spacing:0.144000pt;}
.ws32_c00166{word-spacing:0.192000pt;}
.ws6_c00166{word-spacing:0.240000pt;}
.ws33_c00166{word-spacing:0.256000pt;}
.ws31_c00166{word-spacing:0.320000pt;}
.ws18_c00166{word-spacing:0.576000pt;}
.ws29_c00166{word-spacing:0.960000pt;}
.wse_c00166{word-spacing:1.472000pt;}
.wsd_c00166{word-spacing:1.536000pt;}
.wsc_c00166{word-spacing:1.600000pt;}
.ws2c_c00166{word-spacing:2.176000pt;}
.ws17_c00166{word-spacing:2.240000pt;}
.ws36_c00166{word-spacing:3.136000pt;}
.ws10_c00166{word-spacing:3.200000pt;}
.wsf_c00166{word-spacing:3.456000pt;}
.ws8_c00166{word-spacing:3.520000pt;}
.ws1b_c00166{word-spacing:3.712000pt;}
.ws1c_c00166{word-spacing:3.840000pt;}
.ws2d_c00166{word-spacing:4.416000pt;}
.ws2e_c00166{word-spacing:4.480000pt;}
.ws16_c00166{word-spacing:6.016000pt;}
.ws15_c00166{word-spacing:6.080000pt;}
.ws20_c00166{word-spacing:6.336000pt;}
.ws1f_c00166{word-spacing:6.400000pt;}
.ws9_c00166{word-spacing:6.656000pt;}
.wsa_c00166{word-spacing:6.720000pt;}
.ws2f_c00166{word-spacing:6.976000pt;}
.ws30_c00166{word-spacing:7.040000pt;}
.ws1a_c00166{word-spacing:8.256000pt;}
.ws19_c00166{word-spacing:8.320000pt;}
.ws24_c00166{word-spacing:8.576000pt;}
.ws21_c00166{word-spacing:8.640000pt;}
.ws22_c00166{word-spacing:8.896000pt;}
.ws23_c00166{word-spacing:8.960000pt;}
.ws2a_c00166{word-spacing:9.216000pt;}
.ws2b_c00166{word-spacing:9.280000pt;}
.ws13_c00166{word-spacing:10.240000pt;}
.ws11_c00166{word-spacing:10.496000pt;}
.ws12_c00166{word-spacing:10.560000pt;}
.ws1e_c00166{word-spacing:13.376000pt;}
.ws1d_c00166{word-spacing:13.440000pt;}
.ws14_c00166{word-spacing:14.400000pt;}
.ws28_c00166{word-spacing:15.296000pt;}
.ws27_c00166{word-spacing:15.360000pt;}
.ws25_c00166{word-spacing:20.672000pt;}
.ws26_c00166{word-spacing:20.736000pt;}
.ws35_c00166{word-spacing:24.320000pt;}
.ws34_c00166{word-spacing:24.640000pt;}
._1_c00166{margin-left:-0.940800pt;}
._0_c00166{width:1.084800pt;}
._4_c00166{width:2.179200pt;}
._2_c00166{width:3.840000pt;}
._3_c00166{width:5.952000pt;}
._9_c00166{width:6.976000pt;}
._8_c00166{width:9.152000pt;}
._7_c00166{width:14.892800pt;}
._5_c00166{width:20.204800pt;}
._6_c00166{width:21.248000pt;}
.fs0_c00166{font-size:48.000000pt;}
.fs1_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y26_c00166{bottom:50.880000pt;}
.y25_c00166{bottom:131.440000pt;}
.y24_c00166{bottom:159.040000pt;}
.y23_c00166{bottom:186.640000pt;}
.y22_c00166{bottom:214.240000pt;}
.y21_c00166{bottom:241.840000pt;}
.y20_c00166{bottom:269.440000pt;}
.y1f_c00166{bottom:297.040000pt;}
.y1e_c00166{bottom:324.640000pt;}
.y1d_c00166{bottom:352.240000pt;}
.y1c_c00166{bottom:379.840000pt;}
.y1b_c00166{bottom:407.440000pt;}
.y1a_c00166{bottom:435.040000pt;}
.y19_c00166{bottom:462.640000pt;}
.y18_c00166{bottom:490.240000pt;}
.y17_c00166{bottom:517.840000pt;}
.y16_c00166{bottom:545.440000pt;}
.y15_c00166{bottom:573.040000pt;}
.y14_c00166{bottom:600.640000pt;}
.y13_c00166{bottom:628.240000pt;}
.y12_c00166{bottom:655.840000pt;}
.y11_c00166{bottom:683.440000pt;}
.y10_c00166{bottom:711.040000pt;}
.yf_c00166{bottom:738.640000pt;}
.ye_c00166{bottom:766.160000pt;}
.yd_c00166{bottom:793.760000pt;}
.yc_c00166{bottom:821.360000pt;}
.yb_c00166{bottom:848.960000pt;}
.ya_c00166{bottom:876.560000pt;}
.y9_c00166{bottom:904.160000pt;}
.y8_c00166{bottom:931.760000pt;}
.y7_c00166{bottom:959.360000pt;}
.y6_c00166{bottom:986.960000pt;}
.y5_c00166{bottom:1005.360000pt;}
.y4_c00166{bottom:1023.040000pt;}
.y3_c00166{bottom:1036.804000pt;}
.y2_c00166{bottom:1050.640000pt;}
.y1_c00166{bottom:1064.400000pt;}
.h3_c00166{height:47.085938pt;}
.h2_c00166{height:47.109375pt;}
.h4_c00166{height:62.812500pt;}
.h0_c00166{height:1122.560000pt;}
.h1_c00166{height:1122.666667pt;}
.w0_c00166{width:793.840000pt;}
.w1_c00166{width:794.000000pt;}
.x0_c00166{left:0.000000pt;}
.x3_c00166{left:113.440000pt;}
.x2_c00166{left:377.920000pt;}
.x1_c00166{left:396.960000pt;}
.x4_c00166{left:656.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_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_cff2a702dbdb8e4e0079db96.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.284180;font-style: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);}
.v1_c00167{vertical-align:-61.938000px;}
.v0_c00167{vertical-align:0.000000px;}
.lsa_c00167{letter-spacing:-0.360000px;}
.ls9_c00167{letter-spacing:0.000000px;}
.ls6_c00167{letter-spacing:0.072000px;}
.ls5_c00167{letter-spacing:0.144000px;}
.ls2_c00167{letter-spacing:1.440000px;}
.ls3_c00167{letter-spacing:3.600000px;}
.ls1_c00167{letter-spacing:12.600000px;}
.ls7_c00167{letter-spacing:14.760000px;}
.ls8_c00167{letter-spacing:14.767200px;}
.ls4_c00167{letter-spacing:20.520000px;}
.ls0_c00167{letter-spacing:319.518000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:-18.072000px;}
.ws1_c00167{word-spacing:-18.000000px;}
.ws2_c00167{word-spacing:-17.640000px;}
.ws16_c00167{word-spacing:-0.432000px;}
.ws4_c00167{word-spacing:-0.162000px;}
.ws17_c00167{word-spacing:-0.144000px;}
.wse_c00167{word-spacing:-0.072000px;}
.ws3_c00167{word-spacing:0.000000px;}
.ws15_c00167{word-spacing:1.008000px;}
.ws14_c00167{word-spacing:1.080000px;}
.ws8_c00167{word-spacing:1.368000px;}
.ws22_c00167{word-spacing:2.808000px;}
.ws23_c00167{word-spacing:2.880000px;}
.ws25_c00167{word-spacing:3.096000px;}
.ws24_c00167{word-spacing:3.240000px;}
.ws9_c00167{word-spacing:3.528000px;}
.wsa_c00167{word-spacing:3.600000px;}
.ws1e_c00167{word-spacing:4.608000px;}
.ws1d_c00167{word-spacing:4.680000px;}
.ws20_c00167{word-spacing:6.840000px;}
.ws13_c00167{word-spacing:7.848000px;}
.ws11_c00167{word-spacing:8.208000px;}
.ws12_c00167{word-spacing:8.280000px;}
.ws29_c00167{word-spacing:9.360000px;}
.wsf_c00167{word-spacing:10.368000px;}
.ws10_c00167{word-spacing:10.440000px;}
.wsd_c00167{word-spacing:11.808000px;}
.ws6_c00167{word-spacing:12.168000px;}
.ws7_c00167{word-spacing:12.600000px;}
.ws1f_c00167{word-spacing:14.688000px;}
.ws1b_c00167{word-spacing:14.760000px;}
.ws19_c00167{word-spacing:15.048000px;}
.ws1a_c00167{word-spacing:15.480000px;}
.ws5_c00167{word-spacing:18.648000px;}
.ws1c_c00167{word-spacing:19.080000px;}
.wsb_c00167{word-spacing:20.448000px;}
.wsc_c00167{word-spacing:20.520000px;}
.ws26_c00167{word-spacing:21.168000px;}
.ws21_c00167{word-spacing:28.296000px;}
.ws18_c00167{word-spacing:28.440000px;}
.ws27_c00167{word-spacing:32.688000px;}
.ws28_c00167{word-spacing:40.680000px;}
._0_c00167{margin-left:-1.310400px;}
._5_c00167{width:1.080000px;}
._6_c00167{width:2.894400px;}
._2_c00167{width:8.568000px;}
._1_c00167{width:10.296000px;}
._4_c00167{width:15.436800px;}
._3_c00167{width:28.368000px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs0_c00167{font-size:54.000000px;}
.fs1_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y25_c00167{bottom:57.240000px;}
.y24_c00167{bottom:147.870000px;}
.y23_c00167{bottom:178.920000px;}
.y22_c00167{bottom:209.970000px;}
.y21_c00167{bottom:241.020000px;}
.y20_c00167{bottom:272.070000px;}
.y1f_c00167{bottom:303.120000px;}
.y1e_c00167{bottom:334.170000px;}
.y1d_c00167{bottom:365.220000px;}
.y1c_c00167{bottom:396.270000px;}
.y1b_c00167{bottom:427.320000px;}
.y1a_c00167{bottom:458.370000px;}
.y19_c00167{bottom:489.420000px;}
.y18_c00167{bottom:520.470000px;}
.y17_c00167{bottom:551.520000px;}
.y16_c00167{bottom:582.570000px;}
.y15_c00167{bottom:613.620000px;}
.y14_c00167{bottom:644.670000px;}
.y13_c00167{bottom:675.720000px;}
.y12_c00167{bottom:706.770000px;}
.y11_c00167{bottom:737.820000px;}
.y10_c00167{bottom:768.870000px;}
.yf_c00167{bottom:799.920000px;}
.ye_c00167{bottom:830.970000px;}
.yd_c00167{bottom:861.930000px;}
.yc_c00167{bottom:892.980000px;}
.yb_c00167{bottom:924.030000px;}
.ya_c00167{bottom:955.080000px;}
.y9_c00167{bottom:986.130000px;}
.y8_c00167{bottom:1017.180000px;}
.y7_c00167{bottom:1048.230000px;}
.y6_c00167{bottom:1079.280000px;}
.y5_c00167{bottom:1110.330000px;}
.y4_c00167{bottom:1131.030000px;}
.y3_c00167{bottom:1150.915500px;}
.y2_c00167{bottom:1166.400000px;}
.y1_c00167{bottom:1197.450000px;}
.h2_c00167{height:52.998047px;}
.h3_c00167{height:70.664062px;}
.h0_c00167{height:1262.880000px;}
.h1_c00167{height:1263.000000px;}
.w0_c00167{width:893.070000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x2_c00167{left:127.620000px;}
.x1_c00167{left:446.580000px;}
@media print{
.v1_c00167{vertical-align:-55.056000pt;}
.v0_c00167{vertical-align:0.000000pt;}
.lsa_c00167{letter-spacing:-0.320000pt;}
.ls9_c00167{letter-spacing:0.000000pt;}
.ls6_c00167{letter-spacing:0.064000pt;}
.ls5_c00167{letter-spacing:0.128000pt;}
.ls2_c00167{letter-spacing:1.280000pt;}
.ls3_c00167{letter-spacing:3.200000pt;}
.ls1_c00167{letter-spacing:11.200000pt;}
.ls7_c00167{letter-spacing:13.120000pt;}
.ls8_c00167{letter-spacing:13.126400pt;}
.ls4_c00167{letter-spacing:18.240000pt;}
.ls0_c00167{letter-spacing:284.016000pt;}
.ws0_c00167{word-spacing:-16.064000pt;}
.ws1_c00167{word-spacing:-16.000000pt;}
.ws2_c00167{word-spacing:-15.680000pt;}
.ws16_c00167{word-spacing:-0.384000pt;}
.ws4_c00167{word-spacing:-0.144000pt;}
.ws17_c00167{word-spacing:-0.128000pt;}
.wse_c00167{word-spacing:-0.064000pt;}
.ws3_c00167{word-spacing:0.000000pt;}
.ws15_c00167{word-spacing:0.896000pt;}
.ws14_c00167{word-spacing:0.960000pt;}
.ws8_c00167{word-spacing:1.216000pt;}
.ws22_c00167{word-spacing:2.496000pt;}
.ws23_c00167{word-spacing:2.560000pt;}
.ws25_c00167{word-spacing:2.752000pt;}
.ws24_c00167{word-spacing:2.880000pt;}
.ws9_c00167{word-spacing:3.136000pt;}
.wsa_c00167{word-spacing:3.200000pt;}
.ws1e_c00167{word-spacing:4.096000pt;}
.ws1d_c00167{word-spacing:4.160000pt;}
.ws20_c00167{word-spacing:6.080000pt;}
.ws13_c00167{word-spacing:6.976000pt;}
.ws11_c00167{word-spacing:7.296000pt;}
.ws12_c00167{word-spacing:7.360000pt;}
.ws29_c00167{word-spacing:8.320000pt;}
.wsf_c00167{word-spacing:9.216000pt;}
.ws10_c00167{word-spacing:9.280000pt;}
.wsd_c00167{word-spacing:10.496000pt;}
.ws6_c00167{word-spacing:10.816000pt;}
.ws7_c00167{word-spacing:11.200000pt;}
.ws1f_c00167{word-spacing:13.056000pt;}
.ws1b_c00167{word-spacing:13.120000pt;}
.ws19_c00167{word-spacing:13.376000pt;}
.ws1a_c00167{word-spacing:13.760000pt;}
.ws5_c00167{word-spacing:16.576000pt;}
.ws1c_c00167{word-spacing:16.960000pt;}
.wsb_c00167{word-spacing:18.176000pt;}
.wsc_c00167{word-spacing:18.240000pt;}
.ws26_c00167{word-spacing:18.816000pt;}
.ws21_c00167{word-spacing:25.152000pt;}
.ws18_c00167{word-spacing:25.280000pt;}
.ws27_c00167{word-spacing:29.056000pt;}
.ws28_c00167{word-spacing:36.160000pt;}
._0_c00167{margin-left:-1.164800pt;}
._5_c00167{width:0.960000pt;}
._6_c00167{width:2.572800pt;}
._2_c00167{width:7.616000pt;}
._1_c00167{width:9.152000pt;}
._4_c00167{width:13.721600pt;}
._3_c00167{width:25.216000pt;}
.fs0_c00167{font-size:48.000000pt;}
.fs1_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y25_c00167{bottom:50.880000pt;}
.y24_c00167{bottom:131.440000pt;}
.y23_c00167{bottom:159.040000pt;}
.y22_c00167{bottom:186.640000pt;}
.y21_c00167{bottom:214.240000pt;}
.y20_c00167{bottom:241.840000pt;}
.y1f_c00167{bottom:269.440000pt;}
.y1e_c00167{bottom:297.040000pt;}
.y1d_c00167{bottom:324.640000pt;}
.y1c_c00167{bottom:352.240000pt;}
.y1b_c00167{bottom:379.840000pt;}
.y1a_c00167{bottom:407.440000pt;}
.y19_c00167{bottom:435.040000pt;}
.y18_c00167{bottom:462.640000pt;}
.y17_c00167{bottom:490.240000pt;}
.y16_c00167{bottom:517.840000pt;}
.y15_c00167{bottom:545.440000pt;}
.y14_c00167{bottom:573.040000pt;}
.y13_c00167{bottom:600.640000pt;}
.y12_c00167{bottom:628.240000pt;}
.y11_c00167{bottom:655.840000pt;}
.y10_c00167{bottom:683.440000pt;}
.yf_c00167{bottom:711.040000pt;}
.ye_c00167{bottom:738.640000pt;}
.yd_c00167{bottom:766.160000pt;}
.yc_c00167{bottom:793.760000pt;}
.yb_c00167{bottom:821.360000pt;}
.ya_c00167{bottom:848.960000pt;}
.y9_c00167{bottom:876.560000pt;}
.y8_c00167{bottom:904.160000pt;}
.y7_c00167{bottom:931.760000pt;}
.y6_c00167{bottom:959.360000pt;}
.y5_c00167{bottom:986.960000pt;}
.y4_c00167{bottom:1005.360000pt;}
.y3_c00167{bottom:1023.036000pt;}
.y2_c00167{bottom:1036.800000pt;}
.y1_c00167{bottom:1064.400000pt;}
.h2_c00167{height:47.109375pt;}
.h3_c00167{height:62.812500pt;}
.h0_c00167{height:1122.560000pt;}
.h1_c00167{height:1122.666667pt;}
.w0_c00167{width:793.840000pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x2_c00167{left:113.440000pt;}
.x1_c00167{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4455e103558e85e3e5f4a58.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00168{letter-spacing:-0.288000px;}
.lsd_c00168{letter-spacing:-0.144000px;}
.lsb_c00168{letter-spacing:-0.108000px;}
.lsa_c00168{letter-spacing:0.000000px;}
.ls2_c00168{letter-spacing:0.072000px;}
.lse_c00168{letter-spacing:0.360000px;}
.ls8_c00168{letter-spacing:0.504000px;}
.ls9_c00168{letter-spacing:1.800000px;}
.ls5_c00168{letter-spacing:5.040000px;}
.ls6_c00168{letter-spacing:7.941600px;}
.ls7_c00168{letter-spacing:10.800000px;}
.ls0_c00168{letter-spacing:17.280000px;}
.ls1_c00168{letter-spacing:22.680000px;}
.ls4_c00168{letter-spacing:26.280000px;}
.ls3_c00168{letter-spacing:29.520000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:-18.072000px;}
.ws3_c00168{word-spacing:-18.000000px;}
.ws1_c00168{word-spacing:-17.856000px;}
.ws2_c00168{word-spacing:-17.712000px;}
.ws16_c00168{word-spacing:-0.432000px;}
.ws2a_c00168{word-spacing:-0.360000px;}
.ws1c_c00168{word-spacing:-0.072000px;}
.ws4_c00168{word-spacing:0.000000px;}
.ws6_c00168{word-spacing:0.162000px;}
.ws5_c00168{word-spacing:0.270000px;}
.ws21_c00168{word-spacing:0.648000px;}
.ws22_c00168{word-spacing:0.720000px;}
.wsa_c00168{word-spacing:1.008000px;}
.wsf_c00168{word-spacing:1.080000px;}
.ws19_c00168{word-spacing:1.368000px;}
.ws17_c00168{word-spacing:1.440000px;}
.ws18_c00168{word-spacing:1.728000px;}
.ws29_c00168{word-spacing:1.800000px;}
.ws1f_c00168{word-spacing:2.088000px;}
.ws1e_c00168{word-spacing:3.528000px;}
.ws1d_c00168{word-spacing:3.600000px;}
.ws2b_c00168{word-spacing:4.680000px;}
.ws14_c00168{word-spacing:4.968000px;}
.ws12_c00168{word-spacing:5.040000px;}
.ws23_c00168{word-spacing:7.848000px;}
.ws24_c00168{word-spacing:7.920000px;}
.wse_c00168{word-spacing:8.208000px;}
.ws20_c00168{word-spacing:10.008000px;}
.wsb_c00168{word-spacing:10.728000px;}
.ws25_c00168{word-spacing:11.088000px;}
.ws26_c00168{word-spacing:11.160000px;}
.ws9_c00168{word-spacing:16.920000px;}
.ws8_c00168{word-spacing:17.208000px;}
.ws27_c00168{word-spacing:17.280000px;}
.ws7_c00168{word-spacing:19.368000px;}
.ws15_c00168{word-spacing:20.808000px;}
.wsc_c00168{word-spacing:22.608000px;}
.wsd_c00168{word-spacing:22.680000px;}
.ws28_c00168{word-spacing:24.120000px;}
.ws13_c00168{word-spacing:26.280000px;}
.ws1b_c00168{word-spacing:28.368000px;}
.ws1a_c00168{word-spacing:28.728000px;}
.ws10_c00168{word-spacing:29.160000px;}
.ws11_c00168{word-spacing:29.520000px;}
._1_c00168{margin-left:-1.058400px;}
._0_c00168{width:1.220400px;}
._2_c00168{width:5.112000px;}
._3_c00168{width:21.326400px;}
.fc0_c00168{color:rgb(0,0,0);}
.fs0_c00168{font-size:54.000000px;}
.fs1_c00168{font-size:72.000000px;}
.y0_c00168{bottom:0.000000px;}
.y27_c00168{bottom:57.240000px;}
.y26_c00168{bottom:116.820000px;}
.y25_c00168{bottom:147.870000px;}
.y24_c00168{bottom:178.920000px;}
.y23_c00168{bottom:209.970000px;}
.y22_c00168{bottom:241.020000px;}
.y21_c00168{bottom:272.070000px;}
.y20_c00168{bottom:303.120000px;}
.y1f_c00168{bottom:334.170000px;}
.y1e_c00168{bottom:365.220000px;}
.y1d_c00168{bottom:396.270000px;}
.y1c_c00168{bottom:427.320000px;}
.y1b_c00168{bottom:458.370000px;}
.y1a_c00168{bottom:489.420000px;}
.y19_c00168{bottom:520.470000px;}
.y18_c00168{bottom:551.520000px;}
.y17_c00168{bottom:582.570000px;}
.y16_c00168{bottom:613.620000px;}
.y15_c00168{bottom:644.670000px;}
.y14_c00168{bottom:675.720000px;}
.y13_c00168{bottom:706.770000px;}
.y12_c00168{bottom:737.820000px;}
.y11_c00168{bottom:768.870000px;}
.y10_c00168{bottom:799.920000px;}
.yf_c00168{bottom:830.970000px;}
.ye_c00168{bottom:861.930000px;}
.yd_c00168{bottom:892.980000px;}
.yc_c00168{bottom:924.030000px;}
.yb_c00168{bottom:955.080000px;}
.ya_c00168{bottom:986.130000px;}
.y9_c00168{bottom:1017.180000px;}
.y8_c00168{bottom:1048.230000px;}
.y7_c00168{bottom:1079.280000px;}
.y6_c00168{bottom:1110.330000px;}
.y5_c00168{bottom:1131.030000px;}
.y4_c00168{bottom:1150.920000px;}
.y3_c00168{bottom:1166.404500px;}
.y2_c00168{bottom:1181.970000px;}
.y1_c00168{bottom:1197.450000px;}
.h3_c00168{height:52.971680px;}
.h2_c00168{height:52.998047px;}
.h4_c00168{height:70.664062px;}
.h0_c00168{height:1262.880000px;}
.h1_c00168{height:1263.000000px;}
.w0_c00168{width:893.070000px;}
.w1_c00168{width:893.250000px;}
.x0_c00168{left:0.000000px;}
.x3_c00168{left:127.620000px;}
.x2_c00168{left:425.160000px;}
.x1_c00168{left:446.580000px;}
.x4_c00168{left:738.540000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.lsc_c00168{letter-spacing:-0.256000pt;}
.lsd_c00168{letter-spacing:-0.128000pt;}
.lsb_c00168{letter-spacing:-0.096000pt;}
.lsa_c00168{letter-spacing:0.000000pt;}
.ls2_c00168{letter-spacing:0.064000pt;}
.lse_c00168{letter-spacing:0.320000pt;}
.ls8_c00168{letter-spacing:0.448000pt;}
.ls9_c00168{letter-spacing:1.600000pt;}
.ls5_c00168{letter-spacing:4.480000pt;}
.ls6_c00168{letter-spacing:7.059200pt;}
.ls7_c00168{letter-spacing:9.600000pt;}
.ls0_c00168{letter-spacing:15.360000pt;}
.ls1_c00168{letter-spacing:20.160000pt;}
.ls4_c00168{letter-spacing:23.360000pt;}
.ls3_c00168{letter-spacing:26.240000pt;}
.ws0_c00168{word-spacing:-16.064000pt;}
.ws3_c00168{word-spacing:-16.000000pt;}
.ws1_c00168{word-spacing:-15.872000pt;}
.ws2_c00168{word-spacing:-15.744000pt;}
.ws16_c00168{word-spacing:-0.384000pt;}
.ws2a_c00168{word-spacing:-0.320000pt;}
.ws1c_c00168{word-spacing:-0.064000pt;}
.ws4_c00168{word-spacing:0.000000pt;}
.ws6_c00168{word-spacing:0.144000pt;}
.ws5_c00168{word-spacing:0.240000pt;}
.ws21_c00168{word-spacing:0.576000pt;}
.ws22_c00168{word-spacing:0.640000pt;}
.wsa_c00168{word-spacing:0.896000pt;}
.wsf_c00168{word-spacing:0.960000pt;}
.ws19_c00168{word-spacing:1.216000pt;}
.ws17_c00168{word-spacing:1.280000pt;}
.ws18_c00168{word-spacing:1.536000pt;}
.ws29_c00168{word-spacing:1.600000pt;}
.ws1f_c00168{word-spacing:1.856000pt;}
.ws1e_c00168{word-spacing:3.136000pt;}
.ws1d_c00168{word-spacing:3.200000pt;}
.ws2b_c00168{word-spacing:4.160000pt;}
.ws14_c00168{word-spacing:4.416000pt;}
.ws12_c00168{word-spacing:4.480000pt;}
.ws23_c00168{word-spacing:6.976000pt;}
.ws24_c00168{word-spacing:7.040000pt;}
.wse_c00168{word-spacing:7.296000pt;}
.ws20_c00168{word-spacing:8.896000pt;}
.wsb_c00168{word-spacing:9.536000pt;}
.ws25_c00168{word-spacing:9.856000pt;}
.ws26_c00168{word-spacing:9.920000pt;}
.ws9_c00168{word-spacing:15.040000pt;}
.ws8_c00168{word-spacing:15.296000pt;}
.ws27_c00168{word-spacing:15.360000pt;}
.ws7_c00168{word-spacing:17.216000pt;}
.ws15_c00168{word-spacing:18.496000pt;}
.wsc_c00168{word-spacing:20.096000pt;}
.wsd_c00168{word-spacing:20.160000pt;}
.ws28_c00168{word-spacing:21.440000pt;}
.ws13_c00168{word-spacing:23.360000pt;}
.ws1b_c00168{word-spacing:25.216000pt;}
.ws1a_c00168{word-spacing:25.536000pt;}
.ws10_c00168{word-spacing:25.920000pt;}
.ws11_c00168{word-spacing:26.240000pt;}
._1_c00168{margin-left:-0.940800pt;}
._0_c00168{width:1.084800pt;}
._2_c00168{width:4.544000pt;}
._3_c00168{width:18.956800pt;}
.fs0_c00168{font-size:48.000000pt;}
.fs1_c00168{font-size:64.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y27_c00168{bottom:50.880000pt;}
.y26_c00168{bottom:103.840000pt;}
.y25_c00168{bottom:131.440000pt;}
.y24_c00168{bottom:159.040000pt;}
.y23_c00168{bottom:186.640000pt;}
.y22_c00168{bottom:214.240000pt;}
.y21_c00168{bottom:241.840000pt;}
.y20_c00168{bottom:269.440000pt;}
.y1f_c00168{bottom:297.040000pt;}
.y1e_c00168{bottom:324.640000pt;}
.y1d_c00168{bottom:352.240000pt;}
.y1c_c00168{bottom:379.840000pt;}
.y1b_c00168{bottom:407.440000pt;}
.y1a_c00168{bottom:435.040000pt;}
.y19_c00168{bottom:462.640000pt;}
.y18_c00168{bottom:490.240000pt;}
.y17_c00168{bottom:517.840000pt;}
.y16_c00168{bottom:545.440000pt;}
.y15_c00168{bottom:573.040000pt;}
.y14_c00168{bottom:600.640000pt;}
.y13_c00168{bottom:628.240000pt;}
.y12_c00168{bottom:655.840000pt;}
.y11_c00168{bottom:683.440000pt;}
.y10_c00168{bottom:711.040000pt;}
.yf_c00168{bottom:738.640000pt;}
.ye_c00168{bottom:766.160000pt;}
.yd_c00168{bottom:793.760000pt;}
.yc_c00168{bottom:821.360000pt;}
.yb_c00168{bottom:848.960000pt;}
.ya_c00168{bottom:876.560000pt;}
.y9_c00168{bottom:904.160000pt;}
.y8_c00168{bottom:931.760000pt;}
.y7_c00168{bottom:959.360000pt;}
.y6_c00168{bottom:986.960000pt;}
.y5_c00168{bottom:1005.360000pt;}
.y4_c00168{bottom:1023.040000pt;}
.y3_c00168{bottom:1036.804000pt;}
.y2_c00168{bottom:1050.640000pt;}
.y1_c00168{bottom:1064.400000pt;}
.h3_c00168{height:47.085938pt;}
.h2_c00168{height:47.109375pt;}
.h4_c00168{height:62.812500pt;}
.h0_c00168{height:1122.560000pt;}
.h1_c00168{height:1122.666667pt;}
.w0_c00168{width:793.840000pt;}
.w1_c00168{width:794.000000pt;}
.x0_c00168{left:0.000000pt;}
.x3_c00168{left:113.440000pt;}
.x2_c00168{left:377.920000pt;}
.x1_c00168{left:396.960000pt;}
.x4_c00168{left:656.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_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_ff8aeb424e57e41d49a8ef7f.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00169{vertical-align:-61.938000px;}
.v0_c00169{vertical-align:0.000000px;}
.ls10_c00169{letter-spacing:-0.576000px;}
.lsf_c00169{letter-spacing:-0.360000px;}
.ls11_c00169{letter-spacing:-0.216000px;}
.lsd_c00169{letter-spacing:-0.072000px;}
.lsc_c00169{letter-spacing:0.000000px;}
.ls1_c00169{letter-spacing:0.072000px;}
.lse_c00169{letter-spacing:0.144000px;}
.ls8_c00169{letter-spacing:0.360000px;}
.ls5_c00169{letter-spacing:1.800000px;}
.ls4_c00169{letter-spacing:2.160000px;}
.ls7_c00169{letter-spacing:4.320000px;}
.lsb_c00169{letter-spacing:5.040000px;}
.ls3_c00169{letter-spacing:5.400000px;}
.ls9_c00169{letter-spacing:7.560000px;}
.ls6_c00169{letter-spacing:19.080000px;}
.ls2_c00169{letter-spacing:29.160000px;}
.lsa_c00169{letter-spacing:32.400000px;}
.ls0_c00169{letter-spacing:319.518000px;}
.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;}
}
.ws0_c00169{word-spacing:-18.144000px;}
.ws3_c00169{word-spacing:-18.072000px;}
.ws4_c00169{word-spacing:-18.000000px;}
.ws2_c00169{word-spacing:-17.784000px;}
.ws1_c00169{word-spacing:-17.424000px;}
.ws11_c00169{word-spacing:-0.432000px;}
.ws23_c00169{word-spacing:-0.360000px;}
.ws6_c00169{word-spacing:-0.162000px;}
.ws10_c00169{word-spacing:-0.144000px;}
.ws1b_c00169{word-spacing:-0.072000px;}
.ws5_c00169{word-spacing:0.000000px;}
.ws7_c00169{word-spacing:0.072000px;}
.wsf_c00169{word-spacing:0.360000px;}
.ws14_c00169{word-spacing:1.008000px;}
.ws15_c00169{word-spacing:1.080000px;}
.ws17_c00169{word-spacing:1.368000px;}
.ws16_c00169{word-spacing:1.440000px;}
.ws13_c00169{word-spacing:1.728000px;}
.ws1c_c00169{word-spacing:1.800000px;}
.ws1d_c00169{word-spacing:2.088000px;}
.ws1e_c00169{word-spacing:2.160000px;}
.ws2c_c00169{word-spacing:3.240000px;}
.ws21_c00169{word-spacing:4.176000px;}
.ws22_c00169{word-spacing:4.320000px;}
.ws30_c00169{word-spacing:4.608000px;}
.ws2f_c00169{word-spacing:4.680000px;}
.ws8_c00169{word-spacing:4.896000px;}
.ws9_c00169{word-spacing:4.968000px;}
.ws1a_c00169{word-spacing:5.400000px;}
.ws12_c00169{word-spacing:5.760000px;}
.ws26_c00169{word-spacing:7.560000px;}
.ws25_c00169{word-spacing:9.288000px;}
.ws24_c00169{word-spacing:9.360000px;}
.ws27_c00169{word-spacing:11.016000px;}
.ws28_c00169{word-spacing:11.160000px;}
.wse_c00169{word-spacing:15.768000px;}
.ws34_c00169{word-spacing:15.840000px;}
.ws33_c00169{word-spacing:16.560000px;}
.ws2d_c00169{word-spacing:17.280000px;}
.ws1f_c00169{word-spacing:18.936000px;}
.ws20_c00169{word-spacing:19.080000px;}
.wsc_c00169{word-spacing:19.368000px;}
.wsd_c00169{word-spacing:19.440000px;}
.ws2e_c00169{word-spacing:22.320000px;}
.ws32_c00169{word-spacing:23.688000px;}
.ws31_c00169{word-spacing:23.760000px;}
.wsa_c00169{word-spacing:25.488000px;}
.wsb_c00169{word-spacing:25.560000px;}
.ws29_c00169{word-spacing:26.640000px;}
.ws18_c00169{word-spacing:29.088000px;}
.ws19_c00169{word-spacing:29.160000px;}
.ws2a_c00169{word-spacing:32.328000px;}
.ws2b_c00169{word-spacing:32.400000px;}
._1_c00169{margin-left:-1.008000px;}
._3_c00169{width:1.008000px;}
._4_c00169{width:3.960000px;}
._0_c00169{width:5.328000px;}
._5_c00169{width:8.856000px;}
._6_c00169{width:10.584000px;}
._7_c00169{width:15.480000px;}
._2_c00169{width:25.128000px;}
.fc0_c00169{color:rgb(0,0,0);}
.fs0_c00169{font-size:54.000000px;}
.fs1_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.y26_c00169{bottom:57.240000px;}
.y25_c00169{bottom:116.820000px;}
.y24_c00169{bottom:147.870000px;}
.y23_c00169{bottom:178.920000px;}
.y22_c00169{bottom:209.970000px;}
.y21_c00169{bottom:241.020000px;}
.y20_c00169{bottom:272.070000px;}
.y1f_c00169{bottom:303.120000px;}
.y1e_c00169{bottom:334.170000px;}
.y1d_c00169{bottom:365.220000px;}
.y1c_c00169{bottom:396.270000px;}
.y1b_c00169{bottom:427.320000px;}
.y1a_c00169{bottom:458.370000px;}
.y19_c00169{bottom:489.420000px;}
.y18_c00169{bottom:520.470000px;}
.y17_c00169{bottom:551.520000px;}
.y16_c00169{bottom:582.570000px;}
.y15_c00169{bottom:613.620000px;}
.y14_c00169{bottom:644.670000px;}
.y13_c00169{bottom:675.720000px;}
.y12_c00169{bottom:706.770000px;}
.y11_c00169{bottom:737.820000px;}
.y10_c00169{bottom:768.870000px;}
.yf_c00169{bottom:799.920000px;}
.ye_c00169{bottom:830.970000px;}
.yd_c00169{bottom:861.930000px;}
.yc_c00169{bottom:892.980000px;}
.yb_c00169{bottom:924.030000px;}
.ya_c00169{bottom:955.080000px;}
.y9_c00169{bottom:986.130000px;}
.y8_c00169{bottom:1017.180000px;}
.y7_c00169{bottom:1048.230000px;}
.y6_c00169{bottom:1079.280000px;}
.y5_c00169{bottom:1110.330000px;}
.y4_c00169{bottom:1131.030000px;}
.y3_c00169{bottom:1150.915500px;}
.y2_c00169{bottom:1166.400000px;}
.y1_c00169{bottom:1197.450000px;}
.h2_c00169{height:52.998047px;}
.h3_c00169{height:70.664062px;}
.h4_c00169{height:72.562500px;}
.h0_c00169{height:1262.880000px;}
.h1_c00169{height:1263.000000px;}
.w0_c00169{width:893.070000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x2_c00169{left:127.620000px;}
.x1_c00169{left:446.580000px;}
@media print{
.v1_c00169{vertical-align:-55.056000pt;}
.v0_c00169{vertical-align:0.000000pt;}
.ls10_c00169{letter-spacing:-0.512000pt;}
.lsf_c00169{letter-spacing:-0.320000pt;}
.ls11_c00169{letter-spacing:-0.192000pt;}
.lsd_c00169{letter-spacing:-0.064000pt;}
.lsc_c00169{letter-spacing:0.000000pt;}
.ls1_c00169{letter-spacing:0.064000pt;}
.lse_c00169{letter-spacing:0.128000pt;}
.ls8_c00169{letter-spacing:0.320000pt;}
.ls5_c00169{letter-spacing:1.600000pt;}
.ls4_c00169{letter-spacing:1.920000pt;}
.ls7_c00169{letter-spacing:3.840000pt;}
.lsb_c00169{letter-spacing:4.480000pt;}
.ls3_c00169{letter-spacing:4.800000pt;}
.ls9_c00169{letter-spacing:6.720000pt;}
.ls6_c00169{letter-spacing:16.960000pt;}
.ls2_c00169{letter-spacing:25.920000pt;}
.lsa_c00169{letter-spacing:28.800000pt;}
.ls0_c00169{letter-spacing:284.016000pt;}
.ws0_c00169{word-spacing:-16.128000pt;}
.ws3_c00169{word-spacing:-16.064000pt;}
.ws4_c00169{word-spacing:-16.000000pt;}
.ws2_c00169{word-spacing:-15.808000pt;}
.ws1_c00169{word-spacing:-15.488000pt;}
.ws11_c00169{word-spacing:-0.384000pt;}
.ws23_c00169{word-spacing:-0.320000pt;}
.ws6_c00169{word-spacing:-0.144000pt;}
.ws10_c00169{word-spacing:-0.128000pt;}
.ws1b_c00169{word-spacing:-0.064000pt;}
.ws5_c00169{word-spacing:0.000000pt;}
.ws7_c00169{word-spacing:0.064000pt;}
.wsf_c00169{word-spacing:0.320000pt;}
.ws14_c00169{word-spacing:0.896000pt;}
.ws15_c00169{word-spacing:0.960000pt;}
.ws17_c00169{word-spacing:1.216000pt;}
.ws16_c00169{word-spacing:1.280000pt;}
.ws13_c00169{word-spacing:1.536000pt;}
.ws1c_c00169{word-spacing:1.600000pt;}
.ws1d_c00169{word-spacing:1.856000pt;}
.ws1e_c00169{word-spacing:1.920000pt;}
.ws2c_c00169{word-spacing:2.880000pt;}
.ws21_c00169{word-spacing:3.712000pt;}
.ws22_c00169{word-spacing:3.840000pt;}
.ws30_c00169{word-spacing:4.096000pt;}
.ws2f_c00169{word-spacing:4.160000pt;}
.ws8_c00169{word-spacing:4.352000pt;}
.ws9_c00169{word-spacing:4.416000pt;}
.ws1a_c00169{word-spacing:4.800000pt;}
.ws12_c00169{word-spacing:5.120000pt;}
.ws26_c00169{word-spacing:6.720000pt;}
.ws25_c00169{word-spacing:8.256000pt;}
.ws24_c00169{word-spacing:8.320000pt;}
.ws27_c00169{word-spacing:9.792000pt;}
.ws28_c00169{word-spacing:9.920000pt;}
.wse_c00169{word-spacing:14.016000pt;}
.ws34_c00169{word-spacing:14.080000pt;}
.ws33_c00169{word-spacing:14.720000pt;}
.ws2d_c00169{word-spacing:15.360000pt;}
.ws1f_c00169{word-spacing:16.832000pt;}
.ws20_c00169{word-spacing:16.960000pt;}
.wsc_c00169{word-spacing:17.216000pt;}
.wsd_c00169{word-spacing:17.280000pt;}
.ws2e_c00169{word-spacing:19.840000pt;}
.ws32_c00169{word-spacing:21.056000pt;}
.ws31_c00169{word-spacing:21.120000pt;}
.wsa_c00169{word-spacing:22.656000pt;}
.wsb_c00169{word-spacing:22.720000pt;}
.ws29_c00169{word-spacing:23.680000pt;}
.ws18_c00169{word-spacing:25.856000pt;}
.ws19_c00169{word-spacing:25.920000pt;}
.ws2a_c00169{word-spacing:28.736000pt;}
.ws2b_c00169{word-spacing:28.800000pt;}
._1_c00169{margin-left:-0.896000pt;}
._3_c00169{width:0.896000pt;}
._4_c00169{width:3.520000pt;}
._0_c00169{width:4.736000pt;}
._5_c00169{width:7.872000pt;}
._6_c00169{width:9.408000pt;}
._7_c00169{width:13.760000pt;}
._2_c00169{width:22.336000pt;}
.fs0_c00169{font-size:48.000000pt;}
.fs1_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y26_c00169{bottom:50.880000pt;}
.y25_c00169{bottom:103.840000pt;}
.y24_c00169{bottom:131.440000pt;}
.y23_c00169{bottom:159.040000pt;}
.y22_c00169{bottom:186.640000pt;}
.y21_c00169{bottom:214.240000pt;}
.y20_c00169{bottom:241.840000pt;}
.y1f_c00169{bottom:269.440000pt;}
.y1e_c00169{bottom:297.040000pt;}
.y1d_c00169{bottom:324.640000pt;}
.y1c_c00169{bottom:352.240000pt;}
.y1b_c00169{bottom:379.840000pt;}
.y1a_c00169{bottom:407.440000pt;}
.y19_c00169{bottom:435.040000pt;}
.y18_c00169{bottom:462.640000pt;}
.y17_c00169{bottom:490.240000pt;}
.y16_c00169{bottom:517.840000pt;}
.y15_c00169{bottom:545.440000pt;}
.y14_c00169{bottom:573.040000pt;}
.y13_c00169{bottom:600.640000pt;}
.y12_c00169{bottom:628.240000pt;}
.y11_c00169{bottom:655.840000pt;}
.y10_c00169{bottom:683.440000pt;}
.yf_c00169{bottom:711.040000pt;}
.ye_c00169{bottom:738.640000pt;}
.yd_c00169{bottom:766.160000pt;}
.yc_c00169{bottom:793.760000pt;}
.yb_c00169{bottom:821.360000pt;}
.ya_c00169{bottom:848.960000pt;}
.y9_c00169{bottom:876.560000pt;}
.y8_c00169{bottom:904.160000pt;}
.y7_c00169{bottom:931.760000pt;}
.y6_c00169{bottom:959.360000pt;}
.y5_c00169{bottom:986.960000pt;}
.y4_c00169{bottom:1005.360000pt;}
.y3_c00169{bottom:1023.036000pt;}
.y2_c00169{bottom:1036.800000pt;}
.y1_c00169{bottom:1064.400000pt;}
.h2_c00169{height:47.109375pt;}
.h3_c00169{height:62.812500pt;}
.h4_c00169{height:64.500000pt;}
.h0_c00169{height:1122.560000pt;}
.h1_c00169{height:1122.666667pt;}
.w0_c00169{width:793.840000pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x2_c00169{left:113.440000pt;}
.x1_c00169{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_618b5feba683a7b945edffbc.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.284180;font-style: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;}
.ls7_c00170{letter-spacing:-0.576000px;}
.ls6_c00170{letter-spacing:-0.360000px;}
.ls9_c00170{letter-spacing:-0.288000px;}
.ls5_c00170{letter-spacing:-0.108000px;}
.ls4_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.072000px;}
.ls8_c00170{letter-spacing:0.144000px;}
.ls1_c00170{letter-spacing:0.360000px;}
.ls2_c00170{letter-spacing:0.367200px;}
.ls3_c00170{letter-spacing:19.440000px;}
.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:-18.144000px;}
.ws0_c00170{word-spacing:-17.424000px;}
.ws8_c00170{word-spacing:-0.072000px;}
.ws2_c00170{word-spacing:0.000000px;}
.ws4_c00170{word-spacing:0.162000px;}
.ws3_c00170{word-spacing:0.270000px;}
.ws9_c00170{word-spacing:0.288000px;}
.ws7_c00170{word-spacing:0.360000px;}
.wsb_c00170{word-spacing:1.656000px;}
.wsa_c00170{word-spacing:1.800000px;}
.ws13_c00170{word-spacing:2.160000px;}
.ws17_c00170{word-spacing:2.448000px;}
.ws18_c00170{word-spacing:2.520000px;}
.ws6_c00170{word-spacing:4.968000px;}
.ws5_c00170{word-spacing:5.040000px;}
.ws14_c00170{word-spacing:7.560000px;}
.wsc_c00170{word-spacing:9.648000px;}
.ws11_c00170{word-spacing:12.168000px;}
.ws12_c00170{word-spacing:12.240000px;}
.ws19_c00170{word-spacing:12.528000px;}
.wse_c00170{word-spacing:19.080000px;}
.ws10_c00170{word-spacing:19.368000px;}
.wsd_c00170{word-spacing:19.440000px;}
.wsf_c00170{word-spacing:19.728000px;}
.ws15_c00170{word-spacing:35.568000px;}
.ws16_c00170{word-spacing:35.640000px;}
._1_c00170{margin-left:-1.058400px;}
._0_c00170{width:1.220400px;}
._4_c00170{width:2.484000px;}
._2_c00170{width:5.472000px;}
._3_c00170{width:9.604800px;}
._5_c00170{width:12.319200px;}
._6_c00170{width:846.000000px;}
.fc0_c00170{color:rgb(0,0,0);}
.fs0_c00170{font-size:54.000000px;}
.fs1_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y15_c00170{bottom:57.240000px;}
.y14_c00170{bottom:675.720000px;}
.y13_c00170{bottom:706.770000px;}
.y12_c00170{bottom:737.820000px;}
.y11_c00170{bottom:768.870000px;}
.y10_c00170{bottom:799.920000px;}
.yf_c00170{bottom:830.970000px;}
.ye_c00170{bottom:861.930000px;}
.yd_c00170{bottom:892.980000px;}
.yc_c00170{bottom:924.030000px;}
.yb_c00170{bottom:955.080000px;}
.ya_c00170{bottom:986.130000px;}
.y9_c00170{bottom:1017.180000px;}
.y8_c00170{bottom:1048.230000px;}
.y7_c00170{bottom:1079.280000px;}
.y6_c00170{bottom:1110.330000px;}
.y5_c00170{bottom:1131.030000px;}
.y4_c00170{bottom:1150.920000px;}
.y3_c00170{bottom:1166.404500px;}
.y2_c00170{bottom:1181.970000px;}
.y1_c00170{bottom:1197.450000px;}
.h3_c00170{height:52.971680px;}
.h2_c00170{height:52.998047px;}
.h4_c00170{height:70.664062px;}
.h0_c00170{height:1262.880000px;}
.h1_c00170{height:1263.000000px;}
.w0_c00170{width:893.070000px;}
.w1_c00170{width:893.250000px;}
.x0_c00170{left:0.000000px;}
.x3_c00170{left:127.620000px;}
.x2_c00170{left:425.160000px;}
.x1_c00170{left:446.580000px;}
.x4_c00170{left:738.540000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls7_c00170{letter-spacing:-0.512000pt;}
.ls6_c00170{letter-spacing:-0.320000pt;}
.ls9_c00170{letter-spacing:-0.256000pt;}
.ls5_c00170{letter-spacing:-0.096000pt;}
.ls4_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.064000pt;}
.ls8_c00170{letter-spacing:0.128000pt;}
.ls1_c00170{letter-spacing:0.320000pt;}
.ls2_c00170{letter-spacing:0.326400pt;}
.ls3_c00170{letter-spacing:17.280000pt;}
.ws1_c00170{word-spacing:-16.128000pt;}
.ws0_c00170{word-spacing:-15.488000pt;}
.ws8_c00170{word-spacing:-0.064000pt;}
.ws2_c00170{word-spacing:0.000000pt;}
.ws4_c00170{word-spacing:0.144000pt;}
.ws3_c00170{word-spacing:0.240000pt;}
.ws9_c00170{word-spacing:0.256000pt;}
.ws7_c00170{word-spacing:0.320000pt;}
.wsb_c00170{word-spacing:1.472000pt;}
.wsa_c00170{word-spacing:1.600000pt;}
.ws13_c00170{word-spacing:1.920000pt;}
.ws17_c00170{word-spacing:2.176000pt;}
.ws18_c00170{word-spacing:2.240000pt;}
.ws6_c00170{word-spacing:4.416000pt;}
.ws5_c00170{word-spacing:4.480000pt;}
.ws14_c00170{word-spacing:6.720000pt;}
.wsc_c00170{word-spacing:8.576000pt;}
.ws11_c00170{word-spacing:10.816000pt;}
.ws12_c00170{word-spacing:10.880000pt;}
.ws19_c00170{word-spacing:11.136000pt;}
.wse_c00170{word-spacing:16.960000pt;}
.ws10_c00170{word-spacing:17.216000pt;}
.wsd_c00170{word-spacing:17.280000pt;}
.wsf_c00170{word-spacing:17.536000pt;}
.ws15_c00170{word-spacing:31.616000pt;}
.ws16_c00170{word-spacing:31.680000pt;}
._1_c00170{margin-left:-0.940800pt;}
._0_c00170{width:1.084800pt;}
._4_c00170{width:2.208000pt;}
._2_c00170{width:4.864000pt;}
._3_c00170{width:8.537600pt;}
._5_c00170{width:10.950400pt;}
._6_c00170{width:752.000000pt;}
.fs0_c00170{font-size:48.000000pt;}
.fs1_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y15_c00170{bottom:50.880000pt;}
.y14_c00170{bottom:600.640000pt;}
.y13_c00170{bottom:628.240000pt;}
.y12_c00170{bottom:655.840000pt;}
.y11_c00170{bottom:683.440000pt;}
.y10_c00170{bottom:711.040000pt;}
.yf_c00170{bottom:738.640000pt;}
.ye_c00170{bottom:766.160000pt;}
.yd_c00170{bottom:793.760000pt;}
.yc_c00170{bottom:821.360000pt;}
.yb_c00170{bottom:848.960000pt;}
.ya_c00170{bottom:876.560000pt;}
.y9_c00170{bottom:904.160000pt;}
.y8_c00170{bottom:931.760000pt;}
.y7_c00170{bottom:959.360000pt;}
.y6_c00170{bottom:986.960000pt;}
.y5_c00170{bottom:1005.360000pt;}
.y4_c00170{bottom:1023.040000pt;}
.y3_c00170{bottom:1036.804000pt;}
.y2_c00170{bottom:1050.640000pt;}
.y1_c00170{bottom:1064.400000pt;}
.h3_c00170{height:47.085938pt;}
.h2_c00170{height:47.109375pt;}
.h4_c00170{height:62.812500pt;}
.h0_c00170{height:1122.560000pt;}
.h1_c00170{height:1122.666667pt;}
.w0_c00170{width:793.840000pt;}
.w1_c00170{width:794.000000pt;}
.x0_c00170{left:0.000000pt;}
.x3_c00170{left:113.440000pt;}
.x2_c00170{left:377.920000pt;}
.x1_c00170{left:396.960000pt;}
.x4_c00170{left:656.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_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_6acd5f28a0c67410387edabe.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.284180;font-style: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);}
.v1_c00171{vertical-align:-61.938000px;}
.v0_c00171{vertical-align:0.000000px;}
.ls1_c00171{letter-spacing:0.000000px;}
.ls0_c00171{letter-spacing:319.518000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00171{word-spacing:-0.162000px;}
.ws0_c00171{word-spacing:0.000000px;}
._0_c00171{width:846.000000px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs0_c00171{font-size:54.000000px;}
.fs1_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y7_c00171{bottom:57.240000px;}
.y6_c00171{bottom:1079.280000px;}
.y5_c00171{bottom:1110.330000px;}
.y4_c00171{bottom:1131.030000px;}
.y3_c00171{bottom:1150.915500px;}
.y2_c00171{bottom:1166.400000px;}
.y1_c00171{bottom:1197.450000px;}
.h2_c00171{height:52.998047px;}
.h3_c00171{height:70.664062px;}
.h0_c00171{height:1262.880000px;}
.h1_c00171{height:1263.000000px;}
.w0_c00171{width:893.070000px;}
.w1_c00171{width:893.250000px;}
.x0_c00171{left:0.000000px;}
.x2_c00171{left:127.620000px;}
.x1_c00171{left:446.580000px;}
@media print{
.v1_c00171{vertical-align:-55.056000pt;}
.v0_c00171{vertical-align:0.000000pt;}
.ls1_c00171{letter-spacing:0.000000pt;}
.ls0_c00171{letter-spacing:284.016000pt;}
.ws1_c00171{word-spacing:-0.144000pt;}
.ws0_c00171{word-spacing:0.000000pt;}
._0_c00171{width:752.000000pt;}
.fs0_c00171{font-size:48.000000pt;}
.fs1_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y7_c00171{bottom:50.880000pt;}
.y6_c00171{bottom:959.360000pt;}
.y5_c00171{bottom:986.960000pt;}
.y4_c00171{bottom:1005.360000pt;}
.y3_c00171{bottom:1023.036000pt;}
.y2_c00171{bottom:1036.800000pt;}
.y1_c00171{bottom:1064.400000pt;}
.h2_c00171{height:47.109375pt;}
.h3_c00171{height:62.812500pt;}
.h0_c00171{height:1122.560000pt;}
.h1_c00171{height:1122.666667pt;}
.w0_c00171{width:793.840000pt;}
.w1_c00171{width:794.000000pt;}
.x0_c00171{left:0.000000pt;}
.x2_c00171{left:113.440000pt;}
.x1_c00171{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74296bb12e2f635ab12380d0.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.284180;font-style:normal;font-weight:normal;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_4ede408bdc2bc03e9b8d7461.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00172{vertical-align:-105.840000px;}
.v0_c00172{vertical-align:0.000000px;}
.ls7_c00172{letter-spacing:-0.192240px;}
.ls5_c00172{letter-spacing:-0.108000px;}
.ls4_c00172{letter-spacing:0.000000px;}
.ls3_c00172{letter-spacing:0.072000px;}
.ls6_c00172{letter-spacing:0.144000px;}
.ls2_c00172{letter-spacing:0.192240px;}
.ls1_c00172{letter-spacing:0.230688px;}
.ls0_c00172{letter-spacing:1257.840000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:-18.072000px;}
.ws6_c00172{word-spacing:-0.480600px;}
.ws4_c00172{word-spacing:-0.144000px;}
.ws7_c00172{word-spacing:-0.072000px;}
.ws1_c00172{word-spacing:0.000000px;}
.ws3_c00172{word-spacing:0.162000px;}
.ws2_c00172{word-spacing:0.270000px;}
.ws5_c00172{word-spacing:0.288360px;}
._1_c00172{margin-left:-1.058400px;}
._0_c00172{width:1.220400px;}
._2_c00172{width:846.000000px;}
.fc0_c00172{color:rgb(0,0,0);}
.fs0_c00172{font-size:54.000000px;}
.fs4_c00172{font-size:60.120000px;}
.fs1_c00172{font-size:72.000000px;}
.fs2_c00172{font-size:96.120000px;}
.fs3_c00172{font-size:144.000000px;}
.y0_c00172{bottom:0.000000px;}
.y19_c00172{bottom:57.240000px;}
.y18_c00172{bottom:401.220000px;}
.y17_c00172{bottom:430.110000px;}
.y16_c00172{bottom:447.840000px;}
.y15_c00172{bottom:468.720000px;}
.y14_c00172{bottom:489.420000px;}
.y13_c00172{bottom:510.120000px;}
.y12_c00172{bottom:545.745240px;}
.y11_c00172{bottom:587.148930px;}
.y10_c00172{bottom:628.552620px;}
.yf_c00172{bottom:669.956310px;}
.ye_c00172{bottom:711.360000px;}
.yd_c00172{bottom:762.300000px;}
.yc_c00172{bottom:814.840290px;}
.yb_c00172{bottom:856.147860px;}
.ya_c00172{bottom:897.551550px;}
.y9_c00172{bottom:938.955240px;}
.y8_c00172{bottom:980.358930px;}
.y7_c00172{bottom:1021.762620px;}
.y6_c00172{bottom:1063.166310px;}
.y5_c00172{bottom:1131.030000px;}
.y4_c00172{bottom:1150.920000px;}
.y3_c00172{bottom:1166.404500px;}
.y2_c00172{bottom:1181.970000px;}
.y1_c00172{bottom:1197.450000px;}
.h3_c00172{height:52.971680px;}
.h2_c00172{height:52.998047px;}
.h8_c00172{height:59.004492px;}
.h4_c00172{height:70.664062px;}
.h7_c00172{height:72.562500px;}
.h5_c00172{height:96.870938px;}
.h6_c00172{height:145.125000px;}
.h0_c00172{height:1262.880000px;}
.h1_c00172{height:1263.000000px;}
.w0_c00172{width:893.070000px;}
.w1_c00172{width:893.250000px;}
.x0_c00172{left:0.000000px;}
.x3_c00172{left:127.620000px;}
.x7_c00172{left:132.660000px;}
.x6_c00172{left:152.550000px;}
.x8_c00172{left:158.580000px;}
.x5_c00172{left:196.283520px;}
.x4_c00172{left:349.470000px;}
.x9_c00172{left:372.060000px;}
.x2_c00172{left:425.160000px;}
.x1_c00172{left:446.580000px;}
.xa_c00172{left:738.540000px;}
@media print{
.v1_c00172{vertical-align:-94.080000pt;}
.v0_c00172{vertical-align:0.000000pt;}
.ls7_c00172{letter-spacing:-0.170880pt;}
.ls5_c00172{letter-spacing:-0.096000pt;}
.ls4_c00172{letter-spacing:0.000000pt;}
.ls3_c00172{letter-spacing:0.064000pt;}
.ls6_c00172{letter-spacing:0.128000pt;}
.ls2_c00172{letter-spacing:0.170880pt;}
.ls1_c00172{letter-spacing:0.205056pt;}
.ls0_c00172{letter-spacing:1118.080000pt;}
.ws0_c00172{word-spacing:-16.064000pt;}
.ws6_c00172{word-spacing:-0.427200pt;}
.ws4_c00172{word-spacing:-0.128000pt;}
.ws7_c00172{word-spacing:-0.064000pt;}
.ws1_c00172{word-spacing:0.000000pt;}
.ws3_c00172{word-spacing:0.144000pt;}
.ws2_c00172{word-spacing:0.240000pt;}
.ws5_c00172{word-spacing:0.256320pt;}
._1_c00172{margin-left:-0.940800pt;}
._0_c00172{width:1.084800pt;}
._2_c00172{width:752.000000pt;}
.fs0_c00172{font-size:48.000000pt;}
.fs4_c00172{font-size:53.440000pt;}
.fs1_c00172{font-size:64.000000pt;}
.fs2_c00172{font-size:85.440000pt;}
.fs3_c00172{font-size:128.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y19_c00172{bottom:50.880000pt;}
.y18_c00172{bottom:356.640000pt;}
.y17_c00172{bottom:382.320000pt;}
.y16_c00172{bottom:398.080000pt;}
.y15_c00172{bottom:416.640000pt;}
.y14_c00172{bottom:435.040000pt;}
.y13_c00172{bottom:453.440000pt;}
.y12_c00172{bottom:485.106880pt;}
.y11_c00172{bottom:521.910160pt;}
.y10_c00172{bottom:558.713440pt;}
.yf_c00172{bottom:595.516720pt;}
.ye_c00172{bottom:632.320000pt;}
.yd_c00172{bottom:677.600000pt;}
.yc_c00172{bottom:724.302480pt;}
.yb_c00172{bottom:761.020320pt;}
.ya_c00172{bottom:797.823600pt;}
.y9_c00172{bottom:834.626880pt;}
.y8_c00172{bottom:871.430160pt;}
.y7_c00172{bottom:908.233440pt;}
.y6_c00172{bottom:945.036720pt;}
.y5_c00172{bottom:1005.360000pt;}
.y4_c00172{bottom:1023.040000pt;}
.y3_c00172{bottom:1036.804000pt;}
.y2_c00172{bottom:1050.640000pt;}
.y1_c00172{bottom:1064.400000pt;}
.h3_c00172{height:47.085938pt;}
.h2_c00172{height:47.109375pt;}
.h8_c00172{height:52.448437pt;}
.h4_c00172{height:62.812500pt;}
.h7_c00172{height:64.500000pt;}
.h5_c00172{height:86.107500pt;}
.h6_c00172{height:129.000000pt;}
.h0_c00172{height:1122.560000pt;}
.h1_c00172{height:1122.666667pt;}
.w0_c00172{width:793.840000pt;}
.w1_c00172{width:794.000000pt;}
.x0_c00172{left:0.000000pt;}
.x3_c00172{left:113.440000pt;}
.x7_c00172{left:117.920000pt;}
.x6_c00172{left:135.600000pt;}
.x8_c00172{left:140.960000pt;}
.x5_c00172{left:174.474240pt;}
.x4_c00172{left:310.640000pt;}
.x9_c00172{left:330.720000pt;}
.x2_c00172{left:377.920000pt;}
.x1_c00172{left:396.960000pt;}
.xa_c00172{left:656.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_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_eb18b51b2ba7d39bf7bd052e.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.284668;font-style:normal;font-weight:normal;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_f62320fc9606427e9b21283f.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_f63a339659f43ddb68d7c3aa.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00173{vertical-align:-61.938000px;}
.v0_c00173{vertical-align:0.000000px;}
.ls10_c00173{letter-spacing:-0.661320px;}
.ls12_c00173{letter-spacing:-0.420840px;}
.ls11_c00173{letter-spacing:-0.360720px;}
.lse_c00173{letter-spacing:-0.300600px;}
.ls9_c00173{letter-spacing:-0.288000px;}
.lsb_c00173{letter-spacing:-0.240480px;}
.lsf_c00173{letter-spacing:-0.180360px;}
.lsd_c00173{letter-spacing:-0.120240px;}
.lsa_c00173{letter-spacing:-0.072000px;}
.lsc_c00173{letter-spacing:-0.060120px;}
.ls8_c00173{letter-spacing:0.000000px;}
.ls7_c00173{letter-spacing:0.060120px;}
.ls1_c00173{letter-spacing:0.072000px;}
.ls6_c00173{letter-spacing:0.090000px;}
.ls4_c00173{letter-spacing:0.120240px;}
.ls3_c00173{letter-spacing:0.144000px;}
.ls5_c00173{letter-spacing:0.180360px;}
.ls2_c00173{letter-spacing:16.920000px;}
.ls0_c00173{letter-spacing:319.518000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00173{word-spacing:-18.144000px;}
.ws0_c00173{word-spacing:-18.000000px;}
.ws2_c00173{word-spacing:-17.928000px;}
.ws8_c00173{word-spacing:-15.210360px;}
.wsb_c00173{word-spacing:-15.150240px;}
.wsa_c00173{word-spacing:-15.090120px;}
.ws9_c00173{word-spacing:-15.030000px;}
.ws4_c00173{word-spacing:-14.969880px;}
.ws5_c00173{word-spacing:-14.909760px;}
.ws7_c00173{word-spacing:-14.849640px;}
.ws3_c00173{word-spacing:-14.789520px;}
.ws6_c00173{word-spacing:-14.729400px;}
.ws21_c00173{word-spacing:-0.420840px;}
.ws25_c00173{word-spacing:-0.360720px;}
.ws17_c00173{word-spacing:-0.360000px;}
.ws19_c00173{word-spacing:-0.180360px;}
.wsd_c00173{word-spacing:-0.162000px;}
.ws18_c00173{word-spacing:-0.144000px;}
.ws20_c00173{word-spacing:-0.120240px;}
.wse_c00173{word-spacing:-0.072000px;}
.ws1c_c00173{word-spacing:-0.060120px;}
.wsc_c00173{word-spacing:0.000000px;}
.ws1b_c00173{word-spacing:0.060120px;}
.ws1e_c00173{word-spacing:0.120240px;}
.ws1a_c00173{word-spacing:0.180360px;}
.ws1f_c00173{word-spacing:0.240480px;}
.ws15_c00173{word-spacing:0.288000px;}
.ws1d_c00173{word-spacing:0.300600px;}
.ws23_c00173{word-spacing:0.360720px;}
.ws24_c00173{word-spacing:0.420840px;}
.ws22_c00173{word-spacing:0.661320px;}
.ws14_c00173{word-spacing:1.368000px;}
.ws16_c00173{word-spacing:1.440000px;}
.ws11_c00173{word-spacing:16.200000px;}
.ws10_c00173{word-spacing:16.488000px;}
.wsf_c00173{word-spacing:16.560000px;}
.ws13_c00173{word-spacing:16.848000px;}
.ws12_c00173{word-spacing:16.920000px;}
._0_c00173{margin-left:-1.080000px;}
._2_c00173{width:1.584000px;}
._1_c00173{width:16.560000px;}
.fc1_c00173{color:transparent;}
.fc0_c00173{color:rgb(0,0,0);}
.fs0_c00173{font-size:54.000000px;}
.fs2_c00173{font-size:60.120000px;}
.fs1_c00173{font-size:72.000000px;}
.y0_c00173{bottom:0.000000px;}
.yd_c00173{bottom:3.240000px;}
.y25_c00173{bottom:3.420000px;}
.y43_c00173{bottom:3.510000px;}
.y6b_c00173{bottom:57.240000px;}
.y6a_c00173{bottom:155.430000px;}
.y4a_c00173{bottom:170.730000px;}
.yf_c00173{bottom:175.770000px;}
.y13_c00173{bottom:175.950000px;}
.y5c_c00173{bottom:191.372220px;}
.y69_c00173{bottom:191.430000px;}
.y5b_c00173{bottom:208.656720px;}
.y68_c00173{bottom:208.661220px;}
.y5a_c00173{bottom:225.941220px;}
.y67_c00173{bottom:225.945720px;}
.y59_c00173{bottom:243.135540px;}
.y66_c00173{bottom:243.140040px;}
.y27_c00173{bottom:244.800000px;}
.y29_c00173{bottom:244.980000px;}
.y58_c00173{bottom:260.420040px;}
.y65_c00173{bottom:260.424540px;}
.y4b_c00173{bottom:262.080000px;}
.y4e_c00173{bottom:262.260000px;}
.y57_c00173{bottom:277.704540px;}
.y64_c00173{bottom:277.709040px;}
.y56_c00173{bottom:294.898860px;}
.y63_c00173{bottom:294.903360px;}
.y55_c00173{bottom:312.183360px;}
.y62_c00173{bottom:312.187860px;}
.y54_c00173{bottom:329.467860px;}
.y61_c00173{bottom:329.472360px;}
.y53_c00173{bottom:346.662180px;}
.y60_c00173{bottom:346.666680px;}
.y52_c00173{bottom:363.946680px;}
.y5f_c00173{bottom:363.951180px;}
.y51_c00173{bottom:381.231180px;}
.y5e_c00173{bottom:381.235680px;}
.y4d_c00173{bottom:398.245500px;}
.y50_c00173{bottom:398.425500px;}
.y5d_c00173{bottom:398.430000px;}
.y4c_c00173{bottom:415.530000px;}
.y4f_c00173{bottom:415.710000px;}
.y26_c00173{bottom:448.200000px;}
.y42_c00173{bottom:468.945720px;}
.y49_c00173{bottom:486.131220px;}
.y41_c00173{bottom:486.140040px;}
.y48_c00173{bottom:503.415720px;}
.y40_c00173{bottom:503.424540px;}
.y47_c00173{bottom:520.610040px;}
.y3f_c00173{bottom:520.618860px;}
.y46_c00173{bottom:537.894540px;}
.y3e_c00173{bottom:537.903360px;}
.y45_c00173{bottom:555.179040px;}
.y3d_c00173{bottom:555.187860px;}
.y30_c00173{bottom:569.592810px;}
.y44_c00173{bottom:572.373360px;}
.y37_c00173{bottom:572.377680px;}
.y3c_c00173{bottom:572.382180px;}
.y2f_c00173{bottom:589.657860px;}
.y36_c00173{bottom:589.662180px;}
.y3b_c00173{bottom:589.666680px;}
.y2e_c00173{bottom:606.942360px;}
.y35_c00173{bottom:606.946680px;}
.y3a_c00173{bottom:606.951180px;}
.y31_c00173{bottom:606.960000px;}
.y2d_c00173{bottom:624.136680px;}
.y34_c00173{bottom:624.141000px;}
.y39_c00173{bottom:624.145500px;}
.y2c_c00173{bottom:641.421180px;}
.y33_c00173{bottom:641.425500px;}
.y38_c00173{bottom:641.430000px;}
.y2b_c00173{bottom:658.705680px;}
.y32_c00173{bottom:658.710000px;}
.y28_c00173{bottom:675.720000px;}
.y2a_c00173{bottom:675.900000px;}
.ye_c00173{bottom:708.480000px;}
.y24_c00173{bottom:729.144540px;}
.y23_c00173{bottom:729.149040px;}
.y1b_c00173{bottom:746.429040px;}
.y22_c00173{bottom:746.433540px;}
.y1a_c00173{bottom:763.623360px;}
.y21_c00173{bottom:763.627860px;}
.y19_c00173{bottom:780.907860px;}
.y20_c00173{bottom:780.912360px;}
.y18_c00173{bottom:798.192360px;}
.y1f_c00173{bottom:798.196860px;}
.y17_c00173{bottom:815.386680px;}
.y1e_c00173{bottom:815.391180px;}
.y12_c00173{bottom:832.491180px;}
.y16_c00173{bottom:832.671180px;}
.y1d_c00173{bottom:832.675680px;}
.y11_c00173{bottom:849.685500px;}
.y15_c00173{bottom:849.865500px;}
.y1c_c00173{bottom:849.870000px;}
.y10_c00173{bottom:866.970000px;}
.y14_c00173{bottom:867.150000px;}
.yc_c00173{bottom:900.450000px;}
.yb_c00173{bottom:923.850000px;}
.ya_c00173{bottom:955.080000px;}
.y9_c00173{bottom:986.130000px;}
.y8_c00173{bottom:1017.180000px;}
.y7_c00173{bottom:1048.230000px;}
.y6_c00173{bottom:1079.100000px;}
.y5_c00173{bottom:1110.150000px;}
.y4_c00173{bottom:1131.030000px;}
.y3_c00173{bottom:1150.915500px;}
.y2_c00173{bottom:1166.400000px;}
.y1_c00173{bottom:1197.450000px;}
.h5_c00173{height:17.190000px;}
.h2_c00173{height:52.998047px;}
.h8_c00173{height:59.004492px;}
.h9_c00173{height:59.093052px;}
.h6_c00173{height:60.589687px;}
.h3_c00173{height:70.664062px;}
.hb_c00173{height:70.732822px;}
.h4_c00173{height:72.562500px;}
.h7_c00173{height:189.720000px;}
.ha_c00173{height:258.750000px;}
.hc_c00173{height:276.028500px;}
.h0_c00173{height:1262.880000px;}
.h1_c00173{height:1263.000000px;}
.w6_c00173{width:61.560000px;}
.w2_c00173{width:80.371500px;}
.w5_c00173{width:93.420000px;}
.w3_c00173{width:104.038500px;}
.w4_c00173{width:114.750000px;}
.w7_c00173{width:115.830000px;}
.w8_c00173{width:893.031000px;}
.w0_c00173{width:893.070000px;}
.w1_c00173{width:893.250000px;}
.x0_c00173{left:0.000000px;}
.x14_c00173{left:7.020000px;}
.xa_c00173{left:10.620000px;}
.xc_c00173{left:12.600000px;}
.x10_c00173{left:17.100000px;}
.x5_c00173{left:19.170000px;}
.xe_c00173{left:20.250000px;}
.x1b_c00173{left:21.420000px;}
.x8_c00173{left:24.660000px;}
.x4_c00173{left:120.600000px;}
.x2_c00173{left:127.620000px;}
.x11_c00173{left:131.220000px;}
.x12_c00173{left:135.172890px;}
.x13_c00173{left:138.960450px;}
.x3_c00173{left:156.600000px;}
.x6_c00173{left:203.130000px;}
.x15_c00173{left:210.150000px;}
.x7_c00173{left:309.420000px;}
.x16_c00173{left:316.440000px;}
.x9_c00173{left:426.420000px;}
.x17_c00173{left:433.350000px;}
.x1_c00173{left:446.580000px;}
.xb_c00173{left:522.090000px;}
.x18_c00173{left:529.020000px;}
.xd_c00173{left:585.900000px;}
.x19_c00173{left:592.920000px;}
.xf_c00173{left:681.570000px;}
.x1a_c00173{left:688.500000px;}
.x1c_c00173{left:696.330000px;}
.x1d_c00173{left:981.540000px;}
@media print{
.v1_c00173{vertical-align:-55.056000pt;}
.v0_c00173{vertical-align:0.000000pt;}
.ls10_c00173{letter-spacing:-0.587840pt;}
.ls12_c00173{letter-spacing:-0.374080pt;}
.ls11_c00173{letter-spacing:-0.320640pt;}
.lse_c00173{letter-spacing:-0.267200pt;}
.ls9_c00173{letter-spacing:-0.256000pt;}
.lsb_c00173{letter-spacing:-0.213760pt;}
.lsf_c00173{letter-spacing:-0.160320pt;}
.lsd_c00173{letter-spacing:-0.106880pt;}
.lsa_c00173{letter-spacing:-0.064000pt;}
.lsc_c00173{letter-spacing:-0.053440pt;}
.ls8_c00173{letter-spacing:0.000000pt;}
.ls7_c00173{letter-spacing:0.053440pt;}
.ls1_c00173{letter-spacing:0.064000pt;}
.ls6_c00173{letter-spacing:0.080000pt;}
.ls4_c00173{letter-spacing:0.106880pt;}
.ls3_c00173{letter-spacing:0.128000pt;}
.ls5_c00173{letter-spacing:0.160320pt;}
.ls2_c00173{letter-spacing:15.040000pt;}
.ls0_c00173{letter-spacing:284.016000pt;}
.ws1_c00173{word-spacing:-16.128000pt;}
.ws0_c00173{word-spacing:-16.000000pt;}
.ws2_c00173{word-spacing:-15.936000pt;}
.ws8_c00173{word-spacing:-13.520320pt;}
.wsb_c00173{word-spacing:-13.466880pt;}
.wsa_c00173{word-spacing:-13.413440pt;}
.ws9_c00173{word-spacing:-13.360000pt;}
.ws4_c00173{word-spacing:-13.306560pt;}
.ws5_c00173{word-spacing:-13.253120pt;}
.ws7_c00173{word-spacing:-13.199680pt;}
.ws3_c00173{word-spacing:-13.146240pt;}
.ws6_c00173{word-spacing:-13.092800pt;}
.ws21_c00173{word-spacing:-0.374080pt;}
.ws25_c00173{word-spacing:-0.320640pt;}
.ws17_c00173{word-spacing:-0.320000pt;}
.ws19_c00173{word-spacing:-0.160320pt;}
.wsd_c00173{word-spacing:-0.144000pt;}
.ws18_c00173{word-spacing:-0.128000pt;}
.ws20_c00173{word-spacing:-0.106880pt;}
.wse_c00173{word-spacing:-0.064000pt;}
.ws1c_c00173{word-spacing:-0.053440pt;}
.wsc_c00173{word-spacing:0.000000pt;}
.ws1b_c00173{word-spacing:0.053440pt;}
.ws1e_c00173{word-spacing:0.106880pt;}
.ws1a_c00173{word-spacing:0.160320pt;}
.ws1f_c00173{word-spacing:0.213760pt;}
.ws15_c00173{word-spacing:0.256000pt;}
.ws1d_c00173{word-spacing:0.267200pt;}
.ws23_c00173{word-spacing:0.320640pt;}
.ws24_c00173{word-spacing:0.374080pt;}
.ws22_c00173{word-spacing:0.587840pt;}
.ws14_c00173{word-spacing:1.216000pt;}
.ws16_c00173{word-spacing:1.280000pt;}
.ws11_c00173{word-spacing:14.400000pt;}
.ws10_c00173{word-spacing:14.656000pt;}
.wsf_c00173{word-spacing:14.720000pt;}
.ws13_c00173{word-spacing:14.976000pt;}
.ws12_c00173{word-spacing:15.040000pt;}
._0_c00173{margin-left:-0.960000pt;}
._2_c00173{width:1.408000pt;}
._1_c00173{width:14.720000pt;}
.fs0_c00173{font-size:48.000000pt;}
.fs2_c00173{font-size:53.440000pt;}
.fs1_c00173{font-size:64.000000pt;}
.y0_c00173{bottom:0.000000pt;}
.yd_c00173{bottom:2.880000pt;}
.y25_c00173{bottom:3.040000pt;}
.y43_c00173{bottom:3.120000pt;}
.y6b_c00173{bottom:50.880000pt;}
.y6a_c00173{bottom:138.160000pt;}
.y4a_c00173{bottom:151.760000pt;}
.yf_c00173{bottom:156.240000pt;}
.y13_c00173{bottom:156.400000pt;}
.y5c_c00173{bottom:170.108640pt;}
.y69_c00173{bottom:170.160000pt;}
.y5b_c00173{bottom:185.472640pt;}
.y68_c00173{bottom:185.476640pt;}
.y5a_c00173{bottom:200.836640pt;}
.y67_c00173{bottom:200.840640pt;}
.y59_c00173{bottom:216.120480pt;}
.y66_c00173{bottom:216.124480pt;}
.y27_c00173{bottom:217.600000pt;}
.y29_c00173{bottom:217.760000pt;}
.y58_c00173{bottom:231.484480pt;}
.y65_c00173{bottom:231.488480pt;}
.y4b_c00173{bottom:232.960000pt;}
.y4e_c00173{bottom:233.120000pt;}
.y57_c00173{bottom:246.848480pt;}
.y64_c00173{bottom:246.852480pt;}
.y56_c00173{bottom:262.132320pt;}
.y63_c00173{bottom:262.136320pt;}
.y55_c00173{bottom:277.496320pt;}
.y62_c00173{bottom:277.500320pt;}
.y54_c00173{bottom:292.860320pt;}
.y61_c00173{bottom:292.864320pt;}
.y53_c00173{bottom:308.144160pt;}
.y60_c00173{bottom:308.148160pt;}
.y52_c00173{bottom:323.508160pt;}
.y5f_c00173{bottom:323.512160pt;}
.y51_c00173{bottom:338.872160pt;}
.y5e_c00173{bottom:338.876160pt;}
.y4d_c00173{bottom:353.996000pt;}
.y50_c00173{bottom:354.156000pt;}
.y5d_c00173{bottom:354.160000pt;}
.y4c_c00173{bottom:369.360000pt;}
.y4f_c00173{bottom:369.520000pt;}
.y26_c00173{bottom:398.400000pt;}
.y42_c00173{bottom:416.840640pt;}
.y49_c00173{bottom:432.116640pt;}
.y41_c00173{bottom:432.124480pt;}
.y48_c00173{bottom:447.480640pt;}
.y40_c00173{bottom:447.488480pt;}
.y47_c00173{bottom:462.764480pt;}
.y3f_c00173{bottom:462.772320pt;}
.y46_c00173{bottom:478.128480pt;}
.y3e_c00173{bottom:478.136320pt;}
.y45_c00173{bottom:493.492480pt;}
.y3d_c00173{bottom:493.500320pt;}
.y30_c00173{bottom:506.304720pt;}
.y44_c00173{bottom:508.776320pt;}
.y37_c00173{bottom:508.780160pt;}
.y3c_c00173{bottom:508.784160pt;}
.y2f_c00173{bottom:524.140320pt;}
.y36_c00173{bottom:524.144160pt;}
.y3b_c00173{bottom:524.148160pt;}
.y2e_c00173{bottom:539.504320pt;}
.y35_c00173{bottom:539.508160pt;}
.y3a_c00173{bottom:539.512160pt;}
.y31_c00173{bottom:539.520000pt;}
.y2d_c00173{bottom:554.788160pt;}
.y34_c00173{bottom:554.792000pt;}
.y39_c00173{bottom:554.796000pt;}
.y2c_c00173{bottom:570.152160pt;}
.y33_c00173{bottom:570.156000pt;}
.y38_c00173{bottom:570.160000pt;}
.y2b_c00173{bottom:585.516160pt;}
.y32_c00173{bottom:585.520000pt;}
.y28_c00173{bottom:600.640000pt;}
.y2a_c00173{bottom:600.800000pt;}
.ye_c00173{bottom:629.760000pt;}
.y24_c00173{bottom:648.128480pt;}
.y23_c00173{bottom:648.132480pt;}
.y1b_c00173{bottom:663.492480pt;}
.y22_c00173{bottom:663.496480pt;}
.y1a_c00173{bottom:678.776320pt;}
.y21_c00173{bottom:678.780320pt;}
.y19_c00173{bottom:694.140320pt;}
.y20_c00173{bottom:694.144320pt;}
.y18_c00173{bottom:709.504320pt;}
.y1f_c00173{bottom:709.508320pt;}
.y17_c00173{bottom:724.788160pt;}
.y1e_c00173{bottom:724.792160pt;}
.y12_c00173{bottom:739.992160pt;}
.y16_c00173{bottom:740.152160pt;}
.y1d_c00173{bottom:740.156160pt;}
.y11_c00173{bottom:755.276000pt;}
.y15_c00173{bottom:755.436000pt;}
.y1c_c00173{bottom:755.440000pt;}
.y10_c00173{bottom:770.640000pt;}
.y14_c00173{bottom:770.800000pt;}
.yc_c00173{bottom:800.400000pt;}
.yb_c00173{bottom:821.200000pt;}
.ya_c00173{bottom:848.960000pt;}
.y9_c00173{bottom:876.560000pt;}
.y8_c00173{bottom:904.160000pt;}
.y7_c00173{bottom:931.760000pt;}
.y6_c00173{bottom:959.200000pt;}
.y5_c00173{bottom:986.800000pt;}
.y4_c00173{bottom:1005.360000pt;}
.y3_c00173{bottom:1023.036000pt;}
.y2_c00173{bottom:1036.800000pt;}
.y1_c00173{bottom:1064.400000pt;}
.h5_c00173{height:15.280000pt;}
.h2_c00173{height:47.109375pt;}
.h8_c00173{height:52.448437pt;}
.h9_c00173{height:52.527158pt;}
.h6_c00173{height:53.857500pt;}
.h3_c00173{height:62.812500pt;}
.hb_c00173{height:62.873620pt;}
.h4_c00173{height:64.500000pt;}
.h7_c00173{height:168.640000pt;}
.ha_c00173{height:230.000000pt;}
.hc_c00173{height:245.358667pt;}
.h0_c00173{height:1122.560000pt;}
.h1_c00173{height:1122.666667pt;}
.w6_c00173{width:54.720000pt;}
.w2_c00173{width:71.441333pt;}
.w5_c00173{width:83.040000pt;}
.w3_c00173{width:92.478667pt;}
.w4_c00173{width:102.000000pt;}
.w7_c00173{width:102.960000pt;}
.w8_c00173{width:793.805333pt;}
.w0_c00173{width:793.840000pt;}
.w1_c00173{width:794.000000pt;}
.x0_c00173{left:0.000000pt;}
.x14_c00173{left:6.240000pt;}
.xa_c00173{left:9.440000pt;}
.xc_c00173{left:11.200000pt;}
.x10_c00173{left:15.200000pt;}
.x5_c00173{left:17.040000pt;}
.xe_c00173{left:18.000000pt;}
.x1b_c00173{left:19.040000pt;}
.x8_c00173{left:21.920000pt;}
.x4_c00173{left:107.200000pt;}
.x2_c00173{left:113.440000pt;}
.x11_c00173{left:116.640000pt;}
.x12_c00173{left:120.153680pt;}
.x13_c00173{left:123.520400pt;}
.x3_c00173{left:139.200000pt;}
.x6_c00173{left:180.560000pt;}
.x15_c00173{left:186.800000pt;}
.x7_c00173{left:275.040000pt;}
.x16_c00173{left:281.280000pt;}
.x9_c00173{left:379.040000pt;}
.x17_c00173{left:385.200000pt;}
.x1_c00173{left:396.960000pt;}
.xb_c00173{left:464.080000pt;}
.x18_c00173{left:470.240000pt;}
.xd_c00173{left:520.800000pt;}
.x19_c00173{left:527.040000pt;}
.xf_c00173{left:605.840000pt;}
.x1a_c00173{left:612.000000pt;}
.x1c_c00173{left:618.960000pt;}
.x1d_c00173{left:872.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_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_c3f99788889e623c1b4ae9e0.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_7b74a12726ba60059ef86b61.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_b261cc61374f13ea236700ef.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c00174{letter-spacing:-0.661320px;}
.lsc_c00174{letter-spacing:-0.480960px;}
.lsb_c00174{letter-spacing:-0.420840px;}
.lsa_c00174{letter-spacing:-0.240480px;}
.ls7_c00174{letter-spacing:-0.180360px;}
.ls8_c00174{letter-spacing:-0.120240px;}
.ls6_c00174{letter-spacing:-0.108000px;}
.lse_c00174{letter-spacing:-0.095760px;}
.ls9_c00174{letter-spacing:-0.060120px;}
.ls5_c00174{letter-spacing:0.000000px;}
.ls3_c00174{letter-spacing:0.060120px;}
.ls2_c00174{letter-spacing:0.090000px;}
.ls4_c00174{letter-spacing:0.099000px;}
.ls0_c00174{letter-spacing:0.120240px;}
.ls1_c00174{letter-spacing:0.180360px;}
.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;}
}
.ws5_c00174{word-spacing:-15.210360px;}
.ws6_c00174{word-spacing:-15.150240px;}
.ws4_c00174{word-spacing:-15.030000px;}
.ws2_c00174{word-spacing:-14.969880px;}
.ws1_c00174{word-spacing:-14.909760px;}
.ws0_c00174{word-spacing:-14.849640px;}
.ws3_c00174{word-spacing:-14.789520px;}
.ws7_c00174{word-spacing:-14.549040px;}
.ws8_c00174{word-spacing:-14.368680px;}
.ws9_c00174{word-spacing:-11.874240px;}
.ws13_c00174{word-spacing:-0.420840px;}
.ws12_c00174{word-spacing:-0.360720px;}
.wsd_c00174{word-spacing:-0.180360px;}
.wse_c00174{word-spacing:-0.120240px;}
.ws18_c00174{word-spacing:-0.060120px;}
.wsa_c00174{word-spacing:0.000000px;}
.ws10_c00174{word-spacing:0.060120px;}
.ws11_c00174{word-spacing:0.120240px;}
.wsc_c00174{word-spacing:0.162000px;}
.ws14_c00174{word-spacing:0.180360px;}
.wsf_c00174{word-spacing:0.240480px;}
.wsb_c00174{word-spacing:0.270000px;}
.ws15_c00174{word-spacing:0.300600px;}
.ws16_c00174{word-spacing:0.420840px;}
.ws17_c00174{word-spacing:0.541080px;}
.ws19_c00174{word-spacing:0.661320px;}
._1_c00174{margin-left:-1.058400px;}
._0_c00174{width:1.220400px;}
.fc1_c00174{color:transparent;}
.fc0_c00174{color:rgb(0,0,0);}
.fs3_c00174{font-size:47.880000px;}
.fs0_c00174{font-size:54.000000px;}
.fs2_c00174{font-size:60.120000px;}
.fs1_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y59_c00174{bottom:3.420000px;}
.y18_c00174{bottom:3.510000px;}
.y63_c00174{bottom:57.240000px;}
.y27_c00174{bottom:107.010000px;}
.y4c_c00174{bottom:193.050000px;}
.y4e_c00174{bottom:193.230000px;}
.y62_c00174{bottom:209.430000px;}
.y1a_c00174{bottom:210.240000px;}
.y7_c00174{bottom:210.330000px;}
.y1c_c00174{bottom:210.420000px;}
.y9_c00174{bottom:210.510000px;}
.y4b_c00174{bottom:224.010000px;}
.y31_c00174{bottom:227.520000px;}
.y33_c00174{bottom:227.700000px;}
.y61_c00174{bottom:244.670040px;}
.y58_c00174{bottom:244.674540px;}
.y60_c00174{bottom:261.954540px;}
.y57_c00174{bottom:261.959040px;}
.y5f_c00174{bottom:279.148860px;}
.y56_c00174{bottom:279.153360px;}
.y5e_c00174{bottom:296.433360px;}
.y55_c00174{bottom:296.437860px;}
.y5d_c00174{bottom:313.717860px;}
.y54_c00174{bottom:313.722360px;}
.y5c_c00174{bottom:330.912180px;}
.y53_c00174{bottom:330.916680px;}
.y5b_c00174{bottom:348.196680px;}
.y52_c00174{bottom:348.201180px;}
.y5a_c00174{bottom:365.481180px;}
.y51_c00174{bottom:365.485680px;}
.y50_c00174{bottom:382.675500px;}
.y4d_c00174{bottom:399.780000px;}
.y4f_c00174{bottom:399.960000px;}
.y30_c00174{bottom:432.450000px;}
.y4a_c00174{bottom:453.191220px;}
.y46_c00174{bottom:453.235680px;}
.y49_c00174{bottom:470.385540px;}
.y45_c00174{bottom:470.421180px;}
.y48_c00174{bottom:487.670040px;}
.y44_c00174{bottom:487.705680px;}
.y47_c00174{bottom:504.864360px;}
.y43_c00174{bottom:504.891000px;}
.y3b_c00174{bottom:522.148860px;}
.y42_c00174{bottom:522.175500px;}
.y3a_c00174{bottom:539.433360px;}
.y41_c00174{bottom:539.442360px;}
.y39_c00174{bottom:556.627680px;}
.y40_c00174{bottom:556.636680px;}
.y38_c00174{bottom:573.912180px;}
.y3f_c00174{bottom:573.921180px;}
.y37_c00174{bottom:591.196680px;}
.y3e_c00174{bottom:591.205680px;}
.y36_c00174{bottom:608.391000px;}
.y3d_c00174{bottom:608.400000px;}
.y35_c00174{bottom:625.675500px;}
.y32_c00174{bottom:642.780000px;}
.y34_c00174{bottom:642.960000px;}
.y3c_c00174{bottom:660.150000px;}
.y19_c00174{bottom:675.450000px;}
.y2f_c00174{bottom:696.105540px;}
.y2e_c00174{bottom:713.390040px;}
.y2d_c00174{bottom:730.674540px;}
.y2c_c00174{bottom:747.868860px;}
.y29_c00174{bottom:747.895500px;}
.y2b_c00174{bottom:765.153360px;}
.y28_c00174{bottom:765.180000px;}
.y2a_c00174{bottom:782.437860px;}
.y26_c00174{bottom:782.455680px;}
.y21_c00174{bottom:799.632180px;}
.y25_c00174{bottom:799.636680px;}
.y20_c00174{bottom:816.916680px;}
.y24_c00174{bottom:816.921180px;}
.y1f_c00174{bottom:834.201180px;}
.y23_c00174{bottom:834.205680px;}
.y1e_c00174{bottom:851.395500px;}
.y22_c00174{bottom:851.400000px;}
.y1b_c00174{bottom:868.500000px;}
.y1d_c00174{bottom:868.680000px;}
.y6_c00174{bottom:901.170000px;}
.y17_c00174{bottom:921.843360px;}
.y16_c00174{bottom:939.127860px;}
.y15_c00174{bottom:956.412360px;}
.y14_c00174{bottom:973.606680px;}
.y10_c00174{bottom:990.873360px;}
.y13_c00174{bottom:990.891180px;}
.yf_c00174{bottom:1008.157860px;}
.y12_c00174{bottom:1008.175680px;}
.ye_c00174{bottom:1025.352180px;}
.y11_c00174{bottom:1025.370000px;}
.yd_c00174{bottom:1042.636680px;}
.yc_c00174{bottom:1059.921180px;}
.yb_c00174{bottom:1077.115500px;}
.y8_c00174{bottom:1094.220000px;}
.ya_c00174{bottom:1094.400000px;}
.y5_c00174{bottom:1131.030000px;}
.y4_c00174{bottom:1150.920000px;}
.y3_c00174{bottom:1166.404500px;}
.y2_c00174{bottom:1181.970000px;}
.y1_c00174{bottom:1197.450000px;}
.hc_c00174{height:46.968223px;}
.h3_c00174{height:52.971680px;}
.h2_c00174{height:52.998047px;}
.hb_c00174{height:58.975137px;}
.h7_c00174{height:59.004492px;}
.h10_c00174{height:59.022492px;}
.hf_c00174{height:59.039772px;}
.he_c00174{height:59.040492px;}
.h9_c00174{height:59.057772px;}
.hd_c00174{height:59.075052px;}
.h6_c00174{height:60.589687px;}
.h4_c00174{height:70.664062px;}
.h11_c00174{height:207.001500px;}
.h8_c00174{height:224.190000px;}
.h5_c00174{height:224.281500px;}
.ha_c00174{height:241.470000px;}
.h0_c00174{height:1262.880000px;}
.h1_c00174{height:1263.000000px;}
.w6_c00174{width:61.560000px;}
.w2_c00174{width:80.371500px;}
.w5_c00174{width:93.420000px;}
.w3_c00174{width:104.038500px;}
.w4_c00174{width:114.750000px;}
.w7_c00174{width:115.830000px;}
.w8_c00174{width:893.031000px;}
.w0_c00174{width:893.070000px;}
.w1_c00174{width:893.250000px;}
.x0_c00174{left:0.000000px;}
.x8_c00174{left:7.020000px;}
.x5_c00174{left:13.950000px;}
.x13_c00174{left:20.610000px;}
.x16_c00174{left:24.750000px;}
.x18_c00174{left:59.220000px;}
.x14_c00174{left:110.340000px;}
.x4_c00174{left:120.600000px;}
.x3_c00174{left:127.620000px;}
.x6_c00174{left:138.960000px;}
.x7_c00174{left:203.130000px;}
.x9_c00174{left:210.150000px;}
.xa_c00174{left:309.420000px;}
.xb_c00174{left:316.440000px;}
.x17_c00174{left:359.010000px;}
.x2_c00174{left:425.160000px;}
.xc_c00174{left:426.420000px;}
.xd_c00174{left:433.350000px;}
.x1_c00174{left:446.580000px;}
.xe_c00174{left:522.090000px;}
.x15_c00174{left:529.020000px;}
.xf_c00174{left:585.900000px;}
.x10_c00174{left:592.920000px;}
.x11_c00174{left:681.570000px;}
.x12_c00174{left:688.500000px;}
.x19_c00174{left:696.330000px;}
.x1b_c00174{left:738.540000px;}
.x1a_c00174{left:981.540000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.lsd_c00174{letter-spacing:-0.587840pt;}
.lsc_c00174{letter-spacing:-0.427520pt;}
.lsb_c00174{letter-spacing:-0.374080pt;}
.lsa_c00174{letter-spacing:-0.213760pt;}
.ls7_c00174{letter-spacing:-0.160320pt;}
.ls8_c00174{letter-spacing:-0.106880pt;}
.ls6_c00174{letter-spacing:-0.096000pt;}
.lse_c00174{letter-spacing:-0.085120pt;}
.ls9_c00174{letter-spacing:-0.053440pt;}
.ls5_c00174{letter-spacing:0.000000pt;}
.ls3_c00174{letter-spacing:0.053440pt;}
.ls2_c00174{letter-spacing:0.080000pt;}
.ls4_c00174{letter-spacing:0.088000pt;}
.ls0_c00174{letter-spacing:0.106880pt;}
.ls1_c00174{letter-spacing:0.160320pt;}
.ws5_c00174{word-spacing:-13.520320pt;}
.ws6_c00174{word-spacing:-13.466880pt;}
.ws4_c00174{word-spacing:-13.360000pt;}
.ws2_c00174{word-spacing:-13.306560pt;}
.ws1_c00174{word-spacing:-13.253120pt;}
.ws0_c00174{word-spacing:-13.199680pt;}
.ws3_c00174{word-spacing:-13.146240pt;}
.ws7_c00174{word-spacing:-12.932480pt;}
.ws8_c00174{word-spacing:-12.772160pt;}
.ws9_c00174{word-spacing:-10.554880pt;}
.ws13_c00174{word-spacing:-0.374080pt;}
.ws12_c00174{word-spacing:-0.320640pt;}
.wsd_c00174{word-spacing:-0.160320pt;}
.wse_c00174{word-spacing:-0.106880pt;}
.ws18_c00174{word-spacing:-0.053440pt;}
.wsa_c00174{word-spacing:0.000000pt;}
.ws10_c00174{word-spacing:0.053440pt;}
.ws11_c00174{word-spacing:0.106880pt;}
.wsc_c00174{word-spacing:0.144000pt;}
.ws14_c00174{word-spacing:0.160320pt;}
.wsf_c00174{word-spacing:0.213760pt;}
.wsb_c00174{word-spacing:0.240000pt;}
.ws15_c00174{word-spacing:0.267200pt;}
.ws16_c00174{word-spacing:0.374080pt;}
.ws17_c00174{word-spacing:0.480960pt;}
.ws19_c00174{word-spacing:0.587840pt;}
._1_c00174{margin-left:-0.940800pt;}
._0_c00174{width:1.084800pt;}
.fs3_c00174{font-size:42.560000pt;}
.fs0_c00174{font-size:48.000000pt;}
.fs2_c00174{font-size:53.440000pt;}
.fs1_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y59_c00174{bottom:3.040000pt;}
.y18_c00174{bottom:3.120000pt;}
.y63_c00174{bottom:50.880000pt;}
.y27_c00174{bottom:95.120000pt;}
.y4c_c00174{bottom:171.600000pt;}
.y4e_c00174{bottom:171.760000pt;}
.y62_c00174{bottom:186.160000pt;}
.y1a_c00174{bottom:186.880000pt;}
.y7_c00174{bottom:186.960000pt;}
.y1c_c00174{bottom:187.040000pt;}
.y9_c00174{bottom:187.120000pt;}
.y4b_c00174{bottom:199.120000pt;}
.y31_c00174{bottom:202.240000pt;}
.y33_c00174{bottom:202.400000pt;}
.y61_c00174{bottom:217.484480pt;}
.y58_c00174{bottom:217.488480pt;}
.y60_c00174{bottom:232.848480pt;}
.y57_c00174{bottom:232.852480pt;}
.y5f_c00174{bottom:248.132320pt;}
.y56_c00174{bottom:248.136320pt;}
.y5e_c00174{bottom:263.496320pt;}
.y55_c00174{bottom:263.500320pt;}
.y5d_c00174{bottom:278.860320pt;}
.y54_c00174{bottom:278.864320pt;}
.y5c_c00174{bottom:294.144160pt;}
.y53_c00174{bottom:294.148160pt;}
.y5b_c00174{bottom:309.508160pt;}
.y52_c00174{bottom:309.512160pt;}
.y5a_c00174{bottom:324.872160pt;}
.y51_c00174{bottom:324.876160pt;}
.y50_c00174{bottom:340.156000pt;}
.y4d_c00174{bottom:355.360000pt;}
.y4f_c00174{bottom:355.520000pt;}
.y30_c00174{bottom:384.400000pt;}
.y4a_c00174{bottom:402.836640pt;}
.y46_c00174{bottom:402.876160pt;}
.y49_c00174{bottom:418.120480pt;}
.y45_c00174{bottom:418.152160pt;}
.y48_c00174{bottom:433.484480pt;}
.y44_c00174{bottom:433.516160pt;}
.y47_c00174{bottom:448.768320pt;}
.y43_c00174{bottom:448.792000pt;}
.y3b_c00174{bottom:464.132320pt;}
.y42_c00174{bottom:464.156000pt;}
.y3a_c00174{bottom:479.496320pt;}
.y41_c00174{bottom:479.504320pt;}
.y39_c00174{bottom:494.780160pt;}
.y40_c00174{bottom:494.788160pt;}
.y38_c00174{bottom:510.144160pt;}
.y3f_c00174{bottom:510.152160pt;}
.y37_c00174{bottom:525.508160pt;}
.y3e_c00174{bottom:525.516160pt;}
.y36_c00174{bottom:540.792000pt;}
.y3d_c00174{bottom:540.800000pt;}
.y35_c00174{bottom:556.156000pt;}
.y32_c00174{bottom:571.360000pt;}
.y34_c00174{bottom:571.520000pt;}
.y3c_c00174{bottom:586.800000pt;}
.y19_c00174{bottom:600.400000pt;}
.y2f_c00174{bottom:618.760480pt;}
.y2e_c00174{bottom:634.124480pt;}
.y2d_c00174{bottom:649.488480pt;}
.y2c_c00174{bottom:664.772320pt;}
.y29_c00174{bottom:664.796000pt;}
.y2b_c00174{bottom:680.136320pt;}
.y28_c00174{bottom:680.160000pt;}
.y2a_c00174{bottom:695.500320pt;}
.y26_c00174{bottom:695.516160pt;}
.y21_c00174{bottom:710.784160pt;}
.y25_c00174{bottom:710.788160pt;}
.y20_c00174{bottom:726.148160pt;}
.y24_c00174{bottom:726.152160pt;}
.y1f_c00174{bottom:741.512160pt;}
.y23_c00174{bottom:741.516160pt;}
.y1e_c00174{bottom:756.796000pt;}
.y22_c00174{bottom:756.800000pt;}
.y1b_c00174{bottom:772.000000pt;}
.y1d_c00174{bottom:772.160000pt;}
.y6_c00174{bottom:801.040000pt;}
.y17_c00174{bottom:819.416320pt;}
.y16_c00174{bottom:834.780320pt;}
.y15_c00174{bottom:850.144320pt;}
.y14_c00174{bottom:865.428160pt;}
.y10_c00174{bottom:880.776320pt;}
.y13_c00174{bottom:880.792160pt;}
.yf_c00174{bottom:896.140320pt;}
.y12_c00174{bottom:896.156160pt;}
.ye_c00174{bottom:911.424160pt;}
.y11_c00174{bottom:911.440000pt;}
.yd_c00174{bottom:926.788160pt;}
.yc_c00174{bottom:942.152160pt;}
.yb_c00174{bottom:957.436000pt;}
.y8_c00174{bottom:972.640000pt;}
.ya_c00174{bottom:972.800000pt;}
.y5_c00174{bottom:1005.360000pt;}
.y4_c00174{bottom:1023.040000pt;}
.y3_c00174{bottom:1036.804000pt;}
.y2_c00174{bottom:1050.640000pt;}
.y1_c00174{bottom:1064.400000pt;}
.hc_c00174{height:41.749531pt;}
.h3_c00174{height:47.085938pt;}
.h2_c00174{height:47.109375pt;}
.hb_c00174{height:52.422344pt;}
.h7_c00174{height:52.448437pt;}
.h10_c00174{height:52.464438pt;}
.hf_c00174{height:52.479797pt;}
.he_c00174{height:52.480438pt;}
.h9_c00174{height:52.495798pt;}
.hd_c00174{height:52.511157pt;}
.h6_c00174{height:53.857500pt;}
.h4_c00174{height:62.812500pt;}
.h11_c00174{height:184.001333pt;}
.h8_c00174{height:199.280000pt;}
.h5_c00174{height:199.361333pt;}
.ha_c00174{height:214.640000pt;}
.h0_c00174{height:1122.560000pt;}
.h1_c00174{height:1122.666667pt;}
.w6_c00174{width:54.720000pt;}
.w2_c00174{width:71.441333pt;}
.w5_c00174{width:83.040000pt;}
.w3_c00174{width:92.478667pt;}
.w4_c00174{width:102.000000pt;}
.w7_c00174{width:102.960000pt;}
.w8_c00174{width:793.805333pt;}
.w0_c00174{width:793.840000pt;}
.w1_c00174{width:794.000000pt;}
.x0_c00174{left:0.000000pt;}
.x8_c00174{left:6.240000pt;}
.x5_c00174{left:12.400000pt;}
.x13_c00174{left:18.320000pt;}
.x16_c00174{left:22.000000pt;}
.x18_c00174{left:52.640000pt;}
.x14_c00174{left:98.080000pt;}
.x4_c00174{left:107.200000pt;}
.x3_c00174{left:113.440000pt;}
.x6_c00174{left:123.520000pt;}
.x7_c00174{left:180.560000pt;}
.x9_c00174{left:186.800000pt;}
.xa_c00174{left:275.040000pt;}
.xb_c00174{left:281.280000pt;}
.x17_c00174{left:319.120000pt;}
.x2_c00174{left:377.920000pt;}
.xc_c00174{left:379.040000pt;}
.xd_c00174{left:385.200000pt;}
.x1_c00174{left:396.960000pt;}
.xe_c00174{left:464.080000pt;}
.x15_c00174{left:470.240000pt;}
.xf_c00174{left:520.800000pt;}
.x10_c00174{left:527.040000pt;}
.x11_c00174{left:605.840000pt;}
.x12_c00174{left:612.000000pt;}
.x19_c00174{left:618.960000pt;}
.x1b_c00174{left:656.480000pt;}
.x1a_c00174{left:872.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_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_e10dea0bc7d4e902c77b8432.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_22c9e8144fa8b517cf7277ab.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_57b0585657054175541f37a5.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00175{vertical-align:-61.938000px;}
.v0_c00175{vertical-align:0.000000px;}
.lsa_c00175{letter-spacing:-0.420840px;}
.lsd_c00175{letter-spacing:-0.360720px;}
.ls10_c00175{letter-spacing:-0.360000px;}
.ls12_c00175{letter-spacing:-0.288000px;}
.lse_c00175{letter-spacing:-0.240480px;}
.ls7_c00175{letter-spacing:-0.180360px;}
.ls11_c00175{letter-spacing:-0.144000px;}
.ls9_c00175{letter-spacing:-0.120240px;}
.lsb_c00175{letter-spacing:-0.095760px;}
.ls8_c00175{letter-spacing:-0.060120px;}
.ls6_c00175{letter-spacing:0.000000px;}
.ls1_c00175{letter-spacing:0.060120px;}
.ls4_c00175{letter-spacing:0.067320px;}
.ls5_c00175{letter-spacing:0.072000px;}
.ls2_c00175{letter-spacing:0.090000px;}
.lsc_c00175{letter-spacing:0.120240px;}
.lsf_c00175{letter-spacing:0.144000px;}
.ls3_c00175{letter-spacing:0.180360px;}
.ls0_c00175{letter-spacing:319.518000px;}
.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;}
}
.wsa_c00175{word-spacing:-18.072000px;}
.wsb_c00175{word-spacing:-18.000000px;}
.ws3_c00175{word-spacing:-15.210360px;}
.ws6_c00175{word-spacing:-15.150240px;}
.ws4_c00175{word-spacing:-15.030000px;}
.ws1_c00175{word-spacing:-14.969880px;}
.ws2_c00175{word-spacing:-14.909760px;}
.ws0_c00175{word-spacing:-14.849640px;}
.ws9_c00175{word-spacing:-14.789520px;}
.ws7_c00175{word-spacing:-14.669280px;}
.ws8_c00175{word-spacing:-11.970000px;}
.ws5_c00175{word-spacing:-11.874240px;}
.ws10_c00175{word-spacing:-0.420840px;}
.ws11_c00175{word-spacing:-0.180360px;}
.wsd_c00175{word-spacing:-0.162000px;}
.ws31_c00175{word-spacing:-0.144000px;}
.ws17_c00175{word-spacing:-0.120240px;}
.ws21_c00175{word-spacing:-0.072000px;}
.wse_c00175{word-spacing:-0.060120px;}
.wsc_c00175{word-spacing:0.000000px;}
.ws14_c00175{word-spacing:0.060120px;}
.ws13_c00175{word-spacing:0.120240px;}
.ws25_c00175{word-spacing:0.144000px;}
.wsf_c00175{word-spacing:0.180360px;}
.ws16_c00175{word-spacing:0.240480px;}
.ws30_c00175{word-spacing:0.288000px;}
.ws12_c00175{word-spacing:0.300600px;}
.ws32_c00175{word-spacing:0.360000px;}
.ws15_c00175{word-spacing:0.541080px;}
.ws1a_c00175{word-spacing:3.168000px;}
.ws1b_c00175{word-spacing:3.240000px;}
.ws24_c00175{word-spacing:3.528000px;}
.ws23_c00175{word-spacing:3.600000px;}
.ws29_c00175{word-spacing:4.608000px;}
.ws28_c00175{word-spacing:4.680000px;}
.ws1d_c00175{word-spacing:7.056000px;}
.ws1f_c00175{word-spacing:7.128000px;}
.ws1c_c00175{word-spacing:7.200000px;}
.ws2f_c00175{word-spacing:7.488000px;}
.ws1e_c00175{word-spacing:7.560000px;}
.ws22_c00175{word-spacing:7.848000px;}
.ws20_c00175{word-spacing:7.920000px;}
.ws19_c00175{word-spacing:8.208000px;}
.ws18_c00175{word-spacing:8.640000px;}
.ws27_c00175{word-spacing:17.928000px;}
.ws26_c00175{word-spacing:18.000000px;}
.ws2b_c00175{word-spacing:20.808000px;}
.ws2a_c00175{word-spacing:20.880000px;}
.ws2e_c00175{word-spacing:22.608000px;}
.ws2d_c00175{word-spacing:22.968000px;}
.ws2c_c00175{word-spacing:23.040000px;}
._1_c00175{margin-left:-1.076148px;}
._0_c00175{width:1.022040px;}
._3_c00175{width:3.024000px;}
._4_c00175{width:7.272000px;}
._2_c00175{width:8.280000px;}
._5_c00175{width:20.880000px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs3_c00175{font-size:47.880000px;}
.fs0_c00175{font-size:54.000000px;}
.fs2_c00175{font-size:60.120000px;}
.fs1_c00175{font-size:72.000000px;}
.y0_c00175{bottom:0.000000px;}
.y11_c00175{bottom:3.510000px;}
.y3f_c00175{bottom:57.240000px;}
.y3e_c00175{bottom:158.130000px;}
.y6_c00175{bottom:158.580000px;}
.y8_c00175{bottom:158.760000px;}
.y3d_c00175{bottom:189.180000px;}
.y3c_c00175{bottom:220.230000px;}
.y3b_c00175{bottom:251.280000px;}
.y3a_c00175{bottom:282.330000px;}
.y39_c00175{bottom:313.380000px;}
.y13_c00175{bottom:331.020000px;}
.y15_c00175{bottom:331.200000px;}
.y38_c00175{bottom:344.430000px;}
.y37_c00175{bottom:375.480000px;}
.y36_c00175{bottom:406.530000px;}
.y35_c00175{bottom:437.580000px;}
.y34_c00175{bottom:468.630000px;}
.y33_c00175{bottom:499.680000px;}
.y32_c00175{bottom:530.730000px;}
.y31_c00175{bottom:561.780000px;}
.y30_c00175{bottom:590.400000px;}
.y12_c00175{bottom:606.420000px;}
.y2d_c00175{bottom:627.210000px;}
.y2c_c00175{bottom:644.391000px;}
.y2b_c00175{bottom:661.675500px;}
.y2a_c00175{bottom:678.946680px;}
.y29_c00175{bottom:696.141000px;}
.y28_c00175{bottom:713.425500px;}
.y27_c00175{bottom:730.687860px;}
.y26_c00175{bottom:747.882180px;}
.y25_c00175{bottom:765.166680px;}
.y2f_c00175{bottom:782.424540px;}
.y24_c00175{bottom:782.451180px;}
.y2e_c00175{bottom:799.618860px;}
.y23_c00175{bottom:799.645500px;}
.y1c_c00175{bottom:816.903360px;}
.y22_c00175{bottom:816.921180px;}
.y1b_c00175{bottom:834.187860px;}
.y21_c00175{bottom:834.205680px;}
.y1a_c00175{bottom:851.382180px;}
.y20_c00175{bottom:851.391180px;}
.y19_c00175{bottom:868.666680px;}
.y1f_c00175{bottom:868.675680px;}
.y18_c00175{bottom:885.861000px;}
.y1e_c00175{bottom:885.870000px;}
.y17_c00175{bottom:903.145500px;}
.y14_c00175{bottom:920.250000px;}
.y16_c00175{bottom:920.430000px;}
.y1d_c00175{bottom:937.620000px;}
.y5_c00175{bottom:952.920000px;}
.y10_c00175{bottom:973.588860px;}
.yf_c00175{bottom:990.873360px;}
.ye_c00175{bottom:1008.157860px;}
.yd_c00175{bottom:1025.352180px;}
.yc_c00175{bottom:1042.636680px;}
.yb_c00175{bottom:1059.921180px;}
.ya_c00175{bottom:1077.115500px;}
.y7_c00175{bottom:1094.220000px;}
.y9_c00175{bottom:1094.400000px;}
.y4_c00175{bottom:1131.030000px;}
.y3_c00175{bottom:1150.915500px;}
.y2_c00175{bottom:1166.400000px;}
.y1_c00175{bottom:1197.450000px;}
.h9_c00175{height:46.968223px;}
.h2_c00175{height:52.998047px;}
.h8_c00175{height:58.975137px;}
.h6_c00175{height:59.004492px;}
.ha_c00175{height:59.039772px;}
.hc_c00175{height:59.057772px;}
.hb_c00175{height:59.093052px;}
.h5_c00175{height:60.589687px;}
.h3_c00175{height:70.664062px;}
.h4_c00175{height:172.530000px;}
.h7_c00175{height:344.970000px;}
.h0_c00175{height:1262.880000px;}
.h1_c00175{height:1263.000000px;}
.w6_c00175{width:61.560000px;}
.w2_c00175{width:80.371500px;}
.w5_c00175{width:93.420000px;}
.w3_c00175{width:104.038500px;}
.w4_c00175{width:114.750000px;}
.w7_c00175{width:115.830000px;}
.w0_c00175{width:893.070000px;}
.w1_c00175{width:893.250000px;}
.x0_c00175{left:0.000000px;}
.x7_c00175{left:7.020000px;}
.x13_c00175{left:15.570000px;}
.x4_c00175{left:24.750000px;}
.x15_c00175{left:28.800000px;}
.x3_c00175{left:120.600000px;}
.x2_c00175{left:127.620000px;}
.x5_c00175{left:138.960000px;}
.x6_c00175{left:203.130000px;}
.x8_c00175{left:210.150000px;}
.x9_c00175{left:309.420000px;}
.xa_c00175{left:316.440000px;}
.x14_c00175{left:325.620000px;}
.xb_c00175{left:426.420000px;}
.xc_c00175{left:433.350000px;}
.x1_c00175{left:446.580000px;}
.xd_c00175{left:522.090000px;}
.xe_c00175{left:529.020000px;}
.xf_c00175{left:585.900000px;}
.x10_c00175{left:592.920000px;}
.x11_c00175{left:681.570000px;}
.x12_c00175{left:688.500000px;}
@media print{
.v1_c00175{vertical-align:-55.056000pt;}
.v0_c00175{vertical-align:0.000000pt;}
.lsa_c00175{letter-spacing:-0.374080pt;}
.lsd_c00175{letter-spacing:-0.320640pt;}
.ls10_c00175{letter-spacing:-0.320000pt;}
.ls12_c00175{letter-spacing:-0.256000pt;}
.lse_c00175{letter-spacing:-0.213760pt;}
.ls7_c00175{letter-spacing:-0.160320pt;}
.ls11_c00175{letter-spacing:-0.128000pt;}
.ls9_c00175{letter-spacing:-0.106880pt;}
.lsb_c00175{letter-spacing:-0.085120pt;}
.ls8_c00175{letter-spacing:-0.053440pt;}
.ls6_c00175{letter-spacing:0.000000pt;}
.ls1_c00175{letter-spacing:0.053440pt;}
.ls4_c00175{letter-spacing:0.059840pt;}
.ls5_c00175{letter-spacing:0.064000pt;}
.ls2_c00175{letter-spacing:0.080000pt;}
.lsc_c00175{letter-spacing:0.106880pt;}
.lsf_c00175{letter-spacing:0.128000pt;}
.ls3_c00175{letter-spacing:0.160320pt;}
.ls0_c00175{letter-spacing:284.016000pt;}
.wsa_c00175{word-spacing:-16.064000pt;}
.wsb_c00175{word-spacing:-16.000000pt;}
.ws3_c00175{word-spacing:-13.520320pt;}
.ws6_c00175{word-spacing:-13.466880pt;}
.ws4_c00175{word-spacing:-13.360000pt;}
.ws1_c00175{word-spacing:-13.306560pt;}
.ws2_c00175{word-spacing:-13.253120pt;}
.ws0_c00175{word-spacing:-13.199680pt;}
.ws9_c00175{word-spacing:-13.146240pt;}
.ws7_c00175{word-spacing:-13.039360pt;}
.ws8_c00175{word-spacing:-10.640000pt;}
.ws5_c00175{word-spacing:-10.554880pt;}
.ws10_c00175{word-spacing:-0.374080pt;}
.ws11_c00175{word-spacing:-0.160320pt;}
.wsd_c00175{word-spacing:-0.144000pt;}
.ws31_c00175{word-spacing:-0.128000pt;}
.ws17_c00175{word-spacing:-0.106880pt;}
.ws21_c00175{word-spacing:-0.064000pt;}
.wse_c00175{word-spacing:-0.053440pt;}
.wsc_c00175{word-spacing:0.000000pt;}
.ws14_c00175{word-spacing:0.053440pt;}
.ws13_c00175{word-spacing:0.106880pt;}
.ws25_c00175{word-spacing:0.128000pt;}
.wsf_c00175{word-spacing:0.160320pt;}
.ws16_c00175{word-spacing:0.213760pt;}
.ws30_c00175{word-spacing:0.256000pt;}
.ws12_c00175{word-spacing:0.267200pt;}
.ws32_c00175{word-spacing:0.320000pt;}
.ws15_c00175{word-spacing:0.480960pt;}
.ws1a_c00175{word-spacing:2.816000pt;}
.ws1b_c00175{word-spacing:2.880000pt;}
.ws24_c00175{word-spacing:3.136000pt;}
.ws23_c00175{word-spacing:3.200000pt;}
.ws29_c00175{word-spacing:4.096000pt;}
.ws28_c00175{word-spacing:4.160000pt;}
.ws1d_c00175{word-spacing:6.272000pt;}
.ws1f_c00175{word-spacing:6.336000pt;}
.ws1c_c00175{word-spacing:6.400000pt;}
.ws2f_c00175{word-spacing:6.656000pt;}
.ws1e_c00175{word-spacing:6.720000pt;}
.ws22_c00175{word-spacing:6.976000pt;}
.ws20_c00175{word-spacing:7.040000pt;}
.ws19_c00175{word-spacing:7.296000pt;}
.ws18_c00175{word-spacing:7.680000pt;}
.ws27_c00175{word-spacing:15.936000pt;}
.ws26_c00175{word-spacing:16.000000pt;}
.ws2b_c00175{word-spacing:18.496000pt;}
.ws2a_c00175{word-spacing:18.560000pt;}
.ws2e_c00175{word-spacing:20.096000pt;}
.ws2d_c00175{word-spacing:20.416000pt;}
.ws2c_c00175{word-spacing:20.480000pt;}
._1_c00175{margin-left:-0.956576pt;}
._0_c00175{width:0.908480pt;}
._3_c00175{width:2.688000pt;}
._4_c00175{width:6.464000pt;}
._2_c00175{width:7.360000pt;}
._5_c00175{width:18.560000pt;}
.fs3_c00175{font-size:42.560000pt;}
.fs0_c00175{font-size:48.000000pt;}
.fs2_c00175{font-size:53.440000pt;}
.fs1_c00175{font-size:64.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y11_c00175{bottom:3.120000pt;}
.y3f_c00175{bottom:50.880000pt;}
.y3e_c00175{bottom:140.560000pt;}
.y6_c00175{bottom:140.960000pt;}
.y8_c00175{bottom:141.120000pt;}
.y3d_c00175{bottom:168.160000pt;}
.y3c_c00175{bottom:195.760000pt;}
.y3b_c00175{bottom:223.360000pt;}
.y3a_c00175{bottom:250.960000pt;}
.y39_c00175{bottom:278.560000pt;}
.y13_c00175{bottom:294.240000pt;}
.y15_c00175{bottom:294.400000pt;}
.y38_c00175{bottom:306.160000pt;}
.y37_c00175{bottom:333.760000pt;}
.y36_c00175{bottom:361.360000pt;}
.y35_c00175{bottom:388.960000pt;}
.y34_c00175{bottom:416.560000pt;}
.y33_c00175{bottom:444.160000pt;}
.y32_c00175{bottom:471.760000pt;}
.y31_c00175{bottom:499.360000pt;}
.y30_c00175{bottom:524.800000pt;}
.y12_c00175{bottom:539.040000pt;}
.y2d_c00175{bottom:557.520000pt;}
.y2c_c00175{bottom:572.792000pt;}
.y2b_c00175{bottom:588.156000pt;}
.y2a_c00175{bottom:603.508160pt;}
.y29_c00175{bottom:618.792000pt;}
.y28_c00175{bottom:634.156000pt;}
.y27_c00175{bottom:649.500320pt;}
.y26_c00175{bottom:664.784160pt;}
.y25_c00175{bottom:680.148160pt;}
.y2f_c00175{bottom:695.488480pt;}
.y24_c00175{bottom:695.512160pt;}
.y2e_c00175{bottom:710.772320pt;}
.y23_c00175{bottom:710.796000pt;}
.y1c_c00175{bottom:726.136320pt;}
.y22_c00175{bottom:726.152160pt;}
.y1b_c00175{bottom:741.500320pt;}
.y21_c00175{bottom:741.516160pt;}
.y1a_c00175{bottom:756.784160pt;}
.y20_c00175{bottom:756.792160pt;}
.y19_c00175{bottom:772.148160pt;}
.y1f_c00175{bottom:772.156160pt;}
.y18_c00175{bottom:787.432000pt;}
.y1e_c00175{bottom:787.440000pt;}
.y17_c00175{bottom:802.796000pt;}
.y14_c00175{bottom:818.000000pt;}
.y16_c00175{bottom:818.160000pt;}
.y1d_c00175{bottom:833.440000pt;}
.y5_c00175{bottom:847.040000pt;}
.y10_c00175{bottom:865.412320pt;}
.yf_c00175{bottom:880.776320pt;}
.ye_c00175{bottom:896.140320pt;}
.yd_c00175{bottom:911.424160pt;}
.yc_c00175{bottom:926.788160pt;}
.yb_c00175{bottom:942.152160pt;}
.ya_c00175{bottom:957.436000pt;}
.y7_c00175{bottom:972.640000pt;}
.y9_c00175{bottom:972.800000pt;}
.y4_c00175{bottom:1005.360000pt;}
.y3_c00175{bottom:1023.036000pt;}
.y2_c00175{bottom:1036.800000pt;}
.y1_c00175{bottom:1064.400000pt;}
.h9_c00175{height:41.749531pt;}
.h2_c00175{height:47.109375pt;}
.h8_c00175{height:52.422344pt;}
.h6_c00175{height:52.448437pt;}
.ha_c00175{height:52.479798pt;}
.hc_c00175{height:52.495798pt;}
.hb_c00175{height:52.527158pt;}
.h5_c00175{height:53.857500pt;}
.h3_c00175{height:62.812500pt;}
.h4_c00175{height:153.360000pt;}
.h7_c00175{height:306.640000pt;}
.h0_c00175{height:1122.560000pt;}
.h1_c00175{height:1122.666667pt;}
.w6_c00175{width:54.720000pt;}
.w2_c00175{width:71.441333pt;}
.w5_c00175{width:83.040000pt;}
.w3_c00175{width:92.478667pt;}
.w4_c00175{width:102.000000pt;}
.w7_c00175{width:102.960000pt;}
.w0_c00175{width:793.840000pt;}
.w1_c00175{width:794.000000pt;}
.x0_c00175{left:0.000000pt;}
.x7_c00175{left:6.240000pt;}
.x13_c00175{left:13.840000pt;}
.x4_c00175{left:22.000000pt;}
.x15_c00175{left:25.600000pt;}
.x3_c00175{left:107.200000pt;}
.x2_c00175{left:113.440000pt;}
.x5_c00175{left:123.520000pt;}
.x6_c00175{left:180.560000pt;}
.x8_c00175{left:186.800000pt;}
.x9_c00175{left:275.040000pt;}
.xa_c00175{left:281.280000pt;}
.x14_c00175{left:289.440000pt;}
.xb_c00175{left:379.040000pt;}
.xc_c00175{left:385.200000pt;}
.x1_c00175{left:396.960000pt;}
.xd_c00175{left:464.080000pt;}
.xe_c00175{left:470.240000pt;}
.xf_c00175{left:520.800000pt;}
.x10_c00175{left:527.040000pt;}
.x11_c00175{left:605.840000pt;}
.x12_c00175{left:612.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_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_4371109896afee826a84cd23.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.284180;font-style:normal;font-weight:normal;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_993003b393fb251913b6d825.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.432129;font-style: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;}
.lsd_c00176{letter-spacing:-0.576000px;}
.lse_c00176{letter-spacing:-0.360000px;}
.lsc_c00176{letter-spacing:-0.288000px;}
.lsb_c00176{letter-spacing:-0.216000px;}
.lsa_c00176{letter-spacing:-0.108000px;}
.ls9_c00176{letter-spacing:0.000000px;}
.ls1_c00176{letter-spacing:0.072000px;}
.ls3_c00176{letter-spacing:0.144000px;}
.ls7_c00176{letter-spacing:1.440000px;}
.ls2_c00176{letter-spacing:2.160000px;}
.ls5_c00176{letter-spacing:3.254400px;}
.ls4_c00176{letter-spacing:10.080000px;}
.ls8_c00176{letter-spacing:17.294400px;}
.ls0_c00176{letter-spacing:24.480000px;}
.ls6_c00176{letter-spacing:30.744000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00176{word-spacing:-18.144000px;}
.ws0_c00176{word-spacing:-18.072000px;}
.ws1_c00176{word-spacing:-18.000000px;}
.ws3_c00176{word-spacing:-17.784000px;}
.ws4_c00176{word-spacing:-17.424000px;}
.ws23_c00176{word-spacing:-0.360000px;}
.wsf_c00176{word-spacing:-0.072000px;}
.ws5_c00176{word-spacing:0.000000px;}
.ws7_c00176{word-spacing:0.162000px;}
.ws6_c00176{word-spacing:0.270000px;}
.ws11_c00176{word-spacing:0.288000px;}
.ws2c_c00176{word-spacing:0.360000px;}
.ws26_c00176{word-spacing:1.440000px;}
.ws10_c00176{word-spacing:2.160000px;}
.wsc_c00176{word-spacing:2.520000px;}
.ws21_c00176{word-spacing:2.808000px;}
.ws1c_c00176{word-spacing:2.880000px;}
.ws22_c00176{word-spacing:3.168000px;}
.ws25_c00176{word-spacing:3.600000px;}
.ws12_c00176{word-spacing:3.888000px;}
.ws13_c00176{word-spacing:3.960000px;}
.ws24_c00176{word-spacing:4.248000px;}
.ws9_c00176{word-spacing:4.608000px;}
.ws8_c00176{word-spacing:4.680000px;}
.ws1d_c00176{word-spacing:5.760000px;}
.ws1e_c00176{word-spacing:6.048000px;}
.ws14_c00176{word-spacing:6.408000px;}
.ws15_c00176{word-spacing:6.480000px;}
.wse_c00176{word-spacing:8.568000px;}
.wsd_c00176{word-spacing:8.640000px;}
.ws16_c00176{word-spacing:8.928000px;}
.ws17_c00176{word-spacing:9.000000px;}
.ws19_c00176{word-spacing:10.008000px;}
.ws18_c00176{word-spacing:10.080000px;}
.ws27_c00176{word-spacing:10.368000px;}
.ws1b_c00176{word-spacing:11.376000px;}
.ws1a_c00176{word-spacing:11.448000px;}
.ws20_c00176{word-spacing:12.528000px;}
.ws1f_c00176{word-spacing:12.960000px;}
.ws28_c00176{word-spacing:14.688000px;}
.ws29_c00176{word-spacing:14.760000px;}
.ws2a_c00176{word-spacing:17.568000px;}
.ws2b_c00176{word-spacing:17.640000px;}
.wsb_c00176{word-spacing:24.336000px;}
.wsa_c00176{word-spacing:24.480000px;}
._1_c00176{margin-left:-1.058400px;}
._0_c00176{width:1.220400px;}
._4_c00176{width:2.520000px;}
._5_c00176{width:3.866400px;}
._2_c00176{width:4.968000px;}
._9_c00176{width:6.051600px;}
._6_c00176{width:8.352000px;}
._7_c00176{width:10.368000px;}
._8_c00176{width:11.376000px;}
._a_c00176{width:12.866400px;}
._3_c00176{width:24.480000px;}
.fc0_c00176{color:rgb(0,0,0);}
.fs0_c00176{font-size:54.000000px;}
.fs1_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y26_c00176{bottom:57.240000px;}
.y25_c00176{bottom:147.870000px;}
.y24_c00176{bottom:178.920000px;}
.y23_c00176{bottom:209.970000px;}
.y22_c00176{bottom:241.020000px;}
.y21_c00176{bottom:272.070000px;}
.y20_c00176{bottom:303.120000px;}
.y1f_c00176{bottom:334.170000px;}
.y1e_c00176{bottom:365.220000px;}
.y1d_c00176{bottom:396.270000px;}
.y1c_c00176{bottom:427.320000px;}
.y1b_c00176{bottom:458.370000px;}
.y1a_c00176{bottom:489.420000px;}
.y19_c00176{bottom:520.470000px;}
.y18_c00176{bottom:551.520000px;}
.y17_c00176{bottom:582.570000px;}
.y16_c00176{bottom:613.620000px;}
.y15_c00176{bottom:644.670000px;}
.y14_c00176{bottom:675.720000px;}
.y13_c00176{bottom:706.770000px;}
.y12_c00176{bottom:737.820000px;}
.y11_c00176{bottom:768.870000px;}
.y10_c00176{bottom:799.920000px;}
.yf_c00176{bottom:830.970000px;}
.ye_c00176{bottom:861.930000px;}
.yd_c00176{bottom:892.980000px;}
.yc_c00176{bottom:924.030000px;}
.yb_c00176{bottom:955.080000px;}
.ya_c00176{bottom:986.130000px;}
.y9_c00176{bottom:1017.180000px;}
.y8_c00176{bottom:1048.230000px;}
.y7_c00176{bottom:1079.280000px;}
.y6_c00176{bottom:1110.330000px;}
.y5_c00176{bottom:1131.030000px;}
.y4_c00176{bottom:1150.920000px;}
.y3_c00176{bottom:1166.404500px;}
.y2_c00176{bottom:1181.970000px;}
.y1_c00176{bottom:1197.450000px;}
.h3_c00176{height:52.971680px;}
.h2_c00176{height:52.998047px;}
.h4_c00176{height:70.664062px;}
.h5_c00176{height:75.093750px;}
.h0_c00176{height:1262.880000px;}
.h1_c00176{height:1263.000000px;}
.w0_c00176{width:893.070000px;}
.w1_c00176{width:893.250000px;}
.x0_c00176{left:0.000000px;}
.x3_c00176{left:127.620000px;}
.x4_c00176{left:154.620000px;}
.x5_c00176{left:181.620000px;}
.x2_c00176{left:425.160000px;}
.x1_c00176{left:446.580000px;}
.x6_c00176{left:738.540000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.lsd_c00176{letter-spacing:-0.512000pt;}
.lse_c00176{letter-spacing:-0.320000pt;}
.lsc_c00176{letter-spacing:-0.256000pt;}
.lsb_c00176{letter-spacing:-0.192000pt;}
.lsa_c00176{letter-spacing:-0.096000pt;}
.ls9_c00176{letter-spacing:0.000000pt;}
.ls1_c00176{letter-spacing:0.064000pt;}
.ls3_c00176{letter-spacing:0.128000pt;}
.ls7_c00176{letter-spacing:1.280000pt;}
.ls2_c00176{letter-spacing:1.920000pt;}
.ls5_c00176{letter-spacing:2.892800pt;}
.ls4_c00176{letter-spacing:8.960000pt;}
.ls8_c00176{letter-spacing:15.372800pt;}
.ls0_c00176{letter-spacing:21.760000pt;}
.ls6_c00176{letter-spacing:27.328000pt;}
.ws2_c00176{word-spacing:-16.128000pt;}
.ws0_c00176{word-spacing:-16.064000pt;}
.ws1_c00176{word-spacing:-16.000000pt;}
.ws3_c00176{word-spacing:-15.808000pt;}
.ws4_c00176{word-spacing:-15.488000pt;}
.ws23_c00176{word-spacing:-0.320000pt;}
.wsf_c00176{word-spacing:-0.064000pt;}
.ws5_c00176{word-spacing:0.000000pt;}
.ws7_c00176{word-spacing:0.144000pt;}
.ws6_c00176{word-spacing:0.240000pt;}
.ws11_c00176{word-spacing:0.256000pt;}
.ws2c_c00176{word-spacing:0.320000pt;}
.ws26_c00176{word-spacing:1.280000pt;}
.ws10_c00176{word-spacing:1.920000pt;}
.wsc_c00176{word-spacing:2.240000pt;}
.ws21_c00176{word-spacing:2.496000pt;}
.ws1c_c00176{word-spacing:2.560000pt;}
.ws22_c00176{word-spacing:2.816000pt;}
.ws25_c00176{word-spacing:3.200000pt;}
.ws12_c00176{word-spacing:3.456000pt;}
.ws13_c00176{word-spacing:3.520000pt;}
.ws24_c00176{word-spacing:3.776000pt;}
.ws9_c00176{word-spacing:4.096000pt;}
.ws8_c00176{word-spacing:4.160000pt;}
.ws1d_c00176{word-spacing:5.120000pt;}
.ws1e_c00176{word-spacing:5.376000pt;}
.ws14_c00176{word-spacing:5.696000pt;}
.ws15_c00176{word-spacing:5.760000pt;}
.wse_c00176{word-spacing:7.616000pt;}
.wsd_c00176{word-spacing:7.680000pt;}
.ws16_c00176{word-spacing:7.936000pt;}
.ws17_c00176{word-spacing:8.000000pt;}
.ws19_c00176{word-spacing:8.896000pt;}
.ws18_c00176{word-spacing:8.960000pt;}
.ws27_c00176{word-spacing:9.216000pt;}
.ws1b_c00176{word-spacing:10.112000pt;}
.ws1a_c00176{word-spacing:10.176000pt;}
.ws20_c00176{word-spacing:11.136000pt;}
.ws1f_c00176{word-spacing:11.520000pt;}
.ws28_c00176{word-spacing:13.056000pt;}
.ws29_c00176{word-spacing:13.120000pt;}
.ws2a_c00176{word-spacing:15.616000pt;}
.ws2b_c00176{word-spacing:15.680000pt;}
.wsb_c00176{word-spacing:21.632000pt;}
.wsa_c00176{word-spacing:21.760000pt;}
._1_c00176{margin-left:-0.940800pt;}
._0_c00176{width:1.084800pt;}
._4_c00176{width:2.240000pt;}
._5_c00176{width:3.436800pt;}
._2_c00176{width:4.416000pt;}
._9_c00176{width:5.379200pt;}
._6_c00176{width:7.424000pt;}
._7_c00176{width:9.216000pt;}
._8_c00176{width:10.112000pt;}
._a_c00176{width:11.436800pt;}
._3_c00176{width:21.760000pt;}
.fs0_c00176{font-size:48.000000pt;}
.fs1_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y26_c00176{bottom:50.880000pt;}
.y25_c00176{bottom:131.440000pt;}
.y24_c00176{bottom:159.040000pt;}
.y23_c00176{bottom:186.640000pt;}
.y22_c00176{bottom:214.240000pt;}
.y21_c00176{bottom:241.840000pt;}
.y20_c00176{bottom:269.440000pt;}
.y1f_c00176{bottom:297.040000pt;}
.y1e_c00176{bottom:324.640000pt;}
.y1d_c00176{bottom:352.240000pt;}
.y1c_c00176{bottom:379.840000pt;}
.y1b_c00176{bottom:407.440000pt;}
.y1a_c00176{bottom:435.040000pt;}
.y19_c00176{bottom:462.640000pt;}
.y18_c00176{bottom:490.240000pt;}
.y17_c00176{bottom:517.840000pt;}
.y16_c00176{bottom:545.440000pt;}
.y15_c00176{bottom:573.040000pt;}
.y14_c00176{bottom:600.640000pt;}
.y13_c00176{bottom:628.240000pt;}
.y12_c00176{bottom:655.840000pt;}
.y11_c00176{bottom:683.440000pt;}
.y10_c00176{bottom:711.040000pt;}
.yf_c00176{bottom:738.640000pt;}
.ye_c00176{bottom:766.160000pt;}
.yd_c00176{bottom:793.760000pt;}
.yc_c00176{bottom:821.360000pt;}
.yb_c00176{bottom:848.960000pt;}
.ya_c00176{bottom:876.560000pt;}
.y9_c00176{bottom:904.160000pt;}
.y8_c00176{bottom:931.760000pt;}
.y7_c00176{bottom:959.360000pt;}
.y6_c00176{bottom:986.960000pt;}
.y5_c00176{bottom:1005.360000pt;}
.y4_c00176{bottom:1023.040000pt;}
.y3_c00176{bottom:1036.804000pt;}
.y2_c00176{bottom:1050.640000pt;}
.y1_c00176{bottom:1064.400000pt;}
.h3_c00176{height:47.085938pt;}
.h2_c00176{height:47.109375pt;}
.h4_c00176{height:62.812500pt;}
.h5_c00176{height:66.750000pt;}
.h0_c00176{height:1122.560000pt;}
.h1_c00176{height:1122.666667pt;}
.w0_c00176{width:793.840000pt;}
.w1_c00176{width:794.000000pt;}
.x0_c00176{left:0.000000pt;}
.x3_c00176{left:113.440000pt;}
.x4_c00176{left:137.440000pt;}
.x5_c00176{left:161.440000pt;}
.x2_c00176{left:377.920000pt;}
.x1_c00176{left:396.960000pt;}
.x6_c00176{left:656.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_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_6f0bd33d723def7abd375b2d.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00177{vertical-align:-61.938000px;}
.v3_c00177{vertical-align:-20.880000px;}
.v0_c00177{vertical-align:0.000000px;}
.v2_c00177{vertical-align:27.000000px;}
.ls13_c00177{letter-spacing:-0.360000px;}
.ls14_c00177{letter-spacing:-0.288000px;}
.ls16_c00177{letter-spacing:-0.216000px;}
.ls19_c00177{letter-spacing:-0.180360px;}
.ls15_c00177{letter-spacing:-0.072000px;}
.ls17_c00177{letter-spacing:-0.060120px;}
.ls11_c00177{letter-spacing:0.000000px;}
.ls3_c00177{letter-spacing:0.072000px;}
.lse_c00177{letter-spacing:0.120240px;}
.ls12_c00177{letter-spacing:0.144000px;}
.ls18_c00177{letter-spacing:0.180360px;}
.ls2_c00177{letter-spacing:0.191520px;}
.ls1_c00177{letter-spacing:0.360000px;}
.lsb_c00177{letter-spacing:0.432000px;}
.ls5_c00177{letter-spacing:1.080000px;}
.lsc_c00177{letter-spacing:1.440000px;}
.ls10_c00177{letter-spacing:2.945880px;}
.lsd_c00177{letter-spacing:3.024000px;}
.lsf_c00177{letter-spacing:4.749480px;}
.ls9_c00177{letter-spacing:11.880000px;}
.lsa_c00177{letter-spacing:13.327200px;}
.ls4_c00177{letter-spacing:16.200000px;}
.ls6_c00177{letter-spacing:18.360000px;}
.ls7_c00177{letter-spacing:18.720000px;}
.ls8_c00177{letter-spacing:19.440000px;}
.ls0_c00177{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00177{word-spacing:-18.072000px;}
.ws0_c00177{word-spacing:-18.000000px;}
.ws3_c00177{word-spacing:-17.928000px;}
.ws4_c00177{word-spacing:-17.712000px;}
.ws6_c00177{word-spacing:-15.210360px;}
.ws7_c00177{word-spacing:-14.969880px;}
.ws8_c00177{word-spacing:-14.849640px;}
.ws1_c00177{word-spacing:-12.161520px;}
.ws5_c00177{word-spacing:-9.720000px;}
.ws11_c00177{word-spacing:-0.432000px;}
.wsa_c00177{word-spacing:-0.162000px;}
.ws23_c00177{word-spacing:-0.144000px;}
.ws19_c00177{word-spacing:-0.072000px;}
.ws37_c00177{word-spacing:-0.060120px;}
.ws9_c00177{word-spacing:0.000000px;}
.ws36_c00177{word-spacing:0.180360px;}
.ws1e_c00177{word-spacing:0.216000px;}
.wsb_c00177{word-spacing:0.576000px;}
.wsc_c00177{word-spacing:0.648000px;}
.wsd_c00177{word-spacing:0.720000px;}
.ws1a_c00177{word-spacing:1.008000px;}
.ws1b_c00177{word-spacing:1.080000px;}
.ws30_c00177{word-spacing:1.368000px;}
.ws31_c00177{word-spacing:1.440000px;}
.ws2a_c00177{word-spacing:2.088000px;}
.ws2b_c00177{word-spacing:2.160000px;}
.ws3a_c00177{word-spacing:2.765520px;}
.ws14_c00177{word-spacing:4.176000px;}
.ws12_c00177{word-spacing:4.248000px;}
.ws13_c00177{word-spacing:4.320000px;}
.ws38_c00177{word-spacing:4.569120px;}
.ws39_c00177{word-spacing:4.809600px;}
.ws2c_c00177{word-spacing:4.968000px;}
.ws2d_c00177{word-spacing:5.400000px;}
.ws1f_c00177{word-spacing:6.408000px;}
.ws20_c00177{word-spacing:6.480000px;}
.ws21_c00177{word-spacing:7.200000px;}
.wsf_c00177{word-spacing:8.208000px;}
.wse_c00177{word-spacing:8.280000px;}
.ws10_c00177{word-spacing:8.640000px;}
.ws28_c00177{word-spacing:11.808000px;}
.ws27_c00177{word-spacing:11.880000px;}
.ws29_c00177{word-spacing:13.248000px;}
.ws25_c00177{word-spacing:13.680000px;}
.ws26_c00177{word-spacing:14.040000px;}
.ws2f_c00177{word-spacing:14.688000px;}
.ws2e_c00177{word-spacing:14.760000px;}
.ws18_c00177{word-spacing:15.840000px;}
.ws16_c00177{word-spacing:16.128000px;}
.ws17_c00177{word-spacing:16.200000px;}
.ws35_c00177{word-spacing:16.848000px;}
.ws34_c00177{word-spacing:17.136000px;}
.ws1c_c00177{word-spacing:18.720000px;}
.ws1d_c00177{word-spacing:19.008000px;}
.ws24_c00177{word-spacing:19.368000px;}
.ws22_c00177{word-spacing:19.440000px;}
.ws33_c00177{word-spacing:28.368000px;}
.ws32_c00177{word-spacing:28.440000px;}
.ws15_c00177{word-spacing:29.520000px;}
._0_c00177{margin-left:-1.368000px;}
._3_c00177{width:1.281600px;}
._1_c00177{width:2.880000px;}
._8_c00177{width:3.960000px;}
._2_c00177{width:8.245440px;}
._6_c00177{width:11.880000px;}
._7_c00177{width:14.976000px;}
._a_c00177{width:16.741440px;}
._4_c00177{width:19.008000px;}
._5_c00177{width:20.160000px;}
._9_c00177{width:28.512000px;}
.fc0_c00177{color:rgb(0,0,0);}
.fs3_c00177{font-size:38.880000px;}
.fs2_c00177{font-size:47.880000px;}
.fs0_c00177{font-size:54.000000px;}
.fs4_c00177{font-size:60.120000px;}
.fs1_c00177{font-size:72.000000px;}
.y0_c00177{bottom:0.000000px;}
.y27_c00177{bottom:57.240000px;}
.y26_c00177{bottom:109.795680px;}
.y25_c00177{bottom:132.210000px;}
.y24_c00177{bottom:144.261180px;}
.y23_c00177{bottom:161.545680px;}
.y22_c00177{bottom:183.960000px;}
.y28_c00177{bottom:196.650000px;}
.y21_c00177{bottom:241.020000px;}
.y20_c00177{bottom:272.070000px;}
.y1f_c00177{bottom:303.120000px;}
.y1e_c00177{bottom:334.170000px;}
.y1d_c00177{bottom:365.220000px;}
.y1c_c00177{bottom:396.270000px;}
.y1b_c00177{bottom:427.320000px;}
.y1a_c00177{bottom:458.370000px;}
.y19_c00177{bottom:489.420000px;}
.y18_c00177{bottom:520.470000px;}
.y17_c00177{bottom:551.520000px;}
.y16_c00177{bottom:582.570000px;}
.y15_c00177{bottom:613.620000px;}
.y14_c00177{bottom:644.670000px;}
.y13_c00177{bottom:675.720000px;}
.y12_c00177{bottom:706.770000px;}
.y11_c00177{bottom:737.820000px;}
.y10_c00177{bottom:768.870000px;}
.yf_c00177{bottom:799.920000px;}
.ye_c00177{bottom:830.970000px;}
.yd_c00177{bottom:861.930000px;}
.yc_c00177{bottom:892.980000px;}
.yb_c00177{bottom:924.030000px;}
.ya_c00177{bottom:955.080000px;}
.y9_c00177{bottom:986.130000px;}
.y8_c00177{bottom:1017.180000px;}
.y7_c00177{bottom:1048.230000px;}
.y6_c00177{bottom:1079.280000px;}
.y5_c00177{bottom:1110.330000px;}
.y4_c00177{bottom:1131.030000px;}
.y3_c00177{bottom:1150.915500px;}
.y2_c00177{bottom:1166.400000px;}
.y1_c00177{bottom:1197.450000px;}
.h5_c00177{height:38.158594px;}
.h2_c00177{height:52.998047px;}
.h6_c00177{height:59.004492px;}
.h3_c00177{height:70.664062px;}
.h4_c00177{height:73.991602px;}
.h0_c00177{height:1262.880000px;}
.h1_c00177{height:1263.000000px;}
.w0_c00177{width:893.070000px;}
.w1_c00177{width:893.250000px;}
.x0_c00177{left:0.000000px;}
.x2_c00177{left:127.620000px;}
.x1_c00177{left:446.580000px;}
@media print{
.v1_c00177{vertical-align:-55.056000pt;}
.v3_c00177{vertical-align:-18.560000pt;}
.v0_c00177{vertical-align:0.000000pt;}
.v2_c00177{vertical-align:24.000000pt;}
.ls13_c00177{letter-spacing:-0.320000pt;}
.ls14_c00177{letter-spacing:-0.256000pt;}
.ls16_c00177{letter-spacing:-0.192000pt;}
.ls19_c00177{letter-spacing:-0.160320pt;}
.ls15_c00177{letter-spacing:-0.064000pt;}
.ls17_c00177{letter-spacing:-0.053440pt;}
.ls11_c00177{letter-spacing:0.000000pt;}
.ls3_c00177{letter-spacing:0.064000pt;}
.lse_c00177{letter-spacing:0.106880pt;}
.ls12_c00177{letter-spacing:0.128000pt;}
.ls18_c00177{letter-spacing:0.160320pt;}
.ls2_c00177{letter-spacing:0.170240pt;}
.ls1_c00177{letter-spacing:0.320000pt;}
.lsb_c00177{letter-spacing:0.384000pt;}
.ls5_c00177{letter-spacing:0.960000pt;}
.lsc_c00177{letter-spacing:1.280000pt;}
.ls10_c00177{letter-spacing:2.618560pt;}
.lsd_c00177{letter-spacing:2.688000pt;}
.lsf_c00177{letter-spacing:4.221760pt;}
.ls9_c00177{letter-spacing:10.560000pt;}
.lsa_c00177{letter-spacing:11.846400pt;}
.ls4_c00177{letter-spacing:14.400000pt;}
.ls6_c00177{letter-spacing:16.320000pt;}
.ls7_c00177{letter-spacing:16.640000pt;}
.ls8_c00177{letter-spacing:17.280000pt;}
.ls0_c00177{letter-spacing:284.016000pt;}
.ws2_c00177{word-spacing:-16.064000pt;}
.ws0_c00177{word-spacing:-16.000000pt;}
.ws3_c00177{word-spacing:-15.936000pt;}
.ws4_c00177{word-spacing:-15.744000pt;}
.ws6_c00177{word-spacing:-13.520320pt;}
.ws7_c00177{word-spacing:-13.306560pt;}
.ws8_c00177{word-spacing:-13.199680pt;}
.ws1_c00177{word-spacing:-10.810240pt;}
.ws5_c00177{word-spacing:-8.640000pt;}
.ws11_c00177{word-spacing:-0.384000pt;}
.wsa_c00177{word-spacing:-0.144000pt;}
.ws23_c00177{word-spacing:-0.128000pt;}
.ws19_c00177{word-spacing:-0.064000pt;}
.ws37_c00177{word-spacing:-0.053440pt;}
.ws9_c00177{word-spacing:0.000000pt;}
.ws36_c00177{word-spacing:0.160320pt;}
.ws1e_c00177{word-spacing:0.192000pt;}
.wsb_c00177{word-spacing:0.512000pt;}
.wsc_c00177{word-spacing:0.576000pt;}
.wsd_c00177{word-spacing:0.640000pt;}
.ws1a_c00177{word-spacing:0.896000pt;}
.ws1b_c00177{word-spacing:0.960000pt;}
.ws30_c00177{word-spacing:1.216000pt;}
.ws31_c00177{word-spacing:1.280000pt;}
.ws2a_c00177{word-spacing:1.856000pt;}
.ws2b_c00177{word-spacing:1.920000pt;}
.ws3a_c00177{word-spacing:2.458240pt;}
.ws14_c00177{word-spacing:3.712000pt;}
.ws12_c00177{word-spacing:3.776000pt;}
.ws13_c00177{word-spacing:3.840000pt;}
.ws38_c00177{word-spacing:4.061440pt;}
.ws39_c00177{word-spacing:4.275200pt;}
.ws2c_c00177{word-spacing:4.416000pt;}
.ws2d_c00177{word-spacing:4.800000pt;}
.ws1f_c00177{word-spacing:5.696000pt;}
.ws20_c00177{word-spacing:5.760000pt;}
.ws21_c00177{word-spacing:6.400000pt;}
.wsf_c00177{word-spacing:7.296000pt;}
.wse_c00177{word-spacing:7.360000pt;}
.ws10_c00177{word-spacing:7.680000pt;}
.ws28_c00177{word-spacing:10.496000pt;}
.ws27_c00177{word-spacing:10.560000pt;}
.ws29_c00177{word-spacing:11.776000pt;}
.ws25_c00177{word-spacing:12.160000pt;}
.ws26_c00177{word-spacing:12.480000pt;}
.ws2f_c00177{word-spacing:13.056000pt;}
.ws2e_c00177{word-spacing:13.120000pt;}
.ws18_c00177{word-spacing:14.080000pt;}
.ws16_c00177{word-spacing:14.336000pt;}
.ws17_c00177{word-spacing:14.400000pt;}
.ws35_c00177{word-spacing:14.976000pt;}
.ws34_c00177{word-spacing:15.232000pt;}
.ws1c_c00177{word-spacing:16.640000pt;}
.ws1d_c00177{word-spacing:16.896000pt;}
.ws24_c00177{word-spacing:17.216000pt;}
.ws22_c00177{word-spacing:17.280000pt;}
.ws33_c00177{word-spacing:25.216000pt;}
.ws32_c00177{word-spacing:25.280000pt;}
.ws15_c00177{word-spacing:26.240000pt;}
._0_c00177{margin-left:-1.216000pt;}
._3_c00177{width:1.139200pt;}
._1_c00177{width:2.560000pt;}
._8_c00177{width:3.520000pt;}
._2_c00177{width:7.329280pt;}
._6_c00177{width:10.560000pt;}
._7_c00177{width:13.312000pt;}
._a_c00177{width:14.881280pt;}
._4_c00177{width:16.896000pt;}
._5_c00177{width:17.920000pt;}
._9_c00177{width:25.344000pt;}
.fs3_c00177{font-size:34.560000pt;}
.fs2_c00177{font-size:42.560000pt;}
.fs0_c00177{font-size:48.000000pt;}
.fs4_c00177{font-size:53.440000pt;}
.fs1_c00177{font-size:64.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y27_c00177{bottom:50.880000pt;}
.y26_c00177{bottom:97.596160pt;}
.y25_c00177{bottom:117.520000pt;}
.y24_c00177{bottom:128.232160pt;}
.y23_c00177{bottom:143.596160pt;}
.y22_c00177{bottom:163.520000pt;}
.y28_c00177{bottom:174.800000pt;}
.y21_c00177{bottom:214.240000pt;}
.y20_c00177{bottom:241.840000pt;}
.y1f_c00177{bottom:269.440000pt;}
.y1e_c00177{bottom:297.040000pt;}
.y1d_c00177{bottom:324.640000pt;}
.y1c_c00177{bottom:352.240000pt;}
.y1b_c00177{bottom:379.840000pt;}
.y1a_c00177{bottom:407.440000pt;}
.y19_c00177{bottom:435.040000pt;}
.y18_c00177{bottom:462.640000pt;}
.y17_c00177{bottom:490.240000pt;}
.y16_c00177{bottom:517.840000pt;}
.y15_c00177{bottom:545.440000pt;}
.y14_c00177{bottom:573.040000pt;}
.y13_c00177{bottom:600.640000pt;}
.y12_c00177{bottom:628.240000pt;}
.y11_c00177{bottom:655.840000pt;}
.y10_c00177{bottom:683.440000pt;}
.yf_c00177{bottom:711.040000pt;}
.ye_c00177{bottom:738.640000pt;}
.yd_c00177{bottom:766.160000pt;}
.yc_c00177{bottom:793.760000pt;}
.yb_c00177{bottom:821.360000pt;}
.ya_c00177{bottom:848.960000pt;}
.y9_c00177{bottom:876.560000pt;}
.y8_c00177{bottom:904.160000pt;}
.y7_c00177{bottom:931.760000pt;}
.y6_c00177{bottom:959.360000pt;}
.y5_c00177{bottom:986.960000pt;}
.y4_c00177{bottom:1005.360000pt;}
.y3_c00177{bottom:1023.036000pt;}
.y2_c00177{bottom:1036.800000pt;}
.y1_c00177{bottom:1064.400000pt;}
.h5_c00177{height:33.918750pt;}
.h2_c00177{height:47.109375pt;}
.h6_c00177{height:52.448437pt;}
.h3_c00177{height:62.812500pt;}
.h4_c00177{height:65.770312pt;}
.h0_c00177{height:1122.560000pt;}
.h1_c00177{height:1122.666667pt;}
.w0_c00177{width:793.840000pt;}
.w1_c00177{width:794.000000pt;}
.x0_c00177{left:0.000000pt;}
.x2_c00177{left:113.440000pt;}
.x1_c00177{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5486cee18922d98d36389a1.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_effc3905c3da9e7e6c4e9b21.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_5cc74d4fdda03c349bec8609.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.142090;font-style: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;}
.ls10_c00178{letter-spacing:-0.576000px;}
.lsd_c00178{letter-spacing:-0.432000px;}
.ls12_c00178{letter-spacing:-0.360000px;}
.lsc_c00178{letter-spacing:-0.288000px;}
.ls11_c00178{letter-spacing:-0.216000px;}
.lsb_c00178{letter-spacing:-0.108000px;}
.lsf_c00178{letter-spacing:-0.072000px;}
.lsa_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:0.072000px;}
.lse_c00178{letter-spacing:0.144000px;}
.ls2_c00178{letter-spacing:1.080000px;}
.ls9_c00178{letter-spacing:2.880000px;}
.ls7_c00178{letter-spacing:3.240000px;}
.ls6_c00178{letter-spacing:10.800000px;}
.ls8_c00178{letter-spacing:14.760000px;}
.ls5_c00178{letter-spacing:23.040000px;}
.ls3_c00178{letter-spacing:23.904000px;}
.ls1_c00178{letter-spacing:30.744000px;}
.ls4_c00178{letter-spacing:54.864000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00178{word-spacing:-72.000000px;}
.ws0_c00178{word-spacing:-18.072000px;}
.ws2_c00178{word-spacing:-18.000000px;}
.ws4_c00178{word-spacing:-17.928000px;}
.ws6_c00178{word-spacing:-17.640000px;}
.ws3_c00178{word-spacing:-17.568000px;}
.ws5_c00178{word-spacing:-17.424000px;}
.wse_c00178{word-spacing:-0.360000px;}
.ws12_c00178{word-spacing:-0.144000px;}
.wsa_c00178{word-spacing:-0.072000px;}
.ws7_c00178{word-spacing:0.000000px;}
.ws9_c00178{word-spacing:0.162000px;}
.ws8_c00178{word-spacing:0.270000px;}
.ws1f_c00178{word-spacing:0.360000px;}
.ws1c_c00178{word-spacing:0.648000px;}
.wsb_c00178{word-spacing:1.080000px;}
.wsc_c00178{word-spacing:1.368000px;}
.ws13_c00178{word-spacing:2.808000px;}
.ws14_c00178{word-spacing:2.880000px;}
.ws1d_c00178{word-spacing:3.168000px;}
.wsd_c00178{word-spacing:3.600000px;}
.ws20_c00178{word-spacing:5.040000px;}
.ws11_c00178{word-spacing:5.688000px;}
.wsf_c00178{word-spacing:5.760000px;}
.ws10_c00178{word-spacing:6.120000px;}
.ws1a_c00178{word-spacing:10.800000px;}
.ws1b_c00178{word-spacing:11.016000px;}
.ws15_c00178{word-spacing:13.320000px;}
.ws18_c00178{word-spacing:14.976000px;}
.ws17_c00178{word-spacing:15.048000px;}
.ws1e_c00178{word-spacing:15.120000px;}
.ws19_c00178{word-spacing:19.008000px;}
.ws16_c00178{word-spacing:23.040000px;}
._1_c00178{margin-left:-1.058400px;}
._0_c00178{width:1.220400px;}
._2_c00178{width:2.476800px;}
._4_c00178{width:3.600000px;}
._3_c00178{width:13.104000px;}
.fc0_c00178{color:rgb(0,0,0);}
.fs0_c00178{font-size:54.000000px;}
.fs1_c00178{font-size:72.000000px;}
.y0_c00178{bottom:0.000000px;}
.y26_c00178{bottom:57.240000px;}
.y25_c00178{bottom:144.000000px;}
.y24_c00178{bottom:175.050000px;}
.y23_c00178{bottom:206.100000px;}
.y22_c00178{bottom:237.150000px;}
.y21_c00178{bottom:268.200000px;}
.y20_c00178{bottom:299.250000px;}
.y1f_c00178{bottom:330.300000px;}
.y1e_c00178{bottom:361.350000px;}
.y1d_c00178{bottom:392.400000px;}
.y1c_c00178{bottom:423.450000px;}
.y1b_c00178{bottom:454.500000px;}
.y1a_c00178{bottom:485.550000px;}
.y19_c00178{bottom:516.600000px;}
.y18_c00178{bottom:547.650000px;}
.y17_c00178{bottom:578.700000px;}
.y16_c00178{bottom:609.750000px;}
.y15_c00178{bottom:640.800000px;}
.y14_c00178{bottom:671.850000px;}
.y13_c00178{bottom:702.900000px;}
.y12_c00178{bottom:733.950000px;}
.y11_c00178{bottom:765.000000px;}
.y10_c00178{bottom:795.960000px;}
.yf_c00178{bottom:828.270000px;}
.ye_c00178{bottom:860.670000px;}
.yd_c00178{bottom:891.630000px;}
.yc_c00178{bottom:924.030000px;}
.yb_c00178{bottom:955.080000px;}
.ya_c00178{bottom:986.130000px;}
.y9_c00178{bottom:1017.180000px;}
.y8_c00178{bottom:1048.230000px;}
.y7_c00178{bottom:1079.280000px;}
.y6_c00178{bottom:1110.330000px;}
.y5_c00178{bottom:1131.030000px;}
.y4_c00178{bottom:1150.920000px;}
.y3_c00178{bottom:1166.404500px;}
.y2_c00178{bottom:1181.970000px;}
.y1_c00178{bottom:1197.450000px;}
.h3_c00178{height:52.971680px;}
.h2_c00178{height:52.998047px;}
.h4_c00178{height:70.664062px;}
.h5_c00178{height:75.093750px;}
.h0_c00178{height:1262.880000px;}
.h1_c00178{height:1263.000000px;}
.w0_c00178{width:893.070000px;}
.w1_c00178{width:893.250000px;}
.x0_c00178{left:0.000000px;}
.x3_c00178{left:127.620000px;}
.x4_c00178{left:154.620000px;}
.x7_c00178{left:181.620000px;}
.x5_c00178{left:208.620000px;}
.x6_c00178{left:235.620000px;}
.x2_c00178{left:425.160000px;}
.x1_c00178{left:446.580000px;}
.x8_c00178{left:738.540000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls10_c00178{letter-spacing:-0.512000pt;}
.lsd_c00178{letter-spacing:-0.384000pt;}
.ls12_c00178{letter-spacing:-0.320000pt;}
.lsc_c00178{letter-spacing:-0.256000pt;}
.ls11_c00178{letter-spacing:-0.192000pt;}
.lsb_c00178{letter-spacing:-0.096000pt;}
.lsf_c00178{letter-spacing:-0.064000pt;}
.lsa_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:0.064000pt;}
.lse_c00178{letter-spacing:0.128000pt;}
.ls2_c00178{letter-spacing:0.960000pt;}
.ls9_c00178{letter-spacing:2.560000pt;}
.ls7_c00178{letter-spacing:2.880000pt;}
.ls6_c00178{letter-spacing:9.600000pt;}
.ls8_c00178{letter-spacing:13.120000pt;}
.ls5_c00178{letter-spacing:20.480000pt;}
.ls3_c00178{letter-spacing:21.248000pt;}
.ls1_c00178{letter-spacing:27.328000pt;}
.ls4_c00178{letter-spacing:48.768000pt;}
.ws1_c00178{word-spacing:-64.000000pt;}
.ws0_c00178{word-spacing:-16.064000pt;}
.ws2_c00178{word-spacing:-16.000000pt;}
.ws4_c00178{word-spacing:-15.936000pt;}
.ws6_c00178{word-spacing:-15.680000pt;}
.ws3_c00178{word-spacing:-15.616000pt;}
.ws5_c00178{word-spacing:-15.488000pt;}
.wse_c00178{word-spacing:-0.320000pt;}
.ws12_c00178{word-spacing:-0.128000pt;}
.wsa_c00178{word-spacing:-0.064000pt;}
.ws7_c00178{word-spacing:0.000000pt;}
.ws9_c00178{word-spacing:0.144000pt;}
.ws8_c00178{word-spacing:0.240000pt;}
.ws1f_c00178{word-spacing:0.320000pt;}
.ws1c_c00178{word-spacing:0.576000pt;}
.wsb_c00178{word-spacing:0.960000pt;}
.wsc_c00178{word-spacing:1.216000pt;}
.ws13_c00178{word-spacing:2.496000pt;}
.ws14_c00178{word-spacing:2.560000pt;}
.ws1d_c00178{word-spacing:2.816000pt;}
.wsd_c00178{word-spacing:3.200000pt;}
.ws20_c00178{word-spacing:4.480000pt;}
.ws11_c00178{word-spacing:5.056000pt;}
.wsf_c00178{word-spacing:5.120000pt;}
.ws10_c00178{word-spacing:5.440000pt;}
.ws1a_c00178{word-spacing:9.600000pt;}
.ws1b_c00178{word-spacing:9.792000pt;}
.ws15_c00178{word-spacing:11.840000pt;}
.ws18_c00178{word-spacing:13.312000pt;}
.ws17_c00178{word-spacing:13.376000pt;}
.ws1e_c00178{word-spacing:13.440000pt;}
.ws19_c00178{word-spacing:16.896000pt;}
.ws16_c00178{word-spacing:20.480000pt;}
._1_c00178{margin-left:-0.940800pt;}
._0_c00178{width:1.084800pt;}
._2_c00178{width:2.201600pt;}
._4_c00178{width:3.200000pt;}
._3_c00178{width:11.648000pt;}
.fs0_c00178{font-size:48.000000pt;}
.fs1_c00178{font-size:64.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y26_c00178{bottom:50.880000pt;}
.y25_c00178{bottom:128.000000pt;}
.y24_c00178{bottom:155.600000pt;}
.y23_c00178{bottom:183.200000pt;}
.y22_c00178{bottom:210.800000pt;}
.y21_c00178{bottom:238.400000pt;}
.y20_c00178{bottom:266.000000pt;}
.y1f_c00178{bottom:293.600000pt;}
.y1e_c00178{bottom:321.200000pt;}
.y1d_c00178{bottom:348.800000pt;}
.y1c_c00178{bottom:376.400000pt;}
.y1b_c00178{bottom:404.000000pt;}
.y1a_c00178{bottom:431.600000pt;}
.y19_c00178{bottom:459.200000pt;}
.y18_c00178{bottom:486.800000pt;}
.y17_c00178{bottom:514.400000pt;}
.y16_c00178{bottom:542.000000pt;}
.y15_c00178{bottom:569.600000pt;}
.y14_c00178{bottom:597.200000pt;}
.y13_c00178{bottom:624.800000pt;}
.y12_c00178{bottom:652.400000pt;}
.y11_c00178{bottom:680.000000pt;}
.y10_c00178{bottom:707.520000pt;}
.yf_c00178{bottom:736.240000pt;}
.ye_c00178{bottom:765.040000pt;}
.yd_c00178{bottom:792.560000pt;}
.yc_c00178{bottom:821.360000pt;}
.yb_c00178{bottom:848.960000pt;}
.ya_c00178{bottom:876.560000pt;}
.y9_c00178{bottom:904.160000pt;}
.y8_c00178{bottom:931.760000pt;}
.y7_c00178{bottom:959.360000pt;}
.y6_c00178{bottom:986.960000pt;}
.y5_c00178{bottom:1005.360000pt;}
.y4_c00178{bottom:1023.040000pt;}
.y3_c00178{bottom:1036.804000pt;}
.y2_c00178{bottom:1050.640000pt;}
.y1_c00178{bottom:1064.400000pt;}
.h3_c00178{height:47.085938pt;}
.h2_c00178{height:47.109375pt;}
.h4_c00178{height:62.812500pt;}
.h5_c00178{height:66.750000pt;}
.h0_c00178{height:1122.560000pt;}
.h1_c00178{height:1122.666667pt;}
.w0_c00178{width:793.840000pt;}
.w1_c00178{width:794.000000pt;}
.x0_c00178{left:0.000000pt;}
.x3_c00178{left:113.440000pt;}
.x4_c00178{left:137.440000pt;}
.x7_c00178{left:161.440000pt;}
.x5_c00178{left:185.440000pt;}
.x6_c00178{left:209.440000pt;}
.x2_c00178{left:377.920000pt;}
.x1_c00178{left:396.960000pt;}
.x8_c00178{left:656.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_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_6cbc49e21b9617438f34324b.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_1cc1d2612b26058208806da3.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;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_c00179;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_5cc74d4fdda03c349bec8609.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.142090;font-style: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);}
.v1_c00179{vertical-align:-61.938000px;}
.v0_c00179{vertical-align:0.000000px;}
.ls9_c00179{letter-spacing:-0.072000px;}
.ls8_c00179{letter-spacing:0.000000px;}
.ls5_c00179{letter-spacing:0.072000px;}
.lsa_c00179{letter-spacing:0.144000px;}
.ls2_c00179{letter-spacing:5.047200px;}
.ls7_c00179{letter-spacing:9.720000px;}
.ls4_c00179{letter-spacing:13.680000px;}
.ls6_c00179{letter-spacing:17.640000px;}
.ls1_c00179{letter-spacing:23.904000px;}
.ls3_c00179{letter-spacing:54.864000px;}
.ls0_c00179{letter-spacing:319.518000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:-72.000000px;}
.ws3_c00179{word-spacing:-18.144000px;}
.ws2_c00179{word-spacing:-18.072000px;}
.ws1_c00179{word-spacing:-17.928000px;}
.ws5_c00179{word-spacing:-0.162000px;}
.wsa_c00179{word-spacing:-0.144000px;}
.ws9_c00179{word-spacing:-0.072000px;}
.ws4_c00179{word-spacing:0.000000px;}
.ws15_c00179{word-spacing:0.360000px;}
.ws1a_c00179{word-spacing:1.728000px;}
.ws1b_c00179{word-spacing:1.800000px;}
.ws18_c00179{word-spacing:2.808000px;}
.ws13_c00179{word-spacing:3.168000px;}
.ws14_c00179{word-spacing:3.240000px;}
.ws8_c00179{word-spacing:3.528000px;}
.wsb_c00179{word-spacing:3.600000px;}
.ws7_c00179{word-spacing:4.968000px;}
.ws6_c00179{word-spacing:5.040000px;}
.wsd_c00179{word-spacing:5.976000px;}
.wsc_c00179{word-spacing:6.120000px;}
.ws17_c00179{word-spacing:9.648000px;}
.ws16_c00179{word-spacing:9.720000px;}
.wse_c00179{word-spacing:11.160000px;}
.ws10_c00179{word-spacing:13.608000px;}
.wsf_c00179{word-spacing:13.680000px;}
.ws11_c00179{word-spacing:17.640000px;}
.ws19_c00179{word-spacing:20.880000px;}
.ws12_c00179{word-spacing:21.240000px;}
._0_c00179{margin-left:-1.087200px;}
._2_c00179{width:1.008000px;}
._1_c00179{width:3.240000px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs0_c00179{font-size:54.000000px;}
.fs1_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y25_c00179{bottom:57.240000px;}
.y24_c00179{bottom:141.390000px;}
.y23_c00179{bottom:172.440000px;}
.y22_c00179{bottom:203.490000px;}
.y21_c00179{bottom:234.540000px;}
.y20_c00179{bottom:265.590000px;}
.y1f_c00179{bottom:296.640000px;}
.y1e_c00179{bottom:327.690000px;}
.y1d_c00179{bottom:358.740000px;}
.y1c_c00179{bottom:389.790000px;}
.y1b_c00179{bottom:420.840000px;}
.y1a_c00179{bottom:451.890000px;}
.y19_c00179{bottom:482.940000px;}
.y18_c00179{bottom:513.990000px;}
.y17_c00179{bottom:545.040000px;}
.y16_c00179{bottom:576.090000px;}
.y15_c00179{bottom:607.140000px;}
.y14_c00179{bottom:638.190000px;}
.y13_c00179{bottom:669.240000px;}
.y12_c00179{bottom:700.290000px;}
.y11_c00179{bottom:731.340000px;}
.y10_c00179{bottom:762.390000px;}
.yf_c00179{bottom:793.350000px;}
.ye_c00179{bottom:825.660000px;}
.yd_c00179{bottom:858.060000px;}
.yc_c00179{bottom:890.370000px;}
.yb_c00179{bottom:922.680000px;}
.ya_c00179{bottom:955.080000px;}
.y9_c00179{bottom:986.130000px;}
.y8_c00179{bottom:1017.180000px;}
.y7_c00179{bottom:1048.230000px;}
.y6_c00179{bottom:1079.280000px;}
.y5_c00179{bottom:1110.330000px;}
.y4_c00179{bottom:1131.030000px;}
.y3_c00179{bottom:1150.915500px;}
.y2_c00179{bottom:1166.400000px;}
.y1_c00179{bottom:1197.450000px;}
.h2_c00179{height:52.998047px;}
.h3_c00179{height:70.664062px;}
.h4_c00179{height:75.093750px;}
.h0_c00179{height:1262.880000px;}
.h1_c00179{height:1263.000000px;}
.w0_c00179{width:893.070000px;}
.w1_c00179{width:893.250000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:127.620000px;}
.x3_c00179{left:154.620000px;}
.x4_c00179{left:181.620000px;}
.x5_c00179{left:208.620000px;}
.x1_c00179{left:446.580000px;}
@media print{
.v1_c00179{vertical-align:-55.056000pt;}
.v0_c00179{vertical-align:0.000000pt;}
.ls9_c00179{letter-spacing:-0.064000pt;}
.ls8_c00179{letter-spacing:0.000000pt;}
.ls5_c00179{letter-spacing:0.064000pt;}
.lsa_c00179{letter-spacing:0.128000pt;}
.ls2_c00179{letter-spacing:4.486400pt;}
.ls7_c00179{letter-spacing:8.640000pt;}
.ls4_c00179{letter-spacing:12.160000pt;}
.ls6_c00179{letter-spacing:15.680000pt;}
.ls1_c00179{letter-spacing:21.248000pt;}
.ls3_c00179{letter-spacing:48.768000pt;}
.ls0_c00179{letter-spacing:284.016000pt;}
.ws0_c00179{word-spacing:-64.000000pt;}
.ws3_c00179{word-spacing:-16.128000pt;}
.ws2_c00179{word-spacing:-16.064000pt;}
.ws1_c00179{word-spacing:-15.936000pt;}
.ws5_c00179{word-spacing:-0.144000pt;}
.wsa_c00179{word-spacing:-0.128000pt;}
.ws9_c00179{word-spacing:-0.064000pt;}
.ws4_c00179{word-spacing:0.000000pt;}
.ws15_c00179{word-spacing:0.320000pt;}
.ws1a_c00179{word-spacing:1.536000pt;}
.ws1b_c00179{word-spacing:1.600000pt;}
.ws18_c00179{word-spacing:2.496000pt;}
.ws13_c00179{word-spacing:2.816000pt;}
.ws14_c00179{word-spacing:2.880000pt;}
.ws8_c00179{word-spacing:3.136000pt;}
.wsb_c00179{word-spacing:3.200000pt;}
.ws7_c00179{word-spacing:4.416000pt;}
.ws6_c00179{word-spacing:4.480000pt;}
.wsd_c00179{word-spacing:5.312000pt;}
.wsc_c00179{word-spacing:5.440000pt;}
.ws17_c00179{word-spacing:8.576000pt;}
.ws16_c00179{word-spacing:8.640000pt;}
.wse_c00179{word-spacing:9.920000pt;}
.ws10_c00179{word-spacing:12.096000pt;}
.wsf_c00179{word-spacing:12.160000pt;}
.ws11_c00179{word-spacing:15.680000pt;}
.ws19_c00179{word-spacing:18.560000pt;}
.ws12_c00179{word-spacing:18.880000pt;}
._0_c00179{margin-left:-0.966400pt;}
._2_c00179{width:0.896000pt;}
._1_c00179{width:2.880000pt;}
.fs0_c00179{font-size:48.000000pt;}
.fs1_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y25_c00179{bottom:50.880000pt;}
.y24_c00179{bottom:125.680000pt;}
.y23_c00179{bottom:153.280000pt;}
.y22_c00179{bottom:180.880000pt;}
.y21_c00179{bottom:208.480000pt;}
.y20_c00179{bottom:236.080000pt;}
.y1f_c00179{bottom:263.680000pt;}
.y1e_c00179{bottom:291.280000pt;}
.y1d_c00179{bottom:318.880000pt;}
.y1c_c00179{bottom:346.480000pt;}
.y1b_c00179{bottom:374.080000pt;}
.y1a_c00179{bottom:401.680000pt;}
.y19_c00179{bottom:429.280000pt;}
.y18_c00179{bottom:456.880000pt;}
.y17_c00179{bottom:484.480000pt;}
.y16_c00179{bottom:512.080000pt;}
.y15_c00179{bottom:539.680000pt;}
.y14_c00179{bottom:567.280000pt;}
.y13_c00179{bottom:594.880000pt;}
.y12_c00179{bottom:622.480000pt;}
.y11_c00179{bottom:650.080000pt;}
.y10_c00179{bottom:677.680000pt;}
.yf_c00179{bottom:705.200000pt;}
.ye_c00179{bottom:733.920000pt;}
.yd_c00179{bottom:762.720000pt;}
.yc_c00179{bottom:791.440000pt;}
.yb_c00179{bottom:820.160000pt;}
.ya_c00179{bottom:848.960000pt;}
.y9_c00179{bottom:876.560000pt;}
.y8_c00179{bottom:904.160000pt;}
.y7_c00179{bottom:931.760000pt;}
.y6_c00179{bottom:959.360000pt;}
.y5_c00179{bottom:986.960000pt;}
.y4_c00179{bottom:1005.360000pt;}
.y3_c00179{bottom:1023.036000pt;}
.y2_c00179{bottom:1036.800000pt;}
.y1_c00179{bottom:1064.400000pt;}
.h2_c00179{height:47.109375pt;}
.h3_c00179{height:62.812500pt;}
.h4_c00179{height:66.750000pt;}
.h0_c00179{height:1122.560000pt;}
.h1_c00179{height:1122.666667pt;}
.w0_c00179{width:793.840000pt;}
.w1_c00179{width:794.000000pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:113.440000pt;}
.x3_c00179{left:137.440000pt;}
.x4_c00179{left:161.440000pt;}
.x5_c00179{left:185.440000pt;}
.x1_c00179{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df2a0e128bf3aa1dbae0a0eb.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_1cc1d2612b26058208806da3.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;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_c00180;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00180{vertical-align:-20.880000px;}
.v0_c00180{vertical-align:0.000000px;}
.v1_c00180{vertical-align:27.000000px;}
.lsf_c00180{letter-spacing:-0.432000px;}
.ls11_c00180{letter-spacing:-0.288000px;}
.ls13_c00180{letter-spacing:-0.120240px;}
.lse_c00180{letter-spacing:-0.108000px;}
.ls10_c00180{letter-spacing:-0.072000px;}
.ls12_c00180{letter-spacing:-0.060120px;}
.lsd_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:0.072000px;}
.lsb_c00180{letter-spacing:0.120240px;}
.ls2_c00180{letter-spacing:0.144000px;}
.ls14_c00180{letter-spacing:0.180360px;}
.ls4_c00180{letter-spacing:0.191520px;}
.ls1_c00180{letter-spacing:1.080000px;}
.lsc_c00180{letter-spacing:2.945880px;}
.ls8_c00180{letter-spacing:3.960000px;}
.ls7_c00180{letter-spacing:4.680000px;}
.ls6_c00180{letter-spacing:7.920000px;}
.ls9_c00180{letter-spacing:13.320000px;}
.lsa_c00180{letter-spacing:16.920000px;}
.ls3_c00180{letter-spacing:23.904000px;}
.ls5_c00180{letter-spacing:25.200000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00180{word-spacing:-72.000000px;}
.ws3_c00180{word-spacing:-18.072000px;}
.ws4_c00180{word-spacing:-18.000000px;}
.ws2_c00180{word-spacing:-17.928000px;}
.ws6_c00180{word-spacing:-17.712000px;}
.ws0_c00180{word-spacing:-17.568000px;}
.ws9_c00180{word-spacing:-14.969880px;}
.ws8_c00180{word-spacing:-14.909760px;}
.ws5_c00180{word-spacing:-12.161520px;}
.ws7_c00180{word-spacing:-9.720000px;}
.ws31_c00180{word-spacing:-0.180360px;}
.ws13_c00180{word-spacing:-0.144000px;}
.ws10_c00180{word-spacing:-0.072000px;}
.ws32_c00180{word-spacing:-0.060120px;}
.wsa_c00180{word-spacing:0.000000px;}
.wsc_c00180{word-spacing:0.162000px;}
.ws2a_c00180{word-spacing:0.180360px;}
.ws2b_c00180{word-spacing:0.240480px;}
.wsb_c00180{word-spacing:0.270000px;}
.wsf_c00180{word-spacing:0.720000px;}
.ws12_c00180{word-spacing:1.008000px;}
.ws11_c00180{word-spacing:1.080000px;}
.ws14_c00180{word-spacing:2.160000px;}
.ws2c_c00180{word-spacing:2.705400px;}
.ws2d_c00180{word-spacing:2.825640px;}
.ws2e_c00180{word-spacing:3.006000px;}
.ws18_c00180{word-spacing:3.816000px;}
.ws17_c00180{word-spacing:3.888000px;}
.ws26_c00180{word-spacing:4.248000px;}
.ws24_c00180{word-spacing:4.320000px;}
.ws25_c00180{word-spacing:4.608000px;}
.ws23_c00180{word-spacing:4.680000px;}
.ws22_c00180{word-spacing:7.488000px;}
.ws21_c00180{word-spacing:7.848000px;}
.ws20_c00180{word-spacing:7.920000px;}
.ws1a_c00180{word-spacing:11.808000px;}
.ws19_c00180{word-spacing:11.880000px;}
.ws1b_c00180{word-spacing:12.240000px;}
.ws27_c00180{word-spacing:13.248000px;}
.ws1f_c00180{word-spacing:13.608000px;}
.ws28_c00180{word-spacing:14.760000px;}
.ws2f_c00180{word-spacing:14.909760px;}
.ws30_c00180{word-spacing:14.969880px;}
.ws29_c00180{word-spacing:16.560000px;}
.wse_c00180{word-spacing:18.288000px;}
.wsd_c00180{word-spacing:18.360000px;}
.ws1c_c00180{word-spacing:21.096000px;}
.ws1d_c00180{word-spacing:21.456000px;}
.ws1e_c00180{word-spacing:21.600000px;}
.ws16_c00180{word-spacing:25.416000px;}
.ws15_c00180{word-spacing:25.560000px;}
._1_c00180{margin-left:-1.058400px;}
._0_c00180{width:1.220400px;}
._2_c00180{width:3.002400px;}
._5_c00180{width:13.377600px;}
._4_c00180{width:20.793600px;}
._3_c00180{width:24.595200px;}
.fc0_c00180{color:rgb(0,0,0);}
.fs3_c00180{font-size:38.880000px;}
.fs2_c00180{font-size:47.880000px;}
.fs0_c00180{font-size:54.000000px;}
.fs4_c00180{font-size:60.120000px;}
.fs1_c00180{font-size:72.000000px;}
.y0_c00180{bottom:0.000000px;}
.y28_c00180{bottom:57.240000px;}
.y27_c00180{bottom:115.020000px;}
.y26_c00180{bottom:126.981000px;}
.y25_c00180{bottom:144.265500px;}
.y24_c00180{bottom:166.770000px;}
.y23_c00180{bottom:183.960000px;}
.y29_c00180{bottom:196.650000px;}
.y22_c00180{bottom:241.020000px;}
.y21_c00180{bottom:272.070000px;}
.y20_c00180{bottom:303.120000px;}
.y1f_c00180{bottom:334.170000px;}
.y1e_c00180{bottom:365.220000px;}
.y1d_c00180{bottom:396.270000px;}
.y1c_c00180{bottom:427.320000px;}
.y1b_c00180{bottom:458.370000px;}
.y1a_c00180{bottom:489.420000px;}
.y19_c00180{bottom:520.470000px;}
.y18_c00180{bottom:551.520000px;}
.y17_c00180{bottom:582.570000px;}
.y16_c00180{bottom:613.620000px;}
.y15_c00180{bottom:644.670000px;}
.y14_c00180{bottom:675.720000px;}
.y13_c00180{bottom:706.770000px;}
.y12_c00180{bottom:737.820000px;}
.y11_c00180{bottom:768.870000px;}
.y10_c00180{bottom:799.920000px;}
.yf_c00180{bottom:830.970000px;}
.ye_c00180{bottom:861.930000px;}
.yd_c00180{bottom:892.980000px;}
.yc_c00180{bottom:924.030000px;}
.yb_c00180{bottom:955.080000px;}
.ya_c00180{bottom:986.130000px;}
.y9_c00180{bottom:1017.180000px;}
.y8_c00180{bottom:1048.230000px;}
.y7_c00180{bottom:1079.280000px;}
.y6_c00180{bottom:1110.330000px;}
.y5_c00180{bottom:1131.030000px;}
.y4_c00180{bottom:1150.920000px;}
.y3_c00180{bottom:1166.404500px;}
.y2_c00180{bottom:1181.970000px;}
.y1_c00180{bottom:1197.450000px;}
.h7_c00180{height:38.158594px;}
.h3_c00180{height:52.971680px;}
.h2_c00180{height:52.998047px;}
.h8_c00180{height:59.004492px;}
.h4_c00180{height:70.664062px;}
.h6_c00180{height:73.991602px;}
.h5_c00180{height:75.093750px;}
.h0_c00180{height:1262.880000px;}
.h1_c00180{height:1263.000000px;}
.w0_c00180{width:893.070000px;}
.w1_c00180{width:893.250000px;}
.x0_c00180{left:0.000000px;}
.x3_c00180{left:127.620000px;}
.x4_c00180{left:154.620000px;}
.x2_c00180{left:425.160000px;}
.x1_c00180{left:446.580000px;}
.x5_c00180{left:738.540000px;}
@media print{
.v2_c00180{vertical-align:-18.560000pt;}
.v0_c00180{vertical-align:0.000000pt;}
.v1_c00180{vertical-align:24.000000pt;}
.lsf_c00180{letter-spacing:-0.384000pt;}
.ls11_c00180{letter-spacing:-0.256000pt;}
.ls13_c00180{letter-spacing:-0.106880pt;}
.lse_c00180{letter-spacing:-0.096000pt;}
.ls10_c00180{letter-spacing:-0.064000pt;}
.ls12_c00180{letter-spacing:-0.053440pt;}
.lsd_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:0.064000pt;}
.lsb_c00180{letter-spacing:0.106880pt;}
.ls2_c00180{letter-spacing:0.128000pt;}
.ls14_c00180{letter-spacing:0.160320pt;}
.ls4_c00180{letter-spacing:0.170240pt;}
.ls1_c00180{letter-spacing:0.960000pt;}
.lsc_c00180{letter-spacing:2.618560pt;}
.ls8_c00180{letter-spacing:3.520000pt;}
.ls7_c00180{letter-spacing:4.160000pt;}
.ls6_c00180{letter-spacing:7.040000pt;}
.ls9_c00180{letter-spacing:11.840000pt;}
.lsa_c00180{letter-spacing:15.040000pt;}
.ls3_c00180{letter-spacing:21.248000pt;}
.ls5_c00180{letter-spacing:22.400000pt;}
.ws1_c00180{word-spacing:-64.000000pt;}
.ws3_c00180{word-spacing:-16.064000pt;}
.ws4_c00180{word-spacing:-16.000000pt;}
.ws2_c00180{word-spacing:-15.936000pt;}
.ws6_c00180{word-spacing:-15.744000pt;}
.ws0_c00180{word-spacing:-15.616000pt;}
.ws9_c00180{word-spacing:-13.306560pt;}
.ws8_c00180{word-spacing:-13.253120pt;}
.ws5_c00180{word-spacing:-10.810240pt;}
.ws7_c00180{word-spacing:-8.640000pt;}
.ws31_c00180{word-spacing:-0.160320pt;}
.ws13_c00180{word-spacing:-0.128000pt;}
.ws10_c00180{word-spacing:-0.064000pt;}
.ws32_c00180{word-spacing:-0.053440pt;}
.wsa_c00180{word-spacing:0.000000pt;}
.wsc_c00180{word-spacing:0.144000pt;}
.ws2a_c00180{word-spacing:0.160320pt;}
.ws2b_c00180{word-spacing:0.213760pt;}
.wsb_c00180{word-spacing:0.240000pt;}
.wsf_c00180{word-spacing:0.640000pt;}
.ws12_c00180{word-spacing:0.896000pt;}
.ws11_c00180{word-spacing:0.960000pt;}
.ws14_c00180{word-spacing:1.920000pt;}
.ws2c_c00180{word-spacing:2.404800pt;}
.ws2d_c00180{word-spacing:2.511680pt;}
.ws2e_c00180{word-spacing:2.672000pt;}
.ws18_c00180{word-spacing:3.392000pt;}
.ws17_c00180{word-spacing:3.456000pt;}
.ws26_c00180{word-spacing:3.776000pt;}
.ws24_c00180{word-spacing:3.840000pt;}
.ws25_c00180{word-spacing:4.096000pt;}
.ws23_c00180{word-spacing:4.160000pt;}
.ws22_c00180{word-spacing:6.656000pt;}
.ws21_c00180{word-spacing:6.976000pt;}
.ws20_c00180{word-spacing:7.040000pt;}
.ws1a_c00180{word-spacing:10.496000pt;}
.ws19_c00180{word-spacing:10.560000pt;}
.ws1b_c00180{word-spacing:10.880000pt;}
.ws27_c00180{word-spacing:11.776000pt;}
.ws1f_c00180{word-spacing:12.096000pt;}
.ws28_c00180{word-spacing:13.120000pt;}
.ws2f_c00180{word-spacing:13.253120pt;}
.ws30_c00180{word-spacing:13.306560pt;}
.ws29_c00180{word-spacing:14.720000pt;}
.wse_c00180{word-spacing:16.256000pt;}
.wsd_c00180{word-spacing:16.320000pt;}
.ws1c_c00180{word-spacing:18.752000pt;}
.ws1d_c00180{word-spacing:19.072000pt;}
.ws1e_c00180{word-spacing:19.200000pt;}
.ws16_c00180{word-spacing:22.592000pt;}
.ws15_c00180{word-spacing:22.720000pt;}
._1_c00180{margin-left:-0.940800pt;}
._0_c00180{width:1.084800pt;}
._2_c00180{width:2.668800pt;}
._5_c00180{width:11.891200pt;}
._4_c00180{width:18.483200pt;}
._3_c00180{width:21.862400pt;}
.fs3_c00180{font-size:34.560000pt;}
.fs2_c00180{font-size:42.560000pt;}
.fs0_c00180{font-size:48.000000pt;}
.fs4_c00180{font-size:53.440000pt;}
.fs1_c00180{font-size:64.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y28_c00180{bottom:50.880000pt;}
.y27_c00180{bottom:102.240000pt;}
.y26_c00180{bottom:112.872000pt;}
.y25_c00180{bottom:128.236000pt;}
.y24_c00180{bottom:148.240000pt;}
.y23_c00180{bottom:163.520000pt;}
.y29_c00180{bottom:174.800000pt;}
.y22_c00180{bottom:214.240000pt;}
.y21_c00180{bottom:241.840000pt;}
.y20_c00180{bottom:269.440000pt;}
.y1f_c00180{bottom:297.040000pt;}
.y1e_c00180{bottom:324.640000pt;}
.y1d_c00180{bottom:352.240000pt;}
.y1c_c00180{bottom:379.840000pt;}
.y1b_c00180{bottom:407.440000pt;}
.y1a_c00180{bottom:435.040000pt;}
.y19_c00180{bottom:462.640000pt;}
.y18_c00180{bottom:490.240000pt;}
.y17_c00180{bottom:517.840000pt;}
.y16_c00180{bottom:545.440000pt;}
.y15_c00180{bottom:573.040000pt;}
.y14_c00180{bottom:600.640000pt;}
.y13_c00180{bottom:628.240000pt;}
.y12_c00180{bottom:655.840000pt;}
.y11_c00180{bottom:683.440000pt;}
.y10_c00180{bottom:711.040000pt;}
.yf_c00180{bottom:738.640000pt;}
.ye_c00180{bottom:766.160000pt;}
.yd_c00180{bottom:793.760000pt;}
.yc_c00180{bottom:821.360000pt;}
.yb_c00180{bottom:848.960000pt;}
.ya_c00180{bottom:876.560000pt;}
.y9_c00180{bottom:904.160000pt;}
.y8_c00180{bottom:931.760000pt;}
.y7_c00180{bottom:959.360000pt;}
.y6_c00180{bottom:986.960000pt;}
.y5_c00180{bottom:1005.360000pt;}
.y4_c00180{bottom:1023.040000pt;}
.y3_c00180{bottom:1036.804000pt;}
.y2_c00180{bottom:1050.640000pt;}
.y1_c00180{bottom:1064.400000pt;}
.h7_c00180{height:33.918750pt;}
.h3_c00180{height:47.085938pt;}
.h2_c00180{height:47.109375pt;}
.h8_c00180{height:52.448437pt;}
.h4_c00180{height:62.812500pt;}
.h6_c00180{height:65.770312pt;}
.h5_c00180{height:66.750000pt;}
.h0_c00180{height:1122.560000pt;}
.h1_c00180{height:1122.666667pt;}
.w0_c00180{width:793.840000pt;}
.w1_c00180{width:794.000000pt;}
.x0_c00180{left:0.000000pt;}
.x3_c00180{left:113.440000pt;}
.x4_c00180{left:137.440000pt;}
.x2_c00180{left:377.920000pt;}
.x1_c00180{left:396.960000pt;}
.x5_c00180{left:656.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_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_f8d7dba8eab2c8ffb612ffca.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00181{vertical-align:-61.938000px;}
.v3_c00181{vertical-align:-20.880000px;}
.v0_c00181{vertical-align:0.000000px;}
.v2_c00181{vertical-align:27.000000px;}
.lsd_c00181{letter-spacing:-0.360000px;}
.lse_c00181{letter-spacing:-0.288000px;}
.lsf_c00181{letter-spacing:-0.120240px;}
.lsb_c00181{letter-spacing:-0.072000px;}
.lsa_c00181{letter-spacing:0.000000px;}
.ls2_c00181{letter-spacing:0.072000px;}
.ls8_c00181{letter-spacing:0.120240px;}
.lsc_c00181{letter-spacing:0.144000px;}
.ls10_c00181{letter-spacing:0.180360px;}
.ls4_c00181{letter-spacing:0.191520px;}
.ls1_c00181{letter-spacing:2.160000px;}
.ls5_c00181{letter-spacing:9.000000px;}
.ls3_c00181{letter-spacing:9.367200px;}
.ls9_c00181{letter-spacing:13.406760px;}
.ls7_c00181{letter-spacing:15.120000px;}
.ls6_c00181{letter-spacing:32.400000px;}
.ls0_c00181{letter-spacing:319.518000px;}
.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;}
}
.ws4_c00181{word-spacing:-18.144000px;}
.ws1_c00181{word-spacing:-18.072000px;}
.ws0_c00181{word-spacing:-17.928000px;}
.ws3_c00181{word-spacing:-17.712000px;}
.ws6_c00181{word-spacing:-15.150240px;}
.ws2_c00181{word-spacing:-12.161520px;}
.ws5_c00181{word-spacing:-9.720000px;}
.ws8_c00181{word-spacing:-0.162000px;}
.ws13_c00181{word-spacing:-0.144000px;}
.ws28_c00181{word-spacing:-0.120240px;}
.ws11_c00181{word-spacing:-0.072000px;}
.ws2c_c00181{word-spacing:-0.060120px;}
.ws7_c00181{word-spacing:0.000000px;}
.ws2b_c00181{word-spacing:0.120240px;}
.ws19_c00181{word-spacing:0.360000px;}
.wsa_c00181{word-spacing:1.728000px;}
.ws25_c00181{word-spacing:1.800000px;}
.ws9_c00181{word-spacing:2.088000px;}
.wsb_c00181{word-spacing:2.160000px;}
.wsc_c00181{word-spacing:3.168000px;}
.ws2a_c00181{word-spacing:4.509000px;}
.ws21_c00181{word-spacing:6.048000px;}
.ws18_c00181{word-spacing:8.568000px;}
.ws1d_c00181{word-spacing:8.640000px;}
.ws1c_c00181{word-spacing:8.928000px;}
.ws1b_c00181{word-spacing:9.000000px;}
.ws10_c00181{word-spacing:9.288000px;}
.ws1a_c00181{word-spacing:11.088000px;}
.ws24_c00181{word-spacing:11.160000px;}
.wse_c00181{word-spacing:11.376000px;}
.wsd_c00181{word-spacing:11.448000px;}
.wsf_c00181{word-spacing:11.880000px;}
.ws12_c00181{word-spacing:12.528000px;}
.ws20_c00181{word-spacing:12.960000px;}
.ws29_c00181{word-spacing:13.226400px;}
.ws17_c00181{word-spacing:13.248000px;}
.ws22_c00181{word-spacing:15.048000px;}
.ws23_c00181{word-spacing:15.120000px;}
.ws26_c00181{word-spacing:15.768000px;}
.ws15_c00181{word-spacing:20.448000px;}
.ws16_c00181{word-spacing:20.520000px;}
.ws14_c00181{word-spacing:28.080000px;}
.ws27_c00181{word-spacing:32.040000px;}
.ws1f_c00181{word-spacing:32.328000px;}
.ws1e_c00181{word-spacing:32.400000px;}
._0_c00181{margin-left:-1.080000px;}
._7_c00181{width:1.008000px;}
._4_c00181{width:3.096000px;}
._5_c00181{width:6.192000px;}
._2_c00181{width:9.144000px;}
._1_c00181{width:10.872000px;}
._3_c00181{width:12.888000px;}
._6_c00181{width:14.976000px;}
.fc0_c00181{color:rgb(0,0,0);}
.fs3_c00181{font-size:38.880000px;}
.fs2_c00181{font-size:47.880000px;}
.fs0_c00181{font-size:54.000000px;}
.fs4_c00181{font-size:60.120000px;}
.fs1_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y27_c00181{bottom:57.240000px;}
.y26_c00181{bottom:109.791180px;}
.y25_c00181{bottom:126.985500px;}
.y24_c00181{bottom:149.490000px;}
.y23_c00181{bottom:166.770000px;}
.y28_c00181{bottom:179.460000px;}
.y22_c00181{bottom:209.970000px;}
.y21_c00181{bottom:241.020000px;}
.y20_c00181{bottom:272.070000px;}
.y1f_c00181{bottom:303.120000px;}
.y1e_c00181{bottom:334.170000px;}
.y1d_c00181{bottom:365.220000px;}
.y1c_c00181{bottom:396.270000px;}
.y1b_c00181{bottom:427.320000px;}
.y1a_c00181{bottom:458.370000px;}
.y19_c00181{bottom:489.420000px;}
.y18_c00181{bottom:520.470000px;}
.y17_c00181{bottom:551.520000px;}
.y16_c00181{bottom:582.570000px;}
.y15_c00181{bottom:613.620000px;}
.y14_c00181{bottom:644.670000px;}
.y13_c00181{bottom:675.720000px;}
.y12_c00181{bottom:706.770000px;}
.y11_c00181{bottom:737.820000px;}
.y10_c00181{bottom:768.870000px;}
.yf_c00181{bottom:799.920000px;}
.ye_c00181{bottom:830.970000px;}
.yd_c00181{bottom:861.930000px;}
.yc_c00181{bottom:892.980000px;}
.yb_c00181{bottom:924.030000px;}
.ya_c00181{bottom:955.080000px;}
.y9_c00181{bottom:986.130000px;}
.y8_c00181{bottom:1017.180000px;}
.y7_c00181{bottom:1048.230000px;}
.y6_c00181{bottom:1079.280000px;}
.y5_c00181{bottom:1110.330000px;}
.y4_c00181{bottom:1131.030000px;}
.y3_c00181{bottom:1150.915500px;}
.y2_c00181{bottom:1166.400000px;}
.y1_c00181{bottom:1197.450000px;}
.h5_c00181{height:38.158594px;}
.h2_c00181{height:52.998047px;}
.h6_c00181{height:59.004492px;}
.h3_c00181{height:70.664062px;}
.h4_c00181{height:73.991602px;}
.h0_c00181{height:1262.880000px;}
.h1_c00181{height:1263.000000px;}
.w0_c00181{width:893.070000px;}
.w1_c00181{width:893.250000px;}
.x0_c00181{left:0.000000px;}
.x2_c00181{left:127.620000px;}
.x1_c00181{left:446.580000px;}
@media print{
.v1_c00181{vertical-align:-55.056000pt;}
.v3_c00181{vertical-align:-18.560000pt;}
.v0_c00181{vertical-align:0.000000pt;}
.v2_c00181{vertical-align:24.000000pt;}
.lsd_c00181{letter-spacing:-0.320000pt;}
.lse_c00181{letter-spacing:-0.256000pt;}
.lsf_c00181{letter-spacing:-0.106880pt;}
.lsb_c00181{letter-spacing:-0.064000pt;}
.lsa_c00181{letter-spacing:0.000000pt;}
.ls2_c00181{letter-spacing:0.064000pt;}
.ls8_c00181{letter-spacing:0.106880pt;}
.lsc_c00181{letter-spacing:0.128000pt;}
.ls10_c00181{letter-spacing:0.160320pt;}
.ls4_c00181{letter-spacing:0.170240pt;}
.ls1_c00181{letter-spacing:1.920000pt;}
.ls5_c00181{letter-spacing:8.000000pt;}
.ls3_c00181{letter-spacing:8.326400pt;}
.ls9_c00181{letter-spacing:11.917120pt;}
.ls7_c00181{letter-spacing:13.440000pt;}
.ls6_c00181{letter-spacing:28.800000pt;}
.ls0_c00181{letter-spacing:284.016000pt;}
.ws4_c00181{word-spacing:-16.128000pt;}
.ws1_c00181{word-spacing:-16.064000pt;}
.ws0_c00181{word-spacing:-15.936000pt;}
.ws3_c00181{word-spacing:-15.744000pt;}
.ws6_c00181{word-spacing:-13.466880pt;}
.ws2_c00181{word-spacing:-10.810240pt;}
.ws5_c00181{word-spacing:-8.640000pt;}
.ws8_c00181{word-spacing:-0.144000pt;}
.ws13_c00181{word-spacing:-0.128000pt;}
.ws28_c00181{word-spacing:-0.106880pt;}
.ws11_c00181{word-spacing:-0.064000pt;}
.ws2c_c00181{word-spacing:-0.053440pt;}
.ws7_c00181{word-spacing:0.000000pt;}
.ws2b_c00181{word-spacing:0.106880pt;}
.ws19_c00181{word-spacing:0.320000pt;}
.wsa_c00181{word-spacing:1.536000pt;}
.ws25_c00181{word-spacing:1.600000pt;}
.ws9_c00181{word-spacing:1.856000pt;}
.wsb_c00181{word-spacing:1.920000pt;}
.wsc_c00181{word-spacing:2.816000pt;}
.ws2a_c00181{word-spacing:4.008000pt;}
.ws21_c00181{word-spacing:5.376000pt;}
.ws18_c00181{word-spacing:7.616000pt;}
.ws1d_c00181{word-spacing:7.680000pt;}
.ws1c_c00181{word-spacing:7.936000pt;}
.ws1b_c00181{word-spacing:8.000000pt;}
.ws10_c00181{word-spacing:8.256000pt;}
.ws1a_c00181{word-spacing:9.856000pt;}
.ws24_c00181{word-spacing:9.920000pt;}
.wse_c00181{word-spacing:10.112000pt;}
.wsd_c00181{word-spacing:10.176000pt;}
.wsf_c00181{word-spacing:10.560000pt;}
.ws12_c00181{word-spacing:11.136000pt;}
.ws20_c00181{word-spacing:11.520000pt;}
.ws29_c00181{word-spacing:11.756800pt;}
.ws17_c00181{word-spacing:11.776000pt;}
.ws22_c00181{word-spacing:13.376000pt;}
.ws23_c00181{word-spacing:13.440000pt;}
.ws26_c00181{word-spacing:14.016000pt;}
.ws15_c00181{word-spacing:18.176000pt;}
.ws16_c00181{word-spacing:18.240000pt;}
.ws14_c00181{word-spacing:24.960000pt;}
.ws27_c00181{word-spacing:28.480000pt;}
.ws1f_c00181{word-spacing:28.736000pt;}
.ws1e_c00181{word-spacing:28.800000pt;}
._0_c00181{margin-left:-0.960000pt;}
._7_c00181{width:0.896000pt;}
._4_c00181{width:2.752000pt;}
._5_c00181{width:5.504000pt;}
._2_c00181{width:8.128000pt;}
._1_c00181{width:9.664000pt;}
._3_c00181{width:11.456000pt;}
._6_c00181{width:13.312000pt;}
.fs3_c00181{font-size:34.560000pt;}
.fs2_c00181{font-size:42.560000pt;}
.fs0_c00181{font-size:48.000000pt;}
.fs4_c00181{font-size:53.440000pt;}
.fs1_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y27_c00181{bottom:50.880000pt;}
.y26_c00181{bottom:97.592160pt;}
.y25_c00181{bottom:112.876000pt;}
.y24_c00181{bottom:132.880000pt;}
.y23_c00181{bottom:148.240000pt;}
.y28_c00181{bottom:159.520000pt;}
.y22_c00181{bottom:186.640000pt;}
.y21_c00181{bottom:214.240000pt;}
.y20_c00181{bottom:241.840000pt;}
.y1f_c00181{bottom:269.440000pt;}
.y1e_c00181{bottom:297.040000pt;}
.y1d_c00181{bottom:324.640000pt;}
.y1c_c00181{bottom:352.240000pt;}
.y1b_c00181{bottom:379.840000pt;}
.y1a_c00181{bottom:407.440000pt;}
.y19_c00181{bottom:435.040000pt;}
.y18_c00181{bottom:462.640000pt;}
.y17_c00181{bottom:490.240000pt;}
.y16_c00181{bottom:517.840000pt;}
.y15_c00181{bottom:545.440000pt;}
.y14_c00181{bottom:573.040000pt;}
.y13_c00181{bottom:600.640000pt;}
.y12_c00181{bottom:628.240000pt;}
.y11_c00181{bottom:655.840000pt;}
.y10_c00181{bottom:683.440000pt;}
.yf_c00181{bottom:711.040000pt;}
.ye_c00181{bottom:738.640000pt;}
.yd_c00181{bottom:766.160000pt;}
.yc_c00181{bottom:793.760000pt;}
.yb_c00181{bottom:821.360000pt;}
.ya_c00181{bottom:848.960000pt;}
.y9_c00181{bottom:876.560000pt;}
.y8_c00181{bottom:904.160000pt;}
.y7_c00181{bottom:931.760000pt;}
.y6_c00181{bottom:959.360000pt;}
.y5_c00181{bottom:986.960000pt;}
.y4_c00181{bottom:1005.360000pt;}
.y3_c00181{bottom:1023.036000pt;}
.y2_c00181{bottom:1036.800000pt;}
.y1_c00181{bottom:1064.400000pt;}
.h5_c00181{height:33.918750pt;}
.h2_c00181{height:47.109375pt;}
.h6_c00181{height:52.448437pt;}
.h3_c00181{height:62.812500pt;}
.h4_c00181{height:65.770313pt;}
.h0_c00181{height:1122.560000pt;}
.h1_c00181{height:1122.666667pt;}
.w0_c00181{width:793.840000pt;}
.w1_c00181{width:794.000000pt;}
.x0_c00181{left:0.000000pt;}
.x2_c00181{left:113.440000pt;}
.x1_c00181{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cb7fceb7ab552e2532c8319.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.284668;font-style:normal;font-weight:normal;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_b8b4289843c1d565703acba9.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_80293a72c156857b18b7a0c4.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_e110f43ee5dbad33fa266270.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_23632135bfd557717f93d57f.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.142090;font-style: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);}
.m2_c00182{transform:matrix(0.292178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292178,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.292179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292179,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8_c00182{vertical-align:-20.880000px;}
.v7_c00182{vertical-align:-14.760000px;}
.v2_c00182{vertical-align:-10.800000px;}
.v0_c00182{vertical-align:0.000000px;}
.v6_c00182{vertical-align:21.600000px;}
.v1_c00182{vertical-align:27.000000px;}
.v3_c00182{vertical-align:36.360000px;}
.v5_c00182{vertical-align:67.680000px;}
.v4_c00182{vertical-align:78.480000px;}
.ls1b_c00182{letter-spacing:-0.240480px;}
.ls16_c00182{letter-spacing:-0.216000px;}
.ls14_c00182{letter-spacing:-0.153360px;}
.ls15_c00182{letter-spacing:-0.144000px;}
.ls19_c00182{letter-spacing:-0.120240px;}
.lsf_c00182{letter-spacing:-0.108000px;}
.ls17_c00182{letter-spacing:-0.102240px;}
.ls11_c00182{letter-spacing:-0.072000px;}
.ls18_c00182{letter-spacing:-0.060120px;}
.ls1d_c00182{letter-spacing:-0.058453px;}
.ls12_c00182{letter-spacing:-0.042120px;}
.ls1c_c00182{letter-spacing:-0.034097px;}
.lse_c00182{letter-spacing:0.000000px;}
.ls0_c00182{letter-spacing:0.072000px;}
.ls13_c00182{letter-spacing:0.102240px;}
.ls10_c00182{letter-spacing:0.144000px;}
.lsd_c00182{letter-spacing:0.144288px;}
.ls1a_c00182{letter-spacing:0.180360px;}
.ls4_c00182{letter-spacing:0.191520px;}
.ls2_c00182{letter-spacing:0.720000px;}
.ls1_c00182{letter-spacing:0.734400px;}
.ls3_c00182{letter-spacing:1.080000px;}
.lsc_c00182{letter-spacing:1.503000px;}
.ls9_c00182{letter-spacing:3.240000px;}
.ls8_c00182{letter-spacing:3.254400px;}
.ls7_c00182{letter-spacing:5.407200px;}
.lsb_c00182{letter-spacing:7.262496px;}
.lsa_c00182{letter-spacing:7.274520px;}
.ls6_c00182{letter-spacing:15.696000px;}
.ls5_c00182{letter-spacing:20.016000px;}
.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;}
}
.ws4_c00182{word-spacing:-51.222240px;}
.ws3_c00182{word-spacing:-51.120000px;}
.wsc_c00182{word-spacing:-51.017760px;}
.ws6_c00182{word-spacing:-50.966640px;}
.ws7_c00182{word-spacing:-42.077880px;}
.ws5_c00182{word-spacing:-19.954800px;}
.ws1_c00182{word-spacing:-18.072000px;}
.ws0_c00182{word-spacing:-18.000000px;}
.ws8_c00182{word-spacing:-17.928000px;}
.ws9_c00182{word-spacing:-17.856000px;}
.wsa_c00182{word-spacing:-15.768000px;}
.wsb_c00182{word-spacing:-15.696000px;}
.wse_c00182{word-spacing:-14.613150px;}
.wsf_c00182{word-spacing:-14.554697px;}
.ws2_c00182{word-spacing:-12.161520px;}
.wsd_c00182{word-spacing:-9.720000px;}
.ws3c_c00182{word-spacing:-0.180360px;}
.ws2a_c00182{word-spacing:-0.144000px;}
.ws27_c00182{word-spacing:-0.072000px;}
.ws37_c00182{word-spacing:-0.060120px;}
.ws11_c00182{word-spacing:0.000000px;}
.ws3d_c00182{word-spacing:0.034097px;}
.ws28_c00182{word-spacing:0.042120px;}
.ws33_c00182{word-spacing:0.060120px;}
.ws13_c00182{word-spacing:0.162000px;}
.ws38_c00182{word-spacing:0.180360px;}
.ws29_c00182{word-spacing:0.216000px;}
.ws36_c00182{word-spacing:0.240480px;}
.ws12_c00182{word-spacing:0.270000px;}
.ws15_c00182{word-spacing:0.576000px;}
.ws17_c00182{word-spacing:0.648000px;}
.ws16_c00182{word-spacing:0.720000px;}
.ws21_c00182{word-spacing:1.008000px;}
.ws20_c00182{word-spacing:1.080000px;}
.ws3a_c00182{word-spacing:1.322640px;}
.ws39_c00182{word-spacing:1.563120px;}
.ws3b_c00182{word-spacing:1.623240px;}
.ws19_c00182{word-spacing:1.728000px;}
.ws2f_c00182{word-spacing:3.168000px;}
.ws30_c00182{word-spacing:3.240000px;}
.ws1f_c00182{word-spacing:3.600000px;}
.ws2c_c00182{word-spacing:5.328000px;}
.ws2b_c00182{word-spacing:5.400000px;}
.ws1e_c00182{word-spacing:5.688000px;}
.ws26_c00182{word-spacing:6.120000px;}
.ws35_c00182{word-spacing:6.733440px;}
.ws32_c00182{word-spacing:6.973920px;}
.ws31_c00182{word-spacing:7.334640px;}
.ws34_c00182{word-spacing:7.394760px;}
.ws14_c00182{word-spacing:7.920000px;}
.ws25_c00182{word-spacing:8.208000px;}
.ws24_c00182{word-spacing:8.280000px;}
.ws18_c00182{word-spacing:9.720000px;}
.ws1b_c00182{word-spacing:12.600000px;}
.ws23_c00182{word-spacing:16.128000px;}
.ws22_c00182{word-spacing:16.200000px;}
.ws1d_c00182{word-spacing:20.160000px;}
.ws1c_c00182{word-spacing:20.232000px;}
.ws1a_c00182{word-spacing:26.280000px;}
.ws2e_c00182{word-spacing:32.328000px;}
.ws2d_c00182{word-spacing:32.400000px;}
.ws10_c00182{word-spacing:331.993232px;}
._1_c00182{margin-left:-1.058400px;}
._0_c00182{width:1.220400px;}
._3_c00182{width:2.592000px;}
._5_c00182{width:3.913200px;}
._6_c00182{width:5.272920px;}
._7_c00182{width:6.853680px;}
._2_c00182{width:16.200000px;}
._4_c00182{width:18.175320px;}
.fc0_c00182{color:rgb(0,0,0);}
.fs7_c00182{font-size:34.097400px;}
.fs5_c00182{font-size:38.880000px;}
.fs4_c00182{font-size:42.120000px;}
.fs2_c00182{font-size:47.880000px;}
.fs3_c00182{font-size:51.120000px;}
.fs0_c00182{font-size:54.000000px;}
.fs8_c00182{font-size:58.452600px;}
.fs6_c00182{font-size:60.120000px;}
.fs1_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y32_c00182{bottom:4.301337px;}
.y2c_c00182{bottom:4.493765px;}
.y2f_c00182{bottom:8.144596px;}
.y31_c00182{bottom:15.641142px;}
.y2b_c00182{bottom:15.831150px;}
.y2e_c00182{bottom:19.484400px;}
.y2d_c00182{bottom:25.156789px;}
.y30_c00182{bottom:28.807590px;}
.y33_c00182{bottom:29.640539px;}
.y36_c00182{bottom:57.240000px;}
.y35_c00182{bottom:109.799550px;}
.y2a_c00182{bottom:123.510000px;}
.y34_c00182{bottom:147.600000px;}
.y29_c00182{bottom:173.335680px;}
.y28_c00182{bottom:195.750000px;}
.y27_c00182{bottom:207.805500px;}
.y26_c00182{bottom:230.310000px;}
.y37_c00182{bottom:243.000000px;}
.y25_c00182{bottom:283.590000px;}
.y24_c00182{bottom:303.030000px;}
.y23_c00182{bottom:322.650000px;}
.y22_c00182{bottom:338.490000px;}
.y21_c00182{bottom:359.190000px;}
.y20_c00182{bottom:378.720000px;}
.y1f_c00182{bottom:398.340000px;}
.y1e_c00182{bottom:412.740000px;}
.y1d_c00182{bottom:433.890000px;}
.y1c_c00182{bottom:454.500000px;}
.y1b_c00182{bottom:475.650000px;}
.y1a_c00182{bottom:505.710000px;}
.y19_c00182{bottom:525.330000px;}
.y18_c00182{bottom:551.520000px;}
.y17_c00182{bottom:582.570000px;}
.y16_c00182{bottom:613.620000px;}
.y15_c00182{bottom:644.670000px;}
.y14_c00182{bottom:675.720000px;}
.y13_c00182{bottom:706.770000px;}
.y12_c00182{bottom:737.820000px;}
.y11_c00182{bottom:768.870000px;}
.y10_c00182{bottom:799.920000px;}
.yf_c00182{bottom:830.970000px;}
.ye_c00182{bottom:861.930000px;}
.yd_c00182{bottom:892.980000px;}
.yc_c00182{bottom:924.030000px;}
.yb_c00182{bottom:955.080000px;}
.ya_c00182{bottom:986.130000px;}
.y9_c00182{bottom:1017.180000px;}
.y8_c00182{bottom:1048.230000px;}
.y7_c00182{bottom:1079.280000px;}
.y6_c00182{bottom:1110.330000px;}
.y5_c00182{bottom:1131.030000px;}
.y4_c00182{bottom:1150.920000px;}
.y3_c00182{bottom:1166.404500px;}
.y2_c00182{bottom:1181.970000px;}
.y1_c00182{bottom:1197.450000px;}
.he_c00182{height:33.448084px;}
.hb_c00182{height:38.158594px;}
.hd_c00182{height:46.275000px;}
.h3_c00182{height:52.971680px;}
.h2_c00182{height:52.998047px;}
.h10_c00182{height:54.142862px;}
.hf_c00182{height:57.339489px;}
.hc_c00182{height:59.004492px;}
.h4_c00182{height:70.664062px;}
.h5_c00182{height:73.991602px;}
.h9_c00182{height:87.155508px;}
.h6_c00182{height:101.915508px;}
.ha_c00182{height:107.024063px;}
.h8_c00182{height:179.902969px;}
.h7_c00182{height:180.395508px;}
.h0_c00182{height:1262.880000px;}
.h1_c00182{height:1263.000000px;}
.w2_c00182{width:239.100000px;}
.w0_c00182{width:893.070000px;}
.w1_c00182{width:893.250000px;}
.x0_c00182{left:0.000000px;}
.xf_c00182{left:3.121930px;}
.xb_c00182{left:58.668529px;}
.x12_c00182{left:71.248266px;}
.x11_c00182{left:85.389305px;}
.xe_c00182{left:94.697115px;}
.xd_c00182{left:95.892613px;}
.x3_c00182{left:127.620000px;}
.x7_c00182{left:130.590000px;}
.x8_c00182{left:132.660000px;}
.xa_c00182{left:140.809754px;}
.x10_c00182{left:150.817230px;}
.xc_c00182{left:174.966300px;}
.x9_c00182{left:229.715550px;}
.x4_c00182{left:319.590000px;}
.x13_c00182{left:366.750000px;}
.x5_c00182{left:402.030000px;}
.x2_c00182{left:425.160000px;}
.x1_c00182{left:446.580000px;}
.x6_c00182{left:457.200000px;}
.x14_c00182{left:738.540000px;}
@media print{
.v8_c00182{vertical-align:-18.560000pt;}
.v7_c00182{vertical-align:-13.120000pt;}
.v2_c00182{vertical-align:-9.600000pt;}
.v0_c00182{vertical-align:0.000000pt;}
.v6_c00182{vertical-align:19.200000pt;}
.v1_c00182{vertical-align:24.000000pt;}
.v3_c00182{vertical-align:32.320000pt;}
.v5_c00182{vertical-align:60.160000pt;}
.v4_c00182{vertical-align:69.760000pt;}
.ls1b_c00182{letter-spacing:-0.213760pt;}
.ls16_c00182{letter-spacing:-0.192000pt;}
.ls14_c00182{letter-spacing:-0.136320pt;}
.ls15_c00182{letter-spacing:-0.128000pt;}
.ls19_c00182{letter-spacing:-0.106880pt;}
.lsf_c00182{letter-spacing:-0.096000pt;}
.ls17_c00182{letter-spacing:-0.090880pt;}
.ls11_c00182{letter-spacing:-0.064000pt;}
.ls18_c00182{letter-spacing:-0.053440pt;}
.ls1d_c00182{letter-spacing:-0.051958pt;}
.ls12_c00182{letter-spacing:-0.037440pt;}
.ls1c_c00182{letter-spacing:-0.030309pt;}
.lse_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:0.064000pt;}
.ls13_c00182{letter-spacing:0.090880pt;}
.ls10_c00182{letter-spacing:0.128000pt;}
.lsd_c00182{letter-spacing:0.128256pt;}
.ls1a_c00182{letter-spacing:0.160320pt;}
.ls4_c00182{letter-spacing:0.170240pt;}
.ls2_c00182{letter-spacing:0.640000pt;}
.ls1_c00182{letter-spacing:0.652800pt;}
.ls3_c00182{letter-spacing:0.960000pt;}
.lsc_c00182{letter-spacing:1.336000pt;}
.ls9_c00182{letter-spacing:2.880000pt;}
.ls8_c00182{letter-spacing:2.892800pt;}
.ls7_c00182{letter-spacing:4.806400pt;}
.lsb_c00182{letter-spacing:6.455552pt;}
.lsa_c00182{letter-spacing:6.466240pt;}
.ls6_c00182{letter-spacing:13.952000pt;}
.ls5_c00182{letter-spacing:17.792000pt;}
.ws4_c00182{word-spacing:-45.530880pt;}
.ws3_c00182{word-spacing:-45.440000pt;}
.wsc_c00182{word-spacing:-45.349120pt;}
.ws6_c00182{word-spacing:-45.303680pt;}
.ws7_c00182{word-spacing:-37.402560pt;}
.ws5_c00182{word-spacing:-17.737600pt;}
.ws1_c00182{word-spacing:-16.064000pt;}
.ws0_c00182{word-spacing:-16.000000pt;}
.ws8_c00182{word-spacing:-15.936000pt;}
.ws9_c00182{word-spacing:-15.872000pt;}
.wsa_c00182{word-spacing:-14.016000pt;}
.wsb_c00182{word-spacing:-13.952000pt;}
.wse_c00182{word-spacing:-12.989467pt;}
.wsf_c00182{word-spacing:-12.937509pt;}
.ws2_c00182{word-spacing:-10.810240pt;}
.wsd_c00182{word-spacing:-8.640000pt;}
.ws3c_c00182{word-spacing:-0.160320pt;}
.ws2a_c00182{word-spacing:-0.128000pt;}
.ws27_c00182{word-spacing:-0.064000pt;}
.ws37_c00182{word-spacing:-0.053440pt;}
.ws11_c00182{word-spacing:0.000000pt;}
.ws3d_c00182{word-spacing:0.030309pt;}
.ws28_c00182{word-spacing:0.037440pt;}
.ws33_c00182{word-spacing:0.053440pt;}
.ws13_c00182{word-spacing:0.144000pt;}
.ws38_c00182{word-spacing:0.160320pt;}
.ws29_c00182{word-spacing:0.192000pt;}
.ws36_c00182{word-spacing:0.213760pt;}
.ws12_c00182{word-spacing:0.240000pt;}
.ws15_c00182{word-spacing:0.512000pt;}
.ws17_c00182{word-spacing:0.576000pt;}
.ws16_c00182{word-spacing:0.640000pt;}
.ws21_c00182{word-spacing:0.896000pt;}
.ws20_c00182{word-spacing:0.960000pt;}
.ws3a_c00182{word-spacing:1.175680pt;}
.ws39_c00182{word-spacing:1.389440pt;}
.ws3b_c00182{word-spacing:1.442880pt;}
.ws19_c00182{word-spacing:1.536000pt;}
.ws2f_c00182{word-spacing:2.816000pt;}
.ws30_c00182{word-spacing:2.880000pt;}
.ws1f_c00182{word-spacing:3.200000pt;}
.ws2c_c00182{word-spacing:4.736000pt;}
.ws2b_c00182{word-spacing:4.800000pt;}
.ws1e_c00182{word-spacing:5.056000pt;}
.ws26_c00182{word-spacing:5.440000pt;}
.ws35_c00182{word-spacing:5.985280pt;}
.ws32_c00182{word-spacing:6.199040pt;}
.ws31_c00182{word-spacing:6.519680pt;}
.ws34_c00182{word-spacing:6.573120pt;}
.ws14_c00182{word-spacing:7.040000pt;}
.ws25_c00182{word-spacing:7.296000pt;}
.ws24_c00182{word-spacing:7.360000pt;}
.ws18_c00182{word-spacing:8.640000pt;}
.ws1b_c00182{word-spacing:11.200000pt;}
.ws23_c00182{word-spacing:14.336000pt;}
.ws22_c00182{word-spacing:14.400000pt;}
.ws1d_c00182{word-spacing:17.920000pt;}
.ws1c_c00182{word-spacing:17.984000pt;}
.ws1a_c00182{word-spacing:23.360000pt;}
.ws2e_c00182{word-spacing:28.736000pt;}
.ws2d_c00182{word-spacing:28.800000pt;}
.ws10_c00182{word-spacing:295.105095pt;}
._1_c00182{margin-left:-0.940800pt;}
._0_c00182{width:1.084800pt;}
._3_c00182{width:2.304000pt;}
._5_c00182{width:3.478400pt;}
._6_c00182{width:4.687040pt;}
._7_c00182{width:6.092160pt;}
._2_c00182{width:14.400000pt;}
._4_c00182{width:16.155840pt;}
.fs7_c00182{font-size:30.308800pt;}
.fs5_c00182{font-size:34.560000pt;}
.fs4_c00182{font-size:37.440000pt;}
.fs2_c00182{font-size:42.560000pt;}
.fs3_c00182{font-size:45.440000pt;}
.fs0_c00182{font-size:48.000000pt;}
.fs8_c00182{font-size:51.957867pt;}
.fs6_c00182{font-size:53.440000pt;}
.fs1_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y32_c00182{bottom:3.823411pt;}
.y2c_c00182{bottom:3.994457pt;}
.y2f_c00182{bottom:7.239641pt;}
.y31_c00182{bottom:13.903237pt;}
.y2b_c00182{bottom:14.072133pt;}
.y2e_c00182{bottom:17.319467pt;}
.y2d_c00182{bottom:22.361590pt;}
.y30_c00182{bottom:25.606746pt;}
.y33_c00182{bottom:26.347146pt;}
.y36_c00182{bottom:50.880000pt;}
.y35_c00182{bottom:97.599600pt;}
.y2a_c00182{bottom:109.786667pt;}
.y34_c00182{bottom:131.200000pt;}
.y29_c00182{bottom:154.076160pt;}
.y28_c00182{bottom:174.000000pt;}
.y27_c00182{bottom:184.716000pt;}
.y26_c00182{bottom:204.720000pt;}
.y37_c00182{bottom:216.000000pt;}
.y25_c00182{bottom:252.080000pt;}
.y24_c00182{bottom:269.360000pt;}
.y23_c00182{bottom:286.800000pt;}
.y22_c00182{bottom:300.880000pt;}
.y21_c00182{bottom:319.280000pt;}
.y20_c00182{bottom:336.640000pt;}
.y1f_c00182{bottom:354.080000pt;}
.y1e_c00182{bottom:366.880000pt;}
.y1d_c00182{bottom:385.680000pt;}
.y1c_c00182{bottom:404.000000pt;}
.y1b_c00182{bottom:422.800000pt;}
.y1a_c00182{bottom:449.520000pt;}
.y19_c00182{bottom:466.960000pt;}
.y18_c00182{bottom:490.240000pt;}
.y17_c00182{bottom:517.840000pt;}
.y16_c00182{bottom:545.440000pt;}
.y15_c00182{bottom:573.040000pt;}
.y14_c00182{bottom:600.640000pt;}
.y13_c00182{bottom:628.240000pt;}
.y12_c00182{bottom:655.840000pt;}
.y11_c00182{bottom:683.440000pt;}
.y10_c00182{bottom:711.040000pt;}
.yf_c00182{bottom:738.640000pt;}
.ye_c00182{bottom:766.160000pt;}
.yd_c00182{bottom:793.760000pt;}
.yc_c00182{bottom:821.360000pt;}
.yb_c00182{bottom:848.960000pt;}
.ya_c00182{bottom:876.560000pt;}
.y9_c00182{bottom:904.160000pt;}
.y8_c00182{bottom:931.760000pt;}
.y7_c00182{bottom:959.360000pt;}
.y6_c00182{bottom:986.960000pt;}
.y5_c00182{bottom:1005.360000pt;}
.y4_c00182{bottom:1023.040000pt;}
.y3_c00182{bottom:1036.804000pt;}
.y2_c00182{bottom:1050.640000pt;}
.y1_c00182{bottom:1064.400000pt;}
.he_c00182{height:29.731630pt;}
.hb_c00182{height:33.918750pt;}
.hd_c00182{height:41.133333pt;}
.h3_c00182{height:47.085938pt;}
.h2_c00182{height:47.109375pt;}
.h10_c00182{height:48.126989pt;}
.hf_c00182{height:50.968435pt;}
.hc_c00182{height:52.448437pt;}
.h4_c00182{height:62.812500pt;}
.h5_c00182{height:65.770313pt;}
.h9_c00182{height:77.471563pt;}
.h6_c00182{height:90.591562pt;}
.ha_c00182{height:95.132500pt;}
.h8_c00182{height:159.913750pt;}
.h7_c00182{height:160.351562pt;}
.h0_c00182{height:1122.560000pt;}
.h1_c00182{height:1122.666667pt;}
.w2_c00182{width:212.533333pt;}
.w0_c00182{width:793.840000pt;}
.w1_c00182{width:794.000000pt;}
.x0_c00182{left:0.000000pt;}
.xf_c00182{left:2.775049pt;}
.xb_c00182{left:52.149804pt;}
.x12_c00182{left:63.331792pt;}
.x11_c00182{left:75.901605pt;}
.xe_c00182{left:84.175213pt;}
.xd_c00182{left:85.237879pt;}
.x3_c00182{left:113.440000pt;}
.x7_c00182{left:116.080000pt;}
.x8_c00182{left:117.920000pt;}
.xa_c00182{left:125.164226pt;}
.x10_c00182{left:134.059760pt;}
.xc_c00182{left:155.525600pt;}
.x9_c00182{left:204.191600pt;}
.x4_c00182{left:284.080000pt;}
.x13_c00182{left:326.000000pt;}
.x5_c00182{left:357.360000pt;}
.x2_c00182{left:377.920000pt;}
.x1_c00182{left:396.960000pt;}
.x6_c00182{left:406.400000pt;}
.x14_c00182{left:656.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_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_7a5cc687451896b157484666.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.284668;font-style:normal;font-weight:normal;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_4791e227464ac3a5c19780d2.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00183;src:url('chunks/assets/font_d021fff2cb3b973c80a4c3c1.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:1.142090;font-style:normal;font-weight:normal;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_82df4b7e96ed8901d352dc03.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00183{transform:matrix(0.229506,0.000000,-0.076503,0.238007,0,0);-ms-transform:matrix(0.229506,0.000000,-0.076503,0.238007,0,0);-webkit-transform:matrix(0.229506,0.000000,-0.076503,0.238007,0,0);}
.m1_c00183{transform:matrix(0.241072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241072,0.000000,0.000000,0.250000,0,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);}
.m3_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);}
.v1_c00183{vertical-align:-61.938000px;}
.v3_c00183{vertical-align:-20.880000px;}
.v0_c00183{vertical-align:0.000000px;}
.v2_c00183{vertical-align:27.000000px;}
.ls12_c00183{letter-spacing:-0.432000px;}
.ls15_c00183{letter-spacing:-0.240480px;}
.ls11_c00183{letter-spacing:-0.216000px;}
.ls16_c00183{letter-spacing:-0.180360px;}
.ls13_c00183{letter-spacing:-0.144000px;}
.lsf_c00183{letter-spacing:-0.072000px;}
.ls14_c00183{letter-spacing:-0.060120px;}
.lse_c00183{letter-spacing:-0.048067px;}
.lsd_c00183{letter-spacing:0.000000px;}
.ls2_c00183{letter-spacing:0.072000px;}
.lsc_c00183{letter-spacing:0.078156px;}
.lsb_c00183{letter-spacing:0.120240px;}
.ls5_c00183{letter-spacing:0.144000px;}
.ls9_c00183{letter-spacing:0.151200px;}
.ls1_c00183{letter-spacing:0.191520px;}
.ls10_c00183{letter-spacing:0.360000px;}
.ls7_c00183{letter-spacing:2.880000px;}
.ls8_c00183{letter-spacing:5.760000px;}
.ls4_c00183{letter-spacing:9.720000px;}
.ls3_c00183{letter-spacing:14.040000px;}
.lsa_c00183{letter-spacing:15.840000px;}
.ls6_c00183{letter-spacing:21.240000px;}
.ls0_c00183{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws2_c00183{word-spacing:-18.072000px;}
.ws0_c00183{word-spacing:-18.000000px;}
.ws5_c00183{word-spacing:-17.856000px;}
.ws4_c00183{word-spacing:-17.568000px;}
.ws7_c00183{word-spacing:-14.789520px;}
.ws1_c00183{word-spacing:-12.161520px;}
.ws6_c00183{word-spacing:-9.720000px;}
.ws2d_c00183{word-spacing:-0.360000px;}
.ws9_c00183{word-spacing:-0.162000px;}
.wsb_c00183{word-spacing:-0.144000px;}
.wsf_c00183{word-spacing:-0.072000px;}
.ws8_c00183{word-spacing:0.000000px;}
.wsa_c00183{word-spacing:0.048067px;}
.ws19_c00183{word-spacing:0.072000px;}
.ws36_c00183{word-spacing:0.180360px;}
.ws30_c00183{word-spacing:0.216000px;}
.ws37_c00183{word-spacing:0.300600px;}
.ws20_c00183{word-spacing:0.936000px;}
.ws1f_c00183{word-spacing:1.080000px;}
.ws29_c00183{word-spacing:1.728000px;}
.ws2a_c00183{word-spacing:1.800000px;}
.ws28_c00183{word-spacing:2.160000px;}
.ws2e_c00183{word-spacing:2.808000px;}
.ws2f_c00183{word-spacing:2.880000px;}
.ws12_c00183{word-spacing:3.240000px;}
.wse_c00183{word-spacing:3.528000px;}
.wsd_c00183{word-spacing:3.600000px;}
.wsc_c00183{word-spacing:4.320000px;}
.ws15_c00183{word-spacing:4.608000px;}
.ws16_c00183{word-spacing:4.680000px;}
.ws32_c00183{word-spacing:5.616000px;}
.ws33_c00183{word-spacing:5.688000px;}
.ws31_c00183{word-spacing:5.760000px;}
.ws26_c00183{word-spacing:6.480000px;}
.ws27_c00183{word-spacing:6.840000px;}
.ws14_c00183{word-spacing:7.128000px;}
.ws13_c00183{word-spacing:7.200000px;}
.ws23_c00183{word-spacing:9.360000px;}
.ws22_c00183{word-spacing:9.648000px;}
.ws21_c00183{word-spacing:9.720000px;}
.ws1e_c00183{word-spacing:11.880000px;}
.ws10_c00183{word-spacing:13.248000px;}
.ws11_c00183{word-spacing:13.320000px;}
.ws17_c00183{word-spacing:13.968000px;}
.ws18_c00183{word-spacing:14.040000px;}
.ws1c_c00183{word-spacing:15.768000px;}
.ws1d_c00183{word-spacing:15.840000px;}
.ws35_c00183{word-spacing:18.216000px;}
.ws34_c00183{word-spacing:18.288000px;}
.ws1b_c00183{word-spacing:19.368000px;}
.ws1a_c00183{word-spacing:19.440000px;}
.ws2c_c00183{word-spacing:21.168000px;}
.ws2b_c00183{word-spacing:21.240000px;}
.ws25_c00183{word-spacing:24.480000px;}
.ws24_c00183{word-spacing:24.840000px;}
._0_c00183{margin-left:-1.368000px;}
._3_c00183{width:1.080000px;}
._1_c00183{width:3.240000px;}
._5_c00183{width:6.840000px;}
._2_c00183{width:13.392000px;}
._7_c00183{width:15.768000px;}
._4_c00183{width:20.304000px;}
._6_c00183{width:24.624000px;}
.fc0_c00183{color:rgb(0,0,0);}
.fs5_c00183{font-size:38.880000px;}
.fs4_c00183{font-size:47.880000px;}
.fs2_c00183{font-size:48.066600px;}
.fs0_c00183{font-size:54.000000px;}
.fs6_c00183{font-size:60.120000px;}
.fs1_c00183{font-size:72.000000px;}
.fs3_c00183{font-size:86.551861px;}
.y0_c00183{bottom:0.000000px;}
.y6_c00183{bottom:5.150100px;}
.y7_c00183{bottom:10.299900px;}
.y28_c00183{bottom:57.240000px;}
.y27_c00183{bottom:115.020000px;}
.y29_c00183{bottom:127.710000px;}
.y26_c00183{bottom:168.840000px;}
.y25_c00183{bottom:199.800000px;}
.y24_c00183{bottom:230.850000px;}
.y23_c00183{bottom:261.900000px;}
.y22_c00183{bottom:292.950000px;}
.y21_c00183{bottom:324.000000px;}
.y20_c00183{bottom:355.050000px;}
.y1f_c00183{bottom:386.100000px;}
.y1e_c00183{bottom:417.150000px;}
.y1d_c00183{bottom:448.200000px;}
.y1c_c00183{bottom:479.250000px;}
.y1b_c00183{bottom:510.300000px;}
.y1a_c00183{bottom:541.350000px;}
.y19_c00183{bottom:572.400000px;}
.y18_c00183{bottom:603.450000px;}
.y17_c00183{bottom:634.500000px;}
.y16_c00183{bottom:665.550000px;}
.y15_c00183{bottom:696.600000px;}
.y14_c00183{bottom:727.650000px;}
.y13_c00183{bottom:758.700000px;}
.y12_c00183{bottom:789.750000px;}
.y11_c00183{bottom:820.800000px;}
.y10_c00183{bottom:851.850000px;}
.yf_c00183{bottom:882.900000px;}
.ye_c00183{bottom:913.950000px;}
.yd_c00183{bottom:945.000000px;}
.yc_c00183{bottom:975.870000px;}
.yb_c00183{bottom:1007.100000px;}
.ya_c00183{bottom:1038.150000px;}
.y9_c00183{bottom:1069.200000px;}
.y5_c00183{bottom:1096.035000px;}
.y8_c00183{bottom:1105.110000px;}
.y4_c00183{bottom:1131.030000px;}
.y3_c00183{bottom:1150.915500px;}
.y2_c00183{bottom:1166.400000px;}
.y1_c00183{bottom:1197.450000px;}
.h4_c00183{height:30.900000px;}
.h9_c00183{height:38.158594px;}
.h5_c00183{height:47.151269px;}
.h2_c00183{height:52.998047px;}
.h3_c00183{height:70.664062px;}
.h8_c00183{height:72.562500px;}
.h7_c00183{height:73.991602px;}
.h6_c00183{height:80.170352px;}
.h0_c00183{height:1262.880000px;}
.h1_c00183{height:1263.000000px;}
.w2_c00183{width:23.175000px;}
.w0_c00183{width:893.070000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
.x4_c00183{left:2.069250px;}
.x3_c00183{left:12.311700px;}
.x2_c00183{left:127.620000px;}
.x5_c00183{left:150.840000px;}
.x1_c00183{left:446.580000px;}
@media print{
.v1_c00183{vertical-align:-55.056000pt;}
.v3_c00183{vertical-align:-18.560000pt;}
.v0_c00183{vertical-align:0.000000pt;}
.v2_c00183{vertical-align:24.000000pt;}
.ls12_c00183{letter-spacing:-0.384000pt;}
.ls15_c00183{letter-spacing:-0.213760pt;}
.ls11_c00183{letter-spacing:-0.192000pt;}
.ls16_c00183{letter-spacing:-0.160320pt;}
.ls13_c00183{letter-spacing:-0.128000pt;}
.lsf_c00183{letter-spacing:-0.064000pt;}
.ls14_c00183{letter-spacing:-0.053440pt;}
.lse_c00183{letter-spacing:-0.042726pt;}
.lsd_c00183{letter-spacing:0.000000pt;}
.ls2_c00183{letter-spacing:0.064000pt;}
.lsc_c00183{letter-spacing:0.069472pt;}
.lsb_c00183{letter-spacing:0.106880pt;}
.ls5_c00183{letter-spacing:0.128000pt;}
.ls9_c00183{letter-spacing:0.134400pt;}
.ls1_c00183{letter-spacing:0.170240pt;}
.ls10_c00183{letter-spacing:0.320000pt;}
.ls7_c00183{letter-spacing:2.560000pt;}
.ls8_c00183{letter-spacing:5.120000pt;}
.ls4_c00183{letter-spacing:8.640000pt;}
.ls3_c00183{letter-spacing:12.480000pt;}
.lsa_c00183{letter-spacing:14.080000pt;}
.ls6_c00183{letter-spacing:18.880000pt;}
.ls0_c00183{letter-spacing:284.016000pt;}
.ws3_c00183{word-spacing:-16.128000pt;}
.ws2_c00183{word-spacing:-16.064000pt;}
.ws0_c00183{word-spacing:-16.000000pt;}
.ws5_c00183{word-spacing:-15.872000pt;}
.ws4_c00183{word-spacing:-15.616000pt;}
.ws7_c00183{word-spacing:-13.146240pt;}
.ws1_c00183{word-spacing:-10.810240pt;}
.ws6_c00183{word-spacing:-8.640000pt;}
.ws2d_c00183{word-spacing:-0.320000pt;}
.ws9_c00183{word-spacing:-0.144000pt;}
.wsb_c00183{word-spacing:-0.128000pt;}
.wsf_c00183{word-spacing:-0.064000pt;}
.ws8_c00183{word-spacing:0.000000pt;}
.wsa_c00183{word-spacing:0.042726pt;}
.ws19_c00183{word-spacing:0.064000pt;}
.ws36_c00183{word-spacing:0.160320pt;}
.ws30_c00183{word-spacing:0.192000pt;}
.ws37_c00183{word-spacing:0.267200pt;}
.ws20_c00183{word-spacing:0.832000pt;}
.ws1f_c00183{word-spacing:0.960000pt;}
.ws29_c00183{word-spacing:1.536000pt;}
.ws2a_c00183{word-spacing:1.600000pt;}
.ws28_c00183{word-spacing:1.920000pt;}
.ws2e_c00183{word-spacing:2.496000pt;}
.ws2f_c00183{word-spacing:2.560000pt;}
.ws12_c00183{word-spacing:2.880000pt;}
.wse_c00183{word-spacing:3.136000pt;}
.wsd_c00183{word-spacing:3.200000pt;}
.wsc_c00183{word-spacing:3.840000pt;}
.ws15_c00183{word-spacing:4.096000pt;}
.ws16_c00183{word-spacing:4.160000pt;}
.ws32_c00183{word-spacing:4.992000pt;}
.ws33_c00183{word-spacing:5.056000pt;}
.ws31_c00183{word-spacing:5.120000pt;}
.ws26_c00183{word-spacing:5.760000pt;}
.ws27_c00183{word-spacing:6.080000pt;}
.ws14_c00183{word-spacing:6.336000pt;}
.ws13_c00183{word-spacing:6.400000pt;}
.ws23_c00183{word-spacing:8.320000pt;}
.ws22_c00183{word-spacing:8.576000pt;}
.ws21_c00183{word-spacing:8.640000pt;}
.ws1e_c00183{word-spacing:10.560000pt;}
.ws10_c00183{word-spacing:11.776000pt;}
.ws11_c00183{word-spacing:11.840000pt;}
.ws17_c00183{word-spacing:12.416000pt;}
.ws18_c00183{word-spacing:12.480000pt;}
.ws1c_c00183{word-spacing:14.016000pt;}
.ws1d_c00183{word-spacing:14.080000pt;}
.ws35_c00183{word-spacing:16.192000pt;}
.ws34_c00183{word-spacing:16.256000pt;}
.ws1b_c00183{word-spacing:17.216000pt;}
.ws1a_c00183{word-spacing:17.280000pt;}
.ws2c_c00183{word-spacing:18.816000pt;}
.ws2b_c00183{word-spacing:18.880000pt;}
.ws25_c00183{word-spacing:21.760000pt;}
.ws24_c00183{word-spacing:22.080000pt;}
._0_c00183{margin-left:-1.216000pt;}
._3_c00183{width:0.960000pt;}
._1_c00183{width:2.880000pt;}
._5_c00183{width:6.080000pt;}
._2_c00183{width:11.904000pt;}
._7_c00183{width:14.016000pt;}
._4_c00183{width:18.048000pt;}
._6_c00183{width:21.888000pt;}
.fs5_c00183{font-size:34.560000pt;}
.fs4_c00183{font-size:42.560000pt;}
.fs2_c00183{font-size:42.725867pt;}
.fs0_c00183{font-size:48.000000pt;}
.fs6_c00183{font-size:53.440000pt;}
.fs1_c00183{font-size:64.000000pt;}
.fs3_c00183{font-size:76.934988pt;}
.y0_c00183{bottom:0.000000pt;}
.y6_c00183{bottom:4.577867pt;}
.y7_c00183{bottom:9.155467pt;}
.y28_c00183{bottom:50.880000pt;}
.y27_c00183{bottom:102.240000pt;}
.y29_c00183{bottom:113.520000pt;}
.y26_c00183{bottom:150.080000pt;}
.y25_c00183{bottom:177.600000pt;}
.y24_c00183{bottom:205.200000pt;}
.y23_c00183{bottom:232.800000pt;}
.y22_c00183{bottom:260.400000pt;}
.y21_c00183{bottom:288.000000pt;}
.y20_c00183{bottom:315.600000pt;}
.y1f_c00183{bottom:343.200000pt;}
.y1e_c00183{bottom:370.800000pt;}
.y1d_c00183{bottom:398.400000pt;}
.y1c_c00183{bottom:426.000000pt;}
.y1b_c00183{bottom:453.600000pt;}
.y1a_c00183{bottom:481.200000pt;}
.y19_c00183{bottom:508.800000pt;}
.y18_c00183{bottom:536.400000pt;}
.y17_c00183{bottom:564.000000pt;}
.y16_c00183{bottom:591.600000pt;}
.y15_c00183{bottom:619.200000pt;}
.y14_c00183{bottom:646.800000pt;}
.y13_c00183{bottom:674.400000pt;}
.y12_c00183{bottom:702.000000pt;}
.y11_c00183{bottom:729.600000pt;}
.y10_c00183{bottom:757.200000pt;}
.yf_c00183{bottom:784.800000pt;}
.ye_c00183{bottom:812.400000pt;}
.yd_c00183{bottom:840.000000pt;}
.yc_c00183{bottom:867.440000pt;}
.yb_c00183{bottom:895.200000pt;}
.ya_c00183{bottom:922.800000pt;}
.y9_c00183{bottom:950.400000pt;}
.y5_c00183{bottom:974.253333pt;}
.y8_c00183{bottom:982.320000pt;}
.y4_c00183{bottom:1005.360000pt;}
.y3_c00183{bottom:1023.036000pt;}
.y2_c00183{bottom:1036.800000pt;}
.y1_c00183{bottom:1064.400000pt;}
.h4_c00183{height:27.466667pt;}
.h9_c00183{height:33.918750pt;}
.h5_c00183{height:41.912239pt;}
.h2_c00183{height:47.109375pt;}
.h3_c00183{height:62.812500pt;}
.h8_c00183{height:64.500000pt;}
.h7_c00183{height:65.770312pt;}
.h6_c00183{height:71.262535pt;}
.h0_c00183{height:1122.560000pt;}
.h1_c00183{height:1122.666667pt;}
.w2_c00183{width:20.600000pt;}
.w0_c00183{width:793.840000pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{left:0.000000pt;}
.x4_c00183{left:1.839333pt;}
.x3_c00183{left:10.943733pt;}
.x2_c00183{left:113.440000pt;}
.x5_c00183{left:134.080000pt;}
.x1_c00183{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3ca36200d6ad0f94dfb8685.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.284668;font-style:normal;font-weight:normal;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_5699eb69fd6c11ada9c3ffcc.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.284180;font-style:normal;font-weight:normal;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_8c3b69a0678c467871a01a32.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;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_c00184;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.432129;font-style:normal;font-weight:normal;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_123834a2819e27f0e2f49d6d.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00184;src:url('chunks/assets/font_679160508896d8e625d6a977.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:3.333984;font-style: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);}
.v5_c00184{vertical-align:-103.320000px;}
.v9_c00184{vertical-align:-20.880000px;}
.v2_c00184{vertical-align:-14.760000px;}
.va_c00184{vertical-align:-12.240000px;}
.v6_c00184{vertical-align:-10.440000px;}
.vc_c00184{vertical-align:-8.640000px;}
.v0_c00184{vertical-align:0.000000px;}
.ve_c00184{vertical-align:18.000000px;}
.v1_c00184{vertical-align:27.000000px;}
.vd_c00184{vertical-align:30.240000px;}
.vb_c00184{vertical-align:35.280000px;}
.v7_c00184{vertical-align:36.360000px;}
.v3_c00184{vertical-align:56.896560px;}
.v8_c00184{vertical-align:78.480000px;}
.v4_c00184{vertical-align:104.732640px;}
.ls2b_c00184{letter-spacing:-0.379080px;}
.ls21_c00184{letter-spacing:-0.360000px;}
.ls22_c00184{letter-spacing:-0.288000px;}
.ls2a_c00184{letter-spacing:-0.210600px;}
.ls27_c00184{letter-spacing:-0.180360px;}
.ls25_c00184{letter-spacing:-0.144000px;}
.ls20_c00184{letter-spacing:-0.108000px;}
.ls26_c00184{letter-spacing:-0.102240px;}
.ls23_c00184{letter-spacing:-0.072000px;}
.ls28_c00184{letter-spacing:-0.060120px;}
.ls1f_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:0.072000px;}
.ls24_c00184{letter-spacing:0.102240px;}
.ls19_c00184{letter-spacing:0.120240px;}
.ls29_c00184{letter-spacing:0.126360px;}
.ls7_c00184{letter-spacing:0.136800px;}
.ls3_c00184{letter-spacing:0.144000px;}
.ls8_c00184{letter-spacing:0.158400px;}
.ls2_c00184{letter-spacing:0.191520px;}
.lsb_c00184{letter-spacing:1.080000px;}
.lsa_c00184{letter-spacing:1.440000px;}
.ls1c_c00184{letter-spacing:1.692000px;}
.ls1b_c00184{letter-spacing:2.173320px;}
.ls15_c00184{letter-spacing:2.692080px;}
.ls16_c00184{letter-spacing:3.052080px;}
.ls5_c00184{letter-spacing:6.120000px;}
.ls9_c00184{letter-spacing:7.920000px;}
.ls14_c00184{letter-spacing:8.287200px;}
.ls6_c00184{letter-spacing:12.960000px;}
.ls1d_c00184{letter-spacing:12.985920px;}
.ls1e_c00184{letter-spacing:13.226400px;}
.ls17_c00184{letter-spacing:14.488920px;}
.ls18_c00184{letter-spacing:14.849640px;}
.ls13_c00184{letter-spacing:15.696000px;}
.ls10_c00184{letter-spacing:16.056000px;}
.lsf_c00184{letter-spacing:16.272000px;}
.ls1a_c00184{letter-spacing:16.653240px;}
.ls12_c00184{letter-spacing:17.762040px;}
.ls11_c00184{letter-spacing:18.360000px;}
.lse_c00184{letter-spacing:19.656000px;}
.lsd_c00184{letter-spacing:22.082040px;}
.ls4_c00184{letter-spacing:30.744000px;}
.ls1_c00184{letter-spacing:31.320000px;}
.lsc_c00184{letter-spacing:202.320000px;}
.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;}
}
.ws15_c00184{word-spacing:-60.120000px;}
.ws11_c00184{word-spacing:-59.939640px;}
.ws6_c00184{word-spacing:-51.222240px;}
.ws5_c00184{word-spacing:-51.120000px;}
.wsd_c00184{word-spacing:-51.017760px;}
.ws13_c00184{word-spacing:-42.246360px;}
.ws12_c00184{word-spacing:-42.120000px;}
.ws14_c00184{word-spacing:-41.909400px;}
.ws16_c00184{word-spacing:-41.740920px;}
.ws7_c00184{word-spacing:-18.648864px;}
.ws9_c00184{word-spacing:-18.144000px;}
.ws1_c00184{word-spacing:-18.072000px;}
.wsa_c00184{word-spacing:-18.000000px;}
.ws2_c00184{word-spacing:-17.928000px;}
.wsc_c00184{word-spacing:-17.856000px;}
.wsb_c00184{word-spacing:-17.640000px;}
.ws8_c00184{word-spacing:-15.912000px;}
.ws4_c00184{word-spacing:-15.840000px;}
.wse_c00184{word-spacing:-15.768000px;}
.wsf_c00184{word-spacing:-15.696000px;}
.ws0_c00184{word-spacing:-12.161520px;}
.ws10_c00184{word-spacing:-9.720000px;}
.ws39_c00184{word-spacing:-0.432000px;}
.ws2b_c00184{word-spacing:-0.360000px;}
.ws36_c00184{word-spacing:-0.144000px;}
.ws21_c00184{word-spacing:-0.072000px;}
.ws17_c00184{word-spacing:0.000000px;}
.ws31_c00184{word-spacing:0.072000px;}
.ws34_c00184{word-spacing:0.144000px;}
.ws19_c00184{word-spacing:0.162000px;}
.ws3e_c00184{word-spacing:0.180360px;}
.ws18_c00184{word-spacing:0.270000px;}
.ws1c_c00184{word-spacing:0.360000px;}
.ws2d_c00184{word-spacing:0.576000px;}
.ws2e_c00184{word-spacing:0.648000px;}
.ws1d_c00184{word-spacing:0.720000px;}
.ws38_c00184{word-spacing:1.080000px;}
.ws37_c00184{word-spacing:1.440000px;}
.ws23_c00184{word-spacing:3.528000px;}
.ws22_c00184{word-spacing:3.600000px;}
.ws3_c00184{word-spacing:4.176000px;}
.ws2c_c00184{word-spacing:4.248000px;}
.ws24_c00184{word-spacing:4.680000px;}
.ws2f_c00184{word-spacing:5.400000px;}
.ws27_c00184{word-spacing:6.120000px;}
.ws28_c00184{word-spacing:6.408000px;}
.ws1f_c00184{word-spacing:7.200000px;}
.ws1e_c00184{word-spacing:7.488000px;}
.ws20_c00184{word-spacing:7.560000px;}
.ws35_c00184{word-spacing:7.920000px;}
.ws3a_c00184{word-spacing:8.280000px;}
.ws30_c00184{word-spacing:9.648000px;}
.ws29_c00184{word-spacing:12.888000px;}
.ws2a_c00184{word-spacing:12.960000px;}
.ws3d_c00184{word-spacing:14.368680px;}
.ws3c_c00184{word-spacing:14.549040px;}
.ws3b_c00184{word-spacing:14.669280px;}
.ws25_c00184{word-spacing:21.888000px;}
.ws26_c00184{word-spacing:21.960000px;}
.ws33_c00184{word-spacing:27.720000px;}
.ws32_c00184{word-spacing:27.936000px;}
.ws1b_c00184{word-spacing:31.248000px;}
.ws1a_c00184{word-spacing:31.320000px;}
._5_c00184{margin-left:-6.696000px;}
._1_c00184{margin-left:-1.058400px;}
._0_c00184{width:1.220400px;}
._3_c00184{width:3.556800px;}
._7_c00184{width:5.721264px;}
._9_c00184{width:8.208000px;}
._6_c00184{width:14.415840px;}
._a_c00184{width:19.631160px;}
._4_c00184{width:22.226400px;}
._8_c00184{width:27.504000px;}
._2_c00184{width:31.104000px;}
.fc0_c00184{color:rgb(0,0,0);}
.fs7_c00184{font-size:36.000000px;}
.fs5_c00184{font-size:38.880000px;}
.fs4_c00184{font-size:42.120000px;}
.fs2_c00184{font-size:47.880000px;}
.fs3_c00184{font-size:51.120000px;}
.fs0_c00184{font-size:54.000000px;}
.fs6_c00184{font-size:60.120000px;}
.fs1_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y2b_c00184{bottom:57.240000px;}
.y2a_c00184{bottom:109.797930px;}
.y29_c00184{bottom:125.820000px;}
.y28_c00184{bottom:138.600000px;}
.y2c_c00184{bottom:156.240000px;}
.y27_c00184{bottom:192.330000px;}
.y26_c00184{bottom:213.390000px;}
.y25_c00184{bottom:234.540000px;}
.y24_c00184{bottom:255.240000px;}
.y23_c00184{bottom:275.940000px;}
.y22_c00184{bottom:305.910000px;}
.y21_c00184{bottom:351.360000px;}
.y20_c00184{bottom:382.410000px;}
.y1f_c00184{bottom:413.460000px;}
.y1e_c00184{bottom:444.510000px;}
.y1d_c00184{bottom:475.560000px;}
.y1c_c00184{bottom:502.836840px;}
.y1b_c00184{bottom:511.920000px;}
.y18_c00184{bottom:529.020000px;}
.y1a_c00184{bottom:537.036840px;}
.y19_c00184{bottom:546.120000px;}
.y17_c00184{bottom:582.570000px;}
.y16_c00184{bottom:613.620000px;}
.y15_c00184{bottom:644.670000px;}
.y14_c00184{bottom:675.720000px;}
.y13_c00184{bottom:706.770000px;}
.y12_c00184{bottom:737.820000px;}
.y11_c00184{bottom:768.870000px;}
.y10_c00184{bottom:799.920000px;}
.yf_c00184{bottom:830.970000px;}
.ye_c00184{bottom:861.930000px;}
.yd_c00184{bottom:892.980000px;}
.yc_c00184{bottom:924.030000px;}
.yb_c00184{bottom:955.080000px;}
.ya_c00184{bottom:986.130000px;}
.y9_c00184{bottom:1017.180000px;}
.y8_c00184{bottom:1048.230000px;}
.y7_c00184{bottom:1079.280000px;}
.y6_c00184{bottom:1110.330000px;}
.y5_c00184{bottom:1131.030000px;}
.y4_c00184{bottom:1150.920000px;}
.y3_c00184{bottom:1166.404500px;}
.y2_c00184{bottom:1181.970000px;}
.y1_c00184{bottom:1197.450000px;}
.h7_c00184{height:50.941406px;}
.h3_c00184{height:52.971680px;}
.h2_c00184{height:52.998047px;}
.h10_c00184{height:59.004492px;}
.h4_c00184{height:70.664062px;}
.h5_c00184{height:73.991602px;}
.h6_c00184{height:75.093750px;}
.hd_c00184{height:87.155508px;}
.he_c00184{height:98.978379px;}
.h9_c00184{height:101.915508px;}
.h8_c00184{height:144.052068px;}
.hf_c00184{height:150.098379px;}
.ha_c00184{height:175.396702px;}
.hc_c00184{height:179.902969px;}
.hb_c00184{height:180.395508px;}
.h0_c00184{height:1262.880000px;}
.h1_c00184{height:1263.000000px;}
.w0_c00184{width:893.070000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x3_c00184{left:127.620000px;}
.x4_c00184{left:154.620000px;}
.x5_c00184{left:181.620000px;}
.xb_c00184{left:327.420000px;}
.x6_c00184{left:345.510000px;}
.x7_c00184{left:399.690000px;}
.x9_c00184{left:402.570000px;}
.x2_c00184{left:425.160000px;}
.xa_c00184{left:440.107740px;}
.x8_c00184{left:442.978740px;}
.x1_c00184{left:446.580000px;}
.xc_c00184{left:449.910000px;}
.xd_c00184{left:616.230000px;}
.xe_c00184{left:738.540000px;}
@media print{
.v5_c00184{vertical-align:-91.840000pt;}
.v9_c00184{vertical-align:-18.560000pt;}
.v2_c00184{vertical-align:-13.120000pt;}
.va_c00184{vertical-align:-10.880000pt;}
.v6_c00184{vertical-align:-9.280000pt;}
.vc_c00184{vertical-align:-7.680000pt;}
.v0_c00184{vertical-align:0.000000pt;}
.ve_c00184{vertical-align:16.000000pt;}
.v1_c00184{vertical-align:24.000000pt;}
.vd_c00184{vertical-align:26.880000pt;}
.vb_c00184{vertical-align:31.360000pt;}
.v7_c00184{vertical-align:32.320000pt;}
.v3_c00184{vertical-align:50.574720pt;}
.v8_c00184{vertical-align:69.760000pt;}
.v4_c00184{vertical-align:93.095680pt;}
.ls2b_c00184{letter-spacing:-0.336960pt;}
.ls21_c00184{letter-spacing:-0.320000pt;}
.ls22_c00184{letter-spacing:-0.256000pt;}
.ls2a_c00184{letter-spacing:-0.187200pt;}
.ls27_c00184{letter-spacing:-0.160320pt;}
.ls25_c00184{letter-spacing:-0.128000pt;}
.ls20_c00184{letter-spacing:-0.096000pt;}
.ls26_c00184{letter-spacing:-0.090880pt;}
.ls23_c00184{letter-spacing:-0.064000pt;}
.ls28_c00184{letter-spacing:-0.053440pt;}
.ls1f_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:0.064000pt;}
.ls24_c00184{letter-spacing:0.090880pt;}
.ls19_c00184{letter-spacing:0.106880pt;}
.ls29_c00184{letter-spacing:0.112320pt;}
.ls7_c00184{letter-spacing:0.121600pt;}
.ls3_c00184{letter-spacing:0.128000pt;}
.ls8_c00184{letter-spacing:0.140800pt;}
.ls2_c00184{letter-spacing:0.170240pt;}
.lsb_c00184{letter-spacing:0.960000pt;}
.lsa_c00184{letter-spacing:1.280000pt;}
.ls1c_c00184{letter-spacing:1.504000pt;}
.ls1b_c00184{letter-spacing:1.931840pt;}
.ls15_c00184{letter-spacing:2.392960pt;}
.ls16_c00184{letter-spacing:2.712960pt;}
.ls5_c00184{letter-spacing:5.440000pt;}
.ls9_c00184{letter-spacing:7.040000pt;}
.ls14_c00184{letter-spacing:7.366400pt;}
.ls6_c00184{letter-spacing:11.520000pt;}
.ls1d_c00184{letter-spacing:11.543040pt;}
.ls1e_c00184{letter-spacing:11.756800pt;}
.ls17_c00184{letter-spacing:12.879040pt;}
.ls18_c00184{letter-spacing:13.199680pt;}
.ls13_c00184{letter-spacing:13.952000pt;}
.ls10_c00184{letter-spacing:14.272000pt;}
.lsf_c00184{letter-spacing:14.464000pt;}
.ls1a_c00184{letter-spacing:14.802880pt;}
.ls12_c00184{letter-spacing:15.788480pt;}
.ls11_c00184{letter-spacing:16.320000pt;}
.lse_c00184{letter-spacing:17.472000pt;}
.lsd_c00184{letter-spacing:19.628480pt;}
.ls4_c00184{letter-spacing:27.328000pt;}
.ls1_c00184{letter-spacing:27.840000pt;}
.lsc_c00184{letter-spacing:179.840000pt;}
.ws15_c00184{word-spacing:-53.440000pt;}
.ws11_c00184{word-spacing:-53.279680pt;}
.ws6_c00184{word-spacing:-45.530880pt;}
.ws5_c00184{word-spacing:-45.440000pt;}
.wsd_c00184{word-spacing:-45.349120pt;}
.ws13_c00184{word-spacing:-37.552320pt;}
.ws12_c00184{word-spacing:-37.440000pt;}
.ws14_c00184{word-spacing:-37.252800pt;}
.ws16_c00184{word-spacing:-37.103040pt;}
.ws7_c00184{word-spacing:-16.576768pt;}
.ws9_c00184{word-spacing:-16.128000pt;}
.ws1_c00184{word-spacing:-16.064000pt;}
.wsa_c00184{word-spacing:-16.000000pt;}
.ws2_c00184{word-spacing:-15.936000pt;}
.wsc_c00184{word-spacing:-15.872000pt;}
.wsb_c00184{word-spacing:-15.680000pt;}
.ws8_c00184{word-spacing:-14.144000pt;}
.ws4_c00184{word-spacing:-14.080000pt;}
.wse_c00184{word-spacing:-14.016000pt;}
.wsf_c00184{word-spacing:-13.952000pt;}
.ws0_c00184{word-spacing:-10.810240pt;}
.ws10_c00184{word-spacing:-8.640000pt;}
.ws39_c00184{word-spacing:-0.384000pt;}
.ws2b_c00184{word-spacing:-0.320000pt;}
.ws36_c00184{word-spacing:-0.128000pt;}
.ws21_c00184{word-spacing:-0.064000pt;}
.ws17_c00184{word-spacing:0.000000pt;}
.ws31_c00184{word-spacing:0.064000pt;}
.ws34_c00184{word-spacing:0.128000pt;}
.ws19_c00184{word-spacing:0.144000pt;}
.ws3e_c00184{word-spacing:0.160320pt;}
.ws18_c00184{word-spacing:0.240000pt;}
.ws1c_c00184{word-spacing:0.320000pt;}
.ws2d_c00184{word-spacing:0.512000pt;}
.ws2e_c00184{word-spacing:0.576000pt;}
.ws1d_c00184{word-spacing:0.640000pt;}
.ws38_c00184{word-spacing:0.960000pt;}
.ws37_c00184{word-spacing:1.280000pt;}
.ws23_c00184{word-spacing:3.136000pt;}
.ws22_c00184{word-spacing:3.200000pt;}
.ws3_c00184{word-spacing:3.712000pt;}
.ws2c_c00184{word-spacing:3.776000pt;}
.ws24_c00184{word-spacing:4.160000pt;}
.ws2f_c00184{word-spacing:4.800000pt;}
.ws27_c00184{word-spacing:5.440000pt;}
.ws28_c00184{word-spacing:5.696000pt;}
.ws1f_c00184{word-spacing:6.400000pt;}
.ws1e_c00184{word-spacing:6.656000pt;}
.ws20_c00184{word-spacing:6.720000pt;}
.ws35_c00184{word-spacing:7.040000pt;}
.ws3a_c00184{word-spacing:7.360000pt;}
.ws30_c00184{word-spacing:8.576000pt;}
.ws29_c00184{word-spacing:11.456000pt;}
.ws2a_c00184{word-spacing:11.520000pt;}
.ws3d_c00184{word-spacing:12.772160pt;}
.ws3c_c00184{word-spacing:12.932480pt;}
.ws3b_c00184{word-spacing:13.039360pt;}
.ws25_c00184{word-spacing:19.456000pt;}
.ws26_c00184{word-spacing:19.520000pt;}
.ws33_c00184{word-spacing:24.640000pt;}
.ws32_c00184{word-spacing:24.832000pt;}
.ws1b_c00184{word-spacing:27.776000pt;}
.ws1a_c00184{word-spacing:27.840000pt;}
._5_c00184{margin-left:-5.952000pt;}
._1_c00184{margin-left:-0.940800pt;}
._0_c00184{width:1.084800pt;}
._3_c00184{width:3.161600pt;}
._7_c00184{width:5.085568pt;}
._9_c00184{width:7.296000pt;}
._6_c00184{width:12.814080pt;}
._a_c00184{width:17.449920pt;}
._4_c00184{width:19.756800pt;}
._8_c00184{width:24.448000pt;}
._2_c00184{width:27.648000pt;}
.fs7_c00184{font-size:32.000000pt;}
.fs5_c00184{font-size:34.560000pt;}
.fs4_c00184{font-size:37.440000pt;}
.fs2_c00184{font-size:42.560000pt;}
.fs3_c00184{font-size:45.440000pt;}
.fs0_c00184{font-size:48.000000pt;}
.fs6_c00184{font-size:53.440000pt;}
.fs1_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y2b_c00184{bottom:50.880000pt;}
.y2a_c00184{bottom:97.598160pt;}
.y29_c00184{bottom:111.840000pt;}
.y28_c00184{bottom:123.200000pt;}
.y2c_c00184{bottom:138.880000pt;}
.y27_c00184{bottom:170.960000pt;}
.y26_c00184{bottom:189.680000pt;}
.y25_c00184{bottom:208.480000pt;}
.y24_c00184{bottom:226.880000pt;}
.y23_c00184{bottom:245.280000pt;}
.y22_c00184{bottom:271.920000pt;}
.y21_c00184{bottom:312.320000pt;}
.y20_c00184{bottom:339.920000pt;}
.y1f_c00184{bottom:367.520000pt;}
.y1e_c00184{bottom:395.120000pt;}
.y1d_c00184{bottom:422.720000pt;}
.y1c_c00184{bottom:446.966080pt;}
.y1b_c00184{bottom:455.040000pt;}
.y18_c00184{bottom:470.240000pt;}
.y1a_c00184{bottom:477.366080pt;}
.y19_c00184{bottom:485.440000pt;}
.y17_c00184{bottom:517.840000pt;}
.y16_c00184{bottom:545.440000pt;}
.y15_c00184{bottom:573.040000pt;}
.y14_c00184{bottom:600.640000pt;}
.y13_c00184{bottom:628.240000pt;}
.y12_c00184{bottom:655.840000pt;}
.y11_c00184{bottom:683.440000pt;}
.y10_c00184{bottom:711.040000pt;}
.yf_c00184{bottom:738.640000pt;}
.ye_c00184{bottom:766.160000pt;}
.yd_c00184{bottom:793.760000pt;}
.yc_c00184{bottom:821.360000pt;}
.yb_c00184{bottom:848.960000pt;}
.ya_c00184{bottom:876.560000pt;}
.y9_c00184{bottom:904.160000pt;}
.y8_c00184{bottom:931.760000pt;}
.y7_c00184{bottom:959.360000pt;}
.y6_c00184{bottom:986.960000pt;}
.y5_c00184{bottom:1005.360000pt;}
.y4_c00184{bottom:1023.040000pt;}
.y3_c00184{bottom:1036.804000pt;}
.y2_c00184{bottom:1050.640000pt;}
.y1_c00184{bottom:1064.400000pt;}
.h7_c00184{height:45.281250pt;}
.h3_c00184{height:47.085938pt;}
.h2_c00184{height:47.109375pt;}
.h10_c00184{height:52.448437pt;}
.h4_c00184{height:62.812500pt;}
.h5_c00184{height:65.770312pt;}
.h6_c00184{height:66.750000pt;}
.hd_c00184{height:77.471563pt;}
.he_c00184{height:87.980781pt;}
.h9_c00184{height:90.591562pt;}
.h8_c00184{height:128.046283pt;}
.hf_c00184{height:133.420781pt;}
.ha_c00184{height:155.908180pt;}
.hc_c00184{height:159.913750pt;}
.hb_c00184{height:160.351563pt;}
.h0_c00184{height:1122.560000pt;}
.h1_c00184{height:1122.666667pt;}
.w0_c00184{width:793.840000pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x3_c00184{left:113.440000pt;}
.x4_c00184{left:137.440000pt;}
.x5_c00184{left:161.440000pt;}
.xb_c00184{left:291.040000pt;}
.x6_c00184{left:307.120000pt;}
.x7_c00184{left:355.280000pt;}
.x9_c00184{left:357.840000pt;}
.x2_c00184{left:377.920000pt;}
.xa_c00184{left:391.206880pt;}
.x8_c00184{left:393.758880pt;}
.x1_c00184{left:396.960000pt;}
.xc_c00184{left:399.920000pt;}
.xd_c00184{left:547.760000pt;}
.xe_c00184{left:656.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_c00185 {
    display:none;
  }
  .loading-indicator_c00185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00185 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00185 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00185" -> "#page-container .classname_c00185")
 */
.pf_c00185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00185 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00185 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00185 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00185 {overflow:visible;}
  }
}
.c_c00185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00185 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00185:after { /* webkit #35443 */
  content: '';
}
.t_c00185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00185 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00185 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00185 { /* info for Javascript */
  display:none;
}
.l_c00185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00185:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00185;src:url('chunks/assets/font_88ab93eefa919faeff9d8241.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_2544c5cd6513bbde7bc85114.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_37c8b93bf9fb698e60bccbc5.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_23d2a7bd68e302448415f438.woff2')format("woff");}.ff4_c00185{font-family:ff4_c00185;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00185;src:url('chunks/assets/font_82a6cad4423c27a647b3f54d.woff2')format("woff");}.ff5_c00185{font-family:ff5_c00185;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3_c00185{transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246536,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.246537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246537,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.257456,0.000000,-0.085819,0.234809,0,0);-ms-transform:matrix(0.257456,0.000000,-0.085819,0.234809,0,0);-webkit-transform:matrix(0.257456,0.000000,-0.085819,0.234809,0,0);}
.v1_c00185{vertical-align:-61.938000px;}
.v8_c00185{vertical-align:-44.640000px;}
.v7_c00185{vertical-align:-29.880000px;}
.v4_c00185{vertical-align:-14.760000px;}
.v2_c00185{vertical-align:-10.440000px;}
.vc_c00185{vertical-align:-2.880000px;}
.v0_c00185{vertical-align:0.000000px;}
.vb_c00185{vertical-align:14.760000px;}
.v9_c00185{vertical-align:21.600000px;}
.v6_c00185{vertical-align:23.760000px;}
.v3_c00185{vertical-align:36.360000px;}
.v5_c00185{vertical-align:38.520000px;}
.va_c00185{vertical-align:78.496560px;}
.ls1d_c00185{letter-spacing:-0.576000px;}
.ls1f_c00185{letter-spacing:-0.360000px;}
.ls22_c00185{letter-spacing:-0.216000px;}
.ls1e_c00185{letter-spacing:-0.144000px;}
.ls1c_c00185{letter-spacing:-0.102240px;}
.ls1b_c00185{letter-spacing:-0.072000px;}
.ls20_c00185{letter-spacing:-0.043190px;}
.ls21_c00185{letter-spacing:-0.042120px;}
.ls19_c00185{letter-spacing:0.000000px;}
.ls12_c00185{letter-spacing:0.009360px;}
.ls6_c00185{letter-spacing:0.072000px;}
.ls1a_c00185{letter-spacing:0.102240px;}
.ls8_c00185{letter-spacing:0.144000px;}
.ls17_c00185{letter-spacing:1.080000px;}
.ls3_c00185{letter-spacing:1.562040px;}
.ls1_c00185{letter-spacing:1.922040px;}
.ls2_c00185{letter-spacing:2.692080px;}
.ls13_c00185{letter-spacing:2.877120px;}
.ls4_c00185{letter-spacing:3.240000px;}
.ls5_c00185{letter-spacing:3.254400px;}
.ls7_c00185{letter-spacing:3.600000px;}
.ls15_c00185{letter-spacing:3.960000px;}
.ls14_c00185{letter-spacing:3.967200px;}
.lsd_c00185{letter-spacing:4.680000px;}
.ls16_c00185{letter-spacing:4.736880px;}
.lsa_c00185{letter-spacing:9.720000px;}
.ls10_c00185{letter-spacing:16.056000px;}
.ls18_c00185{letter-spacing:16.214400px;}
.lsf_c00185{letter-spacing:18.717120px;}
.lse_c00185{letter-spacing:20.016000px;}
.ls11_c00185{letter-spacing:21.572640px;}
.lsb_c00185{letter-spacing:43.200000px;}
.lsc_c00185{letter-spacing:43.560000px;}
.ls9_c00185{letter-spacing:281.808000px;}
.ls0_c00185{letter-spacing:319.518000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00185{word-spacing:-72.000000px;}
.ws1_c00185{word-spacing:-51.222240px;}
.ws0_c00185{word-spacing:-51.120000px;}
.ws5_c00185{word-spacing:-51.017760px;}
.ws11_c00185{word-spacing:-42.077880px;}
.ws2_c00185{word-spacing:-39.528000px;}
.ws9_c00185{word-spacing:-20.350800px;}
.wsf_c00185{word-spacing:-19.954800px;}
.wse_c00185{word-spacing:-18.510000px;}
.ws8_c00185{word-spacing:-18.144000px;}
.wsb_c00185{word-spacing:-18.072000px;}
.wsd_c00185{word-spacing:-18.000000px;}
.ws6_c00185{word-spacing:-17.928000px;}
.ws12_c00185{word-spacing:-17.856000px;}
.wsc_c00185{word-spacing:-17.640000px;}
.ws7_c00185{word-spacing:-17.424000px;}
.ws4_c00185{word-spacing:-15.984000px;}
.ws3_c00185{word-spacing:-15.768000px;}
.wsa_c00185{word-spacing:-15.696000px;}
.ws17_c00185{word-spacing:-0.504000px;}
.ws14_c00185{word-spacing:-0.162000px;}
.ws1a_c00185{word-spacing:-0.144000px;}
.ws16_c00185{word-spacing:-0.072000px;}
.ws13_c00185{word-spacing:0.000000px;}
.ws2a_c00185{word-spacing:0.042120px;}
.ws28_c00185{word-spacing:0.043190px;}
.ws2b_c00185{word-spacing:0.072000px;}
.ws15_c00185{word-spacing:0.216000px;}
.ws2f_c00185{word-spacing:1.008000px;}
.ws30_c00185{word-spacing:1.080000px;}
.ws18_c00185{word-spacing:3.168000px;}
.ws19_c00185{word-spacing:3.240000px;}
.ws1b_c00185{word-spacing:3.528000px;}
.ws1c_c00185{word-spacing:3.600000px;}
.ws2c_c00185{word-spacing:3.888000px;}
.ws2d_c00185{word-spacing:3.960000px;}
.ws2e_c00185{word-spacing:4.248000px;}
.ws27_c00185{word-spacing:4.320000px;}
.ws26_c00185{word-spacing:4.680000px;}
.ws22_c00185{word-spacing:9.216000px;}
.ws20_c00185{word-spacing:9.288000px;}
.ws21_c00185{word-spacing:9.360000px;}
.ws23_c00185{word-spacing:9.720000px;}
.ws29_c00185{word-spacing:11.088000px;}
.ws1f_c00185{word-spacing:11.160000px;}
.ws1d_c00185{word-spacing:11.448000px;}
.ws1e_c00185{word-spacing:11.520000px;}
.ws31_c00185{word-spacing:16.128000px;}
.ws32_c00185{word-spacing:16.200000px;}
.ws25_c00185{word-spacing:43.488000px;}
.ws24_c00185{word-spacing:43.560000px;}
._8_c00185{margin-left:-4.752000px;}
._0_c00185{margin-left:-1.346400px;}
._3_c00185{width:1.080000px;}
._2_c00185{width:2.232000px;}
._1_c00185{width:3.456000px;}
._5_c00185{width:10.080000px;}
._4_c00185{width:11.390400px;}
._7_c00185{width:18.177480px;}
._6_c00185{width:30.672000px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs3_c00185{font-size:42.120000px;}
.fs5_c00185{font-size:43.189800px;}
.fs7_c00185{font-size:47.880000px;}
.fs2_c00185{font-size:51.120000px;}
.fs0_c00185{font-size:54.000000px;}
.fs1_c00185{font-size:72.000000px;}
.fs6_c00185{font-size:74.040000px;}
.fs4_c00185{font-size:108.018342px;}
.y0_c00185{bottom:0.000000px;}
.y1c_c00185{bottom:4.338450px;}
.yf_c00185{bottom:6.340950px;}
.y1e_c00185{bottom:8.965950px;}
.y1d_c00185{bottom:23.277177px;}
.y1f_c00185{bottom:27.901680px;}
.y34_c00185{bottom:57.240000px;}
.y33_c00185{bottom:128.250000px;}
.y32_c00185{bottom:148.950000px;}
.y31_c00185{bottom:169.560000px;}
.y30_c00185{bottom:190.710000px;}
.y2f_c00185{bottom:210.240000px;}
.y2e_c00185{bottom:229.860000px;}
.y2d_c00185{bottom:244.260000px;}
.y2c_c00185{bottom:265.320000px;}
.y2b_c00185{bottom:286.470000px;}
.y2a_c00185{bottom:306.450000px;}
.y29_c00185{bottom:326.070000px;}
.y28_c00185{bottom:341.460000px;}
.y27_c00185{bottom:362.520000px;}
.y26_c00185{bottom:394.020000px;}
.y25_c00185{bottom:425.070000px;}
.y24_c00185{bottom:455.130000px;}
.y23_c00185{bottom:474.750000px;}
.y22_c00185{bottom:500.580000px;}
.y21_c00185{bottom:531.630000px;}
.y20_c00185{bottom:562.680000px;}
.y1b_c00185{bottom:589.635000px;}
.y1a_c00185{bottom:607.680000px;}
.y19_c00185{bottom:650.340000px;}
.y18_c00185{bottom:688.680000px;}
.y17_c00185{bottom:727.290000px;}
.y16_c00185{bottom:758.340000px;}
.y15_c00185{bottom:789.390000px;}
.y14_c00185{bottom:820.440000px;}
.y13_c00185{bottom:851.490000px;}
.y12_c00185{bottom:882.540000px;}
.y11_c00185{bottom:913.590000px;}
.ye_c00185{bottom:929.460000px;}
.y10_c00185{bottom:934.740000px;}
.yd_c00185{bottom:957.420000px;}
.yc_c00185{bottom:979.560000px;}
.yb_c00185{bottom:998.910000px;}
.ya_c00185{bottom:1018.530000px;}
.y9_c00185{bottom:1033.020000px;}
.y8_c00185{bottom:1054.080000px;}
.y7_c00185{bottom:1075.140000px;}
.y6_c00185{bottom:1095.930000px;}
.y5_c00185{bottom:1115.550000px;}
.y4_c00185{bottom:1131.030000px;}
.y3_c00185{bottom:1150.915500px;}
.y2_c00185{bottom:1166.400000px;}
.y1_c00185{bottom:1197.450000px;}
.h7_c00185{height:23.250000px;}
.hc_c00185{height:42.367338px;}
.hb_c00185{height:46.273500px;}
.h2_c00185{height:52.998047px;}
.h3_c00185{height:70.664062px;}
.hd_c00185{height:72.630059px;}
.h6_c00185{height:87.155508px;}
.h8_c00185{height:100.054099px;}
.h4_c00185{height:101.915508px;}
.h5_c00185{height:107.024062px;}
.h9_c00185{height:125.675508px;}
.ha_c00185{height:143.542969px;}
.hf_c00185{height:179.902969px;}
.he_c00185{height:180.412068px;}
.h0_c00185{height:1262.880000px;}
.h1_c00185{height:1263.000000px;}
.w2_c00185{width:23.175000px;}
.w3_c00185{width:108.000000px;}
.w0_c00185{width:893.070000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.x4_c00185{left:2.896800px;}
.x9_c00185{left:42.828900px;}
.xa_c00185{left:52.858950px;}
.x8_c00185{left:96.068400px;}
.x2_c00185{left:127.620000px;}
.x3_c00185{left:129.240000px;}
.x5_c00185{left:150.840000px;}
.xc_c00185{left:309.510000px;}
.xd_c00185{left:445.410000px;}
.x1_c00185{left:446.580000px;}
.x6_c00185{left:450.540000px;}
.x7_c00185{left:657.570000px;}
.xb_c00185{left:765.540000px;}
@media print{
.v1_c00185{vertical-align:-55.056000pt;}
.v8_c00185{vertical-align:-39.680000pt;}
.v7_c00185{vertical-align:-26.560000pt;}
.v4_c00185{vertical-align:-13.120000pt;}
.v2_c00185{vertical-align:-9.280000pt;}
.vc_c00185{vertical-align:-2.560000pt;}
.v0_c00185{vertical-align:0.000000pt;}
.vb_c00185{vertical-align:13.120000pt;}
.v9_c00185{vertical-align:19.200000pt;}
.v6_c00185{vertical-align:21.120000pt;}
.v3_c00185{vertical-align:32.320000pt;}
.v5_c00185{vertical-align:34.240000pt;}
.va_c00185{vertical-align:69.774720pt;}
.ls1d_c00185{letter-spacing:-0.512000pt;}
.ls1f_c00185{letter-spacing:-0.320000pt;}
.ls22_c00185{letter-spacing:-0.192000pt;}
.ls1e_c00185{letter-spacing:-0.128000pt;}
.ls1c_c00185{letter-spacing:-0.090880pt;}
.ls1b_c00185{letter-spacing:-0.064000pt;}
.ls20_c00185{letter-spacing:-0.038391pt;}
.ls21_c00185{letter-spacing:-0.037440pt;}
.ls19_c00185{letter-spacing:0.000000pt;}
.ls12_c00185{letter-spacing:0.008320pt;}
.ls6_c00185{letter-spacing:0.064000pt;}
.ls1a_c00185{letter-spacing:0.090880pt;}
.ls8_c00185{letter-spacing:0.128000pt;}
.ls17_c00185{letter-spacing:0.960000pt;}
.ls3_c00185{letter-spacing:1.388480pt;}
.ls1_c00185{letter-spacing:1.708480pt;}
.ls2_c00185{letter-spacing:2.392960pt;}
.ls13_c00185{letter-spacing:2.557440pt;}
.ls4_c00185{letter-spacing:2.880000pt;}
.ls5_c00185{letter-spacing:2.892800pt;}
.ls7_c00185{letter-spacing:3.200000pt;}
.ls15_c00185{letter-spacing:3.520000pt;}
.ls14_c00185{letter-spacing:3.526400pt;}
.lsd_c00185{letter-spacing:4.160000pt;}
.ls16_c00185{letter-spacing:4.210560pt;}
.lsa_c00185{letter-spacing:8.640000pt;}
.ls10_c00185{letter-spacing:14.272000pt;}
.ls18_c00185{letter-spacing:14.412800pt;}
.lsf_c00185{letter-spacing:16.637440pt;}
.lse_c00185{letter-spacing:17.792000pt;}
.ls11_c00185{letter-spacing:19.175680pt;}
.lsb_c00185{letter-spacing:38.400000pt;}
.lsc_c00185{letter-spacing:38.720000pt;}
.ls9_c00185{letter-spacing:250.496000pt;}
.ls0_c00185{letter-spacing:284.016000pt;}
.ws10_c00185{word-spacing:-64.000000pt;}
.ws1_c00185{word-spacing:-45.530880pt;}
.ws0_c00185{word-spacing:-45.440000pt;}
.ws5_c00185{word-spacing:-45.349120pt;}
.ws11_c00185{word-spacing:-37.402560pt;}
.ws2_c00185{word-spacing:-35.136000pt;}
.ws9_c00185{word-spacing:-18.089600pt;}
.wsf_c00185{word-spacing:-17.737600pt;}
.wse_c00185{word-spacing:-16.453333pt;}
.ws8_c00185{word-spacing:-16.128000pt;}
.wsb_c00185{word-spacing:-16.064000pt;}
.wsd_c00185{word-spacing:-16.000000pt;}
.ws6_c00185{word-spacing:-15.936000pt;}
.ws12_c00185{word-spacing:-15.872000pt;}
.wsc_c00185{word-spacing:-15.680000pt;}
.ws7_c00185{word-spacing:-15.488000pt;}
.ws4_c00185{word-spacing:-14.208000pt;}
.ws3_c00185{word-spacing:-14.016000pt;}
.wsa_c00185{word-spacing:-13.952000pt;}
.ws17_c00185{word-spacing:-0.448000pt;}
.ws14_c00185{word-spacing:-0.144000pt;}
.ws1a_c00185{word-spacing:-0.128000pt;}
.ws16_c00185{word-spacing:-0.064000pt;}
.ws13_c00185{word-spacing:0.000000pt;}
.ws2a_c00185{word-spacing:0.037440pt;}
.ws28_c00185{word-spacing:0.038391pt;}
.ws2b_c00185{word-spacing:0.064000pt;}
.ws15_c00185{word-spacing:0.192000pt;}
.ws2f_c00185{word-spacing:0.896000pt;}
.ws30_c00185{word-spacing:0.960000pt;}
.ws18_c00185{word-spacing:2.816000pt;}
.ws19_c00185{word-spacing:2.880000pt;}
.ws1b_c00185{word-spacing:3.136000pt;}
.ws1c_c00185{word-spacing:3.200000pt;}
.ws2c_c00185{word-spacing:3.456000pt;}
.ws2d_c00185{word-spacing:3.520000pt;}
.ws2e_c00185{word-spacing:3.776000pt;}
.ws27_c00185{word-spacing:3.840000pt;}
.ws26_c00185{word-spacing:4.160000pt;}
.ws22_c00185{word-spacing:8.192000pt;}
.ws20_c00185{word-spacing:8.256000pt;}
.ws21_c00185{word-spacing:8.320000pt;}
.ws23_c00185{word-spacing:8.640000pt;}
.ws29_c00185{word-spacing:9.856000pt;}
.ws1f_c00185{word-spacing:9.920000pt;}
.ws1d_c00185{word-spacing:10.176000pt;}
.ws1e_c00185{word-spacing:10.240000pt;}
.ws31_c00185{word-spacing:14.336000pt;}
.ws32_c00185{word-spacing:14.400000pt;}
.ws25_c00185{word-spacing:38.656000pt;}
.ws24_c00185{word-spacing:38.720000pt;}
._8_c00185{margin-left:-4.224000pt;}
._0_c00185{margin-left:-1.196800pt;}
._3_c00185{width:0.960000pt;}
._2_c00185{width:1.984000pt;}
._1_c00185{width:3.072000pt;}
._5_c00185{width:8.960000pt;}
._4_c00185{width:10.124800pt;}
._7_c00185{width:16.157760pt;}
._6_c00185{width:27.264000pt;}
.fs3_c00185{font-size:37.440000pt;}
.fs5_c00185{font-size:38.390933pt;}
.fs7_c00185{font-size:42.560000pt;}
.fs2_c00185{font-size:45.440000pt;}
.fs0_c00185{font-size:48.000000pt;}
.fs1_c00185{font-size:64.000000pt;}
.fs6_c00185{font-size:65.813333pt;}
.fs4_c00185{font-size:96.016304pt;}
.y0_c00185{bottom:0.000000pt;}
.y1c_c00185{bottom:3.856400pt;}
.yf_c00185{bottom:5.636400pt;}
.y1e_c00185{bottom:7.969733pt;}
.y1d_c00185{bottom:20.690824pt;}
.y1f_c00185{bottom:24.801493pt;}
.y34_c00185{bottom:50.880000pt;}
.y33_c00185{bottom:114.000000pt;}
.y32_c00185{bottom:132.400000pt;}
.y31_c00185{bottom:150.720000pt;}
.y30_c00185{bottom:169.520000pt;}
.y2f_c00185{bottom:186.880000pt;}
.y2e_c00185{bottom:204.320000pt;}
.y2d_c00185{bottom:217.120000pt;}
.y2c_c00185{bottom:235.840000pt;}
.y2b_c00185{bottom:254.640000pt;}
.y2a_c00185{bottom:272.400000pt;}
.y29_c00185{bottom:289.840000pt;}
.y28_c00185{bottom:303.520000pt;}
.y27_c00185{bottom:322.240000pt;}
.y26_c00185{bottom:350.240000pt;}
.y25_c00185{bottom:377.840000pt;}
.y24_c00185{bottom:404.560000pt;}
.y23_c00185{bottom:422.000000pt;}
.y22_c00185{bottom:444.960000pt;}
.y21_c00185{bottom:472.560000pt;}
.y20_c00185{bottom:500.160000pt;}
.y1b_c00185{bottom:524.120000pt;}
.y1a_c00185{bottom:540.160000pt;}
.y19_c00185{bottom:578.080000pt;}
.y18_c00185{bottom:612.160000pt;}
.y17_c00185{bottom:646.480000pt;}
.y16_c00185{bottom:674.080000pt;}
.y15_c00185{bottom:701.680000pt;}
.y14_c00185{bottom:729.280000pt;}
.y13_c00185{bottom:756.880000pt;}
.y12_c00185{bottom:784.480000pt;}
.y11_c00185{bottom:812.080000pt;}
.ye_c00185{bottom:826.186667pt;}
.y10_c00185{bottom:830.880000pt;}
.yd_c00185{bottom:851.040000pt;}
.yc_c00185{bottom:870.720000pt;}
.yb_c00185{bottom:887.920000pt;}
.ya_c00185{bottom:905.360000pt;}
.y9_c00185{bottom:918.240000pt;}
.y8_c00185{bottom:936.960000pt;}
.y7_c00185{bottom:955.680000pt;}
.y6_c00185{bottom:974.160000pt;}
.y5_c00185{bottom:991.600000pt;}
.y4_c00185{bottom:1005.360000pt;}
.y3_c00185{bottom:1023.036000pt;}
.y2_c00185{bottom:1036.800000pt;}
.y1_c00185{bottom:1064.400000pt;}
.h7_c00185{height:20.666667pt;}
.hc_c00185{height:37.659856pt;}
.hb_c00185{height:41.132000pt;}
.h2_c00185{height:47.109375pt;}
.h3_c00185{height:62.812500pt;}
.hd_c00185{height:64.560052pt;}
.h6_c00185{height:77.471562pt;}
.h8_c00185{height:88.936977pt;}
.h4_c00185{height:90.591562pt;}
.h5_c00185{height:95.132500pt;}
.h9_c00185{height:111.711562pt;}
.ha_c00185{height:127.593750pt;}
.hf_c00185{height:159.913750pt;}
.he_c00185{height:160.366283pt;}
.h0_c00185{height:1122.560000pt;}
.h1_c00185{height:1122.666667pt;}
.w2_c00185{width:20.600000pt;}
.w3_c00185{width:96.000000pt;}
.w0_c00185{width:793.840000pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.x4_c00185{left:2.574933pt;}
.x9_c00185{left:38.070133pt;}
.xa_c00185{left:46.985733pt;}
.x8_c00185{left:85.394133pt;}
.x2_c00185{left:113.440000pt;}
.x3_c00185{left:114.880000pt;}
.x5_c00185{left:134.080000pt;}
.xc_c00185{left:275.120000pt;}
.xd_c00185{left:395.920000pt;}
.x1_c00185{left:396.960000pt;}
.x6_c00185{left:400.480000pt;}
.x7_c00185{left:584.506667pt;}
.xb_c00185{left:680.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_c00186 {
    display:none;
  }
  .loading-indicator_c00186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00186 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00186 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00186" -> "#page-container .classname_c00186")
 */
.pf_c00186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00186 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00186 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00186 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00186 {overflow:visible;}
  }
}
.c_c00186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00186 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00186:after { /* webkit #35443 */
  content: '';
}
.t_c00186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00186 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00186 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00186 { /* info for Javascript */
  display:none;
}
.l_c00186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00186:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00186;src:url('chunks/assets/font_96492add4adb4cf0ff5fc271.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_5fbd172266a7e764cc97caee.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_c057375081c06bbcaeba4364.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_25adb79b4051768da144827d.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_423d09073fcae103a70395e6.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3_c00186{vertical-align:-147.960000px;}
.v1_c00186{vertical-align:-14.760000px;}
.v6_c00186{vertical-align:-10.440000px;}
.v0_c00186{vertical-align:0.000000px;}
.v2_c00186{vertical-align:14.760000px;}
.v8_c00186{vertical-align:21.600000px;}
.v5_c00186{vertical-align:31.680000px;}
.v7_c00186{vertical-align:36.360000px;}
.v4_c00186{vertical-align:42.120000px;}
.ls17_c00186{letter-spacing:-0.432000px;}
.ls1a_c00186{letter-spacing:-0.360000px;}
.ls19_c00186{letter-spacing:-0.288000px;}
.ls1c_c00186{letter-spacing:-0.216000px;}
.ls1b_c00186{letter-spacing:-0.153360px;}
.ls18_c00186{letter-spacing:-0.144000px;}
.ls13_c00186{letter-spacing:-0.108000px;}
.ls16_c00186{letter-spacing:-0.072000px;}
.ls12_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:0.072000px;}
.ls15_c00186{letter-spacing:0.102240px;}
.lsc_c00186{letter-spacing:0.144000px;}
.ls1_c00186{letter-spacing:0.151200px;}
.ls14_c00186{letter-spacing:0.360000px;}
.ls3_c00186{letter-spacing:1.080000px;}
.ls5_c00186{letter-spacing:1.800000px;}
.ls9_c00186{letter-spacing:2.037240px;}
.lsd_c00186{letter-spacing:2.376000px;}
.ls8_c00186{letter-spacing:2.520000px;}
.ls11_c00186{letter-spacing:3.960000px;}
.lsf_c00186{letter-spacing:4.147200px;}
.lse_c00186{letter-spacing:4.507200px;}
.ls10_c00186{letter-spacing:6.120000px;}
.ls6_c00186{letter-spacing:7.560000px;}
.ls2_c00186{letter-spacing:10.080000px;}
.lsa_c00186{letter-spacing:15.840000px;}
.lsb_c00186{letter-spacing:15.912000px;}
.ls4_c00186{letter-spacing:18.000000px;}
.ls7_c00186{letter-spacing:20.016000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00186{word-spacing:-72.144000px;}
.ws7_c00186{word-spacing:-72.072000px;}
.ws0_c00186{word-spacing:-72.000000px;}
.wsb_c00186{word-spacing:-71.928000px;}
.ws1_c00186{word-spacing:-51.222240px;}
.ws9_c00186{word-spacing:-51.120000px;}
.ws8_c00186{word-spacing:-50.966640px;}
.wsc_c00186{word-spacing:-18.144000px;}
.ws2_c00186{word-spacing:-18.072000px;}
.ws5_c00186{word-spacing:-18.000000px;}
.ws6_c00186{word-spacing:-17.928000px;}
.ws4_c00186{word-spacing:-17.856000px;}
.ws3_c00186{word-spacing:-17.568000px;}
.ws12_c00186{word-spacing:-0.360000px;}
.ws14_c00186{word-spacing:-0.144000px;}
.ws19_c00186{word-spacing:-0.072000px;}
.wsd_c00186{word-spacing:0.000000px;}
.ws13_c00186{word-spacing:0.072000px;}
.wsf_c00186{word-spacing:0.162000px;}
.ws1b_c00186{word-spacing:0.216000px;}
.wse_c00186{word-spacing:0.270000px;}
.ws1a_c00186{word-spacing:0.288000px;}
.ws2a_c00186{word-spacing:0.360000px;}
.ws1f_c00186{word-spacing:1.440000px;}
.ws20_c00186{word-spacing:1.584000px;}
.ws18_c00186{word-spacing:1.656000px;}
.ws23_c00186{word-spacing:1.800000px;}
.ws34_c00186{word-spacing:3.456000px;}
.ws33_c00186{word-spacing:3.960000px;}
.ws26_c00186{word-spacing:4.536000px;}
.ws27_c00186{word-spacing:4.680000px;}
.ws2d_c00186{word-spacing:5.328000px;}
.ws2e_c00186{word-spacing:5.400000px;}
.ws31_c00186{word-spacing:6.048000px;}
.ws32_c00186{word-spacing:6.120000px;}
.ws36_c00186{word-spacing:6.408000px;}
.ws35_c00186{word-spacing:6.480000px;}
.ws29_c00186{word-spacing:7.560000px;}
.ws24_c00186{word-spacing:7.848000px;}
.ws25_c00186{word-spacing:8.208000px;}
.ws1d_c00186{word-spacing:9.360000px;}
.ws1e_c00186{word-spacing:9.576000px;}
.ws1c_c00186{word-spacing:9.720000px;}
.ws10_c00186{word-spacing:10.008000px;}
.ws11_c00186{word-spacing:10.080000px;}
.ws37_c00186{word-spacing:11.088000px;}
.ws2c_c00186{word-spacing:12.528000px;}
.ws2b_c00186{word-spacing:12.600000px;}
.ws30_c00186{word-spacing:16.200000px;}
.ws2f_c00186{word-spacing:16.488000px;}
.ws17_c00186{word-spacing:16.920000px;}
.ws21_c00186{word-spacing:17.928000px;}
.ws22_c00186{word-spacing:18.000000px;}
.ws28_c00186{word-spacing:22.680000px;}
.ws15_c00186{word-spacing:24.120000px;}
.ws16_c00186{word-spacing:24.408000px;}
._1_c00186{margin-left:-1.058400px;}
._0_c00186{width:1.220400px;}
._3_c00186{width:3.978000px;}
._9_c00186{width:5.457600px;}
._7_c00186{width:7.488000px;}
._2_c00186{width:9.208800px;}
._6_c00186{width:10.231200px;}
._a_c00186{width:11.404800px;}
._5_c00186{width:16.563600px;}
._4_c00186{width:23.979600px;}
._8_c00186{width:287.424000px;}
.fc0_c00186{color:rgb(0,0,0);}
.fs3_c00186{font-size:42.120000px;}
.fs2_c00186{font-size:51.120000px;}
.fs0_c00186{font-size:54.000000px;}
.fs1_c00186{font-size:72.000000px;}
.y0_c00186{bottom:0.000000px;}
.y28_c00186{bottom:57.240000px;}
.y27_c00186{bottom:130.320000px;}
.y26_c00186{bottom:161.370000px;}
.y25_c00186{bottom:192.420000px;}
.y24_c00186{bottom:223.470000px;}
.y23_c00186{bottom:254.520000px;}
.y22_c00186{bottom:285.570000px;}
.y21_c00186{bottom:316.620000px;}
.y20_c00186{bottom:347.670000px;}
.y1f_c00186{bottom:378.450000px;}
.y1e_c00186{bottom:409.680000px;}
.y1d_c00186{bottom:440.910000px;}
.y1c_c00186{bottom:462.060000px;}
.y1b_c00186{bottom:483.120000px;}
.y1a_c00186{bottom:504.270000px;}
.y19_c00186{bottom:525.420000px;}
.y18_c00186{bottom:555.210000px;}
.y17_c00186{bottom:601.290000px;}
.y16_c00186{bottom:632.340000px;}
.y15_c00186{bottom:663.390000px;}
.y14_c00186{bottom:694.440000px;}
.y13_c00186{bottom:725.490000px;}
.y12_c00186{bottom:756.540000px;}
.y11_c00186{bottom:787.590000px;}
.y10_c00186{bottom:818.640000px;}
.yf_c00186{bottom:849.690000px;}
.ye_c00186{bottom:880.740000px;}
.yd_c00186{bottom:911.790000px;}
.yc_c00186{bottom:942.840000px;}
.yb_c00186{bottom:973.890000px;}
.ya_c00186{bottom:1004.940000px;}
.y9_c00186{bottom:1035.990000px;}
.y8_c00186{bottom:1067.130000px;}
.y7_c00186{bottom:1088.280000px;}
.y6_c00186{bottom:1108.890000px;}
.y5_c00186{bottom:1131.030000px;}
.y4_c00186{bottom:1150.920000px;}
.y3_c00186{bottom:1166.404500px;}
.y2_c00186{bottom:1181.970000px;}
.y1_c00186{bottom:1197.450000px;}
.h3_c00186{height:52.971680px;}
.h2_c00186{height:52.998047px;}
.h4_c00186{height:70.664062px;}
.h7_c00186{height:72.562500px;}
.h5_c00186{height:143.542969px;}
.h6_c00186{height:179.902969px;}
.h0_c00186{height:1262.880000px;}
.h1_c00186{height:1263.000000px;}
.w0_c00186{width:893.070000px;}
.w1_c00186{width:893.250000px;}
.x0_c00186{left:0.000000px;}
.x3_c00186{left:127.620000px;}
.x4_c00186{left:402.210000px;}
.x2_c00186{left:425.160000px;}
.x1_c00186{left:446.580000px;}
.x5_c00186{left:738.540000px;}
@media print{
.v3_c00186{vertical-align:-131.520000pt;}
.v1_c00186{vertical-align:-13.120000pt;}
.v6_c00186{vertical-align:-9.280000pt;}
.v0_c00186{vertical-align:0.000000pt;}
.v2_c00186{vertical-align:13.120000pt;}
.v8_c00186{vertical-align:19.200000pt;}
.v5_c00186{vertical-align:28.160000pt;}
.v7_c00186{vertical-align:32.320000pt;}
.v4_c00186{vertical-align:37.440000pt;}
.ls17_c00186{letter-spacing:-0.384000pt;}
.ls1a_c00186{letter-spacing:-0.320000pt;}
.ls19_c00186{letter-spacing:-0.256000pt;}
.ls1c_c00186{letter-spacing:-0.192000pt;}
.ls1b_c00186{letter-spacing:-0.136320pt;}
.ls18_c00186{letter-spacing:-0.128000pt;}
.ls13_c00186{letter-spacing:-0.096000pt;}
.ls16_c00186{letter-spacing:-0.064000pt;}
.ls12_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:0.064000pt;}
.ls15_c00186{letter-spacing:0.090880pt;}
.lsc_c00186{letter-spacing:0.128000pt;}
.ls1_c00186{letter-spacing:0.134400pt;}
.ls14_c00186{letter-spacing:0.320000pt;}
.ls3_c00186{letter-spacing:0.960000pt;}
.ls5_c00186{letter-spacing:1.600000pt;}
.ls9_c00186{letter-spacing:1.810880pt;}
.lsd_c00186{letter-spacing:2.112000pt;}
.ls8_c00186{letter-spacing:2.240000pt;}
.ls11_c00186{letter-spacing:3.520000pt;}
.lsf_c00186{letter-spacing:3.686400pt;}
.lse_c00186{letter-spacing:4.006400pt;}
.ls10_c00186{letter-spacing:5.440000pt;}
.ls6_c00186{letter-spacing:6.720000pt;}
.ls2_c00186{letter-spacing:8.960000pt;}
.lsa_c00186{letter-spacing:14.080000pt;}
.lsb_c00186{letter-spacing:14.144000pt;}
.ls4_c00186{letter-spacing:16.000000pt;}
.ls7_c00186{letter-spacing:17.792000pt;}
.wsa_c00186{word-spacing:-64.128000pt;}
.ws7_c00186{word-spacing:-64.064000pt;}
.ws0_c00186{word-spacing:-64.000000pt;}
.wsb_c00186{word-spacing:-63.936000pt;}
.ws1_c00186{word-spacing:-45.530880pt;}
.ws9_c00186{word-spacing:-45.440000pt;}
.ws8_c00186{word-spacing:-45.303680pt;}
.wsc_c00186{word-spacing:-16.128000pt;}
.ws2_c00186{word-spacing:-16.064000pt;}
.ws5_c00186{word-spacing:-16.000000pt;}
.ws6_c00186{word-spacing:-15.936000pt;}
.ws4_c00186{word-spacing:-15.872000pt;}
.ws3_c00186{word-spacing:-15.616000pt;}
.ws12_c00186{word-spacing:-0.320000pt;}
.ws14_c00186{word-spacing:-0.128000pt;}
.ws19_c00186{word-spacing:-0.064000pt;}
.wsd_c00186{word-spacing:0.000000pt;}
.ws13_c00186{word-spacing:0.064000pt;}
.wsf_c00186{word-spacing:0.144000pt;}
.ws1b_c00186{word-spacing:0.192000pt;}
.wse_c00186{word-spacing:0.240000pt;}
.ws1a_c00186{word-spacing:0.256000pt;}
.ws2a_c00186{word-spacing:0.320000pt;}
.ws1f_c00186{word-spacing:1.280000pt;}
.ws20_c00186{word-spacing:1.408000pt;}
.ws18_c00186{word-spacing:1.472000pt;}
.ws23_c00186{word-spacing:1.600000pt;}
.ws34_c00186{word-spacing:3.072000pt;}
.ws33_c00186{word-spacing:3.520000pt;}
.ws26_c00186{word-spacing:4.032000pt;}
.ws27_c00186{word-spacing:4.160000pt;}
.ws2d_c00186{word-spacing:4.736000pt;}
.ws2e_c00186{word-spacing:4.800000pt;}
.ws31_c00186{word-spacing:5.376000pt;}
.ws32_c00186{word-spacing:5.440000pt;}
.ws36_c00186{word-spacing:5.696000pt;}
.ws35_c00186{word-spacing:5.760000pt;}
.ws29_c00186{word-spacing:6.720000pt;}
.ws24_c00186{word-spacing:6.976000pt;}
.ws25_c00186{word-spacing:7.296000pt;}
.ws1d_c00186{word-spacing:8.320000pt;}
.ws1e_c00186{word-spacing:8.512000pt;}
.ws1c_c00186{word-spacing:8.640000pt;}
.ws10_c00186{word-spacing:8.896000pt;}
.ws11_c00186{word-spacing:8.960000pt;}
.ws37_c00186{word-spacing:9.856000pt;}
.ws2c_c00186{word-spacing:11.136000pt;}
.ws2b_c00186{word-spacing:11.200000pt;}
.ws30_c00186{word-spacing:14.400000pt;}
.ws2f_c00186{word-spacing:14.656000pt;}
.ws17_c00186{word-spacing:15.040000pt;}
.ws21_c00186{word-spacing:15.936000pt;}
.ws22_c00186{word-spacing:16.000000pt;}
.ws28_c00186{word-spacing:20.160000pt;}
.ws15_c00186{word-spacing:21.440000pt;}
.ws16_c00186{word-spacing:21.696000pt;}
._1_c00186{margin-left:-0.940800pt;}
._0_c00186{width:1.084800pt;}
._3_c00186{width:3.536000pt;}
._9_c00186{width:4.851200pt;}
._7_c00186{width:6.656000pt;}
._2_c00186{width:8.185600pt;}
._6_c00186{width:9.094400pt;}
._a_c00186{width:10.137600pt;}
._5_c00186{width:14.723200pt;}
._4_c00186{width:21.315200pt;}
._8_c00186{width:255.488000pt;}
.fs3_c00186{font-size:37.440000pt;}
.fs2_c00186{font-size:45.440000pt;}
.fs0_c00186{font-size:48.000000pt;}
.fs1_c00186{font-size:64.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y28_c00186{bottom:50.880000pt;}
.y27_c00186{bottom:115.840000pt;}
.y26_c00186{bottom:143.440000pt;}
.y25_c00186{bottom:171.040000pt;}
.y24_c00186{bottom:198.640000pt;}
.y23_c00186{bottom:226.240000pt;}
.y22_c00186{bottom:253.840000pt;}
.y21_c00186{bottom:281.440000pt;}
.y20_c00186{bottom:309.040000pt;}
.y1f_c00186{bottom:336.400000pt;}
.y1e_c00186{bottom:364.160000pt;}
.y1d_c00186{bottom:391.920000pt;}
.y1c_c00186{bottom:410.720000pt;}
.y1b_c00186{bottom:429.440000pt;}
.y1a_c00186{bottom:448.240000pt;}
.y19_c00186{bottom:467.040000pt;}
.y18_c00186{bottom:493.520000pt;}
.y17_c00186{bottom:534.480000pt;}
.y16_c00186{bottom:562.080000pt;}
.y15_c00186{bottom:589.680000pt;}
.y14_c00186{bottom:617.280000pt;}
.y13_c00186{bottom:644.880000pt;}
.y12_c00186{bottom:672.480000pt;}
.y11_c00186{bottom:700.080000pt;}
.y10_c00186{bottom:727.680000pt;}
.yf_c00186{bottom:755.280000pt;}
.ye_c00186{bottom:782.880000pt;}
.yd_c00186{bottom:810.480000pt;}
.yc_c00186{bottom:838.080000pt;}
.yb_c00186{bottom:865.680000pt;}
.ya_c00186{bottom:893.280000pt;}
.y9_c00186{bottom:920.880000pt;}
.y8_c00186{bottom:948.560000pt;}
.y7_c00186{bottom:967.360000pt;}
.y6_c00186{bottom:985.680000pt;}
.y5_c00186{bottom:1005.360000pt;}
.y4_c00186{bottom:1023.040000pt;}
.y3_c00186{bottom:1036.804000pt;}
.y2_c00186{bottom:1050.640000pt;}
.y1_c00186{bottom:1064.400000pt;}
.h3_c00186{height:47.085938pt;}
.h2_c00186{height:47.109375pt;}
.h4_c00186{height:62.812500pt;}
.h7_c00186{height:64.500000pt;}
.h5_c00186{height:127.593750pt;}
.h6_c00186{height:159.913750pt;}
.h0_c00186{height:1122.560000pt;}
.h1_c00186{height:1122.666667pt;}
.w0_c00186{width:793.840000pt;}
.w1_c00186{width:794.000000pt;}
.x0_c00186{left:0.000000pt;}
.x3_c00186{left:113.440000pt;}
.x4_c00186{left:357.520000pt;}
.x2_c00186{left:377.920000pt;}
.x1_c00186{left:396.960000pt;}
.x5_c00186{left:656.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_c00187 {
    display:none;
  }
  .loading-indicator_c00187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00187 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00187 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00187" -> "#page-container .classname_c00187")
 */
.pf_c00187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00187 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00187 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00187 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00187 {overflow:visible;}
  }
}
.c_c00187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00187 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00187:after { /* webkit #35443 */
  content: '';
}
.t_c00187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00187 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00187 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00187 { /* info for Javascript */
  display:none;
}
.l_c00187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00187:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00187;src:url('chunks/assets/font_49dec0f55551d4c59f46ee3e.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_bf6ac003a650a4958816b5a5.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;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_c00187;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00187{vertical-align:-61.938000px;}
.v0_c00187{vertical-align:0.000000px;}
.lsc_c00187{letter-spacing:-0.432000px;}
.lsd_c00187{letter-spacing:-0.360000px;}
.lsb_c00187{letter-spacing:-0.288000px;}
.lsa_c00187{letter-spacing:0.000000px;}
.ls3_c00187{letter-spacing:0.072000px;}
.ls7_c00187{letter-spacing:0.144000px;}
.ls8_c00187{letter-spacing:0.720000px;}
.ls2_c00187{letter-spacing:3.240000px;}
.ls9_c00187{letter-spacing:3.247200px;}
.ls1_c00187{letter-spacing:3.254400px;}
.ls5_c00187{letter-spacing:5.760000px;}
.ls6_c00187{letter-spacing:9.360000px;}
.ls4_c00187{letter-spacing:30.744000px;}
.ls0_c00187{letter-spacing:319.518000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00187{word-spacing:-18.144000px;}
.ws0_c00187{word-spacing:-18.072000px;}
.ws2_c00187{word-spacing:-18.000000px;}
.ws4_c00187{word-spacing:-17.640000px;}
.ws1_c00187{word-spacing:-17.568000px;}
.wsa_c00187{word-spacing:-0.432000px;}
.wsb_c00187{word-spacing:-0.360000px;}
.ws6_c00187{word-spacing:-0.162000px;}
.ws27_c00187{word-spacing:-0.144000px;}
.ws9_c00187{word-spacing:-0.072000px;}
.ws5_c00187{word-spacing:0.000000px;}
.ws13_c00187{word-spacing:0.288000px;}
.ws12_c00187{word-spacing:0.360000px;}
.ws14_c00187{word-spacing:0.648000px;}
.ws15_c00187{word-spacing:0.720000px;}
.ws2b_c00187{word-spacing:1.008000px;}
.ws2c_c00187{word-spacing:1.080000px;}
.ws32_c00187{word-spacing:1.368000px;}
.ws20_c00187{word-spacing:1.800000px;}
.ws1a_c00187{word-spacing:2.088000px;}
.ws1b_c00187{word-spacing:2.160000px;}
.ws1e_c00187{word-spacing:2.448000px;}
.ws1f_c00187{word-spacing:2.520000px;}
.wsd_c00187{word-spacing:2.808000px;}
.wsf_c00187{word-spacing:3.168000px;}
.ws2d_c00187{word-spacing:3.240000px;}
.wse_c00187{word-spacing:3.528000px;}
.ws1d_c00187{word-spacing:3.888000px;}
.ws23_c00187{word-spacing:4.680000px;}
.ws22_c00187{word-spacing:5.040000px;}
.wsc_c00187{word-spacing:5.400000px;}
.ws10_c00187{word-spacing:5.688000px;}
.ws11_c00187{word-spacing:5.760000px;}
.ws25_c00187{word-spacing:8.928000px;}
.ws26_c00187{word-spacing:9.000000px;}
.ws17_c00187{word-spacing:9.216000px;}
.ws19_c00187{word-spacing:9.288000px;}
.ws18_c00187{word-spacing:9.360000px;}
.ws30_c00187{word-spacing:9.648000px;}
.ws31_c00187{word-spacing:9.720000px;}
.ws16_c00187{word-spacing:10.800000px;}
.ws7_c00187{word-spacing:11.808000px;}
.ws8_c00187{word-spacing:11.880000px;}
.ws24_c00187{word-spacing:14.328000px;}
.ws1c_c00187{word-spacing:14.760000px;}
.ws28_c00187{word-spacing:16.920000px;}
.ws29_c00187{word-spacing:20.808000px;}
.ws2a_c00187{word-spacing:20.880000px;}
.ws21_c00187{word-spacing:23.040000px;}
.ws2f_c00187{word-spacing:26.568000px;}
.ws2e_c00187{word-spacing:26.640000px;}
._0_c00187{margin-left:-1.015200px;}
._2_c00187{width:1.072800px;}
._4_c00187{width:2.174400px;}
._8_c00187{width:3.643200px;}
._6_c00187{width:4.896000px;}
._3_c00187{width:5.918400px;}
._7_c00187{width:9.151200px;}
._1_c00187{width:11.383200px;}
._5_c00187{width:14.832000px;}
._9_c00187{width:26.640000px;}
.fc0_c00187{color:rgb(0,0,0);}
.fs0_c00187{font-size:54.000000px;}
.fs1_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y25_c00187{bottom:57.240000px;}
.y24_c00187{bottom:147.870000px;}
.y23_c00187{bottom:178.920000px;}
.y22_c00187{bottom:209.970000px;}
.y21_c00187{bottom:241.020000px;}
.y20_c00187{bottom:272.070000px;}
.y1f_c00187{bottom:303.120000px;}
.y1e_c00187{bottom:334.170000px;}
.y1d_c00187{bottom:365.220000px;}
.y1c_c00187{bottom:396.270000px;}
.y1b_c00187{bottom:427.320000px;}
.y1a_c00187{bottom:458.370000px;}
.y19_c00187{bottom:489.420000px;}
.y18_c00187{bottom:520.470000px;}
.y17_c00187{bottom:551.520000px;}
.y16_c00187{bottom:582.570000px;}
.y15_c00187{bottom:613.620000px;}
.y14_c00187{bottom:644.670000px;}
.y13_c00187{bottom:675.720000px;}
.y12_c00187{bottom:706.770000px;}
.y11_c00187{bottom:737.820000px;}
.y10_c00187{bottom:768.870000px;}
.yf_c00187{bottom:799.920000px;}
.ye_c00187{bottom:830.970000px;}
.yd_c00187{bottom:861.930000px;}
.yc_c00187{bottom:892.980000px;}
.yb_c00187{bottom:924.030000px;}
.ya_c00187{bottom:955.080000px;}
.y9_c00187{bottom:986.130000px;}
.y8_c00187{bottom:1017.180000px;}
.y7_c00187{bottom:1048.230000px;}
.y6_c00187{bottom:1079.280000px;}
.y5_c00187{bottom:1110.330000px;}
.y4_c00187{bottom:1131.030000px;}
.y3_c00187{bottom:1150.915500px;}
.y2_c00187{bottom:1166.400000px;}
.y1_c00187{bottom:1197.450000px;}
.h2_c00187{height:52.998047px;}
.h3_c00187{height:70.664062px;}
.h4_c00187{height:75.093750px;}
.h0_c00187{height:1262.880000px;}
.h1_c00187{height:1263.000000px;}
.w0_c00187{width:893.070000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x2_c00187{left:127.620000px;}
.x3_c00187{left:154.620000px;}
.x4_c00187{left:181.620000px;}
.x1_c00187{left:446.580000px;}
@media print{
.v1_c00187{vertical-align:-55.056000pt;}
.v0_c00187{vertical-align:0.000000pt;}
.lsc_c00187{letter-spacing:-0.384000pt;}
.lsd_c00187{letter-spacing:-0.320000pt;}
.lsb_c00187{letter-spacing:-0.256000pt;}
.lsa_c00187{letter-spacing:0.000000pt;}
.ls3_c00187{letter-spacing:0.064000pt;}
.ls7_c00187{letter-spacing:0.128000pt;}
.ls8_c00187{letter-spacing:0.640000pt;}
.ls2_c00187{letter-spacing:2.880000pt;}
.ls9_c00187{letter-spacing:2.886400pt;}
.ls1_c00187{letter-spacing:2.892800pt;}
.ls5_c00187{letter-spacing:5.120000pt;}
.ls6_c00187{letter-spacing:8.320000pt;}
.ls4_c00187{letter-spacing:27.328000pt;}
.ls0_c00187{letter-spacing:284.016000pt;}
.ws3_c00187{word-spacing:-16.128000pt;}
.ws0_c00187{word-spacing:-16.064000pt;}
.ws2_c00187{word-spacing:-16.000000pt;}
.ws4_c00187{word-spacing:-15.680000pt;}
.ws1_c00187{word-spacing:-15.616000pt;}
.wsa_c00187{word-spacing:-0.384000pt;}
.wsb_c00187{word-spacing:-0.320000pt;}
.ws6_c00187{word-spacing:-0.144000pt;}
.ws27_c00187{word-spacing:-0.128000pt;}
.ws9_c00187{word-spacing:-0.064000pt;}
.ws5_c00187{word-spacing:0.000000pt;}
.ws13_c00187{word-spacing:0.256000pt;}
.ws12_c00187{word-spacing:0.320000pt;}
.ws14_c00187{word-spacing:0.576000pt;}
.ws15_c00187{word-spacing:0.640000pt;}
.ws2b_c00187{word-spacing:0.896000pt;}
.ws2c_c00187{word-spacing:0.960000pt;}
.ws32_c00187{word-spacing:1.216000pt;}
.ws20_c00187{word-spacing:1.600000pt;}
.ws1a_c00187{word-spacing:1.856000pt;}
.ws1b_c00187{word-spacing:1.920000pt;}
.ws1e_c00187{word-spacing:2.176000pt;}
.ws1f_c00187{word-spacing:2.240000pt;}
.wsd_c00187{word-spacing:2.496000pt;}
.wsf_c00187{word-spacing:2.816000pt;}
.ws2d_c00187{word-spacing:2.880000pt;}
.wse_c00187{word-spacing:3.136000pt;}
.ws1d_c00187{word-spacing:3.456000pt;}
.ws23_c00187{word-spacing:4.160000pt;}
.ws22_c00187{word-spacing:4.480000pt;}
.wsc_c00187{word-spacing:4.800000pt;}
.ws10_c00187{word-spacing:5.056000pt;}
.ws11_c00187{word-spacing:5.120000pt;}
.ws25_c00187{word-spacing:7.936000pt;}
.ws26_c00187{word-spacing:8.000000pt;}
.ws17_c00187{word-spacing:8.192000pt;}
.ws19_c00187{word-spacing:8.256000pt;}
.ws18_c00187{word-spacing:8.320000pt;}
.ws30_c00187{word-spacing:8.576000pt;}
.ws31_c00187{word-spacing:8.640000pt;}
.ws16_c00187{word-spacing:9.600000pt;}
.ws7_c00187{word-spacing:10.496000pt;}
.ws8_c00187{word-spacing:10.560000pt;}
.ws24_c00187{word-spacing:12.736000pt;}
.ws1c_c00187{word-spacing:13.120000pt;}
.ws28_c00187{word-spacing:15.040000pt;}
.ws29_c00187{word-spacing:18.496000pt;}
.ws2a_c00187{word-spacing:18.560000pt;}
.ws21_c00187{word-spacing:20.480000pt;}
.ws2f_c00187{word-spacing:23.616000pt;}
.ws2e_c00187{word-spacing:23.680000pt;}
._0_c00187{margin-left:-0.902400pt;}
._2_c00187{width:0.953600pt;}
._4_c00187{width:1.932800pt;}
._8_c00187{width:3.238400pt;}
._6_c00187{width:4.352000pt;}
._3_c00187{width:5.260800pt;}
._7_c00187{width:8.134400pt;}
._1_c00187{width:10.118400pt;}
._5_c00187{width:13.184000pt;}
._9_c00187{width:23.680000pt;}
.fs0_c00187{font-size:48.000000pt;}
.fs1_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y25_c00187{bottom:50.880000pt;}
.y24_c00187{bottom:131.440000pt;}
.y23_c00187{bottom:159.040000pt;}
.y22_c00187{bottom:186.640000pt;}
.y21_c00187{bottom:214.240000pt;}
.y20_c00187{bottom:241.840000pt;}
.y1f_c00187{bottom:269.440000pt;}
.y1e_c00187{bottom:297.040000pt;}
.y1d_c00187{bottom:324.640000pt;}
.y1c_c00187{bottom:352.240000pt;}
.y1b_c00187{bottom:379.840000pt;}
.y1a_c00187{bottom:407.440000pt;}
.y19_c00187{bottom:435.040000pt;}
.y18_c00187{bottom:462.640000pt;}
.y17_c00187{bottom:490.240000pt;}
.y16_c00187{bottom:517.840000pt;}
.y15_c00187{bottom:545.440000pt;}
.y14_c00187{bottom:573.040000pt;}
.y13_c00187{bottom:600.640000pt;}
.y12_c00187{bottom:628.240000pt;}
.y11_c00187{bottom:655.840000pt;}
.y10_c00187{bottom:683.440000pt;}
.yf_c00187{bottom:711.040000pt;}
.ye_c00187{bottom:738.640000pt;}
.yd_c00187{bottom:766.160000pt;}
.yc_c00187{bottom:793.760000pt;}
.yb_c00187{bottom:821.360000pt;}
.ya_c00187{bottom:848.960000pt;}
.y9_c00187{bottom:876.560000pt;}
.y8_c00187{bottom:904.160000pt;}
.y7_c00187{bottom:931.760000pt;}
.y6_c00187{bottom:959.360000pt;}
.y5_c00187{bottom:986.960000pt;}
.y4_c00187{bottom:1005.360000pt;}
.y3_c00187{bottom:1023.036000pt;}
.y2_c00187{bottom:1036.800000pt;}
.y1_c00187{bottom:1064.400000pt;}
.h2_c00187{height:47.109375pt;}
.h3_c00187{height:62.812500pt;}
.h4_c00187{height:66.750000pt;}
.h0_c00187{height:1122.560000pt;}
.h1_c00187{height:1122.666667pt;}
.w0_c00187{width:793.840000pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x2_c00187{left:113.440000pt;}
.x3_c00187{left:137.440000pt;}
.x4_c00187{left:161.440000pt;}
.x1_c00187{left:396.960000pt;}
}





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

.ir_c00188:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00188;src:url('chunks/assets/font_922e94fd339876294b37e340.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_2c15a06d17c8e45ccb37b5cd.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_1dd457e1d4e6e0aa0147c7de.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00188{vertical-align:-103.320000px;}
.v2_c00188{vertical-align:-10.440000px;}
.v0_c00188{vertical-align:0.000000px;}
.v3_c00188{vertical-align:36.360000px;}
.v4_c00188{vertical-align:78.480000px;}
.ls13_c00188{letter-spacing:-0.360000px;}
.ls14_c00188{letter-spacing:-0.216000px;}
.ls16_c00188{letter-spacing:-0.144000px;}
.ls12_c00188{letter-spacing:-0.108000px;}
.ls18_c00188{letter-spacing:-0.102240px;}
.ls15_c00188{letter-spacing:-0.072000px;}
.ls11_c00188{letter-spacing:0.000000px;}
.ls1_c00188{letter-spacing:0.072000px;}
.ls17_c00188{letter-spacing:0.102240px;}
.ls6_c00188{letter-spacing:0.144000px;}
.ls8_c00188{letter-spacing:3.600000px;}
.ls4_c00188{letter-spacing:4.320000px;}
.ls3_c00188{letter-spacing:4.334400px;}
.ls5_c00188{letter-spacing:5.760000px;}
.ls7_c00188{letter-spacing:7.920000px;}
.ls10_c00188{letter-spacing:15.696000px;}
.lsd_c00188{letter-spacing:16.056000px;}
.lsc_c00188{letter-spacing:16.272000px;}
.ls2_c00188{letter-spacing:17.640000px;}
.lsf_c00188{letter-spacing:17.762040px;}
.ls0_c00188{letter-spacing:18.000000px;}
.lse_c00188{letter-spacing:18.360000px;}
.lsb_c00188{letter-spacing:19.656000px;}
.lsa_c00188{letter-spacing:22.082040px;}
.ls9_c00188{letter-spacing:639.000000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00188{word-spacing:-51.222240px;}
.ws5_c00188{word-spacing:-51.120000px;}
.ws7_c00188{word-spacing:-51.017760px;}
.ws2_c00188{word-spacing:-18.144000px;}
.ws1_c00188{word-spacing:-18.072000px;}
.ws3_c00188{word-spacing:-18.000000px;}
.ws4_c00188{word-spacing:-17.856000px;}
.ws0_c00188{word-spacing:-17.640000px;}
.wsc_c00188{word-spacing:-0.432000px;}
.ws14_c00188{word-spacing:-0.072000px;}
.ws8_c00188{word-spacing:0.000000px;}
.wsa_c00188{word-spacing:0.162000px;}
.ws9_c00188{word-spacing:0.270000px;}
.ws26_c00188{word-spacing:0.360000px;}
.ws1f_c00188{word-spacing:0.720000px;}
.ws1d_c00188{word-spacing:1.008000px;}
.ws1e_c00188{word-spacing:1.080000px;}
.ws21_c00188{word-spacing:2.808000px;}
.wsb_c00188{word-spacing:2.880000px;}
.ws31_c00188{word-spacing:3.528000px;}
.ws2e_c00188{word-spacing:3.600000px;}
.ws16_c00188{word-spacing:4.248000px;}
.ws17_c00188{word-spacing:4.320000px;}
.ws1b_c00188{word-spacing:4.968000px;}
.ws1a_c00188{word-spacing:5.400000px;}
.ws18_c00188{word-spacing:5.688000px;}
.ws19_c00188{word-spacing:5.760000px;}
.ws2b_c00188{word-spacing:7.560000px;}
.ws2c_c00188{word-spacing:7.848000px;}
.ws2d_c00188{word-spacing:7.920000px;}
.ws13_c00188{word-spacing:8.568000px;}
.ws12_c00188{word-spacing:8.640000px;}
.ws15_c00188{word-spacing:9.000000px;}
.ws33_c00188{word-spacing:11.088000px;}
.ws34_c00188{word-spacing:11.160000px;}
.ws29_c00188{word-spacing:11.448000px;}
.ws2a_c00188{word-spacing:11.520000px;}
.ws28_c00188{word-spacing:11.880000px;}
.ws27_c00188{word-spacing:11.952000px;}
.ws25_c00188{word-spacing:12.600000px;}
.ws30_c00188{word-spacing:13.896000px;}
.ws2f_c00188{word-spacing:14.040000px;}
.ws22_c00188{word-spacing:15.768000px;}
.ws23_c00188{word-spacing:15.840000px;}
.ws11_c00188{word-spacing:17.568000px;}
.wsf_c00188{word-spacing:17.856000px;}
.wse_c00188{word-spacing:17.928000px;}
.wsd_c00188{word-spacing:18.000000px;}
.ws10_c00188{word-spacing:18.216000px;}
.ws32_c00188{word-spacing:19.368000px;}
.ws1c_c00188{word-spacing:19.440000px;}
.ws20_c00188{word-spacing:21.168000px;}
.ws24_c00188{word-spacing:31.320000px;}
._8_c00188{margin-left:-2.664000px;}
._1_c00188{margin-left:-1.058400px;}
._0_c00188{width:1.220400px;}
._5_c00188{width:3.024000px;}
._4_c00188{width:4.615200px;}
._3_c00188{width:8.568000px;}
._7_c00188{width:11.088000px;}
._6_c00188{width:12.384000px;}
._2_c00188{width:16.682400px;}
.fc0_c00188{color:rgb(0,0,0);}
.fs3_c00188{font-size:42.120000px;}
.fs2_c00188{font-size:51.120000px;}
.fs0_c00188{font-size:54.000000px;}
.fs1_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y26_c00188{bottom:57.240000px;}
.y25_c00188{bottom:134.550000px;}
.y24_c00188{bottom:165.600000px;}
.y23_c00188{bottom:196.650000px;}
.y22_c00188{bottom:227.700000px;}
.y21_c00188{bottom:258.750000px;}
.y20_c00188{bottom:289.800000px;}
.y1f_c00188{bottom:319.770000px;}
.y1e_c00188{bottom:365.220000px;}
.y1d_c00188{bottom:396.270000px;}
.y1c_c00188{bottom:427.320000px;}
.y1b_c00188{bottom:458.370000px;}
.y1a_c00188{bottom:489.420000px;}
.y19_c00188{bottom:520.470000px;}
.y18_c00188{bottom:551.520000px;}
.y17_c00188{bottom:582.570000px;}
.y16_c00188{bottom:613.620000px;}
.y15_c00188{bottom:644.670000px;}
.y14_c00188{bottom:675.720000px;}
.y13_c00188{bottom:706.770000px;}
.y12_c00188{bottom:737.820000px;}
.y11_c00188{bottom:768.870000px;}
.y10_c00188{bottom:799.920000px;}
.yf_c00188{bottom:830.970000px;}
.ye_c00188{bottom:861.930000px;}
.yd_c00188{bottom:892.980000px;}
.yc_c00188{bottom:924.030000px;}
.yb_c00188{bottom:955.080000px;}
.ya_c00188{bottom:986.130000px;}
.y9_c00188{bottom:1017.180000px;}
.y8_c00188{bottom:1048.230000px;}
.y7_c00188{bottom:1079.280000px;}
.y6_c00188{bottom:1110.330000px;}
.y5_c00188{bottom:1131.030000px;}
.y4_c00188{bottom:1150.920000px;}
.y3_c00188{bottom:1166.404500px;}
.y2_c00188{bottom:1181.970000px;}
.y1_c00188{bottom:1197.450000px;}
.h3_c00188{height:52.971680px;}
.h2_c00188{height:52.998047px;}
.h4_c00188{height:70.664062px;}
.h6_c00188{height:179.902969px;}
.h5_c00188{height:180.395508px;}
.h0_c00188{height:1262.880000px;}
.h1_c00188{height:1263.000000px;}
.w0_c00188{width:893.070000px;}
.w1_c00188{width:893.250000px;}
.x0_c00188{left:0.000000px;}
.x3_c00188{left:127.620000px;}
.x4_c00188{left:349.650000px;}
.x2_c00188{left:425.160000px;}
.x1_c00188{left:446.580000px;}
.x5_c00188{left:472.140000px;}
.x6_c00188{left:738.540000px;}
@media print{
.v1_c00188{vertical-align:-91.840000pt;}
.v2_c00188{vertical-align:-9.280000pt;}
.v0_c00188{vertical-align:0.000000pt;}
.v3_c00188{vertical-align:32.320000pt;}
.v4_c00188{vertical-align:69.760000pt;}
.ls13_c00188{letter-spacing:-0.320000pt;}
.ls14_c00188{letter-spacing:-0.192000pt;}
.ls16_c00188{letter-spacing:-0.128000pt;}
.ls12_c00188{letter-spacing:-0.096000pt;}
.ls18_c00188{letter-spacing:-0.090880pt;}
.ls15_c00188{letter-spacing:-0.064000pt;}
.ls11_c00188{letter-spacing:0.000000pt;}
.ls1_c00188{letter-spacing:0.064000pt;}
.ls17_c00188{letter-spacing:0.090880pt;}
.ls6_c00188{letter-spacing:0.128000pt;}
.ls8_c00188{letter-spacing:3.200000pt;}
.ls4_c00188{letter-spacing:3.840000pt;}
.ls3_c00188{letter-spacing:3.852800pt;}
.ls5_c00188{letter-spacing:5.120000pt;}
.ls7_c00188{letter-spacing:7.040000pt;}
.ls10_c00188{letter-spacing:13.952000pt;}
.lsd_c00188{letter-spacing:14.272000pt;}
.lsc_c00188{letter-spacing:14.464000pt;}
.ls2_c00188{letter-spacing:15.680000pt;}
.lsf_c00188{letter-spacing:15.788480pt;}
.ls0_c00188{letter-spacing:16.000000pt;}
.lse_c00188{letter-spacing:16.320000pt;}
.lsb_c00188{letter-spacing:17.472000pt;}
.lsa_c00188{letter-spacing:19.628480pt;}
.ls9_c00188{letter-spacing:568.000000pt;}
.ws6_c00188{word-spacing:-45.530880pt;}
.ws5_c00188{word-spacing:-45.440000pt;}
.ws7_c00188{word-spacing:-45.349120pt;}
.ws2_c00188{word-spacing:-16.128000pt;}
.ws1_c00188{word-spacing:-16.064000pt;}
.ws3_c00188{word-spacing:-16.000000pt;}
.ws4_c00188{word-spacing:-15.872000pt;}
.ws0_c00188{word-spacing:-15.680000pt;}
.wsc_c00188{word-spacing:-0.384000pt;}
.ws14_c00188{word-spacing:-0.064000pt;}
.ws8_c00188{word-spacing:0.000000pt;}
.wsa_c00188{word-spacing:0.144000pt;}
.ws9_c00188{word-spacing:0.240000pt;}
.ws26_c00188{word-spacing:0.320000pt;}
.ws1f_c00188{word-spacing:0.640000pt;}
.ws1d_c00188{word-spacing:0.896000pt;}
.ws1e_c00188{word-spacing:0.960000pt;}
.ws21_c00188{word-spacing:2.496000pt;}
.wsb_c00188{word-spacing:2.560000pt;}
.ws31_c00188{word-spacing:3.136000pt;}
.ws2e_c00188{word-spacing:3.200000pt;}
.ws16_c00188{word-spacing:3.776000pt;}
.ws17_c00188{word-spacing:3.840000pt;}
.ws1b_c00188{word-spacing:4.416000pt;}
.ws1a_c00188{word-spacing:4.800000pt;}
.ws18_c00188{word-spacing:5.056000pt;}
.ws19_c00188{word-spacing:5.120000pt;}
.ws2b_c00188{word-spacing:6.720000pt;}
.ws2c_c00188{word-spacing:6.976000pt;}
.ws2d_c00188{word-spacing:7.040000pt;}
.ws13_c00188{word-spacing:7.616000pt;}
.ws12_c00188{word-spacing:7.680000pt;}
.ws15_c00188{word-spacing:8.000000pt;}
.ws33_c00188{word-spacing:9.856000pt;}
.ws34_c00188{word-spacing:9.920000pt;}
.ws29_c00188{word-spacing:10.176000pt;}
.ws2a_c00188{word-spacing:10.240000pt;}
.ws28_c00188{word-spacing:10.560000pt;}
.ws27_c00188{word-spacing:10.624000pt;}
.ws25_c00188{word-spacing:11.200000pt;}
.ws30_c00188{word-spacing:12.352000pt;}
.ws2f_c00188{word-spacing:12.480000pt;}
.ws22_c00188{word-spacing:14.016000pt;}
.ws23_c00188{word-spacing:14.080000pt;}
.ws11_c00188{word-spacing:15.616000pt;}
.wsf_c00188{word-spacing:15.872000pt;}
.wse_c00188{word-spacing:15.936000pt;}
.wsd_c00188{word-spacing:16.000000pt;}
.ws10_c00188{word-spacing:16.192000pt;}
.ws32_c00188{word-spacing:17.216000pt;}
.ws1c_c00188{word-spacing:17.280000pt;}
.ws20_c00188{word-spacing:18.816000pt;}
.ws24_c00188{word-spacing:27.840000pt;}
._8_c00188{margin-left:-2.368000pt;}
._1_c00188{margin-left:-0.940800pt;}
._0_c00188{width:1.084800pt;}
._5_c00188{width:2.688000pt;}
._4_c00188{width:4.102400pt;}
._3_c00188{width:7.616000pt;}
._7_c00188{width:9.856000pt;}
._6_c00188{width:11.008000pt;}
._2_c00188{width:14.828800pt;}
.fs3_c00188{font-size:37.440000pt;}
.fs2_c00188{font-size:45.440000pt;}
.fs0_c00188{font-size:48.000000pt;}
.fs1_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y26_c00188{bottom:50.880000pt;}
.y25_c00188{bottom:119.600000pt;}
.y24_c00188{bottom:147.200000pt;}
.y23_c00188{bottom:174.800000pt;}
.y22_c00188{bottom:202.400000pt;}
.y21_c00188{bottom:230.000000pt;}
.y20_c00188{bottom:257.600000pt;}
.y1f_c00188{bottom:284.240000pt;}
.y1e_c00188{bottom:324.640000pt;}
.y1d_c00188{bottom:352.240000pt;}
.y1c_c00188{bottom:379.840000pt;}
.y1b_c00188{bottom:407.440000pt;}
.y1a_c00188{bottom:435.040000pt;}
.y19_c00188{bottom:462.640000pt;}
.y18_c00188{bottom:490.240000pt;}
.y17_c00188{bottom:517.840000pt;}
.y16_c00188{bottom:545.440000pt;}
.y15_c00188{bottom:573.040000pt;}
.y14_c00188{bottom:600.640000pt;}
.y13_c00188{bottom:628.240000pt;}
.y12_c00188{bottom:655.840000pt;}
.y11_c00188{bottom:683.440000pt;}
.y10_c00188{bottom:711.040000pt;}
.yf_c00188{bottom:738.640000pt;}
.ye_c00188{bottom:766.160000pt;}
.yd_c00188{bottom:793.760000pt;}
.yc_c00188{bottom:821.360000pt;}
.yb_c00188{bottom:848.960000pt;}
.ya_c00188{bottom:876.560000pt;}
.y9_c00188{bottom:904.160000pt;}
.y8_c00188{bottom:931.760000pt;}
.y7_c00188{bottom:959.360000pt;}
.y6_c00188{bottom:986.960000pt;}
.y5_c00188{bottom:1005.360000pt;}
.y4_c00188{bottom:1023.040000pt;}
.y3_c00188{bottom:1036.804000pt;}
.y2_c00188{bottom:1050.640000pt;}
.y1_c00188{bottom:1064.400000pt;}
.h3_c00188{height:47.085938pt;}
.h2_c00188{height:47.109375pt;}
.h4_c00188{height:62.812500pt;}
.h6_c00188{height:159.913750pt;}
.h5_c00188{height:160.351562pt;}
.h0_c00188{height:1122.560000pt;}
.h1_c00188{height:1122.666667pt;}
.w0_c00188{width:793.840000pt;}
.w1_c00188{width:794.000000pt;}
.x0_c00188{left:0.000000pt;}
.x3_c00188{left:113.440000pt;}
.x4_c00188{left:310.800000pt;}
.x2_c00188{left:377.920000pt;}
.x1_c00188{left:396.960000pt;}
.x5_c00188{left:419.680000pt;}
.x6_c00188{left:656.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_c00189 {
    display:none;
  }
  .loading-indicator_c00189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00189 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00189 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00189" -> "#page-container .classname_c00189")
 */
.pf_c00189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00189 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00189 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00189 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00189 {overflow:visible;}
  }
}
.c_c00189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00189 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00189:after { /* webkit #35443 */
  content: '';
}
.t_c00189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00189 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00189 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00189 { /* info for Javascript */
  display:none;
}
.l_c00189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00189:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00189;src:url('chunks/assets/font_c0376726f69c71f364029b4f.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_b6a3163fbd8da7d51783d602.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_30259dfb45adb7370989ecac.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00189{vertical-align:-61.938000px;}
.v7_c00189{vertical-align:-14.760000px;}
.v2_c00189{vertical-align:-10.800000px;}
.v0_c00189{vertical-align:0.000000px;}
.v6_c00189{vertical-align:14.760000px;}
.v4_c00189{vertical-align:21.600000px;}
.v9_c00189{vertical-align:31.680000px;}
.v3_c00189{vertical-align:36.360000px;}
.v8_c00189{vertical-align:42.120000px;}
.v5_c00189{vertical-align:78.496560px;}
.ls12_c00189{letter-spacing:-0.576000px;}
.ls14_c00189{letter-spacing:-0.153360px;}
.ls11_c00189{letter-spacing:-0.102240px;}
.ls13_c00189{letter-spacing:-0.072000px;}
.lsf_c00189{letter-spacing:-0.042120px;}
.lse_c00189{letter-spacing:0.000000px;}
.ls3_c00189{letter-spacing:0.072000px;}
.ls10_c00189{letter-spacing:0.102240px;}
.ls15_c00189{letter-spacing:0.144000px;}
.lsa_c00189{letter-spacing:2.037240px;}
.ls9_c00189{letter-spacing:2.520000px;}
.ls7_c00189{letter-spacing:3.960000px;}
.ls8_c00189{letter-spacing:4.320000px;}
.lsb_c00189{letter-spacing:15.840000px;}
.lsc_c00189{letter-spacing:15.912000px;}
.ls5_c00189{letter-spacing:16.056000px;}
.ls4_c00189{letter-spacing:18.717120px;}
.ls2_c00189{letter-spacing:20.016000px;}
.ls6_c00189{letter-spacing:21.572640px;}
.ls0_c00189{letter-spacing:319.518000px;}
.ls1_c00189{letter-spacing:816.480000px;}
.lsd_c00189{letter-spacing:839.970000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00189{word-spacing:-72.144000px;}
.ws7_c00189{word-spacing:-72.072000px;}
.ws3_c00189{word-spacing:-72.000000px;}
.ws1_c00189{word-spacing:-51.222240px;}
.ws0_c00189{word-spacing:-51.120000px;}
.ws4_c00189{word-spacing:-51.017760px;}
.ws8_c00189{word-spacing:-50.966640px;}
.ws5_c00189{word-spacing:-42.077880px;}
.ws2_c00189{word-spacing:-19.954800px;}
.ws6_c00189{word-spacing:-17.928000px;}
.wsb_c00189{word-spacing:-0.162000px;}
.wse_c00189{word-spacing:-0.072000px;}
.wsa_c00189{word-spacing:0.000000px;}
.wsc_c00189{word-spacing:0.042120px;}
.wsf_c00189{word-spacing:3.888000px;}
.ws10_c00189{word-spacing:3.960000px;}
.wsd_c00189{word-spacing:4.536000px;}
._0_c00189{margin-left:-1.052424px;}
._3_c00189{width:1.368000px;}
._2_c00189{width:2.689200px;}
._4_c00189{width:3.744000px;}
._1_c00189{width:18.177480px;}
._5_c00189{width:23.655600px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs3_c00189{font-size:42.120000px;}
.fs2_c00189{font-size:51.120000px;}
.fs0_c00189{font-size:54.000000px;}
.fs1_c00189{font-size:72.000000px;}
.fs4_c00189{font-size:96.120000px;}
.y0_c00189{bottom:0.000000px;}
.ya_c00189{bottom:57.240000px;}
.y9_c00189{bottom:988.830000px;}
.y8_c00189{bottom:997.920000px;}
.y7_c00189{bottom:1034.820000px;}
.y6_c00189{bottom:1065.870000px;}
.y5_c00189{bottom:1095.930000px;}
.y4_c00189{bottom:1131.030000px;}
.y3_c00189{bottom:1150.915500px;}
.y2_c00189{bottom:1166.400000px;}
.y1_c00189{bottom:1197.450000px;}
.h2_c00189{height:52.998047px;}
.h3_c00189{height:70.664062px;}
.h6_c00189{height:144.035508px;}
.h5_c00189{height:179.902969px;}
.h4_c00189{height:180.412068px;}
.h0_c00189{height:1262.880000px;}
.h1_c00189{height:1263.000000px;}
.w0_c00189{width:893.070000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.x2_c00189{left:127.620000px;}
.x5_c00189{left:317.700000px;}
.x3_c00189{left:336.060000px;}
.x6_c00189{left:424.440000px;}
.x1_c00189{left:446.580000px;}
.x4_c00189{left:472.140000px;}
@media print{
.v1_c00189{vertical-align:-55.056000pt;}
.v7_c00189{vertical-align:-13.120000pt;}
.v2_c00189{vertical-align:-9.600000pt;}
.v0_c00189{vertical-align:0.000000pt;}
.v6_c00189{vertical-align:13.120000pt;}
.v4_c00189{vertical-align:19.200000pt;}
.v9_c00189{vertical-align:28.160000pt;}
.v3_c00189{vertical-align:32.320000pt;}
.v8_c00189{vertical-align:37.440000pt;}
.v5_c00189{vertical-align:69.774720pt;}
.ls12_c00189{letter-spacing:-0.512000pt;}
.ls14_c00189{letter-spacing:-0.136320pt;}
.ls11_c00189{letter-spacing:-0.090880pt;}
.ls13_c00189{letter-spacing:-0.064000pt;}
.lsf_c00189{letter-spacing:-0.037440pt;}
.lse_c00189{letter-spacing:0.000000pt;}
.ls3_c00189{letter-spacing:0.064000pt;}
.ls10_c00189{letter-spacing:0.090880pt;}
.ls15_c00189{letter-spacing:0.128000pt;}
.lsa_c00189{letter-spacing:1.810880pt;}
.ls9_c00189{letter-spacing:2.240000pt;}
.ls7_c00189{letter-spacing:3.520000pt;}
.ls8_c00189{letter-spacing:3.840000pt;}
.lsb_c00189{letter-spacing:14.080000pt;}
.lsc_c00189{letter-spacing:14.144000pt;}
.ls5_c00189{letter-spacing:14.272000pt;}
.ls4_c00189{letter-spacing:16.637440pt;}
.ls2_c00189{letter-spacing:17.792000pt;}
.ls6_c00189{letter-spacing:19.175680pt;}
.ls0_c00189{letter-spacing:284.016000pt;}
.ls1_c00189{letter-spacing:725.760000pt;}
.lsd_c00189{letter-spacing:746.640000pt;}
.ws9_c00189{word-spacing:-64.128000pt;}
.ws7_c00189{word-spacing:-64.064000pt;}
.ws3_c00189{word-spacing:-64.000000pt;}
.ws1_c00189{word-spacing:-45.530880pt;}
.ws0_c00189{word-spacing:-45.440000pt;}
.ws4_c00189{word-spacing:-45.349120pt;}
.ws8_c00189{word-spacing:-45.303680pt;}
.ws5_c00189{word-spacing:-37.402560pt;}
.ws2_c00189{word-spacing:-17.737600pt;}
.ws6_c00189{word-spacing:-15.936000pt;}
.wsb_c00189{word-spacing:-0.144000pt;}
.wse_c00189{word-spacing:-0.064000pt;}
.wsa_c00189{word-spacing:0.000000pt;}
.wsc_c00189{word-spacing:0.037440pt;}
.wsf_c00189{word-spacing:3.456000pt;}
.ws10_c00189{word-spacing:3.520000pt;}
.wsd_c00189{word-spacing:4.032000pt;}
._0_c00189{margin-left:-0.935488pt;}
._3_c00189{width:1.216000pt;}
._2_c00189{width:2.390400pt;}
._4_c00189{width:3.328000pt;}
._1_c00189{width:16.157760pt;}
._5_c00189{width:21.027200pt;}
.fs3_c00189{font-size:37.440000pt;}
.fs2_c00189{font-size:45.440000pt;}
.fs0_c00189{font-size:48.000000pt;}
.fs1_c00189{font-size:64.000000pt;}
.fs4_c00189{font-size:85.440000pt;}
.y0_c00189{bottom:0.000000pt;}
.ya_c00189{bottom:50.880000pt;}
.y9_c00189{bottom:878.960000pt;}
.y8_c00189{bottom:887.040000pt;}
.y7_c00189{bottom:919.840000pt;}
.y6_c00189{bottom:947.440000pt;}
.y5_c00189{bottom:974.160000pt;}
.y4_c00189{bottom:1005.360000pt;}
.y3_c00189{bottom:1023.036000pt;}
.y2_c00189{bottom:1036.800000pt;}
.y1_c00189{bottom:1064.400000pt;}
.h2_c00189{height:47.109375pt;}
.h3_c00189{height:62.812500pt;}
.h6_c00189{height:128.031562pt;}
.h5_c00189{height:159.913750pt;}
.h4_c00189{height:160.366282pt;}
.h0_c00189{height:1122.560000pt;}
.h1_c00189{height:1122.666667pt;}
.w0_c00189{width:793.840000pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.x2_c00189{left:113.440000pt;}
.x5_c00189{left:282.400000pt;}
.x3_c00189{left:298.720000pt;}
.x6_c00189{left:377.280000pt;}
.x1_c00189{left:396.960000pt;}
.x4_c00189{left:419.680000pt;}
}





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

.ir_c00190:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00190;src:url('chunks/assets/font_58b10938dea4e0474a2baeab.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_a89f9e3e92ec0fdb66abf52d.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00190{vertical-align:-105.840000px;}
.v0_c00190{vertical-align:0.000000px;}
.ls6_c00190{letter-spacing:-0.576720px;}
.ls5_c00190{letter-spacing:-0.192240px;}
.ls8_c00190{letter-spacing:-0.144000px;}
.ls3_c00190{letter-spacing:-0.108000px;}
.ls9_c00190{letter-spacing:-0.072000px;}
.ls2_c00190{letter-spacing:0.000000px;}
.ls7_c00190{letter-spacing:0.072000px;}
.ls4_c00190{letter-spacing:0.144000px;}
.ls1_c00190{letter-spacing:0.192240px;}
.ls0_c00190{letter-spacing:1257.840000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00190{word-spacing:-24.030000px;}
.ws0_c00190{word-spacing:-23.837760px;}
.ws3_c00190{word-spacing:-18.072000px;}
.ws2_c00190{word-spacing:-17.856000px;}
.wsb_c00190{word-spacing:-0.480600px;}
.ws7_c00190{word-spacing:-0.144000px;}
.ws9_c00190{word-spacing:-0.096120px;}
.wsc_c00190{word-spacing:-0.072000px;}
.ws4_c00190{word-spacing:0.000000px;}
.wsd_c00190{word-spacing:0.072000px;}
.ws6_c00190{word-spacing:0.162000px;}
.ws5_c00190{word-spacing:0.270000px;}
.ws8_c00190{word-spacing:0.288360px;}
.wsa_c00190{word-spacing:0.576720px;}
._1_c00190{margin-left:-1.058400px;}
._0_c00190{width:1.220400px;}
.fc0_c00190{color:rgb(0,0,0);}
.fs0_c00190{font-size:54.000000px;}
.fs1_c00190{font-size:72.000000px;}
.fs2_c00190{font-size:96.120000px;}
.fs3_c00190{font-size:144.000000px;}
.y0_c00190{bottom:0.000000px;}
.y19_c00190{bottom:57.240000px;}
.y18_c00190{bottom:365.040000px;}
.y17_c00190{bottom:385.920000px;}
.y16_c00190{bottom:406.620000px;}
.y15_c00190{bottom:427.320000px;}
.y14_c00190{bottom:462.937860px;}
.y13_c00190{bottom:504.341550px;}
.y12_c00190{bottom:545.745240px;}
.y11_c00190{bottom:587.148930px;}
.y10_c00190{bottom:628.552620px;}
.yf_c00190{bottom:669.956310px;}
.ye_c00190{bottom:711.360000px;}
.yd_c00190{bottom:762.300000px;}
.yc_c00190{bottom:814.840290px;}
.yb_c00190{bottom:856.147860px;}
.ya_c00190{bottom:897.551550px;}
.y9_c00190{bottom:938.955240px;}
.y8_c00190{bottom:980.358930px;}
.y7_c00190{bottom:1021.762620px;}
.y6_c00190{bottom:1063.166310px;}
.y5_c00190{bottom:1131.030000px;}
.y4_c00190{bottom:1150.920000px;}
.y3_c00190{bottom:1166.404500px;}
.y2_c00190{bottom:1181.970000px;}
.y1_c00190{bottom:1197.450000px;}
.h3_c00190{height:52.971680px;}
.h2_c00190{height:52.998047px;}
.h4_c00190{height:70.664062px;}
.h7_c00190{height:72.562500px;}
.h5_c00190{height:96.870938px;}
.h6_c00190{height:145.125000px;}
.h0_c00190{height:1262.880000px;}
.h1_c00190{height:1263.000000px;}
.w0_c00190{width:893.070000px;}
.w1_c00190{width:893.250000px;}
.x0_c00190{left:0.000000px;}
.x3_c00190{left:127.620000px;}
.x5_c00190{left:134.910900px;}
.x9_c00190{left:150.390000px;}
.x6_c00190{left:152.837280px;}
.x8_c00190{left:164.700000px;}
.x7_c00190{left:259.914960px;}
.x4_c00190{left:350.550000px;}
.xa_c00190{left:411.840000px;}
.x2_c00190{left:425.160000px;}
.x1_c00190{left:446.580000px;}
.xb_c00190{left:738.540000px;}
@media print{
.v1_c00190{vertical-align:-94.080000pt;}
.v0_c00190{vertical-align:0.000000pt;}
.ls6_c00190{letter-spacing:-0.512640pt;}
.ls5_c00190{letter-spacing:-0.170880pt;}
.ls8_c00190{letter-spacing:-0.128000pt;}
.ls3_c00190{letter-spacing:-0.096000pt;}
.ls9_c00190{letter-spacing:-0.064000pt;}
.ls2_c00190{letter-spacing:0.000000pt;}
.ls7_c00190{letter-spacing:0.064000pt;}
.ls4_c00190{letter-spacing:0.128000pt;}
.ls1_c00190{letter-spacing:0.170880pt;}
.ls0_c00190{letter-spacing:1118.080000pt;}
.ws1_c00190{word-spacing:-21.360000pt;}
.ws0_c00190{word-spacing:-21.189120pt;}
.ws3_c00190{word-spacing:-16.064000pt;}
.ws2_c00190{word-spacing:-15.872000pt;}
.wsb_c00190{word-spacing:-0.427200pt;}
.ws7_c00190{word-spacing:-0.128000pt;}
.ws9_c00190{word-spacing:-0.085440pt;}
.wsc_c00190{word-spacing:-0.064000pt;}
.ws4_c00190{word-spacing:0.000000pt;}
.wsd_c00190{word-spacing:0.064000pt;}
.ws6_c00190{word-spacing:0.144000pt;}
.ws5_c00190{word-spacing:0.240000pt;}
.ws8_c00190{word-spacing:0.256320pt;}
.wsa_c00190{word-spacing:0.512640pt;}
._1_c00190{margin-left:-0.940800pt;}
._0_c00190{width:1.084800pt;}
.fs0_c00190{font-size:48.000000pt;}
.fs1_c00190{font-size:64.000000pt;}
.fs2_c00190{font-size:85.440000pt;}
.fs3_c00190{font-size:128.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y19_c00190{bottom:50.880000pt;}
.y18_c00190{bottom:324.480000pt;}
.y17_c00190{bottom:343.040000pt;}
.y16_c00190{bottom:361.440000pt;}
.y15_c00190{bottom:379.840000pt;}
.y14_c00190{bottom:411.500320pt;}
.y13_c00190{bottom:448.303600pt;}
.y12_c00190{bottom:485.106880pt;}
.y11_c00190{bottom:521.910160pt;}
.y10_c00190{bottom:558.713440pt;}
.yf_c00190{bottom:595.516720pt;}
.ye_c00190{bottom:632.320000pt;}
.yd_c00190{bottom:677.600000pt;}
.yc_c00190{bottom:724.302480pt;}
.yb_c00190{bottom:761.020320pt;}
.ya_c00190{bottom:797.823600pt;}
.y9_c00190{bottom:834.626880pt;}
.y8_c00190{bottom:871.430160pt;}
.y7_c00190{bottom:908.233440pt;}
.y6_c00190{bottom:945.036720pt;}
.y5_c00190{bottom:1005.360000pt;}
.y4_c00190{bottom:1023.040000pt;}
.y3_c00190{bottom:1036.804000pt;}
.y2_c00190{bottom:1050.640000pt;}
.y1_c00190{bottom:1064.400000pt;}
.h3_c00190{height:47.085938pt;}
.h2_c00190{height:47.109375pt;}
.h4_c00190{height:62.812500pt;}
.h7_c00190{height:64.500000pt;}
.h5_c00190{height:86.107500pt;}
.h6_c00190{height:129.000000pt;}
.h0_c00190{height:1122.560000pt;}
.h1_c00190{height:1122.666667pt;}
.w0_c00190{width:793.840000pt;}
.w1_c00190{width:794.000000pt;}
.x0_c00190{left:0.000000pt;}
.x3_c00190{left:113.440000pt;}
.x5_c00190{left:119.920800pt;}
.x9_c00190{left:133.680000pt;}
.x6_c00190{left:135.855360pt;}
.x8_c00190{left:146.400000pt;}
.x7_c00190{left:231.035520pt;}
.x4_c00190{left:311.600000pt;}
.xa_c00190{left:366.080000pt;}
.x2_c00190{left:377.920000pt;}
.x1_c00190{left:396.960000pt;}
.xb_c00190{left:656.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_c00191 {
    display:none;
  }
  .loading-indicator_c00191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00191 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00191 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00191" -> "#page-container .classname_c00191")
 */
.pf_c00191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00191 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00191 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00191 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00191 {overflow:visible;}
  }
}
.c_c00191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00191 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00191:after { /* webkit #35443 */
  content: '';
}
.t_c00191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00191 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00191 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00191 { /* info for Javascript */
  display:none;
}
.l_c00191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00191:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_a69b99373d8fcd38831780aa.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_4e9b8588fda89d5fc8519407.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00191{vertical-align:-61.938000px;}
.v0_c00191{vertical-align:0.000000px;}
.lse_c00191{letter-spacing:-0.360000px;}
.ls10_c00191{letter-spacing:-0.288000px;}
.lsd_c00191{letter-spacing:-0.072000px;}
.lsc_c00191{letter-spacing:0.000000px;}
.ls4_c00191{letter-spacing:0.072000px;}
.ls2_c00191{letter-spacing:0.079200px;}
.lsf_c00191{letter-spacing:0.144000px;}
.ls9_c00191{letter-spacing:2.520000px;}
.lsb_c00191{letter-spacing:3.600000px;}
.ls1_c00191{letter-spacing:12.960000px;}
.ls7_c00191{letter-spacing:15.847200px;}
.ls8_c00191{letter-spacing:16.200000px;}
.ls3_c00191{letter-spacing:19.800000px;}
.lsa_c00191{letter-spacing:20.520000px;}
.ls6_c00191{letter-spacing:24.840000px;}
.ls5_c00191{letter-spacing:25.560000px;}
.ls0_c00191{letter-spacing:319.518000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00191{word-spacing:-18.072000px;}
.ws0_c00191{word-spacing:-18.000000px;}
.ws3_c00191{word-spacing:-17.712000px;}
.ws2_c00191{word-spacing:-17.640000px;}
.wsb_c00191{word-spacing:-0.288000px;}
.ws5_c00191{word-spacing:-0.162000px;}
.ws1e_c00191{word-spacing:-0.072000px;}
.ws4_c00191{word-spacing:0.000000px;}
.ws8_c00191{word-spacing:0.072000px;}
.wsa_c00191{word-spacing:0.360000px;}
.ws12_c00191{word-spacing:0.648000px;}
.ws13_c00191{word-spacing:0.720000px;}
.ws19_c00191{word-spacing:1.008000px;}
.ws1a_c00191{word-spacing:1.080000px;}
.ws32_c00191{word-spacing:1.800000px;}
.wse_c00191{word-spacing:2.088000px;}
.wsd_c00191{word-spacing:2.160000px;}
.ws27_c00191{word-spacing:2.448000px;}
.ws28_c00191{word-spacing:2.520000px;}
.ws26_c00191{word-spacing:2.880000px;}
.ws25_c00191{word-spacing:3.240000px;}
.ws2e_c00191{word-spacing:3.528000px;}
.ws2f_c00191{word-spacing:3.600000px;}
.ws14_c00191{word-spacing:8.136000px;}
.ws15_c00191{word-spacing:8.280000px;}
.ws17_c00191{word-spacing:12.528000px;}
.ws18_c00191{word-spacing:12.600000px;}
.ws23_c00191{word-spacing:12.816000px;}
.ws7_c00191{word-spacing:12.888000px;}
.ws9_c00191{word-spacing:12.960000px;}
.ws6_c00191{word-spacing:13.032000px;}
.ws1d_c00191{word-spacing:13.320000px;}
.ws2a_c00191{word-spacing:14.040000px;}
.ws2b_c00191{word-spacing:14.328000px;}
.ws2c_c00191{word-spacing:14.400000px;}
.ws29_c00191{word-spacing:15.048000px;}
.wsc_c00191{word-spacing:15.768000px;}
.ws16_c00191{word-spacing:15.840000px;}
.ws24_c00191{word-spacing:16.128000px;}
.ws10_c00191{word-spacing:19.440000px;}
.ws11_c00191{word-spacing:19.656000px;}
.wsf_c00191{word-spacing:19.728000px;}
.ws2d_c00191{word-spacing:20.448000px;}
.ws21_c00191{word-spacing:20.520000px;}
.ws22_c00191{word-spacing:23.040000px;}
.ws30_c00191{word-spacing:23.688000px;}
.ws31_c00191{word-spacing:23.760000px;}
.ws20_c00191{word-spacing:24.768000px;}
.ws1f_c00191{word-spacing:24.840000px;}
.ws1c_c00191{word-spacing:25.488000px;}
.ws1b_c00191{word-spacing:25.560000px;}
._2_c00191{margin-left:-1.303200px;}
._1_c00191{width:1.288800px;}
._4_c00191{width:3.240000px;}
._0_c00191{width:12.960000px;}
._5_c00191{width:15.271200px;}
._3_c00191{width:19.944000px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs0_c00191{font-size:54.000000px;}
.fs1_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.y26_c00191{bottom:57.240000px;}
.y25_c00191{bottom:116.820000px;}
.y24_c00191{bottom:147.870000px;}
.y23_c00191{bottom:178.920000px;}
.y22_c00191{bottom:209.970000px;}
.y21_c00191{bottom:241.020000px;}
.y20_c00191{bottom:272.070000px;}
.y1f_c00191{bottom:303.120000px;}
.y1e_c00191{bottom:334.170000px;}
.y1d_c00191{bottom:365.220000px;}
.y1c_c00191{bottom:396.270000px;}
.y1b_c00191{bottom:427.320000px;}
.y1a_c00191{bottom:458.370000px;}
.y19_c00191{bottom:489.420000px;}
.y18_c00191{bottom:520.470000px;}
.y17_c00191{bottom:551.520000px;}
.y16_c00191{bottom:582.570000px;}
.y15_c00191{bottom:613.620000px;}
.y14_c00191{bottom:644.670000px;}
.y13_c00191{bottom:675.720000px;}
.y12_c00191{bottom:706.770000px;}
.y11_c00191{bottom:737.820000px;}
.y10_c00191{bottom:768.870000px;}
.yf_c00191{bottom:799.920000px;}
.ye_c00191{bottom:830.970000px;}
.yd_c00191{bottom:861.930000px;}
.yc_c00191{bottom:892.980000px;}
.yb_c00191{bottom:924.030000px;}
.ya_c00191{bottom:955.080000px;}
.y9_c00191{bottom:986.130000px;}
.y8_c00191{bottom:1017.180000px;}
.y7_c00191{bottom:1048.050000px;}
.y6_c00191{bottom:1079.100000px;}
.y5_c00191{bottom:1110.150000px;}
.y4_c00191{bottom:1131.030000px;}
.y3_c00191{bottom:1150.915500px;}
.y2_c00191{bottom:1166.400000px;}
.y1_c00191{bottom:1197.450000px;}
.h2_c00191{height:52.998047px;}
.h3_c00191{height:70.664062px;}
.h4_c00191{height:72.562500px;}
.h0_c00191{height:1262.880000px;}
.h1_c00191{height:1263.000000px;}
.w0_c00191{width:893.070000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x2_c00191{left:127.620000px;}
.x1_c00191{left:446.580000px;}
@media print{
.v1_c00191{vertical-align:-55.056000pt;}
.v0_c00191{vertical-align:0.000000pt;}
.lse_c00191{letter-spacing:-0.320000pt;}
.ls10_c00191{letter-spacing:-0.256000pt;}
.lsd_c00191{letter-spacing:-0.064000pt;}
.lsc_c00191{letter-spacing:0.000000pt;}
.ls4_c00191{letter-spacing:0.064000pt;}
.ls2_c00191{letter-spacing:0.070400pt;}
.lsf_c00191{letter-spacing:0.128000pt;}
.ls9_c00191{letter-spacing:2.240000pt;}
.lsb_c00191{letter-spacing:3.200000pt;}
.ls1_c00191{letter-spacing:11.520000pt;}
.ls7_c00191{letter-spacing:14.086400pt;}
.ls8_c00191{letter-spacing:14.400000pt;}
.ls3_c00191{letter-spacing:17.600000pt;}
.lsa_c00191{letter-spacing:18.240000pt;}
.ls6_c00191{letter-spacing:22.080000pt;}
.ls5_c00191{letter-spacing:22.720000pt;}
.ls0_c00191{letter-spacing:284.016000pt;}
.ws1_c00191{word-spacing:-16.064000pt;}
.ws0_c00191{word-spacing:-16.000000pt;}
.ws3_c00191{word-spacing:-15.744000pt;}
.ws2_c00191{word-spacing:-15.680000pt;}
.wsb_c00191{word-spacing:-0.256000pt;}
.ws5_c00191{word-spacing:-0.144000pt;}
.ws1e_c00191{word-spacing:-0.064000pt;}
.ws4_c00191{word-spacing:0.000000pt;}
.ws8_c00191{word-spacing:0.064000pt;}
.wsa_c00191{word-spacing:0.320000pt;}
.ws12_c00191{word-spacing:0.576000pt;}
.ws13_c00191{word-spacing:0.640000pt;}
.ws19_c00191{word-spacing:0.896000pt;}
.ws1a_c00191{word-spacing:0.960000pt;}
.ws32_c00191{word-spacing:1.600000pt;}
.wse_c00191{word-spacing:1.856000pt;}
.wsd_c00191{word-spacing:1.920000pt;}
.ws27_c00191{word-spacing:2.176000pt;}
.ws28_c00191{word-spacing:2.240000pt;}
.ws26_c00191{word-spacing:2.560000pt;}
.ws25_c00191{word-spacing:2.880000pt;}
.ws2e_c00191{word-spacing:3.136000pt;}
.ws2f_c00191{word-spacing:3.200000pt;}
.ws14_c00191{word-spacing:7.232000pt;}
.ws15_c00191{word-spacing:7.360000pt;}
.ws17_c00191{word-spacing:11.136000pt;}
.ws18_c00191{word-spacing:11.200000pt;}
.ws23_c00191{word-spacing:11.392000pt;}
.ws7_c00191{word-spacing:11.456000pt;}
.ws9_c00191{word-spacing:11.520000pt;}
.ws6_c00191{word-spacing:11.584000pt;}
.ws1d_c00191{word-spacing:11.840000pt;}
.ws2a_c00191{word-spacing:12.480000pt;}
.ws2b_c00191{word-spacing:12.736000pt;}
.ws2c_c00191{word-spacing:12.800000pt;}
.ws29_c00191{word-spacing:13.376000pt;}
.wsc_c00191{word-spacing:14.016000pt;}
.ws16_c00191{word-spacing:14.080000pt;}
.ws24_c00191{word-spacing:14.336000pt;}
.ws10_c00191{word-spacing:17.280000pt;}
.ws11_c00191{word-spacing:17.472000pt;}
.wsf_c00191{word-spacing:17.536000pt;}
.ws2d_c00191{word-spacing:18.176000pt;}
.ws21_c00191{word-spacing:18.240000pt;}
.ws22_c00191{word-spacing:20.480000pt;}
.ws30_c00191{word-spacing:21.056000pt;}
.ws31_c00191{word-spacing:21.120000pt;}
.ws20_c00191{word-spacing:22.016000pt;}
.ws1f_c00191{word-spacing:22.080000pt;}
.ws1c_c00191{word-spacing:22.656000pt;}
.ws1b_c00191{word-spacing:22.720000pt;}
._2_c00191{margin-left:-1.158400pt;}
._1_c00191{width:1.145600pt;}
._4_c00191{width:2.880000pt;}
._0_c00191{width:11.520000pt;}
._5_c00191{width:13.574400pt;}
._3_c00191{width:17.728000pt;}
.fs0_c00191{font-size:48.000000pt;}
.fs1_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y26_c00191{bottom:50.880000pt;}
.y25_c00191{bottom:103.840000pt;}
.y24_c00191{bottom:131.440000pt;}
.y23_c00191{bottom:159.040000pt;}
.y22_c00191{bottom:186.640000pt;}
.y21_c00191{bottom:214.240000pt;}
.y20_c00191{bottom:241.840000pt;}
.y1f_c00191{bottom:269.440000pt;}
.y1e_c00191{bottom:297.040000pt;}
.y1d_c00191{bottom:324.640000pt;}
.y1c_c00191{bottom:352.240000pt;}
.y1b_c00191{bottom:379.840000pt;}
.y1a_c00191{bottom:407.440000pt;}
.y19_c00191{bottom:435.040000pt;}
.y18_c00191{bottom:462.640000pt;}
.y17_c00191{bottom:490.240000pt;}
.y16_c00191{bottom:517.840000pt;}
.y15_c00191{bottom:545.440000pt;}
.y14_c00191{bottom:573.040000pt;}
.y13_c00191{bottom:600.640000pt;}
.y12_c00191{bottom:628.240000pt;}
.y11_c00191{bottom:655.840000pt;}
.y10_c00191{bottom:683.440000pt;}
.yf_c00191{bottom:711.040000pt;}
.ye_c00191{bottom:738.640000pt;}
.yd_c00191{bottom:766.160000pt;}
.yc_c00191{bottom:793.760000pt;}
.yb_c00191{bottom:821.360000pt;}
.ya_c00191{bottom:848.960000pt;}
.y9_c00191{bottom:876.560000pt;}
.y8_c00191{bottom:904.160000pt;}
.y7_c00191{bottom:931.600000pt;}
.y6_c00191{bottom:959.200000pt;}
.y5_c00191{bottom:986.800000pt;}
.y4_c00191{bottom:1005.360000pt;}
.y3_c00191{bottom:1023.036000pt;}
.y2_c00191{bottom:1036.800000pt;}
.y1_c00191{bottom:1064.400000pt;}
.h2_c00191{height:47.109375pt;}
.h3_c00191{height:62.812500pt;}
.h4_c00191{height:64.500000pt;}
.h0_c00191{height:1122.560000pt;}
.h1_c00191{height:1122.666667pt;}
.w0_c00191{width:793.840000pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x2_c00191{left:113.440000pt;}
.x1_c00191{left:396.960000pt;}
}





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

.ir_c00192:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00192;src:url('chunks/assets/font_c8bcf4e9b3e5e3ef9e817b8b.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00192{vertical-align:-20.880000px;}
.v0_c00192{vertical-align:0.000000px;}
.v1_c00192{vertical-align:27.000000px;}
.lse_c00192{letter-spacing:-0.576000px;}
.lsd_c00192{letter-spacing:-0.288000px;}
.lsc_c00192{letter-spacing:-0.108000px;}
.lsf_c00192{letter-spacing:-0.060120px;}
.lsb_c00192{letter-spacing:0.000000px;}
.ls1_c00192{letter-spacing:0.072000px;}
.ls0_c00192{letter-spacing:0.144000px;}
.ls10_c00192{letter-spacing:0.180360px;}
.ls9_c00192{letter-spacing:0.191520px;}
.ls2_c00192{letter-spacing:0.360000px;}
.ls3_c00192{letter-spacing:1.080000px;}
.ls8_c00192{letter-spacing:2.880000px;}
.ls5_c00192{letter-spacing:3.240000px;}
.ls6_c00192{letter-spacing:3.960000px;}
.ls4_c00192{letter-spacing:11.880000px;}
.lsa_c00192{letter-spacing:14.128200px;}
.ls7_c00192{letter-spacing:18.720000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:-18.072000px;}
.ws3_c00192{word-spacing:-18.000000px;}
.ws1_c00192{word-spacing:-17.424000px;}
.ws2_c00192{word-spacing:-12.161520px;}
.ws4_c00192{word-spacing:-9.720000px;}
.ws8_c00192{word-spacing:-0.072000px;}
.ws5_c00192{word-spacing:0.000000px;}
.ws7_c00192{word-spacing:0.162000px;}
.ws33_c00192{word-spacing:0.180360px;}
.ws10_c00192{word-spacing:0.216000px;}
.ws6_c00192{word-spacing:0.270000px;}
.wse_c00192{word-spacing:0.288000px;}
.ws11_c00192{word-spacing:0.360000px;}
.ws24_c00192{word-spacing:0.648000px;}
.ws25_c00192{word-spacing:0.720000px;}
.ws1e_c00192{word-spacing:0.936000px;}
.ws14_c00192{word-spacing:1.008000px;}
.ws15_c00192{word-spacing:1.080000px;}
.ws1f_c00192{word-spacing:1.368000px;}
.ws20_c00192{word-spacing:1.440000px;}
.ws2c_c00192{word-spacing:1.728000px;}
.ws2b_c00192{word-spacing:1.800000px;}
.ws29_c00192{word-spacing:2.520000px;}
.ws2a_c00192{word-spacing:2.880000px;}
.ws17_c00192{word-spacing:3.168000px;}
.ws1b_c00192{word-spacing:3.888000px;}
.ws1c_c00192{word-spacing:3.960000px;}
.ws1d_c00192{word-spacing:6.048000px;}
.ws23_c00192{word-spacing:7.920000px;}
.ws27_c00192{word-spacing:8.208000px;}
.ws9_c00192{word-spacing:8.280000px;}
.ws28_c00192{word-spacing:8.856000px;}
.ws2d_c00192{word-spacing:9.720000px;}
.ws2e_c00192{word-spacing:10.008000px;}
.ws32_c00192{word-spacing:11.663280px;}
.wsf_c00192{word-spacing:11.808000px;}
.ws16_c00192{word-spacing:11.880000px;}
.ws13_c00192{word-spacing:12.096000px;}
.ws12_c00192{word-spacing:12.168000px;}
.wsa_c00192{word-spacing:12.888000px;}
.wsb_c00192{word-spacing:12.960000px;}
.ws31_c00192{word-spacing:13.947840px;}
.ws30_c00192{word-spacing:14.188320px;}
.wsc_c00192{word-spacing:16.848000px;}
.wsd_c00192{word-spacing:16.920000px;}
.ws2f_c00192{word-spacing:18.288000px;}
.ws26_c00192{word-spacing:18.720000px;}
.ws22_c00192{word-spacing:25.920000px;}
.ws21_c00192{word-spacing:26.280000px;}
.ws1a_c00192{word-spacing:37.008000px;}
.ws18_c00192{word-spacing:37.368000px;}
.ws19_c00192{word-spacing:37.440000px;}
._1_c00192{margin-left:-1.058400px;}
._0_c00192{width:1.220400px;}
._8_c00192{width:4.906800px;}
._5_c00192{width:6.148800px;}
._2_c00192{width:7.632000px;}
._9_c00192{width:9.986400px;}
._4_c00192{width:11.476800px;}
._3_c00192{width:16.970400px;}
._7_c00192{width:19.659600px;}
._6_c00192{width:25.488000px;}
.fc0_c00192{color:rgb(0,0,0);}
.fs3_c00192{font-size:38.880000px;}
.fs2_c00192{font-size:47.880000px;}
.fs0_c00192{font-size:54.000000px;}
.fs4_c00192{font-size:60.120000px;}
.fs1_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y27_c00192{bottom:57.240000px;}
.y26_c00192{bottom:109.791180px;}
.y25_c00192{bottom:126.985500px;}
.y24_c00192{bottom:149.490000px;}
.y28_c00192{bottom:162.180000px;}
.y23_c00192{bottom:220.320000px;}
.y22_c00192{bottom:251.370000px;}
.y21_c00192{bottom:282.420000px;}
.y20_c00192{bottom:313.470000px;}
.y1f_c00192{bottom:344.520000px;}
.y1e_c00192{bottom:375.570000px;}
.y1d_c00192{bottom:406.620000px;}
.y1c_c00192{bottom:437.670000px;}
.y1b_c00192{bottom:458.370000px;}
.y1a_c00192{bottom:489.420000px;}
.y19_c00192{bottom:520.470000px;}
.y18_c00192{bottom:551.520000px;}
.y17_c00192{bottom:582.570000px;}
.y16_c00192{bottom:613.620000px;}
.y15_c00192{bottom:644.670000px;}
.y14_c00192{bottom:675.720000px;}
.y13_c00192{bottom:706.770000px;}
.y12_c00192{bottom:737.820000px;}
.y11_c00192{bottom:768.870000px;}
.y10_c00192{bottom:799.920000px;}
.yf_c00192{bottom:830.970000px;}
.ye_c00192{bottom:861.930000px;}
.yd_c00192{bottom:892.980000px;}
.yc_c00192{bottom:924.030000px;}
.yb_c00192{bottom:955.080000px;}
.ya_c00192{bottom:986.130000px;}
.y9_c00192{bottom:1017.180000px;}
.y8_c00192{bottom:1048.230000px;}
.y7_c00192{bottom:1079.280000px;}
.y6_c00192{bottom:1110.330000px;}
.y5_c00192{bottom:1131.030000px;}
.y4_c00192{bottom:1150.920000px;}
.y3_c00192{bottom:1166.404500px;}
.y2_c00192{bottom:1181.970000px;}
.y1_c00192{bottom:1197.450000px;}
.h6_c00192{height:38.158594px;}
.h3_c00192{height:52.971680px;}
.h2_c00192{height:52.998047px;}
.h7_c00192{height:59.004492px;}
.h4_c00192{height:70.664062px;}
.h5_c00192{height:73.991602px;}
.h0_c00192{height:1262.880000px;}
.h1_c00192{height:1263.000000px;}
.w0_c00192{width:893.070000px;}
.w1_c00192{width:893.250000px;}
.x0_c00192{left:0.000000px;}
.x3_c00192{left:127.620000px;}
.x2_c00192{left:425.160000px;}
.x1_c00192{left:446.580000px;}
.x4_c00192{left:738.540000px;}
@media print{
.v2_c00192{vertical-align:-18.560000pt;}
.v0_c00192{vertical-align:0.000000pt;}
.v1_c00192{vertical-align:24.000000pt;}
.lse_c00192{letter-spacing:-0.512000pt;}
.lsd_c00192{letter-spacing:-0.256000pt;}
.lsc_c00192{letter-spacing:-0.096000pt;}
.lsf_c00192{letter-spacing:-0.053440pt;}
.lsb_c00192{letter-spacing:0.000000pt;}
.ls1_c00192{letter-spacing:0.064000pt;}
.ls0_c00192{letter-spacing:0.128000pt;}
.ls10_c00192{letter-spacing:0.160320pt;}
.ls9_c00192{letter-spacing:0.170240pt;}
.ls2_c00192{letter-spacing:0.320000pt;}
.ls3_c00192{letter-spacing:0.960000pt;}
.ls8_c00192{letter-spacing:2.560000pt;}
.ls5_c00192{letter-spacing:2.880000pt;}
.ls6_c00192{letter-spacing:3.520000pt;}
.ls4_c00192{letter-spacing:10.560000pt;}
.lsa_c00192{letter-spacing:12.558400pt;}
.ls7_c00192{letter-spacing:16.640000pt;}
.ws0_c00192{word-spacing:-16.064000pt;}
.ws3_c00192{word-spacing:-16.000000pt;}
.ws1_c00192{word-spacing:-15.488000pt;}
.ws2_c00192{word-spacing:-10.810240pt;}
.ws4_c00192{word-spacing:-8.640000pt;}
.ws8_c00192{word-spacing:-0.064000pt;}
.ws5_c00192{word-spacing:0.000000pt;}
.ws7_c00192{word-spacing:0.144000pt;}
.ws33_c00192{word-spacing:0.160320pt;}
.ws10_c00192{word-spacing:0.192000pt;}
.ws6_c00192{word-spacing:0.240000pt;}
.wse_c00192{word-spacing:0.256000pt;}
.ws11_c00192{word-spacing:0.320000pt;}
.ws24_c00192{word-spacing:0.576000pt;}
.ws25_c00192{word-spacing:0.640000pt;}
.ws1e_c00192{word-spacing:0.832000pt;}
.ws14_c00192{word-spacing:0.896000pt;}
.ws15_c00192{word-spacing:0.960000pt;}
.ws1f_c00192{word-spacing:1.216000pt;}
.ws20_c00192{word-spacing:1.280000pt;}
.ws2c_c00192{word-spacing:1.536000pt;}
.ws2b_c00192{word-spacing:1.600000pt;}
.ws29_c00192{word-spacing:2.240000pt;}
.ws2a_c00192{word-spacing:2.560000pt;}
.ws17_c00192{word-spacing:2.816000pt;}
.ws1b_c00192{word-spacing:3.456000pt;}
.ws1c_c00192{word-spacing:3.520000pt;}
.ws1d_c00192{word-spacing:5.376000pt;}
.ws23_c00192{word-spacing:7.040000pt;}
.ws27_c00192{word-spacing:7.296000pt;}
.ws9_c00192{word-spacing:7.360000pt;}
.ws28_c00192{word-spacing:7.872000pt;}
.ws2d_c00192{word-spacing:8.640000pt;}
.ws2e_c00192{word-spacing:8.896000pt;}
.ws32_c00192{word-spacing:10.367360pt;}
.wsf_c00192{word-spacing:10.496000pt;}
.ws16_c00192{word-spacing:10.560000pt;}
.ws13_c00192{word-spacing:10.752000pt;}
.ws12_c00192{word-spacing:10.816000pt;}
.wsa_c00192{word-spacing:11.456000pt;}
.wsb_c00192{word-spacing:11.520000pt;}
.ws31_c00192{word-spacing:12.398080pt;}
.ws30_c00192{word-spacing:12.611840pt;}
.wsc_c00192{word-spacing:14.976000pt;}
.wsd_c00192{word-spacing:15.040000pt;}
.ws2f_c00192{word-spacing:16.256000pt;}
.ws26_c00192{word-spacing:16.640000pt;}
.ws22_c00192{word-spacing:23.040000pt;}
.ws21_c00192{word-spacing:23.360000pt;}
.ws1a_c00192{word-spacing:32.896000pt;}
.ws18_c00192{word-spacing:33.216000pt;}
.ws19_c00192{word-spacing:33.280000pt;}
._1_c00192{margin-left:-0.940800pt;}
._0_c00192{width:1.084800pt;}
._8_c00192{width:4.361600pt;}
._5_c00192{width:5.465600pt;}
._2_c00192{width:6.784000pt;}
._9_c00192{width:8.876800pt;}
._4_c00192{width:10.201600pt;}
._3_c00192{width:15.084800pt;}
._7_c00192{width:17.475200pt;}
._6_c00192{width:22.656000pt;}
.fs3_c00192{font-size:34.560000pt;}
.fs2_c00192{font-size:42.560000pt;}
.fs0_c00192{font-size:48.000000pt;}
.fs4_c00192{font-size:53.440000pt;}
.fs1_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y27_c00192{bottom:50.880000pt;}
.y26_c00192{bottom:97.592160pt;}
.y25_c00192{bottom:112.876000pt;}
.y24_c00192{bottom:132.880000pt;}
.y28_c00192{bottom:144.160000pt;}
.y23_c00192{bottom:195.840000pt;}
.y22_c00192{bottom:223.440000pt;}
.y21_c00192{bottom:251.040000pt;}
.y20_c00192{bottom:278.640000pt;}
.y1f_c00192{bottom:306.240000pt;}
.y1e_c00192{bottom:333.840000pt;}
.y1d_c00192{bottom:361.440000pt;}
.y1c_c00192{bottom:389.040000pt;}
.y1b_c00192{bottom:407.440000pt;}
.y1a_c00192{bottom:435.040000pt;}
.y19_c00192{bottom:462.640000pt;}
.y18_c00192{bottom:490.240000pt;}
.y17_c00192{bottom:517.840000pt;}
.y16_c00192{bottom:545.440000pt;}
.y15_c00192{bottom:573.040000pt;}
.y14_c00192{bottom:600.640000pt;}
.y13_c00192{bottom:628.240000pt;}
.y12_c00192{bottom:655.840000pt;}
.y11_c00192{bottom:683.440000pt;}
.y10_c00192{bottom:711.040000pt;}
.yf_c00192{bottom:738.640000pt;}
.ye_c00192{bottom:766.160000pt;}
.yd_c00192{bottom:793.760000pt;}
.yc_c00192{bottom:821.360000pt;}
.yb_c00192{bottom:848.960000pt;}
.ya_c00192{bottom:876.560000pt;}
.y9_c00192{bottom:904.160000pt;}
.y8_c00192{bottom:931.760000pt;}
.y7_c00192{bottom:959.360000pt;}
.y6_c00192{bottom:986.960000pt;}
.y5_c00192{bottom:1005.360000pt;}
.y4_c00192{bottom:1023.040000pt;}
.y3_c00192{bottom:1036.804000pt;}
.y2_c00192{bottom:1050.640000pt;}
.y1_c00192{bottom:1064.400000pt;}
.h6_c00192{height:33.918750pt;}
.h3_c00192{height:47.085938pt;}
.h2_c00192{height:47.109375pt;}
.h7_c00192{height:52.448437pt;}
.h4_c00192{height:62.812500pt;}
.h5_c00192{height:65.770313pt;}
.h0_c00192{height:1122.560000pt;}
.h1_c00192{height:1122.666667pt;}
.w0_c00192{width:793.840000pt;}
.w1_c00192{width:794.000000pt;}
.x0_c00192{left:0.000000pt;}
.x3_c00192{left:113.440000pt;}
.x2_c00192{left:377.920000pt;}
.x1_c00192{left:396.960000pt;}
.x4_c00192{left:656.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_c00193 {
    display:none;
  }
  .loading-indicator_c00193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00193 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00193 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00193" -> "#page-container .classname_c00193")
 */
.pf_c00193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00193 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00193 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00193 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00193 {overflow:visible;}
  }
}
.c_c00193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00193 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00193:after { /* webkit #35443 */
  content: '';
}
.t_c00193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00193 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00193 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00193 { /* info for Javascript */
  display:none;
}
.l_c00193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00193:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00193;src:url('chunks/assets/font_1c1b0209f11e04a3b22f96b3.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_615fed23be569ce57b9d78c5.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;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_c00193;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00193;src:url('chunks/assets/font_5cc74d4fdda03c349bec8609.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00193;src:url('chunks/assets/font_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff6_c00193{font-family:ff6_c00193;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00193{vertical-align:-61.938000px;}
.v3_c00193{vertical-align:-20.880000px;}
.v0_c00193{vertical-align:0.000000px;}
.v2_c00193{vertical-align:27.000000px;}
.ls11_c00193{letter-spacing:-0.420840px;}
.lse_c00193{letter-spacing:-0.288000px;}
.ls10_c00193{letter-spacing:-0.240480px;}
.ls12_c00193{letter-spacing:-0.180360px;}
.ls14_c00193{letter-spacing:-0.120240px;}
.lsf_c00193{letter-spacing:-0.060120px;}
.lsd_c00193{letter-spacing:0.000000px;}
.lsc_c00193{letter-spacing:0.060120px;}
.ls1_c00193{letter-spacing:0.072000px;}
.ls9_c00193{letter-spacing:0.144000px;}
.ls13_c00193{letter-spacing:0.180360px;}
.ls4_c00193{letter-spacing:0.191520px;}
.ls8_c00193{letter-spacing:8.280000px;}
.lsb_c00193{letter-spacing:8.356680px;}
.lsa_c00193{letter-spacing:13.406760px;}
.ls5_c00193{letter-spacing:23.904000px;}
.ls2_c00193{letter-spacing:30.744000px;}
.ls3_c00193{letter-spacing:38.160000px;}
.ls7_c00193{letter-spacing:44.784000px;}
.ls6_c00193{letter-spacing:54.864000px;}
.ls0_c00193{letter-spacing:319.518000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00193{word-spacing:-72.000000px;}
.ws3_c00193{word-spacing:-18.072000px;}
.ws0_c00193{word-spacing:-18.000000px;}
.ws6_c00193{word-spacing:-15.030000px;}
.ws8_c00193{word-spacing:-14.909760px;}
.ws7_c00193{word-spacing:-14.849640px;}
.ws5_c00193{word-spacing:-14.789520px;}
.ws1_c00193{word-spacing:-12.161520px;}
.ws4_c00193{word-spacing:-9.720000px;}
.ws2f_c00193{word-spacing:-0.420840px;}
.ws12_c00193{word-spacing:-0.360000px;}
.wsa_c00193{word-spacing:-0.162000px;}
.ws1f_c00193{word-spacing:-0.144000px;}
.wse_c00193{word-spacing:-0.072000px;}
.ws9_c00193{word-spacing:0.000000px;}
.ws29_c00193{word-spacing:0.180360px;}
.ws19_c00193{word-spacing:1.728000px;}
.ws16_c00193{word-spacing:3.888000px;}
.ws15_c00193{word-spacing:3.960000px;}
.ws17_c00193{word-spacing:4.680000px;}
.ws1a_c00193{word-spacing:5.760000px;}
.ws2a_c00193{word-spacing:7.815600px;}
.ws2b_c00193{word-spacing:8.176320px;}
.ws14_c00193{word-spacing:8.208000px;}
.ws13_c00193{word-spacing:8.280000px;}
.ws2c_c00193{word-spacing:8.416800px;}
.ws27_c00193{word-spacing:13.466880px;}
.ws28_c00193{word-spacing:13.827600px;}
.wsf_c00193{word-spacing:14.688000px;}
.ws22_c00193{word-spacing:16.848000px;}
.ws23_c00193{word-spacing:18.576000px;}
.ws24_c00193{word-spacing:18.648000px;}
.ws2d_c00193{word-spacing:21.402720px;}
.ws2e_c00193{word-spacing:21.763440px;}
.ws11_c00193{word-spacing:27.288000px;}
.ws10_c00193{word-spacing:27.360000px;}
.ws1e_c00193{word-spacing:28.368000px;}
.ws1d_c00193{word-spacing:28.440000px;}
.ws26_c00193{word-spacing:31.608000px;}
.ws25_c00193{word-spacing:31.680000px;}
.ws18_c00193{word-spacing:32.760000px;}
.ws1c_c00193{word-spacing:36.288000px;}
.ws1b_c00193{word-spacing:36.360000px;}
.wsb_c00193{word-spacing:38.016000px;}
.wsc_c00193{word-spacing:38.160000px;}
.wsd_c00193{word-spacing:38.448000px;}
.ws20_c00193{word-spacing:81.648000px;}
.ws21_c00193{word-spacing:81.720000px;}
._0_c00193{margin-left:-1.008000px;}
._6_c00193{width:1.080000px;}
._2_c00193{width:2.880000px;}
._7_c00193{width:4.536000px;}
._9_c00193{width:5.760000px;}
._5_c00193{width:8.352000px;}
._3_c00193{width:15.048000px;}
._4_c00193{width:27.864000px;}
._8_c00193{width:32.328000px;}
._1_c00193{width:38.016000px;}
._a_c00193{width:81.720000px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs3_c00193{font-size:38.880000px;}
.fs2_c00193{font-size:47.880000px;}
.fs0_c00193{font-size:54.000000px;}
.fs4_c00193{font-size:60.120000px;}
.fs1_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y27_c00193{bottom:57.240000px;}
.y26_c00193{bottom:109.791180px;}
.y25_c00193{bottom:126.985500px;}
.y24_c00193{bottom:149.490000px;}
.y23_c00193{bottom:161.545680px;}
.y22_c00193{bottom:183.960000px;}
.y28_c00193{bottom:196.650000px;}
.y21_c00193{bottom:237.150000px;}
.y20_c00193{bottom:268.110000px;}
.y1f_c00193{bottom:300.510000px;}
.y1e_c00193{bottom:331.560000px;}
.y1d_c00193{bottom:362.610000px;}
.y1c_c00193{bottom:393.660000px;}
.y1b_c00193{bottom:424.710000px;}
.y1a_c00193{bottom:455.760000px;}
.y19_c00193{bottom:486.810000px;}
.y18_c00193{bottom:517.860000px;}
.y17_c00193{bottom:548.910000px;}
.y16_c00193{bottom:579.870000px;}
.y15_c00193{bottom:612.270000px;}
.y14_c00193{bottom:643.320000px;}
.y13_c00193{bottom:674.370000px;}
.y12_c00193{bottom:705.420000px;}
.y11_c00193{bottom:736.470000px;}
.y10_c00193{bottom:767.520000px;}
.yf_c00193{bottom:798.570000px;}
.ye_c00193{bottom:829.620000px;}
.yd_c00193{bottom:860.670000px;}
.yc_c00193{bottom:891.720000px;}
.yb_c00193{bottom:922.770000px;}
.ya_c00193{bottom:953.730000px;}
.y9_c00193{bottom:986.130000px;}
.y8_c00193{bottom:1017.180000px;}
.y7_c00193{bottom:1048.230000px;}
.y6_c00193{bottom:1079.280000px;}
.y5_c00193{bottom:1110.330000px;}
.y4_c00193{bottom:1131.030000px;}
.y3_c00193{bottom:1150.915500px;}
.y2_c00193{bottom:1166.400000px;}
.y1_c00193{bottom:1197.450000px;}
.h6_c00193{height:38.158594px;}
.h2_c00193{height:52.998047px;}
.h7_c00193{height:59.004492px;}
.h3_c00193{height:70.664062px;}
.h5_c00193{height:73.991602px;}
.h4_c00193{height:75.093750px;}
.h0_c00193{height:1262.880000px;}
.h1_c00193{height:1263.000000px;}
.w0_c00193{width:893.070000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x2_c00193{left:127.620000px;}
.x3_c00193{left:154.620000px;}
.x4_c00193{left:181.620000px;}
.x5_c00193{left:235.620000px;}
.x6_c00193{left:262.620000px;}
.x1_c00193{left:446.580000px;}
@media print{
.v1_c00193{vertical-align:-55.056000pt;}
.v3_c00193{vertical-align:-18.560000pt;}
.v0_c00193{vertical-align:0.000000pt;}
.v2_c00193{vertical-align:24.000000pt;}
.ls11_c00193{letter-spacing:-0.374080pt;}
.lse_c00193{letter-spacing:-0.256000pt;}
.ls10_c00193{letter-spacing:-0.213760pt;}
.ls12_c00193{letter-spacing:-0.160320pt;}
.ls14_c00193{letter-spacing:-0.106880pt;}
.lsf_c00193{letter-spacing:-0.053440pt;}
.lsd_c00193{letter-spacing:0.000000pt;}
.lsc_c00193{letter-spacing:0.053440pt;}
.ls1_c00193{letter-spacing:0.064000pt;}
.ls9_c00193{letter-spacing:0.128000pt;}
.ls13_c00193{letter-spacing:0.160320pt;}
.ls4_c00193{letter-spacing:0.170240pt;}
.ls8_c00193{letter-spacing:7.360000pt;}
.lsb_c00193{letter-spacing:7.428160pt;}
.lsa_c00193{letter-spacing:11.917120pt;}
.ls5_c00193{letter-spacing:21.248000pt;}
.ls2_c00193{letter-spacing:27.328000pt;}
.ls3_c00193{letter-spacing:33.920000pt;}
.ls7_c00193{letter-spacing:39.808000pt;}
.ls6_c00193{letter-spacing:48.768000pt;}
.ls0_c00193{letter-spacing:284.016000pt;}
.ws2_c00193{word-spacing:-64.000000pt;}
.ws3_c00193{word-spacing:-16.064000pt;}
.ws0_c00193{word-spacing:-16.000000pt;}
.ws6_c00193{word-spacing:-13.360000pt;}
.ws8_c00193{word-spacing:-13.253120pt;}
.ws7_c00193{word-spacing:-13.199680pt;}
.ws5_c00193{word-spacing:-13.146240pt;}
.ws1_c00193{word-spacing:-10.810240pt;}
.ws4_c00193{word-spacing:-8.640000pt;}
.ws2f_c00193{word-spacing:-0.374080pt;}
.ws12_c00193{word-spacing:-0.320000pt;}
.wsa_c00193{word-spacing:-0.144000pt;}
.ws1f_c00193{word-spacing:-0.128000pt;}
.wse_c00193{word-spacing:-0.064000pt;}
.ws9_c00193{word-spacing:0.000000pt;}
.ws29_c00193{word-spacing:0.160320pt;}
.ws19_c00193{word-spacing:1.536000pt;}
.ws16_c00193{word-spacing:3.456000pt;}
.ws15_c00193{word-spacing:3.520000pt;}
.ws17_c00193{word-spacing:4.160000pt;}
.ws1a_c00193{word-spacing:5.120000pt;}
.ws2a_c00193{word-spacing:6.947200pt;}
.ws2b_c00193{word-spacing:7.267840pt;}
.ws14_c00193{word-spacing:7.296000pt;}
.ws13_c00193{word-spacing:7.360000pt;}
.ws2c_c00193{word-spacing:7.481600pt;}
.ws27_c00193{word-spacing:11.970560pt;}
.ws28_c00193{word-spacing:12.291200pt;}
.wsf_c00193{word-spacing:13.056000pt;}
.ws22_c00193{word-spacing:14.976000pt;}
.ws23_c00193{word-spacing:16.512000pt;}
.ws24_c00193{word-spacing:16.576000pt;}
.ws2d_c00193{word-spacing:19.024640pt;}
.ws2e_c00193{word-spacing:19.345280pt;}
.ws11_c00193{word-spacing:24.256000pt;}
.ws10_c00193{word-spacing:24.320000pt;}
.ws1e_c00193{word-spacing:25.216000pt;}
.ws1d_c00193{word-spacing:25.280000pt;}
.ws26_c00193{word-spacing:28.096000pt;}
.ws25_c00193{word-spacing:28.160000pt;}
.ws18_c00193{word-spacing:29.120000pt;}
.ws1c_c00193{word-spacing:32.256000pt;}
.ws1b_c00193{word-spacing:32.320000pt;}
.wsb_c00193{word-spacing:33.792000pt;}
.wsc_c00193{word-spacing:33.920000pt;}
.wsd_c00193{word-spacing:34.176000pt;}
.ws20_c00193{word-spacing:72.576000pt;}
.ws21_c00193{word-spacing:72.640000pt;}
._0_c00193{margin-left:-0.896000pt;}
._6_c00193{width:0.960000pt;}
._2_c00193{width:2.560000pt;}
._7_c00193{width:4.032000pt;}
._9_c00193{width:5.120000pt;}
._5_c00193{width:7.424000pt;}
._3_c00193{width:13.376000pt;}
._4_c00193{width:24.768000pt;}
._8_c00193{width:28.736000pt;}
._1_c00193{width:33.792000pt;}
._a_c00193{width:72.640000pt;}
.fs3_c00193{font-size:34.560000pt;}
.fs2_c00193{font-size:42.560000pt;}
.fs0_c00193{font-size:48.000000pt;}
.fs4_c00193{font-size:53.440000pt;}
.fs1_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y27_c00193{bottom:50.880000pt;}
.y26_c00193{bottom:97.592160pt;}
.y25_c00193{bottom:112.876000pt;}
.y24_c00193{bottom:132.880000pt;}
.y23_c00193{bottom:143.596160pt;}
.y22_c00193{bottom:163.520000pt;}
.y28_c00193{bottom:174.800000pt;}
.y21_c00193{bottom:210.800000pt;}
.y20_c00193{bottom:238.320000pt;}
.y1f_c00193{bottom:267.120000pt;}
.y1e_c00193{bottom:294.720000pt;}
.y1d_c00193{bottom:322.320000pt;}
.y1c_c00193{bottom:349.920000pt;}
.y1b_c00193{bottom:377.520000pt;}
.y1a_c00193{bottom:405.120000pt;}
.y19_c00193{bottom:432.720000pt;}
.y18_c00193{bottom:460.320000pt;}
.y17_c00193{bottom:487.920000pt;}
.y16_c00193{bottom:515.440000pt;}
.y15_c00193{bottom:544.240000pt;}
.y14_c00193{bottom:571.840000pt;}
.y13_c00193{bottom:599.440000pt;}
.y12_c00193{bottom:627.040000pt;}
.y11_c00193{bottom:654.640000pt;}
.y10_c00193{bottom:682.240000pt;}
.yf_c00193{bottom:709.840000pt;}
.ye_c00193{bottom:737.440000pt;}
.yd_c00193{bottom:765.040000pt;}
.yc_c00193{bottom:792.640000pt;}
.yb_c00193{bottom:820.240000pt;}
.ya_c00193{bottom:847.760000pt;}
.y9_c00193{bottom:876.560000pt;}
.y8_c00193{bottom:904.160000pt;}
.y7_c00193{bottom:931.760000pt;}
.y6_c00193{bottom:959.360000pt;}
.y5_c00193{bottom:986.960000pt;}
.y4_c00193{bottom:1005.360000pt;}
.y3_c00193{bottom:1023.036000pt;}
.y2_c00193{bottom:1036.800000pt;}
.y1_c00193{bottom:1064.400000pt;}
.h6_c00193{height:33.918750pt;}
.h2_c00193{height:47.109375pt;}
.h7_c00193{height:52.448437pt;}
.h3_c00193{height:62.812500pt;}
.h5_c00193{height:65.770312pt;}
.h4_c00193{height:66.750000pt;}
.h0_c00193{height:1122.560000pt;}
.h1_c00193{height:1122.666667pt;}
.w0_c00193{width:793.840000pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x2_c00193{left:113.440000pt;}
.x3_c00193{left:137.440000pt;}
.x4_c00193{left:161.440000pt;}
.x5_c00193{left:209.440000pt;}
.x6_c00193{left:233.440000pt;}
.x1_c00193{left:396.960000pt;}
}





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

.ir_c00194:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00194;src:url('chunks/assets/font_ba9673a3025218c64b63e8cf.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.281250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_5cc74d4fdda03c349bec8609.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00194{vertical-align:-82.800000px;}
.v3_c00194{vertical-align:-20.880000px;}
.v0_c00194{vertical-align:0.000000px;}
.v2_c00194{vertical-align:27.000000px;}
.lsf_c00194{letter-spacing:-0.360000px;}
.ls11_c00194{letter-spacing:-0.216000px;}
.lsd_c00194{letter-spacing:-0.108000px;}
.ls10_c00194{letter-spacing:-0.072000px;}
.lsc_c00194{letter-spacing:0.000000px;}
.ls3_c00194{letter-spacing:0.072000px;}
.lsb_c00194{letter-spacing:0.120240px;}
.lse_c00194{letter-spacing:0.144000px;}
.ls12_c00194{letter-spacing:0.180360px;}
.ls2_c00194{letter-spacing:0.191520px;}
.ls9_c00194{letter-spacing:0.360000px;}
.lsa_c00194{letter-spacing:0.388800px;}
.ls7_c00194{letter-spacing:2.160000px;}
.ls6_c00194{letter-spacing:5.054400px;}
.ls8_c00194{letter-spacing:7.207200px;}
.ls5_c00194{letter-spacing:30.240000px;}
.ls1_c00194{letter-spacing:44.784000px;}
.ls4_c00194{letter-spacing:54.864000px;}
.ls0_c00194{letter-spacing:414.000000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-18.072000px;}
.ws2_c00194{word-spacing:-18.000000px;}
.ws3_c00194{word-spacing:-17.928000px;}
.ws1_c00194{word-spacing:-12.161520px;}
.ws4_c00194{word-spacing:-9.720000px;}
.ws2c_c00194{word-spacing:-0.432000px;}
.ws2d_c00194{word-spacing:-0.420840px;}
.ws22_c00194{word-spacing:-0.360000px;}
.ws15_c00194{word-spacing:-0.072000px;}
.ws5_c00194{word-spacing:0.000000px;}
.ws20_c00194{word-spacing:0.072000px;}
.ws7_c00194{word-spacing:0.162000px;}
.ws6_c00194{word-spacing:0.270000px;}
.ws29_c00194{word-spacing:0.288000px;}
.ws21_c00194{word-spacing:0.360000px;}
.wse_c00194{word-spacing:1.728000px;}
.ws1f_c00194{word-spacing:2.088000px;}
.ws28_c00194{word-spacing:2.808000px;}
.ws27_c00194{word-spacing:2.880000px;}
.wsd_c00194{word-spacing:3.168000px;}
.wsc_c00194{word-spacing:3.240000px;}
.ws17_c00194{word-spacing:3.960000px;}
.ws18_c00194{word-spacing:4.320000px;}
.ws19_c00194{word-spacing:4.680000px;}
.ws13_c00194{word-spacing:4.968000px;}
.ws14_c00194{word-spacing:5.040000px;}
.ws2b_c00194{word-spacing:5.328000px;}
.ws2a_c00194{word-spacing:5.400000px;}
.ws9_c00194{word-spacing:6.768000px;}
.wsa_c00194{word-spacing:6.840000px;}
.ws23_c00194{word-spacing:7.128000px;}
.ws24_c00194{word-spacing:7.200000px;}
.ws25_c00194{word-spacing:8.280000px;}
.ws26_c00194{word-spacing:8.496000px;}
.ws16_c00194{word-spacing:9.360000px;}
.ws1b_c00194{word-spacing:12.528000px;}
.ws1a_c00194{word-spacing:12.600000px;}
.ws1c_c00194{word-spacing:16.488000px;}
.ws1e_c00194{word-spacing:16.560000px;}
.ws1d_c00194{word-spacing:16.920000px;}
.wsb_c00194{word-spacing:19.368000px;}
.ws10_c00194{word-spacing:23.976000px;}
.ws11_c00194{word-spacing:24.048000px;}
.ws8_c00194{word-spacing:26.640000px;}
.wsf_c00194{word-spacing:29.448000px;}
.ws12_c00194{word-spacing:30.240000px;}
._1_c00194{margin-left:-1.058400px;}
._0_c00194{width:1.220400px;}
._a_c00194{width:2.908800px;}
._4_c00194{width:4.217040px;}
._3_c00194{width:6.026400px;}
._7_c00194{width:8.496000px;}
._6_c00194{width:9.648000px;}
._8_c00194{width:12.600000px;}
._9_c00194{width:15.850800px;}
._5_c00194{width:23.911200px;}
._2_c00194{width:26.784000px;}
.fc0_c00194{color:rgb(0,0,0);}
.fs3_c00194{font-size:38.880000px;}
.fs2_c00194{font-size:47.880000px;}
.fs0_c00194{font-size:54.000000px;}
.fs4_c00194{font-size:60.120000px;}
.fs1_c00194{font-size:72.000000px;}
.y0_c00194{bottom:0.000000px;}
.y26_c00194{bottom:57.240000px;}
.y25_c00194{bottom:109.795680px;}
.y24_c00194{bottom:132.210000px;}
.y27_c00194{bottom:144.900000px;}
.y23_c00194{bottom:188.010000px;}
.y22_c00194{bottom:219.060000px;}
.y21_c00194{bottom:250.110000px;}
.y20_c00194{bottom:281.160000px;}
.y1f_c00194{bottom:312.210000px;}
.y1e_c00194{bottom:343.260000px;}
.y1d_c00194{bottom:374.310000px;}
.y1c_c00194{bottom:405.360000px;}
.y1b_c00194{bottom:436.410000px;}
.y1a_c00194{bottom:467.370000px;}
.y19_c00194{bottom:488.070000px;}
.y18_c00194{bottom:519.120000px;}
.y17_c00194{bottom:550.170000px;}
.y16_c00194{bottom:581.220000px;}
.y15_c00194{bottom:612.270000px;}
.y14_c00194{bottom:643.320000px;}
.y13_c00194{bottom:674.370000px;}
.y12_c00194{bottom:705.420000px;}
.y11_c00194{bottom:736.470000px;}
.y10_c00194{bottom:767.520000px;}
.yf_c00194{bottom:798.570000px;}
.ye_c00194{bottom:829.620000px;}
.yd_c00194{bottom:861.930000px;}
.yc_c00194{bottom:892.980000px;}
.yb_c00194{bottom:924.030000px;}
.ya_c00194{bottom:955.080000px;}
.y9_c00194{bottom:986.130000px;}
.y8_c00194{bottom:1017.180000px;}
.y7_c00194{bottom:1048.230000px;}
.y6_c00194{bottom:1079.280000px;}
.y5_c00194{bottom:1131.030000px;}
.y4_c00194{bottom:1150.920000px;}
.y3_c00194{bottom:1166.404500px;}
.y2_c00194{bottom:1181.970000px;}
.y1_c00194{bottom:1197.450000px;}
.h6_c00194{height:38.158594px;}
.h3_c00194{height:52.971680px;}
.h2_c00194{height:52.998047px;}
.h7_c00194{height:59.004492px;}
.h4_c00194{height:70.664062px;}
.h5_c00194{height:75.093750px;}
.h0_c00194{height:1262.880000px;}
.h1_c00194{height:1263.000000px;}
.w0_c00194{width:893.070000px;}
.w1_c00194{width:893.250000px;}
.x0_c00194{left:0.000000px;}
.x3_c00194{left:127.620000px;}
.x5_c00194{left:235.620000px;}
.x4_c00194{left:262.620000px;}
.x2_c00194{left:425.160000px;}
.x1_c00194{left:446.580000px;}
.x6_c00194{left:738.540000px;}
@media print{
.v1_c00194{vertical-align:-73.600000pt;}
.v3_c00194{vertical-align:-18.560000pt;}
.v0_c00194{vertical-align:0.000000pt;}
.v2_c00194{vertical-align:24.000000pt;}
.lsf_c00194{letter-spacing:-0.320000pt;}
.ls11_c00194{letter-spacing:-0.192000pt;}
.lsd_c00194{letter-spacing:-0.096000pt;}
.ls10_c00194{letter-spacing:-0.064000pt;}
.lsc_c00194{letter-spacing:0.000000pt;}
.ls3_c00194{letter-spacing:0.064000pt;}
.lsb_c00194{letter-spacing:0.106880pt;}
.lse_c00194{letter-spacing:0.128000pt;}
.ls12_c00194{letter-spacing:0.160320pt;}
.ls2_c00194{letter-spacing:0.170240pt;}
.ls9_c00194{letter-spacing:0.320000pt;}
.lsa_c00194{letter-spacing:0.345600pt;}
.ls7_c00194{letter-spacing:1.920000pt;}
.ls6_c00194{letter-spacing:4.492800pt;}
.ls8_c00194{letter-spacing:6.406400pt;}
.ls5_c00194{letter-spacing:26.880000pt;}
.ls1_c00194{letter-spacing:39.808000pt;}
.ls4_c00194{letter-spacing:48.768000pt;}
.ls0_c00194{letter-spacing:368.000000pt;}
.ws0_c00194{word-spacing:-16.064000pt;}
.ws2_c00194{word-spacing:-16.000000pt;}
.ws3_c00194{word-spacing:-15.936000pt;}
.ws1_c00194{word-spacing:-10.810240pt;}
.ws4_c00194{word-spacing:-8.640000pt;}
.ws2c_c00194{word-spacing:-0.384000pt;}
.ws2d_c00194{word-spacing:-0.374080pt;}
.ws22_c00194{word-spacing:-0.320000pt;}
.ws15_c00194{word-spacing:-0.064000pt;}
.ws5_c00194{word-spacing:0.000000pt;}
.ws20_c00194{word-spacing:0.064000pt;}
.ws7_c00194{word-spacing:0.144000pt;}
.ws6_c00194{word-spacing:0.240000pt;}
.ws29_c00194{word-spacing:0.256000pt;}
.ws21_c00194{word-spacing:0.320000pt;}
.wse_c00194{word-spacing:1.536000pt;}
.ws1f_c00194{word-spacing:1.856000pt;}
.ws28_c00194{word-spacing:2.496000pt;}
.ws27_c00194{word-spacing:2.560000pt;}
.wsd_c00194{word-spacing:2.816000pt;}
.wsc_c00194{word-spacing:2.880000pt;}
.ws17_c00194{word-spacing:3.520000pt;}
.ws18_c00194{word-spacing:3.840000pt;}
.ws19_c00194{word-spacing:4.160000pt;}
.ws13_c00194{word-spacing:4.416000pt;}
.ws14_c00194{word-spacing:4.480000pt;}
.ws2b_c00194{word-spacing:4.736000pt;}
.ws2a_c00194{word-spacing:4.800000pt;}
.ws9_c00194{word-spacing:6.016000pt;}
.wsa_c00194{word-spacing:6.080000pt;}
.ws23_c00194{word-spacing:6.336000pt;}
.ws24_c00194{word-spacing:6.400000pt;}
.ws25_c00194{word-spacing:7.360000pt;}
.ws26_c00194{word-spacing:7.552000pt;}
.ws16_c00194{word-spacing:8.320000pt;}
.ws1b_c00194{word-spacing:11.136000pt;}
.ws1a_c00194{word-spacing:11.200000pt;}
.ws1c_c00194{word-spacing:14.656000pt;}
.ws1e_c00194{word-spacing:14.720000pt;}
.ws1d_c00194{word-spacing:15.040000pt;}
.wsb_c00194{word-spacing:17.216000pt;}
.ws10_c00194{word-spacing:21.312000pt;}
.ws11_c00194{word-spacing:21.376000pt;}
.ws8_c00194{word-spacing:23.680000pt;}
.wsf_c00194{word-spacing:26.176000pt;}
.ws12_c00194{word-spacing:26.880000pt;}
._1_c00194{margin-left:-0.940800pt;}
._0_c00194{width:1.084800pt;}
._a_c00194{width:2.585600pt;}
._4_c00194{width:3.748480pt;}
._3_c00194{width:5.356800pt;}
._7_c00194{width:7.552000pt;}
._6_c00194{width:8.576000pt;}
._8_c00194{width:11.200000pt;}
._9_c00194{width:14.089600pt;}
._5_c00194{width:21.254400pt;}
._2_c00194{width:23.808000pt;}
.fs3_c00194{font-size:34.560000pt;}
.fs2_c00194{font-size:42.560000pt;}
.fs0_c00194{font-size:48.000000pt;}
.fs4_c00194{font-size:53.440000pt;}
.fs1_c00194{font-size:64.000000pt;}
.y0_c00194{bottom:0.000000pt;}
.y26_c00194{bottom:50.880000pt;}
.y25_c00194{bottom:97.596160pt;}
.y24_c00194{bottom:117.520000pt;}
.y27_c00194{bottom:128.800000pt;}
.y23_c00194{bottom:167.120000pt;}
.y22_c00194{bottom:194.720000pt;}
.y21_c00194{bottom:222.320000pt;}
.y20_c00194{bottom:249.920000pt;}
.y1f_c00194{bottom:277.520000pt;}
.y1e_c00194{bottom:305.120000pt;}
.y1d_c00194{bottom:332.720000pt;}
.y1c_c00194{bottom:360.320000pt;}
.y1b_c00194{bottom:387.920000pt;}
.y1a_c00194{bottom:415.440000pt;}
.y19_c00194{bottom:433.840000pt;}
.y18_c00194{bottom:461.440000pt;}
.y17_c00194{bottom:489.040000pt;}
.y16_c00194{bottom:516.640000pt;}
.y15_c00194{bottom:544.240000pt;}
.y14_c00194{bottom:571.840000pt;}
.y13_c00194{bottom:599.440000pt;}
.y12_c00194{bottom:627.040000pt;}
.y11_c00194{bottom:654.640000pt;}
.y10_c00194{bottom:682.240000pt;}
.yf_c00194{bottom:709.840000pt;}
.ye_c00194{bottom:737.440000pt;}
.yd_c00194{bottom:766.160000pt;}
.yc_c00194{bottom:793.760000pt;}
.yb_c00194{bottom:821.360000pt;}
.ya_c00194{bottom:848.960000pt;}
.y9_c00194{bottom:876.560000pt;}
.y8_c00194{bottom:904.160000pt;}
.y7_c00194{bottom:931.760000pt;}
.y6_c00194{bottom:959.360000pt;}
.y5_c00194{bottom:1005.360000pt;}
.y4_c00194{bottom:1023.040000pt;}
.y3_c00194{bottom:1036.804000pt;}
.y2_c00194{bottom:1050.640000pt;}
.y1_c00194{bottom:1064.400000pt;}
.h6_c00194{height:33.918750pt;}
.h3_c00194{height:47.085938pt;}
.h2_c00194{height:47.109375pt;}
.h7_c00194{height:52.448437pt;}
.h4_c00194{height:62.812500pt;}
.h5_c00194{height:66.750000pt;}
.h0_c00194{height:1122.560000pt;}
.h1_c00194{height:1122.666667pt;}
.w0_c00194{width:793.840000pt;}
.w1_c00194{width:794.000000pt;}
.x0_c00194{left:0.000000pt;}
.x3_c00194{left:113.440000pt;}
.x5_c00194{left:209.440000pt;}
.x4_c00194{left:233.440000pt;}
.x2_c00194{left:377.920000pt;}
.x1_c00194{left:396.960000pt;}
.x6_c00194{left:656.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_c00195 {
    display:none;
  }
  .loading-indicator_c00195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00195 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00195 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00195" -> "#page-container .classname_c00195")
 */
.pf_c00195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00195 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00195 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00195 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00195 {overflow:visible;}
  }
}
.c_c00195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00195 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00195:after { /* webkit #35443 */
  content: '';
}
.t_c00195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00195 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00195 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00195 { /* info for Javascript */
  display:none;
}
.l_c00195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00195:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00195;src:url('chunks/assets/font_ea591abbc854d453ba506105.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_21cc0350cd923cee1bfc79a4.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;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_c00195;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00195{vertical-align:-61.938000px;}
.v3_c00195{vertical-align:-20.880000px;}
.v0_c00195{vertical-align:0.000000px;}
.v2_c00195{vertical-align:27.000000px;}
.lsc_c00195{letter-spacing:-0.360000px;}
.ls10_c00195{letter-spacing:-0.288000px;}
.lsd_c00195{letter-spacing:-0.216000px;}
.lse_c00195{letter-spacing:-0.072000px;}
.ls11_c00195{letter-spacing:-0.060120px;}
.lsb_c00195{letter-spacing:0.000000px;}
.ls1_c00195{letter-spacing:0.072000px;}
.lsa_c00195{letter-spacing:0.120240px;}
.ls4_c00195{letter-spacing:0.144000px;}
.ls12_c00195{letter-spacing:0.180360px;}
.ls5_c00195{letter-spacing:0.191520px;}
.lsf_c00195{letter-spacing:0.360000px;}
.ls3_c00195{letter-spacing:0.720000px;}
.ls6_c00195{letter-spacing:5.040000px;}
.ls9_c00195{letter-spacing:12.600000px;}
.ls7_c00195{letter-spacing:19.080000px;}
.ls8_c00195{letter-spacing:21.960000px;}
.ls2_c00195{letter-spacing:30.744000px;}
.ls0_c00195{letter-spacing:319.518000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00195{word-spacing:-18.144000px;}
.ws3_c00195{word-spacing:-18.072000px;}
.ws0_c00195{word-spacing:-18.000000px;}
.ws2_c00195{word-spacing:-17.928000px;}
.ws4_c00195{word-spacing:-17.784000px;}
.ws5_c00195{word-spacing:-12.161520px;}
.ws6_c00195{word-spacing:-9.720000px;}
.ws1b_c00195{word-spacing:-0.360000px;}
.ws8_c00195{word-spacing:-0.162000px;}
.ws11_c00195{word-spacing:-0.144000px;}
.ws9_c00195{word-spacing:-0.072000px;}
.ws38_c00195{word-spacing:-0.060120px;}
.ws7_c00195{word-spacing:0.000000px;}
.ws37_c00195{word-spacing:0.180360px;}
.wsd_c00195{word-spacing:0.216000px;}
.ws25_c00195{word-spacing:0.288000px;}
.wsb_c00195{word-spacing:0.360000px;}
.ws19_c00195{word-spacing:0.648000px;}
.ws17_c00195{word-spacing:0.720000px;}
.ws1e_c00195{word-spacing:1.368000px;}
.ws1f_c00195{word-spacing:1.800000px;}
.ws29_c00195{word-spacing:4.968000px;}
.ws28_c00195{word-spacing:5.040000px;}
.ws18_c00195{word-spacing:5.688000px;}
.wsc_c00195{word-spacing:5.760000px;}
.ws2b_c00195{word-spacing:6.768000px;}
.ws2a_c00195{word-spacing:6.840000px;}
.ws34_c00195{word-spacing:10.368000px;}
.ws32_c00195{word-spacing:10.728000px;}
.ws33_c00195{word-spacing:10.800000px;}
.ws27_c00195{word-spacing:11.880000px;}
.ws36_c00195{word-spacing:12.528000px;}
.ws35_c00195{word-spacing:12.600000px;}
.ws1d_c00195{word-spacing:13.680000px;}
.ws1c_c00195{word-spacing:14.040000px;}
.ws12_c00195{word-spacing:16.488000px;}
.ws13_c00195{word-spacing:16.560000px;}
.ws22_c00195{word-spacing:17.208000px;}
.ws23_c00195{word-spacing:17.280000px;}
.ws26_c00195{word-spacing:18.288000px;}
.ws24_c00195{word-spacing:18.360000px;}
.ws2c_c00195{word-spacing:19.440000px;}
.ws1a_c00195{word-spacing:20.016000px;}
.ws10_c00195{word-spacing:20.520000px;}
.wse_c00195{word-spacing:20.808000px;}
.wsf_c00195{word-spacing:20.880000px;}
.ws2e_c00195{word-spacing:21.528000px;}
.ws2d_c00195{word-spacing:21.888000px;}
.ws2f_c00195{word-spacing:21.960000px;}
.ws20_c00195{word-spacing:22.968000px;}
.ws21_c00195{word-spacing:23.040000px;}
.wsa_c00195{word-spacing:24.048000px;}
.ws31_c00195{word-spacing:27.288000px;}
.ws30_c00195{word-spacing:27.360000px;}
.ws15_c00195{word-spacing:57.888000px;}
.ws16_c00195{word-spacing:58.248000px;}
.ws14_c00195{word-spacing:58.320000px;}
._0_c00195{margin-left:-1.008000px;}
._2_c00195{width:1.296000px;}
._8_c00195{width:3.096000px;}
._3_c00195{width:4.968000px;}
._4_c00195{width:5.976000px;}
._a_c00195{width:10.008000px;}
._b_c00195{width:11.952000px;}
._7_c00195{width:13.752000px;}
._6_c00195{width:16.128000px;}
._5_c00195{width:21.528000px;}
._1_c00195{width:24.048000px;}
._9_c00195{width:27.360000px;}
.fc0_c00195{color:rgb(0,0,0);}
.fs3_c00195{font-size:38.880000px;}
.fs2_c00195{font-size:47.880000px;}
.fs0_c00195{font-size:54.000000px;}
.fs4_c00195{font-size:60.120000px;}
.fs1_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y26_c00195{bottom:57.240000px;}
.y25_c00195{bottom:109.795680px;}
.y24_c00195{bottom:132.210000px;}
.y27_c00195{bottom:144.900000px;}
.y23_c00195{bottom:178.920000px;}
.y22_c00195{bottom:209.970000px;}
.y21_c00195{bottom:241.020000px;}
.y20_c00195{bottom:272.070000px;}
.y1f_c00195{bottom:303.120000px;}
.y1e_c00195{bottom:334.170000px;}
.y1d_c00195{bottom:365.220000px;}
.y1c_c00195{bottom:396.270000px;}
.y1b_c00195{bottom:427.320000px;}
.y1a_c00195{bottom:458.370000px;}
.y19_c00195{bottom:489.420000px;}
.y18_c00195{bottom:520.470000px;}
.y17_c00195{bottom:551.520000px;}
.y16_c00195{bottom:582.570000px;}
.y15_c00195{bottom:613.620000px;}
.y14_c00195{bottom:644.670000px;}
.y13_c00195{bottom:675.720000px;}
.y12_c00195{bottom:706.770000px;}
.y11_c00195{bottom:737.820000px;}
.y10_c00195{bottom:768.870000px;}
.yf_c00195{bottom:799.920000px;}
.ye_c00195{bottom:830.970000px;}
.yd_c00195{bottom:861.930000px;}
.yc_c00195{bottom:892.980000px;}
.yb_c00195{bottom:924.030000px;}
.ya_c00195{bottom:955.080000px;}
.y9_c00195{bottom:986.130000px;}
.y8_c00195{bottom:1017.180000px;}
.y7_c00195{bottom:1048.230000px;}
.y6_c00195{bottom:1079.280000px;}
.y5_c00195{bottom:1110.330000px;}
.y4_c00195{bottom:1131.030000px;}
.y3_c00195{bottom:1150.915500px;}
.y2_c00195{bottom:1166.400000px;}
.y1_c00195{bottom:1197.450000px;}
.h6_c00195{height:38.158594px;}
.h2_c00195{height:52.998047px;}
.h7_c00195{height:59.004492px;}
.h3_c00195{height:70.664062px;}
.h5_c00195{height:73.991602px;}
.h4_c00195{height:75.093750px;}
.h0_c00195{height:1262.880000px;}
.h1_c00195{height:1263.000000px;}
.w0_c00195{width:893.070000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.x2_c00195{left:127.620000px;}
.x3_c00195{left:154.620000px;}
.x1_c00195{left:446.580000px;}
@media print{
.v1_c00195{vertical-align:-55.056000pt;}
.v3_c00195{vertical-align:-18.560000pt;}
.v0_c00195{vertical-align:0.000000pt;}
.v2_c00195{vertical-align:24.000000pt;}
.lsc_c00195{letter-spacing:-0.320000pt;}
.ls10_c00195{letter-spacing:-0.256000pt;}
.lsd_c00195{letter-spacing:-0.192000pt;}
.lse_c00195{letter-spacing:-0.064000pt;}
.ls11_c00195{letter-spacing:-0.053440pt;}
.lsb_c00195{letter-spacing:0.000000pt;}
.ls1_c00195{letter-spacing:0.064000pt;}
.lsa_c00195{letter-spacing:0.106880pt;}
.ls4_c00195{letter-spacing:0.128000pt;}
.ls12_c00195{letter-spacing:0.160320pt;}
.ls5_c00195{letter-spacing:0.170240pt;}
.lsf_c00195{letter-spacing:0.320000pt;}
.ls3_c00195{letter-spacing:0.640000pt;}
.ls6_c00195{letter-spacing:4.480000pt;}
.ls9_c00195{letter-spacing:11.200000pt;}
.ls7_c00195{letter-spacing:16.960000pt;}
.ls8_c00195{letter-spacing:19.520000pt;}
.ls2_c00195{letter-spacing:27.328000pt;}
.ls0_c00195{letter-spacing:284.016000pt;}
.ws1_c00195{word-spacing:-16.128000pt;}
.ws3_c00195{word-spacing:-16.064000pt;}
.ws0_c00195{word-spacing:-16.000000pt;}
.ws2_c00195{word-spacing:-15.936000pt;}
.ws4_c00195{word-spacing:-15.808000pt;}
.ws5_c00195{word-spacing:-10.810240pt;}
.ws6_c00195{word-spacing:-8.640000pt;}
.ws1b_c00195{word-spacing:-0.320000pt;}
.ws8_c00195{word-spacing:-0.144000pt;}
.ws11_c00195{word-spacing:-0.128000pt;}
.ws9_c00195{word-spacing:-0.064000pt;}
.ws38_c00195{word-spacing:-0.053440pt;}
.ws7_c00195{word-spacing:0.000000pt;}
.ws37_c00195{word-spacing:0.160320pt;}
.wsd_c00195{word-spacing:0.192000pt;}
.ws25_c00195{word-spacing:0.256000pt;}
.wsb_c00195{word-spacing:0.320000pt;}
.ws19_c00195{word-spacing:0.576000pt;}
.ws17_c00195{word-spacing:0.640000pt;}
.ws1e_c00195{word-spacing:1.216000pt;}
.ws1f_c00195{word-spacing:1.600000pt;}
.ws29_c00195{word-spacing:4.416000pt;}
.ws28_c00195{word-spacing:4.480000pt;}
.ws18_c00195{word-spacing:5.056000pt;}
.wsc_c00195{word-spacing:5.120000pt;}
.ws2b_c00195{word-spacing:6.016000pt;}
.ws2a_c00195{word-spacing:6.080000pt;}
.ws34_c00195{word-spacing:9.216000pt;}
.ws32_c00195{word-spacing:9.536000pt;}
.ws33_c00195{word-spacing:9.600000pt;}
.ws27_c00195{word-spacing:10.560000pt;}
.ws36_c00195{word-spacing:11.136000pt;}
.ws35_c00195{word-spacing:11.200000pt;}
.ws1d_c00195{word-spacing:12.160000pt;}
.ws1c_c00195{word-spacing:12.480000pt;}
.ws12_c00195{word-spacing:14.656000pt;}
.ws13_c00195{word-spacing:14.720000pt;}
.ws22_c00195{word-spacing:15.296000pt;}
.ws23_c00195{word-spacing:15.360000pt;}
.ws26_c00195{word-spacing:16.256000pt;}
.ws24_c00195{word-spacing:16.320000pt;}
.ws2c_c00195{word-spacing:17.280000pt;}
.ws1a_c00195{word-spacing:17.792000pt;}
.ws10_c00195{word-spacing:18.240000pt;}
.wse_c00195{word-spacing:18.496000pt;}
.wsf_c00195{word-spacing:18.560000pt;}
.ws2e_c00195{word-spacing:19.136000pt;}
.ws2d_c00195{word-spacing:19.456000pt;}
.ws2f_c00195{word-spacing:19.520000pt;}
.ws20_c00195{word-spacing:20.416000pt;}
.ws21_c00195{word-spacing:20.480000pt;}
.wsa_c00195{word-spacing:21.376000pt;}
.ws31_c00195{word-spacing:24.256000pt;}
.ws30_c00195{word-spacing:24.320000pt;}
.ws15_c00195{word-spacing:51.456000pt;}
.ws16_c00195{word-spacing:51.776000pt;}
.ws14_c00195{word-spacing:51.840000pt;}
._0_c00195{margin-left:-0.896000pt;}
._2_c00195{width:1.152000pt;}
._8_c00195{width:2.752000pt;}
._3_c00195{width:4.416000pt;}
._4_c00195{width:5.312000pt;}
._a_c00195{width:8.896000pt;}
._b_c00195{width:10.624000pt;}
._7_c00195{width:12.224000pt;}
._6_c00195{width:14.336000pt;}
._5_c00195{width:19.136000pt;}
._1_c00195{width:21.376000pt;}
._9_c00195{width:24.320000pt;}
.fs3_c00195{font-size:34.560000pt;}
.fs2_c00195{font-size:42.560000pt;}
.fs0_c00195{font-size:48.000000pt;}
.fs4_c00195{font-size:53.440000pt;}
.fs1_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y26_c00195{bottom:50.880000pt;}
.y25_c00195{bottom:97.596160pt;}
.y24_c00195{bottom:117.520000pt;}
.y27_c00195{bottom:128.800000pt;}
.y23_c00195{bottom:159.040000pt;}
.y22_c00195{bottom:186.640000pt;}
.y21_c00195{bottom:214.240000pt;}
.y20_c00195{bottom:241.840000pt;}
.y1f_c00195{bottom:269.440000pt;}
.y1e_c00195{bottom:297.040000pt;}
.y1d_c00195{bottom:324.640000pt;}
.y1c_c00195{bottom:352.240000pt;}
.y1b_c00195{bottom:379.840000pt;}
.y1a_c00195{bottom:407.440000pt;}
.y19_c00195{bottom:435.040000pt;}
.y18_c00195{bottom:462.640000pt;}
.y17_c00195{bottom:490.240000pt;}
.y16_c00195{bottom:517.840000pt;}
.y15_c00195{bottom:545.440000pt;}
.y14_c00195{bottom:573.040000pt;}
.y13_c00195{bottom:600.640000pt;}
.y12_c00195{bottom:628.240000pt;}
.y11_c00195{bottom:655.840000pt;}
.y10_c00195{bottom:683.440000pt;}
.yf_c00195{bottom:711.040000pt;}
.ye_c00195{bottom:738.640000pt;}
.yd_c00195{bottom:766.160000pt;}
.yc_c00195{bottom:793.760000pt;}
.yb_c00195{bottom:821.360000pt;}
.ya_c00195{bottom:848.960000pt;}
.y9_c00195{bottom:876.560000pt;}
.y8_c00195{bottom:904.160000pt;}
.y7_c00195{bottom:931.760000pt;}
.y6_c00195{bottom:959.360000pt;}
.y5_c00195{bottom:986.960000pt;}
.y4_c00195{bottom:1005.360000pt;}
.y3_c00195{bottom:1023.036000pt;}
.y2_c00195{bottom:1036.800000pt;}
.y1_c00195{bottom:1064.400000pt;}
.h6_c00195{height:33.918750pt;}
.h2_c00195{height:47.109375pt;}
.h7_c00195{height:52.448437pt;}
.h3_c00195{height:62.812500pt;}
.h5_c00195{height:65.770313pt;}
.h4_c00195{height:66.750000pt;}
.h0_c00195{height:1122.560000pt;}
.h1_c00195{height:1122.666667pt;}
.w0_c00195{width:793.840000pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.x2_c00195{left:113.440000pt;}
.x3_c00195{left:137.440000pt;}
.x1_c00195{left:396.960000pt;}
}





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

.ir_c00196:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00196;src:url('chunks/assets/font_1daf2c5924880ae034dea48d.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_16b25e4e24a1aa18fb5aefae.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;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_c00196;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.lsc_c00196{letter-spacing:-0.432000px;}
.lsb_c00196{letter-spacing:-0.360000px;}
.lsa_c00196{letter-spacing:-0.288000px;}
.ls9_c00196{letter-spacing:-0.108000px;}
.ls8_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.072000px;}
.ls4_c00196{letter-spacing:0.144000px;}
.lsd_c00196{letter-spacing:0.360000px;}
.ls5_c00196{letter-spacing:6.840000px;}
.ls3_c00196{letter-spacing:7.920000px;}
.ls2_c00196{letter-spacing:18.000000px;}
.ls6_c00196{letter-spacing:27.720000px;}
.ls7_c00196{letter-spacing:28.080000px;}
.ls1_c00196{letter-spacing:30.744000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00196{word-spacing:-18.144000px;}
.ws0_c00196{word-spacing:-18.072000px;}
.ws3_c00196{word-spacing:-18.000000px;}
.ws4_c00196{word-spacing:-17.712000px;}
.ws1_c00196{word-spacing:-17.640000px;}
.ws5_c00196{word-spacing:-17.568000px;}
.ws23_c00196{word-spacing:-0.432000px;}
.ws2c_c00196{word-spacing:-0.360000px;}
.ws13_c00196{word-spacing:-0.144000px;}
.wsd_c00196{word-spacing:-0.072000px;}
.ws6_c00196{word-spacing:0.000000px;}
.ws8_c00196{word-spacing:0.162000px;}
.ws7_c00196{word-spacing:0.270000px;}
.ws29_c00196{word-spacing:0.288000px;}
.ws15_c00196{word-spacing:2.448000px;}
.ws16_c00196{word-spacing:2.520000px;}
.ws24_c00196{word-spacing:2.808000px;}
.ws33_c00196{word-spacing:2.880000px;}
.wse_c00196{word-spacing:3.528000px;}
.ws31_c00196{word-spacing:3.600000px;}
.wsa_c00196{word-spacing:4.248000px;}
.wsb_c00196{word-spacing:4.320000px;}
.ws9_c00196{word-spacing:4.968000px;}
.ws26_c00196{word-spacing:5.328000px;}
.ws27_c00196{word-spacing:5.400000px;}
.ws28_c00196{word-spacing:6.408000px;}
.ws1e_c00196{word-spacing:6.696000px;}
.ws2a_c00196{word-spacing:6.768000px;}
.ws1d_c00196{word-spacing:6.840000px;}
.ws10_c00196{word-spacing:7.128000px;}
.ws11_c00196{word-spacing:7.200000px;}
.ws20_c00196{word-spacing:7.416000px;}
.ws1f_c00196{word-spacing:7.488000px;}
.ws18_c00196{word-spacing:7.560000px;}
.ws17_c00196{word-spacing:7.920000px;}
.ws19_c00196{word-spacing:10.080000px;}
.ws1a_c00196{word-spacing:10.440000px;}
.ws25_c00196{word-spacing:10.800000px;}
.ws2f_c00196{word-spacing:11.448000px;}
.ws30_c00196{word-spacing:11.520000px;}
.ws22_c00196{word-spacing:12.600000px;}
.ws21_c00196{word-spacing:12.960000px;}
.wsc_c00196{word-spacing:13.680000px;}
.wsf_c00196{word-spacing:18.000000px;}
.ws32_c00196{word-spacing:18.720000px;}
.ws1b_c00196{word-spacing:20.448000px;}
.ws1c_c00196{word-spacing:20.520000px;}
.ws2e_c00196{word-spacing:25.848000px;}
.ws2d_c00196{word-spacing:25.920000px;}
.ws14_c00196{word-spacing:26.928000px;}
.ws12_c00196{word-spacing:27.000000px;}
.ws2b_c00196{word-spacing:28.080000px;}
._1_c00196{margin-left:-1.058400px;}
._0_c00196{width:1.220400px;}
._9_c00196{width:5.965200px;}
._2_c00196{width:7.117200px;}
._4_c00196{width:8.496000px;}
._6_c00196{width:9.648000px;}
._5_c00196{width:10.656000px;}
._c_c00196{width:12.456000px;}
._8_c00196{width:13.680000px;}
._7_c00196{width:20.304000px;}
._b_c00196{width:25.776000px;}
._3_c00196{width:27.216000px;}
._a_c00196{width:28.224000px;}
.fc0_c00196{color:rgb(0,0,0);}
.fs0_c00196{font-size:54.000000px;}
.fs1_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y27_c00196{bottom:57.240000px;}
.y26_c00196{bottom:116.820000px;}
.y25_c00196{bottom:147.870000px;}
.y24_c00196{bottom:178.920000px;}
.y23_c00196{bottom:209.970000px;}
.y22_c00196{bottom:241.020000px;}
.y21_c00196{bottom:272.070000px;}
.y20_c00196{bottom:303.120000px;}
.y1f_c00196{bottom:334.170000px;}
.y1e_c00196{bottom:365.220000px;}
.y1d_c00196{bottom:396.270000px;}
.y1c_c00196{bottom:427.320000px;}
.y1b_c00196{bottom:458.370000px;}
.y1a_c00196{bottom:489.420000px;}
.y19_c00196{bottom:520.470000px;}
.y18_c00196{bottom:551.520000px;}
.y17_c00196{bottom:582.570000px;}
.y16_c00196{bottom:613.620000px;}
.y15_c00196{bottom:644.670000px;}
.y14_c00196{bottom:675.720000px;}
.y13_c00196{bottom:706.770000px;}
.y12_c00196{bottom:737.820000px;}
.y11_c00196{bottom:768.870000px;}
.y10_c00196{bottom:799.920000px;}
.yf_c00196{bottom:830.970000px;}
.ye_c00196{bottom:861.930000px;}
.yd_c00196{bottom:892.980000px;}
.yc_c00196{bottom:924.030000px;}
.yb_c00196{bottom:955.080000px;}
.ya_c00196{bottom:986.130000px;}
.y9_c00196{bottom:1017.180000px;}
.y8_c00196{bottom:1048.230000px;}
.y7_c00196{bottom:1079.280000px;}
.y6_c00196{bottom:1110.330000px;}
.y5_c00196{bottom:1131.030000px;}
.y4_c00196{bottom:1150.920000px;}
.y3_c00196{bottom:1166.404500px;}
.y2_c00196{bottom:1181.970000px;}
.y1_c00196{bottom:1197.450000px;}
.h3_c00196{height:52.971680px;}
.h2_c00196{height:52.998047px;}
.h4_c00196{height:70.664062px;}
.h5_c00196{height:75.093750px;}
.h0_c00196{height:1262.880000px;}
.h1_c00196{height:1263.000000px;}
.w0_c00196{width:893.070000px;}
.w1_c00196{width:893.250000px;}
.x0_c00196{left:0.000000px;}
.x3_c00196{left:127.620000px;}
.x4_c00196{left:154.620000px;}
.x2_c00196{left:425.160000px;}
.x1_c00196{left:446.580000px;}
.x5_c00196{left:738.540000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.lsc_c00196{letter-spacing:-0.384000pt;}
.lsb_c00196{letter-spacing:-0.320000pt;}
.lsa_c00196{letter-spacing:-0.256000pt;}
.ls9_c00196{letter-spacing:-0.096000pt;}
.ls8_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.064000pt;}
.ls4_c00196{letter-spacing:0.128000pt;}
.lsd_c00196{letter-spacing:0.320000pt;}
.ls5_c00196{letter-spacing:6.080000pt;}
.ls3_c00196{letter-spacing:7.040000pt;}
.ls2_c00196{letter-spacing:16.000000pt;}
.ls6_c00196{letter-spacing:24.640000pt;}
.ls7_c00196{letter-spacing:24.960000pt;}
.ls1_c00196{letter-spacing:27.328000pt;}
.ws2_c00196{word-spacing:-16.128000pt;}
.ws0_c00196{word-spacing:-16.064000pt;}
.ws3_c00196{word-spacing:-16.000000pt;}
.ws4_c00196{word-spacing:-15.744000pt;}
.ws1_c00196{word-spacing:-15.680000pt;}
.ws5_c00196{word-spacing:-15.616000pt;}
.ws23_c00196{word-spacing:-0.384000pt;}
.ws2c_c00196{word-spacing:-0.320000pt;}
.ws13_c00196{word-spacing:-0.128000pt;}
.wsd_c00196{word-spacing:-0.064000pt;}
.ws6_c00196{word-spacing:0.000000pt;}
.ws8_c00196{word-spacing:0.144000pt;}
.ws7_c00196{word-spacing:0.240000pt;}
.ws29_c00196{word-spacing:0.256000pt;}
.ws15_c00196{word-spacing:2.176000pt;}
.ws16_c00196{word-spacing:2.240000pt;}
.ws24_c00196{word-spacing:2.496000pt;}
.ws33_c00196{word-spacing:2.560000pt;}
.wse_c00196{word-spacing:3.136000pt;}
.ws31_c00196{word-spacing:3.200000pt;}
.wsa_c00196{word-spacing:3.776000pt;}
.wsb_c00196{word-spacing:3.840000pt;}
.ws9_c00196{word-spacing:4.416000pt;}
.ws26_c00196{word-spacing:4.736000pt;}
.ws27_c00196{word-spacing:4.800000pt;}
.ws28_c00196{word-spacing:5.696000pt;}
.ws1e_c00196{word-spacing:5.952000pt;}
.ws2a_c00196{word-spacing:6.016000pt;}
.ws1d_c00196{word-spacing:6.080000pt;}
.ws10_c00196{word-spacing:6.336000pt;}
.ws11_c00196{word-spacing:6.400000pt;}
.ws20_c00196{word-spacing:6.592000pt;}
.ws1f_c00196{word-spacing:6.656000pt;}
.ws18_c00196{word-spacing:6.720000pt;}
.ws17_c00196{word-spacing:7.040000pt;}
.ws19_c00196{word-spacing:8.960000pt;}
.ws1a_c00196{word-spacing:9.280000pt;}
.ws25_c00196{word-spacing:9.600000pt;}
.ws2f_c00196{word-spacing:10.176000pt;}
.ws30_c00196{word-spacing:10.240000pt;}
.ws22_c00196{word-spacing:11.200000pt;}
.ws21_c00196{word-spacing:11.520000pt;}
.wsc_c00196{word-spacing:12.160000pt;}
.wsf_c00196{word-spacing:16.000000pt;}
.ws32_c00196{word-spacing:16.640000pt;}
.ws1b_c00196{word-spacing:18.176000pt;}
.ws1c_c00196{word-spacing:18.240000pt;}
.ws2e_c00196{word-spacing:22.976000pt;}
.ws2d_c00196{word-spacing:23.040000pt;}
.ws14_c00196{word-spacing:23.936000pt;}
.ws12_c00196{word-spacing:24.000000pt;}
.ws2b_c00196{word-spacing:24.960000pt;}
._1_c00196{margin-left:-0.940800pt;}
._0_c00196{width:1.084800pt;}
._9_c00196{width:5.302400pt;}
._2_c00196{width:6.326400pt;}
._4_c00196{width:7.552000pt;}
._6_c00196{width:8.576000pt;}
._5_c00196{width:9.472000pt;}
._c_c00196{width:11.072000pt;}
._8_c00196{width:12.160000pt;}
._7_c00196{width:18.048000pt;}
._b_c00196{width:22.912000pt;}
._3_c00196{width:24.192000pt;}
._a_c00196{width:25.088000pt;}
.fs0_c00196{font-size:48.000000pt;}
.fs1_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y27_c00196{bottom:50.880000pt;}
.y26_c00196{bottom:103.840000pt;}
.y25_c00196{bottom:131.440000pt;}
.y24_c00196{bottom:159.040000pt;}
.y23_c00196{bottom:186.640000pt;}
.y22_c00196{bottom:214.240000pt;}
.y21_c00196{bottom:241.840000pt;}
.y20_c00196{bottom:269.440000pt;}
.y1f_c00196{bottom:297.040000pt;}
.y1e_c00196{bottom:324.640000pt;}
.y1d_c00196{bottom:352.240000pt;}
.y1c_c00196{bottom:379.840000pt;}
.y1b_c00196{bottom:407.440000pt;}
.y1a_c00196{bottom:435.040000pt;}
.y19_c00196{bottom:462.640000pt;}
.y18_c00196{bottom:490.240000pt;}
.y17_c00196{bottom:517.840000pt;}
.y16_c00196{bottom:545.440000pt;}
.y15_c00196{bottom:573.040000pt;}
.y14_c00196{bottom:600.640000pt;}
.y13_c00196{bottom:628.240000pt;}
.y12_c00196{bottom:655.840000pt;}
.y11_c00196{bottom:683.440000pt;}
.y10_c00196{bottom:711.040000pt;}
.yf_c00196{bottom:738.640000pt;}
.ye_c00196{bottom:766.160000pt;}
.yd_c00196{bottom:793.760000pt;}
.yc_c00196{bottom:821.360000pt;}
.yb_c00196{bottom:848.960000pt;}
.ya_c00196{bottom:876.560000pt;}
.y9_c00196{bottom:904.160000pt;}
.y8_c00196{bottom:931.760000pt;}
.y7_c00196{bottom:959.360000pt;}
.y6_c00196{bottom:986.960000pt;}
.y5_c00196{bottom:1005.360000pt;}
.y4_c00196{bottom:1023.040000pt;}
.y3_c00196{bottom:1036.804000pt;}
.y2_c00196{bottom:1050.640000pt;}
.y1_c00196{bottom:1064.400000pt;}
.h3_c00196{height:47.085938pt;}
.h2_c00196{height:47.109375pt;}
.h4_c00196{height:62.812500pt;}
.h5_c00196{height:66.750000pt;}
.h0_c00196{height:1122.560000pt;}
.h1_c00196{height:1122.666667pt;}
.w0_c00196{width:793.840000pt;}
.w1_c00196{width:794.000000pt;}
.x0_c00196{left:0.000000pt;}
.x3_c00196{left:113.440000pt;}
.x4_c00196{left:137.440000pt;}
.x2_c00196{left:377.920000pt;}
.x1_c00196{left:396.960000pt;}
.x5_c00196{left:656.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_c00197 {
    display:none;
  }
  .loading-indicator_c00197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00197 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00197 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00197" -> "#page-container .classname_c00197")
 */
.pf_c00197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00197 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00197 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00197 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00197 {overflow:visible;}
  }
}
.c_c00197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00197 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00197:after { /* webkit #35443 */
  content: '';
}
.t_c00197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00197 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00197 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00197 { /* info for Javascript */
  display:none;
}
.l_c00197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00197:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00197;src:url('chunks/assets/font_cd759a0628e440e8e8424085.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_bc72b71cf958a2dc576950d1.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;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_c00197;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00197{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00197{vertical-align:-61.938000px;}
.v0_c00197{vertical-align:0.000000px;}
.ls11_c00197{letter-spacing:-0.576000px;}
.ls12_c00197{letter-spacing:-0.360000px;}
.ls10_c00197{letter-spacing:-0.072000px;}
.lse_c00197{letter-spacing:0.000000px;}
.ls2_c00197{letter-spacing:0.072000px;}
.lsf_c00197{letter-spacing:0.144000px;}
.lsa_c00197{letter-spacing:1.440000px;}
.ls8_c00197{letter-spacing:2.160000px;}
.ls6_c00197{letter-spacing:3.240000px;}
.ls4_c00197{letter-spacing:4.320000px;}
.ls1_c00197{letter-spacing:5.400000px;}
.ls3_c00197{letter-spacing:7.200000px;}
.ls5_c00197{letter-spacing:9.360000px;}
.lsb_c00197{letter-spacing:10.800000px;}
.lsc_c00197{letter-spacing:11.160000px;}
.ls7_c00197{letter-spacing:12.240000px;}
.lsd_c00197{letter-spacing:19.080000px;}
.ls9_c00197{letter-spacing:30.744000px;}
.ls0_c00197{letter-spacing:319.518000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00197{word-spacing:-18.144000px;}
.ws0_c00197{word-spacing:-18.072000px;}
.ws4_c00197{word-spacing:-18.000000px;}
.ws2_c00197{word-spacing:-17.928000px;}
.ws3_c00197{word-spacing:-17.424000px;}
.ws6_c00197{word-spacing:-0.162000px;}
.ws26_c00197{word-spacing:-0.144000px;}
.ws7_c00197{word-spacing:-0.072000px;}
.ws5_c00197{word-spacing:0.000000px;}
.ws1e_c00197{word-spacing:1.368000px;}
.ws1d_c00197{word-spacing:1.440000px;}
.ws16_c00197{word-spacing:2.088000px;}
.ws15_c00197{word-spacing:2.160000px;}
.ws17_c00197{word-spacing:2.808000px;}
.ws12_c00197{word-spacing:3.096000px;}
.ws13_c00197{word-spacing:3.168000px;}
.ws11_c00197{word-spacing:3.240000px;}
.ws21_c00197{word-spacing:3.600000px;}
.ws20_c00197{word-spacing:3.960000px;}
.wse_c00197{word-spacing:4.536000px;}
.wsf_c00197{word-spacing:4.608000px;}
.wsd_c00197{word-spacing:4.680000px;}
.ws27_c00197{word-spacing:4.896000px;}
.ws28_c00197{word-spacing:5.040000px;}
.ws9_c00197{word-spacing:5.328000px;}
.ws8_c00197{word-spacing:5.400000px;}
.wsa_c00197{word-spacing:7.128000px;}
.wsb_c00197{word-spacing:7.200000px;}
.ws1f_c00197{word-spacing:8.280000px;}
.ws10_c00197{word-spacing:9.360000px;}
.ws19_c00197{word-spacing:10.368000px;}
.ws1a_c00197{word-spacing:10.440000px;}
.ws2a_c00197{word-spacing:10.728000px;}
.ws25_c00197{word-spacing:10.800000px;}
.ws29_c00197{word-spacing:11.160000px;}
.ws14_c00197{word-spacing:12.528000px;}
.wsc_c00197{word-spacing:12.600000px;}
.ws18_c00197{word-spacing:13.248000px;}
.ws24_c00197{word-spacing:14.688000px;}
.ws23_c00197{word-spacing:14.760000px;}
.ws1c_c00197{word-spacing:18.648000px;}
.ws1b_c00197{word-spacing:18.720000px;}
.ws2b_c00197{word-spacing:19.080000px;}
.ws2c_c00197{word-spacing:19.440000px;}
.ws22_c00197{word-spacing:26.640000px;}
._0_c00197{margin-left:-1.303200px;}
._2_c00197{width:1.008000px;}
._1_c00197{width:5.256000px;}
._5_c00197{width:9.216000px;}
._6_c00197{width:10.519200px;}
._3_c00197{width:12.744000px;}
._4_c00197{width:19.152000px;}
.fc0_c00197{color:rgb(0,0,0);}
.fs0_c00197{font-size:54.000000px;}
.fs1_c00197{font-size:72.000000px;}
.y0_c00197{bottom:0.000000px;}
.y26_c00197{bottom:57.240000px;}
.y25_c00197{bottom:116.820000px;}
.y24_c00197{bottom:147.870000px;}
.y23_c00197{bottom:178.920000px;}
.y22_c00197{bottom:209.970000px;}
.y21_c00197{bottom:241.020000px;}
.y20_c00197{bottom:272.070000px;}
.y1f_c00197{bottom:303.120000px;}
.y1e_c00197{bottom:334.170000px;}
.y1d_c00197{bottom:365.220000px;}
.y1c_c00197{bottom:396.270000px;}
.y1b_c00197{bottom:427.320000px;}
.y1a_c00197{bottom:458.370000px;}
.y19_c00197{bottom:489.420000px;}
.y18_c00197{bottom:520.470000px;}
.y17_c00197{bottom:551.520000px;}
.y16_c00197{bottom:582.570000px;}
.y15_c00197{bottom:613.620000px;}
.y14_c00197{bottom:644.670000px;}
.y13_c00197{bottom:675.720000px;}
.y12_c00197{bottom:706.770000px;}
.y11_c00197{bottom:737.820000px;}
.y10_c00197{bottom:768.870000px;}
.yf_c00197{bottom:799.920000px;}
.ye_c00197{bottom:830.970000px;}
.yd_c00197{bottom:861.930000px;}
.yc_c00197{bottom:892.980000px;}
.yb_c00197{bottom:924.030000px;}
.ya_c00197{bottom:955.080000px;}
.y9_c00197{bottom:986.130000px;}
.y8_c00197{bottom:1017.180000px;}
.y7_c00197{bottom:1048.230000px;}
.y6_c00197{bottom:1079.280000px;}
.y5_c00197{bottom:1110.330000px;}
.y4_c00197{bottom:1131.030000px;}
.y3_c00197{bottom:1150.915500px;}
.y2_c00197{bottom:1166.400000px;}
.y1_c00197{bottom:1197.450000px;}
.h2_c00197{height:52.998047px;}
.h3_c00197{height:70.664062px;}
.h4_c00197{height:75.093750px;}
.h0_c00197{height:1262.880000px;}
.h1_c00197{height:1263.000000px;}
.w0_c00197{width:893.070000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x2_c00197{left:127.620000px;}
.x3_c00197{left:154.620000px;}
.x4_c00197{left:181.620000px;}
.x1_c00197{left:446.580000px;}
@media print{
.v1_c00197{vertical-align:-55.056000pt;}
.v0_c00197{vertical-align:0.000000pt;}
.ls11_c00197{letter-spacing:-0.512000pt;}
.ls12_c00197{letter-spacing:-0.320000pt;}
.ls10_c00197{letter-spacing:-0.064000pt;}
.lse_c00197{letter-spacing:0.000000pt;}
.ls2_c00197{letter-spacing:0.064000pt;}
.lsf_c00197{letter-spacing:0.128000pt;}
.lsa_c00197{letter-spacing:1.280000pt;}
.ls8_c00197{letter-spacing:1.920000pt;}
.ls6_c00197{letter-spacing:2.880000pt;}
.ls4_c00197{letter-spacing:3.840000pt;}
.ls1_c00197{letter-spacing:4.800000pt;}
.ls3_c00197{letter-spacing:6.400000pt;}
.ls5_c00197{letter-spacing:8.320000pt;}
.lsb_c00197{letter-spacing:9.600000pt;}
.lsc_c00197{letter-spacing:9.920000pt;}
.ls7_c00197{letter-spacing:10.880000pt;}
.lsd_c00197{letter-spacing:16.960000pt;}
.ls9_c00197{letter-spacing:27.328000pt;}
.ls0_c00197{letter-spacing:284.016000pt;}
.ws1_c00197{word-spacing:-16.128000pt;}
.ws0_c00197{word-spacing:-16.064000pt;}
.ws4_c00197{word-spacing:-16.000000pt;}
.ws2_c00197{word-spacing:-15.936000pt;}
.ws3_c00197{word-spacing:-15.488000pt;}
.ws6_c00197{word-spacing:-0.144000pt;}
.ws26_c00197{word-spacing:-0.128000pt;}
.ws7_c00197{word-spacing:-0.064000pt;}
.ws5_c00197{word-spacing:0.000000pt;}
.ws1e_c00197{word-spacing:1.216000pt;}
.ws1d_c00197{word-spacing:1.280000pt;}
.ws16_c00197{word-spacing:1.856000pt;}
.ws15_c00197{word-spacing:1.920000pt;}
.ws17_c00197{word-spacing:2.496000pt;}
.ws12_c00197{word-spacing:2.752000pt;}
.ws13_c00197{word-spacing:2.816000pt;}
.ws11_c00197{word-spacing:2.880000pt;}
.ws21_c00197{word-spacing:3.200000pt;}
.ws20_c00197{word-spacing:3.520000pt;}
.wse_c00197{word-spacing:4.032000pt;}
.wsf_c00197{word-spacing:4.096000pt;}
.wsd_c00197{word-spacing:4.160000pt;}
.ws27_c00197{word-spacing:4.352000pt;}
.ws28_c00197{word-spacing:4.480000pt;}
.ws9_c00197{word-spacing:4.736000pt;}
.ws8_c00197{word-spacing:4.800000pt;}
.wsa_c00197{word-spacing:6.336000pt;}
.wsb_c00197{word-spacing:6.400000pt;}
.ws1f_c00197{word-spacing:7.360000pt;}
.ws10_c00197{word-spacing:8.320000pt;}
.ws19_c00197{word-spacing:9.216000pt;}
.ws1a_c00197{word-spacing:9.280000pt;}
.ws2a_c00197{word-spacing:9.536000pt;}
.ws25_c00197{word-spacing:9.600000pt;}
.ws29_c00197{word-spacing:9.920000pt;}
.ws14_c00197{word-spacing:11.136000pt;}
.wsc_c00197{word-spacing:11.200000pt;}
.ws18_c00197{word-spacing:11.776000pt;}
.ws24_c00197{word-spacing:13.056000pt;}
.ws23_c00197{word-spacing:13.120000pt;}
.ws1c_c00197{word-spacing:16.576000pt;}
.ws1b_c00197{word-spacing:16.640000pt;}
.ws2b_c00197{word-spacing:16.960000pt;}
.ws2c_c00197{word-spacing:17.280000pt;}
.ws22_c00197{word-spacing:23.680000pt;}
._0_c00197{margin-left:-1.158400pt;}
._2_c00197{width:0.896000pt;}
._1_c00197{width:4.672000pt;}
._5_c00197{width:8.192000pt;}
._6_c00197{width:9.350400pt;}
._3_c00197{width:11.328000pt;}
._4_c00197{width:17.024000pt;}
.fs0_c00197{font-size:48.000000pt;}
.fs1_c00197{font-size:64.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y26_c00197{bottom:50.880000pt;}
.y25_c00197{bottom:103.840000pt;}
.y24_c00197{bottom:131.440000pt;}
.y23_c00197{bottom:159.040000pt;}
.y22_c00197{bottom:186.640000pt;}
.y21_c00197{bottom:214.240000pt;}
.y20_c00197{bottom:241.840000pt;}
.y1f_c00197{bottom:269.440000pt;}
.y1e_c00197{bottom:297.040000pt;}
.y1d_c00197{bottom:324.640000pt;}
.y1c_c00197{bottom:352.240000pt;}
.y1b_c00197{bottom:379.840000pt;}
.y1a_c00197{bottom:407.440000pt;}
.y19_c00197{bottom:435.040000pt;}
.y18_c00197{bottom:462.640000pt;}
.y17_c00197{bottom:490.240000pt;}
.y16_c00197{bottom:517.840000pt;}
.y15_c00197{bottom:545.440000pt;}
.y14_c00197{bottom:573.040000pt;}
.y13_c00197{bottom:600.640000pt;}
.y12_c00197{bottom:628.240000pt;}
.y11_c00197{bottom:655.840000pt;}
.y10_c00197{bottom:683.440000pt;}
.yf_c00197{bottom:711.040000pt;}
.ye_c00197{bottom:738.640000pt;}
.yd_c00197{bottom:766.160000pt;}
.yc_c00197{bottom:793.760000pt;}
.yb_c00197{bottom:821.360000pt;}
.ya_c00197{bottom:848.960000pt;}
.y9_c00197{bottom:876.560000pt;}
.y8_c00197{bottom:904.160000pt;}
.y7_c00197{bottom:931.760000pt;}
.y6_c00197{bottom:959.360000pt;}
.y5_c00197{bottom:986.960000pt;}
.y4_c00197{bottom:1005.360000pt;}
.y3_c00197{bottom:1023.036000pt;}
.y2_c00197{bottom:1036.800000pt;}
.y1_c00197{bottom:1064.400000pt;}
.h2_c00197{height:47.109375pt;}
.h3_c00197{height:62.812500pt;}
.h4_c00197{height:66.750000pt;}
.h0_c00197{height:1122.560000pt;}
.h1_c00197{height:1122.666667pt;}
.w0_c00197{width:793.840000pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x2_c00197{left:113.440000pt;}
.x3_c00197{left:137.440000pt;}
.x4_c00197{left:161.440000pt;}
.x1_c00197{left:396.960000pt;}
}





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

.ir_c00198:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00198;src:url('chunks/assets/font_94e778e199c57c20312fa80d.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_314ae228e74946c61725eaf3.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;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_c00198;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00198{vertical-align:-20.880000px;}
.v0_c00198{vertical-align:0.000000px;}
.v1_c00198{vertical-align:27.000000px;}
.ls12_c00198{letter-spacing:-0.576000px;}
.ls14_c00198{letter-spacing:-0.420840px;}
.ls11_c00198{letter-spacing:-0.216000px;}
.ls15_c00198{letter-spacing:-0.120240px;}
.ls10_c00198{letter-spacing:-0.108000px;}
.ls13_c00198{letter-spacing:-0.060120px;}
.lsf_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:0.072000px;}
.lsa_c00198{letter-spacing:0.144000px;}
.ls16_c00198{letter-spacing:0.180360px;}
.ls3_c00198{letter-spacing:0.191520px;}
.ls7_c00198{letter-spacing:0.360000px;}
.ls5_c00198{letter-spacing:2.520000px;}
.ls6_c00198{letter-spacing:2.527200px;}
.lse_c00198{letter-spacing:4.028040px;}
.ls8_c00198{letter-spacing:5.400000px;}
.lsb_c00198{letter-spacing:8.640000px;}
.lsc_c00198{letter-spacing:11.527200px;}
.ls4_c00198{letter-spacing:12.600000px;}
.lsd_c00198{letter-spacing:13.320000px;}
.ls1_c00198{letter-spacing:13.327200px;}
.ls2_c00198{letter-spacing:13.680000px;}
.ls9_c00198{letter-spacing:30.744000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-18.144000px;}
.ws3_c00198{word-spacing:-18.072000px;}
.ws2_c00198{word-spacing:-17.424000px;}
.ws1_c00198{word-spacing:-12.161520px;}
.ws4_c00198{word-spacing:-9.720000px;}
.ws13_c00198{word-spacing:-0.360000px;}
.ws17_c00198{word-spacing:-0.144000px;}
.wsa_c00198{word-spacing:-0.072000px;}
.ws5_c00198{word-spacing:0.000000px;}
.ws7_c00198{word-spacing:0.162000px;}
.ws30_c00198{word-spacing:0.180360px;}
.ws18_c00198{word-spacing:0.216000px;}
.ws31_c00198{word-spacing:0.240480px;}
.ws6_c00198{word-spacing:0.270000px;}
.ws2c_c00198{word-spacing:0.420840px;}
.ws1c_c00198{word-spacing:0.720000px;}
.ws1d_c00198{word-spacing:1.080000px;}
.ws27_c00198{word-spacing:2.088000px;}
.ws12_c00198{word-spacing:2.448000px;}
.ws11_c00198{word-spacing:2.520000px;}
.ws14_c00198{word-spacing:2.880000px;}
.ws25_c00198{word-spacing:3.240000px;}
.ws2f_c00198{word-spacing:3.486960px;}
.ws2b_c00198{word-spacing:3.727440px;}
.ws2e_c00198{word-spacing:3.787560px;}
.ws2d_c00198{word-spacing:4.088160px;}
.ws22_c00198{word-spacing:5.256000px;}
.ws19_c00198{word-spacing:5.328000px;}
.ws23_c00198{word-spacing:5.400000px;}
.ws1a_c00198{word-spacing:5.688000px;}
.ws1b_c00198{word-spacing:5.760000px;}
.ws1e_c00198{word-spacing:6.840000px;}
.ws15_c00198{word-spacing:8.280000px;}
.ws24_c00198{word-spacing:8.640000px;}
.ws21_c00198{word-spacing:9.720000px;}
.ws20_c00198{word-spacing:10.080000px;}
.ws26_c00198{word-spacing:11.520000px;}
.wsb_c00198{word-spacing:12.456000px;}
.wsc_c00198{word-spacing:12.600000px;}
.ws28_c00198{word-spacing:13.320000px;}
.ws9_c00198{word-spacing:13.608000px;}
.ws8_c00198{word-spacing:13.680000px;}
.wsf_c00198{word-spacing:15.768000px;}
.wsd_c00198{word-spacing:16.128000px;}
.wse_c00198{word-spacing:16.200000px;}
.ws10_c00198{word-spacing:16.416000px;}
.ws16_c00198{word-spacing:19.080000px;}
.ws2a_c00198{word-spacing:19.296000px;}
.ws29_c00198{word-spacing:19.440000px;}
.ws1f_c00198{word-spacing:28.440000px;}
._1_c00198{margin-left:-1.058400px;}
._0_c00198{width:1.220400px;}
._3_c00198{width:2.671200px;}
._9_c00198{width:4.052160px;}
._8_c00198{width:5.407200px;}
._7_c00198{width:6.840000px;}
._5_c00198{width:8.640000px;}
._2_c00198{width:12.312000px;}
._4_c00198{width:15.890400px;}
._6_c00198{width:19.152000px;}
.fc0_c00198{color:rgb(0,0,0);}
.fs3_c00198{font-size:38.880000px;}
.fs2_c00198{font-size:47.880000px;}
.fs0_c00198{font-size:54.000000px;}
.fs4_c00198{font-size:60.120000px;}
.fs1_c00198{font-size:72.000000px;}
.y0_c00198{bottom:0.000000px;}
.y27_c00198{bottom:57.240000px;}
.y26_c00198{bottom:109.791180px;}
.y25_c00198{bottom:126.985500px;}
.y24_c00198{bottom:149.490000px;}
.y28_c00198{bottom:162.180000px;}
.y23_c00198{bottom:209.970000px;}
.y22_c00198{bottom:241.020000px;}
.y21_c00198{bottom:272.070000px;}
.y20_c00198{bottom:303.120000px;}
.y1f_c00198{bottom:334.170000px;}
.y1e_c00198{bottom:365.220000px;}
.y1d_c00198{bottom:396.270000px;}
.y1c_c00198{bottom:427.320000px;}
.y1b_c00198{bottom:458.370000px;}
.y1a_c00198{bottom:489.420000px;}
.y19_c00198{bottom:520.470000px;}
.y18_c00198{bottom:551.520000px;}
.y17_c00198{bottom:582.570000px;}
.y16_c00198{bottom:613.620000px;}
.y15_c00198{bottom:644.670000px;}
.y14_c00198{bottom:675.720000px;}
.y13_c00198{bottom:706.770000px;}
.y12_c00198{bottom:737.820000px;}
.y11_c00198{bottom:768.870000px;}
.y10_c00198{bottom:799.920000px;}
.yf_c00198{bottom:830.970000px;}
.ye_c00198{bottom:861.930000px;}
.yd_c00198{bottom:892.980000px;}
.yc_c00198{bottom:924.030000px;}
.yb_c00198{bottom:955.080000px;}
.ya_c00198{bottom:986.130000px;}
.y9_c00198{bottom:1017.180000px;}
.y8_c00198{bottom:1048.230000px;}
.y7_c00198{bottom:1079.280000px;}
.y6_c00198{bottom:1110.330000px;}
.y5_c00198{bottom:1131.030000px;}
.y4_c00198{bottom:1150.920000px;}
.y3_c00198{bottom:1166.404500px;}
.y2_c00198{bottom:1181.970000px;}
.y1_c00198{bottom:1197.450000px;}
.h7_c00198{height:38.158594px;}
.h3_c00198{height:52.971680px;}
.h2_c00198{height:52.998047px;}
.h8_c00198{height:59.004492px;}
.h4_c00198{height:70.664062px;}
.h5_c00198{height:73.991602px;}
.h6_c00198{height:75.093750px;}
.h0_c00198{height:1262.880000px;}
.h1_c00198{height:1263.000000px;}
.w0_c00198{width:893.070000px;}
.w1_c00198{width:893.250000px;}
.x0_c00198{left:0.000000px;}
.x3_c00198{left:127.620000px;}
.x4_c00198{left:154.620000px;}
.x5_c00198{left:181.620000px;}
.x2_c00198{left:425.160000px;}
.x1_c00198{left:446.580000px;}
.x6_c00198{left:738.540000px;}
@media print{
.v2_c00198{vertical-align:-18.560000pt;}
.v0_c00198{vertical-align:0.000000pt;}
.v1_c00198{vertical-align:24.000000pt;}
.ls12_c00198{letter-spacing:-0.512000pt;}
.ls14_c00198{letter-spacing:-0.374080pt;}
.ls11_c00198{letter-spacing:-0.192000pt;}
.ls15_c00198{letter-spacing:-0.106880pt;}
.ls10_c00198{letter-spacing:-0.096000pt;}
.ls13_c00198{letter-spacing:-0.053440pt;}
.lsf_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.064000pt;}
.lsa_c00198{letter-spacing:0.128000pt;}
.ls16_c00198{letter-spacing:0.160320pt;}
.ls3_c00198{letter-spacing:0.170240pt;}
.ls7_c00198{letter-spacing:0.320000pt;}
.ls5_c00198{letter-spacing:2.240000pt;}
.ls6_c00198{letter-spacing:2.246400pt;}
.lse_c00198{letter-spacing:3.580480pt;}
.ls8_c00198{letter-spacing:4.800000pt;}
.lsb_c00198{letter-spacing:7.680000pt;}
.lsc_c00198{letter-spacing:10.246400pt;}
.ls4_c00198{letter-spacing:11.200000pt;}
.lsd_c00198{letter-spacing:11.840000pt;}
.ls1_c00198{letter-spacing:11.846400pt;}
.ls2_c00198{letter-spacing:12.160000pt;}
.ls9_c00198{letter-spacing:27.328000pt;}
.ws0_c00198{word-spacing:-16.128000pt;}
.ws3_c00198{word-spacing:-16.064000pt;}
.ws2_c00198{word-spacing:-15.488000pt;}
.ws1_c00198{word-spacing:-10.810240pt;}
.ws4_c00198{word-spacing:-8.640000pt;}
.ws13_c00198{word-spacing:-0.320000pt;}
.ws17_c00198{word-spacing:-0.128000pt;}
.wsa_c00198{word-spacing:-0.064000pt;}
.ws5_c00198{word-spacing:0.000000pt;}
.ws7_c00198{word-spacing:0.144000pt;}
.ws30_c00198{word-spacing:0.160320pt;}
.ws18_c00198{word-spacing:0.192000pt;}
.ws31_c00198{word-spacing:0.213760pt;}
.ws6_c00198{word-spacing:0.240000pt;}
.ws2c_c00198{word-spacing:0.374080pt;}
.ws1c_c00198{word-spacing:0.640000pt;}
.ws1d_c00198{word-spacing:0.960000pt;}
.ws27_c00198{word-spacing:1.856000pt;}
.ws12_c00198{word-spacing:2.176000pt;}
.ws11_c00198{word-spacing:2.240000pt;}
.ws14_c00198{word-spacing:2.560000pt;}
.ws25_c00198{word-spacing:2.880000pt;}
.ws2f_c00198{word-spacing:3.099520pt;}
.ws2b_c00198{word-spacing:3.313280pt;}
.ws2e_c00198{word-spacing:3.366720pt;}
.ws2d_c00198{word-spacing:3.633920pt;}
.ws22_c00198{word-spacing:4.672000pt;}
.ws19_c00198{word-spacing:4.736000pt;}
.ws23_c00198{word-spacing:4.800000pt;}
.ws1a_c00198{word-spacing:5.056000pt;}
.ws1b_c00198{word-spacing:5.120000pt;}
.ws1e_c00198{word-spacing:6.080000pt;}
.ws15_c00198{word-spacing:7.360000pt;}
.ws24_c00198{word-spacing:7.680000pt;}
.ws21_c00198{word-spacing:8.640000pt;}
.ws20_c00198{word-spacing:8.960000pt;}
.ws26_c00198{word-spacing:10.240000pt;}
.wsb_c00198{word-spacing:11.072000pt;}
.wsc_c00198{word-spacing:11.200000pt;}
.ws28_c00198{word-spacing:11.840000pt;}
.ws9_c00198{word-spacing:12.096000pt;}
.ws8_c00198{word-spacing:12.160000pt;}
.wsf_c00198{word-spacing:14.016000pt;}
.wsd_c00198{word-spacing:14.336000pt;}
.wse_c00198{word-spacing:14.400000pt;}
.ws10_c00198{word-spacing:14.592000pt;}
.ws16_c00198{word-spacing:16.960000pt;}
.ws2a_c00198{word-spacing:17.152000pt;}
.ws29_c00198{word-spacing:17.280000pt;}
.ws1f_c00198{word-spacing:25.280000pt;}
._1_c00198{margin-left:-0.940800pt;}
._0_c00198{width:1.084800pt;}
._3_c00198{width:2.374400pt;}
._9_c00198{width:3.601920pt;}
._8_c00198{width:4.806400pt;}
._7_c00198{width:6.080000pt;}
._5_c00198{width:7.680000pt;}
._2_c00198{width:10.944000pt;}
._4_c00198{width:14.124800pt;}
._6_c00198{width:17.024000pt;}
.fs3_c00198{font-size:34.560000pt;}
.fs2_c00198{font-size:42.560000pt;}
.fs0_c00198{font-size:48.000000pt;}
.fs4_c00198{font-size:53.440000pt;}
.fs1_c00198{font-size:64.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y27_c00198{bottom:50.880000pt;}
.y26_c00198{bottom:97.592160pt;}
.y25_c00198{bottom:112.876000pt;}
.y24_c00198{bottom:132.880000pt;}
.y28_c00198{bottom:144.160000pt;}
.y23_c00198{bottom:186.640000pt;}
.y22_c00198{bottom:214.240000pt;}
.y21_c00198{bottom:241.840000pt;}
.y20_c00198{bottom:269.440000pt;}
.y1f_c00198{bottom:297.040000pt;}
.y1e_c00198{bottom:324.640000pt;}
.y1d_c00198{bottom:352.240000pt;}
.y1c_c00198{bottom:379.840000pt;}
.y1b_c00198{bottom:407.440000pt;}
.y1a_c00198{bottom:435.040000pt;}
.y19_c00198{bottom:462.640000pt;}
.y18_c00198{bottom:490.240000pt;}
.y17_c00198{bottom:517.840000pt;}
.y16_c00198{bottom:545.440000pt;}
.y15_c00198{bottom:573.040000pt;}
.y14_c00198{bottom:600.640000pt;}
.y13_c00198{bottom:628.240000pt;}
.y12_c00198{bottom:655.840000pt;}
.y11_c00198{bottom:683.440000pt;}
.y10_c00198{bottom:711.040000pt;}
.yf_c00198{bottom:738.640000pt;}
.ye_c00198{bottom:766.160000pt;}
.yd_c00198{bottom:793.760000pt;}
.yc_c00198{bottom:821.360000pt;}
.yb_c00198{bottom:848.960000pt;}
.ya_c00198{bottom:876.560000pt;}
.y9_c00198{bottom:904.160000pt;}
.y8_c00198{bottom:931.760000pt;}
.y7_c00198{bottom:959.360000pt;}
.y6_c00198{bottom:986.960000pt;}
.y5_c00198{bottom:1005.360000pt;}
.y4_c00198{bottom:1023.040000pt;}
.y3_c00198{bottom:1036.804000pt;}
.y2_c00198{bottom:1050.640000pt;}
.y1_c00198{bottom:1064.400000pt;}
.h7_c00198{height:33.918750pt;}
.h3_c00198{height:47.085938pt;}
.h2_c00198{height:47.109375pt;}
.h8_c00198{height:52.448437pt;}
.h4_c00198{height:62.812500pt;}
.h5_c00198{height:65.770312pt;}
.h6_c00198{height:66.750000pt;}
.h0_c00198{height:1122.560000pt;}
.h1_c00198{height:1122.666667pt;}
.w0_c00198{width:793.840000pt;}
.w1_c00198{width:794.000000pt;}
.x0_c00198{left:0.000000pt;}
.x3_c00198{left:113.440000pt;}
.x4_c00198{left:137.440000pt;}
.x5_c00198{left:161.440000pt;}
.x2_c00198{left:377.920000pt;}
.x1_c00198{left:396.960000pt;}
.x6_c00198{left:656.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_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_d8208261ecdf2cd8a3ca29ad.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_49e2400165587638c4c12c06.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;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_c00199;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.432129;font-style: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);}
.v1_c00199{vertical-align:-61.938000px;}
.v3_c00199{vertical-align:-20.880000px;}
.v0_c00199{vertical-align:0.000000px;}
.v2_c00199{vertical-align:27.000000px;}
.ls11_c00199{letter-spacing:-0.360000px;}
.ls12_c00199{letter-spacing:-0.288000px;}
.ls13_c00199{letter-spacing:-0.216000px;}
.ls14_c00199{letter-spacing:-0.072000px;}
.ls15_c00199{letter-spacing:-0.060120px;}
.lsf_c00199{letter-spacing:0.000000px;}
.ls3_c00199{letter-spacing:0.072000px;}
.lse_c00199{letter-spacing:0.120240px;}
.ls10_c00199{letter-spacing:0.144000px;}
.ls9_c00199{letter-spacing:0.191520px;}
.ls7_c00199{letter-spacing:0.360000px;}
.ls5_c00199{letter-spacing:2.160000px;}
.lsc_c00199{letter-spacing:2.520000px;}
.lsd_c00199{letter-spacing:3.261600px;}
.lsb_c00199{letter-spacing:5.760000px;}
.ls1_c00199{letter-spacing:6.480000px;}
.lsa_c00199{letter-spacing:8.280000px;}
.ls8_c00199{letter-spacing:17.640000px;}
.ls2_c00199{letter-spacing:19.440000px;}
.ls4_c00199{letter-spacing:30.744000px;}
.ls6_c00199{letter-spacing:32.040000px;}
.ls0_c00199{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00199{word-spacing:-18.144000px;}
.ws1_c00199{word-spacing:-18.072000px;}
.ws0_c00199{word-spacing:-18.000000px;}
.ws4_c00199{word-spacing:-17.928000px;}
.ws5_c00199{word-spacing:-17.712000px;}
.ws2_c00199{word-spacing:-12.161520px;}
.ws6_c00199{word-spacing:-9.720000px;}
.ws2d_c00199{word-spacing:-0.360000px;}
.ws38_c00199{word-spacing:-0.180360px;}
.ws8_c00199{word-spacing:-0.162000px;}
.wsc_c00199{word-spacing:-0.144000px;}
.ws18_c00199{word-spacing:-0.072000px;}
.ws7_c00199{word-spacing:0.000000px;}
.ws37_c00199{word-spacing:0.180360px;}
.ws2a_c00199{word-spacing:0.216000px;}
.ws25_c00199{word-spacing:0.288000px;}
.ws26_c00199{word-spacing:0.360000px;}
.ws1f_c00199{word-spacing:1.440000px;}
.ws1e_c00199{word-spacing:1.800000px;}
.ws1c_c00199{word-spacing:2.088000px;}
.ws1d_c00199{word-spacing:2.160000px;}
.ws33_c00199{word-spacing:2.376000px;}
.ws32_c00199{word-spacing:2.520000px;}
.wse_c00199{word-spacing:2.880000px;}
.ws34_c00199{word-spacing:3.528000px;}
.ws16_c00199{word-spacing:3.600000px;}
.ws17_c00199{word-spacing:3.960000px;}
.ws2f_c00199{word-spacing:4.176000px;}
.ws2e_c00199{word-spacing:4.320000px;}
.ws9_c00199{word-spacing:5.040000px;}
.ws30_c00199{word-spacing:5.688000px;}
.ws31_c00199{word-spacing:5.760000px;}
.wsd_c00199{word-spacing:5.976000px;}
.wsb_c00199{word-spacing:6.480000px;}
.ws1a_c00199{word-spacing:7.848000px;}
.ws19_c00199{word-spacing:7.920000px;}
.ws2c_c00199{word-spacing:8.280000px;}
.ws2b_c00199{word-spacing:8.640000px;}
.ws28_c00199{word-spacing:9.288000px;}
.ws29_c00199{word-spacing:9.360000px;}
.wsa_c00199{word-spacing:9.720000px;}
.ws20_c00199{word-spacing:10.656000px;}
.ws22_c00199{word-spacing:10.728000px;}
.ws21_c00199{word-spacing:10.800000px;}
.ws13_c00199{word-spacing:12.600000px;}
.ws14_c00199{word-spacing:12.960000px;}
.ws15_c00199{word-spacing:13.248000px;}
.ws12_c00199{word-spacing:16.488000px;}
.ws1b_c00199{word-spacing:17.568000px;}
.ws27_c00199{word-spacing:17.640000px;}
.ws10_c00199{word-spacing:19.368000px;}
.wsf_c00199{word-spacing:19.440000px;}
.ws11_c00199{word-spacing:19.800000px;}
.ws24_c00199{word-spacing:31.968000px;}
.ws23_c00199{word-spacing:32.040000px;}
.ws36_c00199{word-spacing:41.328000px;}
.ws35_c00199{word-spacing:41.400000px;}
._7_c00199{margin-left:-32.256000px;}
._0_c00199{margin-left:-1.008000px;}
._1_c00199{width:1.008000px;}
._8_c00199{width:2.448000px;}
._5_c00199{width:4.320000px;}
._3_c00199{width:6.408000px;}
._6_c00199{width:7.632000px;}
._a_c00199{width:8.712000px;}
._2_c00199{width:10.224000px;}
._4_c00199{width:13.320000px;}
._9_c00199{width:16.776000px;}
._b_c00199{width:41.688000px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs3_c00199{font-size:38.880000px;}
.fs2_c00199{font-size:47.880000px;}
.fs0_c00199{font-size:54.000000px;}
.fs4_c00199{font-size:60.120000px;}
.fs1_c00199{font-size:72.000000px;}
.y0_c00199{bottom:0.000000px;}
.y25_c00199{bottom:57.240000px;}
.y24_c00199{bottom:115.020000px;}
.y26_c00199{bottom:127.710000px;}
.y23_c00199{bottom:178.920000px;}
.y22_c00199{bottom:209.970000px;}
.y21_c00199{bottom:241.020000px;}
.y20_c00199{bottom:272.070000px;}
.y1f_c00199{bottom:303.120000px;}
.y1e_c00199{bottom:334.170000px;}
.y1d_c00199{bottom:365.220000px;}
.y1c_c00199{bottom:396.270000px;}
.y1b_c00199{bottom:427.320000px;}
.y1a_c00199{bottom:458.370000px;}
.y19_c00199{bottom:489.420000px;}
.y18_c00199{bottom:520.470000px;}
.y17_c00199{bottom:551.520000px;}
.y16_c00199{bottom:582.570000px;}
.y15_c00199{bottom:613.620000px;}
.y14_c00199{bottom:644.670000px;}
.y13_c00199{bottom:675.720000px;}
.y12_c00199{bottom:706.770000px;}
.y11_c00199{bottom:737.820000px;}
.y10_c00199{bottom:768.870000px;}
.yf_c00199{bottom:799.920000px;}
.ye_c00199{bottom:830.970000px;}
.yd_c00199{bottom:861.930000px;}
.yc_c00199{bottom:892.980000px;}
.yb_c00199{bottom:924.030000px;}
.ya_c00199{bottom:955.080000px;}
.y9_c00199{bottom:986.130000px;}
.y8_c00199{bottom:1017.180000px;}
.y7_c00199{bottom:1048.230000px;}
.y6_c00199{bottom:1079.280000px;}
.y5_c00199{bottom:1110.330000px;}
.y4_c00199{bottom:1131.030000px;}
.y3_c00199{bottom:1150.915500px;}
.y2_c00199{bottom:1166.400000px;}
.y1_c00199{bottom:1197.450000px;}
.h6_c00199{height:38.158594px;}
.h2_c00199{height:52.998047px;}
.h3_c00199{height:70.664062px;}
.h5_c00199{height:73.991602px;}
.h4_c00199{height:75.093750px;}
.h0_c00199{height:1262.880000px;}
.h1_c00199{height:1263.000000px;}
.w0_c00199{width:893.070000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x2_c00199{left:127.620000px;}
.x3_c00199{left:154.620000px;}
.x4_c00199{left:181.620000px;}
.x1_c00199{left:446.580000px;}
@media print{
.v1_c00199{vertical-align:-55.056000pt;}
.v3_c00199{vertical-align:-18.560000pt;}
.v0_c00199{vertical-align:0.000000pt;}
.v2_c00199{vertical-align:24.000000pt;}
.ls11_c00199{letter-spacing:-0.320000pt;}
.ls12_c00199{letter-spacing:-0.256000pt;}
.ls13_c00199{letter-spacing:-0.192000pt;}
.ls14_c00199{letter-spacing:-0.064000pt;}
.ls15_c00199{letter-spacing:-0.053440pt;}
.lsf_c00199{letter-spacing:0.000000pt;}
.ls3_c00199{letter-spacing:0.064000pt;}
.lse_c00199{letter-spacing:0.106880pt;}
.ls10_c00199{letter-spacing:0.128000pt;}
.ls9_c00199{letter-spacing:0.170240pt;}
.ls7_c00199{letter-spacing:0.320000pt;}
.ls5_c00199{letter-spacing:1.920000pt;}
.lsc_c00199{letter-spacing:2.240000pt;}
.lsd_c00199{letter-spacing:2.899200pt;}
.lsb_c00199{letter-spacing:5.120000pt;}
.ls1_c00199{letter-spacing:5.760000pt;}
.lsa_c00199{letter-spacing:7.360000pt;}
.ls8_c00199{letter-spacing:15.680000pt;}
.ls2_c00199{letter-spacing:17.280000pt;}
.ls4_c00199{letter-spacing:27.328000pt;}
.ls6_c00199{letter-spacing:28.480000pt;}
.ls0_c00199{letter-spacing:284.016000pt;}
.ws3_c00199{word-spacing:-16.128000pt;}
.ws1_c00199{word-spacing:-16.064000pt;}
.ws0_c00199{word-spacing:-16.000000pt;}
.ws4_c00199{word-spacing:-15.936000pt;}
.ws5_c00199{word-spacing:-15.744000pt;}
.ws2_c00199{word-spacing:-10.810240pt;}
.ws6_c00199{word-spacing:-8.640000pt;}
.ws2d_c00199{word-spacing:-0.320000pt;}
.ws38_c00199{word-spacing:-0.160320pt;}
.ws8_c00199{word-spacing:-0.144000pt;}
.wsc_c00199{word-spacing:-0.128000pt;}
.ws18_c00199{word-spacing:-0.064000pt;}
.ws7_c00199{word-spacing:0.000000pt;}
.ws37_c00199{word-spacing:0.160320pt;}
.ws2a_c00199{word-spacing:0.192000pt;}
.ws25_c00199{word-spacing:0.256000pt;}
.ws26_c00199{word-spacing:0.320000pt;}
.ws1f_c00199{word-spacing:1.280000pt;}
.ws1e_c00199{word-spacing:1.600000pt;}
.ws1c_c00199{word-spacing:1.856000pt;}
.ws1d_c00199{word-spacing:1.920000pt;}
.ws33_c00199{word-spacing:2.112000pt;}
.ws32_c00199{word-spacing:2.240000pt;}
.wse_c00199{word-spacing:2.560000pt;}
.ws34_c00199{word-spacing:3.136000pt;}
.ws16_c00199{word-spacing:3.200000pt;}
.ws17_c00199{word-spacing:3.520000pt;}
.ws2f_c00199{word-spacing:3.712000pt;}
.ws2e_c00199{word-spacing:3.840000pt;}
.ws9_c00199{word-spacing:4.480000pt;}
.ws30_c00199{word-spacing:5.056000pt;}
.ws31_c00199{word-spacing:5.120000pt;}
.wsd_c00199{word-spacing:5.312000pt;}
.wsb_c00199{word-spacing:5.760000pt;}
.ws1a_c00199{word-spacing:6.976000pt;}
.ws19_c00199{word-spacing:7.040000pt;}
.ws2c_c00199{word-spacing:7.360000pt;}
.ws2b_c00199{word-spacing:7.680000pt;}
.ws28_c00199{word-spacing:8.256000pt;}
.ws29_c00199{word-spacing:8.320000pt;}
.wsa_c00199{word-spacing:8.640000pt;}
.ws20_c00199{word-spacing:9.472000pt;}
.ws22_c00199{word-spacing:9.536000pt;}
.ws21_c00199{word-spacing:9.600000pt;}
.ws13_c00199{word-spacing:11.200000pt;}
.ws14_c00199{word-spacing:11.520000pt;}
.ws15_c00199{word-spacing:11.776000pt;}
.ws12_c00199{word-spacing:14.656000pt;}
.ws1b_c00199{word-spacing:15.616000pt;}
.ws27_c00199{word-spacing:15.680000pt;}
.ws10_c00199{word-spacing:17.216000pt;}
.wsf_c00199{word-spacing:17.280000pt;}
.ws11_c00199{word-spacing:17.600000pt;}
.ws24_c00199{word-spacing:28.416000pt;}
.ws23_c00199{word-spacing:28.480000pt;}
.ws36_c00199{word-spacing:36.736000pt;}
.ws35_c00199{word-spacing:36.800000pt;}
._7_c00199{margin-left:-28.672000pt;}
._0_c00199{margin-left:-0.896000pt;}
._1_c00199{width:0.896000pt;}
._8_c00199{width:2.176000pt;}
._5_c00199{width:3.840000pt;}
._3_c00199{width:5.696000pt;}
._6_c00199{width:6.784000pt;}
._a_c00199{width:7.744000pt;}
._2_c00199{width:9.088000pt;}
._4_c00199{width:11.840000pt;}
._9_c00199{width:14.912000pt;}
._b_c00199{width:37.056000pt;}
.fs3_c00199{font-size:34.560000pt;}
.fs2_c00199{font-size:42.560000pt;}
.fs0_c00199{font-size:48.000000pt;}
.fs4_c00199{font-size:53.440000pt;}
.fs1_c00199{font-size:64.000000pt;}
.y0_c00199{bottom:0.000000pt;}
.y25_c00199{bottom:50.880000pt;}
.y24_c00199{bottom:102.240000pt;}
.y26_c00199{bottom:113.520000pt;}
.y23_c00199{bottom:159.040000pt;}
.y22_c00199{bottom:186.640000pt;}
.y21_c00199{bottom:214.240000pt;}
.y20_c00199{bottom:241.840000pt;}
.y1f_c00199{bottom:269.440000pt;}
.y1e_c00199{bottom:297.040000pt;}
.y1d_c00199{bottom:324.640000pt;}
.y1c_c00199{bottom:352.240000pt;}
.y1b_c00199{bottom:379.840000pt;}
.y1a_c00199{bottom:407.440000pt;}
.y19_c00199{bottom:435.040000pt;}
.y18_c00199{bottom:462.640000pt;}
.y17_c00199{bottom:490.240000pt;}
.y16_c00199{bottom:517.840000pt;}
.y15_c00199{bottom:545.440000pt;}
.y14_c00199{bottom:573.040000pt;}
.y13_c00199{bottom:600.640000pt;}
.y12_c00199{bottom:628.240000pt;}
.y11_c00199{bottom:655.840000pt;}
.y10_c00199{bottom:683.440000pt;}
.yf_c00199{bottom:711.040000pt;}
.ye_c00199{bottom:738.640000pt;}
.yd_c00199{bottom:766.160000pt;}
.yc_c00199{bottom:793.760000pt;}
.yb_c00199{bottom:821.360000pt;}
.ya_c00199{bottom:848.960000pt;}
.y9_c00199{bottom:876.560000pt;}
.y8_c00199{bottom:904.160000pt;}
.y7_c00199{bottom:931.760000pt;}
.y6_c00199{bottom:959.360000pt;}
.y5_c00199{bottom:986.960000pt;}
.y4_c00199{bottom:1005.360000pt;}
.y3_c00199{bottom:1023.036000pt;}
.y2_c00199{bottom:1036.800000pt;}
.y1_c00199{bottom:1064.400000pt;}
.h6_c00199{height:33.918750pt;}
.h2_c00199{height:47.109375pt;}
.h3_c00199{height:62.812500pt;}
.h5_c00199{height:65.770312pt;}
.h4_c00199{height:66.750000pt;}
.h0_c00199{height:1122.560000pt;}
.h1_c00199{height:1122.666667pt;}
.w0_c00199{width:793.840000pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x2_c00199{left:113.440000pt;}
.x3_c00199{left:137.440000pt;}
.x4_c00199{left:161.440000pt;}
.x1_c00199{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7d7b2922be586ae79c6755d.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.284180;font-style:normal;font-weight:normal;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_faa67ea2fc6d4a368bce823d.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;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_c00200;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.432129;font-style: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);}
.v2_c00200{vertical-align:-20.880000px;}
.v0_c00200{vertical-align:0.000000px;}
.v1_c00200{vertical-align:27.000000px;}
.ls12_c00200{letter-spacing:-0.360000px;}
.ls10_c00200{letter-spacing:-0.216000px;}
.lsf_c00200{letter-spacing:-0.144000px;}
.lsd_c00200{letter-spacing:-0.108000px;}
.lse_c00200{letter-spacing:-0.072000px;}
.ls13_c00200{letter-spacing:-0.060120px;}
.lsc_c00200{letter-spacing:0.000000px;}
.ls1_c00200{letter-spacing:0.072000px;}
.ls2_c00200{letter-spacing:0.144000px;}
.ls14_c00200{letter-spacing:0.180360px;}
.ls4_c00200{letter-spacing:0.191520px;}
.ls11_c00200{letter-spacing:0.360000px;}
.ls9_c00200{letter-spacing:1.080000px;}
.ls0_c00200{letter-spacing:2.160000px;}
.lsb_c00200{letter-spacing:2.585160px;}
.lsa_c00200{letter-spacing:4.320000px;}
.ls7_c00200{letter-spacing:5.040000px;}
.ls5_c00200{letter-spacing:6.840000px;}
.ls8_c00200{letter-spacing:9.360000px;}
.ls3_c00200{letter-spacing:15.120000px;}
.ls6_c00200{letter-spacing:30.744000px;}
.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;}
}
.ws5_c00200{word-spacing:-18.144000px;}
.ws4_c00200{word-spacing:-18.072000px;}
.ws0_c00200{word-spacing:-18.000000px;}
.ws1_c00200{word-spacing:-17.928000px;}
.ws3_c00200{word-spacing:-17.856000px;}
.ws2_c00200{word-spacing:-12.161520px;}
.ws6_c00200{word-spacing:-9.720000px;}
.ws34_c00200{word-spacing:-0.420840px;}
.ws24_c00200{word-spacing:-0.360000px;}
.ws18_c00200{word-spacing:-0.072000px;}
.ws7_c00200{word-spacing:0.000000px;}
.ws9_c00200{word-spacing:0.162000px;}
.ws8_c00200{word-spacing:0.270000px;}
.ws22_c00200{word-spacing:0.288000px;}
.ws21_c00200{word-spacing:0.360000px;}
.ws1c_c00200{word-spacing:1.008000px;}
.ws1b_c00200{word-spacing:1.080000px;}
.ws26_c00200{word-spacing:1.440000px;}
.ws27_c00200{word-spacing:1.800000px;}
.wsc_c00200{word-spacing:2.016000px;}
.wsb_c00200{word-spacing:2.088000px;}
.wsa_c00200{word-spacing:2.160000px;}
.ws33_c00200{word-spacing:2.645280px;}
.ws32_c00200{word-spacing:3.168000px;}
.ws31_c00200{word-spacing:3.240000px;}
.ws1a_c00200{word-spacing:3.528000px;}
.ws20_c00200{word-spacing:3.600000px;}
.ws2a_c00200{word-spacing:3.960000px;}
.ws2b_c00200{word-spacing:4.176000px;}
.ws2c_c00200{word-spacing:4.320000px;}
.ws1f_c00200{word-spacing:4.680000px;}
.ws2e_c00200{word-spacing:4.968000px;}
.ws1d_c00200{word-spacing:5.040000px;}
.ws1e_c00200{word-spacing:5.256000px;}
.ws25_c00200{word-spacing:6.120000px;}
.ws14_c00200{word-spacing:6.768000px;}
.ws13_c00200{word-spacing:6.840000px;}
.wsf_c00200{word-spacing:7.200000px;}
.ws29_c00200{word-spacing:8.280000px;}
.ws28_c00200{word-spacing:8.640000px;}
.wsd_c00200{word-spacing:9.288000px;}
.wse_c00200{word-spacing:9.360000px;}
.ws2f_c00200{word-spacing:11.808000px;}
.ws30_c00200{word-spacing:11.880000px;}
.ws23_c00200{word-spacing:13.320000px;}
.ws12_c00200{word-spacing:14.976000px;}
.ws11_c00200{word-spacing:15.048000px;}
.ws10_c00200{word-spacing:15.120000px;}
.ws2d_c00200{word-spacing:26.640000px;}
.ws17_c00200{word-spacing:35.928000px;}
.ws19_c00200{word-spacing:36.000000px;}
.ws16_c00200{word-spacing:36.648000px;}
.ws15_c00200{word-spacing:36.720000px;}
._1_c00200{margin-left:-1.058400px;}
._0_c00200{width:1.220400px;}
._2_c00200{width:2.736000px;}
._4_c00200{width:6.696000px;}
._3_c00200{width:8.906400px;}
._6_c00200{width:34.905600px;}
._5_c00200{width:36.072000px;}
.fc0_c00200{color:rgb(0,0,0);}
.fs3_c00200{font-size:38.880000px;}
.fs2_c00200{font-size:47.880000px;}
.fs0_c00200{font-size:54.000000px;}
.fs4_c00200{font-size:60.120000px;}
.fs1_c00200{font-size:72.000000px;}
.y0_c00200{bottom:0.000000px;}
.y27_c00200{bottom:57.240000px;}
.y26_c00200{bottom:109.795680px;}
.y25_c00200{bottom:132.210000px;}
.y28_c00200{bottom:144.900000px;}
.y24_c00200{bottom:178.920000px;}
.y23_c00200{bottom:209.970000px;}
.y22_c00200{bottom:241.020000px;}
.y21_c00200{bottom:272.070000px;}
.y20_c00200{bottom:303.120000px;}
.y1f_c00200{bottom:334.170000px;}
.y1e_c00200{bottom:365.220000px;}
.y1d_c00200{bottom:396.270000px;}
.y1c_c00200{bottom:427.320000px;}
.y1b_c00200{bottom:458.370000px;}
.y1a_c00200{bottom:489.420000px;}
.y19_c00200{bottom:520.470000px;}
.y18_c00200{bottom:551.520000px;}
.y17_c00200{bottom:582.570000px;}
.y16_c00200{bottom:613.620000px;}
.y15_c00200{bottom:644.670000px;}
.y14_c00200{bottom:675.720000px;}
.y13_c00200{bottom:706.770000px;}
.y12_c00200{bottom:737.820000px;}
.y11_c00200{bottom:768.870000px;}
.y10_c00200{bottom:799.920000px;}
.yf_c00200{bottom:830.970000px;}
.ye_c00200{bottom:861.930000px;}
.yd_c00200{bottom:892.980000px;}
.yc_c00200{bottom:924.030000px;}
.yb_c00200{bottom:955.080000px;}
.ya_c00200{bottom:986.130000px;}
.y9_c00200{bottom:1017.180000px;}
.y8_c00200{bottom:1048.230000px;}
.y7_c00200{bottom:1079.280000px;}
.y6_c00200{bottom:1110.330000px;}
.y5_c00200{bottom:1131.030000px;}
.y4_c00200{bottom:1150.920000px;}
.y3_c00200{bottom:1166.404500px;}
.y2_c00200{bottom:1181.970000px;}
.y1_c00200{bottom:1197.450000px;}
.h7_c00200{height:38.158594px;}
.h3_c00200{height:52.971680px;}
.h2_c00200{height:52.998047px;}
.h8_c00200{height:59.004492px;}
.h4_c00200{height:70.664062px;}
.h5_c00200{height:73.991602px;}
.h6_c00200{height:75.093750px;}
.h0_c00200{height:1262.880000px;}
.h1_c00200{height:1263.000000px;}
.w0_c00200{width:893.070000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x3_c00200{left:127.620000px;}
.x4_c00200{left:154.620000px;}
.x5_c00200{left:181.620000px;}
.x2_c00200{left:425.160000px;}
.x1_c00200{left:446.580000px;}
.x6_c00200{left:738.540000px;}
@media print{
.v2_c00200{vertical-align:-18.560000pt;}
.v0_c00200{vertical-align:0.000000pt;}
.v1_c00200{vertical-align:24.000000pt;}
.ls12_c00200{letter-spacing:-0.320000pt;}
.ls10_c00200{letter-spacing:-0.192000pt;}
.lsf_c00200{letter-spacing:-0.128000pt;}
.lsd_c00200{letter-spacing:-0.096000pt;}
.lse_c00200{letter-spacing:-0.064000pt;}
.ls13_c00200{letter-spacing:-0.053440pt;}
.lsc_c00200{letter-spacing:0.000000pt;}
.ls1_c00200{letter-spacing:0.064000pt;}
.ls2_c00200{letter-spacing:0.128000pt;}
.ls14_c00200{letter-spacing:0.160320pt;}
.ls4_c00200{letter-spacing:0.170240pt;}
.ls11_c00200{letter-spacing:0.320000pt;}
.ls9_c00200{letter-spacing:0.960000pt;}
.ls0_c00200{letter-spacing:1.920000pt;}
.lsb_c00200{letter-spacing:2.297920pt;}
.lsa_c00200{letter-spacing:3.840000pt;}
.ls7_c00200{letter-spacing:4.480000pt;}
.ls5_c00200{letter-spacing:6.080000pt;}
.ls8_c00200{letter-spacing:8.320000pt;}
.ls3_c00200{letter-spacing:13.440000pt;}
.ls6_c00200{letter-spacing:27.328000pt;}
.ws5_c00200{word-spacing:-16.128000pt;}
.ws4_c00200{word-spacing:-16.064000pt;}
.ws0_c00200{word-spacing:-16.000000pt;}
.ws1_c00200{word-spacing:-15.936000pt;}
.ws3_c00200{word-spacing:-15.872000pt;}
.ws2_c00200{word-spacing:-10.810240pt;}
.ws6_c00200{word-spacing:-8.640000pt;}
.ws34_c00200{word-spacing:-0.374080pt;}
.ws24_c00200{word-spacing:-0.320000pt;}
.ws18_c00200{word-spacing:-0.064000pt;}
.ws7_c00200{word-spacing:0.000000pt;}
.ws9_c00200{word-spacing:0.144000pt;}
.ws8_c00200{word-spacing:0.240000pt;}
.ws22_c00200{word-spacing:0.256000pt;}
.ws21_c00200{word-spacing:0.320000pt;}
.ws1c_c00200{word-spacing:0.896000pt;}
.ws1b_c00200{word-spacing:0.960000pt;}
.ws26_c00200{word-spacing:1.280000pt;}
.ws27_c00200{word-spacing:1.600000pt;}
.wsc_c00200{word-spacing:1.792000pt;}
.wsb_c00200{word-spacing:1.856000pt;}
.wsa_c00200{word-spacing:1.920000pt;}
.ws33_c00200{word-spacing:2.351360pt;}
.ws32_c00200{word-spacing:2.816000pt;}
.ws31_c00200{word-spacing:2.880000pt;}
.ws1a_c00200{word-spacing:3.136000pt;}
.ws20_c00200{word-spacing:3.200000pt;}
.ws2a_c00200{word-spacing:3.520000pt;}
.ws2b_c00200{word-spacing:3.712000pt;}
.ws2c_c00200{word-spacing:3.840000pt;}
.ws1f_c00200{word-spacing:4.160000pt;}
.ws2e_c00200{word-spacing:4.416000pt;}
.ws1d_c00200{word-spacing:4.480000pt;}
.ws1e_c00200{word-spacing:4.672000pt;}
.ws25_c00200{word-spacing:5.440000pt;}
.ws14_c00200{word-spacing:6.016000pt;}
.ws13_c00200{word-spacing:6.080000pt;}
.wsf_c00200{word-spacing:6.400000pt;}
.ws29_c00200{word-spacing:7.360000pt;}
.ws28_c00200{word-spacing:7.680000pt;}
.wsd_c00200{word-spacing:8.256000pt;}
.wse_c00200{word-spacing:8.320000pt;}
.ws2f_c00200{word-spacing:10.496000pt;}
.ws30_c00200{word-spacing:10.560000pt;}
.ws23_c00200{word-spacing:11.840000pt;}
.ws12_c00200{word-spacing:13.312000pt;}
.ws11_c00200{word-spacing:13.376000pt;}
.ws10_c00200{word-spacing:13.440000pt;}
.ws2d_c00200{word-spacing:23.680000pt;}
.ws17_c00200{word-spacing:31.936000pt;}
.ws19_c00200{word-spacing:32.000000pt;}
.ws16_c00200{word-spacing:32.576000pt;}
.ws15_c00200{word-spacing:32.640000pt;}
._1_c00200{margin-left:-0.940800pt;}
._0_c00200{width:1.084800pt;}
._2_c00200{width:2.432000pt;}
._4_c00200{width:5.952000pt;}
._3_c00200{width:7.916800pt;}
._6_c00200{width:31.027200pt;}
._5_c00200{width:32.064000pt;}
.fs3_c00200{font-size:34.560000pt;}
.fs2_c00200{font-size:42.560000pt;}
.fs0_c00200{font-size:48.000000pt;}
.fs4_c00200{font-size:53.440000pt;}
.fs1_c00200{font-size:64.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y27_c00200{bottom:50.880000pt;}
.y26_c00200{bottom:97.596160pt;}
.y25_c00200{bottom:117.520000pt;}
.y28_c00200{bottom:128.800000pt;}
.y24_c00200{bottom:159.040000pt;}
.y23_c00200{bottom:186.640000pt;}
.y22_c00200{bottom:214.240000pt;}
.y21_c00200{bottom:241.840000pt;}
.y20_c00200{bottom:269.440000pt;}
.y1f_c00200{bottom:297.040000pt;}
.y1e_c00200{bottom:324.640000pt;}
.y1d_c00200{bottom:352.240000pt;}
.y1c_c00200{bottom:379.840000pt;}
.y1b_c00200{bottom:407.440000pt;}
.y1a_c00200{bottom:435.040000pt;}
.y19_c00200{bottom:462.640000pt;}
.y18_c00200{bottom:490.240000pt;}
.y17_c00200{bottom:517.840000pt;}
.y16_c00200{bottom:545.440000pt;}
.y15_c00200{bottom:573.040000pt;}
.y14_c00200{bottom:600.640000pt;}
.y13_c00200{bottom:628.240000pt;}
.y12_c00200{bottom:655.840000pt;}
.y11_c00200{bottom:683.440000pt;}
.y10_c00200{bottom:711.040000pt;}
.yf_c00200{bottom:738.640000pt;}
.ye_c00200{bottom:766.160000pt;}
.yd_c00200{bottom:793.760000pt;}
.yc_c00200{bottom:821.360000pt;}
.yb_c00200{bottom:848.960000pt;}
.ya_c00200{bottom:876.560000pt;}
.y9_c00200{bottom:904.160000pt;}
.y8_c00200{bottom:931.760000pt;}
.y7_c00200{bottom:959.360000pt;}
.y6_c00200{bottom:986.960000pt;}
.y5_c00200{bottom:1005.360000pt;}
.y4_c00200{bottom:1023.040000pt;}
.y3_c00200{bottom:1036.804000pt;}
.y2_c00200{bottom:1050.640000pt;}
.y1_c00200{bottom:1064.400000pt;}
.h7_c00200{height:33.918750pt;}
.h3_c00200{height:47.085938pt;}
.h2_c00200{height:47.109375pt;}
.h8_c00200{height:52.448437pt;}
.h4_c00200{height:62.812500pt;}
.h5_c00200{height:65.770312pt;}
.h6_c00200{height:66.750000pt;}
.h0_c00200{height:1122.560000pt;}
.h1_c00200{height:1122.666667pt;}
.w0_c00200{width:793.840000pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x3_c00200{left:113.440000pt;}
.x4_c00200{left:137.440000pt;}
.x5_c00200{left:161.440000pt;}
.x2_c00200{left:377.920000pt;}
.x1_c00200{left:396.960000pt;}
.x6_c00200{left:656.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_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_9c122608c0338c5e51de6e3c.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00201{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00201{vertical-align:-61.938000px;}
.v3_c00201{vertical-align:-20.880000px;}
.v0_c00201{vertical-align:0.000000px;}
.v2_c00201{vertical-align:27.000000px;}
.lse_c00201{letter-spacing:-0.288000px;}
.lsf_c00201{letter-spacing:-0.216000px;}
.ls11_c00201{letter-spacing:-0.060120px;}
.lsc_c00201{letter-spacing:0.000000px;}
.ls1_c00201{letter-spacing:0.072000px;}
.lsd_c00201{letter-spacing:0.144000px;}
.ls12_c00201{letter-spacing:0.180360px;}
.ls5_c00201{letter-spacing:0.191520px;}
.ls10_c00201{letter-spacing:0.360000px;}
.ls2_c00201{letter-spacing:0.720000px;}
.ls9_c00201{letter-spacing:0.734400px;}
.ls4_c00201{letter-spacing:2.880000px;}
.ls7_c00201{letter-spacing:5.760000px;}
.ls8_c00201{letter-spacing:5.767200px;}
.ls3_c00201{letter-spacing:7.200000px;}
.lsa_c00201{letter-spacing:10.080000px;}
.ls6_c00201{letter-spacing:13.680000px;}
.lsb_c00201{letter-spacing:14.849640px;}
.ls0_c00201{letter-spacing:319.518000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00201{word-spacing:-18.144000px;}
.ws0_c00201{word-spacing:-18.072000px;}
.ws2_c00201{word-spacing:-18.000000px;}
.ws4_c00201{word-spacing:-17.712000px;}
.ws6_c00201{word-spacing:-14.969880px;}
.ws3_c00201{word-spacing:-12.161520px;}
.ws5_c00201{word-spacing:-9.720000px;}
.ws14_c00201{word-spacing:-0.360000px;}
.ws8_c00201{word-spacing:-0.162000px;}
.ws9_c00201{word-spacing:-0.072000px;}
.ws7_c00201{word-spacing:0.000000px;}
.ws35_c00201{word-spacing:0.180360px;}
.ws22_c00201{word-spacing:0.216000px;}
.wsb_c00201{word-spacing:0.288000px;}
.wsa_c00201{word-spacing:0.720000px;}
.ws28_c00201{word-spacing:1.008000px;}
.ws29_c00201{word-spacing:1.080000px;}
.ws27_c00201{word-spacing:1.368000px;}
.ws10_c00201{word-spacing:1.440000px;}
.ws34_c00201{word-spacing:1.683360px;}
.ws17_c00201{word-spacing:1.728000px;}
.ws18_c00201{word-spacing:1.800000px;}
.ws33_c00201{word-spacing:1.923840px;}
.ws1e_c00201{word-spacing:2.016000px;}
.ws15_c00201{word-spacing:2.160000px;}
.ws1d_c00201{word-spacing:2.448000px;}
.ws1c_c00201{word-spacing:2.520000px;}
.ws19_c00201{word-spacing:2.880000px;}
.ws1a_c00201{word-spacing:3.168000px;}
.ws1b_c00201{word-spacing:3.240000px;}
.wsc_c00201{word-spacing:5.040000px;}
.wsf_c00201{word-spacing:5.328000px;}
.wsd_c00201{word-spacing:5.400000px;}
.ws26_c00201{word-spacing:5.688000px;}
.ws25_c00201{word-spacing:5.760000px;}
.ws20_c00201{word-spacing:6.408000px;}
.ws1f_c00201{word-spacing:6.480000px;}
.ws13_c00201{word-spacing:7.200000px;}
.ws12_c00201{word-spacing:7.560000px;}
.ws2b_c00201{word-spacing:9.720000px;}
.ws2a_c00201{word-spacing:10.008000px;}
.ws2c_c00201{word-spacing:10.080000px;}
.ws2d_c00201{word-spacing:10.800000px;}
.ws16_c00201{word-spacing:12.600000px;}
.ws11_c00201{word-spacing:12.960000px;}
.ws23_c00201{word-spacing:13.320000px;}
.ws24_c00201{word-spacing:13.536000px;}
.ws21_c00201{word-spacing:13.680000px;}
.ws2f_c00201{word-spacing:14.328000px;}
.ws2e_c00201{word-spacing:14.400000px;}
.ws32_c00201{word-spacing:14.669280px;}
.ws30_c00201{word-spacing:14.909760px;}
.ws31_c00201{word-spacing:15.270480px;}
.wse_c00201{word-spacing:26.640000px;}
._2_c00201{margin-left:-1.008000px;}
._0_c00201{width:1.152000px;}
._5_c00201{width:2.448000px;}
._1_c00201{width:5.544000px;}
._4_c00201{width:6.768000px;}
._6_c00201{width:9.576000px;}
._7_c00201{width:10.944000px;}
._3_c00201{width:13.320000px;}
._8_c00201{width:14.472000px;}
.fc0_c00201{color:rgb(0,0,0);}
.fs3_c00201{font-size:38.880000px;}
.fs2_c00201{font-size:47.880000px;}
.fs0_c00201{font-size:54.000000px;}
.fs4_c00201{font-size:60.120000px;}
.fs1_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y25_c00201{bottom:57.240000px;}
.y24_c00201{bottom:109.791180px;}
.y23_c00201{bottom:126.985500px;}
.y22_c00201{bottom:149.490000px;}
.y26_c00201{bottom:162.180000px;}
.y21_c00201{bottom:241.020000px;}
.y20_c00201{bottom:272.070000px;}
.y1f_c00201{bottom:303.120000px;}
.y1e_c00201{bottom:334.170000px;}
.y1d_c00201{bottom:365.220000px;}
.y1c_c00201{bottom:396.270000px;}
.y1b_c00201{bottom:427.320000px;}
.y1a_c00201{bottom:458.370000px;}
.y19_c00201{bottom:489.420000px;}
.y18_c00201{bottom:520.470000px;}
.y17_c00201{bottom:551.520000px;}
.y16_c00201{bottom:582.570000px;}
.y15_c00201{bottom:613.620000px;}
.y14_c00201{bottom:644.670000px;}
.y13_c00201{bottom:675.720000px;}
.y12_c00201{bottom:706.770000px;}
.y11_c00201{bottom:737.820000px;}
.y10_c00201{bottom:768.870000px;}
.yf_c00201{bottom:799.920000px;}
.ye_c00201{bottom:830.970000px;}
.yd_c00201{bottom:861.930000px;}
.yc_c00201{bottom:892.980000px;}
.yb_c00201{bottom:924.030000px;}
.ya_c00201{bottom:955.080000px;}
.y9_c00201{bottom:986.130000px;}
.y8_c00201{bottom:1017.180000px;}
.y7_c00201{bottom:1048.230000px;}
.y6_c00201{bottom:1079.280000px;}
.y5_c00201{bottom:1110.330000px;}
.y4_c00201{bottom:1131.030000px;}
.y3_c00201{bottom:1150.915500px;}
.y2_c00201{bottom:1166.400000px;}
.y1_c00201{bottom:1197.450000px;}
.h5_c00201{height:38.158594px;}
.h2_c00201{height:52.998047px;}
.h6_c00201{height:59.004492px;}
.h3_c00201{height:70.664062px;}
.h4_c00201{height:73.991602px;}
.h0_c00201{height:1262.880000px;}
.h1_c00201{height:1263.000000px;}
.w0_c00201{width:893.070000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x2_c00201{left:127.620000px;}
.x1_c00201{left:446.580000px;}
@media print{
.v1_c00201{vertical-align:-55.056000pt;}
.v3_c00201{vertical-align:-18.560000pt;}
.v0_c00201{vertical-align:0.000000pt;}
.v2_c00201{vertical-align:24.000000pt;}
.lse_c00201{letter-spacing:-0.256000pt;}
.lsf_c00201{letter-spacing:-0.192000pt;}
.ls11_c00201{letter-spacing:-0.053440pt;}
.lsc_c00201{letter-spacing:0.000000pt;}
.ls1_c00201{letter-spacing:0.064000pt;}
.lsd_c00201{letter-spacing:0.128000pt;}
.ls12_c00201{letter-spacing:0.160320pt;}
.ls5_c00201{letter-spacing:0.170240pt;}
.ls10_c00201{letter-spacing:0.320000pt;}
.ls2_c00201{letter-spacing:0.640000pt;}
.ls9_c00201{letter-spacing:0.652800pt;}
.ls4_c00201{letter-spacing:2.560000pt;}
.ls7_c00201{letter-spacing:5.120000pt;}
.ls8_c00201{letter-spacing:5.126400pt;}
.ls3_c00201{letter-spacing:6.400000pt;}
.lsa_c00201{letter-spacing:8.960000pt;}
.ls6_c00201{letter-spacing:12.160000pt;}
.lsb_c00201{letter-spacing:13.199680pt;}
.ls0_c00201{letter-spacing:284.016000pt;}
.ws1_c00201{word-spacing:-16.128000pt;}
.ws0_c00201{word-spacing:-16.064000pt;}
.ws2_c00201{word-spacing:-16.000000pt;}
.ws4_c00201{word-spacing:-15.744000pt;}
.ws6_c00201{word-spacing:-13.306560pt;}
.ws3_c00201{word-spacing:-10.810240pt;}
.ws5_c00201{word-spacing:-8.640000pt;}
.ws14_c00201{word-spacing:-0.320000pt;}
.ws8_c00201{word-spacing:-0.144000pt;}
.ws9_c00201{word-spacing:-0.064000pt;}
.ws7_c00201{word-spacing:0.000000pt;}
.ws35_c00201{word-spacing:0.160320pt;}
.ws22_c00201{word-spacing:0.192000pt;}
.wsb_c00201{word-spacing:0.256000pt;}
.wsa_c00201{word-spacing:0.640000pt;}
.ws28_c00201{word-spacing:0.896000pt;}
.ws29_c00201{word-spacing:0.960000pt;}
.ws27_c00201{word-spacing:1.216000pt;}
.ws10_c00201{word-spacing:1.280000pt;}
.ws34_c00201{word-spacing:1.496320pt;}
.ws17_c00201{word-spacing:1.536000pt;}
.ws18_c00201{word-spacing:1.600000pt;}
.ws33_c00201{word-spacing:1.710080pt;}
.ws1e_c00201{word-spacing:1.792000pt;}
.ws15_c00201{word-spacing:1.920000pt;}
.ws1d_c00201{word-spacing:2.176000pt;}
.ws1c_c00201{word-spacing:2.240000pt;}
.ws19_c00201{word-spacing:2.560000pt;}
.ws1a_c00201{word-spacing:2.816000pt;}
.ws1b_c00201{word-spacing:2.880000pt;}
.wsc_c00201{word-spacing:4.480000pt;}
.wsf_c00201{word-spacing:4.736000pt;}
.wsd_c00201{word-spacing:4.800000pt;}
.ws26_c00201{word-spacing:5.056000pt;}
.ws25_c00201{word-spacing:5.120000pt;}
.ws20_c00201{word-spacing:5.696000pt;}
.ws1f_c00201{word-spacing:5.760000pt;}
.ws13_c00201{word-spacing:6.400000pt;}
.ws12_c00201{word-spacing:6.720000pt;}
.ws2b_c00201{word-spacing:8.640000pt;}
.ws2a_c00201{word-spacing:8.896000pt;}
.ws2c_c00201{word-spacing:8.960000pt;}
.ws2d_c00201{word-spacing:9.600000pt;}
.ws16_c00201{word-spacing:11.200000pt;}
.ws11_c00201{word-spacing:11.520000pt;}
.ws23_c00201{word-spacing:11.840000pt;}
.ws24_c00201{word-spacing:12.032000pt;}
.ws21_c00201{word-spacing:12.160000pt;}
.ws2f_c00201{word-spacing:12.736000pt;}
.ws2e_c00201{word-spacing:12.800000pt;}
.ws32_c00201{word-spacing:13.039360pt;}
.ws30_c00201{word-spacing:13.253120pt;}
.ws31_c00201{word-spacing:13.573760pt;}
.wse_c00201{word-spacing:23.680000pt;}
._2_c00201{margin-left:-0.896000pt;}
._0_c00201{width:1.024000pt;}
._5_c00201{width:2.176000pt;}
._1_c00201{width:4.928000pt;}
._4_c00201{width:6.016000pt;}
._6_c00201{width:8.512000pt;}
._7_c00201{width:9.728000pt;}
._3_c00201{width:11.840000pt;}
._8_c00201{width:12.864000pt;}
.fs3_c00201{font-size:34.560000pt;}
.fs2_c00201{font-size:42.560000pt;}
.fs0_c00201{font-size:48.000000pt;}
.fs4_c00201{font-size:53.440000pt;}
.fs1_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y25_c00201{bottom:50.880000pt;}
.y24_c00201{bottom:97.592160pt;}
.y23_c00201{bottom:112.876000pt;}
.y22_c00201{bottom:132.880000pt;}
.y26_c00201{bottom:144.160000pt;}
.y21_c00201{bottom:214.240000pt;}
.y20_c00201{bottom:241.840000pt;}
.y1f_c00201{bottom:269.440000pt;}
.y1e_c00201{bottom:297.040000pt;}
.y1d_c00201{bottom:324.640000pt;}
.y1c_c00201{bottom:352.240000pt;}
.y1b_c00201{bottom:379.840000pt;}
.y1a_c00201{bottom:407.440000pt;}
.y19_c00201{bottom:435.040000pt;}
.y18_c00201{bottom:462.640000pt;}
.y17_c00201{bottom:490.240000pt;}
.y16_c00201{bottom:517.840000pt;}
.y15_c00201{bottom:545.440000pt;}
.y14_c00201{bottom:573.040000pt;}
.y13_c00201{bottom:600.640000pt;}
.y12_c00201{bottom:628.240000pt;}
.y11_c00201{bottom:655.840000pt;}
.y10_c00201{bottom:683.440000pt;}
.yf_c00201{bottom:711.040000pt;}
.ye_c00201{bottom:738.640000pt;}
.yd_c00201{bottom:766.160000pt;}
.yc_c00201{bottom:793.760000pt;}
.yb_c00201{bottom:821.360000pt;}
.ya_c00201{bottom:848.960000pt;}
.y9_c00201{bottom:876.560000pt;}
.y8_c00201{bottom:904.160000pt;}
.y7_c00201{bottom:931.760000pt;}
.y6_c00201{bottom:959.360000pt;}
.y5_c00201{bottom:986.960000pt;}
.y4_c00201{bottom:1005.360000pt;}
.y3_c00201{bottom:1023.036000pt;}
.y2_c00201{bottom:1036.800000pt;}
.y1_c00201{bottom:1064.400000pt;}
.h5_c00201{height:33.918750pt;}
.h2_c00201{height:47.109375pt;}
.h6_c00201{height:52.448437pt;}
.h3_c00201{height:62.812500pt;}
.h4_c00201{height:65.770312pt;}
.h0_c00201{height:1122.560000pt;}
.h1_c00201{height:1122.666667pt;}
.w0_c00201{width:793.840000pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x2_c00201{left:113.440000pt;}
.x1_c00201{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1418f06b8988626c7cc9e3bf.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_1b6ae9cec168714299ef674f.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00202{vertical-align:-20.880000px;}
.v0_c00202{vertical-align:0.000000px;}
.v1_c00202{vertical-align:27.000000px;}
.ls13_c00202{letter-spacing:-0.576000px;}
.ls11_c00202{letter-spacing:-0.360000px;}
.ls12_c00202{letter-spacing:-0.288000px;}
.ls10_c00202{letter-spacing:-0.144000px;}
.ls14_c00202{letter-spacing:-0.120240px;}
.lse_c00202{letter-spacing:-0.108000px;}
.lsf_c00202{letter-spacing:-0.072000px;}
.ls16_c00202{letter-spacing:-0.060120px;}
.lsd_c00202{letter-spacing:0.000000px;}
.ls0_c00202{letter-spacing:0.072000px;}
.ls6_c00202{letter-spacing:0.144000px;}
.ls15_c00202{letter-spacing:0.180360px;}
.ls1_c00202{letter-spacing:0.191520px;}
.ls4_c00202{letter-spacing:0.720000px;}
.ls3_c00202{letter-spacing:1.080000px;}
.lsa_c00202{letter-spacing:1.087200px;}
.ls5_c00202{letter-spacing:2.880000px;}
.lsb_c00202{letter-spacing:3.306600px;}
.lsc_c00202{letter-spacing:3.390768px;}
.ls8_c00202{letter-spacing:5.760000px;}
.ls9_c00202{letter-spacing:7.920000px;}
.ls7_c00202{letter-spacing:8.640000px;}
.ls2_c00202{letter-spacing:28.814400px;}
.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:-18.072000px;}
.ws1_c00202{word-spacing:-17.856000px;}
.ws4_c00202{word-spacing:-17.712000px;}
.ws3_c00202{word-spacing:-17.640000px;}
.ws5_c00202{word-spacing:-17.424000px;}
.ws2_c00202{word-spacing:-12.161520px;}
.ws6_c00202{word-spacing:-9.720000px;}
.wsb_c00202{word-spacing:-0.432000px;}
.ws31_c00202{word-spacing:-0.180360px;}
.ws22_c00202{word-spacing:-0.144000px;}
.wsd_c00202{word-spacing:-0.072000px;}
.ws7_c00202{word-spacing:0.000000px;}
.wsc_c00202{word-spacing:0.072000px;}
.ws9_c00202{word-spacing:0.162000px;}
.ws34_c00202{word-spacing:0.180360px;}
.wsa_c00202{word-spacing:0.216000px;}
.ws8_c00202{word-spacing:0.270000px;}
.ws2f_c00202{word-spacing:0.288000px;}
.ws10_c00202{word-spacing:0.360000px;}
.ws17_c00202{word-spacing:0.576000px;}
.ws18_c00202{word-spacing:0.720000px;}
.ws23_c00202{word-spacing:1.008000px;}
.ws21_c00202{word-spacing:1.080000px;}
.ws2e_c00202{word-spacing:1.440000px;}
.ws19_c00202{word-spacing:2.448000px;}
.ws1a_c00202{word-spacing:2.880000px;}
.ws32_c00202{word-spacing:3.006000px;}
.ws33_c00202{word-spacing:3.066120px;}
.ws30_c00202{word-spacing:3.426840px;}
.ws1d_c00202{word-spacing:3.456000px;}
.ws1c_c00202{word-spacing:3.888000px;}
.ws29_c00202{word-spacing:4.248000px;}
.ws2a_c00202{word-spacing:4.320000px;}
.ws13_c00202{word-spacing:4.968000px;}
.ws27_c00202{word-spacing:5.328000px;}
.ws26_c00202{word-spacing:5.616000px;}
.ws20_c00202{word-spacing:5.760000px;}
.ws24_c00202{word-spacing:7.128000px;}
.ws2d_c00202{word-spacing:7.848000px;}
.ws2c_c00202{word-spacing:7.920000px;}
.ws2b_c00202{word-spacing:8.568000px;}
.ws25_c00202{word-spacing:8.640000px;}
.ws1b_c00202{word-spacing:15.120000px;}
.wse_c00202{word-spacing:17.568000px;}
.wsf_c00202{word-spacing:17.640000px;}
.ws15_c00202{word-spacing:18.360000px;}
.ws14_c00202{word-spacing:23.400000px;}
.ws1f_c00202{word-spacing:25.488000px;}
.ws1e_c00202{word-spacing:25.920000px;}
.ws28_c00202{word-spacing:26.280000px;}
.ws16_c00202{word-spacing:28.728000px;}
.ws11_c00202{word-spacing:34.488000px;}
.ws12_c00202{word-spacing:34.560000px;}
._1_c00202{margin-left:-1.058400px;}
._0_c00202{width:1.220400px;}
._2_c00202{width:3.031200px;}
._3_c00202{width:5.688000px;}
._4_c00202{width:7.848000px;}
.fc0_c00202{color:rgb(0,0,0);}
.fs3_c00202{font-size:38.880000px;}
.fs2_c00202{font-size:47.880000px;}
.fs0_c00202{font-size:54.000000px;}
.fs4_c00202{font-size:60.120000px;}
.fs1_c00202{font-size:72.000000px;}
.y0_c00202{bottom:0.000000px;}
.y27_c00202{bottom:57.240000px;}
.y26_c00202{bottom:109.791180px;}
.y25_c00202{bottom:126.985500px;}
.y24_c00202{bottom:149.490000px;}
.y28_c00202{bottom:162.180000px;}
.y23_c00202{bottom:209.970000px;}
.y22_c00202{bottom:241.020000px;}
.y21_c00202{bottom:272.070000px;}
.y20_c00202{bottom:303.120000px;}
.y1f_c00202{bottom:334.170000px;}
.y1e_c00202{bottom:365.220000px;}
.y1d_c00202{bottom:396.270000px;}
.y1c_c00202{bottom:427.320000px;}
.y1b_c00202{bottom:458.370000px;}
.y1a_c00202{bottom:489.420000px;}
.y19_c00202{bottom:520.470000px;}
.y18_c00202{bottom:551.520000px;}
.y17_c00202{bottom:582.570000px;}
.y16_c00202{bottom:613.620000px;}
.y15_c00202{bottom:644.670000px;}
.y14_c00202{bottom:675.720000px;}
.y13_c00202{bottom:706.770000px;}
.y12_c00202{bottom:737.820000px;}
.y11_c00202{bottom:768.870000px;}
.y10_c00202{bottom:799.920000px;}
.yf_c00202{bottom:830.970000px;}
.ye_c00202{bottom:861.930000px;}
.yd_c00202{bottom:892.980000px;}
.yc_c00202{bottom:924.030000px;}
.yb_c00202{bottom:955.080000px;}
.ya_c00202{bottom:986.130000px;}
.y9_c00202{bottom:1017.180000px;}
.y8_c00202{bottom:1048.230000px;}
.y7_c00202{bottom:1079.100000px;}
.y6_c00202{bottom:1110.150000px;}
.y5_c00202{bottom:1131.030000px;}
.y4_c00202{bottom:1150.920000px;}
.y3_c00202{bottom:1166.404500px;}
.y2_c00202{bottom:1181.970000px;}
.y1_c00202{bottom:1197.450000px;}
.h7_c00202{height:38.158594px;}
.h3_c00202{height:52.971680px;}
.h2_c00202{height:52.998047px;}
.h8_c00202{height:59.004492px;}
.h4_c00202{height:70.664062px;}
.h5_c00202{height:72.562500px;}
.h6_c00202{height:73.991602px;}
.h0_c00202{height:1262.880000px;}
.h1_c00202{height:1263.000000px;}
.w0_c00202{width:893.070000px;}
.w1_c00202{width:893.250000px;}
.x0_c00202{left:0.000000px;}
.x3_c00202{left:127.620000px;}
.x2_c00202{left:425.160000px;}
.x1_c00202{left:446.580000px;}
.x4_c00202{left:738.540000px;}
@media print{
.v2_c00202{vertical-align:-18.560000pt;}
.v0_c00202{vertical-align:0.000000pt;}
.v1_c00202{vertical-align:24.000000pt;}
.ls13_c00202{letter-spacing:-0.512000pt;}
.ls11_c00202{letter-spacing:-0.320000pt;}
.ls12_c00202{letter-spacing:-0.256000pt;}
.ls10_c00202{letter-spacing:-0.128000pt;}
.ls14_c00202{letter-spacing:-0.106880pt;}
.lse_c00202{letter-spacing:-0.096000pt;}
.lsf_c00202{letter-spacing:-0.064000pt;}
.ls16_c00202{letter-spacing:-0.053440pt;}
.lsd_c00202{letter-spacing:0.000000pt;}
.ls0_c00202{letter-spacing:0.064000pt;}
.ls6_c00202{letter-spacing:0.128000pt;}
.ls15_c00202{letter-spacing:0.160320pt;}
.ls1_c00202{letter-spacing:0.170240pt;}
.ls4_c00202{letter-spacing:0.640000pt;}
.ls3_c00202{letter-spacing:0.960000pt;}
.lsa_c00202{letter-spacing:0.966400pt;}
.ls5_c00202{letter-spacing:2.560000pt;}
.lsb_c00202{letter-spacing:2.939200pt;}
.lsc_c00202{letter-spacing:3.014016pt;}
.ls8_c00202{letter-spacing:5.120000pt;}
.ls9_c00202{letter-spacing:7.040000pt;}
.ls7_c00202{letter-spacing:7.680000pt;}
.ls2_c00202{letter-spacing:25.612800pt;}
.ws0_c00202{word-spacing:-16.064000pt;}
.ws1_c00202{word-spacing:-15.872000pt;}
.ws4_c00202{word-spacing:-15.744000pt;}
.ws3_c00202{word-spacing:-15.680000pt;}
.ws5_c00202{word-spacing:-15.488000pt;}
.ws2_c00202{word-spacing:-10.810240pt;}
.ws6_c00202{word-spacing:-8.640000pt;}
.wsb_c00202{word-spacing:-0.384000pt;}
.ws31_c00202{word-spacing:-0.160320pt;}
.ws22_c00202{word-spacing:-0.128000pt;}
.wsd_c00202{word-spacing:-0.064000pt;}
.ws7_c00202{word-spacing:0.000000pt;}
.wsc_c00202{word-spacing:0.064000pt;}
.ws9_c00202{word-spacing:0.144000pt;}
.ws34_c00202{word-spacing:0.160320pt;}
.wsa_c00202{word-spacing:0.192000pt;}
.ws8_c00202{word-spacing:0.240000pt;}
.ws2f_c00202{word-spacing:0.256000pt;}
.ws10_c00202{word-spacing:0.320000pt;}
.ws17_c00202{word-spacing:0.512000pt;}
.ws18_c00202{word-spacing:0.640000pt;}
.ws23_c00202{word-spacing:0.896000pt;}
.ws21_c00202{word-spacing:0.960000pt;}
.ws2e_c00202{word-spacing:1.280000pt;}
.ws19_c00202{word-spacing:2.176000pt;}
.ws1a_c00202{word-spacing:2.560000pt;}
.ws32_c00202{word-spacing:2.672000pt;}
.ws33_c00202{word-spacing:2.725440pt;}
.ws30_c00202{word-spacing:3.046080pt;}
.ws1d_c00202{word-spacing:3.072000pt;}
.ws1c_c00202{word-spacing:3.456000pt;}
.ws29_c00202{word-spacing:3.776000pt;}
.ws2a_c00202{word-spacing:3.840000pt;}
.ws13_c00202{word-spacing:4.416000pt;}
.ws27_c00202{word-spacing:4.736000pt;}
.ws26_c00202{word-spacing:4.992000pt;}
.ws20_c00202{word-spacing:5.120000pt;}
.ws24_c00202{word-spacing:6.336000pt;}
.ws2d_c00202{word-spacing:6.976000pt;}
.ws2c_c00202{word-spacing:7.040000pt;}
.ws2b_c00202{word-spacing:7.616000pt;}
.ws25_c00202{word-spacing:7.680000pt;}
.ws1b_c00202{word-spacing:13.440000pt;}
.wse_c00202{word-spacing:15.616000pt;}
.wsf_c00202{word-spacing:15.680000pt;}
.ws15_c00202{word-spacing:16.320000pt;}
.ws14_c00202{word-spacing:20.800000pt;}
.ws1f_c00202{word-spacing:22.656000pt;}
.ws1e_c00202{word-spacing:23.040000pt;}
.ws28_c00202{word-spacing:23.360000pt;}
.ws16_c00202{word-spacing:25.536000pt;}
.ws11_c00202{word-spacing:30.656000pt;}
.ws12_c00202{word-spacing:30.720000pt;}
._1_c00202{margin-left:-0.940800pt;}
._0_c00202{width:1.084800pt;}
._2_c00202{width:2.694400pt;}
._3_c00202{width:5.056000pt;}
._4_c00202{width:6.976000pt;}
.fs3_c00202{font-size:34.560000pt;}
.fs2_c00202{font-size:42.560000pt;}
.fs0_c00202{font-size:48.000000pt;}
.fs4_c00202{font-size:53.440000pt;}
.fs1_c00202{font-size:64.000000pt;}
.y0_c00202{bottom:0.000000pt;}
.y27_c00202{bottom:50.880000pt;}
.y26_c00202{bottom:97.592160pt;}
.y25_c00202{bottom:112.876000pt;}
.y24_c00202{bottom:132.880000pt;}
.y28_c00202{bottom:144.160000pt;}
.y23_c00202{bottom:186.640000pt;}
.y22_c00202{bottom:214.240000pt;}
.y21_c00202{bottom:241.840000pt;}
.y20_c00202{bottom:269.440000pt;}
.y1f_c00202{bottom:297.040000pt;}
.y1e_c00202{bottom:324.640000pt;}
.y1d_c00202{bottom:352.240000pt;}
.y1c_c00202{bottom:379.840000pt;}
.y1b_c00202{bottom:407.440000pt;}
.y1a_c00202{bottom:435.040000pt;}
.y19_c00202{bottom:462.640000pt;}
.y18_c00202{bottom:490.240000pt;}
.y17_c00202{bottom:517.840000pt;}
.y16_c00202{bottom:545.440000pt;}
.y15_c00202{bottom:573.040000pt;}
.y14_c00202{bottom:600.640000pt;}
.y13_c00202{bottom:628.240000pt;}
.y12_c00202{bottom:655.840000pt;}
.y11_c00202{bottom:683.440000pt;}
.y10_c00202{bottom:711.040000pt;}
.yf_c00202{bottom:738.640000pt;}
.ye_c00202{bottom:766.160000pt;}
.yd_c00202{bottom:793.760000pt;}
.yc_c00202{bottom:821.360000pt;}
.yb_c00202{bottom:848.960000pt;}
.ya_c00202{bottom:876.560000pt;}
.y9_c00202{bottom:904.160000pt;}
.y8_c00202{bottom:931.760000pt;}
.y7_c00202{bottom:959.200000pt;}
.y6_c00202{bottom:986.800000pt;}
.y5_c00202{bottom:1005.360000pt;}
.y4_c00202{bottom:1023.040000pt;}
.y3_c00202{bottom:1036.804000pt;}
.y2_c00202{bottom:1050.640000pt;}
.y1_c00202{bottom:1064.400000pt;}
.h7_c00202{height:33.918750pt;}
.h3_c00202{height:47.085938pt;}
.h2_c00202{height:47.109375pt;}
.h8_c00202{height:52.448437pt;}
.h4_c00202{height:62.812500pt;}
.h5_c00202{height:64.500000pt;}
.h6_c00202{height:65.770312pt;}
.h0_c00202{height:1122.560000pt;}
.h1_c00202{height:1122.666667pt;}
.w0_c00202{width:793.840000pt;}
.w1_c00202{width:794.000000pt;}
.x0_c00202{left:0.000000pt;}
.x3_c00202{left:113.440000pt;}
.x2_c00202{left:377.920000pt;}
.x1_c00202{left:396.960000pt;}
.x4_c00202{left:656.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_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_bf9fe88b856f81d5a48ed845.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00203{vertical-align:-61.938000px;}
.v0_c00203{vertical-align:0.000000px;}
.lsa_c00203{letter-spacing:-0.288000px;}
.ls8_c00203{letter-spacing:0.000000px;}
.ls2_c00203{letter-spacing:0.072000px;}
.ls3_c00203{letter-spacing:0.144000px;}
.ls9_c00203{letter-spacing:0.432000px;}
.ls7_c00203{letter-spacing:2.880000px;}
.ls1_c00203{letter-spacing:14.400000px;}
.ls5_c00203{letter-spacing:16.200000px;}
.ls6_c00203{letter-spacing:25.200000px;}
.ls4_c00203{letter-spacing:36.720000px;}
.ls0_c00203{letter-spacing:319.518000px;}
.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:-18.072000px;}
.ws1_c00203{word-spacing:-18.000000px;}
.ws2_c00203{word-spacing:-17.712000px;}
.wsb_c00203{word-spacing:-0.432000px;}
.ws1d_c00203{word-spacing:-0.360000px;}
.ws4_c00203{word-spacing:-0.162000px;}
.ws12_c00203{word-spacing:-0.072000px;}
.ws3_c00203{word-spacing:0.000000px;}
.ws1a_c00203{word-spacing:0.288000px;}
.ws25_c00203{word-spacing:0.576000px;}
.wsf_c00203{word-spacing:0.720000px;}
.wsa_c00203{word-spacing:1.800000px;}
.ws1f_c00203{word-spacing:2.808000px;}
.ws20_c00203{word-spacing:2.880000px;}
.ws16_c00203{word-spacing:3.168000px;}
.ws26_c00203{word-spacing:3.240000px;}
.ws9_c00203{word-spacing:3.600000px;}
.ws17_c00203{word-spacing:4.968000px;}
.ws14_c00203{word-spacing:5.760000px;}
.ws15_c00203{word-spacing:6.048000px;}
.ws13_c00203{word-spacing:6.120000px;}
.ws11_c00203{word-spacing:9.720000px;}
.ws10_c00203{word-spacing:10.080000px;}
.ws5_c00203{word-spacing:13.248000px;}
.ws7_c00203{word-spacing:14.328000px;}
.ws6_c00203{word-spacing:14.400000px;}
.ws22_c00203{word-spacing:16.128000px;}
.ws21_c00203{word-spacing:16.200000px;}
.ws1c_c00203{word-spacing:16.560000px;}
.wse_c00203{word-spacing:16.776000px;}
.wsd_c00203{word-spacing:16.920000px;}
.ws1e_c00203{word-spacing:20.520000px;}
.ws8_c00203{word-spacing:20.808000px;}
.ws24_c00203{word-spacing:25.128000px;}
.ws23_c00203{word-spacing:25.200000px;}
.wsc_c00203{word-spacing:32.760000px;}
.ws1b_c00203{word-spacing:36.648000px;}
.ws19_c00203{word-spacing:41.328000px;}
.ws18_c00203{word-spacing:41.400000px;}
._0_c00203{margin-left:-1.080000px;}
._1_c00203{width:1.008000px;}
._4_c00203{width:3.168000px;}
._2_c00203{width:9.648000px;}
._3_c00203{width:36.720000px;}
.fc0_c00203{color:rgb(0,0,0);}
.fs0_c00203{font-size:54.000000px;}
.fs1_c00203{font-size:72.000000px;}
.y0_c00203{bottom:0.000000px;}
.y25_c00203{bottom:57.240000px;}
.y24_c00203{bottom:158.220000px;}
.y23_c00203{bottom:189.270000px;}
.y22_c00203{bottom:220.320000px;}
.y21_c00203{bottom:251.370000px;}
.y20_c00203{bottom:282.420000px;}
.y1f_c00203{bottom:313.470000px;}
.y1e_c00203{bottom:344.520000px;}
.y1d_c00203{bottom:375.570000px;}
.y1c_c00203{bottom:406.620000px;}
.y1b_c00203{bottom:437.670000px;}
.y1a_c00203{bottom:468.720000px;}
.y19_c00203{bottom:499.770000px;}
.y18_c00203{bottom:520.470000px;}
.y17_c00203{bottom:551.520000px;}
.y16_c00203{bottom:582.570000px;}
.y15_c00203{bottom:613.620000px;}
.y14_c00203{bottom:644.670000px;}
.y13_c00203{bottom:675.720000px;}
.y12_c00203{bottom:706.770000px;}
.y11_c00203{bottom:737.820000px;}
.y10_c00203{bottom:768.870000px;}
.yf_c00203{bottom:799.920000px;}
.ye_c00203{bottom:830.970000px;}
.yd_c00203{bottom:861.930000px;}
.yc_c00203{bottom:892.980000px;}
.yb_c00203{bottom:924.030000px;}
.ya_c00203{bottom:955.080000px;}
.y9_c00203{bottom:986.130000px;}
.y8_c00203{bottom:1017.180000px;}
.y7_c00203{bottom:1048.230000px;}
.y6_c00203{bottom:1079.280000px;}
.y5_c00203{bottom:1110.330000px;}
.y4_c00203{bottom:1131.030000px;}
.y3_c00203{bottom:1150.915500px;}
.y2_c00203{bottom:1166.400000px;}
.y1_c00203{bottom:1197.450000px;}
.h2_c00203{height:52.998047px;}
.h3_c00203{height:70.664062px;}
.h0_c00203{height:1262.880000px;}
.h1_c00203{height:1263.000000px;}
.w0_c00203{width:893.070000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x2_c00203{left:127.620000px;}
.x1_c00203{left:446.580000px;}
@media print{
.v1_c00203{vertical-align:-55.056000pt;}
.v0_c00203{vertical-align:0.000000pt;}
.lsa_c00203{letter-spacing:-0.256000pt;}
.ls8_c00203{letter-spacing:0.000000pt;}
.ls2_c00203{letter-spacing:0.064000pt;}
.ls3_c00203{letter-spacing:0.128000pt;}
.ls9_c00203{letter-spacing:0.384000pt;}
.ls7_c00203{letter-spacing:2.560000pt;}
.ls1_c00203{letter-spacing:12.800000pt;}
.ls5_c00203{letter-spacing:14.400000pt;}
.ls6_c00203{letter-spacing:22.400000pt;}
.ls4_c00203{letter-spacing:32.640000pt;}
.ls0_c00203{letter-spacing:284.016000pt;}
.ws0_c00203{word-spacing:-16.064000pt;}
.ws1_c00203{word-spacing:-16.000000pt;}
.ws2_c00203{word-spacing:-15.744000pt;}
.wsb_c00203{word-spacing:-0.384000pt;}
.ws1d_c00203{word-spacing:-0.320000pt;}
.ws4_c00203{word-spacing:-0.144000pt;}
.ws12_c00203{word-spacing:-0.064000pt;}
.ws3_c00203{word-spacing:0.000000pt;}
.ws1a_c00203{word-spacing:0.256000pt;}
.ws25_c00203{word-spacing:0.512000pt;}
.wsf_c00203{word-spacing:0.640000pt;}
.wsa_c00203{word-spacing:1.600000pt;}
.ws1f_c00203{word-spacing:2.496000pt;}
.ws20_c00203{word-spacing:2.560000pt;}
.ws16_c00203{word-spacing:2.816000pt;}
.ws26_c00203{word-spacing:2.880000pt;}
.ws9_c00203{word-spacing:3.200000pt;}
.ws17_c00203{word-spacing:4.416000pt;}
.ws14_c00203{word-spacing:5.120000pt;}
.ws15_c00203{word-spacing:5.376000pt;}
.ws13_c00203{word-spacing:5.440000pt;}
.ws11_c00203{word-spacing:8.640000pt;}
.ws10_c00203{word-spacing:8.960000pt;}
.ws5_c00203{word-spacing:11.776000pt;}
.ws7_c00203{word-spacing:12.736000pt;}
.ws6_c00203{word-spacing:12.800000pt;}
.ws22_c00203{word-spacing:14.336000pt;}
.ws21_c00203{word-spacing:14.400000pt;}
.ws1c_c00203{word-spacing:14.720000pt;}
.wse_c00203{word-spacing:14.912000pt;}
.wsd_c00203{word-spacing:15.040000pt;}
.ws1e_c00203{word-spacing:18.240000pt;}
.ws8_c00203{word-spacing:18.496000pt;}
.ws24_c00203{word-spacing:22.336000pt;}
.ws23_c00203{word-spacing:22.400000pt;}
.wsc_c00203{word-spacing:29.120000pt;}
.ws1b_c00203{word-spacing:32.576000pt;}
.ws19_c00203{word-spacing:36.736000pt;}
.ws18_c00203{word-spacing:36.800000pt;}
._0_c00203{margin-left:-0.960000pt;}
._1_c00203{width:0.896000pt;}
._4_c00203{width:2.816000pt;}
._2_c00203{width:8.576000pt;}
._3_c00203{width:32.640000pt;}
.fs0_c00203{font-size:48.000000pt;}
.fs1_c00203{font-size:64.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y25_c00203{bottom:50.880000pt;}
.y24_c00203{bottom:140.640000pt;}
.y23_c00203{bottom:168.240000pt;}
.y22_c00203{bottom:195.840000pt;}
.y21_c00203{bottom:223.440000pt;}
.y20_c00203{bottom:251.040000pt;}
.y1f_c00203{bottom:278.640000pt;}
.y1e_c00203{bottom:306.240000pt;}
.y1d_c00203{bottom:333.840000pt;}
.y1c_c00203{bottom:361.440000pt;}
.y1b_c00203{bottom:389.040000pt;}
.y1a_c00203{bottom:416.640000pt;}
.y19_c00203{bottom:444.240000pt;}
.y18_c00203{bottom:462.640000pt;}
.y17_c00203{bottom:490.240000pt;}
.y16_c00203{bottom:517.840000pt;}
.y15_c00203{bottom:545.440000pt;}
.y14_c00203{bottom:573.040000pt;}
.y13_c00203{bottom:600.640000pt;}
.y12_c00203{bottom:628.240000pt;}
.y11_c00203{bottom:655.840000pt;}
.y10_c00203{bottom:683.440000pt;}
.yf_c00203{bottom:711.040000pt;}
.ye_c00203{bottom:738.640000pt;}
.yd_c00203{bottom:766.160000pt;}
.yc_c00203{bottom:793.760000pt;}
.yb_c00203{bottom:821.360000pt;}
.ya_c00203{bottom:848.960000pt;}
.y9_c00203{bottom:876.560000pt;}
.y8_c00203{bottom:904.160000pt;}
.y7_c00203{bottom:931.760000pt;}
.y6_c00203{bottom:959.360000pt;}
.y5_c00203{bottom:986.960000pt;}
.y4_c00203{bottom:1005.360000pt;}
.y3_c00203{bottom:1023.036000pt;}
.y2_c00203{bottom:1036.800000pt;}
.y1_c00203{bottom:1064.400000pt;}
.h2_c00203{height:47.109375pt;}
.h3_c00203{height:62.812500pt;}
.h0_c00203{height:1122.560000pt;}
.h1_c00203{height:1122.666667pt;}
.w0_c00203{width:793.840000pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x2_c00203{left:113.440000pt;}
.x1_c00203{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbe6609e6b94ea0de1fcf6ed.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.284180;font-style:normal;font-weight:normal;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_a5d528cb9046394e7e62764e.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;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_c00204;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.432129;font-style: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;}
.lsf_c00204{letter-spacing:-0.360000px;}
.ls12_c00204{letter-spacing:-0.288000px;}
.ls11_c00204{letter-spacing:-0.216000px;}
.ls13_c00204{letter-spacing:-0.144000px;}
.lse_c00204{letter-spacing:-0.108000px;}
.ls10_c00204{letter-spacing:-0.072000px;}
.lsd_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:0.072000px;}
.ls3_c00204{letter-spacing:0.144000px;}
.ls9_c00204{letter-spacing:1.800000px;}
.ls2_c00204{letter-spacing:2.894400px;}
.ls5_c00204{letter-spacing:5.040000px;}
.ls7_c00204{letter-spacing:6.120000px;}
.lsc_c00204{letter-spacing:6.840000px;}
.lsa_c00204{letter-spacing:7.200000px;}
.lsb_c00204{letter-spacing:7.920000px;}
.ls8_c00204{letter-spacing:9.720000px;}
.ls4_c00204{letter-spacing:11.534400px;}
.ls6_c00204{letter-spacing:14.760000px;}
.ls1_c00204{letter-spacing:30.744000px;}
.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:-18.072000px;}
.ws1_c00204{word-spacing:-18.000000px;}
.ws2_c00204{word-spacing:-17.928000px;}
.ws4_c00204{word-spacing:-17.856000px;}
.ws3_c00204{word-spacing:-17.784000px;}
.ws13_c00204{word-spacing:-0.360000px;}
.ws15_c00204{word-spacing:-0.144000px;}
.ws11_c00204{word-spacing:-0.072000px;}
.ws5_c00204{word-spacing:0.000000px;}
.ws7_c00204{word-spacing:0.162000px;}
.ws6_c00204{word-spacing:0.270000px;}
.ws23_c00204{word-spacing:0.288000px;}
.wsb_c00204{word-spacing:0.360000px;}
.ws26_c00204{word-spacing:0.720000px;}
.ws10_c00204{word-spacing:1.368000px;}
.wsf_c00204{word-spacing:1.440000px;}
.ws25_c00204{word-spacing:1.728000px;}
.ws24_c00204{word-spacing:1.800000px;}
.wse_c00204{word-spacing:3.096000px;}
.wsc_c00204{word-spacing:3.168000px;}
.wsd_c00204{word-spacing:3.240000px;}
.ws20_c00204{word-spacing:3.528000px;}
.ws1f_c00204{word-spacing:3.600000px;}
.ws16_c00204{word-spacing:5.040000px;}
.ws1e_c00204{word-spacing:5.688000px;}
.ws1d_c00204{word-spacing:5.760000px;}
.wsa_c00204{word-spacing:6.120000px;}
.ws34_c00204{word-spacing:6.480000px;}
.ws2c_c00204{word-spacing:6.768000px;}
.ws2b_c00204{word-spacing:7.200000px;}
.ws2e_c00204{word-spacing:7.560000px;}
.ws2f_c00204{word-spacing:7.848000px;}
.ws2d_c00204{word-spacing:7.920000px;}
.ws28_c00204{word-spacing:9.360000px;}
.ws27_c00204{word-spacing:9.648000px;}
.ws21_c00204{word-spacing:9.720000px;}
.ws22_c00204{word-spacing:10.008000px;}
.ws14_c00204{word-spacing:11.448000px;}
.ws1b_c00204{word-spacing:12.960000px;}
.ws1c_c00204{word-spacing:13.320000px;}
.ws17_c00204{word-spacing:14.688000px;}
.ws18_c00204{word-spacing:14.760000px;}
.ws12_c00204{word-spacing:15.840000px;}
.ws2a_c00204{word-spacing:16.128000px;}
.ws29_c00204{word-spacing:16.200000px;}
.ws19_c00204{word-spacing:16.848000px;}
.ws1a_c00204{word-spacing:16.920000px;}
.ws33_c00204{word-spacing:17.208000px;}
.ws32_c00204{word-spacing:17.280000px;}
.ws9_c00204{word-spacing:18.648000px;}
.ws8_c00204{word-spacing:18.720000px;}
.ws30_c00204{word-spacing:19.368000px;}
.ws31_c00204{word-spacing:19.440000px;}
._1_c00204{margin-left:-1.058400px;}
._0_c00204{width:1.220400px;}
._6_c00204{width:2.314800px;}
._4_c00204{width:5.904000px;}
._9_c00204{width:6.912000px;}
._8_c00204{width:7.920000px;}
._5_c00204{width:9.648000px;}
._7_c00204{width:10.666800px;}
._3_c00204{width:16.848000px;}
._2_c00204{width:19.152000px;}
.fc0_c00204{color:rgb(0,0,0);}
.fs0_c00204{font-size:54.000000px;}
.fs1_c00204{font-size:72.000000px;}
.y0_c00204{bottom:0.000000px;}
.y27_c00204{bottom:57.240000px;}
.y26_c00204{bottom:116.820000px;}
.y25_c00204{bottom:147.870000px;}
.y24_c00204{bottom:178.920000px;}
.y23_c00204{bottom:209.970000px;}
.y22_c00204{bottom:241.020000px;}
.y21_c00204{bottom:272.070000px;}
.y20_c00204{bottom:303.120000px;}
.y1f_c00204{bottom:334.170000px;}
.y1e_c00204{bottom:365.220000px;}
.y1d_c00204{bottom:396.270000px;}
.y1c_c00204{bottom:427.320000px;}
.y1b_c00204{bottom:458.370000px;}
.y1a_c00204{bottom:489.420000px;}
.y19_c00204{bottom:520.470000px;}
.y18_c00204{bottom:551.520000px;}
.y17_c00204{bottom:582.570000px;}
.y16_c00204{bottom:613.620000px;}
.y15_c00204{bottom:644.670000px;}
.y14_c00204{bottom:675.720000px;}
.y13_c00204{bottom:706.770000px;}
.y12_c00204{bottom:737.820000px;}
.y11_c00204{bottom:768.870000px;}
.y10_c00204{bottom:799.920000px;}
.yf_c00204{bottom:830.970000px;}
.ye_c00204{bottom:861.930000px;}
.yd_c00204{bottom:892.980000px;}
.yc_c00204{bottom:924.030000px;}
.yb_c00204{bottom:955.080000px;}
.ya_c00204{bottom:986.130000px;}
.y9_c00204{bottom:1017.180000px;}
.y8_c00204{bottom:1048.230000px;}
.y7_c00204{bottom:1079.280000px;}
.y6_c00204{bottom:1110.330000px;}
.y5_c00204{bottom:1131.030000px;}
.y4_c00204{bottom:1150.920000px;}
.y3_c00204{bottom:1166.404500px;}
.y2_c00204{bottom:1181.970000px;}
.y1_c00204{bottom:1197.450000px;}
.h3_c00204{height:52.971680px;}
.h2_c00204{height:52.998047px;}
.h4_c00204{height:70.664062px;}
.h5_c00204{height:75.093750px;}
.h0_c00204{height:1262.880000px;}
.h1_c00204{height:1263.000000px;}
.w0_c00204{width:893.070000px;}
.w1_c00204{width:893.250000px;}
.x0_c00204{left:0.000000px;}
.x3_c00204{left:127.620000px;}
.x4_c00204{left:154.620000px;}
.x5_c00204{left:181.620000px;}
.x2_c00204{left:425.160000px;}
.x1_c00204{left:446.580000px;}
.x6_c00204{left:738.540000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.lsf_c00204{letter-spacing:-0.320000pt;}
.ls12_c00204{letter-spacing:-0.256000pt;}
.ls11_c00204{letter-spacing:-0.192000pt;}
.ls13_c00204{letter-spacing:-0.128000pt;}
.lse_c00204{letter-spacing:-0.096000pt;}
.ls10_c00204{letter-spacing:-0.064000pt;}
.lsd_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:0.064000pt;}
.ls3_c00204{letter-spacing:0.128000pt;}
.ls9_c00204{letter-spacing:1.600000pt;}
.ls2_c00204{letter-spacing:2.572800pt;}
.ls5_c00204{letter-spacing:4.480000pt;}
.ls7_c00204{letter-spacing:5.440000pt;}
.lsc_c00204{letter-spacing:6.080000pt;}
.lsa_c00204{letter-spacing:6.400000pt;}
.lsb_c00204{letter-spacing:7.040000pt;}
.ls8_c00204{letter-spacing:8.640000pt;}
.ls4_c00204{letter-spacing:10.252800pt;}
.ls6_c00204{letter-spacing:13.120000pt;}
.ls1_c00204{letter-spacing:27.328000pt;}
.ws0_c00204{word-spacing:-16.064000pt;}
.ws1_c00204{word-spacing:-16.000000pt;}
.ws2_c00204{word-spacing:-15.936000pt;}
.ws4_c00204{word-spacing:-15.872000pt;}
.ws3_c00204{word-spacing:-15.808000pt;}
.ws13_c00204{word-spacing:-0.320000pt;}
.ws15_c00204{word-spacing:-0.128000pt;}
.ws11_c00204{word-spacing:-0.064000pt;}
.ws5_c00204{word-spacing:0.000000pt;}
.ws7_c00204{word-spacing:0.144000pt;}
.ws6_c00204{word-spacing:0.240000pt;}
.ws23_c00204{word-spacing:0.256000pt;}
.wsb_c00204{word-spacing:0.320000pt;}
.ws26_c00204{word-spacing:0.640000pt;}
.ws10_c00204{word-spacing:1.216000pt;}
.wsf_c00204{word-spacing:1.280000pt;}
.ws25_c00204{word-spacing:1.536000pt;}
.ws24_c00204{word-spacing:1.600000pt;}
.wse_c00204{word-spacing:2.752000pt;}
.wsc_c00204{word-spacing:2.816000pt;}
.wsd_c00204{word-spacing:2.880000pt;}
.ws20_c00204{word-spacing:3.136000pt;}
.ws1f_c00204{word-spacing:3.200000pt;}
.ws16_c00204{word-spacing:4.480000pt;}
.ws1e_c00204{word-spacing:5.056000pt;}
.ws1d_c00204{word-spacing:5.120000pt;}
.wsa_c00204{word-spacing:5.440000pt;}
.ws34_c00204{word-spacing:5.760000pt;}
.ws2c_c00204{word-spacing:6.016000pt;}
.ws2b_c00204{word-spacing:6.400000pt;}
.ws2e_c00204{word-spacing:6.720000pt;}
.ws2f_c00204{word-spacing:6.976000pt;}
.ws2d_c00204{word-spacing:7.040000pt;}
.ws28_c00204{word-spacing:8.320000pt;}
.ws27_c00204{word-spacing:8.576000pt;}
.ws21_c00204{word-spacing:8.640000pt;}
.ws22_c00204{word-spacing:8.896000pt;}
.ws14_c00204{word-spacing:10.176000pt;}
.ws1b_c00204{word-spacing:11.520000pt;}
.ws1c_c00204{word-spacing:11.840000pt;}
.ws17_c00204{word-spacing:13.056000pt;}
.ws18_c00204{word-spacing:13.120000pt;}
.ws12_c00204{word-spacing:14.080000pt;}
.ws2a_c00204{word-spacing:14.336000pt;}
.ws29_c00204{word-spacing:14.400000pt;}
.ws19_c00204{word-spacing:14.976000pt;}
.ws1a_c00204{word-spacing:15.040000pt;}
.ws33_c00204{word-spacing:15.296000pt;}
.ws32_c00204{word-spacing:15.360000pt;}
.ws9_c00204{word-spacing:16.576000pt;}
.ws8_c00204{word-spacing:16.640000pt;}
.ws30_c00204{word-spacing:17.216000pt;}
.ws31_c00204{word-spacing:17.280000pt;}
._1_c00204{margin-left:-0.940800pt;}
._0_c00204{width:1.084800pt;}
._6_c00204{width:2.057600pt;}
._4_c00204{width:5.248000pt;}
._9_c00204{width:6.144000pt;}
._8_c00204{width:7.040000pt;}
._5_c00204{width:8.576000pt;}
._7_c00204{width:9.481600pt;}
._3_c00204{width:14.976000pt;}
._2_c00204{width:17.024000pt;}
.fs0_c00204{font-size:48.000000pt;}
.fs1_c00204{font-size:64.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y27_c00204{bottom:50.880000pt;}
.y26_c00204{bottom:103.840000pt;}
.y25_c00204{bottom:131.440000pt;}
.y24_c00204{bottom:159.040000pt;}
.y23_c00204{bottom:186.640000pt;}
.y22_c00204{bottom:214.240000pt;}
.y21_c00204{bottom:241.840000pt;}
.y20_c00204{bottom:269.440000pt;}
.y1f_c00204{bottom:297.040000pt;}
.y1e_c00204{bottom:324.640000pt;}
.y1d_c00204{bottom:352.240000pt;}
.y1c_c00204{bottom:379.840000pt;}
.y1b_c00204{bottom:407.440000pt;}
.y1a_c00204{bottom:435.040000pt;}
.y19_c00204{bottom:462.640000pt;}
.y18_c00204{bottom:490.240000pt;}
.y17_c00204{bottom:517.840000pt;}
.y16_c00204{bottom:545.440000pt;}
.y15_c00204{bottom:573.040000pt;}
.y14_c00204{bottom:600.640000pt;}
.y13_c00204{bottom:628.240000pt;}
.y12_c00204{bottom:655.840000pt;}
.y11_c00204{bottom:683.440000pt;}
.y10_c00204{bottom:711.040000pt;}
.yf_c00204{bottom:738.640000pt;}
.ye_c00204{bottom:766.160000pt;}
.yd_c00204{bottom:793.760000pt;}
.yc_c00204{bottom:821.360000pt;}
.yb_c00204{bottom:848.960000pt;}
.ya_c00204{bottom:876.560000pt;}
.y9_c00204{bottom:904.160000pt;}
.y8_c00204{bottom:931.760000pt;}
.y7_c00204{bottom:959.360000pt;}
.y6_c00204{bottom:986.960000pt;}
.y5_c00204{bottom:1005.360000pt;}
.y4_c00204{bottom:1023.040000pt;}
.y3_c00204{bottom:1036.804000pt;}
.y2_c00204{bottom:1050.640000pt;}
.y1_c00204{bottom:1064.400000pt;}
.h3_c00204{height:47.085938pt;}
.h2_c00204{height:47.109375pt;}
.h4_c00204{height:62.812500pt;}
.h5_c00204{height:66.750000pt;}
.h0_c00204{height:1122.560000pt;}
.h1_c00204{height:1122.666667pt;}
.w0_c00204{width:793.840000pt;}
.w1_c00204{width:794.000000pt;}
.x0_c00204{left:0.000000pt;}
.x3_c00204{left:113.440000pt;}
.x4_c00204{left:137.440000pt;}
.x5_c00204{left:161.440000pt;}
.x2_c00204{left:377.920000pt;}
.x1_c00204{left:396.960000pt;}
.x6_c00204{left:656.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_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_c421e4db1fdc02e34b4b0a77.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.284180;font-style:normal;font-weight:normal;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_745ad469a6008be39b9f1df4.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;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_c00205;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00205{vertical-align:-61.938000px;}
.v3_c00205{vertical-align:-20.880000px;}
.v0_c00205{vertical-align:0.000000px;}
.v2_c00205{vertical-align:27.000000px;}
.ls10_c00205{letter-spacing:-0.360000px;}
.ls11_c00205{letter-spacing:-0.288000px;}
.ls16_c00205{letter-spacing:-0.120240px;}
.ls13_c00205{letter-spacing:-0.072000px;}
.ls15_c00205{letter-spacing:-0.060120px;}
.lsf_c00205{letter-spacing:0.000000px;}
.ls2_c00205{letter-spacing:0.072000px;}
.ls12_c00205{letter-spacing:0.144000px;}
.ls4_c00205{letter-spacing:0.191520px;}
.ls14_c00205{letter-spacing:0.360000px;}
.ls1_c00205{letter-spacing:1.440000px;}
.lse_c00205{letter-spacing:1.863720px;}
.lsd_c00205{letter-spacing:2.160000px;}
.ls6_c00205{letter-spacing:2.167200px;}
.ls5_c00205{letter-spacing:2.520000px;}
.ls9_c00205{letter-spacing:3.240000px;}
.ls8_c00205{letter-spacing:5.040000px;}
.lsc_c00205{letter-spacing:5.760000px;}
.ls7_c00205{letter-spacing:6.120000px;}
.ls3_c00205{letter-spacing:11.520000px;}
.lsb_c00205{letter-spacing:13.680000px;}
.lsa_c00205{letter-spacing:30.744000px;}
.ls0_c00205{letter-spacing:319.518000px;}
.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;}
}
.ws1_c00205{word-spacing:-18.072000px;}
.ws4_c00205{word-spacing:-18.000000px;}
.ws3_c00205{word-spacing:-17.928000px;}
.ws0_c00205{word-spacing:-17.712000px;}
.ws2_c00205{word-spacing:-12.161520px;}
.ws5_c00205{word-spacing:-9.720000px;}
.ws25_c00205{word-spacing:-0.432000px;}
.wsb_c00205{word-spacing:-0.360000px;}
.ws7_c00205{word-spacing:-0.162000px;}
.ws12_c00205{word-spacing:-0.144000px;}
.ws11_c00205{word-spacing:-0.072000px;}
.ws6_c00205{word-spacing:0.000000px;}
.ws33_c00205{word-spacing:0.240480px;}
.ws28_c00205{word-spacing:0.288000px;}
.wse_c00205{word-spacing:0.360000px;}
.ws27_c00205{word-spacing:0.648000px;}
.ws20_c00205{word-spacing:0.720000px;}
.ws26_c00205{word-spacing:1.008000px;}
.ws8_c00205{word-spacing:1.440000px;}
.ws2c_c00205{word-spacing:1.728000px;}
.ws32_c00205{word-spacing:1.923840px;}
.ws15_c00205{word-spacing:2.088000px;}
.ws2d_c00205{word-spacing:2.160000px;}
.ws16_c00205{word-spacing:2.520000px;}
.ws19_c00205{word-spacing:3.168000px;}
.ws1a_c00205{word-spacing:3.240000px;}
.wsc_c00205{word-spacing:4.968000px;}
.wsd_c00205{word-spacing:5.040000px;}
.ws2a_c00205{word-spacing:5.400000px;}
.ws29_c00205{word-spacing:5.760000px;}
.ws17_c00205{word-spacing:6.048000px;}
.ws18_c00205{word-spacing:6.120000px;}
.ws1d_c00205{word-spacing:7.848000px;}
.ws1c_c00205{word-spacing:7.920000px;}
.ws21_c00205{word-spacing:8.928000px;}
.ws22_c00205{word-spacing:9.000000px;}
.ws2b_c00205{word-spacing:10.800000px;}
.ws13_c00205{word-spacing:11.448000px;}
.ws14_c00205{word-spacing:11.520000px;}
.ws9_c00205{word-spacing:12.168000px;}
.wsa_c00205{word-spacing:12.240000px;}
.ws1b_c00205{word-spacing:13.320000px;}
.ws24_c00205{word-spacing:13.608000px;}
.ws23_c00205{word-spacing:13.680000px;}
.ws1e_c00205{word-spacing:15.768000px;}
.ws1f_c00205{word-spacing:15.840000px;}
.ws30_c00205{word-spacing:16.560000px;}
.ws2f_c00205{word-spacing:20.088000px;}
.ws2e_c00205{word-spacing:20.448000px;}
.ws31_c00205{word-spacing:22.248000px;}
.ws10_c00205{word-spacing:28.080000px;}
.wsf_c00205{word-spacing:28.440000px;}
._1_c00205{margin-left:-1.015200px;}
._0_c00205{width:1.008000px;}
._4_c00205{width:2.160000px;}
._5_c00205{width:5.328000px;}
._6_c00205{width:7.632000px;}
._3_c00205{width:11.592000px;}
._7_c00205{width:13.680000px;}
._2_c00205{width:28.800000px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs3_c00205{font-size:38.880000px;}
.fs2_c00205{font-size:47.880000px;}
.fs0_c00205{font-size:54.000000px;}
.fs4_c00205{font-size:60.120000px;}
.fs1_c00205{font-size:72.000000px;}
.y0_c00205{bottom:0.000000px;}
.y25_c00205{bottom:57.240000px;}
.y24_c00205{bottom:109.791180px;}
.y23_c00205{bottom:126.985500px;}
.y22_c00205{bottom:149.490000px;}
.y26_c00205{bottom:162.180000px;}
.y21_c00205{bottom:241.020000px;}
.y20_c00205{bottom:272.070000px;}
.y1f_c00205{bottom:303.120000px;}
.y1e_c00205{bottom:334.170000px;}
.y1d_c00205{bottom:365.220000px;}
.y1c_c00205{bottom:396.270000px;}
.y1b_c00205{bottom:427.320000px;}
.y1a_c00205{bottom:458.370000px;}
.y19_c00205{bottom:489.420000px;}
.y18_c00205{bottom:520.470000px;}
.y17_c00205{bottom:551.520000px;}
.y16_c00205{bottom:582.570000px;}
.y15_c00205{bottom:613.620000px;}
.y14_c00205{bottom:644.670000px;}
.y13_c00205{bottom:675.720000px;}
.y12_c00205{bottom:706.770000px;}
.y11_c00205{bottom:737.820000px;}
.y10_c00205{bottom:768.870000px;}
.yf_c00205{bottom:799.920000px;}
.ye_c00205{bottom:830.970000px;}
.yd_c00205{bottom:861.930000px;}
.yc_c00205{bottom:892.980000px;}
.yb_c00205{bottom:924.030000px;}
.ya_c00205{bottom:955.080000px;}
.y9_c00205{bottom:986.130000px;}
.y8_c00205{bottom:1017.180000px;}
.y7_c00205{bottom:1048.230000px;}
.y6_c00205{bottom:1079.280000px;}
.y5_c00205{bottom:1110.330000px;}
.y4_c00205{bottom:1131.030000px;}
.y3_c00205{bottom:1150.915500px;}
.y2_c00205{bottom:1166.400000px;}
.y1_c00205{bottom:1197.450000px;}
.h6_c00205{height:38.158594px;}
.h2_c00205{height:52.998047px;}
.h7_c00205{height:59.004492px;}
.h3_c00205{height:70.664062px;}
.h4_c00205{height:73.991602px;}
.h5_c00205{height:75.093750px;}
.h0_c00205{height:1262.880000px;}
.h1_c00205{height:1263.000000px;}
.w0_c00205{width:893.070000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:127.620000px;}
.x3_c00205{left:154.620000px;}
.x4_c00205{left:181.620000px;}
.x1_c00205{left:446.580000px;}
@media print{
.v1_c00205{vertical-align:-55.056000pt;}
.v3_c00205{vertical-align:-18.560000pt;}
.v0_c00205{vertical-align:0.000000pt;}
.v2_c00205{vertical-align:24.000000pt;}
.ls10_c00205{letter-spacing:-0.320000pt;}
.ls11_c00205{letter-spacing:-0.256000pt;}
.ls16_c00205{letter-spacing:-0.106880pt;}
.ls13_c00205{letter-spacing:-0.064000pt;}
.ls15_c00205{letter-spacing:-0.053440pt;}
.lsf_c00205{letter-spacing:0.000000pt;}
.ls2_c00205{letter-spacing:0.064000pt;}
.ls12_c00205{letter-spacing:0.128000pt;}
.ls4_c00205{letter-spacing:0.170240pt;}
.ls14_c00205{letter-spacing:0.320000pt;}
.ls1_c00205{letter-spacing:1.280000pt;}
.lse_c00205{letter-spacing:1.656640pt;}
.lsd_c00205{letter-spacing:1.920000pt;}
.ls6_c00205{letter-spacing:1.926400pt;}
.ls5_c00205{letter-spacing:2.240000pt;}
.ls9_c00205{letter-spacing:2.880000pt;}
.ls8_c00205{letter-spacing:4.480000pt;}
.lsc_c00205{letter-spacing:5.120000pt;}
.ls7_c00205{letter-spacing:5.440000pt;}
.ls3_c00205{letter-spacing:10.240000pt;}
.lsb_c00205{letter-spacing:12.160000pt;}
.lsa_c00205{letter-spacing:27.328000pt;}
.ls0_c00205{letter-spacing:284.016000pt;}
.ws1_c00205{word-spacing:-16.064000pt;}
.ws4_c00205{word-spacing:-16.000000pt;}
.ws3_c00205{word-spacing:-15.936000pt;}
.ws0_c00205{word-spacing:-15.744000pt;}
.ws2_c00205{word-spacing:-10.810240pt;}
.ws5_c00205{word-spacing:-8.640000pt;}
.ws25_c00205{word-spacing:-0.384000pt;}
.wsb_c00205{word-spacing:-0.320000pt;}
.ws7_c00205{word-spacing:-0.144000pt;}
.ws12_c00205{word-spacing:-0.128000pt;}
.ws11_c00205{word-spacing:-0.064000pt;}
.ws6_c00205{word-spacing:0.000000pt;}
.ws33_c00205{word-spacing:0.213760pt;}
.ws28_c00205{word-spacing:0.256000pt;}
.wse_c00205{word-spacing:0.320000pt;}
.ws27_c00205{word-spacing:0.576000pt;}
.ws20_c00205{word-spacing:0.640000pt;}
.ws26_c00205{word-spacing:0.896000pt;}
.ws8_c00205{word-spacing:1.280000pt;}
.ws2c_c00205{word-spacing:1.536000pt;}
.ws32_c00205{word-spacing:1.710080pt;}
.ws15_c00205{word-spacing:1.856000pt;}
.ws2d_c00205{word-spacing:1.920000pt;}
.ws16_c00205{word-spacing:2.240000pt;}
.ws19_c00205{word-spacing:2.816000pt;}
.ws1a_c00205{word-spacing:2.880000pt;}
.wsc_c00205{word-spacing:4.416000pt;}
.wsd_c00205{word-spacing:4.480000pt;}
.ws2a_c00205{word-spacing:4.800000pt;}
.ws29_c00205{word-spacing:5.120000pt;}
.ws17_c00205{word-spacing:5.376000pt;}
.ws18_c00205{word-spacing:5.440000pt;}
.ws1d_c00205{word-spacing:6.976000pt;}
.ws1c_c00205{word-spacing:7.040000pt;}
.ws21_c00205{word-spacing:7.936000pt;}
.ws22_c00205{word-spacing:8.000000pt;}
.ws2b_c00205{word-spacing:9.600000pt;}
.ws13_c00205{word-spacing:10.176000pt;}
.ws14_c00205{word-spacing:10.240000pt;}
.ws9_c00205{word-spacing:10.816000pt;}
.wsa_c00205{word-spacing:10.880000pt;}
.ws1b_c00205{word-spacing:11.840000pt;}
.ws24_c00205{word-spacing:12.096000pt;}
.ws23_c00205{word-spacing:12.160000pt;}
.ws1e_c00205{word-spacing:14.016000pt;}
.ws1f_c00205{word-spacing:14.080000pt;}
.ws30_c00205{word-spacing:14.720000pt;}
.ws2f_c00205{word-spacing:17.856000pt;}
.ws2e_c00205{word-spacing:18.176000pt;}
.ws31_c00205{word-spacing:19.776000pt;}
.ws10_c00205{word-spacing:24.960000pt;}
.wsf_c00205{word-spacing:25.280000pt;}
._1_c00205{margin-left:-0.902400pt;}
._0_c00205{width:0.896000pt;}
._4_c00205{width:1.920000pt;}
._5_c00205{width:4.736000pt;}
._6_c00205{width:6.784000pt;}
._3_c00205{width:10.304000pt;}
._7_c00205{width:12.160000pt;}
._2_c00205{width:25.600000pt;}
.fs3_c00205{font-size:34.560000pt;}
.fs2_c00205{font-size:42.560000pt;}
.fs0_c00205{font-size:48.000000pt;}
.fs4_c00205{font-size:53.440000pt;}
.fs1_c00205{font-size:64.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y25_c00205{bottom:50.880000pt;}
.y24_c00205{bottom:97.592160pt;}
.y23_c00205{bottom:112.876000pt;}
.y22_c00205{bottom:132.880000pt;}
.y26_c00205{bottom:144.160000pt;}
.y21_c00205{bottom:214.240000pt;}
.y20_c00205{bottom:241.840000pt;}
.y1f_c00205{bottom:269.440000pt;}
.y1e_c00205{bottom:297.040000pt;}
.y1d_c00205{bottom:324.640000pt;}
.y1c_c00205{bottom:352.240000pt;}
.y1b_c00205{bottom:379.840000pt;}
.y1a_c00205{bottom:407.440000pt;}
.y19_c00205{bottom:435.040000pt;}
.y18_c00205{bottom:462.640000pt;}
.y17_c00205{bottom:490.240000pt;}
.y16_c00205{bottom:517.840000pt;}
.y15_c00205{bottom:545.440000pt;}
.y14_c00205{bottom:573.040000pt;}
.y13_c00205{bottom:600.640000pt;}
.y12_c00205{bottom:628.240000pt;}
.y11_c00205{bottom:655.840000pt;}
.y10_c00205{bottom:683.440000pt;}
.yf_c00205{bottom:711.040000pt;}
.ye_c00205{bottom:738.640000pt;}
.yd_c00205{bottom:766.160000pt;}
.yc_c00205{bottom:793.760000pt;}
.yb_c00205{bottom:821.360000pt;}
.ya_c00205{bottom:848.960000pt;}
.y9_c00205{bottom:876.560000pt;}
.y8_c00205{bottom:904.160000pt;}
.y7_c00205{bottom:931.760000pt;}
.y6_c00205{bottom:959.360000pt;}
.y5_c00205{bottom:986.960000pt;}
.y4_c00205{bottom:1005.360000pt;}
.y3_c00205{bottom:1023.036000pt;}
.y2_c00205{bottom:1036.800000pt;}
.y1_c00205{bottom:1064.400000pt;}
.h6_c00205{height:33.918750pt;}
.h2_c00205{height:47.109375pt;}
.h7_c00205{height:52.448437pt;}
.h3_c00205{height:62.812500pt;}
.h4_c00205{height:65.770312pt;}
.h5_c00205{height:66.750000pt;}
.h0_c00205{height:1122.560000pt;}
.h1_c00205{height:1122.666667pt;}
.w0_c00205{width:793.840000pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:113.440000pt;}
.x3_c00205{left:137.440000pt;}
.x4_c00205{left:161.440000pt;}
.x1_c00205{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3528a28f17d60591c5465af2.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_0d72e5a04efca5a47e817e63.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;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_c00206;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.432129;font-style: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;}
.lsb_c00206{letter-spacing:-0.360000px;}
.lsc_c00206{letter-spacing:-0.288000px;}
.ls9_c00206{letter-spacing:-0.108000px;}
.ls8_c00206{letter-spacing:0.000000px;}
.ls2_c00206{letter-spacing:0.072000px;}
.lsa_c00206{letter-spacing:0.144000px;}
.ls3_c00206{letter-spacing:2.880000px;}
.ls6_c00206{letter-spacing:5.760000px;}
.ls7_c00206{letter-spacing:8.280000px;}
.ls1_c00206{letter-spacing:9.000000px;}
.ls0_c00206{letter-spacing:9.374400px;}
.ls4_c00206{letter-spacing:17.647200px;}
.ls5_c00206{letter-spacing:30.744000px;}
.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:-18.072000px;}
.ws1_c00206{word-spacing:-18.000000px;}
.ws2_c00206{word-spacing:-17.712000px;}
.ws6_c00206{word-spacing:-0.144000px;}
.wsc_c00206{word-spacing:-0.072000px;}
.ws3_c00206{word-spacing:0.000000px;}
.ws5_c00206{word-spacing:0.162000px;}
.ws4_c00206{word-spacing:0.270000px;}
.wsa_c00206{word-spacing:0.360000px;}
.ws24_c00206{word-spacing:1.008000px;}
.wsb_c00206{word-spacing:1.440000px;}
.ws11_c00206{word-spacing:2.448000px;}
.ws10_c00206{word-spacing:2.520000px;}
.wse_c00206{word-spacing:2.880000px;}
.wsf_c00206{word-spacing:3.168000px;}
.ws23_c00206{word-spacing:3.240000px;}
.ws28_c00206{word-spacing:3.456000px;}
.ws27_c00206{word-spacing:3.528000px;}
.ws19_c00206{word-spacing:3.600000px;}
.ws9_c00206{word-spacing:4.320000px;}
.ws2b_c00206{word-spacing:5.328000px;}
.ws1d_c00206{word-spacing:5.400000px;}
.ws1b_c00206{word-spacing:5.688000px;}
.ws1a_c00206{word-spacing:5.760000px;}
.ws1c_c00206{word-spacing:7.200000px;}
.wsd_c00206{word-spacing:8.280000px;}
.ws8_c00206{word-spacing:8.856000px;}
.ws7_c00206{word-spacing:8.928000px;}
.ws1e_c00206{word-spacing:11.088000px;}
.ws1f_c00206{word-spacing:11.160000px;}
.ws29_c00206{word-spacing:12.888000px;}
.ws2a_c00206{word-spacing:12.960000px;}
.ws22_c00206{word-spacing:13.968000px;}
.ws21_c00206{word-spacing:14.040000px;}
.ws18_c00206{word-spacing:15.480000px;}
.ws14_c00206{word-spacing:17.568000px;}
.ws15_c00206{word-spacing:17.640000px;}
.ws20_c00206{word-spacing:18.000000px;}
.ws13_c00206{word-spacing:20.808000px;}
.ws12_c00206{word-spacing:20.880000px;}
.ws17_c00206{word-spacing:36.648000px;}
.ws16_c00206{word-spacing:36.720000px;}
.ws26_c00206{word-spacing:39.168000px;}
.ws25_c00206{word-spacing:39.600000px;}
._1_c00206{margin-left:-1.058400px;}
._0_c00206{width:1.220400px;}
._5_c00206{width:2.232000px;}
._3_c00206{width:4.032000px;}
._8_c00206{width:5.832000px;}
._4_c00206{width:7.300800px;}
._2_c00206{width:9.216000px;}
._7_c00206{width:12.672000px;}
._6_c00206{width:36.072000px;}
.fc0_c00206{color:rgb(0,0,0);}
.fs0_c00206{font-size:54.000000px;}
.fs1_c00206{font-size:72.000000px;}
.y0_c00206{bottom:0.000000px;}
.y27_c00206{bottom:57.240000px;}
.y26_c00206{bottom:116.820000px;}
.y25_c00206{bottom:147.870000px;}
.y24_c00206{bottom:178.920000px;}
.y23_c00206{bottom:209.970000px;}
.y22_c00206{bottom:241.020000px;}
.y21_c00206{bottom:272.070000px;}
.y20_c00206{bottom:303.120000px;}
.y1f_c00206{bottom:334.170000px;}
.y1e_c00206{bottom:365.220000px;}
.y1d_c00206{bottom:396.270000px;}
.y1c_c00206{bottom:427.320000px;}
.y1b_c00206{bottom:458.370000px;}
.y1a_c00206{bottom:489.420000px;}
.y19_c00206{bottom:520.470000px;}
.y18_c00206{bottom:551.520000px;}
.y17_c00206{bottom:582.570000px;}
.y16_c00206{bottom:613.620000px;}
.y15_c00206{bottom:644.670000px;}
.y14_c00206{bottom:675.720000px;}
.y13_c00206{bottom:706.770000px;}
.y12_c00206{bottom:737.820000px;}
.y11_c00206{bottom:768.870000px;}
.y10_c00206{bottom:799.920000px;}
.yf_c00206{bottom:830.970000px;}
.ye_c00206{bottom:861.930000px;}
.yd_c00206{bottom:892.980000px;}
.yc_c00206{bottom:924.030000px;}
.yb_c00206{bottom:955.080000px;}
.ya_c00206{bottom:986.130000px;}
.y9_c00206{bottom:1017.180000px;}
.y8_c00206{bottom:1048.230000px;}
.y7_c00206{bottom:1079.280000px;}
.y6_c00206{bottom:1110.330000px;}
.y5_c00206{bottom:1131.030000px;}
.y4_c00206{bottom:1150.920000px;}
.y3_c00206{bottom:1166.404500px;}
.y2_c00206{bottom:1181.970000px;}
.y1_c00206{bottom:1197.450000px;}
.h3_c00206{height:52.971680px;}
.h2_c00206{height:52.998047px;}
.h4_c00206{height:70.664062px;}
.h5_c00206{height:75.093750px;}
.h0_c00206{height:1262.880000px;}
.h1_c00206{height:1263.000000px;}
.w0_c00206{width:893.070000px;}
.w1_c00206{width:893.250000px;}
.x0_c00206{left:0.000000px;}
.x3_c00206{left:127.620000px;}
.x4_c00206{left:154.620000px;}
.x5_c00206{left:181.620000px;}
.x2_c00206{left:425.160000px;}
.x1_c00206{left:446.580000px;}
.x6_c00206{left:738.540000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.lsb_c00206{letter-spacing:-0.320000pt;}
.lsc_c00206{letter-spacing:-0.256000pt;}
.ls9_c00206{letter-spacing:-0.096000pt;}
.ls8_c00206{letter-spacing:0.000000pt;}
.ls2_c00206{letter-spacing:0.064000pt;}
.lsa_c00206{letter-spacing:0.128000pt;}
.ls3_c00206{letter-spacing:2.560000pt;}
.ls6_c00206{letter-spacing:5.120000pt;}
.ls7_c00206{letter-spacing:7.360000pt;}
.ls1_c00206{letter-spacing:8.000000pt;}
.ls0_c00206{letter-spacing:8.332800pt;}
.ls4_c00206{letter-spacing:15.686400pt;}
.ls5_c00206{letter-spacing:27.328000pt;}
.ws0_c00206{word-spacing:-16.064000pt;}
.ws1_c00206{word-spacing:-16.000000pt;}
.ws2_c00206{word-spacing:-15.744000pt;}
.ws6_c00206{word-spacing:-0.128000pt;}
.wsc_c00206{word-spacing:-0.064000pt;}
.ws3_c00206{word-spacing:0.000000pt;}
.ws5_c00206{word-spacing:0.144000pt;}
.ws4_c00206{word-spacing:0.240000pt;}
.wsa_c00206{word-spacing:0.320000pt;}
.ws24_c00206{word-spacing:0.896000pt;}
.wsb_c00206{word-spacing:1.280000pt;}
.ws11_c00206{word-spacing:2.176000pt;}
.ws10_c00206{word-spacing:2.240000pt;}
.wse_c00206{word-spacing:2.560000pt;}
.wsf_c00206{word-spacing:2.816000pt;}
.ws23_c00206{word-spacing:2.880000pt;}
.ws28_c00206{word-spacing:3.072000pt;}
.ws27_c00206{word-spacing:3.136000pt;}
.ws19_c00206{word-spacing:3.200000pt;}
.ws9_c00206{word-spacing:3.840000pt;}
.ws2b_c00206{word-spacing:4.736000pt;}
.ws1d_c00206{word-spacing:4.800000pt;}
.ws1b_c00206{word-spacing:5.056000pt;}
.ws1a_c00206{word-spacing:5.120000pt;}
.ws1c_c00206{word-spacing:6.400000pt;}
.wsd_c00206{word-spacing:7.360000pt;}
.ws8_c00206{word-spacing:7.872000pt;}
.ws7_c00206{word-spacing:7.936000pt;}
.ws1e_c00206{word-spacing:9.856000pt;}
.ws1f_c00206{word-spacing:9.920000pt;}
.ws29_c00206{word-spacing:11.456000pt;}
.ws2a_c00206{word-spacing:11.520000pt;}
.ws22_c00206{word-spacing:12.416000pt;}
.ws21_c00206{word-spacing:12.480000pt;}
.ws18_c00206{word-spacing:13.760000pt;}
.ws14_c00206{word-spacing:15.616000pt;}
.ws15_c00206{word-spacing:15.680000pt;}
.ws20_c00206{word-spacing:16.000000pt;}
.ws13_c00206{word-spacing:18.496000pt;}
.ws12_c00206{word-spacing:18.560000pt;}
.ws17_c00206{word-spacing:32.576000pt;}
.ws16_c00206{word-spacing:32.640000pt;}
.ws26_c00206{word-spacing:34.816000pt;}
.ws25_c00206{word-spacing:35.200000pt;}
._1_c00206{margin-left:-0.940800pt;}
._0_c00206{width:1.084800pt;}
._5_c00206{width:1.984000pt;}
._3_c00206{width:3.584000pt;}
._8_c00206{width:5.184000pt;}
._4_c00206{width:6.489600pt;}
._2_c00206{width:8.192000pt;}
._7_c00206{width:11.264000pt;}
._6_c00206{width:32.064000pt;}
.fs0_c00206{font-size:48.000000pt;}
.fs1_c00206{font-size:64.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y27_c00206{bottom:50.880000pt;}
.y26_c00206{bottom:103.840000pt;}
.y25_c00206{bottom:131.440000pt;}
.y24_c00206{bottom:159.040000pt;}
.y23_c00206{bottom:186.640000pt;}
.y22_c00206{bottom:214.240000pt;}
.y21_c00206{bottom:241.840000pt;}
.y20_c00206{bottom:269.440000pt;}
.y1f_c00206{bottom:297.040000pt;}
.y1e_c00206{bottom:324.640000pt;}
.y1d_c00206{bottom:352.240000pt;}
.y1c_c00206{bottom:379.840000pt;}
.y1b_c00206{bottom:407.440000pt;}
.y1a_c00206{bottom:435.040000pt;}
.y19_c00206{bottom:462.640000pt;}
.y18_c00206{bottom:490.240000pt;}
.y17_c00206{bottom:517.840000pt;}
.y16_c00206{bottom:545.440000pt;}
.y15_c00206{bottom:573.040000pt;}
.y14_c00206{bottom:600.640000pt;}
.y13_c00206{bottom:628.240000pt;}
.y12_c00206{bottom:655.840000pt;}
.y11_c00206{bottom:683.440000pt;}
.y10_c00206{bottom:711.040000pt;}
.yf_c00206{bottom:738.640000pt;}
.ye_c00206{bottom:766.160000pt;}
.yd_c00206{bottom:793.760000pt;}
.yc_c00206{bottom:821.360000pt;}
.yb_c00206{bottom:848.960000pt;}
.ya_c00206{bottom:876.560000pt;}
.y9_c00206{bottom:904.160000pt;}
.y8_c00206{bottom:931.760000pt;}
.y7_c00206{bottom:959.360000pt;}
.y6_c00206{bottom:986.960000pt;}
.y5_c00206{bottom:1005.360000pt;}
.y4_c00206{bottom:1023.040000pt;}
.y3_c00206{bottom:1036.804000pt;}
.y2_c00206{bottom:1050.640000pt;}
.y1_c00206{bottom:1064.400000pt;}
.h3_c00206{height:47.085938pt;}
.h2_c00206{height:47.109375pt;}
.h4_c00206{height:62.812500pt;}
.h5_c00206{height:66.750000pt;}
.h0_c00206{height:1122.560000pt;}
.h1_c00206{height:1122.666667pt;}
.w0_c00206{width:793.840000pt;}
.w1_c00206{width:794.000000pt;}
.x0_c00206{left:0.000000pt;}
.x3_c00206{left:113.440000pt;}
.x4_c00206{left:137.440000pt;}
.x5_c00206{left:161.440000pt;}
.x2_c00206{left:377.920000pt;}
.x1_c00206{left:396.960000pt;}
.x6_c00206{left:656.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_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_e1686182da136d24c8b921ef.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.284180;font-style:normal;font-weight:normal;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_453c68c6c5c3db5e069a031a.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00207{vertical-align:-61.938000px;}
.v0_c00207{vertical-align:0.000000px;}
.ls8_c00207{letter-spacing:-0.360000px;}
.ls9_c00207{letter-spacing:-0.288000px;}
.ls7_c00207{letter-spacing:0.000000px;}
.ls1_c00207{letter-spacing:0.072000px;}
.lsa_c00207{letter-spacing:0.144000px;}
.ls6_c00207{letter-spacing:1.094400px;}
.ls2_c00207{letter-spacing:2.520000px;}
.ls4_c00207{letter-spacing:3.240000px;}
.ls5_c00207{letter-spacing:16.920000px;}
.ls3_c00207{letter-spacing:23.400000px;}
.ls0_c00207{letter-spacing:319.518000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00207{word-spacing:-18.144000px;}
.ws0_c00207{word-spacing:-17.712000px;}
.ws3_c00207{word-spacing:-0.162000px;}
.wsc_c00207{word-spacing:-0.144000px;}
.ws6_c00207{word-spacing:-0.072000px;}
.ws2_c00207{word-spacing:0.000000px;}
.ws8_c00207{word-spacing:0.288000px;}
.ws7_c00207{word-spacing:0.360000px;}
.ws20_c00207{word-spacing:0.648000px;}
.ws21_c00207{word-spacing:0.720000px;}
.ws11_c00207{word-spacing:1.008000px;}
.ws10_c00207{word-spacing:1.080000px;}
.ws4_c00207{word-spacing:2.448000px;}
.ws5_c00207{word-spacing:2.520000px;}
.ws15_c00207{word-spacing:2.880000px;}
.ws14_c00207{word-spacing:3.168000px;}
.ws13_c00207{word-spacing:3.240000px;}
.ws22_c00207{word-spacing:3.600000px;}
.ws23_c00207{word-spacing:3.888000px;}
.ws29_c00207{word-spacing:3.960000px;}
.ws18_c00207{word-spacing:4.968000px;}
.ws1f_c00207{word-spacing:6.120000px;}
.ws26_c00207{word-spacing:6.480000px;}
.ws24_c00207{word-spacing:8.640000px;}
.ws12_c00207{word-spacing:11.880000px;}
.ws2a_c00207{word-spacing:12.528000px;}
.ws2b_c00207{word-spacing:12.600000px;}
.ws1b_c00207{word-spacing:12.960000px;}
.ws25_c00207{word-spacing:14.040000px;}
.ws1c_c00207{word-spacing:16.128000px;}
.ws1d_c00207{word-spacing:16.200000px;}
.ws28_c00207{word-spacing:16.560000px;}
.ws17_c00207{word-spacing:17.208000px;}
.ws16_c00207{word-spacing:17.280000px;}
.ws1a_c00207{word-spacing:18.648000px;}
.ws19_c00207{word-spacing:18.720000px;}
.wsa_c00207{word-spacing:19.080000px;}
.wsb_c00207{word-spacing:19.368000px;}
.ws9_c00207{word-spacing:19.440000px;}
.ws27_c00207{word-spacing:22.320000px;}
.wsf_c00207{word-spacing:23.040000px;}
.wse_c00207{word-spacing:23.256000px;}
.wsd_c00207{word-spacing:23.400000px;}
.ws1e_c00207{word-spacing:31.680000px;}
._0_c00207{margin-left:-1.159200px;}
._2_c00207{width:1.195200px;}
._1_c00207{width:2.872800px;}
._5_c00207{width:12.240000px;}
._3_c00207{width:19.800000px;}
._4_c00207{width:23.335200px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs0_c00207{font-size:54.000000px;}
.fs1_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y26_c00207{bottom:57.240000px;}
.y25_c00207{bottom:116.820000px;}
.y24_c00207{bottom:147.870000px;}
.y23_c00207{bottom:178.920000px;}
.y22_c00207{bottom:209.970000px;}
.y21_c00207{bottom:241.020000px;}
.y20_c00207{bottom:272.070000px;}
.y1f_c00207{bottom:303.120000px;}
.y1e_c00207{bottom:334.170000px;}
.y1d_c00207{bottom:365.220000px;}
.y1c_c00207{bottom:396.270000px;}
.y1b_c00207{bottom:427.320000px;}
.y1a_c00207{bottom:458.370000px;}
.y19_c00207{bottom:489.420000px;}
.y18_c00207{bottom:520.470000px;}
.y17_c00207{bottom:551.520000px;}
.y16_c00207{bottom:582.570000px;}
.y15_c00207{bottom:613.620000px;}
.y14_c00207{bottom:644.670000px;}
.y13_c00207{bottom:675.720000px;}
.y12_c00207{bottom:706.770000px;}
.y11_c00207{bottom:737.820000px;}
.y10_c00207{bottom:768.870000px;}
.yf_c00207{bottom:799.920000px;}
.ye_c00207{bottom:830.790000px;}
.yd_c00207{bottom:861.930000px;}
.yc_c00207{bottom:892.980000px;}
.yb_c00207{bottom:924.030000px;}
.ya_c00207{bottom:955.080000px;}
.y9_c00207{bottom:986.130000px;}
.y8_c00207{bottom:1017.180000px;}
.y7_c00207{bottom:1048.230000px;}
.y6_c00207{bottom:1079.280000px;}
.y5_c00207{bottom:1110.330000px;}
.y4_c00207{bottom:1131.030000px;}
.y3_c00207{bottom:1150.915500px;}
.y2_c00207{bottom:1166.400000px;}
.y1_c00207{bottom:1197.450000px;}
.h2_c00207{height:52.998047px;}
.h3_c00207{height:70.664062px;}
.h4_c00207{height:72.562500px;}
.h0_c00207{height:1262.880000px;}
.h1_c00207{height:1263.000000px;}
.w0_c00207{width:893.070000px;}
.w1_c00207{width:893.250000px;}
.x0_c00207{left:0.000000px;}
.x2_c00207{left:127.620000px;}
.x1_c00207{left:446.580000px;}
@media print{
.v1_c00207{vertical-align:-55.056000pt;}
.v0_c00207{vertical-align:0.000000pt;}
.ls8_c00207{letter-spacing:-0.320000pt;}
.ls9_c00207{letter-spacing:-0.256000pt;}
.ls7_c00207{letter-spacing:0.000000pt;}
.ls1_c00207{letter-spacing:0.064000pt;}
.lsa_c00207{letter-spacing:0.128000pt;}
.ls6_c00207{letter-spacing:0.972800pt;}
.ls2_c00207{letter-spacing:2.240000pt;}
.ls4_c00207{letter-spacing:2.880000pt;}
.ls5_c00207{letter-spacing:15.040000pt;}
.ls3_c00207{letter-spacing:20.800000pt;}
.ls0_c00207{letter-spacing:284.016000pt;}
.ws1_c00207{word-spacing:-16.128000pt;}
.ws0_c00207{word-spacing:-15.744000pt;}
.ws3_c00207{word-spacing:-0.144000pt;}
.wsc_c00207{word-spacing:-0.128000pt;}
.ws6_c00207{word-spacing:-0.064000pt;}
.ws2_c00207{word-spacing:0.000000pt;}
.ws8_c00207{word-spacing:0.256000pt;}
.ws7_c00207{word-spacing:0.320000pt;}
.ws20_c00207{word-spacing:0.576000pt;}
.ws21_c00207{word-spacing:0.640000pt;}
.ws11_c00207{word-spacing:0.896000pt;}
.ws10_c00207{word-spacing:0.960000pt;}
.ws4_c00207{word-spacing:2.176000pt;}
.ws5_c00207{word-spacing:2.240000pt;}
.ws15_c00207{word-spacing:2.560000pt;}
.ws14_c00207{word-spacing:2.816000pt;}
.ws13_c00207{word-spacing:2.880000pt;}
.ws22_c00207{word-spacing:3.200000pt;}
.ws23_c00207{word-spacing:3.456000pt;}
.ws29_c00207{word-spacing:3.520000pt;}
.ws18_c00207{word-spacing:4.416000pt;}
.ws1f_c00207{word-spacing:5.440000pt;}
.ws26_c00207{word-spacing:5.760000pt;}
.ws24_c00207{word-spacing:7.680000pt;}
.ws12_c00207{word-spacing:10.560000pt;}
.ws2a_c00207{word-spacing:11.136000pt;}
.ws2b_c00207{word-spacing:11.200000pt;}
.ws1b_c00207{word-spacing:11.520000pt;}
.ws25_c00207{word-spacing:12.480000pt;}
.ws1c_c00207{word-spacing:14.336000pt;}
.ws1d_c00207{word-spacing:14.400000pt;}
.ws28_c00207{word-spacing:14.720000pt;}
.ws17_c00207{word-spacing:15.296000pt;}
.ws16_c00207{word-spacing:15.360000pt;}
.ws1a_c00207{word-spacing:16.576000pt;}
.ws19_c00207{word-spacing:16.640000pt;}
.wsa_c00207{word-spacing:16.960000pt;}
.wsb_c00207{word-spacing:17.216000pt;}
.ws9_c00207{word-spacing:17.280000pt;}
.ws27_c00207{word-spacing:19.840000pt;}
.wsf_c00207{word-spacing:20.480000pt;}
.wse_c00207{word-spacing:20.672000pt;}
.wsd_c00207{word-spacing:20.800000pt;}
.ws1e_c00207{word-spacing:28.160000pt;}
._0_c00207{margin-left:-1.030400pt;}
._2_c00207{width:1.062400pt;}
._1_c00207{width:2.553600pt;}
._5_c00207{width:10.880000pt;}
._3_c00207{width:17.600000pt;}
._4_c00207{width:20.742400pt;}
.fs0_c00207{font-size:48.000000pt;}
.fs1_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y26_c00207{bottom:50.880000pt;}
.y25_c00207{bottom:103.840000pt;}
.y24_c00207{bottom:131.440000pt;}
.y23_c00207{bottom:159.040000pt;}
.y22_c00207{bottom:186.640000pt;}
.y21_c00207{bottom:214.240000pt;}
.y20_c00207{bottom:241.840000pt;}
.y1f_c00207{bottom:269.440000pt;}
.y1e_c00207{bottom:297.040000pt;}
.y1d_c00207{bottom:324.640000pt;}
.y1c_c00207{bottom:352.240000pt;}
.y1b_c00207{bottom:379.840000pt;}
.y1a_c00207{bottom:407.440000pt;}
.y19_c00207{bottom:435.040000pt;}
.y18_c00207{bottom:462.640000pt;}
.y17_c00207{bottom:490.240000pt;}
.y16_c00207{bottom:517.840000pt;}
.y15_c00207{bottom:545.440000pt;}
.y14_c00207{bottom:573.040000pt;}
.y13_c00207{bottom:600.640000pt;}
.y12_c00207{bottom:628.240000pt;}
.y11_c00207{bottom:655.840000pt;}
.y10_c00207{bottom:683.440000pt;}
.yf_c00207{bottom:711.040000pt;}
.ye_c00207{bottom:738.480000pt;}
.yd_c00207{bottom:766.160000pt;}
.yc_c00207{bottom:793.760000pt;}
.yb_c00207{bottom:821.360000pt;}
.ya_c00207{bottom:848.960000pt;}
.y9_c00207{bottom:876.560000pt;}
.y8_c00207{bottom:904.160000pt;}
.y7_c00207{bottom:931.760000pt;}
.y6_c00207{bottom:959.360000pt;}
.y5_c00207{bottom:986.960000pt;}
.y4_c00207{bottom:1005.360000pt;}
.y3_c00207{bottom:1023.036000pt;}
.y2_c00207{bottom:1036.800000pt;}
.y1_c00207{bottom:1064.400000pt;}
.h2_c00207{height:47.109375pt;}
.h3_c00207{height:62.812500pt;}
.h4_c00207{height:64.500000pt;}
.h0_c00207{height:1122.560000pt;}
.h1_c00207{height:1122.666667pt;}
.w0_c00207{width:793.840000pt;}
.w1_c00207{width:794.000000pt;}
.x0_c00207{left:0.000000pt;}
.x2_c00207{left:113.440000pt;}
.x1_c00207{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a7a98c78b48f5f30b40f9c9.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_0bacb3e4d7e1fb010e7b1c5d.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;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_c00208;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.432129;font-style: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;}
.ls5_c00208{letter-spacing:-0.144000px;}
.ls4_c00208{letter-spacing:-0.108000px;}
.ls3_c00208{letter-spacing:0.000000px;}
.ls1_c00208{letter-spacing:0.072000px;}
.ls0_c00208{letter-spacing:0.144000px;}
.ls2_c00208{letter-spacing:30.744000px;}
.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:-18.072000px;}
.ws6_c00208{word-spacing:-0.360000px;}
.ws13_c00208{word-spacing:-0.072000px;}
.ws1_c00208{word-spacing:0.000000px;}
.ws3_c00208{word-spacing:0.162000px;}
.ws2_c00208{word-spacing:0.270000px;}
.ws1b_c00208{word-spacing:0.360000px;}
.ws15_c00208{word-spacing:1.080000px;}
.ws14_c00208{word-spacing:1.224000px;}
.ws22_c00208{word-spacing:1.800000px;}
.ws5_c00208{word-spacing:2.088000px;}
.ws4_c00208{word-spacing:2.160000px;}
.ws20_c00208{word-spacing:2.520000px;}
.ws21_c00208{word-spacing:2.880000px;}
.ws8_c00208{word-spacing:3.240000px;}
.ws18_c00208{word-spacing:3.600000px;}
.ws19_c00208{word-spacing:3.960000px;}
.wsf_c00208{word-spacing:5.040000px;}
.wsb_c00208{word-spacing:5.760000px;}
.ws9_c00208{word-spacing:8.280000px;}
.ws10_c00208{word-spacing:9.288000px;}
.ws11_c00208{word-spacing:9.648000px;}
.ws7_c00208{word-spacing:11.808000px;}
.ws12_c00208{word-spacing:12.600000px;}
.wsd_c00208{word-spacing:16.560000px;}
.ws1c_c00208{word-spacing:17.280000px;}
.ws16_c00208{word-spacing:17.928000px;}
.wsc_c00208{word-spacing:20.880000px;}
.ws1d_c00208{word-spacing:21.240000px;}
.wsa_c00208{word-spacing:24.048000px;}
.ws1a_c00208{word-spacing:25.128000px;}
.ws17_c00208{word-spacing:27.720000px;}
.ws1e_c00208{word-spacing:35.568000px;}
.ws1f_c00208{word-spacing:35.640000px;}
.wse_c00208{word-spacing:58.248000px;}
._1_c00208{margin-left:-1.058400px;}
._0_c00208{width:1.220400px;}
._2_c00208{width:8.208000px;}
._3_c00208{width:12.312000px;}
._4_c00208{width:20.664000px;}
.fc0_c00208{color:rgb(0,0,0);}
.fs0_c00208{font-size:54.000000px;}
.fs1_c00208{font-size:72.000000px;}
.y0_c00208{bottom:0.000000px;}
.y27_c00208{bottom:57.240000px;}
.y26_c00208{bottom:116.820000px;}
.y25_c00208{bottom:147.870000px;}
.y24_c00208{bottom:178.920000px;}
.y23_c00208{bottom:209.970000px;}
.y22_c00208{bottom:241.020000px;}
.y21_c00208{bottom:272.070000px;}
.y20_c00208{bottom:303.120000px;}
.y1f_c00208{bottom:334.170000px;}
.y1e_c00208{bottom:365.220000px;}
.y1d_c00208{bottom:396.270000px;}
.y1c_c00208{bottom:427.320000px;}
.y1b_c00208{bottom:458.370000px;}
.y1a_c00208{bottom:489.420000px;}
.y19_c00208{bottom:520.470000px;}
.y18_c00208{bottom:551.520000px;}
.y17_c00208{bottom:582.570000px;}
.y16_c00208{bottom:613.620000px;}
.y15_c00208{bottom:644.670000px;}
.y14_c00208{bottom:675.720000px;}
.y13_c00208{bottom:706.770000px;}
.y12_c00208{bottom:737.820000px;}
.y11_c00208{bottom:768.870000px;}
.y10_c00208{bottom:799.920000px;}
.yf_c00208{bottom:830.970000px;}
.ye_c00208{bottom:861.930000px;}
.yd_c00208{bottom:892.980000px;}
.yc_c00208{bottom:924.030000px;}
.yb_c00208{bottom:955.080000px;}
.ya_c00208{bottom:986.130000px;}
.y9_c00208{bottom:1017.180000px;}
.y8_c00208{bottom:1048.230000px;}
.y7_c00208{bottom:1079.280000px;}
.y6_c00208{bottom:1110.330000px;}
.y5_c00208{bottom:1131.030000px;}
.y4_c00208{bottom:1150.920000px;}
.y3_c00208{bottom:1166.404500px;}
.y2_c00208{bottom:1181.970000px;}
.y1_c00208{bottom:1197.450000px;}
.h3_c00208{height:52.971680px;}
.h2_c00208{height:52.998047px;}
.h4_c00208{height:70.664062px;}
.h5_c00208{height:75.093750px;}
.h0_c00208{height:1262.880000px;}
.h1_c00208{height:1263.000000px;}
.w0_c00208{width:893.070000px;}
.w1_c00208{width:893.250000px;}
.x0_c00208{left:0.000000px;}
.x3_c00208{left:127.620000px;}
.x4_c00208{left:154.620000px;}
.x5_c00208{left:181.620000px;}
.x2_c00208{left:425.160000px;}
.x1_c00208{left:446.580000px;}
.x6_c00208{left:738.540000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls5_c00208{letter-spacing:-0.128000pt;}
.ls4_c00208{letter-spacing:-0.096000pt;}
.ls3_c00208{letter-spacing:0.000000pt;}
.ls1_c00208{letter-spacing:0.064000pt;}
.ls0_c00208{letter-spacing:0.128000pt;}
.ls2_c00208{letter-spacing:27.328000pt;}
.ws0_c00208{word-spacing:-16.064000pt;}
.ws6_c00208{word-spacing:-0.320000pt;}
.ws13_c00208{word-spacing:-0.064000pt;}
.ws1_c00208{word-spacing:0.000000pt;}
.ws3_c00208{word-spacing:0.144000pt;}
.ws2_c00208{word-spacing:0.240000pt;}
.ws1b_c00208{word-spacing:0.320000pt;}
.ws15_c00208{word-spacing:0.960000pt;}
.ws14_c00208{word-spacing:1.088000pt;}
.ws22_c00208{word-spacing:1.600000pt;}
.ws5_c00208{word-spacing:1.856000pt;}
.ws4_c00208{word-spacing:1.920000pt;}
.ws20_c00208{word-spacing:2.240000pt;}
.ws21_c00208{word-spacing:2.560000pt;}
.ws8_c00208{word-spacing:2.880000pt;}
.ws18_c00208{word-spacing:3.200000pt;}
.ws19_c00208{word-spacing:3.520000pt;}
.wsf_c00208{word-spacing:4.480000pt;}
.wsb_c00208{word-spacing:5.120000pt;}
.ws9_c00208{word-spacing:7.360000pt;}
.ws10_c00208{word-spacing:8.256000pt;}
.ws11_c00208{word-spacing:8.576000pt;}
.ws7_c00208{word-spacing:10.496000pt;}
.ws12_c00208{word-spacing:11.200000pt;}
.wsd_c00208{word-spacing:14.720000pt;}
.ws1c_c00208{word-spacing:15.360000pt;}
.ws16_c00208{word-spacing:15.936000pt;}
.wsc_c00208{word-spacing:18.560000pt;}
.ws1d_c00208{word-spacing:18.880000pt;}
.wsa_c00208{word-spacing:21.376000pt;}
.ws1a_c00208{word-spacing:22.336000pt;}
.ws17_c00208{word-spacing:24.640000pt;}
.ws1e_c00208{word-spacing:31.616000pt;}
.ws1f_c00208{word-spacing:31.680000pt;}
.wse_c00208{word-spacing:51.776000pt;}
._1_c00208{margin-left:-0.940800pt;}
._0_c00208{width:1.084800pt;}
._2_c00208{width:7.296000pt;}
._3_c00208{width:10.944000pt;}
._4_c00208{width:18.368000pt;}
.fs0_c00208{font-size:48.000000pt;}
.fs1_c00208{font-size:64.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y27_c00208{bottom:50.880000pt;}
.y26_c00208{bottom:103.840000pt;}
.y25_c00208{bottom:131.440000pt;}
.y24_c00208{bottom:159.040000pt;}
.y23_c00208{bottom:186.640000pt;}
.y22_c00208{bottom:214.240000pt;}
.y21_c00208{bottom:241.840000pt;}
.y20_c00208{bottom:269.440000pt;}
.y1f_c00208{bottom:297.040000pt;}
.y1e_c00208{bottom:324.640000pt;}
.y1d_c00208{bottom:352.240000pt;}
.y1c_c00208{bottom:379.840000pt;}
.y1b_c00208{bottom:407.440000pt;}
.y1a_c00208{bottom:435.040000pt;}
.y19_c00208{bottom:462.640000pt;}
.y18_c00208{bottom:490.240000pt;}
.y17_c00208{bottom:517.840000pt;}
.y16_c00208{bottom:545.440000pt;}
.y15_c00208{bottom:573.040000pt;}
.y14_c00208{bottom:600.640000pt;}
.y13_c00208{bottom:628.240000pt;}
.y12_c00208{bottom:655.840000pt;}
.y11_c00208{bottom:683.440000pt;}
.y10_c00208{bottom:711.040000pt;}
.yf_c00208{bottom:738.640000pt;}
.ye_c00208{bottom:766.160000pt;}
.yd_c00208{bottom:793.760000pt;}
.yc_c00208{bottom:821.360000pt;}
.yb_c00208{bottom:848.960000pt;}
.ya_c00208{bottom:876.560000pt;}
.y9_c00208{bottom:904.160000pt;}
.y8_c00208{bottom:931.760000pt;}
.y7_c00208{bottom:959.360000pt;}
.y6_c00208{bottom:986.960000pt;}
.y5_c00208{bottom:1005.360000pt;}
.y4_c00208{bottom:1023.040000pt;}
.y3_c00208{bottom:1036.804000pt;}
.y2_c00208{bottom:1050.640000pt;}
.y1_c00208{bottom:1064.400000pt;}
.h3_c00208{height:47.085938pt;}
.h2_c00208{height:47.109375pt;}
.h4_c00208{height:62.812500pt;}
.h5_c00208{height:66.750000pt;}
.h0_c00208{height:1122.560000pt;}
.h1_c00208{height:1122.666667pt;}
.w0_c00208{width:793.840000pt;}
.w1_c00208{width:794.000000pt;}
.x0_c00208{left:0.000000pt;}
.x3_c00208{left:113.440000pt;}
.x4_c00208{left:137.440000pt;}
.x5_c00208{left:161.440000pt;}
.x2_c00208{left:377.920000pt;}
.x1_c00208{left:396.960000pt;}
.x6_c00208{left:656.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_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_54d178a7bf062dc79e9b7be4.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.284180;font-style:normal;font-weight:normal;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_d5ff5d2487cc382c4ad2e167.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;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_c00209;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.432129;font-style: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);}
.v1_c00209{vertical-align:-61.938000px;}
.v0_c00209{vertical-align:0.000000px;}
.ls4_c00209{letter-spacing:0.000000px;}
.ls1_c00209{letter-spacing:0.072000px;}
.ls3_c00209{letter-spacing:0.144000px;}
.ls2_c00209{letter-spacing:30.744000px;}
.ls0_c00209{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws2_c00209{word-spacing:-0.162000px;}
.ws6_c00209{word-spacing:-0.072000px;}
.ws1_c00209{word-spacing:0.000000px;}
.ws17_c00209{word-spacing:1.368000px;}
.ws16_c00209{word-spacing:1.440000px;}
.wsa_c00209{word-spacing:2.808000px;}
.ws1d_c00209{word-spacing:2.880000px;}
.wsd_c00209{word-spacing:4.320000px;}
.ws5_c00209{word-spacing:4.680000px;}
.ws9_c00209{word-spacing:5.328000px;}
.ws8_c00209{word-spacing:6.048000px;}
.ws7_c00209{word-spacing:6.120000px;}
.wsc_c00209{word-spacing:6.480000px;}
.wsf_c00209{word-spacing:6.768000px;}
.wse_c00209{word-spacing:6.840000px;}
.ws15_c00209{word-spacing:9.360000px;}
.ws18_c00209{word-spacing:10.080000px;}
.ws4_c00209{word-spacing:11.160000px;}
.ws1a_c00209{word-spacing:11.520000px;}
.ws3_c00209{word-spacing:15.840000px;}
.ws12_c00209{word-spacing:16.128000px;}
.ws13_c00209{word-spacing:16.200000px;}
.wsb_c00209{word-spacing:16.848000px;}
.ws1b_c00209{word-spacing:20.808000px;}
.ws10_c00209{word-spacing:25.560000px;}
.ws14_c00209{word-spacing:28.080000px;}
.ws11_c00209{word-spacing:29.160000px;}
.ws19_c00209{word-spacing:29.808000px;}
.ws1c_c00209{word-spacing:36.720000px;}
._0_c00209{margin-left:-1.296000px;}
._1_c00209{width:1.008000px;}
._2_c00209{width:6.048000px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs0_c00209{font-size:54.000000px;}
.fs1_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y25_c00209{bottom:57.240000px;}
.y24_c00209{bottom:147.870000px;}
.y23_c00209{bottom:178.920000px;}
.y22_c00209{bottom:209.970000px;}
.y21_c00209{bottom:241.020000px;}
.y20_c00209{bottom:272.070000px;}
.y1f_c00209{bottom:303.120000px;}
.y1e_c00209{bottom:334.170000px;}
.y1d_c00209{bottom:365.220000px;}
.y1c_c00209{bottom:396.270000px;}
.y1b_c00209{bottom:427.320000px;}
.y1a_c00209{bottom:458.370000px;}
.y19_c00209{bottom:489.420000px;}
.y18_c00209{bottom:520.470000px;}
.y17_c00209{bottom:551.520000px;}
.y16_c00209{bottom:582.570000px;}
.y15_c00209{bottom:613.620000px;}
.y14_c00209{bottom:644.670000px;}
.y13_c00209{bottom:675.720000px;}
.y12_c00209{bottom:706.770000px;}
.y11_c00209{bottom:737.820000px;}
.y10_c00209{bottom:768.870000px;}
.yf_c00209{bottom:799.920000px;}
.ye_c00209{bottom:830.970000px;}
.yd_c00209{bottom:861.930000px;}
.yc_c00209{bottom:892.980000px;}
.yb_c00209{bottom:924.030000px;}
.ya_c00209{bottom:955.080000px;}
.y9_c00209{bottom:986.130000px;}
.y8_c00209{bottom:1017.180000px;}
.y7_c00209{bottom:1048.230000px;}
.y6_c00209{bottom:1079.280000px;}
.y5_c00209{bottom:1110.330000px;}
.y4_c00209{bottom:1131.030000px;}
.y3_c00209{bottom:1150.915500px;}
.y2_c00209{bottom:1166.400000px;}
.y1_c00209{bottom:1197.450000px;}
.h2_c00209{height:52.998047px;}
.h3_c00209{height:70.664062px;}
.h4_c00209{height:75.093750px;}
.h0_c00209{height:1262.880000px;}
.h1_c00209{height:1263.000000px;}
.w0_c00209{width:893.070000px;}
.w1_c00209{width:893.250000px;}
.x0_c00209{left:0.000000px;}
.x2_c00209{left:127.620000px;}
.x3_c00209{left:154.620000px;}
.x4_c00209{left:181.620000px;}
.x1_c00209{left:446.580000px;}
@media print{
.v1_c00209{vertical-align:-55.056000pt;}
.v0_c00209{vertical-align:0.000000pt;}
.ls4_c00209{letter-spacing:0.000000pt;}
.ls1_c00209{letter-spacing:0.064000pt;}
.ls3_c00209{letter-spacing:0.128000pt;}
.ls2_c00209{letter-spacing:27.328000pt;}
.ls0_c00209{letter-spacing:284.016000pt;}
.ws0_c00209{word-spacing:-16.128000pt;}
.ws2_c00209{word-spacing:-0.144000pt;}
.ws6_c00209{word-spacing:-0.064000pt;}
.ws1_c00209{word-spacing:0.000000pt;}
.ws17_c00209{word-spacing:1.216000pt;}
.ws16_c00209{word-spacing:1.280000pt;}
.wsa_c00209{word-spacing:2.496000pt;}
.ws1d_c00209{word-spacing:2.560000pt;}
.wsd_c00209{word-spacing:3.840000pt;}
.ws5_c00209{word-spacing:4.160000pt;}
.ws9_c00209{word-spacing:4.736000pt;}
.ws8_c00209{word-spacing:5.376000pt;}
.ws7_c00209{word-spacing:5.440000pt;}
.wsc_c00209{word-spacing:5.760000pt;}
.wsf_c00209{word-spacing:6.016000pt;}
.wse_c00209{word-spacing:6.080000pt;}
.ws15_c00209{word-spacing:8.320000pt;}
.ws18_c00209{word-spacing:8.960000pt;}
.ws4_c00209{word-spacing:9.920000pt;}
.ws1a_c00209{word-spacing:10.240000pt;}
.ws3_c00209{word-spacing:14.080000pt;}
.ws12_c00209{word-spacing:14.336000pt;}
.ws13_c00209{word-spacing:14.400000pt;}
.wsb_c00209{word-spacing:14.976000pt;}
.ws1b_c00209{word-spacing:18.496000pt;}
.ws10_c00209{word-spacing:22.720000pt;}
.ws14_c00209{word-spacing:24.960000pt;}
.ws11_c00209{word-spacing:25.920000pt;}
.ws19_c00209{word-spacing:26.496000pt;}
.ws1c_c00209{word-spacing:32.640000pt;}
._0_c00209{margin-left:-1.152000pt;}
._1_c00209{width:0.896000pt;}
._2_c00209{width:5.376000pt;}
.fs0_c00209{font-size:48.000000pt;}
.fs1_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y25_c00209{bottom:50.880000pt;}
.y24_c00209{bottom:131.440000pt;}
.y23_c00209{bottom:159.040000pt;}
.y22_c00209{bottom:186.640000pt;}
.y21_c00209{bottom:214.240000pt;}
.y20_c00209{bottom:241.840000pt;}
.y1f_c00209{bottom:269.440000pt;}
.y1e_c00209{bottom:297.040000pt;}
.y1d_c00209{bottom:324.640000pt;}
.y1c_c00209{bottom:352.240000pt;}
.y1b_c00209{bottom:379.840000pt;}
.y1a_c00209{bottom:407.440000pt;}
.y19_c00209{bottom:435.040000pt;}
.y18_c00209{bottom:462.640000pt;}
.y17_c00209{bottom:490.240000pt;}
.y16_c00209{bottom:517.840000pt;}
.y15_c00209{bottom:545.440000pt;}
.y14_c00209{bottom:573.040000pt;}
.y13_c00209{bottom:600.640000pt;}
.y12_c00209{bottom:628.240000pt;}
.y11_c00209{bottom:655.840000pt;}
.y10_c00209{bottom:683.440000pt;}
.yf_c00209{bottom:711.040000pt;}
.ye_c00209{bottom:738.640000pt;}
.yd_c00209{bottom:766.160000pt;}
.yc_c00209{bottom:793.760000pt;}
.yb_c00209{bottom:821.360000pt;}
.ya_c00209{bottom:848.960000pt;}
.y9_c00209{bottom:876.560000pt;}
.y8_c00209{bottom:904.160000pt;}
.y7_c00209{bottom:931.760000pt;}
.y6_c00209{bottom:959.360000pt;}
.y5_c00209{bottom:986.960000pt;}
.y4_c00209{bottom:1005.360000pt;}
.y3_c00209{bottom:1023.036000pt;}
.y2_c00209{bottom:1036.800000pt;}
.y1_c00209{bottom:1064.400000pt;}
.h2_c00209{height:47.109375pt;}
.h3_c00209{height:62.812500pt;}
.h4_c00209{height:66.750000pt;}
.h0_c00209{height:1122.560000pt;}
.h1_c00209{height:1122.666667pt;}
.w0_c00209{width:793.840000pt;}
.w1_c00209{width:794.000000pt;}
.x0_c00209{left:0.000000pt;}
.x2_c00209{left:113.440000pt;}
.x3_c00209{left:137.440000pt;}
.x4_c00209{left:161.440000pt;}
.x1_c00209{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f1f655e86d292f8772426fe.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_1d8e423d9aadba28e874fd99.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;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_c00210;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.432129;font-style: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;}
.ls6_c00210{letter-spacing:-0.360000px;}
.ls4_c00210{letter-spacing:-0.108000px;}
.ls3_c00210{letter-spacing:0.000000px;}
.ls0_c00210{letter-spacing:0.072000px;}
.ls5_c00210{letter-spacing:0.144000px;}
.ls2_c00210{letter-spacing:6.120000px;}
.ls1_c00210{letter-spacing:30.744000px;}
.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:-18.072000px;}
.wsc_c00210{word-spacing:-0.072000px;}
.ws1_c00210{word-spacing:0.000000px;}
.ws3_c00210{word-spacing:0.162000px;}
.ws17_c00210{word-spacing:0.216000px;}
.ws2_c00210{word-spacing:0.270000px;}
.ws18_c00210{word-spacing:0.288000px;}
.ws16_c00210{word-spacing:0.360000px;}
.ws1d_c00210{word-spacing:1.368000px;}
.ws1e_c00210{word-spacing:1.440000px;}
.ws19_c00210{word-spacing:1.800000px;}
.ws15_c00210{word-spacing:2.088000px;}
.ws1c_c00210{word-spacing:3.168000px;}
.ws9_c00210{word-spacing:3.240000px;}
.ws21_c00210{word-spacing:3.456000px;}
.ws11_c00210{word-spacing:3.600000px;}
.wsb_c00210{word-spacing:4.608000px;}
.ws20_c00210{word-spacing:5.040000px;}
.ws12_c00210{word-spacing:5.328000px;}
.wsa_c00210{word-spacing:5.400000px;}
.ws1b_c00210{word-spacing:6.120000px;}
.wse_c00210{word-spacing:9.360000px;}
.ws22_c00210{word-spacing:9.720000px;}
.ws8_c00210{word-spacing:11.088000px;}
.ws1f_c00210{word-spacing:11.448000px;}
.wsd_c00210{word-spacing:11.520000px;}
.ws4_c00210{word-spacing:14.328000px;}
.ws14_c00210{word-spacing:15.408000px;}
.ws13_c00210{word-spacing:15.480000px;}
.ws7_c00210{word-spacing:16.488000px;}
.ws6_c00210{word-spacing:16.560000px;}
.ws1a_c00210{word-spacing:18.720000px;}
.wsf_c00210{word-spacing:19.368000px;}
.ws10_c00210{word-spacing:19.440000px;}
.ws5_c00210{word-spacing:23.688000px;}
._1_c00210{margin-left:-1.058400px;}
._0_c00210{width:1.220400px;}
._2_c00210{width:19.152000px;}
.fc0_c00210{color:rgb(0,0,0);}
.fs0_c00210{font-size:54.000000px;}
.fs1_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y27_c00210{bottom:57.240000px;}
.y26_c00210{bottom:116.820000px;}
.y25_c00210{bottom:147.870000px;}
.y24_c00210{bottom:178.920000px;}
.y23_c00210{bottom:209.970000px;}
.y22_c00210{bottom:241.020000px;}
.y21_c00210{bottom:272.070000px;}
.y20_c00210{bottom:303.120000px;}
.y1f_c00210{bottom:334.170000px;}
.y1e_c00210{bottom:365.220000px;}
.y1d_c00210{bottom:396.270000px;}
.y1c_c00210{bottom:427.320000px;}
.y1b_c00210{bottom:458.370000px;}
.y1a_c00210{bottom:489.420000px;}
.y19_c00210{bottom:520.470000px;}
.y18_c00210{bottom:551.520000px;}
.y17_c00210{bottom:582.570000px;}
.y16_c00210{bottom:613.620000px;}
.y15_c00210{bottom:644.670000px;}
.y14_c00210{bottom:675.720000px;}
.y13_c00210{bottom:706.770000px;}
.y12_c00210{bottom:737.820000px;}
.y11_c00210{bottom:768.870000px;}
.y10_c00210{bottom:799.920000px;}
.yf_c00210{bottom:830.970000px;}
.ye_c00210{bottom:861.930000px;}
.yd_c00210{bottom:892.980000px;}
.yc_c00210{bottom:924.030000px;}
.yb_c00210{bottom:955.080000px;}
.ya_c00210{bottom:986.130000px;}
.y9_c00210{bottom:1017.180000px;}
.y8_c00210{bottom:1048.230000px;}
.y7_c00210{bottom:1079.280000px;}
.y6_c00210{bottom:1110.330000px;}
.y5_c00210{bottom:1131.030000px;}
.y4_c00210{bottom:1150.920000px;}
.y3_c00210{bottom:1166.404500px;}
.y2_c00210{bottom:1181.970000px;}
.y1_c00210{bottom:1197.450000px;}
.h3_c00210{height:52.971680px;}
.h2_c00210{height:52.998047px;}
.h4_c00210{height:70.664062px;}
.h5_c00210{height:75.093750px;}
.h0_c00210{height:1262.880000px;}
.h1_c00210{height:1263.000000px;}
.w0_c00210{width:893.070000px;}
.w1_c00210{width:893.250000px;}
.x0_c00210{left:0.000000px;}
.x3_c00210{left:127.620000px;}
.x4_c00210{left:154.620000px;}
.x5_c00210{left:181.620000px;}
.x2_c00210{left:425.160000px;}
.x1_c00210{left:446.580000px;}
.x6_c00210{left:738.540000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls6_c00210{letter-spacing:-0.320000pt;}
.ls4_c00210{letter-spacing:-0.096000pt;}
.ls3_c00210{letter-spacing:0.000000pt;}
.ls0_c00210{letter-spacing:0.064000pt;}
.ls5_c00210{letter-spacing:0.128000pt;}
.ls2_c00210{letter-spacing:5.440000pt;}
.ls1_c00210{letter-spacing:27.328000pt;}
.ws0_c00210{word-spacing:-16.064000pt;}
.wsc_c00210{word-spacing:-0.064000pt;}
.ws1_c00210{word-spacing:0.000000pt;}
.ws3_c00210{word-spacing:0.144000pt;}
.ws17_c00210{word-spacing:0.192000pt;}
.ws2_c00210{word-spacing:0.240000pt;}
.ws18_c00210{word-spacing:0.256000pt;}
.ws16_c00210{word-spacing:0.320000pt;}
.ws1d_c00210{word-spacing:1.216000pt;}
.ws1e_c00210{word-spacing:1.280000pt;}
.ws19_c00210{word-spacing:1.600000pt;}
.ws15_c00210{word-spacing:1.856000pt;}
.ws1c_c00210{word-spacing:2.816000pt;}
.ws9_c00210{word-spacing:2.880000pt;}
.ws21_c00210{word-spacing:3.072000pt;}
.ws11_c00210{word-spacing:3.200000pt;}
.wsb_c00210{word-spacing:4.096000pt;}
.ws20_c00210{word-spacing:4.480000pt;}
.ws12_c00210{word-spacing:4.736000pt;}
.wsa_c00210{word-spacing:4.800000pt;}
.ws1b_c00210{word-spacing:5.440000pt;}
.wse_c00210{word-spacing:8.320000pt;}
.ws22_c00210{word-spacing:8.640000pt;}
.ws8_c00210{word-spacing:9.856000pt;}
.ws1f_c00210{word-spacing:10.176000pt;}
.wsd_c00210{word-spacing:10.240000pt;}
.ws4_c00210{word-spacing:12.736000pt;}
.ws14_c00210{word-spacing:13.696000pt;}
.ws13_c00210{word-spacing:13.760000pt;}
.ws7_c00210{word-spacing:14.656000pt;}
.ws6_c00210{word-spacing:14.720000pt;}
.ws1a_c00210{word-spacing:16.640000pt;}
.wsf_c00210{word-spacing:17.216000pt;}
.ws10_c00210{word-spacing:17.280000pt;}
.ws5_c00210{word-spacing:21.056000pt;}
._1_c00210{margin-left:-0.940800pt;}
._0_c00210{width:1.084800pt;}
._2_c00210{width:17.024000pt;}
.fs0_c00210{font-size:48.000000pt;}
.fs1_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y27_c00210{bottom:50.880000pt;}
.y26_c00210{bottom:103.840000pt;}
.y25_c00210{bottom:131.440000pt;}
.y24_c00210{bottom:159.040000pt;}
.y23_c00210{bottom:186.640000pt;}
.y22_c00210{bottom:214.240000pt;}
.y21_c00210{bottom:241.840000pt;}
.y20_c00210{bottom:269.440000pt;}
.y1f_c00210{bottom:297.040000pt;}
.y1e_c00210{bottom:324.640000pt;}
.y1d_c00210{bottom:352.240000pt;}
.y1c_c00210{bottom:379.840000pt;}
.y1b_c00210{bottom:407.440000pt;}
.y1a_c00210{bottom:435.040000pt;}
.y19_c00210{bottom:462.640000pt;}
.y18_c00210{bottom:490.240000pt;}
.y17_c00210{bottom:517.840000pt;}
.y16_c00210{bottom:545.440000pt;}
.y15_c00210{bottom:573.040000pt;}
.y14_c00210{bottom:600.640000pt;}
.y13_c00210{bottom:628.240000pt;}
.y12_c00210{bottom:655.840000pt;}
.y11_c00210{bottom:683.440000pt;}
.y10_c00210{bottom:711.040000pt;}
.yf_c00210{bottom:738.640000pt;}
.ye_c00210{bottom:766.160000pt;}
.yd_c00210{bottom:793.760000pt;}
.yc_c00210{bottom:821.360000pt;}
.yb_c00210{bottom:848.960000pt;}
.ya_c00210{bottom:876.560000pt;}
.y9_c00210{bottom:904.160000pt;}
.y8_c00210{bottom:931.760000pt;}
.y7_c00210{bottom:959.360000pt;}
.y6_c00210{bottom:986.960000pt;}
.y5_c00210{bottom:1005.360000pt;}
.y4_c00210{bottom:1023.040000pt;}
.y3_c00210{bottom:1036.804000pt;}
.y2_c00210{bottom:1050.640000pt;}
.y1_c00210{bottom:1064.400000pt;}
.h3_c00210{height:47.085938pt;}
.h2_c00210{height:47.109375pt;}
.h4_c00210{height:62.812500pt;}
.h5_c00210{height:66.750000pt;}
.h0_c00210{height:1122.560000pt;}
.h1_c00210{height:1122.666667pt;}
.w0_c00210{width:793.840000pt;}
.w1_c00210{width:794.000000pt;}
.x0_c00210{left:0.000000pt;}
.x3_c00210{left:113.440000pt;}
.x4_c00210{left:137.440000pt;}
.x5_c00210{left:161.440000pt;}
.x2_c00210{left:377.920000pt;}
.x1_c00210{left:396.960000pt;}
.x6_c00210{left:656.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_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_0471dc1d762f4d0534a6edb0.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_f0d0f622736343a42d2cf36f.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;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_c00211;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.432129;font-style: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);}
.v1_c00211{vertical-align:-61.938000px;}
.v0_c00211{vertical-align:0.000000px;}
.ls4_c00211{letter-spacing:0.000000px;}
.ls1_c00211{letter-spacing:0.072000px;}
.ls3_c00211{letter-spacing:6.120000px;}
.ls2_c00211{letter-spacing:30.744000px;}
.ls0_c00211{letter-spacing:319.518000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00211{word-spacing:-0.162000px;}
.ws3_c00211{word-spacing:-0.072000px;}
.ws0_c00211{word-spacing:0.000000px;}
.wsb_c00211{word-spacing:0.360000px;}
.ws2_c00211{word-spacing:0.720000px;}
.ws13_c00211{word-spacing:1.008000px;}
.wsa_c00211{word-spacing:1.080000px;}
.ws1b_c00211{word-spacing:1.440000px;}
.wsf_c00211{word-spacing:2.160000px;}
.wse_c00211{word-spacing:2.808000px;}
.wsd_c00211{word-spacing:2.880000px;}
.ws1c_c00211{word-spacing:3.600000px;}
.ws1a_c00211{word-spacing:4.320000px;}
.ws11_c00211{word-spacing:5.400000px;}
.ws14_c00211{word-spacing:6.120000px;}
.ws8_c00211{word-spacing:6.480000px;}
.ws12_c00211{word-spacing:7.560000px;}
.ws10_c00211{word-spacing:7.848000px;}
.wsc_c00211{word-spacing:7.920000px;}
.ws9_c00211{word-spacing:8.208000px;}
.ws19_c00211{word-spacing:8.928000px;}
.ws4_c00211{word-spacing:9.720000px;}
.ws17_c00211{word-spacing:10.008000px;}
.ws18_c00211{word-spacing:10.440000px;}
.ws15_c00211{word-spacing:13.608000px;}
.ws1d_c00211{word-spacing:14.328000px;}
.ws16_c00211{word-spacing:15.120000px;}
.ws5_c00211{word-spacing:16.200000px;}
.ws6_c00211{word-spacing:19.368000px;}
.ws7_c00211{word-spacing:19.440000px;}
._0_c00211{margin-left:-1.303200px;}
._1_c00211{width:1.008000px;}
._2_c00211{width:7.632000px;}
.fc0_c00211{color:rgb(0,0,0);}
.fs0_c00211{font-size:54.000000px;}
.fs1_c00211{font-size:72.000000px;}
.y0_c00211{bottom:0.000000px;}
.y25_c00211{bottom:57.240000px;}
.y24_c00211{bottom:147.870000px;}
.y23_c00211{bottom:178.920000px;}
.y22_c00211{bottom:209.970000px;}
.y21_c00211{bottom:241.020000px;}
.y20_c00211{bottom:272.070000px;}
.y1f_c00211{bottom:303.120000px;}
.y1e_c00211{bottom:334.170000px;}
.y1d_c00211{bottom:365.220000px;}
.y1c_c00211{bottom:396.270000px;}
.y1b_c00211{bottom:427.320000px;}
.y1a_c00211{bottom:458.370000px;}
.y19_c00211{bottom:489.420000px;}
.y18_c00211{bottom:520.470000px;}
.y17_c00211{bottom:551.520000px;}
.y16_c00211{bottom:582.570000px;}
.y15_c00211{bottom:613.620000px;}
.y14_c00211{bottom:644.670000px;}
.y13_c00211{bottom:675.720000px;}
.y12_c00211{bottom:706.770000px;}
.y11_c00211{bottom:737.820000px;}
.y10_c00211{bottom:768.870000px;}
.yf_c00211{bottom:799.920000px;}
.ye_c00211{bottom:830.970000px;}
.yd_c00211{bottom:861.930000px;}
.yc_c00211{bottom:892.980000px;}
.yb_c00211{bottom:924.030000px;}
.ya_c00211{bottom:955.080000px;}
.y9_c00211{bottom:986.130000px;}
.y8_c00211{bottom:1017.180000px;}
.y7_c00211{bottom:1048.230000px;}
.y6_c00211{bottom:1079.280000px;}
.y5_c00211{bottom:1110.330000px;}
.y4_c00211{bottom:1131.030000px;}
.y3_c00211{bottom:1150.915500px;}
.y2_c00211{bottom:1166.400000px;}
.y1_c00211{bottom:1197.450000px;}
.h2_c00211{height:52.998047px;}
.h3_c00211{height:70.664062px;}
.h4_c00211{height:75.093750px;}
.h0_c00211{height:1262.880000px;}
.h1_c00211{height:1263.000000px;}
.w0_c00211{width:893.070000px;}
.w1_c00211{width:893.250000px;}
.x0_c00211{left:0.000000px;}
.x2_c00211{left:127.620000px;}
.x3_c00211{left:154.620000px;}
.x4_c00211{left:181.620000px;}
.x1_c00211{left:446.580000px;}
@media print{
.v1_c00211{vertical-align:-55.056000pt;}
.v0_c00211{vertical-align:0.000000pt;}
.ls4_c00211{letter-spacing:0.000000pt;}
.ls1_c00211{letter-spacing:0.064000pt;}
.ls3_c00211{letter-spacing:5.440000pt;}
.ls2_c00211{letter-spacing:27.328000pt;}
.ls0_c00211{letter-spacing:284.016000pt;}
.ws1_c00211{word-spacing:-0.144000pt;}
.ws3_c00211{word-spacing:-0.064000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
.wsb_c00211{word-spacing:0.320000pt;}
.ws2_c00211{word-spacing:0.640000pt;}
.ws13_c00211{word-spacing:0.896000pt;}
.wsa_c00211{word-spacing:0.960000pt;}
.ws1b_c00211{word-spacing:1.280000pt;}
.wsf_c00211{word-spacing:1.920000pt;}
.wse_c00211{word-spacing:2.496000pt;}
.wsd_c00211{word-spacing:2.560000pt;}
.ws1c_c00211{word-spacing:3.200000pt;}
.ws1a_c00211{word-spacing:3.840000pt;}
.ws11_c00211{word-spacing:4.800000pt;}
.ws14_c00211{word-spacing:5.440000pt;}
.ws8_c00211{word-spacing:5.760000pt;}
.ws12_c00211{word-spacing:6.720000pt;}
.ws10_c00211{word-spacing:6.976000pt;}
.wsc_c00211{word-spacing:7.040000pt;}
.ws9_c00211{word-spacing:7.296000pt;}
.ws19_c00211{word-spacing:7.936000pt;}
.ws4_c00211{word-spacing:8.640000pt;}
.ws17_c00211{word-spacing:8.896000pt;}
.ws18_c00211{word-spacing:9.280000pt;}
.ws15_c00211{word-spacing:12.096000pt;}
.ws1d_c00211{word-spacing:12.736000pt;}
.ws16_c00211{word-spacing:13.440000pt;}
.ws5_c00211{word-spacing:14.400000pt;}
.ws6_c00211{word-spacing:17.216000pt;}
.ws7_c00211{word-spacing:17.280000pt;}
._0_c00211{margin-left:-1.158400pt;}
._1_c00211{width:0.896000pt;}
._2_c00211{width:6.784000pt;}
.fs0_c00211{font-size:48.000000pt;}
.fs1_c00211{font-size:64.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y25_c00211{bottom:50.880000pt;}
.y24_c00211{bottom:131.440000pt;}
.y23_c00211{bottom:159.040000pt;}
.y22_c00211{bottom:186.640000pt;}
.y21_c00211{bottom:214.240000pt;}
.y20_c00211{bottom:241.840000pt;}
.y1f_c00211{bottom:269.440000pt;}
.y1e_c00211{bottom:297.040000pt;}
.y1d_c00211{bottom:324.640000pt;}
.y1c_c00211{bottom:352.240000pt;}
.y1b_c00211{bottom:379.840000pt;}
.y1a_c00211{bottom:407.440000pt;}
.y19_c00211{bottom:435.040000pt;}
.y18_c00211{bottom:462.640000pt;}
.y17_c00211{bottom:490.240000pt;}
.y16_c00211{bottom:517.840000pt;}
.y15_c00211{bottom:545.440000pt;}
.y14_c00211{bottom:573.040000pt;}
.y13_c00211{bottom:600.640000pt;}
.y12_c00211{bottom:628.240000pt;}
.y11_c00211{bottom:655.840000pt;}
.y10_c00211{bottom:683.440000pt;}
.yf_c00211{bottom:711.040000pt;}
.ye_c00211{bottom:738.640000pt;}
.yd_c00211{bottom:766.160000pt;}
.yc_c00211{bottom:793.760000pt;}
.yb_c00211{bottom:821.360000pt;}
.ya_c00211{bottom:848.960000pt;}
.y9_c00211{bottom:876.560000pt;}
.y8_c00211{bottom:904.160000pt;}
.y7_c00211{bottom:931.760000pt;}
.y6_c00211{bottom:959.360000pt;}
.y5_c00211{bottom:986.960000pt;}
.y4_c00211{bottom:1005.360000pt;}
.y3_c00211{bottom:1023.036000pt;}
.y2_c00211{bottom:1036.800000pt;}
.y1_c00211{bottom:1064.400000pt;}
.h2_c00211{height:47.109375pt;}
.h3_c00211{height:62.812500pt;}
.h4_c00211{height:66.750000pt;}
.h0_c00211{height:1122.560000pt;}
.h1_c00211{height:1122.666667pt;}
.w0_c00211{width:793.840000pt;}
.w1_c00211{width:794.000000pt;}
.x0_c00211{left:0.000000pt;}
.x2_c00211{left:113.440000pt;}
.x3_c00211{left:137.440000pt;}
.x4_c00211{left:161.440000pt;}
.x1_c00211{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_941b73e8c160df32ad39b293.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_c3aed1c71ca502a6959169eb.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;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_c00212;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.432129;font-style: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;}
.ls6_c00212{letter-spacing:-0.288000px;}
.ls4_c00212{letter-spacing:-0.108000px;}
.ls3_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.072000px;}
.ls5_c00212{letter-spacing:0.144000px;}
.ls2_c00212{letter-spacing:22.680000px;}
.ls1_c00212{letter-spacing:30.744000px;}
.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:-18.144000px;}
.ws9_c00212{word-spacing:-0.144000px;}
.ws1_c00212{word-spacing:0.000000px;}
.ws3_c00212{word-spacing:0.162000px;}
.ws2_c00212{word-spacing:0.270000px;}
.ws12_c00212{word-spacing:0.288000px;}
.ws15_c00212{word-spacing:2.520000px;}
.wsa_c00212{word-spacing:3.528000px;}
.ws7_c00212{word-spacing:4.680000px;}
.ws18_c00212{word-spacing:5.976000px;}
.ws8_c00212{word-spacing:6.120000px;}
.ws14_c00212{word-spacing:6.840000px;}
.ws4_c00212{word-spacing:7.488000px;}
.ws10_c00212{word-spacing:8.280000px;}
.wse_c00212{word-spacing:12.888000px;}
.ws6_c00212{word-spacing:15.480000px;}
.ws11_c00212{word-spacing:20.880000px;}
.wsd_c00212{word-spacing:22.608000px;}
.wsc_c00212{word-spacing:22.680000px;}
.ws13_c00212{word-spacing:24.120000px;}
.ws16_c00212{word-spacing:24.840000px;}
.ws17_c00212{word-spacing:29.160000px;}
.wsb_c00212{word-spacing:29.520000px;}
.wsf_c00212{word-spacing:31.320000px;}
.ws5_c00212{word-spacing:36.720000px;}
._1_c00212{margin-left:-1.058400px;}
._0_c00212{width:1.220400px;}
._3_c00212{width:24.912000px;}
._2_c00212{width:36.072000px;}
._4_c00212{width:846.000000px;}
.fc0_c00212{color:rgb(0,0,0);}
.fs0_c00212{font-size:54.000000px;}
.fs1_c00212{font-size:72.000000px;}
.y0_c00212{bottom:0.000000px;}
.y20_c00212{bottom:57.240000px;}
.y1f_c00212{bottom:334.170000px;}
.y1e_c00212{bottom:365.220000px;}
.y1d_c00212{bottom:396.270000px;}
.y1c_c00212{bottom:427.320000px;}
.y1b_c00212{bottom:458.370000px;}
.y1a_c00212{bottom:489.420000px;}
.y19_c00212{bottom:520.470000px;}
.y18_c00212{bottom:551.520000px;}
.y17_c00212{bottom:582.570000px;}
.y16_c00212{bottom:613.620000px;}
.y15_c00212{bottom:644.670000px;}
.y14_c00212{bottom:675.720000px;}
.y13_c00212{bottom:706.770000px;}
.y12_c00212{bottom:737.820000px;}
.y11_c00212{bottom:768.870000px;}
.y10_c00212{bottom:799.920000px;}
.yf_c00212{bottom:830.970000px;}
.ye_c00212{bottom:861.930000px;}
.yd_c00212{bottom:892.980000px;}
.yc_c00212{bottom:924.030000px;}
.yb_c00212{bottom:955.080000px;}
.ya_c00212{bottom:986.130000px;}
.y9_c00212{bottom:1017.180000px;}
.y8_c00212{bottom:1048.230000px;}
.y7_c00212{bottom:1079.280000px;}
.y6_c00212{bottom:1110.330000px;}
.y5_c00212{bottom:1131.030000px;}
.y4_c00212{bottom:1150.920000px;}
.y3_c00212{bottom:1166.404500px;}
.y2_c00212{bottom:1181.970000px;}
.y1_c00212{bottom:1197.450000px;}
.h3_c00212{height:52.971680px;}
.h2_c00212{height:52.998047px;}
.h4_c00212{height:70.664062px;}
.h5_c00212{height:75.093750px;}
.h0_c00212{height:1262.880000px;}
.h1_c00212{height:1263.000000px;}
.w0_c00212{width:893.070000px;}
.w1_c00212{width:893.250000px;}
.x0_c00212{left:0.000000px;}
.x3_c00212{left:127.620000px;}
.x4_c00212{left:154.620000px;}
.x5_c00212{left:181.620000px;}
.x2_c00212{left:425.160000px;}
.x1_c00212{left:446.580000px;}
.x6_c00212{left:738.540000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls6_c00212{letter-spacing:-0.256000pt;}
.ls4_c00212{letter-spacing:-0.096000pt;}
.ls3_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.064000pt;}
.ls5_c00212{letter-spacing:0.128000pt;}
.ls2_c00212{letter-spacing:20.160000pt;}
.ls1_c00212{letter-spacing:27.328000pt;}
.ws0_c00212{word-spacing:-16.128000pt;}
.ws9_c00212{word-spacing:-0.128000pt;}
.ws1_c00212{word-spacing:0.000000pt;}
.ws3_c00212{word-spacing:0.144000pt;}
.ws2_c00212{word-spacing:0.240000pt;}
.ws12_c00212{word-spacing:0.256000pt;}
.ws15_c00212{word-spacing:2.240000pt;}
.wsa_c00212{word-spacing:3.136000pt;}
.ws7_c00212{word-spacing:4.160000pt;}
.ws18_c00212{word-spacing:5.312000pt;}
.ws8_c00212{word-spacing:5.440000pt;}
.ws14_c00212{word-spacing:6.080000pt;}
.ws4_c00212{word-spacing:6.656000pt;}
.ws10_c00212{word-spacing:7.360000pt;}
.wse_c00212{word-spacing:11.456000pt;}
.ws6_c00212{word-spacing:13.760000pt;}
.ws11_c00212{word-spacing:18.560000pt;}
.wsd_c00212{word-spacing:20.096000pt;}
.wsc_c00212{word-spacing:20.160000pt;}
.ws13_c00212{word-spacing:21.440000pt;}
.ws16_c00212{word-spacing:22.080000pt;}
.ws17_c00212{word-spacing:25.920000pt;}
.wsb_c00212{word-spacing:26.240000pt;}
.wsf_c00212{word-spacing:27.840000pt;}
.ws5_c00212{word-spacing:32.640000pt;}
._1_c00212{margin-left:-0.940800pt;}
._0_c00212{width:1.084800pt;}
._3_c00212{width:22.144000pt;}
._2_c00212{width:32.064000pt;}
._4_c00212{width:752.000000pt;}
.fs0_c00212{font-size:48.000000pt;}
.fs1_c00212{font-size:64.000000pt;}
.y0_c00212{bottom:0.000000pt;}
.y20_c00212{bottom:50.880000pt;}
.y1f_c00212{bottom:297.040000pt;}
.y1e_c00212{bottom:324.640000pt;}
.y1d_c00212{bottom:352.240000pt;}
.y1c_c00212{bottom:379.840000pt;}
.y1b_c00212{bottom:407.440000pt;}
.y1a_c00212{bottom:435.040000pt;}
.y19_c00212{bottom:462.640000pt;}
.y18_c00212{bottom:490.240000pt;}
.y17_c00212{bottom:517.840000pt;}
.y16_c00212{bottom:545.440000pt;}
.y15_c00212{bottom:573.040000pt;}
.y14_c00212{bottom:600.640000pt;}
.y13_c00212{bottom:628.240000pt;}
.y12_c00212{bottom:655.840000pt;}
.y11_c00212{bottom:683.440000pt;}
.y10_c00212{bottom:711.040000pt;}
.yf_c00212{bottom:738.640000pt;}
.ye_c00212{bottom:766.160000pt;}
.yd_c00212{bottom:793.760000pt;}
.yc_c00212{bottom:821.360000pt;}
.yb_c00212{bottom:848.960000pt;}
.ya_c00212{bottom:876.560000pt;}
.y9_c00212{bottom:904.160000pt;}
.y8_c00212{bottom:931.760000pt;}
.y7_c00212{bottom:959.360000pt;}
.y6_c00212{bottom:986.960000pt;}
.y5_c00212{bottom:1005.360000pt;}
.y4_c00212{bottom:1023.040000pt;}
.y3_c00212{bottom:1036.804000pt;}
.y2_c00212{bottom:1050.640000pt;}
.y1_c00212{bottom:1064.400000pt;}
.h3_c00212{height:47.085938pt;}
.h2_c00212{height:47.109375pt;}
.h4_c00212{height:62.812500pt;}
.h5_c00212{height:66.750000pt;}
.h0_c00212{height:1122.560000pt;}
.h1_c00212{height:1122.666667pt;}
.w0_c00212{width:793.840000pt;}
.w1_c00212{width:794.000000pt;}
.x0_c00212{left:0.000000pt;}
.x3_c00212{left:113.440000pt;}
.x4_c00212{left:137.440000pt;}
.x5_c00212{left:161.440000pt;}
.x2_c00212{left:377.920000pt;}
.x1_c00212{left:396.960000pt;}
.x6_c00212{left:656.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_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_76d767ee6db647584e78ac7f.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00213{vertical-align:-61.938000px;}
.v0_c00213{vertical-align:0.000000px;}
.ls2_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:319.518000px;}
.ls1_c00213{letter-spacing:828.000000px;}
.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:-0.162000px;}
.ws0_c00213{word-spacing:0.000000px;}
.fc0_c00213{color:rgb(0,0,0);}
.fs0_c00213{font-size:54.000000px;}
.fs1_c00213{font-size:72.000000px;}
.fs2_c00213{font-size:144.000000px;}
.y0_c00213{bottom:0.000000px;}
.y7_c00213{bottom:57.240000px;}
.y6_c00213{bottom:1079.280000px;}
.y5_c00213{bottom:1110.330000px;}
.y4_c00213{bottom:1131.030000px;}
.y3_c00213{bottom:1150.915500px;}
.y2_c00213{bottom:1166.400000px;}
.y1_c00213{bottom:1197.450000px;}
.h2_c00213{height:52.998047px;}
.h3_c00213{height:70.664062px;}
.h4_c00213{height:145.125000px;}
.h0_c00213{height:1262.880000px;}
.h1_c00213{height:1263.000000px;}
.w0_c00213{width:893.070000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x2_c00213{left:127.620000px;}
.x1_c00213{left:446.580000px;}
@media print{
.v1_c00213{vertical-align:-55.056000pt;}
.v0_c00213{vertical-align:0.000000pt;}
.ls2_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:284.016000pt;}
.ls1_c00213{letter-spacing:736.000000pt;}
.ws1_c00213{word-spacing:-0.144000pt;}
.ws0_c00213{word-spacing:0.000000pt;}
.fs0_c00213{font-size:48.000000pt;}
.fs1_c00213{font-size:64.000000pt;}
.fs2_c00213{font-size:128.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y7_c00213{bottom:50.880000pt;}
.y6_c00213{bottom:959.360000pt;}
.y5_c00213{bottom:986.960000pt;}
.y4_c00213{bottom:1005.360000pt;}
.y3_c00213{bottom:1023.036000pt;}
.y2_c00213{bottom:1036.800000pt;}
.y1_c00213{bottom:1064.400000pt;}
.h2_c00213{height:47.109375pt;}
.h3_c00213{height:62.812500pt;}
.h4_c00213{height:129.000000pt;}
.h0_c00213{height:1122.560000pt;}
.h1_c00213{height:1122.666667pt;}
.w0_c00213{width:793.840000pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x2_c00213{left:113.440000pt;}
.x1_c00213{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3bb500f8fab57ce72541371e.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_743b04e5e78aa66a493944b6.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00214{vertical-align:-105.840000px;}
.v0_c00214{vertical-align:0.000000px;}
.ls5_c00214{letter-spacing:-0.192240px;}
.ls4_c00214{letter-spacing:-0.108000px;}
.ls3_c00214{letter-spacing:0.000000px;}
.ls2_c00214{letter-spacing:0.072000px;}
.ls1_c00214{letter-spacing:0.192240px;}
.ls0_c00214{letter-spacing:1257.840000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:-24.030000px;}
.ws6_c00214{word-spacing:-0.480600px;}
.ws5_c00214{word-spacing:-0.096120px;}
.ws7_c00214{word-spacing:-0.072000px;}
.ws1_c00214{word-spacing:0.000000px;}
.ws3_c00214{word-spacing:0.162000px;}
.ws2_c00214{word-spacing:0.270000px;}
.ws4_c00214{word-spacing:0.288360px;}
._1_c00214{margin-left:-1.058400px;}
._0_c00214{width:1.220400px;}
._2_c00214{width:846.000000px;}
.fc0_c00214{color:rgb(0,0,0);}
.fs0_c00214{font-size:54.000000px;}
.fs4_c00214{font-size:60.120000px;}
.fs1_c00214{font-size:72.000000px;}
.fs2_c00214{font-size:96.120000px;}
.fs3_c00214{font-size:144.000000px;}
.y0_c00214{bottom:0.000000px;}
.y19_c00214{bottom:57.240000px;}
.y18_c00214{bottom:317.880000px;}
.y17_c00214{bottom:346.500000px;}
.y16_c00214{bottom:385.560000px;}
.y15_c00214{bottom:406.260000px;}
.y14_c00214{bottom:462.937860px;}
.y13_c00214{bottom:504.341550px;}
.y12_c00214{bottom:545.745240px;}
.y11_c00214{bottom:587.148930px;}
.y10_c00214{bottom:628.552620px;}
.yf_c00214{bottom:669.956310px;}
.ye_c00214{bottom:711.360000px;}
.yd_c00214{bottom:762.300000px;}
.yc_c00214{bottom:814.840290px;}
.yb_c00214{bottom:856.147860px;}
.ya_c00214{bottom:897.551550px;}
.y9_c00214{bottom:938.955240px;}
.y8_c00214{bottom:980.358930px;}
.y7_c00214{bottom:1021.762620px;}
.y6_c00214{bottom:1063.166310px;}
.y5_c00214{bottom:1131.030000px;}
.y4_c00214{bottom:1150.920000px;}
.y3_c00214{bottom:1166.404500px;}
.y2_c00214{bottom:1181.970000px;}
.y1_c00214{bottom:1197.450000px;}
.h3_c00214{height:52.971680px;}
.h2_c00214{height:52.998047px;}
.h8_c00214{height:60.589687px;}
.h4_c00214{height:70.664062px;}
.h7_c00214{height:72.562500px;}
.h5_c00214{height:96.870938px;}
.h6_c00214{height:145.125000px;}
.h0_c00214{height:1262.880000px;}
.h1_c00214{height:1263.000000px;}
.w0_c00214{width:893.070000px;}
.w1_c00214{width:893.250000px;}
.x0_c00214{left:0.000000px;}
.x3_c00214{left:127.620000px;}
.x9_c00214{left:129.600000px;}
.x8_c00214{left:131.940000px;}
.x6_c00214{left:133.541190px;}
.x5_c00214{left:135.896130px;}
.x7_c00214{left:191.213190px;}
.x4_c00214{left:357.570000px;}
.x2_c00214{left:425.160000px;}
.x1_c00214{left:446.580000px;}
.xa_c00214{left:738.540000px;}
@media print{
.v1_c00214{vertical-align:-94.080000pt;}
.v0_c00214{vertical-align:0.000000pt;}
.ls5_c00214{letter-spacing:-0.170880pt;}
.ls4_c00214{letter-spacing:-0.096000pt;}
.ls3_c00214{letter-spacing:0.000000pt;}
.ls2_c00214{letter-spacing:0.064000pt;}
.ls1_c00214{letter-spacing:0.170880pt;}
.ls0_c00214{letter-spacing:1118.080000pt;}
.ws0_c00214{word-spacing:-21.360000pt;}
.ws6_c00214{word-spacing:-0.427200pt;}
.ws5_c00214{word-spacing:-0.085440pt;}
.ws7_c00214{word-spacing:-0.064000pt;}
.ws1_c00214{word-spacing:0.000000pt;}
.ws3_c00214{word-spacing:0.144000pt;}
.ws2_c00214{word-spacing:0.240000pt;}
.ws4_c00214{word-spacing:0.256320pt;}
._1_c00214{margin-left:-0.940800pt;}
._0_c00214{width:1.084800pt;}
._2_c00214{width:752.000000pt;}
.fs0_c00214{font-size:48.000000pt;}
.fs4_c00214{font-size:53.440000pt;}
.fs1_c00214{font-size:64.000000pt;}
.fs2_c00214{font-size:85.440000pt;}
.fs3_c00214{font-size:128.000000pt;}
.y0_c00214{bottom:0.000000pt;}
.y19_c00214{bottom:50.880000pt;}
.y18_c00214{bottom:282.560000pt;}
.y17_c00214{bottom:308.000000pt;}
.y16_c00214{bottom:342.720000pt;}
.y15_c00214{bottom:361.120000pt;}
.y14_c00214{bottom:411.500320pt;}
.y13_c00214{bottom:448.303600pt;}
.y12_c00214{bottom:485.106880pt;}
.y11_c00214{bottom:521.910160pt;}
.y10_c00214{bottom:558.713440pt;}
.yf_c00214{bottom:595.516720pt;}
.ye_c00214{bottom:632.320000pt;}
.yd_c00214{bottom:677.600000pt;}
.yc_c00214{bottom:724.302480pt;}
.yb_c00214{bottom:761.020320pt;}
.ya_c00214{bottom:797.823600pt;}
.y9_c00214{bottom:834.626880pt;}
.y8_c00214{bottom:871.430160pt;}
.y7_c00214{bottom:908.233440pt;}
.y6_c00214{bottom:945.036720pt;}
.y5_c00214{bottom:1005.360000pt;}
.y4_c00214{bottom:1023.040000pt;}
.y3_c00214{bottom:1036.804000pt;}
.y2_c00214{bottom:1050.640000pt;}
.y1_c00214{bottom:1064.400000pt;}
.h3_c00214{height:47.085938pt;}
.h2_c00214{height:47.109375pt;}
.h8_c00214{height:53.857500pt;}
.h4_c00214{height:62.812500pt;}
.h7_c00214{height:64.500000pt;}
.h5_c00214{height:86.107500pt;}
.h6_c00214{height:129.000000pt;}
.h0_c00214{height:1122.560000pt;}
.h1_c00214{height:1122.666667pt;}
.w0_c00214{width:793.840000pt;}
.w1_c00214{width:794.000000pt;}
.x0_c00214{left:0.000000pt;}
.x3_c00214{left:113.440000pt;}
.x9_c00214{left:115.200000pt;}
.x8_c00214{left:117.280000pt;}
.x6_c00214{left:118.703280pt;}
.x5_c00214{left:120.796560pt;}
.x7_c00214{left:169.967280pt;}
.x4_c00214{left:317.840000pt;}
.x2_c00214{left:377.920000pt;}
.x1_c00214{left:396.960000pt;}
.xa_c00214{left:656.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_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_7bf0b22a41ed9639af161777.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_2b6b2b9221a652a96b910a04.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_252e81d93212fb9d7ce73c35.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;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:ff5_c00215;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00215{vertical-align:-61.938000px;}
.v3_c00215{vertical-align:-20.880000px;}
.v0_c00215{vertical-align:0.000000px;}
.v2_c00215{vertical-align:27.000000px;}
.ls1b_c00215{letter-spacing:-0.360720px;}
.ls18_c00215{letter-spacing:-0.360000px;}
.ls17_c00215{letter-spacing:-0.288000px;}
.ls15_c00215{letter-spacing:-0.216000px;}
.ls14_c00215{letter-spacing:-0.072000px;}
.ls19_c00215{letter-spacing:-0.060120px;}
.ls13_c00215{letter-spacing:0.000000px;}
.ls1_c00215{letter-spacing:0.072000px;}
.ls12_c00215{letter-spacing:0.120240px;}
.lsa_c00215{letter-spacing:0.144000px;}
.ls1a_c00215{letter-spacing:0.180360px;}
.ls4_c00215{letter-spacing:0.191520px;}
.ls16_c00215{letter-spacing:0.360000px;}
.ls9_c00215{letter-spacing:1.080000px;}
.ls11_c00215{letter-spacing:3.306600px;}
.ls7_c00215{letter-spacing:4.680000px;}
.ls6_c00215{letter-spacing:6.480000px;}
.ls5_c00215{letter-spacing:6.487200px;}
.ls10_c00215{letter-spacing:6.840000px;}
.lsb_c00215{letter-spacing:7.200000px;}
.lsd_c00215{letter-spacing:11.520000px;}
.lse_c00215{letter-spacing:12.240000px;}
.lsc_c00215{letter-spacing:14.760000px;}
.ls3_c00215{letter-spacing:16.920000px;}
.ls2_c00215{letter-spacing:17.280000px;}
.ls8_c00215{letter-spacing:30.744000px;}
.lsf_c00215{letter-spacing:32.400000px;}
.ls0_c00215{letter-spacing:319.518000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:-18.144000px;}
.ws4_c00215{word-spacing:-18.072000px;}
.ws3_c00215{word-spacing:-18.000000px;}
.ws0_c00215{word-spacing:-17.928000px;}
.ws5_c00215{word-spacing:-17.784000px;}
.ws6_c00215{word-spacing:-17.640000px;}
.ws8_c00215{word-spacing:-14.969880px;}
.ws2_c00215{word-spacing:-12.161520px;}
.ws7_c00215{word-spacing:-9.720000px;}
.ws19_c00215{word-spacing:-0.432000px;}
.ws17_c00215{word-spacing:-0.360000px;}
.wsa_c00215{word-spacing:-0.162000px;}
.ws1f_c00215{word-spacing:-0.144000px;}
.ws22_c00215{word-spacing:-0.072000px;}
.ws38_c00215{word-spacing:-0.060120px;}
.ws9_c00215{word-spacing:0.000000px;}
.ws33_c00215{word-spacing:0.060120px;}
.ws18_c00215{word-spacing:0.072000px;}
.ws36_c00215{word-spacing:0.180360px;}
.wse_c00215{word-spacing:0.216000px;}
.ws26_c00215{word-spacing:0.288000px;}
.ws24_c00215{word-spacing:0.360000px;}
.ws35_c00215{word-spacing:0.360720px;}
.ws1b_c00215{word-spacing:1.008000px;}
.ws1a_c00215{word-spacing:1.080000px;}
.ws2f_c00215{word-spacing:2.160000px;}
.ws37_c00215{word-spacing:3.366720px;}
.ws2b_c00215{word-spacing:3.528000px;}
.ws2a_c00215{word-spacing:3.600000px;}
.ws16_c00215{word-spacing:4.608000px;}
.ws15_c00215{word-spacing:6.408000px;}
.ws14_c00215{word-spacing:6.480000px;}
.ws2e_c00215{word-spacing:6.768000px;}
.ws23_c00215{word-spacing:7.200000px;}
.ws10_c00215{word-spacing:7.416000px;}
.wsf_c00215{word-spacing:7.488000px;}
.ws1d_c00215{word-spacing:7.776000px;}
.ws34_c00215{word-spacing:7.815600px;}
.ws1c_c00215{word-spacing:7.920000px;}
.ws1e_c00215{word-spacing:8.208000px;}
.ws21_c00215{word-spacing:8.280000px;}
.ws20_c00215{word-spacing:8.568000px;}
.ws13_c00215{word-spacing:9.288000px;}
.ws12_c00215{word-spacing:9.360000px;}
.ws11_c00215{word-spacing:9.720000px;}
.ws29_c00215{word-spacing:11.880000px;}
.ws28_c00215{word-spacing:13.248000px;}
.ws31_c00215{word-spacing:13.968000px;}
.ws30_c00215{word-spacing:14.040000px;}
.ws25_c00215{word-spacing:14.400000px;}
.ws27_c00215{word-spacing:14.688000px;}
.wsb_c00215{word-spacing:16.848000px;}
.wsc_c00215{word-spacing:17.208000px;}
.wsd_c00215{word-spacing:17.280000px;}
.ws32_c00215{word-spacing:30.168000px;}
.ws2c_c00215{word-spacing:32.328000px;}
.ws2d_c00215{word-spacing:32.400000px;}
._0_c00215{margin-left:-1.008000px;}
._5_c00215{width:1.008000px;}
._3_c00215{width:2.016000px;}
._4_c00215{width:4.176000px;}
._1_c00215{width:6.768000px;}
._9_c00215{width:7.995960px;}
._2_c00215{width:9.576000px;}
._8_c00215{width:13.176000px;}
._7_c00215{width:14.328000px;}
._6_c00215{width:15.624000px;}
.fc0_c00215{color:rgb(0,0,0);}
.fs3_c00215{font-size:38.880000px;}
.fs2_c00215{font-size:47.880000px;}
.fs0_c00215{font-size:54.000000px;}
.fs4_c00215{font-size:60.120000px;}
.fs1_c00215{font-size:72.000000px;}
.y0_c00215{bottom:0.000000px;}
.y26_c00215{bottom:57.240000px;}
.y25_c00215{bottom:109.795680px;}
.y24_c00215{bottom:132.210000px;}
.y23_c00215{bottom:144.265500px;}
.y22_c00215{bottom:166.770000px;}
.y27_c00215{bottom:179.460000px;}
.y21_c00215{bottom:241.020000px;}
.y20_c00215{bottom:272.070000px;}
.y1f_c00215{bottom:303.120000px;}
.y1e_c00215{bottom:334.170000px;}
.y1d_c00215{bottom:365.220000px;}
.y1c_c00215{bottom:396.270000px;}
.y1b_c00215{bottom:427.320000px;}
.y1a_c00215{bottom:458.370000px;}
.y19_c00215{bottom:489.420000px;}
.y18_c00215{bottom:520.470000px;}
.y17_c00215{bottom:551.520000px;}
.y16_c00215{bottom:582.570000px;}
.y15_c00215{bottom:613.620000px;}
.y14_c00215{bottom:644.670000px;}
.y13_c00215{bottom:675.720000px;}
.y12_c00215{bottom:706.770000px;}
.y11_c00215{bottom:737.820000px;}
.y10_c00215{bottom:768.870000px;}
.yf_c00215{bottom:799.920000px;}
.ye_c00215{bottom:830.970000px;}
.yd_c00215{bottom:861.930000px;}
.yc_c00215{bottom:892.980000px;}
.yb_c00215{bottom:924.030000px;}
.ya_c00215{bottom:955.080000px;}
.y9_c00215{bottom:986.130000px;}
.y8_c00215{bottom:1017.180000px;}
.y7_c00215{bottom:1048.230000px;}
.y6_c00215{bottom:1079.100000px;}
.y5_c00215{bottom:1110.150000px;}
.y4_c00215{bottom:1131.030000px;}
.y3_c00215{bottom:1150.915500px;}
.y2_c00215{bottom:1166.400000px;}
.y1_c00215{bottom:1197.450000px;}
.h7_c00215{height:38.158594px;}
.h2_c00215{height:52.998047px;}
.h8_c00215{height:59.004492px;}
.h3_c00215{height:70.664062px;}
.h4_c00215{height:72.562500px;}
.h5_c00215{height:73.991602px;}
.h6_c00215{height:75.093750px;}
.h0_c00215{height:1262.880000px;}
.h1_c00215{height:1263.000000px;}
.w0_c00215{width:893.070000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x2_c00215{left:127.620000px;}
.x3_c00215{left:154.620000px;}
.x4_c00215{left:181.620000px;}
.x1_c00215{left:446.580000px;}
@media print{
.v1_c00215{vertical-align:-55.056000pt;}
.v3_c00215{vertical-align:-18.560000pt;}
.v0_c00215{vertical-align:0.000000pt;}
.v2_c00215{vertical-align:24.000000pt;}
.ls1b_c00215{letter-spacing:-0.320640pt;}
.ls18_c00215{letter-spacing:-0.320000pt;}
.ls17_c00215{letter-spacing:-0.256000pt;}
.ls15_c00215{letter-spacing:-0.192000pt;}
.ls14_c00215{letter-spacing:-0.064000pt;}
.ls19_c00215{letter-spacing:-0.053440pt;}
.ls13_c00215{letter-spacing:0.000000pt;}
.ls1_c00215{letter-spacing:0.064000pt;}
.ls12_c00215{letter-spacing:0.106880pt;}
.lsa_c00215{letter-spacing:0.128000pt;}
.ls1a_c00215{letter-spacing:0.160320pt;}
.ls4_c00215{letter-spacing:0.170240pt;}
.ls16_c00215{letter-spacing:0.320000pt;}
.ls9_c00215{letter-spacing:0.960000pt;}
.ls11_c00215{letter-spacing:2.939200pt;}
.ls7_c00215{letter-spacing:4.160000pt;}
.ls6_c00215{letter-spacing:5.760000pt;}
.ls5_c00215{letter-spacing:5.766400pt;}
.ls10_c00215{letter-spacing:6.080000pt;}
.lsb_c00215{letter-spacing:6.400000pt;}
.lsd_c00215{letter-spacing:10.240000pt;}
.lse_c00215{letter-spacing:10.880000pt;}
.lsc_c00215{letter-spacing:13.120000pt;}
.ls3_c00215{letter-spacing:15.040000pt;}
.ls2_c00215{letter-spacing:15.360000pt;}
.ls8_c00215{letter-spacing:27.328000pt;}
.lsf_c00215{letter-spacing:28.800000pt;}
.ls0_c00215{letter-spacing:284.016000pt;}
.ws1_c00215{word-spacing:-16.128000pt;}
.ws4_c00215{word-spacing:-16.064000pt;}
.ws3_c00215{word-spacing:-16.000000pt;}
.ws0_c00215{word-spacing:-15.936000pt;}
.ws5_c00215{word-spacing:-15.808000pt;}
.ws6_c00215{word-spacing:-15.680000pt;}
.ws8_c00215{word-spacing:-13.306560pt;}
.ws2_c00215{word-spacing:-10.810240pt;}
.ws7_c00215{word-spacing:-8.640000pt;}
.ws19_c00215{word-spacing:-0.384000pt;}
.ws17_c00215{word-spacing:-0.320000pt;}
.wsa_c00215{word-spacing:-0.144000pt;}
.ws1f_c00215{word-spacing:-0.128000pt;}
.ws22_c00215{word-spacing:-0.064000pt;}
.ws38_c00215{word-spacing:-0.053440pt;}
.ws9_c00215{word-spacing:0.000000pt;}
.ws33_c00215{word-spacing:0.053440pt;}
.ws18_c00215{word-spacing:0.064000pt;}
.ws36_c00215{word-spacing:0.160320pt;}
.wse_c00215{word-spacing:0.192000pt;}
.ws26_c00215{word-spacing:0.256000pt;}
.ws24_c00215{word-spacing:0.320000pt;}
.ws35_c00215{word-spacing:0.320640pt;}
.ws1b_c00215{word-spacing:0.896000pt;}
.ws1a_c00215{word-spacing:0.960000pt;}
.ws2f_c00215{word-spacing:1.920000pt;}
.ws37_c00215{word-spacing:2.992640pt;}
.ws2b_c00215{word-spacing:3.136000pt;}
.ws2a_c00215{word-spacing:3.200000pt;}
.ws16_c00215{word-spacing:4.096000pt;}
.ws15_c00215{word-spacing:5.696000pt;}
.ws14_c00215{word-spacing:5.760000pt;}
.ws2e_c00215{word-spacing:6.016000pt;}
.ws23_c00215{word-spacing:6.400000pt;}
.ws10_c00215{word-spacing:6.592000pt;}
.wsf_c00215{word-spacing:6.656000pt;}
.ws1d_c00215{word-spacing:6.912000pt;}
.ws34_c00215{word-spacing:6.947200pt;}
.ws1c_c00215{word-spacing:7.040000pt;}
.ws1e_c00215{word-spacing:7.296000pt;}
.ws21_c00215{word-spacing:7.360000pt;}
.ws20_c00215{word-spacing:7.616000pt;}
.ws13_c00215{word-spacing:8.256000pt;}
.ws12_c00215{word-spacing:8.320000pt;}
.ws11_c00215{word-spacing:8.640000pt;}
.ws29_c00215{word-spacing:10.560000pt;}
.ws28_c00215{word-spacing:11.776000pt;}
.ws31_c00215{word-spacing:12.416000pt;}
.ws30_c00215{word-spacing:12.480000pt;}
.ws25_c00215{word-spacing:12.800000pt;}
.ws27_c00215{word-spacing:13.056000pt;}
.wsb_c00215{word-spacing:14.976000pt;}
.wsc_c00215{word-spacing:15.296000pt;}
.wsd_c00215{word-spacing:15.360000pt;}
.ws32_c00215{word-spacing:26.816000pt;}
.ws2c_c00215{word-spacing:28.736000pt;}
.ws2d_c00215{word-spacing:28.800000pt;}
._0_c00215{margin-left:-0.896000pt;}
._5_c00215{width:0.896000pt;}
._3_c00215{width:1.792000pt;}
._4_c00215{width:3.712000pt;}
._1_c00215{width:6.016000pt;}
._9_c00215{width:7.107520pt;}
._2_c00215{width:8.512000pt;}
._8_c00215{width:11.712000pt;}
._7_c00215{width:12.736000pt;}
._6_c00215{width:13.888000pt;}
.fs3_c00215{font-size:34.560000pt;}
.fs2_c00215{font-size:42.560000pt;}
.fs0_c00215{font-size:48.000000pt;}
.fs4_c00215{font-size:53.440000pt;}
.fs1_c00215{font-size:64.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y26_c00215{bottom:50.880000pt;}
.y25_c00215{bottom:97.596160pt;}
.y24_c00215{bottom:117.520000pt;}
.y23_c00215{bottom:128.236000pt;}
.y22_c00215{bottom:148.240000pt;}
.y27_c00215{bottom:159.520000pt;}
.y21_c00215{bottom:214.240000pt;}
.y20_c00215{bottom:241.840000pt;}
.y1f_c00215{bottom:269.440000pt;}
.y1e_c00215{bottom:297.040000pt;}
.y1d_c00215{bottom:324.640000pt;}
.y1c_c00215{bottom:352.240000pt;}
.y1b_c00215{bottom:379.840000pt;}
.y1a_c00215{bottom:407.440000pt;}
.y19_c00215{bottom:435.040000pt;}
.y18_c00215{bottom:462.640000pt;}
.y17_c00215{bottom:490.240000pt;}
.y16_c00215{bottom:517.840000pt;}
.y15_c00215{bottom:545.440000pt;}
.y14_c00215{bottom:573.040000pt;}
.y13_c00215{bottom:600.640000pt;}
.y12_c00215{bottom:628.240000pt;}
.y11_c00215{bottom:655.840000pt;}
.y10_c00215{bottom:683.440000pt;}
.yf_c00215{bottom:711.040000pt;}
.ye_c00215{bottom:738.640000pt;}
.yd_c00215{bottom:766.160000pt;}
.yc_c00215{bottom:793.760000pt;}
.yb_c00215{bottom:821.360000pt;}
.ya_c00215{bottom:848.960000pt;}
.y9_c00215{bottom:876.560000pt;}
.y8_c00215{bottom:904.160000pt;}
.y7_c00215{bottom:931.760000pt;}
.y6_c00215{bottom:959.200000pt;}
.y5_c00215{bottom:986.800000pt;}
.y4_c00215{bottom:1005.360000pt;}
.y3_c00215{bottom:1023.036000pt;}
.y2_c00215{bottom:1036.800000pt;}
.y1_c00215{bottom:1064.400000pt;}
.h7_c00215{height:33.918750pt;}
.h2_c00215{height:47.109375pt;}
.h8_c00215{height:52.448437pt;}
.h3_c00215{height:62.812500pt;}
.h4_c00215{height:64.500000pt;}
.h5_c00215{height:65.770312pt;}
.h6_c00215{height:66.750000pt;}
.h0_c00215{height:1122.560000pt;}
.h1_c00215{height:1122.666667pt;}
.w0_c00215{width:793.840000pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x2_c00215{left:113.440000pt;}
.x3_c00215{left:137.440000pt;}
.x4_c00215{left:161.440000pt;}
.x1_c00215{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f76bd11f54377d4ed1da3af.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_2eb4ac8ad7488d38c7e3f6f0.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_c73ec14f2d4f788c54933766.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:3.333984;font-style: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);}
.v5_c00216{vertical-align:-14.760000px;}
.v2_c00216{vertical-align:-10.440000px;}
.v0_c00216{vertical-align:0.000000px;}
.v6_c00216{vertical-align:14.760000px;}
.v8_c00216{vertical-align:36.332640px;}
.v3_c00216{vertical-align:40.308840px;}
.v1_c00216{vertical-align:53.280000px;}
.v7_c00216{vertical-align:56.896560px;}
.v4_c00216{vertical-align:72.001080px;}
.ls14_c00216{letter-spacing:-0.432000px;}
.ls12_c00216{letter-spacing:-0.360000px;}
.ls13_c00216{letter-spacing:-0.288000px;}
.ls1a_c00216{letter-spacing:-0.216000px;}
.ls15_c00216{letter-spacing:-0.168480px;}
.ls18_c00216{letter-spacing:-0.144000px;}
.ls11_c00216{letter-spacing:-0.108000px;}
.ls17_c00216{letter-spacing:-0.072000px;}
.ls16_c00216{letter-spacing:-0.042120px;}
.ls10_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.072000px;}
.ls19_c00216{letter-spacing:0.102240px;}
.ls3_c00216{letter-spacing:0.144000px;}
.ls7_c00216{letter-spacing:0.151200px;}
.ls8_c00216{letter-spacing:0.360000px;}
.ls2_c00216{letter-spacing:2.880000px;}
.ls9_c00216{letter-spacing:3.240000px;}
.ls1_c00216{letter-spacing:3.960000px;}
.lsc_c00216{letter-spacing:5.040000px;}
.lsb_c00216{letter-spacing:5.760000px;}
.lsa_c00216{letter-spacing:5.774400px;}
.lsf_c00216{letter-spacing:8.640000px;}
.lsd_c00216{letter-spacing:14.040000px;}
.lse_c00216{letter-spacing:16.200000px;}
.ls4_c00216{letter-spacing:16.560000px;}
.ls6_c00216{letter-spacing:28.800000px;}
.ls5_c00216{letter-spacing:34.200000px;}
.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;}
}
.wsc_c00216{word-spacing:-51.222240px;}
.ws4_c00216{word-spacing:-51.120000px;}
.ws6_c00216{word-spacing:-42.077880px;}
.ws5_c00216{word-spacing:-41.951520px;}
.wsd_c00216{word-spacing:-18.144000px;}
.ws0_c00216{word-spacing:-18.072000px;}
.ws1_c00216{word-spacing:-18.000000px;}
.ws8_c00216{word-spacing:-17.928000px;}
.ws9_c00216{word-spacing:-17.856000px;}
.ws2_c00216{word-spacing:-17.568000px;}
.ws7_c00216{word-spacing:-16.889112px;}
.wsb_c00216{word-spacing:-15.912000px;}
.wsa_c00216{word-spacing:-15.840000px;}
.ws1f_c00216{word-spacing:-0.360000px;}
.ws1d_c00216{word-spacing:-0.144000px;}
.ws1b_c00216{word-spacing:-0.072000px;}
.wse_c00216{word-spacing:0.000000px;}
.ws1c_c00216{word-spacing:0.072000px;}
.ws1e_c00216{word-spacing:0.144000px;}
.ws10_c00216{word-spacing:0.162000px;}
.ws22_c00216{word-spacing:0.216000px;}
.wsf_c00216{word-spacing:0.270000px;}
.ws29_c00216{word-spacing:0.360000px;}
.ws18_c00216{word-spacing:2.736000px;}
.ws17_c00216{word-spacing:2.808000px;}
.ws16_c00216{word-spacing:3.168000px;}
.ws26_c00216{word-spacing:3.240000px;}
.ws14_c00216{word-spacing:3.600000px;}
.ws3_c00216{word-spacing:3.816000px;}
.ws13_c00216{word-spacing:3.888000px;}
.ws15_c00216{word-spacing:3.960000px;}
.ws34_c00216{word-spacing:4.176000px;}
.ws33_c00216{word-spacing:4.248000px;}
.ws2c_c00216{word-spacing:4.968000px;}
.ws2a_c00216{word-spacing:5.040000px;}
.ws2b_c00216{word-spacing:5.328000px;}
.ws27_c00216{word-spacing:5.688000px;}
.ws28_c00216{word-spacing:5.760000px;}
.ws35_c00216{word-spacing:8.928000px;}
.ws36_c00216{word-spacing:9.000000px;}
.ws1a_c00216{word-spacing:11.448000px;}
.ws2e_c00216{word-spacing:13.608000px;}
.ws2f_c00216{word-spacing:13.968000px;}
.ws2d_c00216{word-spacing:14.040000px;}
.ws25_c00216{word-spacing:14.688000px;}
.ws32_c00216{word-spacing:15.840000px;}
.ws31_c00216{word-spacing:16.128000px;}
.ws30_c00216{word-spacing:16.200000px;}
.ws19_c00216{word-spacing:16.560000px;}
.ws12_c00216{word-spacing:19.728000px;}
.ws11_c00216{word-spacing:19.800000px;}
.ws23_c00216{word-spacing:28.728000px;}
.ws24_c00216{word-spacing:28.800000px;}
.ws20_c00216{word-spacing:33.768000px;}
.ws21_c00216{word-spacing:33.840000px;}
._4_c00216{margin-left:-6.696000px;}
._1_c00216{margin-left:-1.058400px;}
._0_c00216{width:1.220400px;}
._3_c00216{width:3.168000px;}
._a_c00216{width:4.212000px;}
._8_c00216{width:5.763600px;}
._5_c00216{width:14.773680px;}
._9_c00216{width:15.991200px;}
._2_c00216{width:19.800000px;}
._7_c00216{width:28.560960px;}
._6_c00216{width:33.999120px;}
.fc0_c00216{color:rgb(0,0,0);}
.fs3_c00216{font-size:42.120000px;}
.fs2_c00216{font-size:51.120000px;}
.fs0_c00216{font-size:54.000000px;}
.fs1_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y2b_c00216{bottom:57.240000px;}
.y2a_c00216{bottom:177.570000px;}
.y29_c00216{bottom:208.620000px;}
.y28_c00216{bottom:239.670000px;}
.y27_c00216{bottom:270.720000px;}
.y26_c00216{bottom:301.770000px;}
.y25_c00216{bottom:332.820000px;}
.y24_c00216{bottom:363.870000px;}
.y23_c00216{bottom:394.920000px;}
.y22_c00216{bottom:425.970000px;}
.y21_c00216{bottom:457.020000px;}
.y20_c00216{bottom:488.070000px;}
.y1f_c00216{bottom:519.120000px;}
.y1e_c00216{bottom:550.170000px;}
.y1d_c00216{bottom:588.870000px;}
.y1c_c00216{bottom:605.526840px;}
.y1b_c00216{bottom:614.610000px;}
.y1a_c00216{bottom:640.710000px;}
.y19_c00216{bottom:657.366840px;}
.y18_c00216{bottom:666.450000px;}
.y17_c00216{bottom:692.550000px;}
.y16_c00216{bottom:713.610000px;}
.y15_c00216{bottom:737.100000px;}
.y14_c00216{bottom:760.500000px;}
.y13_c00216{bottom:781.650000px;}
.y12_c00216{bottom:802.350000px;}
.y11_c00216{bottom:829.529730px;}
.y10_c00216{bottom:835.920000px;}
.ye_c00216{bottom:847.530000px;}
.yf_c00216{bottom:854.459730px;}
.yd_c00216{bottom:892.980000px;}
.yc_c00216{bottom:924.030000px;}
.yb_c00216{bottom:955.080000px;}
.ya_c00216{bottom:986.130000px;}
.y9_c00216{bottom:1017.180000px;}
.y8_c00216{bottom:1048.230000px;}
.y7_c00216{bottom:1079.280000px;}
.y6_c00216{bottom:1110.330000px;}
.y5_c00216{bottom:1131.030000px;}
.y4_c00216{bottom:1150.920000px;}
.y3_c00216{bottom:1166.404500px;}
.y2_c00216{bottom:1181.970000px;}
.y1_c00216{bottom:1197.450000px;}
.h3_c00216{height:52.971680px;}
.h2_c00216{height:52.998047px;}
.h4_c00216{height:70.664062px;}
.h6_c00216{height:83.972637px;}
.h9_c00216{height:87.155508px;}
.hb_c00216{height:106.996703px;}
.h7_c00216{height:113.841477px;}
.h8_c00216{height:142.665143px;}
.ha_c00216{height:144.052068px;}
.h5_c00216{height:167.121477px;}
.h0_c00216{height:1262.880000px;}
.h1_c00216{height:1263.000000px;}
.w0_c00216{width:893.070000px;}
.w1_c00216{width:893.250000px;}
.x0_c00216{left:0.000000px;}
.x3_c00216{left:127.620000px;}
.x8_c00216{left:165.157740px;}
.x7_c00216{left:170.998200px;}
.x4_c00216{left:355.320000px;}
.x5_c00216{left:412.110000px;}
.x2_c00216{left:425.160000px;}
.x6_c00216{left:443.345400px;}
.x1_c00216{left:446.580000px;}
.x9_c00216{left:738.540000px;}
@media print{
.v5_c00216{vertical-align:-13.120000pt;}
.v2_c00216{vertical-align:-9.280000pt;}
.v0_c00216{vertical-align:0.000000pt;}
.v6_c00216{vertical-align:13.120000pt;}
.v8_c00216{vertical-align:32.295680pt;}
.v3_c00216{vertical-align:35.830080pt;}
.v1_c00216{vertical-align:47.360000pt;}
.v7_c00216{vertical-align:50.574720pt;}
.v4_c00216{vertical-align:64.000960pt;}
.ls14_c00216{letter-spacing:-0.384000pt;}
.ls12_c00216{letter-spacing:-0.320000pt;}
.ls13_c00216{letter-spacing:-0.256000pt;}
.ls1a_c00216{letter-spacing:-0.192000pt;}
.ls15_c00216{letter-spacing:-0.149760pt;}
.ls18_c00216{letter-spacing:-0.128000pt;}
.ls11_c00216{letter-spacing:-0.096000pt;}
.ls17_c00216{letter-spacing:-0.064000pt;}
.ls16_c00216{letter-spacing:-0.037440pt;}
.ls10_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.064000pt;}
.ls19_c00216{letter-spacing:0.090880pt;}
.ls3_c00216{letter-spacing:0.128000pt;}
.ls7_c00216{letter-spacing:0.134400pt;}
.ls8_c00216{letter-spacing:0.320000pt;}
.ls2_c00216{letter-spacing:2.560000pt;}
.ls9_c00216{letter-spacing:2.880000pt;}
.ls1_c00216{letter-spacing:3.520000pt;}
.lsc_c00216{letter-spacing:4.480000pt;}
.lsb_c00216{letter-spacing:5.120000pt;}
.lsa_c00216{letter-spacing:5.132800pt;}
.lsf_c00216{letter-spacing:7.680000pt;}
.lsd_c00216{letter-spacing:12.480000pt;}
.lse_c00216{letter-spacing:14.400000pt;}
.ls4_c00216{letter-spacing:14.720000pt;}
.ls6_c00216{letter-spacing:25.600000pt;}
.ls5_c00216{letter-spacing:30.400000pt;}
.wsc_c00216{word-spacing:-45.530880pt;}
.ws4_c00216{word-spacing:-45.440000pt;}
.ws6_c00216{word-spacing:-37.402560pt;}
.ws5_c00216{word-spacing:-37.290240pt;}
.wsd_c00216{word-spacing:-16.128000pt;}
.ws0_c00216{word-spacing:-16.064000pt;}
.ws1_c00216{word-spacing:-16.000000pt;}
.ws8_c00216{word-spacing:-15.936000pt;}
.ws9_c00216{word-spacing:-15.872000pt;}
.ws2_c00216{word-spacing:-15.616000pt;}
.ws7_c00216{word-spacing:-15.012544pt;}
.wsb_c00216{word-spacing:-14.144000pt;}
.wsa_c00216{word-spacing:-14.080000pt;}
.ws1f_c00216{word-spacing:-0.320000pt;}
.ws1d_c00216{word-spacing:-0.128000pt;}
.ws1b_c00216{word-spacing:-0.064000pt;}
.wse_c00216{word-spacing:0.000000pt;}
.ws1c_c00216{word-spacing:0.064000pt;}
.ws1e_c00216{word-spacing:0.128000pt;}
.ws10_c00216{word-spacing:0.144000pt;}
.ws22_c00216{word-spacing:0.192000pt;}
.wsf_c00216{word-spacing:0.240000pt;}
.ws29_c00216{word-spacing:0.320000pt;}
.ws18_c00216{word-spacing:2.432000pt;}
.ws17_c00216{word-spacing:2.496000pt;}
.ws16_c00216{word-spacing:2.816000pt;}
.ws26_c00216{word-spacing:2.880000pt;}
.ws14_c00216{word-spacing:3.200000pt;}
.ws3_c00216{word-spacing:3.392000pt;}
.ws13_c00216{word-spacing:3.456000pt;}
.ws15_c00216{word-spacing:3.520000pt;}
.ws34_c00216{word-spacing:3.712000pt;}
.ws33_c00216{word-spacing:3.776000pt;}
.ws2c_c00216{word-spacing:4.416000pt;}
.ws2a_c00216{word-spacing:4.480000pt;}
.ws2b_c00216{word-spacing:4.736000pt;}
.ws27_c00216{word-spacing:5.056000pt;}
.ws28_c00216{word-spacing:5.120000pt;}
.ws35_c00216{word-spacing:7.936000pt;}
.ws36_c00216{word-spacing:8.000000pt;}
.ws1a_c00216{word-spacing:10.176000pt;}
.ws2e_c00216{word-spacing:12.096000pt;}
.ws2f_c00216{word-spacing:12.416000pt;}
.ws2d_c00216{word-spacing:12.480000pt;}
.ws25_c00216{word-spacing:13.056000pt;}
.ws32_c00216{word-spacing:14.080000pt;}
.ws31_c00216{word-spacing:14.336000pt;}
.ws30_c00216{word-spacing:14.400000pt;}
.ws19_c00216{word-spacing:14.720000pt;}
.ws12_c00216{word-spacing:17.536000pt;}
.ws11_c00216{word-spacing:17.600000pt;}
.ws23_c00216{word-spacing:25.536000pt;}
.ws24_c00216{word-spacing:25.600000pt;}
.ws20_c00216{word-spacing:30.016000pt;}
.ws21_c00216{word-spacing:30.080000pt;}
._4_c00216{margin-left:-5.952000pt;}
._1_c00216{margin-left:-0.940800pt;}
._0_c00216{width:1.084800pt;}
._3_c00216{width:2.816000pt;}
._a_c00216{width:3.744000pt;}
._8_c00216{width:5.123200pt;}
._5_c00216{width:13.132160pt;}
._9_c00216{width:14.214400pt;}
._2_c00216{width:17.600000pt;}
._7_c00216{width:25.387520pt;}
._6_c00216{width:30.221440pt;}
.fs3_c00216{font-size:37.440000pt;}
.fs2_c00216{font-size:45.440000pt;}
.fs0_c00216{font-size:48.000000pt;}
.fs1_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y2b_c00216{bottom:50.880000pt;}
.y2a_c00216{bottom:157.840000pt;}
.y29_c00216{bottom:185.440000pt;}
.y28_c00216{bottom:213.040000pt;}
.y27_c00216{bottom:240.640000pt;}
.y26_c00216{bottom:268.240000pt;}
.y25_c00216{bottom:295.840000pt;}
.y24_c00216{bottom:323.440000pt;}
.y23_c00216{bottom:351.040000pt;}
.y22_c00216{bottom:378.640000pt;}
.y21_c00216{bottom:406.240000pt;}
.y20_c00216{bottom:433.840000pt;}
.y1f_c00216{bottom:461.440000pt;}
.y1e_c00216{bottom:489.040000pt;}
.y1d_c00216{bottom:523.440000pt;}
.y1c_c00216{bottom:538.246080pt;}
.y1b_c00216{bottom:546.320000pt;}
.y1a_c00216{bottom:569.520000pt;}
.y19_c00216{bottom:584.326080pt;}
.y18_c00216{bottom:592.400000pt;}
.y17_c00216{bottom:615.600000pt;}
.y16_c00216{bottom:634.320000pt;}
.y15_c00216{bottom:655.200000pt;}
.y14_c00216{bottom:676.000000pt;}
.y13_c00216{bottom:694.800000pt;}
.y12_c00216{bottom:713.200000pt;}
.y11_c00216{bottom:737.359760pt;}
.y10_c00216{bottom:743.040000pt;}
.ye_c00216{bottom:753.360000pt;}
.yf_c00216{bottom:759.519760pt;}
.yd_c00216{bottom:793.760000pt;}
.yc_c00216{bottom:821.360000pt;}
.yb_c00216{bottom:848.960000pt;}
.ya_c00216{bottom:876.560000pt;}
.y9_c00216{bottom:904.160000pt;}
.y8_c00216{bottom:931.760000pt;}
.y7_c00216{bottom:959.360000pt;}
.y6_c00216{bottom:986.960000pt;}
.y5_c00216{bottom:1005.360000pt;}
.y4_c00216{bottom:1023.040000pt;}
.y3_c00216{bottom:1036.804000pt;}
.y2_c00216{bottom:1050.640000pt;}
.y1_c00216{bottom:1064.400000pt;}
.h3_c00216{height:47.085938pt;}
.h2_c00216{height:47.109375pt;}
.h4_c00216{height:62.812500pt;}
.h6_c00216{height:74.642344pt;}
.h9_c00216{height:77.471563pt;}
.hb_c00216{height:95.108180pt;}
.h7_c00216{height:101.192424pt;}
.h8_c00216{height:126.813460pt;}
.ha_c00216{height:128.046282pt;}
.h5_c00216{height:148.552424pt;}
.h0_c00216{height:1122.560000pt;}
.h1_c00216{height:1122.666667pt;}
.w0_c00216{width:793.840000pt;}
.w1_c00216{width:794.000000pt;}
.x0_c00216{left:0.000000pt;}
.x3_c00216{left:113.440000pt;}
.x8_c00216{left:146.806880pt;}
.x7_c00216{left:151.998400pt;}
.x4_c00216{left:315.840000pt;}
.x5_c00216{left:366.320000pt;}
.x2_c00216{left:377.920000pt;}
.x6_c00216{left:394.084800pt;}
.x1_c00216{left:396.960000pt;}
.x9_c00216{left:656.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_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_1bf59262af1bdfe2d441edf1.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_4d322a3eb2311de44a0cd4b9.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_3a37602c0f8b212c1098220f.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_d025a0ec8fe06f22e4910225.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.297026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297026,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.297028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297028,0.000000,0.000000,0.250000,0,0);}
.v2_c00217{vertical-align:-83.520000px;}
.v1_c00217{vertical-align:-61.938000px;}
.v4_c00217{vertical-align:-3.072928px;}
.v0_c00217{vertical-align:0.000000px;}
.v3_c00217{vertical-align:3.072928px;}
.ls13_c00217{letter-spacing:-1.834584px;}
.ls1d_c00217{letter-spacing:-1.238344px;}
.ls1a_c00217{letter-spacing:-1.174133px;}
.ls1e_c00217{letter-spacing:-1.009021px;}
.ls18_c00217{letter-spacing:-0.342455px;}
.ls17_c00217{letter-spacing:-0.146767px;}
.ls11_c00217{letter-spacing:-0.144000px;}
.ls1c_c00217{letter-spacing:-0.137594px;}
.ls12_c00217{letter-spacing:-0.120240px;}
.ls10_c00217{letter-spacing:-0.072000px;}
.lsf_c00217{letter-spacing:0.000000px;}
.ls3_c00217{letter-spacing:0.072000px;}
.ls2_c00217{letter-spacing:0.144000px;}
.ls16_c00217{letter-spacing:0.195689px;}
.lsd_c00217{letter-spacing:0.293533px;}
.ls19_c00217{letter-spacing:0.929522px;}
.lse_c00217{letter-spacing:0.963157px;}
.ls15_c00217{letter-spacing:1.223055px;}
.ls14_c00217{letter-spacing:1.271977px;}
.ls1b_c00217{letter-spacing:1.418744px;}
.lsa_c00217{letter-spacing:280.095112px;}
.ls8_c00217{letter-spacing:286.240969px;}
.ls9_c00217{letter-spacing:301.513880px;}
.ls6_c00217{letter-spacing:307.613872px;}
.lsc_c00217{letter-spacing:316.786792px;}
.ls4_c00217{letter-spacing:322.932649px;}
.ls5_c00217{letter-spacing:332.105569px;}
.lsb_c00217{letter-spacing:338.205560px;}
.ls7_c00217{letter-spacing:353.478472px;}
.ls0_c00217{letter-spacing:1144.260000px;}
.ls1_c00217{letter-spacing:2082.240000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00217{word-spacing:-17.856000px;}
.ws1_c00217{word-spacing:-14.909760px;}
.ws10_c00217{word-spacing:-12.475161px;}
.wsf_c00217{word-spacing:-11.328556px;}
.ws11_c00217{word-spacing:-11.252106px;}
.wsd_c00217{word-spacing:-10.713962px;}
.ws12_c00217{word-spacing:-10.227806px;}
.wse_c00217{word-spacing:-9.882284px;}
.ws14_c00217{word-spacing:-9.356378px;}
.ws13_c00217{word-spacing:-9.127055px;}
.ws4_c00217{word-spacing:-8.530816px;}
.ws26_c00217{word-spacing:-1.271977px;}
.ws1c_c00217{word-spacing:-1.223055px;}
.ws19_c00217{word-spacing:-1.192480px;}
.ws25_c00217{word-spacing:-0.929522px;}
.ws23_c00217{word-spacing:-0.293533px;}
.ws1d_c00217{word-spacing:-0.195689px;}
.ws28_c00217{word-spacing:-0.183458px;}
.ws16_c00217{word-spacing:-0.162000px;}
.ws1b_c00217{word-spacing:-0.097844px;}
.ws18_c00217{word-spacing:-0.072000px;}
.ws20_c00217{word-spacing:-0.048922px;}
.ws15_c00217{word-spacing:0.000000px;}
.ws17_c00217{word-spacing:0.072000px;}
.ws1f_c00217{word-spacing:0.146767px;}
.ws24_c00217{word-spacing:0.342455px;}
.ws1e_c00217{word-spacing:0.880600px;}
.ws27_c00217{word-spacing:1.174133px;}
.ws21_c00217{word-spacing:1.320899px;}
.ws22_c00217{word-spacing:1.516588px;}
.ws1a_c00217{word-spacing:1.834584px;}
.wsc_c00217{word-spacing:94.981000px;}
.ws2_c00217{word-spacing:94.994760px;}
.ws8_c00217{word-spacing:94.999346px;}
.ws9_c00217{word-spacing:95.003932px;}
.ws7_c00217{word-spacing:143.891010px;}
.ws6_c00217{word-spacing:143.918528px;}
.ws5_c00217{word-spacing:143.923115px;}
.ws3_c00217{word-spacing:143.941461px;}
.wsa_c00217{word-spacing:144.257926px;}
.wsb_c00217{word-spacing:171.776686px;}
._7_c00217{margin-left:-259.997244px;}
._6_c00217{margin-left:-211.045957px;}
._11_c00217{margin-left:-2.592903px;}
._1_c00217{margin-left:-1.231200px;}
._0_c00217{width:1.080000px;}
._2_c00217{width:2.508794px;}
._9_c00217{width:3.650822px;}
._b_c00217{width:131.470876px;}
._e_c00217{width:134.131023px;}
._8_c00217{width:137.515830px;}
._a_c00217{width:152.788742px;}
._c_c00217{width:158.888734px;}
._4_c00217{width:167.736015px;}
._3_c00217{width:174.207510px;}
._5_c00217{width:180.307502px;}
._10_c00217{width:186.971628px;}
._f_c00217{width:189.108919px;}
._d_c00217{width:202.290405px;}
.fc0_c00217{color:rgb(0,0,0);}
.fs3_c00217{font-size:45.864600px;}
.fs4_c00217{font-size:48.922200px;}
.fs0_c00217{font-size:54.000000px;}
.fs2_c00217{font-size:60.120000px;}
.fs1_c00217{font-size:72.000000px;}
.y0_c00217{bottom:0.000000px;}
.y1b_c00217{bottom:3.057450px;}
.y18_c00217{bottom:4.586400px;}
.y2a_c00217{bottom:4.612534px;}
.y56_c00217{bottom:10.700700px;}
.y2e_c00217{bottom:11.465100px;}
.y30_c00217{bottom:11.465250px;}
.y36_c00217{bottom:11.465400px;}
.y3e_c00217{bottom:11.465550px;}
.y44_c00217{bottom:11.465700px;}
.y3c_c00217{bottom:11.465850px;}
.y42_c00217{bottom:11.466000px;}
.y55_c00217{bottom:11.466150px;}
.y3a_c00217{bottom:11.466300px;}
.y4f_c00217{bottom:11.466412px;}
.y32_c00217{bottom:11.466450px;}
.y38_c00217{bottom:11.466600px;}
.y40_c00217{bottom:11.466750px;}
.y2c_c00217{bottom:11.466900px;}
.y57_c00217{bottom:11.467200px;}
.y46_c00217{bottom:11.467350px;}
.y51_c00217{bottom:11.478643px;}
.y34_c00217{bottom:12.230550px;}
.y29_c00217{bottom:19.896912px;}
.y4e_c00217{bottom:27.512894px;}
.y4a_c00217{bottom:27.519056px;}
.y50_c00217{bottom:27.525125px;}
.y54_c00217{bottom:35.169368px;}
.y28_c00217{bottom:35.949522px;}
.y4d_c00217{bottom:43.571606px;}
.y52_c00217{bottom:43.571850px;}
.y49_c00217{bottom:43.577768px;}
.y53_c00217{bottom:51.215850px;}
.y27_c00217{bottom:51.233900px;}
.y58_c00217{bottom:57.330000px;}
.y48_c00217{bottom:59.624250px;}
.y4c_c00217{bottom:59.630318px;}
.y26_c00217{bottom:67.286510px;}
.y4b_c00217{bottom:75.676800px;}
.y25_c00217{bottom:82.570888px;}
.y24_c00217{bottom:98.623498px;}
.y23_c00217{bottom:113.907876px;}
.y22_c00217{bottom:129.960486px;}
.y7_c00217{bottom:131.850000px;}
.y21_c00217{bottom:145.244864px;}
.y6_c00217{bottom:148.500000px;}
.y8_c00217{bottom:149.254500px;}
.y45_c00217{bottom:150.018000px;}
.y20_c00217{bottom:161.297474px;}
.y1f_c00217{bottom:176.581852px;}
.y35_c00217{bottom:181.360500px;}
.y1e_c00217{bottom:192.634462px;}
.y1d_c00217{bottom:207.918840px;}
.y37_c00217{bottom:212.700000px;}
.y1c_c00217{bottom:223.971450px;}
.y19_c00217{bottom:239.259450px;}
.y39_c00217{bottom:244.041000px;}
.y16_c00217{bottom:255.330110px;}
.y15_c00217{bottom:270.614488px;}
.y3b_c00217{bottom:275.382000px;}
.y14_c00217{bottom:286.667098px;}
.y13_c00217{bottom:301.951476px;}
.y3d_c00217{bottom:306.723000px;}
.y12_c00217{bottom:318.004086px;}
.y11_c00217{bottom:333.288464px;}
.y3f_c00217{bottom:338.062500px;}
.y10_c00217{bottom:349.341074px;}
.yf_c00217{bottom:363.868686px;}
.y41_c00217{bottom:369.403500px;}
.ye_c00217{bottom:379.921296px;}
.y1a_c00217{bottom:385.456500px;}
.yd_c00217{bottom:395.205674px;}
.y17_c00217{bottom:400.744500px;}
.yc_c00217{bottom:411.258284px;}
.yb_c00217{bottom:426.542662px;}
.y43_c00217{bottom:432.085500px;}
.ya_c00217{bottom:442.595272px;}
.y9_c00217{bottom:457.879650px;}
.y2b_c00217{bottom:463.425000px;}
.y2d_c00217{bottom:494.767500px;}
.y2f_c00217{bottom:525.343500px;}
.y31_c00217{bottom:556.683000px;}
.y33_c00217{bottom:588.024000px;}
.y47_c00217{bottom:620.128500px;}
.y5_c00217{bottom:719.640000px;}
.y4_c00217{bottom:761.220000px;}
.y3_c00217{bottom:781.105500px;}
.y2_c00217{bottom:796.590000px;}
.y1_c00217{bottom:827.640000px;}
.ha_c00217{height:14.524500px;}
.h9_c00217{height:15.288000px;}
.hc_c00217{height:29.812500px;}
.hb_c00217{height:30.576000px;}
.he_c00217{height:30.577500px;}
.hd_c00217{height:31.341000px;}
.h8_c00217{height:34.107317px;}
.h12_c00217{height:36.381109px;}
.h7_c00217{height:37.180245px;}
.h11_c00217{height:37.824858px;}
.h10_c00217{height:40.346482px;}
.h2_c00217{height:52.998047px;}
.h5_c00217{height:70.628906px;}
.h3_c00217{height:70.664062px;}
.h4_c00217{height:72.562500px;}
.hf_c00217{height:94.786500px;}
.h6_c00217{height:565.660500px;}
.h0_c00217{height:893.070000px;}
.h1_c00217{height:893.250000px;}
.w8_c00217{width:23.613000px;}
.w4_c00217{width:75.379500px;}
.w3_c00217{width:76.288500px;}
.w5_c00217{width:82.647000px;}
.wa_c00217{width:83.554500px;}
.wd_c00217{width:88.095000px;}
.wb_c00217{width:89.911500px;}
.w6_c00217{width:89.913000px;}
.wc_c00217{width:91.728000px;}
.w7_c00217{width:93.546000px;}
.w9_c00217{width:131.688000px;}
.w2_c00217{width:1012.642500px;}
.w0_c00217{width:1262.880000px;}
.w1_c00217{width:1263.000000px;}
.x0_c00217{left:0.000000px;}
.x19_c00217{left:1.816444px;}
.x11_c00217{left:3.640331px;}
.x22_c00217{left:5.442694px;}
.x12_c00217{left:7.273144px;}
.x16_c00217{left:9.983625px;}
.x1b_c00217{left:11.807400px;}
.x10_c00217{left:13.623300px;}
.x1e_c00217{left:16.347956px;}
.x14_c00217{left:18.164700px;}
.x24_c00217{left:20.889900px;}
.x17_c00217{left:23.599406px;}
.x1a_c00217{left:25.415194px;}
.xc_c00217{left:29.063250px;}
.xd_c00217{left:31.787850px;}
.xe_c00217{left:35.420700px;}
.x2_c00217{left:106.380000px;}
.x3_c00217{left:107.460000px;}
.x6_c00217{left:125.109000px;}
.x1c_c00217{left:149.629500px;}
.x8_c00217{left:179.028075px;}
.x7_c00217{left:188.904750px;}
.x9_c00217{left:195.375675px;}
.x1d_c00217{left:282.226500px;}
.x1f_c00217{left:358.515000px;}
.xa_c00217{left:364.187550px;}
.x20_c00217{left:442.978500px;}
.x21_c00217{left:533.797500px;}
.xf_c00217{left:626.434500px;}
.x1_c00217{left:631.440000px;}
.x13_c00217{left:702.723000px;}
.x15_c00217{left:786.277500px;}
.x18_c00217{left:877.098000px;}
.x23_c00217{left:971.550000px;}
.xb_c00217{left:1060.554000px;}
.x5_c00217{left:1087.290000px;}
.x4_c00217{left:1138.680000px;}
@media print{
.v2_c00217{vertical-align:-74.240000pt;}
.v1_c00217{vertical-align:-55.056000pt;}
.v4_c00217{vertical-align:-2.731492pt;}
.v0_c00217{vertical-align:0.000000pt;}
.v3_c00217{vertical-align:2.731492pt;}
.ls13_c00217{letter-spacing:-1.630741pt;}
.ls1d_c00217{letter-spacing:-1.100750pt;}
.ls1a_c00217{letter-spacing:-1.043674pt;}
.ls1e_c00217{letter-spacing:-0.896908pt;}
.ls18_c00217{letter-spacing:-0.304405pt;}
.ls17_c00217{letter-spacing:-0.130459pt;}
.ls11_c00217{letter-spacing:-0.128000pt;}
.ls1c_c00217{letter-spacing:-0.122306pt;}
.ls12_c00217{letter-spacing:-0.106880pt;}
.ls10_c00217{letter-spacing:-0.064000pt;}
.lsf_c00217{letter-spacing:0.000000pt;}
.ls3_c00217{letter-spacing:0.064000pt;}
.ls2_c00217{letter-spacing:0.128000pt;}
.ls16_c00217{letter-spacing:0.173946pt;}
.lsd_c00217{letter-spacing:0.260918pt;}
.ls19_c00217{letter-spacing:0.826242pt;}
.lse_c00217{letter-spacing:0.856139pt;}
.ls15_c00217{letter-spacing:1.087160pt;}
.ls14_c00217{letter-spacing:1.130646pt;}
.ls1b_c00217{letter-spacing:1.261106pt;}
.lsa_c00217{letter-spacing:248.973433pt;}
.ls8_c00217{letter-spacing:254.436417pt;}
.ls9_c00217{letter-spacing:268.012338pt;}
.ls6_c00217{letter-spacing:273.434553pt;}
.lsc_c00217{letter-spacing:281.588260pt;}
.ls4_c00217{letter-spacing:287.051243pt;}
.ls5_c00217{letter-spacing:295.204950pt;}
.lsb_c00217{letter-spacing:300.627165pt;}
.ls7_c00217{letter-spacing:314.203086pt;}
.ls0_c00217{letter-spacing:1017.120000pt;}
.ls1_c00217{letter-spacing:1850.880000pt;}
.ws0_c00217{word-spacing:-15.872000pt;}
.ws1_c00217{word-spacing:-13.253120pt;}
.ws10_c00217{word-spacing:-11.089032pt;}
.wsf_c00217{word-spacing:-10.069828pt;}
.ws11_c00217{word-spacing:-10.001872pt;}
.wsd_c00217{word-spacing:-9.523522pt;}
.ws12_c00217{word-spacing:-9.091383pt;}
.wse_c00217{word-spacing:-8.784253pt;}
.ws14_c00217{word-spacing:-8.316781pt;}
.ws13_c00217{word-spacing:-8.112938pt;}
.ws4_c00217{word-spacing:-7.582947pt;}
.ws26_c00217{word-spacing:-1.130646pt;}
.ws1c_c00217{word-spacing:-1.087160pt;}
.ws19_c00217{word-spacing:-1.059982pt;}
.ws25_c00217{word-spacing:-0.826242pt;}
.ws23_c00217{word-spacing:-0.260918pt;}
.ws1d_c00217{word-spacing:-0.173946pt;}
.ws28_c00217{word-spacing:-0.163074pt;}
.ws16_c00217{word-spacing:-0.144000pt;}
.ws1b_c00217{word-spacing:-0.086973pt;}
.ws18_c00217{word-spacing:-0.064000pt;}
.ws20_c00217{word-spacing:-0.043486pt;}
.ws15_c00217{word-spacing:0.000000pt;}
.ws17_c00217{word-spacing:0.064000pt;}
.ws1f_c00217{word-spacing:0.130459pt;}
.ws24_c00217{word-spacing:0.304405pt;}
.ws1e_c00217{word-spacing:0.782755pt;}
.ws27_c00217{word-spacing:1.043674pt;}
.ws21_c00217{word-spacing:1.174133pt;}
.ws22_c00217{word-spacing:1.348078pt;}
.ws1a_c00217{word-spacing:1.630741pt;}
.wsc_c00217{word-spacing:84.427556pt;}
.ws2_c00217{word-spacing:84.439786pt;}
.ws8_c00217{word-spacing:84.443863pt;}
.ws9_c00217{word-spacing:84.447940pt;}
.ws7_c00217{word-spacing:127.903120pt;}
.ws6_c00217{word-spacing:127.927581pt;}
.ws5_c00217{word-spacing:127.931658pt;}
.ws3_c00217{word-spacing:127.947965pt;}
.wsa_c00217{word-spacing:128.229268pt;}
.wsb_c00217{word-spacing:152.690388pt;}
._7_c00217{margin-left:-231.108662pt;}
._6_c00217{margin-left:-187.596406pt;}
._11_c00217{margin-left:-2.304802pt;}
._1_c00217{margin-left:-1.094400pt;}
._0_c00217{width:0.960000pt;}
._2_c00217{width:2.230039pt;}
._9_c00217{width:3.245175pt;}
._b_c00217{width:116.863001pt;}
._e_c00217{width:119.227576pt;}
._8_c00217{width:122.236293pt;}
._a_c00217{width:135.812215pt;}
._c_c00217{width:141.234430pt;}
._4_c00217{width:149.098680pt;}
._3_c00217{width:154.851120pt;}
._5_c00217{width:160.273335pt;}
._10_c00217{width:166.197003pt;}
._f_c00217{width:168.096817pt;}
._d_c00217{width:179.813693pt;}
.fs3_c00217{font-size:40.768533pt;}
.fs4_c00217{font-size:43.486400pt;}
.fs0_c00217{font-size:48.000000pt;}
.fs2_c00217{font-size:53.440000pt;}
.fs1_c00217{font-size:64.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y1b_c00217{bottom:2.717733pt;}
.y18_c00217{bottom:4.076800pt;}
.y2a_c00217{bottom:4.100031pt;}
.y56_c00217{bottom:9.511733pt;}
.y2e_c00217{bottom:10.191200pt;}
.y30_c00217{bottom:10.191333pt;}
.y36_c00217{bottom:10.191467pt;}
.y3e_c00217{bottom:10.191600pt;}
.y44_c00217{bottom:10.191733pt;}
.y3c_c00217{bottom:10.191867pt;}
.y42_c00217{bottom:10.192000pt;}
.y55_c00217{bottom:10.192133pt;}
.y3a_c00217{bottom:10.192267pt;}
.y4f_c00217{bottom:10.192367pt;}
.y32_c00217{bottom:10.192400pt;}
.y38_c00217{bottom:10.192533pt;}
.y40_c00217{bottom:10.192667pt;}
.y2c_c00217{bottom:10.192800pt;}
.y57_c00217{bottom:10.193067pt;}
.y46_c00217{bottom:10.193200pt;}
.y51_c00217{bottom:10.203238pt;}
.y34_c00217{bottom:10.871600pt;}
.y29_c00217{bottom:17.686144pt;}
.y4e_c00217{bottom:24.455906pt;}
.y4a_c00217{bottom:24.461383pt;}
.y50_c00217{bottom:24.466777pt;}
.y54_c00217{bottom:31.261661pt;}
.y28_c00217{bottom:31.955131pt;}
.y4d_c00217{bottom:38.730317pt;}
.y52_c00217{bottom:38.730533pt;}
.y49_c00217{bottom:38.735794pt;}
.y53_c00217{bottom:45.525200pt;}
.y27_c00217{bottom:45.541245pt;}
.y58_c00217{bottom:50.960000pt;}
.y48_c00217{bottom:52.999333pt;}
.y4c_c00217{bottom:53.004727pt;}
.y26_c00217{bottom:59.810231pt;}
.y4b_c00217{bottom:67.268267pt;}
.y25_c00217{bottom:73.396345pt;}
.y24_c00217{bottom:87.665332pt;}
.y23_c00217{bottom:101.251445pt;}
.y22_c00217{bottom:115.520432pt;}
.y7_c00217{bottom:117.200000pt;}
.y21_c00217{bottom:129.106546pt;}
.y6_c00217{bottom:132.000000pt;}
.y8_c00217{bottom:132.670667pt;}
.y45_c00217{bottom:133.349333pt;}
.y20_c00217{bottom:143.375533pt;}
.y1f_c00217{bottom:156.961646pt;}
.y35_c00217{bottom:161.209333pt;}
.y1e_c00217{bottom:171.230633pt;}
.y1d_c00217{bottom:184.816747pt;}
.y37_c00217{bottom:189.066667pt;}
.y1c_c00217{bottom:199.085733pt;}
.y19_c00217{bottom:212.675067pt;}
.y39_c00217{bottom:216.925333pt;}
.y16_c00217{bottom:226.960098pt;}
.y15_c00217{bottom:240.546212pt;}
.y3b_c00217{bottom:244.784000pt;}
.y14_c00217{bottom:254.815198pt;}
.y13_c00217{bottom:268.401312pt;}
.y3d_c00217{bottom:272.642667pt;}
.y12_c00217{bottom:282.670299pt;}
.y11_c00217{bottom:296.256413pt;}
.y3f_c00217{bottom:300.500000pt;}
.y10_c00217{bottom:310.525399pt;}
.yf_c00217{bottom:323.438832pt;}
.y41_c00217{bottom:328.358667pt;}
.ye_c00217{bottom:337.707819pt;}
.y1a_c00217{bottom:342.628000pt;}
.yd_c00217{bottom:351.293933pt;}
.y17_c00217{bottom:356.217333pt;}
.yc_c00217{bottom:365.562919pt;}
.yb_c00217{bottom:379.149033pt;}
.y43_c00217{bottom:384.076000pt;}
.ya_c00217{bottom:393.418020pt;}
.y9_c00217{bottom:407.004133pt;}
.y2b_c00217{bottom:411.933333pt;}
.y2d_c00217{bottom:439.793333pt;}
.y2f_c00217{bottom:466.972000pt;}
.y31_c00217{bottom:494.829333pt;}
.y33_c00217{bottom:522.688000pt;}
.y47_c00217{bottom:551.225333pt;}
.y5_c00217{bottom:639.680000pt;}
.y4_c00217{bottom:676.640000pt;}
.y3_c00217{bottom:694.316000pt;}
.y2_c00217{bottom:708.080000pt;}
.y1_c00217{bottom:735.680000pt;}
.ha_c00217{height:12.910667pt;}
.h9_c00217{height:13.589333pt;}
.hc_c00217{height:26.500000pt;}
.hb_c00217{height:27.178667pt;}
.he_c00217{height:27.180000pt;}
.hd_c00217{height:27.858667pt;}
.h8_c00217{height:30.317615pt;}
.h12_c00217{height:32.338763pt;}
.h7_c00217{height:33.049107pt;}
.h11_c00217{height:33.622096pt;}
.h10_c00217{height:35.863540pt;}
.h2_c00217{height:47.109375pt;}
.h5_c00217{height:62.781250pt;}
.h3_c00217{height:62.812500pt;}
.h4_c00217{height:64.500000pt;}
.hf_c00217{height:84.254667pt;}
.h6_c00217{height:502.809333pt;}
.h0_c00217{height:793.840000pt;}
.h1_c00217{height:794.000000pt;}
.w8_c00217{width:20.989333pt;}
.w4_c00217{width:67.004000pt;}
.w3_c00217{width:67.812000pt;}
.w5_c00217{width:73.464000pt;}
.wa_c00217{width:74.270667pt;}
.wd_c00217{width:78.306667pt;}
.wb_c00217{width:79.921333pt;}
.w6_c00217{width:79.922667pt;}
.wc_c00217{width:81.536000pt;}
.w7_c00217{width:83.152000pt;}
.w9_c00217{width:117.056000pt;}
.w2_c00217{width:900.126667pt;}
.w0_c00217{width:1122.560000pt;}
.w1_c00217{width:1122.666667pt;}
.x0_c00217{left:0.000000pt;}
.x19_c00217{left:1.614617pt;}
.x11_c00217{left:3.235850pt;}
.x22_c00217{left:4.837950pt;}
.x12_c00217{left:6.465017pt;}
.x16_c00217{left:8.874333pt;}
.x1b_c00217{left:10.495467pt;}
.x10_c00217{left:12.109600pt;}
.x1e_c00217{left:14.531517pt;}
.x14_c00217{left:16.146400pt;}
.x24_c00217{left:18.568800pt;}
.x17_c00217{left:20.977250pt;}
.x1a_c00217{left:22.591283pt;}
.xc_c00217{left:25.834000pt;}
.xd_c00217{left:28.255867pt;}
.xe_c00217{left:31.485067pt;}
.x2_c00217{left:94.560000pt;}
.x3_c00217{left:95.520000pt;}
.x6_c00217{left:111.208000pt;}
.x1c_c00217{left:133.004000pt;}
.x8_c00217{left:159.136067pt;}
.x7_c00217{left:167.915333pt;}
.x9_c00217{left:173.667267pt;}
.x1d_c00217{left:250.868000pt;}
.x1f_c00217{left:318.680000pt;}
.xa_c00217{left:323.722267pt;}
.x20_c00217{left:393.758667pt;}
.x21_c00217{left:474.486667pt;}
.xf_c00217{left:556.830667pt;}
.x1_c00217{left:561.280000pt;}
.x13_c00217{left:624.642667pt;}
.x15_c00217{left:698.913333pt;}
.x18_c00217{left:779.642667pt;}
.x23_c00217{left:863.600000pt;}
.xb_c00217{left:942.714667pt;}
.x5_c00217{left:966.480000pt;}
.x4_c00217{left:1012.160000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f1734944249abbf2177e358.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.284668;font-style:normal;font-weight:normal;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_f02a0b000d54b9e1205078e1.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_2f8a0d2bb10543174629bb03.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_97892713e32d906f4091fad0.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00218{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250092,0.000000,0.000000,0.250000,0,0);}
.v2_c00218{vertical-align:-83.520000px;}
.v1_c00218{vertical-align:-61.920000px;}
.v0_c00218{vertical-align:0.000000px;}
.lsd_c00218{letter-spacing:-2.273808px;}
.ls10_c00218{letter-spacing:-1.534820px;}
.ls11_c00218{letter-spacing:-0.738988px;}
.lse_c00218{letter-spacing:-0.424448px;}
.lsf_c00218{letter-spacing:-0.170536px;}
.lsc_c00218{letter-spacing:-0.120240px;}
.lsa_c00218{letter-spacing:-0.108000px;}
.lsb_c00218{letter-spacing:0.000000px;}
.ls12_c00218{letter-spacing:1.193749px;}
.ls13_c00218{letter-spacing:1.705356px;}
.ls9_c00218{letter-spacing:332.032813px;}
.ls4_c00218{letter-spacing:339.593225px;}
.ls2_c00218{letter-spacing:358.522676px;}
.ls6_c00218{letter-spacing:366.139933px;}
.ls7_c00218{letter-spacing:385.069385px;}
.ls5_c00218{letter-spacing:392.629796px;}
.ls3_c00218{letter-spacing:411.616093px;}
.ls8_c00218{letter-spacing:438.105956px;}
.ls0_c00218{letter-spacing:725.580000px;}
.ls1_c00218{letter-spacing:2082.240000px;}
.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:-14.909760px;}
.ws10_c00218{word-spacing:-14.552371px;}
.wsf_c00218{word-spacing:-14.040764px;}
.wsb_c00218{word-spacing:-13.279153px;}
.wsc_c00218{word-spacing:-12.676480px;}
.wse_c00218{word-spacing:-12.108028px;}
.wsd_c00218{word-spacing:-11.312195px;}
.ws3_c00218{word-spacing:-10.573207px;}
.ws14_c00218{word-spacing:-1.477975px;}
.ws11_c00218{word-spacing:0.000000px;}
.ws13_c00218{word-spacing:0.162000px;}
.ws12_c00218{word-spacing:0.270000px;}
.ws15_c00218{word-spacing:2.273808px;}
.ws8_c00218{word-spacing:117.686618px;}
.ws6_c00218{word-spacing:117.720725px;}
.ws1_c00218{word-spacing:117.737778px;}
.ws4_c00218{word-spacing:117.743463px;}
.ws9_c00218{word-spacing:117.749147px;}
.ws2_c00218{word-spacing:178.340446px;}
.ws5_c00218{word-spacing:178.374553px;}
.ws7_c00218{word-spacing:178.385922px;}
.wsa_c00218{word-spacing:178.402976px;}
._7_c00218{margin-left:-322.238385px;}
._6_c00218{margin-left:-261.573188px;}
._11_c00218{margin-left:-2.354963px;}
._1_c00218{margin-left:-1.058400px;}
._0_c00218{width:1.225800px;}
._2_c00218{width:3.109432px;}
._b_c00218{width:4.541931px;}
._10_c00218{width:143.886570px;}
._8_c00218{width:151.577726px;}
._9_c00218{width:166.931614px;}
._3_c00218{width:170.438963px;}
._d_c00218{width:178.067589px;}
._c_c00218{width:196.928826px;}
._4_c00218{width:207.894265px;}
._5_c00218{width:223.475535px;}
._a_c00218{width:231.035946px;}
._f_c00218{width:234.497819px;}
._e_c00218{width:250.727124px;}
.fc0_c00218{color:rgb(0,0,0);}
.fs0_c00218{font-size:54.000000px;}
.fs3_c00218{font-size:56.845200px;}
.fs2_c00218{font-size:60.120000px;}
.fs4_c00218{font-size:60.635400px;}
.fs1_c00218{font-size:72.000000px;}
.y0_c00218{bottom:0.000000px;}
.y25_c00218{bottom:5.757377px;}
.y2b_c00218{bottom:14.210550px;}
.y3a_c00218{bottom:14.210850px;}
.y29_c00218{bottom:14.211000px;}
.y27_c00218{bottom:14.211300px;}
.y33_c00218{bottom:14.211600px;}
.y2d_c00218{bottom:14.211750px;}
.y31_c00218{bottom:14.212050px;}
.y3c_c00218{bottom:14.212200px;}
.y24_c00218{bottom:24.701039px;}
.y23_c00218{bottom:44.596859px;}
.y3d_c00218{bottom:57.330000px;}
.y22_c00218{bottom:63.540522px;}
.y21_c00218{bottom:83.436342px;}
.y20_c00218{bottom:102.380005px;}
.y1f_c00218{bottom:122.275825px;}
.y6_c00218{bottom:138.060000px;}
.y1e_c00218{bottom:141.219488px;}
.y5_c00218{bottom:151.920000px;}
.y7_c00218{bottom:152.767500px;}
.y32_c00218{bottom:153.714000px;}
.y1d_c00218{bottom:161.115308px;}
.y1c_c00218{bottom:180.058971px;}
.y30_c00218{bottom:192.558000px;}
.y1b_c00218{bottom:199.954791px;}
.y1a_c00218{bottom:218.898454px;}
.y2f_c00218{bottom:231.403500px;}
.y19_c00218{bottom:238.794274px;}
.y18_c00218{bottom:257.737937px;}
.y2e_c00218{bottom:270.247500px;}
.y17_c00218{bottom:277.633757px;}
.y16_c00218{bottom:296.577420px;}
.y2c_c00218{bottom:309.091500px;}
.y15_c00218{bottom:316.473240px;}
.y14_c00218{bottom:335.416903px;}
.y2a_c00218{bottom:347.937000px;}
.y13_c00218{bottom:355.312723px;}
.y12_c00218{bottom:374.256386px;}
.y28_c00218{bottom:386.781000px;}
.y11_c00218{bottom:394.152206px;}
.y10_c00218{bottom:413.095868px;}
.y26_c00218{bottom:425.625000px;}
.yf_c00218{bottom:432.991688px;}
.ye_c00218{bottom:451.935351px;}
.y34_c00218{bottom:464.469000px;}
.yd_c00218{bottom:471.831171px;}
.yc_c00218{bottom:490.774834px;}
.y3b_c00218{bottom:503.313000px;}
.yb_c00218{bottom:510.670654px;}
.ya_c00218{bottom:529.614317px;}
.y39_c00218{bottom:542.158500px;}
.y9_c00218{bottom:549.510137px;}
.y8_c00218{bottom:568.453800px;}
.y38_c00218{bottom:581.002500px;}
.y37_c00218{bottom:619.846500px;}
.y36_c00218{bottom:658.690500px;}
.y35_c00218{bottom:697.536000px;}
.y4_c00218{bottom:761.220000px;}
.y3_c00218{bottom:781.110000px;}
.y2_c00218{bottom:796.594500px;}
.y1_c00218{bottom:827.640000px;}
.ha_c00218{height:37.896000px;}
.h8_c00218{height:37.897500px;}
.h7_c00218{height:42.273066px;}
.h9_c00218{height:45.091657px;}
.hb_c00218{height:46.880636px;}
.h2_c00218{height:52.998047px;}
.h5_c00218{height:60.589687px;}
.h3_c00218{height:70.664062px;}
.h4_c00218{height:72.562500px;}
.h6_c00218{height:582.666000px;}
.h0_c00218{height:893.070000px;}
.h1_c00218{height:893.250000px;}
.w4_c00218{width:24.642000px;}
.w6_c00218{width:79.614000px;}
.w3_c00218{width:91.933500px;}
.w5_c00218{width:137.427000px;}
.w2_c00218{width:1048.236000px;}
.w0_c00218{width:1262.880000px;}
.w1_c00218{width:1263.000000px;}
.x0_c00218{left:0.000000px;}
.x11_c00218{left:1.896750px;}
.xf_c00218{left:5.686500px;}
.xe_c00218{left:16.112400px;}
.xd_c00218{left:18.007950px;}
.x9_c00218{left:19.903500px;}
.xa_c00218{left:21.799050px;}
.xb_c00218{left:23.694750px;}
.xc_c00218{left:27.485700px;}
.x13_c00218{left:30.329250px;}
.x14_c00218{left:33.172500px;}
.x15_c00218{left:36.963600px;}
.x2_c00218{left:106.380000px;}
.x10_c00218{left:132.916500px;}
.x6_c00218{left:186.729785px;}
.x5_c00218{left:197.136300px;}
.x7_c00218{left:203.889161px;}
.x1_c00218{left:631.440000px;}
.x8_c00218{left:982.120500px;}
.x12_c00218{left:1075.002000px;}
.x4_c00218{left:1089.540000px;}
.x16_c00218{left:1129.590000px;}
.x3_c00218{left:1156.590000px;}
@media print{
.v2_c00218{vertical-align:-74.240000pt;}
.v1_c00218{vertical-align:-55.040000pt;}
.v0_c00218{vertical-align:0.000000pt;}
.lsd_c00218{letter-spacing:-2.021163pt;}
.ls10_c00218{letter-spacing:-1.364285pt;}
.ls11_c00218{letter-spacing:-0.656878pt;}
.lse_c00218{letter-spacing:-0.377287pt;}
.lsf_c00218{letter-spacing:-0.151587pt;}
.lsc_c00218{letter-spacing:-0.106880pt;}
.lsa_c00218{letter-spacing:-0.096000pt;}
.lsb_c00218{letter-spacing:0.000000pt;}
.ls12_c00218{letter-spacing:1.061110pt;}
.ls13_c00218{letter-spacing:1.515872pt;}
.ls9_c00218{letter-spacing:295.140278pt;}
.ls4_c00218{letter-spacing:301.860644pt;}
.ls2_c00218{letter-spacing:318.686823pt;}
.ls6_c00218{letter-spacing:325.457718pt;}
.ls7_c00218{letter-spacing:342.283898pt;}
.ls5_c00218{letter-spacing:349.004263pt;}
.ls3_c00218{letter-spacing:365.880972pt;}
.ls8_c00218{letter-spacing:389.427517pt;}
.ls0_c00218{letter-spacing:644.960000pt;}
.ls1_c00218{letter-spacing:1850.880000pt;}
.ws0_c00218{word-spacing:-13.253120pt;}
.ws10_c00218{word-spacing:-12.935441pt;}
.wsf_c00218{word-spacing:-12.480679pt;}
.wsb_c00218{word-spacing:-11.803691pt;}
.wsc_c00218{word-spacing:-11.267982pt;}
.wse_c00218{word-spacing:-10.762691pt;}
.wsd_c00218{word-spacing:-10.055284pt;}
.ws3_c00218{word-spacing:-9.398406pt;}
.ws14_c00218{word-spacing:-1.313756pt;}
.ws11_c00218{word-spacing:0.000000pt;}
.ws13_c00218{word-spacing:0.144000pt;}
.ws12_c00218{word-spacing:0.240000pt;}
.ws15_c00218{word-spacing:2.021163pt;}
.ws8_c00218{word-spacing:104.610327pt;}
.ws6_c00218{word-spacing:104.640644pt;}
.ws1_c00218{word-spacing:104.655803pt;}
.ws4_c00218{word-spacing:104.660856pt;}
.ws9_c00218{word-spacing:104.665909pt;}
.ws2_c00218{word-spacing:158.524841pt;}
.ws5_c00218{word-spacing:158.555158pt;}
.ws7_c00218{word-spacing:158.565264pt;}
.wsa_c00218{word-spacing:158.580423pt;}
._7_c00218{margin-left:-286.434120pt;}
._6_c00218{margin-left:-232.509500pt;}
._11_c00218{margin-left:-2.093301pt;}
._1_c00218{margin-left:-0.940800pt;}
._0_c00218{width:1.089600pt;}
._2_c00218{width:2.763940pt;}
._b_c00218{width:4.037272pt;}
._10_c00218{width:127.899174pt;}
._8_c00218{width:134.735756pt;}
._9_c00218{width:148.383657pt;}
._3_c00218{width:151.501301pt;}
._d_c00218{width:158.282301pt;}
._c_c00218{width:175.047846pt;}
._4_c00218{width:184.794903pt;}
._5_c00218{width:198.644920pt;}
._a_c00218{width:205.365286pt;}
._f_c00218{width:208.442506pt;}
._e_c00218{width:222.868554pt;}
.fs0_c00218{font-size:48.000000pt;}
.fs3_c00218{font-size:50.529067pt;}
.fs2_c00218{font-size:53.440000pt;}
.fs4_c00218{font-size:53.898133pt;}
.fs1_c00218{font-size:64.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y25_c00218{bottom:5.117668pt;}
.y2b_c00218{bottom:12.631600pt;}
.y3a_c00218{bottom:12.631867pt;}
.y29_c00218{bottom:12.632000pt;}
.y27_c00218{bottom:12.632267pt;}
.y33_c00218{bottom:12.632533pt;}
.y2d_c00218{bottom:12.632667pt;}
.y31_c00218{bottom:12.632933pt;}
.y3c_c00218{bottom:12.633067pt;}
.y24_c00218{bottom:21.956479pt;}
.y23_c00218{bottom:39.641653pt;}
.y3d_c00218{bottom:50.960000pt;}
.y22_c00218{bottom:56.480464pt;}
.y21_c00218{bottom:74.165638pt;}
.y20_c00218{bottom:91.004449pt;}
.y1f_c00218{bottom:108.689622pt;}
.y6_c00218{bottom:122.720000pt;}
.y1e_c00218{bottom:125.528434pt;}
.y5_c00218{bottom:135.040000pt;}
.y7_c00218{bottom:135.793333pt;}
.y32_c00218{bottom:136.634667pt;}
.y1d_c00218{bottom:143.213607pt;}
.y1c_c00218{bottom:160.052419pt;}
.y30_c00218{bottom:171.162667pt;}
.y1b_c00218{bottom:177.737592pt;}
.y1a_c00218{bottom:194.576403pt;}
.y2f_c00218{bottom:205.692000pt;}
.y19_c00218{bottom:212.261577pt;}
.y18_c00218{bottom:229.100388pt;}
.y2e_c00218{bottom:240.220000pt;}
.y17_c00218{bottom:246.785562pt;}
.y16_c00218{bottom:263.624373pt;}
.y2c_c00218{bottom:274.748000pt;}
.y15_c00218{bottom:281.309546pt;}
.y14_c00218{bottom:298.148358pt;}
.y2a_c00218{bottom:309.277333pt;}
.y13_c00218{bottom:315.833531pt;}
.y12_c00218{bottom:332.672343pt;}
.y28_c00218{bottom:343.805333pt;}
.y11_c00218{bottom:350.357516pt;}
.y10_c00218{bottom:367.196327pt;}
.y26_c00218{bottom:378.333333pt;}
.yf_c00218{bottom:384.881501pt;}
.ye_c00218{bottom:401.720312pt;}
.y34_c00218{bottom:412.861333pt;}
.yd_c00218{bottom:419.405486pt;}
.yc_c00218{bottom:436.244297pt;}
.y3b_c00218{bottom:447.389333pt;}
.yb_c00218{bottom:453.929470pt;}
.ya_c00218{bottom:470.768282pt;}
.y39_c00218{bottom:481.918667pt;}
.y9_c00218{bottom:488.453455pt;}
.y8_c00218{bottom:505.292267pt;}
.y38_c00218{bottom:516.446667pt;}
.y37_c00218{bottom:550.974667pt;}
.y36_c00218{bottom:585.502667pt;}
.y35_c00218{bottom:620.032000pt;}
.y4_c00218{bottom:676.640000pt;}
.y3_c00218{bottom:694.320000pt;}
.y2_c00218{bottom:708.084000pt;}
.y1_c00218{bottom:735.680000pt;}
.ha_c00218{height:33.685333pt;}
.h8_c00218{height:33.686667pt;}
.h7_c00218{height:37.576059pt;}
.h9_c00218{height:40.081473pt;}
.hb_c00218{height:41.671677pt;}
.h2_c00218{height:47.109375pt;}
.h5_c00218{height:53.857500pt;}
.h3_c00218{height:62.812500pt;}
.h4_c00218{height:64.500000pt;}
.h6_c00218{height:517.925333pt;}
.h0_c00218{height:793.840000pt;}
.h1_c00218{height:794.000000pt;}
.w4_c00218{width:21.904000pt;}
.w6_c00218{width:70.768000pt;}
.w3_c00218{width:81.718667pt;}
.w5_c00218{width:122.157333pt;}
.w2_c00218{width:931.765333pt;}
.w0_c00218{width:1122.560000pt;}
.w1_c00218{width:1122.666667pt;}
.x0_c00218{left:0.000000pt;}
.x11_c00218{left:1.686000pt;}
.xf_c00218{left:5.054667pt;}
.xe_c00218{left:14.322133pt;}
.xd_c00218{left:16.007067pt;}
.x9_c00218{left:17.692000pt;}
.xa_c00218{left:19.376933pt;}
.xb_c00218{left:21.062000pt;}
.xc_c00218{left:24.431733pt;}
.x13_c00218{left:26.959333pt;}
.x14_c00218{left:29.486667pt;}
.x15_c00218{left:32.856533pt;}
.x2_c00218{left:94.560000pt;}
.x10_c00218{left:118.148000pt;}
.x6_c00218{left:165.982031pt;}
.x5_c00218{left:175.232267pt;}
.x7_c00218{left:181.234810pt;}
.x1_c00218{left:561.280000pt;}
.x8_c00218{left:872.996000pt;}
.x12_c00218{left:955.557333pt;}
.x4_c00218{left:968.480000pt;}
.x16_c00218{left:1004.080000pt;}
.x3_c00218{left:1028.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_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_407579b28067779bf1d3f322.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_dcd96c6c47b139a2b93bf57b.woff2')format("woff");}.ff4_c00219{font-family:ff4_c00219;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00219;src:url('chunks/assets/font_096c7cb45f1800fc7320639c.woff2')format("woff");}.ff5_c00219{font-family:ff5_c00219;line-height:1.002930;font-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_c00219{transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243640,0.000000,0.000000,0.250000,0,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);}
.v1_c00219{vertical-align:-61.938000px;}
.v0_c00219{vertical-align:0.000000px;}
.lsb_c00219{letter-spacing:-2.334024px;}
.ls10_c00219{letter-spacing:-1.575466px;}
.lsf_c00219{letter-spacing:-1.283713px;}
.ls11_c00219{letter-spacing:-0.758558px;}
.lsc_c00219{letter-spacing:-0.435687px;}
.lsd_c00219{letter-spacing:-0.175052px;}
.lsa_c00219{letter-spacing:-0.120240px;}
.ls9_c00219{letter-spacing:0.000000px;}
.ls12_c00219{letter-spacing:1.225363px;}
.lse_c00219{letter-spacing:1.750518px;}
.ls1_c00219{letter-spacing:340.825855px;}
.ls7_c00219{letter-spacing:348.586484px;}
.ls3_c00219{letter-spacing:368.017234px;}
.ls6_c00219{letter-spacing:375.836215px;}
.ls5_c00219{letter-spacing:395.266964px;}
.ls2_c00219{letter-spacing:422.516695px;}
.ls8_c00219{letter-spacing:430.277324px;}
.ls4_c00219{letter-spacing:449.708074px;}
.ls0_c00219{letter-spacing:1144.260000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00219{word-spacing:-18.000000px;}
.wsf_c00219{word-spacing:-14.937754px;}
.ws0_c00219{word-spacing:-14.909760px;}
.ws13_c00219{word-spacing:-14.412598px;}
.wsd_c00219{word-spacing:-13.630779px;}
.wse_c00219{word-spacing:-13.012184px;}
.ws12_c00219{word-spacing:-12.428678px;}
.ws10_c00219{word-spacing:-11.903522px;}
.ws11_c00219{word-spacing:-11.611769px;}
.ws5_c00219{word-spacing:-10.853212px;}
.ws16_c00219{word-spacing:-1.517116px;}
.ws18_c00219{word-spacing:-0.758558px;}
.ws15_c00219{word-spacing:-0.162000px;}
.ws14_c00219{word-spacing:0.000000px;}
.ws19_c00219{word-spacing:0.058351px;}
.ws17_c00219{word-spacing:2.334024px;}
.wsb_c00219{word-spacing:120.838258px;}
.ws3_c00219{word-spacing:120.855763px;}
.ws6_c00219{word-spacing:120.861598px;}
.wsa_c00219{word-spacing:120.867433px;}
.ws2_c00219{word-spacing:136.843827px;}
.ws4_c00219{word-spacing:183.063337px;}
.ws9_c00219{word-spacing:183.098348px;}
.ws8_c00219{word-spacing:183.104183px;}
.wsc_c00219{word-spacing:183.110018px;}
.ws7_c00219{word-spacing:183.127523px;}
._4_c00219{margin-left:-330.772046px;}
._3_c00219{margin-left:-268.523626px;}
._11_c00219{margin-left:-3.325984px;}
._10_c00219{margin-left:-1.342064px;}
._f_c00219{width:1.151459px;}
._0_c00219{width:3.191778px;}
._9_c00219{width:4.697346px;}
._e_c00219{width:147.772895px;}
._8_c00219{width:155.521854px;}
._a_c00219{width:170.763031px;}
._5_c00219{width:174.952604px;}
._b_c00219{width:182.783255px;}
._7_c00219{width:202.143984px;}
._1_c00219{width:213.347299px;}
._2_c00219{width:229.416931px;}
._c_c00219{width:237.854551px;}
._d_c00219{width:241.367257px;}
._6_c00219{width:256.695960px;}
.fc0_c00219{color:rgb(0,0,0);}
.fs0_c00219{font-size:54.000000px;}
.fs3_c00219{font-size:58.350600px;}
.fs2_c00219{font-size:60.120000px;}
.fs4_c00219{font-size:62.241000px;}
.fs1_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y25_c00219{bottom:5.910248px;}
.y3a_c00219{bottom:14.586900px;}
.y2b_c00219{bottom:14.587050px;}
.y36_c00219{bottom:14.587200px;}
.y34_c00219{bottom:14.587350px;}
.y2e_c00219{bottom:14.587500px;}
.y3c_c00219{bottom:14.587650px;}
.y27_c00219{bottom:14.588400px;}
.y29_c00219{bottom:14.588550px;}
.y32_c00219{bottom:14.588850px;}
.y3e_c00219{bottom:14.589000px;}
.y24_c00219{bottom:25.355586px;}
.y23_c00219{bottom:45.778296px;}
.y3f_c00219{bottom:57.330000px;}
.y22_c00219{bottom:65.223633px;}
.y21_c00219{bottom:85.646343px;}
.y20_c00219{bottom:105.091681px;}
.y1f_c00219{bottom:125.514391px;}
.y6_c00219{bottom:140.400000px;}
.y1e_c00219{bottom:144.959728px;}
.y5_c00219{bottom:157.050000px;}
.y7_c00219{bottom:158.011500px;}
.y26_c00219{bottom:158.983500px;}
.y1d_c00219{bottom:165.382438px;}
.y1c_c00219{bottom:184.827776px;}
.y39_c00219{bottom:198.858000px;}
.y1b_c00219{bottom:205.250486px;}
.y1a_c00219{bottom:224.695823px;}
.y2c_c00219{bottom:238.729500px;}
.y19_c00219{bottom:245.118533px;}
.y18_c00219{bottom:264.563870px;}
.y2a_c00219{bottom:278.604000px;}
.y17_c00219{bottom:284.986580px;}
.y16_c00219{bottom:304.431918px;}
.y28_c00219{bottom:318.475500px;}
.y15_c00219{bottom:324.854628px;}
.y14_c00219{bottom:344.299965px;}
.y38_c00219{bottom:358.350000px;}
.y13_c00219{bottom:364.722675px;}
.y12_c00219{bottom:384.168013px;}
.y37_c00219{bottom:398.223000px;}
.y11_c00219{bottom:404.590723px;}
.y10_c00219{bottom:424.036060px;}
.y35_c00219{bottom:438.096000px;}
.yf_c00219{bottom:444.458770px;}
.ye_c00219{bottom:463.904108px;}
.y33_c00219{bottom:477.969000px;}
.yd_c00219{bottom:484.326818px;}
.yc_c00219{bottom:503.772155px;}
.y31_c00219{bottom:517.840500px;}
.yb_c00219{bottom:524.194865px;}
.ya_c00219{bottom:543.640203px;}
.y30_c00219{bottom:557.715000px;}
.y9_c00219{bottom:564.062913px;}
.y8_c00219{bottom:583.508400px;}
.y2f_c00219{bottom:597.588000px;}
.y2d_c00219{bottom:637.461000px;}
.y3b_c00219{bottom:677.334000px;}
.y3d_c00219{bottom:717.207000px;}
.y4_c00219{bottom:761.220000px;}
.y3_c00219{bottom:781.105500px;}
.y2_c00219{bottom:796.590000px;}
.y1_c00219{bottom:827.640000px;}
.h9_c00219{height:38.899500px;}
.h7_c00219{height:38.901000px;}
.h6_c00219{height:43.392560px;}
.h8_c00219{height:46.285666px;}
.ha_c00219{height:48.122150px;}
.h2_c00219{height:52.998047px;}
.h3_c00219{height:70.664062px;}
.h4_c00219{height:72.562500px;}
.h5_c00219{height:598.096500px;}
.h0_c00219{height:893.070000px;}
.h1_c00219{height:893.250000px;}
.w4_c00219{width:24.642000px;}
.w6_c00219{width:79.612500px;}
.w3_c00219{width:91.933500px;}
.w5_c00219{width:137.427000px;}
.w2_c00219{width:1048.234500px;}
.w0_c00219{width:1262.880000px;}
.w1_c00219{width:1263.000000px;}
.x0_c00219{left:0.000000px;}
.x11_c00219{left:1.896600px;}
.xf_c00219{left:5.686350px;}
.xc_c00219{left:16.112250px;}
.xb_c00219{left:18.007950px;}
.xe_c00219{left:19.903350px;}
.xa_c00219{left:21.799050px;}
.x9_c00219{left:23.694750px;}
.xd_c00219{left:25.590000px;}
.x14_c00219{left:30.329250px;}
.x13_c00219{left:33.172350px;}
.x15_c00219{left:36.963300px;}
.x2_c00219{left:106.380000px;}
.x10_c00219{left:132.916500px;}
.x7_c00219{left:186.800838px;}
.x5_c00219{left:197.136300px;}
.x6_c00219{left:203.818048px;}
.x1_c00219{left:631.440000px;}
.x8_c00219{left:982.120500px;}
.x12_c00219{left:1075.002000px;}
.x4_c00219{left:1087.290000px;}
.x3_c00219{left:1156.500000px;}
@media print{
.v1_c00219{vertical-align:-55.056000pt;}
.v0_c00219{vertical-align:0.000000pt;}
.lsb_c00219{letter-spacing:-2.074688pt;}
.ls10_c00219{letter-spacing:-1.400414pt;}
.lsf_c00219{letter-spacing:-1.141078pt;}
.ls11_c00219{letter-spacing:-0.674274pt;}
.lsc_c00219{letter-spacing:-0.387277pt;}
.lsd_c00219{letter-spacing:-0.155602pt;}
.lsa_c00219{letter-spacing:-0.106880pt;}
.ls9_c00219{letter-spacing:0.000000pt;}
.ls12_c00219{letter-spacing:1.089211pt;}
.lse_c00219{letter-spacing:1.556016pt;}
.ls1_c00219{letter-spacing:302.956315pt;}
.ls7_c00219{letter-spacing:309.854653pt;}
.ls3_c00219{letter-spacing:327.126430pt;}
.ls6_c00219{letter-spacing:334.076635pt;}
.ls5_c00219{letter-spacing:351.348413pt;}
.ls2_c00219{letter-spacing:375.570395pt;}
.ls8_c00219{letter-spacing:382.468733pt;}
.ls4_c00219{letter-spacing:399.740510pt;}
.ls0_c00219{letter-spacing:1017.120000pt;}
.ws1_c00219{word-spacing:-16.000000pt;}
.wsf_c00219{word-spacing:-13.278003pt;}
.ws0_c00219{word-spacing:-13.253120pt;}
.ws13_c00219{word-spacing:-12.811198pt;}
.wsd_c00219{word-spacing:-12.116248pt;}
.wse_c00219{word-spacing:-11.566386pt;}
.ws12_c00219{word-spacing:-11.047714pt;}
.ws10_c00219{word-spacing:-10.580909pt;}
.ws11_c00219{word-spacing:-10.321573pt;}
.ws5_c00219{word-spacing:-9.647299pt;}
.ws16_c00219{word-spacing:-1.348547pt;}
.ws18_c00219{word-spacing:-0.674274pt;}
.ws15_c00219{word-spacing:-0.144000pt;}
.ws14_c00219{word-spacing:0.000000pt;}
.ws19_c00219{word-spacing:0.051867pt;}
.ws17_c00219{word-spacing:2.074688pt;}
.wsb_c00219{word-spacing:107.411784pt;}
.ws3_c00219{word-spacing:107.427345pt;}
.ws6_c00219{word-spacing:107.432531pt;}
.wsa_c00219{word-spacing:107.437718pt;}
.ws2_c00219{word-spacing:121.638957pt;}
.ws4_c00219{word-spacing:162.722967pt;}
.ws9_c00219{word-spacing:162.754087pt;}
.ws8_c00219{word-spacing:162.759274pt;}
.wsc_c00219{word-spacing:162.764460pt;}
.ws7_c00219{word-spacing:162.780020pt;}
._4_c00219{margin-left:-294.019597pt;}
._3_c00219{margin-left:-238.687668pt;}
._11_c00219{margin-left:-2.956430pt;}
._10_c00219{margin-left:-1.192946pt;}
._f_c00219{width:1.023519pt;}
._0_c00219{width:2.837136pt;}
._9_c00219{width:4.175419pt;}
._e_c00219{width:131.353684pt;}
._8_c00219{width:138.241648pt;}
._a_c00219{width:151.789361pt;}
._5_c00219{width:155.513426pt;}
._b_c00219{width:162.474004pt;}
._7_c00219{width:179.683541pt;}
._1_c00219{width:189.642043pt;}
._2_c00219{width:203.926161pt;}
._c_c00219{width:211.426267pt;}
._d_c00219{width:214.548673pt;}
._6_c00219{width:228.174186pt;}
.fs0_c00219{font-size:48.000000pt;}
.fs3_c00219{font-size:51.867200pt;}
.fs2_c00219{font-size:53.440000pt;}
.fs4_c00219{font-size:55.325333pt;}
.fs1_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y25_c00219{bottom:5.253554pt;}
.y3a_c00219{bottom:12.966133pt;}
.y2b_c00219{bottom:12.966267pt;}
.y36_c00219{bottom:12.966400pt;}
.y34_c00219{bottom:12.966533pt;}
.y2e_c00219{bottom:12.966667pt;}
.y3c_c00219{bottom:12.966800pt;}
.y27_c00219{bottom:12.967467pt;}
.y29_c00219{bottom:12.967600pt;}
.y32_c00219{bottom:12.967867pt;}
.y3e_c00219{bottom:12.968000pt;}
.y24_c00219{bottom:22.538298pt;}
.y23_c00219{bottom:40.691818pt;}
.y3f_c00219{bottom:50.960000pt;}
.y22_c00219{bottom:57.976563pt;}
.y21_c00219{bottom:76.130083pt;}
.y20_c00219{bottom:93.414827pt;}
.y1f_c00219{bottom:111.568347pt;}
.y6_c00219{bottom:124.800000pt;}
.y1e_c00219{bottom:128.853092pt;}
.y5_c00219{bottom:139.600000pt;}
.y7_c00219{bottom:140.454667pt;}
.y26_c00219{bottom:141.318667pt;}
.y1d_c00219{bottom:147.006612pt;}
.y1c_c00219{bottom:164.291356pt;}
.y39_c00219{bottom:176.762667pt;}
.y1b_c00219{bottom:182.444876pt;}
.y1a_c00219{bottom:199.729620pt;}
.y2c_c00219{bottom:212.204000pt;}
.y19_c00219{bottom:217.883140pt;}
.y18_c00219{bottom:235.167885pt;}
.y2a_c00219{bottom:247.648000pt;}
.y17_c00219{bottom:253.321405pt;}
.y16_c00219{bottom:270.606149pt;}
.y28_c00219{bottom:283.089333pt;}
.y15_c00219{bottom:288.759669pt;}
.y14_c00219{bottom:306.044414pt;}
.y38_c00219{bottom:318.533333pt;}
.y13_c00219{bottom:324.197934pt;}
.y12_c00219{bottom:341.482678pt;}
.y37_c00219{bottom:353.976000pt;}
.y11_c00219{bottom:359.636198pt;}
.y10_c00219{bottom:376.920942pt;}
.y35_c00219{bottom:389.418667pt;}
.yf_c00219{bottom:395.074462pt;}
.ye_c00219{bottom:412.359207pt;}
.y33_c00219{bottom:424.861333pt;}
.yd_c00219{bottom:430.512727pt;}
.yc_c00219{bottom:447.797471pt;}
.y31_c00219{bottom:460.302667pt;}
.yb_c00219{bottom:465.950991pt;}
.ya_c00219{bottom:483.235736pt;}
.y30_c00219{bottom:495.746667pt;}
.y9_c00219{bottom:501.389256pt;}
.y8_c00219{bottom:518.674133pt;}
.y2f_c00219{bottom:531.189333pt;}
.y2d_c00219{bottom:566.632000pt;}
.y3b_c00219{bottom:602.074667pt;}
.y3d_c00219{bottom:637.517333pt;}
.y4_c00219{bottom:676.640000pt;}
.y3_c00219{bottom:694.316000pt;}
.y2_c00219{bottom:708.080000pt;}
.y1_c00219{bottom:735.680000pt;}
.h9_c00219{height:34.577333pt;}
.h7_c00219{height:34.578667pt;}
.h6_c00219{height:38.571165pt;}
.h8_c00219{height:41.142814pt;}
.ha_c00219{height:42.775245pt;}
.h2_c00219{height:47.109375pt;}
.h3_c00219{height:62.812500pt;}
.h4_c00219{height:64.500000pt;}
.h5_c00219{height:531.641333pt;}
.h0_c00219{height:793.840000pt;}
.h1_c00219{height:794.000000pt;}
.w4_c00219{width:21.904000pt;}
.w6_c00219{width:70.766667pt;}
.w3_c00219{width:81.718667pt;}
.w5_c00219{width:122.157333pt;}
.w2_c00219{width:931.764000pt;}
.w0_c00219{width:1122.560000pt;}
.w1_c00219{width:1122.666667pt;}
.x0_c00219{left:0.000000pt;}
.x11_c00219{left:1.685867pt;}
.xf_c00219{left:5.054533pt;}
.xc_c00219{left:14.322000pt;}
.xb_c00219{left:16.007067pt;}
.xe_c00219{left:17.691867pt;}
.xa_c00219{left:19.376933pt;}
.x9_c00219{left:21.062000pt;}
.xd_c00219{left:22.746667pt;}
.x14_c00219{left:26.959333pt;}
.x13_c00219{left:29.486533pt;}
.x15_c00219{left:32.856267pt;}
.x2_c00219{left:94.560000pt;}
.x10_c00219{left:118.148000pt;}
.x7_c00219{left:166.045189pt;}
.x5_c00219{left:175.232267pt;}
.x6_c00219{left:181.171599pt;}
.x1_c00219{left:561.280000pt;}
.x8_c00219{left:872.996000pt;}
.x12_c00219{left:955.557333pt;}
.x4_c00219{left:966.480000pt;}
.x3_c00219{left:1028.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_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_8d4afcd81019c9a558febeca.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_f02a0b000d54b9e1205078e1.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_6ca20b735afd506dd1532d32.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:0.921875;font-style:normal;font-weight:normal;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_aa2e5b8044128f2bc50c935c.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.002930;font-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_c00220{transform:matrix(0.241359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241359,0.000000,0.000000,0.250000,0,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);}
.v1_c00220{vertical-align:-61.920000px;}
.v0_c00220{vertical-align:0.000000px;}
.lsb_c00220{letter-spacing:-2.356080px;}
.lse_c00220{letter-spacing:-1.590354px;}
.lsd_c00220{letter-spacing:-0.439803px;}
.ls11_c00220{letter-spacing:-0.412314px;}
.lsc_c00220{letter-spacing:-0.235608px;}
.lsf_c00220{letter-spacing:-0.176706px;}
.lsa_c00220{letter-spacing:-0.120240px;}
.ls8_c00220{letter-spacing:-0.108000px;}
.ls9_c00220{letter-spacing:0.000000px;}
.ls10_c00220{letter-spacing:1.236942px;}
.ls2_c00220{letter-spacing:344.046582px;}
.ls5_c00220{letter-spacing:351.880548px;}
.ls4_c00220{letter-spacing:371.494914px;}
.ls6_c00220{letter-spacing:379.387782px;}
.ls1_c00220{letter-spacing:399.002148px;}
.ls3_c00220{letter-spacing:426.509382px;}
.ls7_c00220{letter-spacing:453.957714px;}
.ls0_c00220{letter-spacing:725.580000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00220{word-spacing:-18.000000px;}
.ws0_c00220{word-spacing:-14.909760px;}
.ws12_c00220{word-spacing:-14.548794px;}
.wsf_c00220{word-spacing:-13.759551px;}
.ws11_c00220{word-spacing:-13.135146px;}
.ws13_c00220{word-spacing:-12.899538px;}
.ws10_c00220{word-spacing:-11.721498px;}
.ws4_c00220{word-spacing:-10.955772px;}
.ws17_c00220{word-spacing:-1.531452px;}
.ws1a_c00220{word-spacing:-1.354746px;}
.ws14_c00220{word-spacing:0.000000px;}
.ws19_c00220{word-spacing:0.058902px;}
.ws16_c00220{word-spacing:0.162000px;}
.ws15_c00220{word-spacing:0.270000px;}
.ws18_c00220{word-spacing:2.356080px;}
.ws9_c00220{word-spacing:121.938920px;}
.wse_c00220{word-spacing:121.968371px;}
.ws8_c00220{word-spacing:121.980152px;}
.ws5_c00220{word-spacing:121.986042px;}
.wsa_c00220{word-spacing:122.003713px;}
.wsc_c00220{word-spacing:122.009603px;}
.ws6_c00220{word-spacing:184.793245px;}
.ws7_c00220{word-spacing:184.810915px;}
.ws3_c00220{word-spacing:184.834476px;}
.wsd_c00220{word-spacing:184.840366px;}
.ws2_c00220{word-spacing:193.139658px;}
.wsb_c00220{word-spacing:485.900269px;}
._6_c00220{margin-left:-333.868316px;}
._5_c00220{margin-left:-271.055224px;}
._13_c00220{margin-left:-3.314347px;}
._12_c00220{margin-left:-2.122308px;}
._1_c00220{margin-left:-1.058400px;}
._0_c00220{width:1.225800px;}
._2_c00220{width:3.216049px;}
._11_c00220{width:4.888866px;}
._4_c00220{width:132.924143px;}
._f_c00220{width:144.745775px;}
._7_c00220{width:149.204656px;}
._b_c00220{width:156.956159px;}
._c_c00220{width:172.959833px;}
._a_c00220{width:176.588196px;}
._d_c00220{width:184.522295px;}
._e_c00220{width:204.160222px;}
._8_c00220{width:215.386943px;}
._9_c00220{width:231.561433px;}
._3_c00220{width:242.917738px;}
._10_c00220{width:259.133459px;}
.fc0_c00220{color:rgb(0,0,0);}
.fs0_c00220{font-size:54.000000px;}
.fs3_c00220{font-size:58.902000px;}
.fs2_c00220{font-size:60.120000px;}
.fs4_c00220{font-size:62.829000px;}
.fs1_c00220{font-size:72.000000px;}
.y0_c00220{bottom:0.000000px;}
.y25_c00220{bottom:5.965178px;}
.y37_c00220{bottom:14.724600px;}
.y3e_c00220{bottom:14.724750px;}
.y29_c00220{bottom:14.725050px;}
.y31_c00220{bottom:14.725200px;}
.y27_c00220{bottom:14.725350px;}
.y3a_c00220{bottom:14.725500px;}
.y2f_c00220{bottom:14.725650px;}
.y40_c00220{bottom:14.725800px;}
.y2d_c00220{bottom:14.725950px;}
.y2b_c00220{bottom:14.726250px;}
.y35_c00220{bottom:14.726400px;}
.y3c_c00220{bottom:14.726550px;}
.y24_c00220{bottom:25.594269px;}
.y23_c00220{bottom:46.209969px;}
.y41_c00220{bottom:57.330000px;}
.y22_c00220{bottom:65.839061px;}
.y21_c00220{bottom:86.454761px;}
.y20_c00220{bottom:106.083852px;}
.y1f_c00220{bottom:126.699552px;}
.y6_c00220{bottom:134.726760px;}
.y1e_c00220{bottom:146.328644px;}
.y5_c00220{bottom:151.380000px;}
.y7_c00220{bottom:152.352000px;}
.y30_c00220{bottom:153.333000px;}
.y1d_c00220{bottom:166.944344px;}
.y1c_c00220{bottom:186.573435px;}
.y2e_c00220{bottom:193.582500px;}
.y1b_c00220{bottom:207.189135px;}
.y1a_c00220{bottom:226.818227px;}
.y3f_c00220{bottom:233.832000px;}
.y19_c00220{bottom:247.433927px;}
.y18_c00220{bottom:267.063018px;}
.y3d_c00220{bottom:274.083000px;}
.y17_c00220{bottom:287.678718px;}
.y16_c00220{bottom:307.307810px;}
.y3b_c00220{bottom:314.331000px;}
.y15_c00220{bottom:327.923510px;}
.y14_c00220{bottom:347.552601px;}
.y39_c00220{bottom:354.582000px;}
.y13_c00220{bottom:368.168301px;}
.y12_c00220{bottom:387.797393px;}
.y38_c00220{bottom:394.831500px;}
.y11_c00220{bottom:408.413093px;}
.y10_c00220{bottom:428.042184px;}
.y36_c00220{bottom:435.082500px;}
.yf_c00220{bottom:448.657884px;}
.ye_c00220{bottom:468.286976px;}
.y34_c00220{bottom:475.330500px;}
.yd_c00220{bottom:488.902675px;}
.yc_c00220{bottom:508.531767px;}
.y33_c00220{bottom:515.581500px;}
.yb_c00220{bottom:529.147467px;}
.ya_c00220{bottom:548.776559px;}
.y32_c00220{bottom:555.831000px;}
.y9_c00220{bottom:569.392259px;}
.y8_c00220{bottom:589.021350px;}
.y2c_c00220{bottom:596.080500px;}
.y2a_c00220{bottom:636.330000px;}
.y28_c00220{bottom:676.581000px;}
.y26_c00220{bottom:716.830500px;}
.y4_c00220{bottom:761.220000px;}
.y3_c00220{bottom:781.110000px;}
.y2_c00220{bottom:796.594500px;}
.y1_c00220{bottom:827.640000px;}
.hb_c00220{height:39.267000px;}
.h9_c00220{height:39.268500px;}
.h7_c00220{height:43.802610px;}
.ha_c00220{height:46.722933px;}
.h8_c00220{height:48.576894px;}
.h2_c00220{height:52.998047px;}
.h4_c00220{height:58.975137px;}
.h3_c00220{height:70.664062px;}
.h5_c00220{height:72.575460px;}
.h6_c00220{height:603.747000px;}
.h0_c00220{height:893.070000px;}
.h1_c00220{height:893.250000px;}
.w4_c00220{width:24.642000px;}
.w6_c00220{width:79.612500px;}
.w3_c00220{width:91.933500px;}
.w5_c00220{width:137.427000px;}
.w2_c00220{width:1048.234500px;}
.w0_c00220{width:1262.880000px;}
.w1_c00220{width:1263.000000px;}
.x0_c00220{left:0.000000px;}
.x11_c00220{left:1.895100px;}
.xf_c00220{left:5.686350px;}
.xd_c00220{left:19.901850px;}
.xc_c00220{left:21.797550px;}
.xe_c00220{left:23.693250px;}
.xa_c00220{left:27.556513px;}
.x14_c00220{left:30.327450px;}
.x13_c00220{left:33.170850px;}
.x2_c00220{left:106.380000px;}
.x5_c00220{left:107.418000px;}
.x10_c00220{left:133.008000px;}
.x9_c00220{left:180.114311px;}
.x7_c00220{left:186.710790px;}
.x8_c00220{left:197.145738px;}
.x6_c00220{left:203.770650px;}
.x1_c00220{left:631.440000px;}
.xb_c00220{left:982.212000px;}
.x12_c00220{left:1075.093500px;}
.x4_c00220{left:1087.286670px;}
.x15_c00220{left:1129.590000px;}
.x3_c00220{left:1156.590000px;}
@media print{
.v1_c00220{vertical-align:-55.040000pt;}
.v0_c00220{vertical-align:0.000000pt;}
.lsb_c00220{letter-spacing:-2.094293pt;}
.lse_c00220{letter-spacing:-1.413648pt;}
.lsd_c00220{letter-spacing:-0.390936pt;}
.ls11_c00220{letter-spacing:-0.366501pt;}
.lsc_c00220{letter-spacing:-0.209429pt;}
.lsf_c00220{letter-spacing:-0.157072pt;}
.lsa_c00220{letter-spacing:-0.106880pt;}
.ls8_c00220{letter-spacing:-0.096000pt;}
.ls9_c00220{letter-spacing:0.000000pt;}
.ls10_c00220{letter-spacing:1.099504pt;}
.ls2_c00220{letter-spacing:305.819184pt;}
.ls5_c00220{letter-spacing:312.782709pt;}
.ls4_c00220{letter-spacing:330.217701pt;}
.ls6_c00220{letter-spacing:337.233584pt;}
.ls1_c00220{letter-spacing:354.668576pt;}
.ls3_c00220{letter-spacing:379.119451pt;}
.ls7_c00220{letter-spacing:403.517968pt;}
.ls0_c00220{letter-spacing:644.960000pt;}
.ws1_c00220{word-spacing:-16.000000pt;}
.ws0_c00220{word-spacing:-13.253120pt;}
.ws12_c00220{word-spacing:-12.932261pt;}
.wsf_c00220{word-spacing:-12.230712pt;}
.ws11_c00220{word-spacing:-11.675685pt;}
.ws13_c00220{word-spacing:-11.466256pt;}
.ws10_c00220{word-spacing:-10.419109pt;}
.ws4_c00220{word-spacing:-9.738464pt;}
.ws17_c00220{word-spacing:-1.361291pt;}
.ws1a_c00220{word-spacing:-1.204219pt;}
.ws14_c00220{word-spacing:0.000000pt;}
.ws19_c00220{word-spacing:0.052357pt;}
.ws16_c00220{word-spacing:0.144000pt;}
.ws15_c00220{word-spacing:0.240000pt;}
.ws18_c00220{word-spacing:2.094293pt;}
.ws9_c00220{word-spacing:108.390151pt;}
.wse_c00220{word-spacing:108.416330pt;}
.ws8_c00220{word-spacing:108.426802pt;}
.ws5_c00220{word-spacing:108.432037pt;}
.wsa_c00220{word-spacing:108.447745pt;}
.wsc_c00220{word-spacing:108.452980pt;}
.ws6_c00220{word-spacing:164.260662pt;}
.ws7_c00220{word-spacing:164.276369pt;}
.ws3_c00220{word-spacing:164.297312pt;}
.wsd_c00220{word-spacing:164.302548pt;}
.ws2_c00220{word-spacing:171.679696pt;}
.wsb_c00220{word-spacing:431.911350pt;}
._6_c00220{margin-left:-296.771837pt;}
._5_c00220{margin-left:-240.937977pt;}
._13_c00220{margin-left:-2.946086pt;}
._12_c00220{margin-left:-1.886496pt;}
._1_c00220{margin-left:-0.940800pt;}
._0_c00220{width:1.089600pt;}
._2_c00220{width:2.858710pt;}
._11_c00220{width:4.345659pt;}
._4_c00220{width:118.154794pt;}
._f_c00220{width:128.662911pt;}
._7_c00220{width:132.626361pt;}
._b_c00220{width:139.516586pt;}
._c_c00220{width:153.742074pt;}
._a_c00220{width:156.967285pt;}
._d_c00220{width:164.019818pt;}
._e_c00220{width:181.475753pt;}
._8_c00220{width:191.455061pt;}
._9_c00220{width:205.832385pt;}
._3_c00220{width:215.926878pt;}
._10_c00220{width:230.340852pt;}
.fs0_c00220{font-size:48.000000pt;}
.fs3_c00220{font-size:52.357333pt;}
.fs2_c00220{font-size:53.440000pt;}
.fs4_c00220{font-size:55.848000pt;}
.fs1_c00220{font-size:64.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y25_c00220{bottom:5.302380pt;}
.y37_c00220{bottom:13.088533pt;}
.y3e_c00220{bottom:13.088667pt;}
.y29_c00220{bottom:13.088933pt;}
.y31_c00220{bottom:13.089067pt;}
.y27_c00220{bottom:13.089200pt;}
.y3a_c00220{bottom:13.089333pt;}
.y2f_c00220{bottom:13.089467pt;}
.y40_c00220{bottom:13.089600pt;}
.y2d_c00220{bottom:13.089733pt;}
.y2b_c00220{bottom:13.090000pt;}
.y35_c00220{bottom:13.090133pt;}
.y3c_c00220{bottom:13.090267pt;}
.y24_c00220{bottom:22.750461pt;}
.y23_c00220{bottom:41.075528pt;}
.y41_c00220{bottom:50.960000pt;}
.y22_c00220{bottom:58.523609pt;}
.y21_c00220{bottom:76.848676pt;}
.y20_c00220{bottom:94.296757pt;}
.y1f_c00220{bottom:112.621824pt;}
.y6_c00220{bottom:119.757120pt;}
.y1e_c00220{bottom:130.069905pt;}
.y5_c00220{bottom:134.560000pt;}
.y7_c00220{bottom:135.424000pt;}
.y30_c00220{bottom:136.296000pt;}
.y1d_c00220{bottom:148.394972pt;}
.y1c_c00220{bottom:165.843053pt;}
.y2e_c00220{bottom:172.073333pt;}
.y1b_c00220{bottom:184.168120pt;}
.y1a_c00220{bottom:201.616201pt;}
.y3f_c00220{bottom:207.850667pt;}
.y19_c00220{bottom:219.941268pt;}
.y18_c00220{bottom:237.389349pt;}
.y3d_c00220{bottom:243.629333pt;}
.y17_c00220{bottom:255.714416pt;}
.y16_c00220{bottom:273.162497pt;}
.y3b_c00220{bottom:279.405333pt;}
.y15_c00220{bottom:291.487564pt;}
.y14_c00220{bottom:308.935645pt;}
.y39_c00220{bottom:315.184000pt;}
.y13_c00220{bottom:327.260712pt;}
.y12_c00220{bottom:344.708793pt;}
.y38_c00220{bottom:350.961333pt;}
.y11_c00220{bottom:363.033860pt;}
.y10_c00220{bottom:380.481941pt;}
.y36_c00220{bottom:386.740000pt;}
.yf_c00220{bottom:398.807008pt;}
.ye_c00220{bottom:416.255089pt;}
.y34_c00220{bottom:422.516000pt;}
.yd_c00220{bottom:434.580156pt;}
.yc_c00220{bottom:452.028237pt;}
.y33_c00220{bottom:458.294667pt;}
.yb_c00220{bottom:470.353304pt;}
.ya_c00220{bottom:487.801385pt;}
.y32_c00220{bottom:494.072000pt;}
.y9_c00220{bottom:506.126452pt;}
.y8_c00220{bottom:523.574533pt;}
.y2c_c00220{bottom:529.849333pt;}
.y2a_c00220{bottom:565.626667pt;}
.y28_c00220{bottom:601.405333pt;}
.y26_c00220{bottom:637.182667pt;}
.y4_c00220{bottom:676.640000pt;}
.y3_c00220{bottom:694.320000pt;}
.y2_c00220{bottom:708.084000pt;}
.y1_c00220{bottom:735.680000pt;}
.hb_c00220{height:34.904000pt;}
.h9_c00220{height:34.905333pt;}
.h7_c00220{height:38.935654pt;}
.ha_c00220{height:41.531496pt;}
.h8_c00220{height:43.179461pt;}
.h2_c00220{height:47.109375pt;}
.h4_c00220{height:52.422344pt;}
.h3_c00220{height:62.812500pt;}
.h5_c00220{height:64.511520pt;}
.h6_c00220{height:536.664000pt;}
.h0_c00220{height:793.840000pt;}
.h1_c00220{height:794.000000pt;}
.w4_c00220{width:21.904000pt;}
.w6_c00220{width:70.766667pt;}
.w3_c00220{width:81.718667pt;}
.w5_c00220{width:122.157333pt;}
.w2_c00220{width:931.764000pt;}
.w0_c00220{width:1122.560000pt;}
.w1_c00220{width:1122.666667pt;}
.x0_c00220{left:0.000000pt;}
.x11_c00220{left:1.684533pt;}
.xf_c00220{left:5.054533pt;}
.xd_c00220{left:17.690533pt;}
.xc_c00220{left:19.375600pt;}
.xe_c00220{left:21.060667pt;}
.xa_c00220{left:24.494678pt;}
.x14_c00220{left:26.957733pt;}
.x13_c00220{left:29.485200pt;}
.x2_c00220{left:94.560000pt;}
.x5_c00220{left:95.482667pt;}
.x10_c00220{left:118.229333pt;}
.x9_c00220{left:160.101610pt;}
.x7_c00220{left:165.965147pt;}
.x8_c00220{left:175.240656pt;}
.x6_c00220{left:181.129467pt;}
.x1_c00220{left:561.280000pt;}
.xb_c00220{left:873.077333pt;}
.x12_c00220{left:955.638667pt;}
.x4_c00220{left:966.477040pt;}
.x15_c00220{left:1004.080000pt;}
.x3_c00220{left:1028.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_c00221 {
    display:none;
  }
  .loading-indicator_c00221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00221 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00221 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00221" -> "#page-container .classname_c00221")
 */
.pf_c00221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00221 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00221 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00221 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00221 {overflow:visible;}
  }
}
.c_c00221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00221 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00221:after { /* webkit #35443 */
  content: '';
}
.t_c00221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00221 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00221 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00221 { /* info for Javascript */
  display:none;
}
.l_c00221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00221:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00221;src:url('chunks/assets/font_22ed3324fad8299d5c6d4d7a.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_9d7a3e0712498c3b064738a8.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_461c4091c1be089184e603bc.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.002930;font-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_c00221{transform:matrix(0.239508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239508,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.239509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239509,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00221{vertical-align:-61.938000px;}
.v0_c00221{vertical-align:0.000000px;}
.lsb_c00221{letter-spacing:-2.374296px;}
.ls10_c00221{letter-spacing:-1.602650px;}
.lsf_c00221{letter-spacing:-1.305863px;}
.lsc_c00221{letter-spacing:-0.443201px;}
.lse_c00221{letter-spacing:-0.178072px;}
.lsa_c00221{letter-spacing:-0.120240px;}
.ls9_c00221{letter-spacing:0.000000px;}
.ls11_c00221{letter-spacing:1.246505px;}
.lsd_c00221{letter-spacing:1.780722px;}
.ls3_c00221{letter-spacing:346.706573px;}
.ls5_c00221{letter-spacing:354.601108px;}
.ls1_c00221{letter-spacing:374.367122px;}
.ls6_c00221{letter-spacing:382.321013px;}
.ls7_c00221{letter-spacing:402.087028px;}
.ls2_c00221{letter-spacing:429.806933px;}
.ls8_c00221{letter-spacing:437.701468px;}
.ls4_c00221{letter-spacing:457.467482px;}
.ls0_c00221{letter-spacing:1144.260000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:-14.909760px;}
.ws11_c00221{word-spacing:-14.661278px;}
.wsd_c00221{word-spacing:-13.865854px;}
.wse_c00221{word-spacing:-13.236700px;}
.wsf_c00221{word-spacing:-12.108910px;}
.ws10_c00221{word-spacing:-11.812123px;}
.ws3_c00221{word-spacing:-11.040476px;}
.ws16_c00221{word-spacing:-3.324014px;}
.ws14_c00221{word-spacing:-1.543292px;}
.ws13_c00221{word-spacing:-0.162000px;}
.ws12_c00221{word-spacing:0.000000px;}
.ws17_c00221{word-spacing:0.059357px;}
.ws15_c00221{word-spacing:2.374296px;}
.ws1_c00221{word-spacing:122.923240px;}
.wsc_c00221{word-spacing:122.935111px;}
.ws5_c00221{word-spacing:122.941047px;}
.ws7_c00221{word-spacing:122.946983px;}
.wsb_c00221{word-spacing:122.952918px;}
.ws4_c00221{word-spacing:139.210910px;}
.ws6_c00221{word-spacing:186.221971px;}
.ws2_c00221{word-spacing:186.239778px;}
.ws8_c00221{word-spacing:186.257585px;}
.ws9_c00221{word-spacing:186.263521px;}
.wsa_c00221{word-spacing:186.287264px;}
._5_c00221{margin-left:-336.497101px;}
._4_c00221{margin-left:-273.139012px;}
._f_c00221{margin-left:-3.145942px;}
._10_c00221{margin-left:-2.059702px;}
._11_c00221{margin-left:-1.009076px;}
._e_c00221{width:1.171316px;}
._12_c00221{width:2.237774px;}
._0_c00221{width:3.246850px;}
._8_c00221{width:4.748592px;}
._a_c00221{width:150.322616px;}
._7_c00221{width:158.139985px;}
._b_c00221{width:173.614459px;}
._1_c00221{width:177.947549px;}
._c_c00221{width:185.937055px;}
._9_c00221{width:205.631841px;}
._2_c00221{width:217.070012px;}
._3_c00221{width:233.351747px;}
._d_c00221{width:242.071349px;}
._6_c00221{width:261.107267px;}
.fc0_c00221{color:rgb(0,0,0);}
.fs0_c00221{font-size:54.000000px;}
.fs3_c00221{font-size:59.357400px;}
.fs2_c00221{font-size:60.120000px;}
.fs4_c00221{font-size:63.314400px;}
.fs1_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y25_c00221{bottom:6.004890px;}
.y3c_c00221{bottom:14.838600px;}
.y2d_c00221{bottom:14.838750px;}
.y27_c00221{bottom:14.838900px;}
.y29_c00221{bottom:14.839050px;}
.y37_c00221{bottom:14.839200px;}
.y33_c00221{bottom:14.839350px;}
.y2f_c00221{bottom:14.839500px;}
.y2b_c00221{bottom:14.839650px;}
.y39_c00221{bottom:14.839800px;}
.y35_c00221{bottom:14.839950px;}
.y31_c00221{bottom:14.840100px;}
.y24_c00221{bottom:25.785744px;}
.y23_c00221{bottom:46.560834px;}
.y40_c00221{bottom:57.330000px;}
.y22_c00221{bottom:66.341687px;}
.y21_c00221{bottom:87.116777px;}
.y20_c00221{bottom:106.897631px;}
.y1f_c00221{bottom:127.672721px;}
.y6_c00221{bottom:132.930000px;}
.y5_c00221{bottom:146.700000px;}
.y1e_c00221{bottom:147.453575px;}
.y7_c00221{bottom:147.678000px;}
.y26_c00221{bottom:148.668000px;}
.y1d_c00221{bottom:168.228665px;}
.y1c_c00221{bottom:188.009518px;}
.y38_c00221{bottom:189.228000px;}
.y1b_c00221{bottom:208.784608px;}
.y1a_c00221{bottom:228.565462px;}
.y36_c00221{bottom:229.789500px;}
.y19_c00221{bottom:249.340552px;}
.y18_c00221{bottom:269.121405px;}
.y34_c00221{bottom:270.349500px;}
.y17_c00221{bottom:289.896495px;}
.y16_c00221{bottom:309.677349px;}
.y32_c00221{bottom:310.911000px;}
.y15_c00221{bottom:330.452439px;}
.y14_c00221{bottom:350.233292px;}
.y30_c00221{bottom:351.471000px;}
.y13_c00221{bottom:371.008382px;}
.y12_c00221{bottom:390.789236px;}
.y2e_c00221{bottom:392.032500px;}
.y11_c00221{bottom:411.564326px;}
.y10_c00221{bottom:431.345179px;}
.y2c_c00221{bottom:432.594000px;}
.yf_c00221{bottom:452.120269px;}
.ye_c00221{bottom:471.901123px;}
.y2a_c00221{bottom:473.154000px;}
.yd_c00221{bottom:492.676213px;}
.yc_c00221{bottom:512.457066px;}
.y28_c00221{bottom:513.715500px;}
.yb_c00221{bottom:533.232156px;}
.ya_c00221{bottom:553.013010px;}
.y3f_c00221{bottom:554.275500px;}
.y9_c00221{bottom:573.792846px;}
.y8_c00221{bottom:593.573700px;}
.y3e_c00221{bottom:594.837000px;}
.y3d_c00221{bottom:635.397000px;}
.y3a_c00221{bottom:675.958500px;}
.y3b_c00221{bottom:716.520000px;}
.y4_c00221{bottom:761.220000px;}
.y3_c00221{bottom:781.105500px;}
.y2_c00221{bottom:796.590000px;}
.y1_c00221{bottom:827.640000px;}
.h8_c00221{height:39.571500px;}
.ha_c00221{height:39.573000px;}
.h7_c00221{height:44.141270px;}
.h9_c00221{height:47.083902px;}
.hb_c00221{height:48.952465px;}
.h2_c00221{height:52.998047px;}
.h5_c00221{height:60.589687px;}
.h3_c00221{height:70.664062px;}
.h4_c00221{height:72.562500px;}
.h6_c00221{height:608.412000px;}
.h0_c00221{height:893.070000px;}
.h1_c00221{height:893.250000px;}
.w4_c00221{width:24.642000px;}
.w6_c00221{width:79.614000px;}
.w3_c00221{width:91.933500px;}
.w5_c00221{width:137.427000px;}
.w2_c00221{width:1048.236000px;}
.w0_c00221{width:1262.880000px;}
.w1_c00221{width:1263.000000px;}
.x0_c00221{left:0.000000px;}
.xf_c00221{left:1.896750px;}
.xd_c00221{left:5.686350px;}
.xb_c00221{left:18.007950px;}
.xc_c00221{left:19.903500px;}
.x9_c00221{left:21.799050px;}
.xa_c00221{left:23.694600px;}
.x12_c00221{left:30.329250px;}
.x11_c00221{left:33.172500px;}
.x2_c00221{left:106.380000px;}
.xe_c00221{left:132.916500px;}
.x7_c00221{left:180.191042px;}
.x6_c00221{left:186.773305px;}
.x5_c00221{left:197.136300px;}
.x1_c00221{left:631.440000px;}
.x8_c00221{left:982.120500px;}
.x10_c00221{left:1075.002000px;}
.x4_c00221{left:1089.540000px;}
.x3_c00221{left:1156.500000px;}
@media print{
.v1_c00221{vertical-align:-55.056000pt;}
.v0_c00221{vertical-align:0.000000pt;}
.lsb_c00221{letter-spacing:-2.110485pt;}
.ls10_c00221{letter-spacing:-1.424578pt;}
.lsf_c00221{letter-spacing:-1.160767pt;}
.lsc_c00221{letter-spacing:-0.393956pt;}
.lse_c00221{letter-spacing:-0.158286pt;}
.lsa_c00221{letter-spacing:-0.106880pt;}
.ls9_c00221{letter-spacing:0.000000pt;}
.ls11_c00221{letter-spacing:1.108005pt;}
.lsd_c00221{letter-spacing:1.582864pt;}
.ls3_c00221{letter-spacing:308.183621pt;}
.ls5_c00221{letter-spacing:315.200985pt;}
.ls1_c00221{letter-spacing:332.770775pt;}
.ls6_c00221{letter-spacing:339.840901pt;}
.ls7_c00221{letter-spacing:357.410691pt;}
.ls2_c00221{letter-spacing:382.050607pt;}
.ls8_c00221{letter-spacing:389.067971pt;}
.ls4_c00221{letter-spacing:406.637762pt;}
.ls0_c00221{letter-spacing:1017.120000pt;}
.ws0_c00221{word-spacing:-13.253120pt;}
.ws11_c00221{word-spacing:-13.032247pt;}
.wsd_c00221{word-spacing:-12.325203pt;}
.wse_c00221{word-spacing:-11.765956pt;}
.wsf_c00221{word-spacing:-10.763475pt;}
.ws10_c00221{word-spacing:-10.499665pt;}
.ws3_c00221{word-spacing:-9.813757pt;}
.ws16_c00221{word-spacing:-2.954679pt;}
.ws14_c00221{word-spacing:-1.371815pt;}
.ws13_c00221{word-spacing:-0.144000pt;}
.ws12_c00221{word-spacing:0.000000pt;}
.ws17_c00221{word-spacing:0.052762pt;}
.ws15_c00221{word-spacing:2.110485pt;}
.ws1_c00221{word-spacing:109.265102pt;}
.wsc_c00221{word-spacing:109.275654pt;}
.ws5_c00221{word-spacing:109.280931pt;}
.ws7_c00221{word-spacing:109.286207pt;}
.wsb_c00221{word-spacing:109.291483pt;}
.ws4_c00221{word-spacing:123.743031pt;}
.ws6_c00221{word-spacing:165.530641pt;}
.ws2_c00221{word-spacing:165.546470pt;}
.ws8_c00221{word-spacing:165.562298pt;}
.ws9_c00221{word-spacing:165.567574pt;}
.wsa_c00221{word-spacing:165.588679pt;}
._5_c00221{margin-left:-299.108534pt;}
._4_c00221{margin-left:-242.790233pt;}
._f_c00221{margin-left:-2.796393pt;}
._10_c00221{margin-left:-1.830846pt;}
._11_c00221{margin-left:-0.896956pt;}
._e_c00221{width:1.041170pt;}
._12_c00221{width:1.989132pt;}
._0_c00221{width:2.886089pt;}
._8_c00221{width:4.220971pt;}
._a_c00221{width:133.620103pt;}
._7_c00221{width:140.568876pt;}
._b_c00221{width:154.323964pt;}
._1_c00221{width:158.175600pt;}
._c_c00221{width:165.277383pt;}
._9_c00221{width:182.783859pt;}
._2_c00221{width:192.951122pt;}
._3_c00221{width:207.423775pt;}
._d_c00221{width:215.174532pt;}
._6_c00221{width:232.095348pt;}
.fs0_c00221{font-size:48.000000pt;}
.fs3_c00221{font-size:52.762133pt;}
.fs2_c00221{font-size:53.440000pt;}
.fs4_c00221{font-size:56.279467pt;}
.fs1_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y25_c00221{bottom:5.337680pt;}
.y3c_c00221{bottom:13.189867pt;}
.y2d_c00221{bottom:13.190000pt;}
.y27_c00221{bottom:13.190133pt;}
.y29_c00221{bottom:13.190267pt;}
.y37_c00221{bottom:13.190400pt;}
.y33_c00221{bottom:13.190533pt;}
.y2f_c00221{bottom:13.190667pt;}
.y2b_c00221{bottom:13.190800pt;}
.y39_c00221{bottom:13.190933pt;}
.y35_c00221{bottom:13.191067pt;}
.y31_c00221{bottom:13.191200pt;}
.y24_c00221{bottom:22.920661pt;}
.y23_c00221{bottom:41.387408pt;}
.y40_c00221{bottom:50.960000pt;}
.y22_c00221{bottom:58.970389pt;}
.y21_c00221{bottom:77.437135pt;}
.y20_c00221{bottom:95.020116pt;}
.y1f_c00221{bottom:113.486863pt;}
.y6_c00221{bottom:118.160000pt;}
.y5_c00221{bottom:130.400000pt;}
.y1e_c00221{bottom:131.069844pt;}
.y7_c00221{bottom:131.269333pt;}
.y26_c00221{bottom:132.149333pt;}
.y1d_c00221{bottom:149.536591pt;}
.y1c_c00221{bottom:167.119572pt;}
.y38_c00221{bottom:168.202667pt;}
.y1b_c00221{bottom:185.586318pt;}
.y1a_c00221{bottom:203.169299pt;}
.y36_c00221{bottom:204.257333pt;}
.y19_c00221{bottom:221.636046pt;}
.y18_c00221{bottom:239.219027pt;}
.y34_c00221{bottom:240.310667pt;}
.y17_c00221{bottom:257.685773pt;}
.y16_c00221{bottom:275.268754pt;}
.y32_c00221{bottom:276.365333pt;}
.y15_c00221{bottom:293.735501pt;}
.y14_c00221{bottom:311.318482pt;}
.y30_c00221{bottom:312.418667pt;}
.y13_c00221{bottom:329.785229pt;}
.y12_c00221{bottom:347.368210pt;}
.y2e_c00221{bottom:348.473333pt;}
.y11_c00221{bottom:365.834956pt;}
.y10_c00221{bottom:383.417937pt;}
.y2c_c00221{bottom:384.528000pt;}
.yf_c00221{bottom:401.884684pt;}
.ye_c00221{bottom:419.467665pt;}
.y2a_c00221{bottom:420.581333pt;}
.yd_c00221{bottom:437.934411pt;}
.yc_c00221{bottom:455.517392pt;}
.y28_c00221{bottom:456.636000pt;}
.yb_c00221{bottom:473.984139pt;}
.ya_c00221{bottom:491.567120pt;}
.y3f_c00221{bottom:492.689333pt;}
.y9_c00221{bottom:510.038086pt;}
.y8_c00221{bottom:527.621067pt;}
.y3e_c00221{bottom:528.744000pt;}
.y3d_c00221{bottom:564.797333pt;}
.y3a_c00221{bottom:600.852000pt;}
.y3b_c00221{bottom:636.906667pt;}
.y4_c00221{bottom:676.640000pt;}
.y3_c00221{bottom:694.316000pt;}
.y2_c00221{bottom:708.080000pt;}
.y1_c00221{bottom:735.680000pt;}
.h8_c00221{height:35.174667pt;}
.ha_c00221{height:35.176000pt;}
.h7_c00221{height:39.236684pt;}
.h9_c00221{height:41.852357pt;}
.hb_c00221{height:43.513302pt;}
.h2_c00221{height:47.109375pt;}
.h5_c00221{height:53.857500pt;}
.h3_c00221{height:62.812500pt;}
.h4_c00221{height:64.500000pt;}
.h6_c00221{height:540.810667pt;}
.h0_c00221{height:793.840000pt;}
.h1_c00221{height:794.000000pt;}
.w4_c00221{width:21.904000pt;}
.w6_c00221{width:70.768000pt;}
.w3_c00221{width:81.718667pt;}
.w5_c00221{width:122.157333pt;}
.w2_c00221{width:931.765333pt;}
.w0_c00221{width:1122.560000pt;}
.w1_c00221{width:1122.666667pt;}
.x0_c00221{left:0.000000pt;}
.xf_c00221{left:1.686000pt;}
.xd_c00221{left:5.054533pt;}
.xb_c00221{left:16.007067pt;}
.xc_c00221{left:17.692000pt;}
.x9_c00221{left:19.376933pt;}
.xa_c00221{left:21.061867pt;}
.x12_c00221{left:26.959333pt;}
.x11_c00221{left:29.486667pt;}
.x2_c00221{left:94.560000pt;}
.xe_c00221{left:118.148000pt;}
.x7_c00221{left:160.169815pt;}
.x6_c00221{left:166.020716pt;}
.x5_c00221{left:175.232267pt;}
.x1_c00221{left:561.280000pt;}
.x8_c00221{left:872.996000pt;}
.x10_c00221{left:955.557333pt;}
.x4_c00221{left:968.480000pt;}
.x3_c00221{left:1028.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_76d767ee6db647584e78ac7f.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.284668;font-style:normal;font-weight:normal;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_f02a0b000d54b9e1205078e1.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_d89d80d04f1e83588cca6656.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00222;src:url('chunks/assets/font_533007af8ad7e28706025d7d.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:1.002930;font-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_c00222{transform:matrix(0.241359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241359,0.000000,0.000000,0.250000,0,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);}
.v1_c00222{vertical-align:-61.920000px;}
.v0_c00222{vertical-align:0.000000px;}
.lsc_c00222{letter-spacing:-2.356080px;}
.lse_c00222{letter-spacing:-1.590354px;}
.lsd_c00222{letter-spacing:-0.439803px;}
.ls10_c00222{letter-spacing:-0.176706px;}
.lsb_c00222{letter-spacing:-0.120240px;}
.ls9_c00222{letter-spacing:-0.108000px;}
.lsa_c00222{letter-spacing:0.000000px;}
.lsf_c00222{letter-spacing:1.767060px;}
.ls7_c00222{letter-spacing:316.539348px;}
.ls4_c00222{letter-spacing:351.880548px;}
.ls3_c00222{letter-spacing:371.494914px;}
.ls1_c00222{letter-spacing:379.387782px;}
.ls6_c00222{letter-spacing:399.002148px;}
.ls5_c00222{letter-spacing:426.509382px;}
.ls8_c00222{letter-spacing:434.343348px;}
.ls2_c00222{letter-spacing:453.957714px;}
.ls0_c00222{letter-spacing:725.580000px;}
.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:-18.000000px;}
.wsf_c00222{word-spacing:-15.078912px;}
.ws0_c00222{word-spacing:-14.909760px;}
.wsd_c00222{word-spacing:-13.759551px;}
.ws10_c00222{word-spacing:-13.135146px;}
.wse_c00222{word-spacing:-11.721498px;}
.ws4_c00222{word-spacing:-10.955772px;}
.ws14_c00222{word-spacing:-1.531452px;}
.ws11_c00222{word-spacing:0.000000px;}
.ws16_c00222{word-spacing:0.058902px;}
.ws13_c00222{word-spacing:0.162000px;}
.ws12_c00222{word-spacing:0.270000px;}
.ws15_c00222{word-spacing:2.356080px;}
.ws8_c00222{word-spacing:110.653297px;}
.wsb_c00222{word-spacing:121.962481px;}
.ws7_c00222{word-spacing:121.980152px;}
.ws6_c00222{word-spacing:121.986042px;}
.wsc_c00222{word-spacing:122.003713px;}
.ws2_c00222{word-spacing:122.009603px;}
.ws9_c00222{word-spacing:184.769684px;}
.ws5_c00222{word-spacing:184.810915px;}
.ws3_c00222{word-spacing:184.834476px;}
.wsa_c00222{word-spacing:184.840366px;}
._9_c00222{margin-left:-334.798968px;}
._7_c00222{margin-left:-333.509014px;}
._6_c00222{margin-left:-271.302612px;}
._12_c00222{margin-left:-3.433987px;}
._13_c00222{margin-left:-2.265509px;}
._1_c00222{margin-left:-1.058400px;}
._0_c00222{width:1.225800px;}
._14_c00222{width:2.312933px;}
._2_c00222{width:3.339743px;}
._11_c00222{width:4.617917px;}
._f_c00222{width:132.617853px;}
._a_c00222{width:156.832465px;}
._4_c00222{width:172.736005px;}
._8_c00222{width:176.446831px;}
._3_c00222{width:184.298468px;}
._d_c00222{width:203.971736px;}
._b_c00222{width:215.911171px;}
._c_c00222{width:231.437738px;}
._10_c00222{width:239.289375px;}
._e_c00222{width:242.794044px;}
._5_c00222{width:258.903741px;}
.fc0_c00222{color:rgb(0,0,0);}
.fs0_c00222{font-size:54.000000px;}
.fs3_c00222{font-size:58.902000px;}
.fs2_c00222{font-size:60.120000px;}
.fs4_c00222{font-size:62.829000px;}
.fs1_c00222{font-size:72.000000px;}
.y0_c00222{bottom:0.000000px;}
.y25_c00222{bottom:5.965178px;}
.y3f_c00222{bottom:14.724600px;}
.y2d_c00222{bottom:14.724750px;}
.y36_c00222{bottom:14.725050px;}
.y32_c00222{bottom:14.725200px;}
.y34_c00222{bottom:14.725350px;}
.y29_c00222{bottom:14.725500px;}
.y27_c00222{bottom:14.725650px;}
.y40_c00222{bottom:14.725800px;}
.y2f_c00222{bottom:14.725950px;}
.y38_c00222{bottom:14.726250px;}
.y3d_c00222{bottom:14.726400px;}
.y2b_c00222{bottom:14.726550px;}
.y24_c00222{bottom:25.594269px;}
.y23_c00222{bottom:46.209969px;}
.y41_c00222{bottom:57.330000px;}
.y22_c00222{bottom:65.839061px;}
.y21_c00222{bottom:86.454761px;}
.y20_c00222{bottom:106.083852px;}
.y1f_c00222{bottom:126.699552px;}
.y6_c00222{bottom:134.730000px;}
.y1e_c00222{bottom:146.328644px;}
.y5_c00222{bottom:151.380000px;}
.y7_c00222{bottom:152.352000px;}
.y31_c00222{bottom:153.333000px;}
.y1d_c00222{bottom:166.944344px;}
.y1c_c00222{bottom:186.573435px;}
.y30_c00222{bottom:193.582500px;}
.y1b_c00222{bottom:207.189135px;}
.y1a_c00222{bottom:226.818227px;}
.y2e_c00222{bottom:233.832000px;}
.y19_c00222{bottom:247.433927px;}
.y18_c00222{bottom:267.063018px;}
.y2c_c00222{bottom:274.083000px;}
.y17_c00222{bottom:287.678718px;}
.y16_c00222{bottom:307.307810px;}
.y2a_c00222{bottom:314.331000px;}
.y15_c00222{bottom:327.923510px;}
.y14_c00222{bottom:347.552601px;}
.y28_c00222{bottom:354.582000px;}
.y13_c00222{bottom:368.168301px;}
.y12_c00222{bottom:387.797393px;}
.y26_c00222{bottom:394.831500px;}
.y11_c00222{bottom:408.413093px;}
.y10_c00222{bottom:428.042184px;}
.y3e_c00222{bottom:435.082500px;}
.yf_c00222{bottom:448.657884px;}
.ye_c00222{bottom:468.286976px;}
.y3c_c00222{bottom:475.330500px;}
.yd_c00222{bottom:488.902675px;}
.yc_c00222{bottom:508.531767px;}
.y3b_c00222{bottom:515.581500px;}
.yb_c00222{bottom:529.147467px;}
.ya_c00222{bottom:548.776559px;}
.y3a_c00222{bottom:555.831000px;}
.y9_c00222{bottom:569.392259px;}
.y8_c00222{bottom:589.021350px;}
.y39_c00222{bottom:596.080500px;}
.y37_c00222{bottom:636.330000px;}
.y35_c00222{bottom:676.581000px;}
.y33_c00222{bottom:716.830500px;}
.y4_c00222{bottom:761.220000px;}
.y3_c00222{bottom:781.110000px;}
.y2_c00222{bottom:796.594500px;}
.y1_c00222{bottom:827.640000px;}
.h7_c00222{height:39.267000px;}
.h9_c00222{height:39.268500px;}
.h6_c00222{height:43.802610px;}
.h8_c00222{height:46.722933px;}
.ha_c00222{height:48.576894px;}
.h2_c00222{height:52.998047px;}
.h3_c00222{height:70.664062px;}
.h4_c00222{height:72.562500px;}
.h5_c00222{height:603.747000px;}
.h0_c00222{height:893.070000px;}
.h1_c00222{height:893.250000px;}
.w4_c00222{width:24.642000px;}
.w6_c00222{width:79.612500px;}
.w3_c00222{width:91.933500px;}
.w5_c00222{width:137.427000px;}
.w2_c00222{width:1048.234500px;}
.w0_c00222{width:1262.880000px;}
.w1_c00222{width:1263.000000px;}
.x0_c00222{left:0.000000px;}
.x11_c00222{left:1.896600px;}
.xf_c00222{left:5.686350px;}
.xa_c00222{left:14.216850px;}
.xc_c00222{left:18.007950px;}
.xb_c00222{left:19.903500px;}
.x9_c00222{left:21.799050px;}
.xe_c00222{left:23.694600px;}
.xd_c00222{left:27.485550px;}
.x15_c00222{left:30.329100px;}
.x13_c00222{left:33.172350px;}
.x14_c00222{left:36.963300px;}
.x2_c00222{left:106.380000px;}
.x10_c00222{left:132.916500px;}
.x5_c00222{left:186.710700px;}
.x6_c00222{left:197.117215px;}
.x7_c00222{left:203.827426px;}
.x1_c00222{left:631.440000px;}
.x8_c00222{left:982.120500px;}
.x12_c00222{left:1075.002000px;}
.x4_c00222{left:1087.290000px;}
.x16_c00222{left:1129.590000px;}
.x3_c00222{left:1156.500000px;}
@media print{
.v1_c00222{vertical-align:-55.040000pt;}
.v0_c00222{vertical-align:0.000000pt;}
.lsc_c00222{letter-spacing:-2.094293pt;}
.lse_c00222{letter-spacing:-1.413648pt;}
.lsd_c00222{letter-spacing:-0.390936pt;}
.ls10_c00222{letter-spacing:-0.157072pt;}
.lsb_c00222{letter-spacing:-0.106880pt;}
.ls9_c00222{letter-spacing:-0.096000pt;}
.lsa_c00222{letter-spacing:0.000000pt;}
.lsf_c00222{letter-spacing:1.570720pt;}
.ls7_c00222{letter-spacing:281.368309pt;}
.ls4_c00222{letter-spacing:312.782709pt;}
.ls3_c00222{letter-spacing:330.217701pt;}
.ls1_c00222{letter-spacing:337.233584pt;}
.ls6_c00222{letter-spacing:354.668576pt;}
.ls5_c00222{letter-spacing:379.119451pt;}
.ls8_c00222{letter-spacing:386.082976pt;}
.ls2_c00222{letter-spacing:403.517968pt;}
.ls0_c00222{letter-spacing:644.960000pt;}
.ws1_c00222{word-spacing:-16.000000pt;}
.wsf_c00222{word-spacing:-13.403477pt;}
.ws0_c00222{word-spacing:-13.253120pt;}
.wsd_c00222{word-spacing:-12.230712pt;}
.ws10_c00222{word-spacing:-11.675685pt;}
.wse_c00222{word-spacing:-10.419109pt;}
.ws4_c00222{word-spacing:-9.738464pt;}
.ws14_c00222{word-spacing:-1.361291pt;}
.ws11_c00222{word-spacing:0.000000pt;}
.ws16_c00222{word-spacing:0.052357pt;}
.ws13_c00222{word-spacing:0.144000pt;}
.ws12_c00222{word-spacing:0.240000pt;}
.ws15_c00222{word-spacing:2.094293pt;}
.ws8_c00222{word-spacing:98.358486pt;}
.wsb_c00222{word-spacing:108.411094pt;}
.ws7_c00222{word-spacing:108.426802pt;}
.ws6_c00222{word-spacing:108.432037pt;}
.wsc_c00222{word-spacing:108.447745pt;}
.ws2_c00222{word-spacing:108.452980pt;}
.ws9_c00222{word-spacing:164.239719pt;}
.ws5_c00222{word-spacing:164.276369pt;}
.ws3_c00222{word-spacing:164.297312pt;}
.wsa_c00222{word-spacing:164.302548pt;}
._9_c00222{margin-left:-297.599083pt;}
._7_c00222{margin-left:-296.452457pt;}
._6_c00222{margin-left:-241.157877pt;}
._12_c00222{margin-left:-3.052433pt;}
._13_c00222{margin-left:-2.013786pt;}
._1_c00222{margin-left:-0.940800pt;}
._0_c00222{width:1.089600pt;}
._14_c00222{width:2.055941pt;}
._2_c00222{width:2.968661pt;}
._11_c00222{width:4.104815pt;}
._f_c00222{width:117.882536pt;}
._a_c00222{width:139.406636pt;}
._4_c00222{width:153.543116pt;}
._8_c00222{width:156.841628pt;}
._3_c00222{width:163.820860pt;}
._d_c00222{width:181.308210pt;}
._b_c00222{width:191.921041pt;}
._c_c00222{width:205.722434pt;}
._10_c00222{width:212.701667pt;}
._e_c00222{width:215.816928pt;}
._5_c00222{width:230.136659pt;}
.fs0_c00222{font-size:48.000000pt;}
.fs3_c00222{font-size:52.357333pt;}
.fs2_c00222{font-size:53.440000pt;}
.fs4_c00222{font-size:55.848000pt;}
.fs1_c00222{font-size:64.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y25_c00222{bottom:5.302380pt;}
.y3f_c00222{bottom:13.088533pt;}
.y2d_c00222{bottom:13.088667pt;}
.y36_c00222{bottom:13.088933pt;}
.y32_c00222{bottom:13.089067pt;}
.y34_c00222{bottom:13.089200pt;}
.y29_c00222{bottom:13.089333pt;}
.y27_c00222{bottom:13.089467pt;}
.y40_c00222{bottom:13.089600pt;}
.y2f_c00222{bottom:13.089733pt;}
.y38_c00222{bottom:13.090000pt;}
.y3d_c00222{bottom:13.090133pt;}
.y2b_c00222{bottom:13.090267pt;}
.y24_c00222{bottom:22.750461pt;}
.y23_c00222{bottom:41.075528pt;}
.y41_c00222{bottom:50.960000pt;}
.y22_c00222{bottom:58.523609pt;}
.y21_c00222{bottom:76.848676pt;}
.y20_c00222{bottom:94.296757pt;}
.y1f_c00222{bottom:112.621824pt;}
.y6_c00222{bottom:119.760000pt;}
.y1e_c00222{bottom:130.069905pt;}
.y5_c00222{bottom:134.560000pt;}
.y7_c00222{bottom:135.424000pt;}
.y31_c00222{bottom:136.296000pt;}
.y1d_c00222{bottom:148.394972pt;}
.y1c_c00222{bottom:165.843053pt;}
.y30_c00222{bottom:172.073333pt;}
.y1b_c00222{bottom:184.168120pt;}
.y1a_c00222{bottom:201.616201pt;}
.y2e_c00222{bottom:207.850667pt;}
.y19_c00222{bottom:219.941268pt;}
.y18_c00222{bottom:237.389349pt;}
.y2c_c00222{bottom:243.629333pt;}
.y17_c00222{bottom:255.714416pt;}
.y16_c00222{bottom:273.162497pt;}
.y2a_c00222{bottom:279.405333pt;}
.y15_c00222{bottom:291.487564pt;}
.y14_c00222{bottom:308.935645pt;}
.y28_c00222{bottom:315.184000pt;}
.y13_c00222{bottom:327.260712pt;}
.y12_c00222{bottom:344.708793pt;}
.y26_c00222{bottom:350.961333pt;}
.y11_c00222{bottom:363.033860pt;}
.y10_c00222{bottom:380.481941pt;}
.y3e_c00222{bottom:386.740000pt;}
.yf_c00222{bottom:398.807008pt;}
.ye_c00222{bottom:416.255089pt;}
.y3c_c00222{bottom:422.516000pt;}
.yd_c00222{bottom:434.580156pt;}
.yc_c00222{bottom:452.028237pt;}
.y3b_c00222{bottom:458.294667pt;}
.yb_c00222{bottom:470.353304pt;}
.ya_c00222{bottom:487.801385pt;}
.y3a_c00222{bottom:494.072000pt;}
.y9_c00222{bottom:506.126452pt;}
.y8_c00222{bottom:523.574533pt;}
.y39_c00222{bottom:529.849333pt;}
.y37_c00222{bottom:565.626667pt;}
.y35_c00222{bottom:601.405333pt;}
.y33_c00222{bottom:637.182667pt;}
.y4_c00222{bottom:676.640000pt;}
.y3_c00222{bottom:694.320000pt;}
.y2_c00222{bottom:708.084000pt;}
.y1_c00222{bottom:735.680000pt;}
.h7_c00222{height:34.904000pt;}
.h9_c00222{height:34.905333pt;}
.h6_c00222{height:38.935654pt;}
.h8_c00222{height:41.531496pt;}
.ha_c00222{height:43.179461pt;}
.h2_c00222{height:47.109375pt;}
.h3_c00222{height:62.812500pt;}
.h4_c00222{height:64.500000pt;}
.h5_c00222{height:536.664000pt;}
.h0_c00222{height:793.840000pt;}
.h1_c00222{height:794.000000pt;}
.w4_c00222{width:21.904000pt;}
.w6_c00222{width:70.766667pt;}
.w3_c00222{width:81.718667pt;}
.w5_c00222{width:122.157333pt;}
.w2_c00222{width:931.764000pt;}
.w0_c00222{width:1122.560000pt;}
.w1_c00222{width:1122.666667pt;}
.x0_c00222{left:0.000000pt;}
.x11_c00222{left:1.685867pt;}
.xf_c00222{left:5.054533pt;}
.xa_c00222{left:12.637200pt;}
.xc_c00222{left:16.007067pt;}
.xb_c00222{left:17.692000pt;}
.x9_c00222{left:19.376933pt;}
.xe_c00222{left:21.061867pt;}
.xd_c00222{left:24.431600pt;}
.x15_c00222{left:26.959200pt;}
.x13_c00222{left:29.486533pt;}
.x14_c00222{left:32.856267pt;}
.x2_c00222{left:94.560000pt;}
.x10_c00222{left:118.148000pt;}
.x5_c00222{left:165.965067pt;}
.x6_c00222{left:175.215302pt;}
.x7_c00222{left:181.179934pt;}
.x1_c00222{left:561.280000pt;}
.x8_c00222{left:872.996000pt;}
.x12_c00222{left:955.557333pt;}
.x4_c00222{left:966.480000pt;}
.x16_c00222{left:1004.080000pt;}
.x3_c00222{left:1028.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_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_7a70ae1ecb21f984ee462402.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00223;src:url('chunks/assets/font_94912885c15c7671e067ee22.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_1463d10ed0e82fd8b4f8d136.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.002930;font-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_c00223{transform:matrix(0.240607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240607,0.000000,0.000000,0.250000,0,0);}
.m2_c00223{transform:matrix(0.240609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240609,0.000000,0.000000,0.250000,0,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);}
.v1_c00223{vertical-align:-61.938000px;}
.v0_c00223{vertical-align:0.000000px;}
.lsa_c00223{letter-spacing:-2.363448px;}
.ls11_c00223{letter-spacing:-1.654414px;}
.lsd_c00223{letter-spacing:-1.595327px;}
.lsc_c00223{letter-spacing:-0.768121px;}
.lsb_c00223{letter-spacing:-0.441176px;}
.lse_c00223{letter-spacing:-0.177259px;}
.ls9_c00223{letter-spacing:-0.120240px;}
.ls8_c00223{letter-spacing:0.000000px;}
.ls10_c00223{letter-spacing:0.177259px;}
.lsf_c00223{letter-spacing:1.240810px;}
.ls7_c00223{letter-spacing:345.122494px;}
.ls4_c00223{letter-spacing:352.980959px;}
.ls1_c00223{letter-spacing:372.656663px;}
.ls6_c00223{letter-spacing:380.574214px;}
.ls3_c00223{letter-spacing:400.249919px;}
.ls2_c00223{letter-spacing:427.843174px;}
.ls5_c00223{letter-spacing:455.377343px;}
.ls0_c00223{letter-spacing:1144.260000px;}
.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:-18.000000px;}
.ws0_c00223{word-spacing:-14.909760px;}
.wsf_c00223{word-spacing:-14.594291px;}
.wsc_c00223{word-spacing:-13.802519px;}
.ws10_c00223{word-spacing:-13.530740px;}
.wse_c00223{word-spacing:-13.176223px;}
.ws11_c00223{word-spacing:-12.585361px;}
.wsd_c00223{word-spacing:-11.758154px;}
.ws12_c00223{word-spacing:-11.699068px;}
.ws5_c00223{word-spacing:-10.990033px;}
.ws15_c00223{word-spacing:-1.536241px;}
.ws18_c00223{word-spacing:-1.358983px;}
.ws17_c00223{word-spacing:-0.768121px;}
.ws14_c00223{word-spacing:-0.162000px;}
.ws13_c00223{word-spacing:0.000000px;}
.ws19_c00223{word-spacing:0.177259px;}
.ws16_c00223{word-spacing:2.363448px;}
.wsa_c00223{word-spacing:122.326160px;}
.wsb_c00223{word-spacing:122.332068px;}
.ws3_c00223{word-spacing:122.379337px;}
.ws6_c00223{word-spacing:122.385246px;}
.ws2_c00223{word-spacing:166.144486px;}
.ws4_c00223{word-spacing:185.371135px;}
.ws8_c00223{word-spacing:185.406587px;}
.ws9_c00223{word-spacing:185.418404px;}
.ws7_c00223{word-spacing:185.436130px;}
._4_c00223{margin-left:-334.941942px;}
._3_c00223{margin-left:-271.908784px;}
._11_c00223{margin-left:-3.562898px;}
._10_c00223{margin-left:-1.329435px;}
._f_c00223{width:1.165966px;}
._12_c00223{width:2.186189px;}
._0_c00223{width:3.232015px;}
._9_c00223{width:4.639904px;}
._e_c00223{width:145.192519px;}
._b_c00223{width:149.558989px;}
._6_c00223{width:157.482449px;}
._d_c00223{width:172.915764px;}
._5_c00223{width:177.229057px;}
._a_c00223{width:185.016618px;}
._8_c00223{width:204.692323px;}
._1_c00223{width:216.095959px;}
._2_c00223{width:232.307575px;}
._c_c00223{width:243.630128px;}
._7_c00223{width:260.599685px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs0_c00223{font-size:54.000000px;}
.fs3_c00223{font-size:59.086200px;}
.fs2_c00223{font-size:60.120000px;}
.fs4_c00223{font-size:63.025200px;}
.fs1_c00223{font-size:72.000000px;}
.y0_c00223{bottom:0.000000px;}
.y25_c00223{bottom:5.979178px;}
.y41_c00223{bottom:14.770050px;}
.y33_c00223{bottom:14.770200px;}
.y42_c00223{bottom:14.770350px;}
.y2b_c00223{bottom:14.770500px;}
.y38_c00223{bottom:14.770800px;}
.y3e_c00223{bottom:14.770950px;}
.y35_c00223{bottom:14.771100px;}
.y31_c00223{bottom:14.771550px;}
.y40_c00223{bottom:14.771700px;}
.y27_c00223{bottom:14.771850px;}
.y2d_c00223{bottom:14.772000px;}
.y2f_c00223{bottom:14.772150px;}
.y3a_c00223{bottom:14.772300px;}
.y3c_c00223{bottom:14.772450px;}
.y24_c00223{bottom:25.669654px;}
.y23_c00223{bottom:46.349824px;}
.y43_c00223{bottom:57.330000px;}
.y22_c00223{bottom:66.040300px;}
.y21_c00223{bottom:86.720470px;}
.y20_c00223{bottom:106.410946px;}
.y1f_c00223{bottom:127.091116px;}
.y6_c00223{bottom:132.840000px;}
.y1e_c00223{bottom:146.781592px;}
.y5_c00223{bottom:149.580000px;}
.y7_c00223{bottom:150.465000px;}
.y34_c00223{bottom:151.449000px;}
.y1d_c00223{bottom:167.461762px;}
.y1c_c00223{bottom:187.152239px;}
.y3f_c00223{bottom:191.824500px;}
.y1b_c00223{bottom:207.832409px;}
.y1a_c00223{bottom:227.522885px;}
.y3d_c00223{bottom:232.200000px;}
.y19_c00223{bottom:248.203055px;}
.y18_c00223{bottom:267.893531px;}
.y3b_c00223{bottom:272.574000px;}
.y17_c00223{bottom:288.573701px;}
.y16_c00223{bottom:308.264177px;}
.y39_c00223{bottom:312.949500px;}
.y15_c00223{bottom:328.944347px;}
.y14_c00223{bottom:348.634823px;}
.y37_c00223{bottom:353.326500px;}
.y13_c00223{bottom:369.314993px;}
.y12_c00223{bottom:389.005469px;}
.y36_c00223{bottom:393.700500px;}
.y11_c00223{bottom:409.685639px;}
.y10_c00223{bottom:429.376115px;}
.y2e_c00223{bottom:434.076000px;}
.yf_c00223{bottom:450.056285px;}
.ye_c00223{bottom:469.746762px;}
.y2c_c00223{bottom:474.451500px;}
.yd_c00223{bottom:490.426932px;}
.yc_c00223{bottom:510.117408px;}
.y2a_c00223{bottom:514.828500px;}
.yb_c00223{bottom:530.797578px;}
.ya_c00223{bottom:550.488054px;}
.y29_c00223{bottom:555.202500px;}
.y9_c00223{bottom:571.168224px;}
.y8_c00223{bottom:590.858850px;}
.y28_c00223{bottom:595.578000px;}
.y26_c00223{bottom:635.953500px;}
.y32_c00223{bottom:676.330500px;}
.y30_c00223{bottom:716.704500px;}
.y4_c00223{bottom:761.220000px;}
.y3_c00223{bottom:781.105500px;}
.y2_c00223{bottom:796.590000px;}
.y1_c00223{bottom:827.640000px;}
.h7_c00223{height:39.390000px;}
.h9_c00223{height:39.391500px;}
.h6_c00223{height:43.939591px;}
.h8_c00223{height:46.868838px;}
.ha_c00223{height:48.728805px;}
.h2_c00223{height:52.998047px;}
.h3_c00223{height:70.664062px;}
.h4_c00223{height:72.562500px;}
.h5_c00223{height:605.631000px;}
.h0_c00223{height:893.070000px;}
.h1_c00223{height:893.250000px;}
.w4_c00223{width:24.642000px;}
.w6_c00223{width:79.612500px;}
.w3_c00223{width:91.933500px;}
.w5_c00223{width:137.427000px;}
.w2_c00223{width:1048.234500px;}
.w0_c00223{width:1262.880000px;}
.w1_c00223{width:1263.000000px;}
.x0_c00223{left:0.000000px;}
.xd_c00223{left:1.895250px;}
.xf_c00223{left:5.686350px;}
.xb_c00223{left:16.112250px;}
.xc_c00223{left:19.903350px;}
.xa_c00223{left:21.799050px;}
.x12_c00223{left:30.329100px;}
.x11_c00223{left:33.172350px;}
.x13_c00223{left:36.963300px;}
.x2_c00223{left:106.380000px;}
.xe_c00223{left:132.916500px;}
.x8_c00223{left:180.285029px;}
.x6_c00223{left:186.725127px;}
.x5_c00223{left:197.136300px;}
.x7_c00223{left:203.813420px;}
.x1_c00223{left:631.440000px;}
.x9_c00223{left:982.120500px;}
.x10_c00223{left:1075.002000px;}
.x4_c00223{left:1087.290000px;}
.x3_c00223{left:1156.500000px;}
@media print{
.v1_c00223{vertical-align:-55.056000pt;}
.v0_c00223{vertical-align:0.000000pt;}
.lsa_c00223{letter-spacing:-2.100843pt;}
.ls11_c00223{letter-spacing:-1.470590pt;}
.lsd_c00223{letter-spacing:-1.418069pt;}
.lsc_c00223{letter-spacing:-0.682774pt;}
.lsb_c00223{letter-spacing:-0.392157pt;}
.lse_c00223{letter-spacing:-0.157563pt;}
.ls9_c00223{letter-spacing:-0.106880pt;}
.ls8_c00223{letter-spacing:0.000000pt;}
.ls10_c00223{letter-spacing:0.157563pt;}
.lsf_c00223{letter-spacing:1.102942pt;}
.ls7_c00223{letter-spacing:306.775550pt;}
.ls4_c00223{letter-spacing:313.760852pt;}
.ls1_c00223{letter-spacing:331.250367pt;}
.ls6_c00223{letter-spacing:338.288190pt;}
.ls3_c00223{letter-spacing:355.777706pt;}
.ls2_c00223{letter-spacing:380.305044pt;}
.ls5_c00223{letter-spacing:404.779861pt;}
.ls0_c00223{letter-spacing:1017.120000pt;}
.ws1_c00223{word-spacing:-16.000000pt;}
.ws0_c00223{word-spacing:-13.253120pt;}
.wsf_c00223{word-spacing:-12.972703pt;}
.wsc_c00223{word-spacing:-12.268906pt;}
.ws10_c00223{word-spacing:-12.027324pt;}
.wse_c00223{word-spacing:-11.712198pt;}
.ws11_c00223{word-spacing:-11.186987pt;}
.wsd_c00223{word-spacing:-10.451692pt;}
.ws12_c00223{word-spacing:-10.399171pt;}
.ws5_c00223{word-spacing:-9.768918pt;}
.ws15_c00223{word-spacing:-1.365548pt;}
.ws18_c00223{word-spacing:-1.207985pt;}
.ws17_c00223{word-spacing:-0.682774pt;}
.ws14_c00223{word-spacing:-0.144000pt;}
.ws13_c00223{word-spacing:0.000000pt;}
.ws19_c00223{word-spacing:0.157563pt;}
.ws16_c00223{word-spacing:2.100843pt;}
.wsa_c00223{word-spacing:108.734364pt;}
.wsb_c00223{word-spacing:108.739616pt;}
.ws3_c00223{word-spacing:108.781633pt;}
.ws6_c00223{word-spacing:108.786885pt;}
.ws2_c00223{word-spacing:147.683987pt;}
.ws4_c00223{word-spacing:164.774342pt;}
.ws8_c00223{word-spacing:164.805855pt;}
.ws9_c00223{word-spacing:164.816359pt;}
.ws7_c00223{word-spacing:164.832116pt;}
._4_c00223{margin-left:-297.726171pt;}
._3_c00223{margin-left:-241.696697pt;}
._11_c00223{margin-left:-3.167020pt;}
._10_c00223{margin-left:-1.181720pt;}
._f_c00223{width:1.036414pt;}
._12_c00223{width:1.943279pt;}
._0_c00223{width:2.872902pt;}
._9_c00223{width:4.124359pt;}
._e_c00223{width:129.060017pt;}
._b_c00223{width:132.941324pt;}
._6_c00223{width:139.984399pt;}
._d_c00223{width:153.702902pt;}
._5_c00223{width:157.536939pt;}
._a_c00223{width:164.459216pt;}
._8_c00223{width:181.948731pt;}
._1_c00223{width:192.085297pt;}
._2_c00223{width:206.495623pt;}
._c_c00223{width:216.560114pt;}
._7_c00223{width:231.644165pt;}
.fs0_c00223{font-size:48.000000pt;}
.fs3_c00223{font-size:52.521067pt;}
.fs2_c00223{font-size:53.440000pt;}
.fs4_c00223{font-size:56.022400pt;}
.fs1_c00223{font-size:64.000000pt;}
.y0_c00223{bottom:0.000000pt;}
.y25_c00223{bottom:5.314825pt;}
.y41_c00223{bottom:13.128933pt;}
.y33_c00223{bottom:13.129067pt;}
.y42_c00223{bottom:13.129200pt;}
.y2b_c00223{bottom:13.129333pt;}
.y38_c00223{bottom:13.129600pt;}
.y3e_c00223{bottom:13.129733pt;}
.y35_c00223{bottom:13.129867pt;}
.y31_c00223{bottom:13.130267pt;}
.y40_c00223{bottom:13.130400pt;}
.y27_c00223{bottom:13.130533pt;}
.y2d_c00223{bottom:13.130667pt;}
.y2f_c00223{bottom:13.130800pt;}
.y3a_c00223{bottom:13.130933pt;}
.y3c_c00223{bottom:13.131067pt;}
.y24_c00223{bottom:22.817470pt;}
.y23_c00223{bottom:41.199843pt;}
.y43_c00223{bottom:50.960000pt;}
.y22_c00223{bottom:58.702489pt;}
.y21_c00223{bottom:77.084862pt;}
.y20_c00223{bottom:94.587508pt;}
.y1f_c00223{bottom:112.969881pt;}
.y6_c00223{bottom:118.080000pt;}
.y1e_c00223{bottom:130.472527pt;}
.y5_c00223{bottom:132.960000pt;}
.y7_c00223{bottom:133.746667pt;}
.y34_c00223{bottom:134.621333pt;}
.y1d_c00223{bottom:148.854900pt;}
.y1c_c00223{bottom:166.357545pt;}
.y3f_c00223{bottom:170.510667pt;}
.y1b_c00223{bottom:184.739919pt;}
.y1a_c00223{bottom:202.242564pt;}
.y3d_c00223{bottom:206.400000pt;}
.y19_c00223{bottom:220.624937pt;}
.y18_c00223{bottom:238.127583pt;}
.y3b_c00223{bottom:242.288000pt;}
.y17_c00223{bottom:256.509956pt;}
.y16_c00223{bottom:274.012602pt;}
.y39_c00223{bottom:278.177333pt;}
.y15_c00223{bottom:292.394975pt;}
.y14_c00223{bottom:309.897621pt;}
.y37_c00223{bottom:314.068000pt;}
.y13_c00223{bottom:328.279994pt;}
.y12_c00223{bottom:345.782639pt;}
.y36_c00223{bottom:349.956000pt;}
.y11_c00223{bottom:364.165013pt;}
.y10_c00223{bottom:381.667658pt;}
.y2e_c00223{bottom:385.845333pt;}
.yf_c00223{bottom:400.050031pt;}
.ye_c00223{bottom:417.552677pt;}
.y2c_c00223{bottom:421.734667pt;}
.yd_c00223{bottom:435.935050pt;}
.yc_c00223{bottom:453.437696pt;}
.y2a_c00223{bottom:457.625333pt;}
.yb_c00223{bottom:471.820069pt;}
.ya_c00223{bottom:489.322715pt;}
.y29_c00223{bottom:493.513333pt;}
.y9_c00223{bottom:507.705088pt;}
.y8_c00223{bottom:525.207867pt;}
.y28_c00223{bottom:529.402667pt;}
.y26_c00223{bottom:565.292000pt;}
.y32_c00223{bottom:601.182667pt;}
.y30_c00223{bottom:637.070667pt;}
.y4_c00223{bottom:676.640000pt;}
.y3_c00223{bottom:694.316000pt;}
.y2_c00223{bottom:708.080000pt;}
.y1_c00223{bottom:735.680000pt;}
.h7_c00223{height:35.013333pt;}
.h9_c00223{height:35.014667pt;}
.h6_c00223{height:39.057414pt;}
.h8_c00223{height:41.661189pt;}
.ha_c00223{height:43.314493pt;}
.h2_c00223{height:47.109375pt;}
.h3_c00223{height:62.812500pt;}
.h4_c00223{height:64.500000pt;}
.h5_c00223{height:538.338667pt;}
.h0_c00223{height:793.840000pt;}
.h1_c00223{height:794.000000pt;}
.w4_c00223{width:21.904000pt;}
.w6_c00223{width:70.766667pt;}
.w3_c00223{width:81.718667pt;}
.w5_c00223{width:122.157333pt;}
.w2_c00223{width:931.764000pt;}
.w0_c00223{width:1122.560000pt;}
.w1_c00223{width:1122.666667pt;}
.x0_c00223{left:0.000000pt;}
.xd_c00223{left:1.684667pt;}
.xf_c00223{left:5.054533pt;}
.xb_c00223{left:14.322000pt;}
.xc_c00223{left:17.691867pt;}
.xa_c00223{left:19.376933pt;}
.x12_c00223{left:26.959200pt;}
.x11_c00223{left:29.486533pt;}
.x13_c00223{left:32.856267pt;}
.x2_c00223{left:94.560000pt;}
.xe_c00223{left:118.148000pt;}
.x8_c00223{left:160.253359pt;}
.x6_c00223{left:165.977890pt;}
.x5_c00223{left:175.232267pt;}
.x7_c00223{left:181.167484pt;}
.x1_c00223{left:561.280000pt;}
.x9_c00223{left:872.996000pt;}
.x10_c00223{left:955.557333pt;}
.x4_c00223{left:966.480000pt;}
.x3_c00223{left:1028.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_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_5b8f8a07e996820b272c4d9b.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_c91c567f4c44c0666e78fb79.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_7f1200f1c5ce5b549ca8799a.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_0add47b736c63e786fbad3c0.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2_c00224{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);}
.v1_c00224{vertical-align:-61.920000px;}
.v0_c00224{vertical-align:0.000000px;}
.ls9_c00224{letter-spacing:-2.255448px;}
.lsf_c00224{letter-spacing:-1.856992px;}
.lsc_c00224{letter-spacing:-1.522427px;}
.lsb_c00224{letter-spacing:-1.240496px;}
.lsa_c00224{letter-spacing:-0.421016px;}
.lse_c00224{letter-spacing:-0.225545px;}
.lsd_c00224{letter-spacing:-0.169159px;}
.ls7_c00224{letter-spacing:-0.108000px;}
.ls8_c00224{letter-spacing:0.000000px;}
.ls11_c00224{letter-spacing:0.879628px;}
.ls10_c00224{letter-spacing:1.905860px;}
.ls3_c00224{letter-spacing:351.906274px;}
.ls5_c00224{letter-spacing:370.682879px;}
.ls6_c00224{letter-spacing:378.182243px;}
.ls1_c00224{letter-spacing:397.015234px;}
.ls4_c00224{letter-spacing:408.292474px;}
.ls2_c00224{letter-spacing:434.568443px;}
.ls0_c00224{letter-spacing:725.580000px;}
.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;}
}
.ws6_c00224{word-spacing:-13.171799px;}
.ws9_c00224{word-spacing:-12.574123px;}
.ws7_c00224{word-spacing:-11.502785px;}
.ws8_c00224{word-spacing:-11.220854px;}
.ws2_c00224{word-spacing:-10.487833px;}
.ws11_c00224{word-spacing:-2.834356px;}
.ws12_c00224{word-spacing:-1.808123px;}
.wsd_c00224{word-spacing:-1.466041px;}
.wsf_c00224{word-spacing:-1.240496px;}
.wsa_c00224{word-spacing:0.000000px;}
.wsc_c00224{word-spacing:0.162000px;}
.wsb_c00224{word-spacing:0.270000px;}
.ws10_c00224{word-spacing:0.928496px;}
.wse_c00224{word-spacing:2.255448px;}
.ws0_c00224{word-spacing:116.770182px;}
.ws5_c00224{word-spacing:116.792736px;}
.ws4_c00224{word-spacing:116.798375px;}
.ws3_c00224{word-spacing:176.917341px;}
.ws1_c00224{word-spacing:176.939896px;}
._7_c00224{margin-left:-319.845081px;}
._6_c00224{margin-left:-259.720476px;}
._11_c00224{margin-left:-5.473238px;}
._10_c00224{margin-left:-3.650351px;}
._f_c00224{margin-left:-2.184365px;}
._1_c00224{margin-left:-1.058400px;}
._0_c00224{width:1.225800px;}
._2_c00224{width:3.197098px;}
._c_c00224{width:4.375569px;}
._b_c00224{width:138.422482px;}
._9_c00224{width:165.335616px;}
._8_c00224{width:168.904862px;}
._d_c00224{width:187.720937px;}
._e_c00224{width:195.242856px;}
._4_c00224{width:206.108477px;}
._3_c00224{width:214.013822px;}
._5_c00224{width:221.552657px;}
._a_c00224{width:247.845542px;}
.fc0_c00224{color:rgb(0,0,0);}
.fs4_c00224{font-size:48.868200px;}
.fs0_c00224{font-size:54.000000px;}
.fs2_c00224{font-size:56.386200px;}
.fs3_c00224{font-size:60.145200px;}
.fs1_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y2c_c00224{bottom:4.698000px;}
.y30_c00224{bottom:4.698600px;}
.y2e_c00224{bottom:4.699050px;}
.y2a_c00224{bottom:4.699950px;}
.y1f_c00224{bottom:14.095500px;}
.y1d_c00224{bottom:14.095800px;}
.y28_c00224{bottom:14.096250px;}
.y26_c00224{bottom:14.096550px;}
.y23_c00224{bottom:14.096700px;}
.y21_c00224{bottom:14.096850px;}
.y1b_c00224{bottom:14.097450px;}
.y19_c00224{bottom:14.097600px;}
.y24_c00224{bottom:14.097750px;}
.y31_c00224{bottom:57.330000px;}
.y17_c00224{bottom:80.858051px;}
.y16_c00224{bottom:99.648752px;}
.y15_c00224{bottom:119.383922px;}
.y14_c00224{bottom:138.174623px;}
.y13_c00224{bottom:157.909793px;}
.y12_c00224{bottom:176.700494px;}
.y11_c00224{bottom:196.435664px;}
.y10_c00224{bottom:215.226365px;}
.yf_c00224{bottom:234.961535px;}
.ye_c00224{bottom:253.752237px;}
.yd_c00224{bottom:273.487407px;}
.yc_c00224{bottom:292.278108px;}
.yb_c00224{bottom:312.013278px;}
.ya_c00224{bottom:330.803979px;}
.y9_c00224{bottom:350.539149px;}
.y6_c00224{bottom:355.230000px;}
.y8_c00224{bottom:369.329850px;}
.y5_c00224{bottom:371.880000px;}
.y7_c00224{bottom:372.714000px;}
.y2f_c00224{bottom:373.653000px;}
.y2d_c00224{bottom:392.448000px;}
.y2b_c00224{bottom:411.244500px;}
.y29_c00224{bottom:430.038000px;}
.y22_c00224{bottom:448.834500px;}
.y20_c00224{bottom:487.365000px;}
.y1e_c00224{bottom:525.897000px;}
.y1c_c00224{bottom:564.427500px;}
.y1a_c00224{bottom:602.956500px;}
.y18_c00224{bottom:641.487000px;}
.y27_c00224{bottom:680.019000px;}
.y25_c00224{bottom:718.549500px;}
.y4_c00224{bottom:761.220000px;}
.y3_c00224{bottom:781.110000px;}
.y2_c00224{bottom:796.594500px;}
.y1_c00224{bottom:827.640000px;}
.hc_c00224{height:17.854500px;}
.ha_c00224{height:17.856000px;}
.h8_c00224{height:37.590000px;}
.h6_c00224{height:37.591500px;}
.h5_c00224{height:41.931730px;}
.h7_c00224{height:44.727119px;}
.h9_c00224{height:46.502096px;}
.hd_c00224{height:47.961466px;}
.hb_c00224{height:49.249983px;}
.h2_c00224{height:52.998047px;}
.h3_c00224{height:70.664062px;}
.h4_c00224{height:383.427000px;}
.h0_c00224{height:893.070000px;}
.h1_c00224{height:893.250000px;}
.w4_c00224{width:24.445500px;}
.w6_c00224{width:78.975000px;}
.w3_c00224{width:91.198500px;}
.w5_c00224{width:136.327500px;}
.w7_c00224{width:1021.984500px;}
.w2_c00224{width:1048.309500px;}
.w0_c00224{width:1262.880000px;}
.w1_c00224{width:1263.000000px;}
.x0_c00224{left:0.000000px;}
.x9_c00224{left:1.881600px;}
.x8_c00224{left:21.623700px;}
.xb_c00224{left:27.264750px;}
.xe_c00224{left:30.084750px;}
.xd_c00224{left:32.905200px;}
.x2_c00224{left:106.380000px;}
.xa_c00224{left:132.705000px;}
.x5_c00224{left:178.646122px;}
.x4_c00224{left:185.218050px;}
.x6_c00224{left:195.583645px;}
.x1_c00224{left:631.440000px;}
.x7_c00224{left:983.575500px;}
.xc_c00224{left:1075.714500px;}
.xf_c00224{left:1129.590000px;}
.x3_c00224{left:1156.590000px;}
@media print{
.v1_c00224{vertical-align:-55.040000pt;}
.v0_c00224{vertical-align:0.000000pt;}
.ls9_c00224{letter-spacing:-2.004843pt;}
.lsf_c00224{letter-spacing:-1.650659pt;}
.lsc_c00224{letter-spacing:-1.353269pt;}
.lsb_c00224{letter-spacing:-1.102663pt;}
.lsa_c00224{letter-spacing:-0.374237pt;}
.lse_c00224{letter-spacing:-0.200484pt;}
.lsd_c00224{letter-spacing:-0.150363pt;}
.ls7_c00224{letter-spacing:-0.096000pt;}
.ls8_c00224{letter-spacing:0.000000pt;}
.ls11_c00224{letter-spacing:0.781891pt;}
.ls10_c00224{letter-spacing:1.694098pt;}
.ls3_c00224{letter-spacing:312.805577pt;}
.ls5_c00224{letter-spacing:329.495892pt;}
.ls6_c00224{letter-spacing:336.161994pt;}
.ls1_c00224{letter-spacing:352.902430pt;}
.ls4_c00224{letter-spacing:362.926644pt;}
.ls2_c00224{letter-spacing:386.283061pt;}
.ls0_c00224{letter-spacing:644.960000pt;}
.ws6_c00224{word-spacing:-11.708266pt;}
.ws9_c00224{word-spacing:-11.176998pt;}
.ws7_c00224{word-spacing:-10.224698pt;}
.ws8_c00224{word-spacing:-9.974092pt;}
.ws2_c00224{word-spacing:-9.322518pt;}
.ws11_c00224{word-spacing:-2.519427pt;}
.ws12_c00224{word-spacing:-1.607221pt;}
.wsd_c00224{word-spacing:-1.303148pt;}
.wsf_c00224{word-spacing:-1.102663pt;}
.wsa_c00224{word-spacing:0.000000pt;}
.wsc_c00224{word-spacing:0.144000pt;}
.wsb_c00224{word-spacing:0.240000pt;}
.ws10_c00224{word-spacing:0.825330pt;}
.wse_c00224{word-spacing:2.004843pt;}
.ws0_c00224{word-spacing:103.795717pt;}
.ws5_c00224{word-spacing:103.815765pt;}
.ws4_c00224{word-spacing:103.820777pt;}
.ws3_c00224{word-spacing:157.259859pt;}
.ws1_c00224{word-spacing:157.279907pt;}
._7_c00224{margin-left:-284.306739pt;}
._6_c00224{margin-left:-230.862645pt;}
._11_c00224{margin-left:-4.865101pt;}
._10_c00224{margin-left:-3.244756pt;}
._f_c00224{margin-left:-1.941658pt;}
._1_c00224{margin-left:-0.940800pt;}
._0_c00224{width:1.089600pt;}
._2_c00224{width:2.841864pt;}
._c_c00224{width:3.889395pt;}
._b_c00224{width:123.042207pt;}
._9_c00224{width:146.964992pt;}
._8_c00224{width:150.137655pt;}
._d_c00224{width:166.863055pt;}
._e_c00224{width:173.549205pt;}
._4_c00224{width:183.207535pt;}
._3_c00224{width:190.234509pt;}
._5_c00224{width:196.935695pt;}
._a_c00224{width:220.307149pt;}
.fs4_c00224{font-size:43.438400pt;}
.fs0_c00224{font-size:48.000000pt;}
.fs2_c00224{font-size:50.121067pt;}
.fs3_c00224{font-size:53.462400pt;}
.fs1_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y2c_c00224{bottom:4.176000pt;}
.y30_c00224{bottom:4.176533pt;}
.y2e_c00224{bottom:4.176933pt;}
.y2a_c00224{bottom:4.177733pt;}
.y1f_c00224{bottom:12.529333pt;}
.y1d_c00224{bottom:12.529600pt;}
.y28_c00224{bottom:12.530000pt;}
.y26_c00224{bottom:12.530267pt;}
.y23_c00224{bottom:12.530400pt;}
.y21_c00224{bottom:12.530533pt;}
.y1b_c00224{bottom:12.531067pt;}
.y19_c00224{bottom:12.531200pt;}
.y24_c00224{bottom:12.531333pt;}
.y31_c00224{bottom:50.960000pt;}
.y17_c00224{bottom:71.873823pt;}
.y16_c00224{bottom:88.576668pt;}
.y15_c00224{bottom:106.119042pt;}
.y14_c00224{bottom:122.821887pt;}
.y13_c00224{bottom:140.364261pt;}
.y12_c00224{bottom:157.067106pt;}
.y11_c00224{bottom:174.609479pt;}
.y10_c00224{bottom:191.312325pt;}
.yf_c00224{bottom:208.854698pt;}
.ye_c00224{bottom:225.557544pt;}
.yd_c00224{bottom:243.099917pt;}
.yc_c00224{bottom:259.802762pt;}
.yb_c00224{bottom:277.345136pt;}
.ya_c00224{bottom:294.047981pt;}
.y9_c00224{bottom:311.590355pt;}
.y6_c00224{bottom:315.760000pt;}
.y8_c00224{bottom:328.293200pt;}
.y5_c00224{bottom:330.560000pt;}
.y7_c00224{bottom:331.301333pt;}
.y2f_c00224{bottom:332.136000pt;}
.y2d_c00224{bottom:348.842667pt;}
.y2b_c00224{bottom:365.550667pt;}
.y29_c00224{bottom:382.256000pt;}
.y22_c00224{bottom:398.964000pt;}
.y20_c00224{bottom:433.213333pt;}
.y1e_c00224{bottom:467.464000pt;}
.y1c_c00224{bottom:501.713333pt;}
.y1a_c00224{bottom:535.961333pt;}
.y18_c00224{bottom:570.210667pt;}
.y27_c00224{bottom:604.461333pt;}
.y25_c00224{bottom:638.710667pt;}
.y4_c00224{bottom:676.640000pt;}
.y3_c00224{bottom:694.320000pt;}
.y2_c00224{bottom:708.084000pt;}
.y1_c00224{bottom:735.680000pt;}
.hc_c00224{height:15.870667pt;}
.ha_c00224{height:15.872000pt;}
.h8_c00224{height:33.413333pt;}
.h6_c00224{height:33.414667pt;}
.h5_c00224{height:37.272649pt;}
.h7_c00224{height:39.757439pt;}
.h9_c00224{height:41.335196pt;}
.hd_c00224{height:42.632414pt;}
.hb_c00224{height:43.777762pt;}
.h2_c00224{height:47.109375pt;}
.h3_c00224{height:62.812500pt;}
.h4_c00224{height:340.824000pt;}
.h0_c00224{height:793.840000pt;}
.h1_c00224{height:794.000000pt;}
.w4_c00224{width:21.729333pt;}
.w6_c00224{width:70.200000pt;}
.w3_c00224{width:81.065333pt;}
.w5_c00224{width:121.180000pt;}
.w7_c00224{width:908.430667pt;}
.w2_c00224{width:931.830667pt;}
.w0_c00224{width:1122.560000pt;}
.w1_c00224{width:1122.666667pt;}
.x0_c00224{left:0.000000pt;}
.x9_c00224{left:1.672533pt;}
.x8_c00224{left:19.221067pt;}
.xb_c00224{left:24.235333pt;}
.xe_c00224{left:26.742000pt;}
.xd_c00224{left:29.249067pt;}
.x2_c00224{left:94.560000pt;}
.xa_c00224{left:117.960000pt;}
.x5_c00224{left:158.796553pt;}
.x4_c00224{left:164.638267pt;}
.x6_c00224{left:173.852129pt;}
.x1_c00224{left:561.280000pt;}
.x7_c00224{left:874.289333pt;}
.xc_c00224{left:956.190667pt;}
.xf_c00224{left:1004.080000pt;}
.x3_c00224{left:1028.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_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_27206782f56300ca537acf2d.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.284180;font-style:normal;font-weight:normal;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_40bbc1e6f5b8014d233ca73c.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00225{vertical-align:-61.938000px;}
.v3_c00225{vertical-align:-20.880000px;}
.v0_c00225{vertical-align:0.000000px;}
.v2_c00225{vertical-align:26.999400px;}
.ls11_c00225{letter-spacing:-0.360000px;}
.ls12_c00225{letter-spacing:-0.288000px;}
.ls13_c00225{letter-spacing:-0.216000px;}
.ls16_c00225{letter-spacing:-0.120240px;}
.ls10_c00225{letter-spacing:-0.072000px;}
.ls15_c00225{letter-spacing:-0.060120px;}
.lsf_c00225{letter-spacing:0.000000px;}
.ls7_c00225{letter-spacing:0.072000px;}
.lsc_c00225{letter-spacing:0.120240px;}
.ls8_c00225{letter-spacing:0.144000px;}
.ls14_c00225{letter-spacing:0.180360px;}
.ls5_c00225{letter-spacing:0.191520px;}
.ls4_c00225{letter-spacing:1.080000px;}
.lsd_c00225{letter-spacing:1.503000px;}
.ls9_c00225{letter-spacing:2.520000px;}
.lse_c00225{letter-spacing:2.585160px;}
.ls1_c00225{letter-spacing:4.680000px;}
.lsb_c00225{letter-spacing:5.400000px;}
.ls6_c00225{letter-spacing:9.000000px;}
.lsa_c00225{letter-spacing:13.320000px;}
.ls3_c00225{letter-spacing:17.640000px;}
.ls2_c00225{letter-spacing:18.000000px;}
.ls0_c00225{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws1_c00225{word-spacing:-18.072000px;}
.ws2_c00225{word-spacing:-18.000000px;}
.ws6_c00225{word-spacing:-17.928000px;}
.ws5_c00225{word-spacing:-17.784000px;}
.ws4_c00225{word-spacing:-17.640000px;}
.ws3_c00225{word-spacing:-12.161520px;}
.ws7_c00225{word-spacing:-9.720000px;}
.ws2e_c00225{word-spacing:-0.420840px;}
.ws13_c00225{word-spacing:-0.360000px;}
.ws31_c00225{word-spacing:-0.180360px;}
.ws9_c00225{word-spacing:-0.162000px;}
.ws30_c00225{word-spacing:-0.120240px;}
.ws1a_c00225{word-spacing:-0.072000px;}
.ws2a_c00225{word-spacing:-0.060120px;}
.ws8_c00225{word-spacing:0.000000px;}
.wsc_c00225{word-spacing:0.072000px;}
.ws2f_c00225{word-spacing:0.120240px;}
.ws29_c00225{word-spacing:0.216000px;}
.ws16_c00225{word-spacing:0.360000px;}
.ws10_c00225{word-spacing:1.080000px;}
.ws1b_c00225{word-spacing:1.368000px;}
.ws11_c00225{word-spacing:1.440000px;}
.ws2b_c00225{word-spacing:1.563120px;}
.ws21_c00225{word-spacing:2.016000px;}
.ws22_c00225{word-spacing:2.088000px;}
.ws1c_c00225{word-spacing:2.160000px;}
.ws2d_c00225{word-spacing:2.284560px;}
.ws18_c00225{word-spacing:2.448000px;}
.ws19_c00225{word-spacing:2.520000px;}
.ws2c_c00225{word-spacing:2.645280px;}
.ws25_c00225{word-spacing:3.168000px;}
.ws26_c00225{word-spacing:3.240000px;}
.ws24_c00225{word-spacing:3.600000px;}
.ws12_c00225{word-spacing:4.320000px;}
.wsa_c00225{word-spacing:4.536000px;}
.wsb_c00225{word-spacing:4.608000px;}
.ws23_c00225{word-spacing:5.040000px;}
.ws28_c00225{word-spacing:6.840000px;}
.ws15_c00225{word-spacing:8.856000px;}
.ws17_c00225{word-spacing:8.928000px;}
.ws14_c00225{word-spacing:9.000000px;}
.ws20_c00225{word-spacing:12.960000px;}
.ws1f_c00225{word-spacing:13.248000px;}
.ws1e_c00225{word-spacing:14.040000px;}
.ws1d_c00225{word-spacing:16.200000px;}
.wse_c00225{word-spacing:17.928000px;}
.wsd_c00225{word-spacing:18.000000px;}
.ws27_c00225{word-spacing:21.600000px;}
.wsf_c00225{word-spacing:29.088000px;}
._1_c00225{margin-left:-1.296000px;}
._3_c00225{width:1.015200px;}
._6_c00225{width:2.448000px;}
._2_c00225{width:3.600000px;}
._0_c00225{width:4.680000px;}
._5_c00225{width:8.173440px;}
._4_c00225{width:9.216000px;}
.fc0_c00225{color:rgb(0,0,0);}
.fs3_c00225{font-size:38.880000px;}
.fs2_c00225{font-size:47.880000px;}
.fs0_c00225{font-size:54.000000px;}
.fs4_c00225{font-size:60.120000px;}
.fs1_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y27_c00225{bottom:57.240000px;}
.y26_c00225{bottom:109.791180px;}
.y25_c00225{bottom:126.985500px;}
.y24_c00225{bottom:149.490000px;}
.y23_c00225{bottom:166.770000px;}
.y28_c00225{bottom:179.460000px;}
.y22_c00225{bottom:220.320000px;}
.y21_c00225{bottom:251.370000px;}
.y20_c00225{bottom:282.420000px;}
.y1f_c00225{bottom:313.470000px;}
.y1e_c00225{bottom:344.520000px;}
.y1d_c00225{bottom:375.570000px;}
.y1c_c00225{bottom:406.620000px;}
.y1b_c00225{bottom:437.670000px;}
.y1a_c00225{bottom:468.720000px;}
.y19_c00225{bottom:499.770000px;}
.y18_c00225{bottom:530.820000px;}
.y17_c00225{bottom:561.870000px;}
.y16_c00225{bottom:592.920000px;}
.y15_c00225{bottom:623.970000px;}
.y14_c00225{bottom:655.020000px;}
.y13_c00225{bottom:686.070000px;}
.y12_c00225{bottom:717.120000px;}
.y11_c00225{bottom:748.170000px;}
.y10_c00225{bottom:779.220000px;}
.yf_c00225{bottom:810.269850px;}
.ye_c00225{bottom:841.230000px;}
.yd_c00225{bottom:872.280000px;}
.yc_c00225{bottom:903.330000px;}
.yb_c00225{bottom:934.380000px;}
.ya_c00225{bottom:965.430000px;}
.y9_c00225{bottom:996.480000px;}
.y8_c00225{bottom:1027.530000px;}
.y7_c00225{bottom:1058.400000px;}
.y6_c00225{bottom:1089.450000px;}
.y5_c00225{bottom:1110.330000px;}
.y4_c00225{bottom:1131.030000px;}
.y3_c00225{bottom:1150.915500px;}
.y2_c00225{bottom:1166.400000px;}
.y1_c00225{bottom:1197.450000px;}
.h7_c00225{height:38.158594px;}
.h2_c00225{height:52.998047px;}
.h8_c00225{height:59.004492px;}
.h3_c00225{height:70.664062px;}
.h4_c00225{height:72.562500px;}
.h5_c00225{height:73.991002px;}
.h6_c00225{height:73.992202px;}
.h0_c00225{height:1262.880000px;}
.h1_c00225{height:1263.000000px;}
.w0_c00225{width:893.070000px;}
.w1_c00225{width:893.250000px;}
.x0_c00225{left:0.000000px;}
.x2_c00225{left:127.620000px;}
.x1_c00225{left:446.580000px;}
@media print{
.v1_c00225{vertical-align:-55.056000pt;}
.v3_c00225{vertical-align:-18.560000pt;}
.v0_c00225{vertical-align:0.000000pt;}
.v2_c00225{vertical-align:23.999467pt;}
.ls11_c00225{letter-spacing:-0.320000pt;}
.ls12_c00225{letter-spacing:-0.256000pt;}
.ls13_c00225{letter-spacing:-0.192000pt;}
.ls16_c00225{letter-spacing:-0.106880pt;}
.ls10_c00225{letter-spacing:-0.064000pt;}
.ls15_c00225{letter-spacing:-0.053440pt;}
.lsf_c00225{letter-spacing:0.000000pt;}
.ls7_c00225{letter-spacing:0.064000pt;}
.lsc_c00225{letter-spacing:0.106880pt;}
.ls8_c00225{letter-spacing:0.128000pt;}
.ls14_c00225{letter-spacing:0.160320pt;}
.ls5_c00225{letter-spacing:0.170240pt;}
.ls4_c00225{letter-spacing:0.960000pt;}
.lsd_c00225{letter-spacing:1.336000pt;}
.ls9_c00225{letter-spacing:2.240000pt;}
.lse_c00225{letter-spacing:2.297920pt;}
.ls1_c00225{letter-spacing:4.160000pt;}
.lsb_c00225{letter-spacing:4.800000pt;}
.ls6_c00225{letter-spacing:8.000000pt;}
.lsa_c00225{letter-spacing:11.840000pt;}
.ls3_c00225{letter-spacing:15.680000pt;}
.ls2_c00225{letter-spacing:16.000000pt;}
.ls0_c00225{letter-spacing:284.016000pt;}
.ws0_c00225{word-spacing:-16.128000pt;}
.ws1_c00225{word-spacing:-16.064000pt;}
.ws2_c00225{word-spacing:-16.000000pt;}
.ws6_c00225{word-spacing:-15.936000pt;}
.ws5_c00225{word-spacing:-15.808000pt;}
.ws4_c00225{word-spacing:-15.680000pt;}
.ws3_c00225{word-spacing:-10.810240pt;}
.ws7_c00225{word-spacing:-8.640000pt;}
.ws2e_c00225{word-spacing:-0.374080pt;}
.ws13_c00225{word-spacing:-0.320000pt;}
.ws31_c00225{word-spacing:-0.160320pt;}
.ws9_c00225{word-spacing:-0.144000pt;}
.ws30_c00225{word-spacing:-0.106880pt;}
.ws1a_c00225{word-spacing:-0.064000pt;}
.ws2a_c00225{word-spacing:-0.053440pt;}
.ws8_c00225{word-spacing:0.000000pt;}
.wsc_c00225{word-spacing:0.064000pt;}
.ws2f_c00225{word-spacing:0.106880pt;}
.ws29_c00225{word-spacing:0.192000pt;}
.ws16_c00225{word-spacing:0.320000pt;}
.ws10_c00225{word-spacing:0.960000pt;}
.ws1b_c00225{word-spacing:1.216000pt;}
.ws11_c00225{word-spacing:1.280000pt;}
.ws2b_c00225{word-spacing:1.389440pt;}
.ws21_c00225{word-spacing:1.792000pt;}
.ws22_c00225{word-spacing:1.856000pt;}
.ws1c_c00225{word-spacing:1.920000pt;}
.ws2d_c00225{word-spacing:2.030720pt;}
.ws18_c00225{word-spacing:2.176000pt;}
.ws19_c00225{word-spacing:2.240000pt;}
.ws2c_c00225{word-spacing:2.351360pt;}
.ws25_c00225{word-spacing:2.816000pt;}
.ws26_c00225{word-spacing:2.880000pt;}
.ws24_c00225{word-spacing:3.200000pt;}
.ws12_c00225{word-spacing:3.840000pt;}
.wsa_c00225{word-spacing:4.032000pt;}
.wsb_c00225{word-spacing:4.096000pt;}
.ws23_c00225{word-spacing:4.480000pt;}
.ws28_c00225{word-spacing:6.080000pt;}
.ws15_c00225{word-spacing:7.872000pt;}
.ws17_c00225{word-spacing:7.936000pt;}
.ws14_c00225{word-spacing:8.000000pt;}
.ws20_c00225{word-spacing:11.520000pt;}
.ws1f_c00225{word-spacing:11.776000pt;}
.ws1e_c00225{word-spacing:12.480000pt;}
.ws1d_c00225{word-spacing:14.400000pt;}
.wse_c00225{word-spacing:15.936000pt;}
.wsd_c00225{word-spacing:16.000000pt;}
.ws27_c00225{word-spacing:19.200000pt;}
.wsf_c00225{word-spacing:25.856000pt;}
._1_c00225{margin-left:-1.152000pt;}
._3_c00225{width:0.902400pt;}
._6_c00225{width:2.176000pt;}
._2_c00225{width:3.200000pt;}
._0_c00225{width:4.160000pt;}
._5_c00225{width:7.265280pt;}
._4_c00225{width:8.192000pt;}
.fs3_c00225{font-size:34.560000pt;}
.fs2_c00225{font-size:42.560000pt;}
.fs0_c00225{font-size:48.000000pt;}
.fs4_c00225{font-size:53.440000pt;}
.fs1_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y27_c00225{bottom:50.880000pt;}
.y26_c00225{bottom:97.592160pt;}
.y25_c00225{bottom:112.876000pt;}
.y24_c00225{bottom:132.880000pt;}
.y23_c00225{bottom:148.240000pt;}
.y28_c00225{bottom:159.520000pt;}
.y22_c00225{bottom:195.840000pt;}
.y21_c00225{bottom:223.440000pt;}
.y20_c00225{bottom:251.040000pt;}
.y1f_c00225{bottom:278.640000pt;}
.y1e_c00225{bottom:306.240000pt;}
.y1d_c00225{bottom:333.840000pt;}
.y1c_c00225{bottom:361.440000pt;}
.y1b_c00225{bottom:389.040000pt;}
.y1a_c00225{bottom:416.640000pt;}
.y19_c00225{bottom:444.240000pt;}
.y18_c00225{bottom:471.840000pt;}
.y17_c00225{bottom:499.440000pt;}
.y16_c00225{bottom:527.040000pt;}
.y15_c00225{bottom:554.640000pt;}
.y14_c00225{bottom:582.240000pt;}
.y13_c00225{bottom:609.840000pt;}
.y12_c00225{bottom:637.440000pt;}
.y11_c00225{bottom:665.040000pt;}
.y10_c00225{bottom:692.640000pt;}
.yf_c00225{bottom:720.239867pt;}
.ye_c00225{bottom:747.760000pt;}
.yd_c00225{bottom:775.360000pt;}
.yc_c00225{bottom:802.960000pt;}
.yb_c00225{bottom:830.560000pt;}
.ya_c00225{bottom:858.160000pt;}
.y9_c00225{bottom:885.760000pt;}
.y8_c00225{bottom:913.360000pt;}
.y7_c00225{bottom:940.800000pt;}
.y6_c00225{bottom:968.400000pt;}
.y5_c00225{bottom:986.960000pt;}
.y4_c00225{bottom:1005.360000pt;}
.y3_c00225{bottom:1023.036000pt;}
.y2_c00225{bottom:1036.800000pt;}
.y1_c00225{bottom:1064.400000pt;}
.h7_c00225{height:33.918750pt;}
.h2_c00225{height:47.109375pt;}
.h8_c00225{height:52.448437pt;}
.h3_c00225{height:62.812500pt;}
.h4_c00225{height:64.500000pt;}
.h5_c00225{height:65.769779pt;}
.h6_c00225{height:65.770846pt;}
.h0_c00225{height:1122.560000pt;}
.h1_c00225{height:1122.666667pt;}
.w0_c00225{width:793.840000pt;}
.w1_c00225{width:794.000000pt;}
.x0_c00225{left:0.000000pt;}
.x2_c00225{left:113.440000pt;}
.x1_c00225{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_797315e299ce1cbfcd667d46.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00226{vertical-align:-20.880000px;}
.v0_c00226{vertical-align:0.000000px;}
.v1_c00226{vertical-align:27.000000px;}
.ls12_c00226{letter-spacing:-0.432000px;}
.ls10_c00226{letter-spacing:-0.360000px;}
.ls13_c00226{letter-spacing:-0.288000px;}
.lsf_c00226{letter-spacing:-0.216000px;}
.ls14_c00226{letter-spacing:-0.120240px;}
.lse_c00226{letter-spacing:-0.108000px;}
.ls11_c00226{letter-spacing:-0.072000px;}
.ls16_c00226{letter-spacing:-0.060120px;}
.lsd_c00226{letter-spacing:0.000000px;}
.ls0_c00226{letter-spacing:0.072000px;}
.ls8_c00226{letter-spacing:0.144000px;}
.ls15_c00226{letter-spacing:0.180360px;}
.lsa_c00226{letter-spacing:0.191520px;}
.ls7_c00226{letter-spacing:2.160000px;}
.ls6_c00226{letter-spacing:3.960000px;}
.lsb_c00226{letter-spacing:6.480000px;}
.ls5_c00226{letter-spacing:6.840000px;}
.ls1_c00226{letter-spacing:7.200000px;}
.ls9_c00226{letter-spacing:9.720000px;}
.lsc_c00226{letter-spacing:9.727200px;}
.ls2_c00226{letter-spacing:24.120000px;}
.ls4_c00226{letter-spacing:24.840000px;}
.ls3_c00226{letter-spacing:30.240000px;}
.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;}
}
.ws3_c00226{word-spacing:-18.144000px;}
.ws2_c00226{word-spacing:-18.072000px;}
.ws0_c00226{word-spacing:-18.000000px;}
.ws4_c00226{word-spacing:-17.928000px;}
.ws1_c00226{word-spacing:-17.784000px;}
.ws5_c00226{word-spacing:-17.568000px;}
.ws8_c00226{word-spacing:-14.909760px;}
.ws6_c00226{word-spacing:-12.161520px;}
.ws7_c00226{word-spacing:-9.720000px;}
.ws26_c00226{word-spacing:-0.504000px;}
.ws33_c00226{word-spacing:-0.420840px;}
.wse_c00226{word-spacing:-0.072000px;}
.ws36_c00226{word-spacing:-0.060120px;}
.ws9_c00226{word-spacing:0.000000px;}
.wsb_c00226{word-spacing:0.162000px;}
.wsa_c00226{word-spacing:0.270000px;}
.wsc_c00226{word-spacing:0.288000px;}
.wsd_c00226{word-spacing:0.360000px;}
.ws16_c00226{word-spacing:0.648000px;}
.ws15_c00226{word-spacing:0.720000px;}
.ws14_c00226{word-spacing:1.368000px;}
.ws13_c00226{word-spacing:1.440000px;}
.ws25_c00226{word-spacing:1.728000px;}
.ws24_c00226{word-spacing:2.160000px;}
.ws31_c00226{word-spacing:2.404800px;}
.ws2a_c00226{word-spacing:2.448000px;}
.ws2b_c00226{word-spacing:2.520000px;}
.ws22_c00226{word-spacing:3.888000px;}
.ws23_c00226{word-spacing:3.960000px;}
.ws2f_c00226{word-spacing:5.760000px;}
.ws2c_c00226{word-spacing:6.480000px;}
.ws1e_c00226{word-spacing:6.768000px;}
.ws1d_c00226{word-spacing:6.840000px;}
.ws32_c00226{word-spacing:6.973920px;}
.ws12_c00226{word-spacing:7.128000px;}
.ws11_c00226{word-spacing:7.200000px;}
.ws2e_c00226{word-spacing:7.488000px;}
.ws2d_c00226{word-spacing:7.560000px;}
.ws34_c00226{word-spacing:9.258480px;}
.ws35_c00226{word-spacing:9.498960px;}
.ws28_c00226{word-spacing:9.648000px;}
.ws27_c00226{word-spacing:9.720000px;}
.ws30_c00226{word-spacing:10.008000px;}
.ws29_c00226{word-spacing:10.080000px;}
.ws1f_c00226{word-spacing:11.088000px;}
.ws1c_c00226{word-spacing:11.160000px;}
.ws1a_c00226{word-spacing:11.448000px;}
.ws1b_c00226{word-spacing:11.520000px;}
.ws10_c00226{word-spacing:12.168000px;}
.wsf_c00226{word-spacing:12.240000px;}
.ws17_c00226{word-spacing:24.048000px;}
.ws19_c00226{word-spacing:24.840000px;}
.ws20_c00226{word-spacing:25.200000px;}
.ws21_c00226{word-spacing:25.488000px;}
.ws18_c00226{word-spacing:30.168000px;}
._1_c00226{margin-left:-1.058400px;}
._0_c00226{width:1.220400px;}
._5_c00226{width:3.484800px;}
._7_c00226{width:5.124240px;}
._3_c00226{width:6.912000px;}
._6_c00226{width:9.122400px;}
._2_c00226{width:11.664000px;}
._4_c00226{width:24.915600px;}
.fc0_c00226{color:rgb(0,0,0);}
.fs3_c00226{font-size:38.880000px;}
.fs2_c00226{font-size:47.880000px;}
.fs0_c00226{font-size:54.000000px;}
.fs4_c00226{font-size:60.120000px;}
.fs1_c00226{font-size:72.000000px;}
.y0_c00226{bottom:0.000000px;}
.y27_c00226{bottom:57.240000px;}
.y26_c00226{bottom:109.795680px;}
.y25_c00226{bottom:132.210000px;}
.y24_c00226{bottom:144.261180px;}
.y23_c00226{bottom:161.545680px;}
.y22_c00226{bottom:183.960000px;}
.y28_c00226{bottom:196.650000px;}
.y21_c00226{bottom:272.070000px;}
.y20_c00226{bottom:303.120000px;}
.y1f_c00226{bottom:334.170000px;}
.y1e_c00226{bottom:365.220000px;}
.y1d_c00226{bottom:396.270000px;}
.y1c_c00226{bottom:427.320000px;}
.y1b_c00226{bottom:458.370000px;}
.y1a_c00226{bottom:489.420000px;}
.y19_c00226{bottom:520.470000px;}
.y18_c00226{bottom:551.520000px;}
.y17_c00226{bottom:582.570000px;}
.y16_c00226{bottom:613.620000px;}
.y15_c00226{bottom:644.670000px;}
.y14_c00226{bottom:675.720000px;}
.y13_c00226{bottom:706.770000px;}
.y12_c00226{bottom:737.820000px;}
.y11_c00226{bottom:768.870000px;}
.y10_c00226{bottom:799.920000px;}
.yf_c00226{bottom:830.970000px;}
.ye_c00226{bottom:861.930000px;}
.yd_c00226{bottom:892.980000px;}
.yc_c00226{bottom:924.030000px;}
.yb_c00226{bottom:955.080000px;}
.ya_c00226{bottom:986.130000px;}
.y9_c00226{bottom:1017.180000px;}
.y8_c00226{bottom:1048.230000px;}
.y7_c00226{bottom:1079.280000px;}
.y6_c00226{bottom:1110.330000px;}
.y5_c00226{bottom:1131.030000px;}
.y4_c00226{bottom:1150.920000px;}
.y3_c00226{bottom:1166.404500px;}
.y2_c00226{bottom:1181.970000px;}
.y1_c00226{bottom:1197.450000px;}
.h6_c00226{height:38.158594px;}
.h3_c00226{height:52.971680px;}
.h2_c00226{height:52.998047px;}
.h7_c00226{height:59.004492px;}
.h4_c00226{height:70.664062px;}
.h5_c00226{height:73.991602px;}
.h0_c00226{height:1262.880000px;}
.h1_c00226{height:1263.000000px;}
.w0_c00226{width:893.070000px;}
.w1_c00226{width:893.250000px;}
.x0_c00226{left:0.000000px;}
.x3_c00226{left:127.620000px;}
.x2_c00226{left:425.160000px;}
.x1_c00226{left:446.580000px;}
.x4_c00226{left:738.540000px;}
@media print{
.v2_c00226{vertical-align:-18.560000pt;}
.v0_c00226{vertical-align:0.000000pt;}
.v1_c00226{vertical-align:24.000000pt;}
.ls12_c00226{letter-spacing:-0.384000pt;}
.ls10_c00226{letter-spacing:-0.320000pt;}
.ls13_c00226{letter-spacing:-0.256000pt;}
.lsf_c00226{letter-spacing:-0.192000pt;}
.ls14_c00226{letter-spacing:-0.106880pt;}
.lse_c00226{letter-spacing:-0.096000pt;}
.ls11_c00226{letter-spacing:-0.064000pt;}
.ls16_c00226{letter-spacing:-0.053440pt;}
.lsd_c00226{letter-spacing:0.000000pt;}
.ls0_c00226{letter-spacing:0.064000pt;}
.ls8_c00226{letter-spacing:0.128000pt;}
.ls15_c00226{letter-spacing:0.160320pt;}
.lsa_c00226{letter-spacing:0.170240pt;}
.ls7_c00226{letter-spacing:1.920000pt;}
.ls6_c00226{letter-spacing:3.520000pt;}
.lsb_c00226{letter-spacing:5.760000pt;}
.ls5_c00226{letter-spacing:6.080000pt;}
.ls1_c00226{letter-spacing:6.400000pt;}
.ls9_c00226{letter-spacing:8.640000pt;}
.lsc_c00226{letter-spacing:8.646400pt;}
.ls2_c00226{letter-spacing:21.440000pt;}
.ls4_c00226{letter-spacing:22.080000pt;}
.ls3_c00226{letter-spacing:26.880000pt;}
.ws3_c00226{word-spacing:-16.128000pt;}
.ws2_c00226{word-spacing:-16.064000pt;}
.ws0_c00226{word-spacing:-16.000000pt;}
.ws4_c00226{word-spacing:-15.936000pt;}
.ws1_c00226{word-spacing:-15.808000pt;}
.ws5_c00226{word-spacing:-15.616000pt;}
.ws8_c00226{word-spacing:-13.253120pt;}
.ws6_c00226{word-spacing:-10.810240pt;}
.ws7_c00226{word-spacing:-8.640000pt;}
.ws26_c00226{word-spacing:-0.448000pt;}
.ws33_c00226{word-spacing:-0.374080pt;}
.wse_c00226{word-spacing:-0.064000pt;}
.ws36_c00226{word-spacing:-0.053440pt;}
.ws9_c00226{word-spacing:0.000000pt;}
.wsb_c00226{word-spacing:0.144000pt;}
.wsa_c00226{word-spacing:0.240000pt;}
.wsc_c00226{word-spacing:0.256000pt;}
.wsd_c00226{word-spacing:0.320000pt;}
.ws16_c00226{word-spacing:0.576000pt;}
.ws15_c00226{word-spacing:0.640000pt;}
.ws14_c00226{word-spacing:1.216000pt;}
.ws13_c00226{word-spacing:1.280000pt;}
.ws25_c00226{word-spacing:1.536000pt;}
.ws24_c00226{word-spacing:1.920000pt;}
.ws31_c00226{word-spacing:2.137600pt;}
.ws2a_c00226{word-spacing:2.176000pt;}
.ws2b_c00226{word-spacing:2.240000pt;}
.ws22_c00226{word-spacing:3.456000pt;}
.ws23_c00226{word-spacing:3.520000pt;}
.ws2f_c00226{word-spacing:5.120000pt;}
.ws2c_c00226{word-spacing:5.760000pt;}
.ws1e_c00226{word-spacing:6.016000pt;}
.ws1d_c00226{word-spacing:6.080000pt;}
.ws32_c00226{word-spacing:6.199040pt;}
.ws12_c00226{word-spacing:6.336000pt;}
.ws11_c00226{word-spacing:6.400000pt;}
.ws2e_c00226{word-spacing:6.656000pt;}
.ws2d_c00226{word-spacing:6.720000pt;}
.ws34_c00226{word-spacing:8.229760pt;}
.ws35_c00226{word-spacing:8.443520pt;}
.ws28_c00226{word-spacing:8.576000pt;}
.ws27_c00226{word-spacing:8.640000pt;}
.ws30_c00226{word-spacing:8.896000pt;}
.ws29_c00226{word-spacing:8.960000pt;}
.ws1f_c00226{word-spacing:9.856000pt;}
.ws1c_c00226{word-spacing:9.920000pt;}
.ws1a_c00226{word-spacing:10.176000pt;}
.ws1b_c00226{word-spacing:10.240000pt;}
.ws10_c00226{word-spacing:10.816000pt;}
.wsf_c00226{word-spacing:10.880000pt;}
.ws17_c00226{word-spacing:21.376000pt;}
.ws19_c00226{word-spacing:22.080000pt;}
.ws20_c00226{word-spacing:22.400000pt;}
.ws21_c00226{word-spacing:22.656000pt;}
.ws18_c00226{word-spacing:26.816000pt;}
._1_c00226{margin-left:-0.940800pt;}
._0_c00226{width:1.084800pt;}
._5_c00226{width:3.097600pt;}
._7_c00226{width:4.554880pt;}
._3_c00226{width:6.144000pt;}
._6_c00226{width:8.108800pt;}
._2_c00226{width:10.368000pt;}
._4_c00226{width:22.147200pt;}
.fs3_c00226{font-size:34.560000pt;}
.fs2_c00226{font-size:42.560000pt;}
.fs0_c00226{font-size:48.000000pt;}
.fs4_c00226{font-size:53.440000pt;}
.fs1_c00226{font-size:64.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y27_c00226{bottom:50.880000pt;}
.y26_c00226{bottom:97.596160pt;}
.y25_c00226{bottom:117.520000pt;}
.y24_c00226{bottom:128.232160pt;}
.y23_c00226{bottom:143.596160pt;}
.y22_c00226{bottom:163.520000pt;}
.y28_c00226{bottom:174.800000pt;}
.y21_c00226{bottom:241.840000pt;}
.y20_c00226{bottom:269.440000pt;}
.y1f_c00226{bottom:297.040000pt;}
.y1e_c00226{bottom:324.640000pt;}
.y1d_c00226{bottom:352.240000pt;}
.y1c_c00226{bottom:379.840000pt;}
.y1b_c00226{bottom:407.440000pt;}
.y1a_c00226{bottom:435.040000pt;}
.y19_c00226{bottom:462.640000pt;}
.y18_c00226{bottom:490.240000pt;}
.y17_c00226{bottom:517.840000pt;}
.y16_c00226{bottom:545.440000pt;}
.y15_c00226{bottom:573.040000pt;}
.y14_c00226{bottom:600.640000pt;}
.y13_c00226{bottom:628.240000pt;}
.y12_c00226{bottom:655.840000pt;}
.y11_c00226{bottom:683.440000pt;}
.y10_c00226{bottom:711.040000pt;}
.yf_c00226{bottom:738.640000pt;}
.ye_c00226{bottom:766.160000pt;}
.yd_c00226{bottom:793.760000pt;}
.yc_c00226{bottom:821.360000pt;}
.yb_c00226{bottom:848.960000pt;}
.ya_c00226{bottom:876.560000pt;}
.y9_c00226{bottom:904.160000pt;}
.y8_c00226{bottom:931.760000pt;}
.y7_c00226{bottom:959.360000pt;}
.y6_c00226{bottom:986.960000pt;}
.y5_c00226{bottom:1005.360000pt;}
.y4_c00226{bottom:1023.040000pt;}
.y3_c00226{bottom:1036.804000pt;}
.y2_c00226{bottom:1050.640000pt;}
.y1_c00226{bottom:1064.400000pt;}
.h6_c00226{height:33.918750pt;}
.h3_c00226{height:47.085938pt;}
.h2_c00226{height:47.109375pt;}
.h7_c00226{height:52.448437pt;}
.h4_c00226{height:62.812500pt;}
.h5_c00226{height:65.770313pt;}
.h0_c00226{height:1122.560000pt;}
.h1_c00226{height:1122.666667pt;}
.w0_c00226{width:793.840000pt;}
.w1_c00226{width:794.000000pt;}
.x0_c00226{left:0.000000pt;}
.x3_c00226{left:113.440000pt;}
.x2_c00226{left:377.920000pt;}
.x1_c00226{left:396.960000pt;}
.x4_c00226{left:656.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_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_9d9cc7011706a8a4c1b4d6f3.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00227{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00227{vertical-align:-61.938000px;}
.v3_c00227{vertical-align:-20.880000px;}
.v0_c00227{vertical-align:0.000000px;}
.v2_c00227{vertical-align:27.000000px;}
.ls17_c00227{letter-spacing:-0.432000px;}
.ls13_c00227{letter-spacing:-0.360000px;}
.ls15_c00227{letter-spacing:-0.288000px;}
.ls18_c00227{letter-spacing:-0.216000px;}
.ls14_c00227{letter-spacing:-0.072000px;}
.ls19_c00227{letter-spacing:-0.060120px;}
.ls12_c00227{letter-spacing:0.000000px;}
.ls5_c00227{letter-spacing:0.072000px;}
.ls11_c00227{letter-spacing:0.120240px;}
.ls1_c00227{letter-spacing:0.144000px;}
.ls1a_c00227{letter-spacing:0.180360px;}
.ls6_c00227{letter-spacing:0.191520px;}
.ls16_c00227{letter-spacing:0.360000px;}
.ls4_c00227{letter-spacing:0.720000px;}
.lsd_c00227{letter-spacing:1.080000px;}
.lsf_c00227{letter-spacing:3.600000px;}
.ls9_c00227{letter-spacing:4.680000px;}
.ls2_c00227{letter-spacing:5.040000px;}
.ls8_c00227{letter-spacing:5.047200px;}
.ls3_c00227{letter-spacing:7.920000px;}
.ls10_c00227{letter-spacing:10.521000px;}
.lsb_c00227{letter-spacing:10.800000px;}
.lse_c00227{letter-spacing:14.040000px;}
.lsc_c00227{letter-spacing:15.840000px;}
.lsa_c00227{letter-spacing:18.720000px;}
.ls7_c00227{letter-spacing:33.840000px;}
.ls0_c00227{letter-spacing:319.518000px;}
.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;}
}
.ws6_c00227{word-spacing:-18.144000px;}
.ws4_c00227{word-spacing:-18.072000px;}
.ws1_c00227{word-spacing:-18.000000px;}
.ws2_c00227{word-spacing:-17.928000px;}
.ws3_c00227{word-spacing:-17.712000px;}
.ws0_c00227{word-spacing:-17.640000px;}
.ws7_c00227{word-spacing:-17.568000px;}
.ws9_c00227{word-spacing:-15.030000px;}
.wsa_c00227{word-spacing:-14.969880px;}
.ws5_c00227{word-spacing:-12.161520px;}
.ws8_c00227{word-spacing:-9.720000px;}
.ws31_c00227{word-spacing:-0.360000px;}
.wsc_c00227{word-spacing:-0.162000px;}
.ws1d_c00227{word-spacing:-0.072000px;}
.wsb_c00227{word-spacing:0.000000px;}
.ws3f_c00227{word-spacing:0.180360px;}
.ws3a_c00227{word-spacing:0.216000px;}
.ws2f_c00227{word-spacing:0.288000px;}
.ws30_c00227{word-spacing:0.360000px;}
.ws2e_c00227{word-spacing:0.648000px;}
.ws3e_c00227{word-spacing:0.661320px;}
.ws2d_c00227{word-spacing:0.720000px;}
.ws3d_c00227{word-spacing:0.901800px;}
.ws19_c00227{word-spacing:1.008000px;}
.ws17_c00227{word-spacing:1.080000px;}
.ws18_c00227{word-spacing:1.152000px;}
.ws39_c00227{word-spacing:1.368000px;}
.ws10_c00227{word-spacing:3.168000px;}
.ws11_c00227{word-spacing:3.240000px;}
.ws1b_c00227{word-spacing:3.528000px;}
.ws1c_c00227{word-spacing:3.600000px;}
.ws24_c00227{word-spacing:4.608000px;}
.ws23_c00227{word-spacing:4.680000px;}
.ws13_c00227{word-spacing:4.896000px;}
.ws14_c00227{word-spacing:4.968000px;}
.ws15_c00227{word-spacing:5.040000px;}
.ws12_c00227{word-spacing:5.400000px;}
.ws1a_c00227{word-spacing:6.120000px;}
.ws35_c00227{word-spacing:6.840000px;}
.ws25_c00227{word-spacing:7.056000px;}
.ws26_c00227{word-spacing:7.128000px;}
.ws34_c00227{word-spacing:7.200000px;}
.ws16_c00227{word-spacing:7.920000px;}
.ws3b_c00227{word-spacing:10.220400px;}
.ws3c_c00227{word-spacing:10.340640px;}
.ws33_c00227{word-spacing:10.728000px;}
.ws32_c00227{word-spacing:10.800000px;}
.ws1e_c00227{word-spacing:13.608000px;}
.ws1f_c00227{word-spacing:13.680000px;}
.wse_c00227{word-spacing:13.968000px;}
.wsd_c00227{word-spacing:14.328000px;}
.wsf_c00227{word-spacing:14.400000px;}
.ws38_c00227{word-spacing:15.408000px;}
.ws36_c00227{word-spacing:15.768000px;}
.ws37_c00227{word-spacing:15.840000px;}
.ws29_c00227{word-spacing:18.576000px;}
.ws2a_c00227{word-spacing:18.648000px;}
.ws2b_c00227{word-spacing:18.720000px;}
.ws27_c00227{word-spacing:25.488000px;}
.ws28_c00227{word-spacing:25.920000px;}
.ws2c_c00227{word-spacing:26.280000px;}
.ws22_c00227{word-spacing:33.696000px;}
.ws20_c00227{word-spacing:33.768000px;}
.ws21_c00227{word-spacing:33.840000px;}
._0_c00227{margin-left:-1.087200px;}
._1_c00227{width:1.080000px;}
._3_c00227{width:2.448000px;}
._2_c00227{width:5.112000px;}
._4_c00227{width:6.487200px;}
.fc0_c00227{color:rgb(0,0,0);}
.fs3_c00227{font-size:38.880000px;}
.fs2_c00227{font-size:47.880000px;}
.fs0_c00227{font-size:54.000000px;}
.fs4_c00227{font-size:60.120000px;}
.fs1_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y26_c00227{bottom:57.240000px;}
.y25_c00227{bottom:109.791180px;}
.y24_c00227{bottom:126.985500px;}
.y23_c00227{bottom:149.490000px;}
.y27_c00227{bottom:162.180000px;}
.y22_c00227{bottom:209.970000px;}
.y21_c00227{bottom:241.020000px;}
.y20_c00227{bottom:272.070000px;}
.y1f_c00227{bottom:303.120000px;}
.y1e_c00227{bottom:334.170000px;}
.y1d_c00227{bottom:365.220000px;}
.y1c_c00227{bottom:396.270000px;}
.y1b_c00227{bottom:427.320000px;}
.y1a_c00227{bottom:458.370000px;}
.y19_c00227{bottom:489.420000px;}
.y18_c00227{bottom:520.470000px;}
.y17_c00227{bottom:551.520000px;}
.y16_c00227{bottom:582.570000px;}
.y15_c00227{bottom:613.620000px;}
.y14_c00227{bottom:644.670000px;}
.y13_c00227{bottom:675.720000px;}
.y12_c00227{bottom:706.770000px;}
.y11_c00227{bottom:737.820000px;}
.y10_c00227{bottom:768.870000px;}
.yf_c00227{bottom:799.920000px;}
.ye_c00227{bottom:830.970000px;}
.yd_c00227{bottom:861.930000px;}
.yc_c00227{bottom:892.980000px;}
.yb_c00227{bottom:924.030000px;}
.ya_c00227{bottom:955.080000px;}
.y9_c00227{bottom:986.130000px;}
.y8_c00227{bottom:1017.180000px;}
.y7_c00227{bottom:1048.230000px;}
.y6_c00227{bottom:1079.280000px;}
.y5_c00227{bottom:1110.330000px;}
.y4_c00227{bottom:1131.030000px;}
.y3_c00227{bottom:1150.915500px;}
.y2_c00227{bottom:1166.400000px;}
.y1_c00227{bottom:1197.450000px;}
.h5_c00227{height:38.158594px;}
.h2_c00227{height:52.998047px;}
.h6_c00227{height:59.004492px;}
.h3_c00227{height:70.664062px;}
.h4_c00227{height:73.991602px;}
.h0_c00227{height:1262.880000px;}
.h1_c00227{height:1263.000000px;}
.w0_c00227{width:893.070000px;}
.w1_c00227{width:893.250000px;}
.x0_c00227{left:0.000000px;}
.x2_c00227{left:127.620000px;}
.x1_c00227{left:446.580000px;}
@media print{
.v1_c00227{vertical-align:-55.056000pt;}
.v3_c00227{vertical-align:-18.560000pt;}
.v0_c00227{vertical-align:0.000000pt;}
.v2_c00227{vertical-align:24.000000pt;}
.ls17_c00227{letter-spacing:-0.384000pt;}
.ls13_c00227{letter-spacing:-0.320000pt;}
.ls15_c00227{letter-spacing:-0.256000pt;}
.ls18_c00227{letter-spacing:-0.192000pt;}
.ls14_c00227{letter-spacing:-0.064000pt;}
.ls19_c00227{letter-spacing:-0.053440pt;}
.ls12_c00227{letter-spacing:0.000000pt;}
.ls5_c00227{letter-spacing:0.064000pt;}
.ls11_c00227{letter-spacing:0.106880pt;}
.ls1_c00227{letter-spacing:0.128000pt;}
.ls1a_c00227{letter-spacing:0.160320pt;}
.ls6_c00227{letter-spacing:0.170240pt;}
.ls16_c00227{letter-spacing:0.320000pt;}
.ls4_c00227{letter-spacing:0.640000pt;}
.lsd_c00227{letter-spacing:0.960000pt;}
.lsf_c00227{letter-spacing:3.200000pt;}
.ls9_c00227{letter-spacing:4.160000pt;}
.ls2_c00227{letter-spacing:4.480000pt;}
.ls8_c00227{letter-spacing:4.486400pt;}
.ls3_c00227{letter-spacing:7.040000pt;}
.ls10_c00227{letter-spacing:9.352000pt;}
.lsb_c00227{letter-spacing:9.600000pt;}
.lse_c00227{letter-spacing:12.480000pt;}
.lsc_c00227{letter-spacing:14.080000pt;}
.lsa_c00227{letter-spacing:16.640000pt;}
.ls7_c00227{letter-spacing:30.080000pt;}
.ls0_c00227{letter-spacing:284.016000pt;}
.ws6_c00227{word-spacing:-16.128000pt;}
.ws4_c00227{word-spacing:-16.064000pt;}
.ws1_c00227{word-spacing:-16.000000pt;}
.ws2_c00227{word-spacing:-15.936000pt;}
.ws3_c00227{word-spacing:-15.744000pt;}
.ws0_c00227{word-spacing:-15.680000pt;}
.ws7_c00227{word-spacing:-15.616000pt;}
.ws9_c00227{word-spacing:-13.360000pt;}
.wsa_c00227{word-spacing:-13.306560pt;}
.ws5_c00227{word-spacing:-10.810240pt;}
.ws8_c00227{word-spacing:-8.640000pt;}
.ws31_c00227{word-spacing:-0.320000pt;}
.wsc_c00227{word-spacing:-0.144000pt;}
.ws1d_c00227{word-spacing:-0.064000pt;}
.wsb_c00227{word-spacing:0.000000pt;}
.ws3f_c00227{word-spacing:0.160320pt;}
.ws3a_c00227{word-spacing:0.192000pt;}
.ws2f_c00227{word-spacing:0.256000pt;}
.ws30_c00227{word-spacing:0.320000pt;}
.ws2e_c00227{word-spacing:0.576000pt;}
.ws3e_c00227{word-spacing:0.587840pt;}
.ws2d_c00227{word-spacing:0.640000pt;}
.ws3d_c00227{word-spacing:0.801600pt;}
.ws19_c00227{word-spacing:0.896000pt;}
.ws17_c00227{word-spacing:0.960000pt;}
.ws18_c00227{word-spacing:1.024000pt;}
.ws39_c00227{word-spacing:1.216000pt;}
.ws10_c00227{word-spacing:2.816000pt;}
.ws11_c00227{word-spacing:2.880000pt;}
.ws1b_c00227{word-spacing:3.136000pt;}
.ws1c_c00227{word-spacing:3.200000pt;}
.ws24_c00227{word-spacing:4.096000pt;}
.ws23_c00227{word-spacing:4.160000pt;}
.ws13_c00227{word-spacing:4.352000pt;}
.ws14_c00227{word-spacing:4.416000pt;}
.ws15_c00227{word-spacing:4.480000pt;}
.ws12_c00227{word-spacing:4.800000pt;}
.ws1a_c00227{word-spacing:5.440000pt;}
.ws35_c00227{word-spacing:6.080000pt;}
.ws25_c00227{word-spacing:6.272000pt;}
.ws26_c00227{word-spacing:6.336000pt;}
.ws34_c00227{word-spacing:6.400000pt;}
.ws16_c00227{word-spacing:7.040000pt;}
.ws3b_c00227{word-spacing:9.084800pt;}
.ws3c_c00227{word-spacing:9.191680pt;}
.ws33_c00227{word-spacing:9.536000pt;}
.ws32_c00227{word-spacing:9.600000pt;}
.ws1e_c00227{word-spacing:12.096000pt;}
.ws1f_c00227{word-spacing:12.160000pt;}
.wse_c00227{word-spacing:12.416000pt;}
.wsd_c00227{word-spacing:12.736000pt;}
.wsf_c00227{word-spacing:12.800000pt;}
.ws38_c00227{word-spacing:13.696000pt;}
.ws36_c00227{word-spacing:14.016000pt;}
.ws37_c00227{word-spacing:14.080000pt;}
.ws29_c00227{word-spacing:16.512000pt;}
.ws2a_c00227{word-spacing:16.576000pt;}
.ws2b_c00227{word-spacing:16.640000pt;}
.ws27_c00227{word-spacing:22.656000pt;}
.ws28_c00227{word-spacing:23.040000pt;}
.ws2c_c00227{word-spacing:23.360000pt;}
.ws22_c00227{word-spacing:29.952000pt;}
.ws20_c00227{word-spacing:30.016000pt;}
.ws21_c00227{word-spacing:30.080000pt;}
._0_c00227{margin-left:-0.966400pt;}
._1_c00227{width:0.960000pt;}
._3_c00227{width:2.176000pt;}
._2_c00227{width:4.544000pt;}
._4_c00227{width:5.766400pt;}
.fs3_c00227{font-size:34.560000pt;}
.fs2_c00227{font-size:42.560000pt;}
.fs0_c00227{font-size:48.000000pt;}
.fs4_c00227{font-size:53.440000pt;}
.fs1_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y26_c00227{bottom:50.880000pt;}
.y25_c00227{bottom:97.592160pt;}
.y24_c00227{bottom:112.876000pt;}
.y23_c00227{bottom:132.880000pt;}
.y27_c00227{bottom:144.160000pt;}
.y22_c00227{bottom:186.640000pt;}
.y21_c00227{bottom:214.240000pt;}
.y20_c00227{bottom:241.840000pt;}
.y1f_c00227{bottom:269.440000pt;}
.y1e_c00227{bottom:297.040000pt;}
.y1d_c00227{bottom:324.640000pt;}
.y1c_c00227{bottom:352.240000pt;}
.y1b_c00227{bottom:379.840000pt;}
.y1a_c00227{bottom:407.440000pt;}
.y19_c00227{bottom:435.040000pt;}
.y18_c00227{bottom:462.640000pt;}
.y17_c00227{bottom:490.240000pt;}
.y16_c00227{bottom:517.840000pt;}
.y15_c00227{bottom:545.440000pt;}
.y14_c00227{bottom:573.040000pt;}
.y13_c00227{bottom:600.640000pt;}
.y12_c00227{bottom:628.240000pt;}
.y11_c00227{bottom:655.840000pt;}
.y10_c00227{bottom:683.440000pt;}
.yf_c00227{bottom:711.040000pt;}
.ye_c00227{bottom:738.640000pt;}
.yd_c00227{bottom:766.160000pt;}
.yc_c00227{bottom:793.760000pt;}
.yb_c00227{bottom:821.360000pt;}
.ya_c00227{bottom:848.960000pt;}
.y9_c00227{bottom:876.560000pt;}
.y8_c00227{bottom:904.160000pt;}
.y7_c00227{bottom:931.760000pt;}
.y6_c00227{bottom:959.360000pt;}
.y5_c00227{bottom:986.960000pt;}
.y4_c00227{bottom:1005.360000pt;}
.y3_c00227{bottom:1023.036000pt;}
.y2_c00227{bottom:1036.800000pt;}
.y1_c00227{bottom:1064.400000pt;}
.h5_c00227{height:33.918750pt;}
.h2_c00227{height:47.109375pt;}
.h6_c00227{height:52.448437pt;}
.h3_c00227{height:62.812500pt;}
.h4_c00227{height:65.770313pt;}
.h0_c00227{height:1122.560000pt;}
.h1_c00227{height:1122.666667pt;}
.w0_c00227{width:793.840000pt;}
.w1_c00227{width:794.000000pt;}
.x0_c00227{left:0.000000pt;}
.x2_c00227{left:113.440000pt;}
.x1_c00227{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d25fd1e934c715ed01894654.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00228{vertical-align:-20.880000px;}
.v0_c00228{vertical-align:0.000000px;}
.v1_c00228{vertical-align:27.000000px;}
.ls1b_c00228{letter-spacing:-0.432000px;}
.ls17_c00228{letter-spacing:-0.360000px;}
.ls18_c00228{letter-spacing:-0.288000px;}
.ls1a_c00228{letter-spacing:-0.216000px;}
.ls1d_c00228{letter-spacing:-0.120240px;}
.ls16_c00228{letter-spacing:-0.108000px;}
.ls19_c00228{letter-spacing:-0.072000px;}
.ls1c_c00228{letter-spacing:-0.060120px;}
.ls15_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.072000px;}
.lsb_c00228{letter-spacing:0.144000px;}
.ls6_c00228{letter-spacing:0.172800px;}
.ls9_c00228{letter-spacing:0.191520px;}
.lsc_c00228{letter-spacing:0.360000px;}
.ls2_c00228{letter-spacing:1.800000px;}
.ls1_c00228{letter-spacing:2.160000px;}
.lse_c00228{letter-spacing:3.240000px;}
.lsf_c00228{letter-spacing:3.960000px;}
.ls13_c00228{letter-spacing:4.320000px;}
.ls14_c00228{letter-spacing:5.040000px;}
.ls11_c00228{letter-spacing:7.200000px;}
.ls12_c00228{letter-spacing:7.560000px;}
.lsd_c00228{letter-spacing:7.920000px;}
.ls10_c00228{letter-spacing:12.240000px;}
.ls4_c00228{letter-spacing:15.120000px;}
.lsa_c00228{letter-spacing:18.720000px;}
.ls7_c00228{letter-spacing:19.800000px;}
.ls8_c00228{letter-spacing:20.160000px;}
.ls5_c00228{letter-spacing:25.560000px;}
.ls3_c00228{letter-spacing:25.920000px;}
.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;}
}
.ws4_c00228{word-spacing:-18.144000px;}
.ws0_c00228{word-spacing:-18.072000px;}
.ws1_c00228{word-spacing:-18.000000px;}
.ws2_c00228{word-spacing:-17.928000px;}
.ws5_c00228{word-spacing:-17.784000px;}
.ws6_c00228{word-spacing:-17.568000px;}
.ws3_c00228{word-spacing:-12.161520px;}
.ws7_c00228{word-spacing:-9.720000px;}
.ws20_c00228{word-spacing:-0.360000px;}
.ws33_c00228{word-spacing:-0.144000px;}
.ws1f_c00228{word-spacing:-0.072000px;}
.ws8_c00228{word-spacing:0.000000px;}
.wsa_c00228{word-spacing:0.162000px;}
.ws39_c00228{word-spacing:0.240480px;}
.ws9_c00228{word-spacing:0.270000px;}
.ws29_c00228{word-spacing:0.288000px;}
.ws2a_c00228{word-spacing:0.360000px;}
.wsb_c00228{word-spacing:1.008000px;}
.wsc_c00228{word-spacing:1.080000px;}
.ws27_c00228{word-spacing:1.728000px;}
.ws28_c00228{word-spacing:1.800000px;}
.wsf_c00228{word-spacing:2.088000px;}
.wsd_c00228{word-spacing:2.160000px;}
.wse_c00228{word-spacing:2.520000px;}
.ws15_c00228{word-spacing:3.168000px;}
.ws16_c00228{word-spacing:3.240000px;}
.ws1b_c00228{word-spacing:3.528000px;}
.ws1a_c00228{word-spacing:3.600000px;}
.ws25_c00228{word-spacing:3.888000px;}
.ws26_c00228{word-spacing:3.960000px;}
.ws35_c00228{word-spacing:4.320000px;}
.ws37_c00228{word-spacing:5.328000px;}
.ws36_c00228{word-spacing:5.400000px;}
.ws2c_c00228{word-spacing:7.128000px;}
.ws2b_c00228{word-spacing:7.200000px;}
.ws34_c00228{word-spacing:7.488000px;}
.ws2d_c00228{word-spacing:7.920000px;}
.ws38_c00228{word-spacing:8.416800px;}
.ws32_c00228{word-spacing:8.928000px;}
.ws31_c00228{word-spacing:9.000000px;}
.ws2f_c00228{word-spacing:11.880000px;}
.ws1e_c00228{word-spacing:12.168000px;}
.ws2e_c00228{word-spacing:12.240000px;}
.ws18_c00228{word-spacing:15.048000px;}
.ws17_c00228{word-spacing:15.120000px;}
.ws19_c00228{word-spacing:15.480000px;}
.ws23_c00228{word-spacing:18.648000px;}
.ws24_c00228{word-spacing:18.720000px;}
.ws30_c00228{word-spacing:19.368000px;}
.ws22_c00228{word-spacing:19.800000px;}
.ws21_c00228{word-spacing:20.160000px;}
.ws14_c00228{word-spacing:22.248000px;}
.ws13_c00228{word-spacing:22.320000px;}
.ws1c_c00228{word-spacing:25.488000px;}
.ws1d_c00228{word-spacing:25.560000px;}
.ws10_c00228{word-spacing:25.848000px;}
.ws12_c00228{word-spacing:25.920000px;}
.ws11_c00228{word-spacing:26.208000px;}
._1_c00228{margin-left:-1.058400px;}
._0_c00228{width:1.220400px;}
._3_c00228{width:3.312000px;}
._4_c00228{width:7.200000px;}
._5_c00228{width:9.216000px;}
._2_c00228{width:14.400000px;}
.fc0_c00228{color:rgb(0,0,0);}
.fs3_c00228{font-size:38.880000px;}
.fs2_c00228{font-size:47.880000px;}
.fs0_c00228{font-size:54.000000px;}
.fs4_c00228{font-size:60.120000px;}
.fs1_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y27_c00228{bottom:57.240000px;}
.y26_c00228{bottom:109.795680px;}
.y25_c00228{bottom:132.210000px;}
.y28_c00228{bottom:144.900000px;}
.y24_c00228{bottom:178.920000px;}
.y23_c00228{bottom:209.970000px;}
.y22_c00228{bottom:241.020000px;}
.y21_c00228{bottom:272.070000px;}
.y20_c00228{bottom:303.120000px;}
.y1f_c00228{bottom:334.170000px;}
.y1e_c00228{bottom:365.220000px;}
.y1d_c00228{bottom:396.270000px;}
.y1c_c00228{bottom:427.320000px;}
.y1b_c00228{bottom:458.370000px;}
.y1a_c00228{bottom:489.420000px;}
.y19_c00228{bottom:520.470000px;}
.y18_c00228{bottom:551.520000px;}
.y17_c00228{bottom:582.570000px;}
.y16_c00228{bottom:613.620000px;}
.y15_c00228{bottom:644.670000px;}
.y14_c00228{bottom:675.720000px;}
.y13_c00228{bottom:706.770000px;}
.y12_c00228{bottom:737.820000px;}
.y11_c00228{bottom:768.870000px;}
.y10_c00228{bottom:799.920000px;}
.yf_c00228{bottom:830.970000px;}
.ye_c00228{bottom:861.930000px;}
.yd_c00228{bottom:892.980000px;}
.yc_c00228{bottom:924.030000px;}
.yb_c00228{bottom:955.080000px;}
.ya_c00228{bottom:986.130000px;}
.y9_c00228{bottom:1017.180000px;}
.y8_c00228{bottom:1048.230000px;}
.y7_c00228{bottom:1079.280000px;}
.y6_c00228{bottom:1110.330000px;}
.y5_c00228{bottom:1131.030000px;}
.y4_c00228{bottom:1150.920000px;}
.y3_c00228{bottom:1166.404500px;}
.y2_c00228{bottom:1181.970000px;}
.y1_c00228{bottom:1197.450000px;}
.h6_c00228{height:38.158594px;}
.h3_c00228{height:52.971680px;}
.h2_c00228{height:52.998047px;}
.h7_c00228{height:59.004492px;}
.h4_c00228{height:70.664062px;}
.h5_c00228{height:73.991602px;}
.h0_c00228{height:1262.880000px;}
.h1_c00228{height:1263.000000px;}
.w0_c00228{width:893.070000px;}
.w1_c00228{width:893.250000px;}
.x0_c00228{left:0.000000px;}
.x3_c00228{left:127.620000px;}
.x2_c00228{left:425.160000px;}
.x1_c00228{left:446.580000px;}
.x4_c00228{left:738.540000px;}
@media print{
.v2_c00228{vertical-align:-18.560000pt;}
.v0_c00228{vertical-align:0.000000pt;}
.v1_c00228{vertical-align:24.000000pt;}
.ls1b_c00228{letter-spacing:-0.384000pt;}
.ls17_c00228{letter-spacing:-0.320000pt;}
.ls18_c00228{letter-spacing:-0.256000pt;}
.ls1a_c00228{letter-spacing:-0.192000pt;}
.ls1d_c00228{letter-spacing:-0.106880pt;}
.ls16_c00228{letter-spacing:-0.096000pt;}
.ls19_c00228{letter-spacing:-0.064000pt;}
.ls1c_c00228{letter-spacing:-0.053440pt;}
.ls15_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.064000pt;}
.lsb_c00228{letter-spacing:0.128000pt;}
.ls6_c00228{letter-spacing:0.153600pt;}
.ls9_c00228{letter-spacing:0.170240pt;}
.lsc_c00228{letter-spacing:0.320000pt;}
.ls2_c00228{letter-spacing:1.600000pt;}
.ls1_c00228{letter-spacing:1.920000pt;}
.lse_c00228{letter-spacing:2.880000pt;}
.lsf_c00228{letter-spacing:3.520000pt;}
.ls13_c00228{letter-spacing:3.840000pt;}
.ls14_c00228{letter-spacing:4.480000pt;}
.ls11_c00228{letter-spacing:6.400000pt;}
.ls12_c00228{letter-spacing:6.720000pt;}
.lsd_c00228{letter-spacing:7.040000pt;}
.ls10_c00228{letter-spacing:10.880000pt;}
.ls4_c00228{letter-spacing:13.440000pt;}
.lsa_c00228{letter-spacing:16.640000pt;}
.ls7_c00228{letter-spacing:17.600000pt;}
.ls8_c00228{letter-spacing:17.920000pt;}
.ls5_c00228{letter-spacing:22.720000pt;}
.ls3_c00228{letter-spacing:23.040000pt;}
.ws4_c00228{word-spacing:-16.128000pt;}
.ws0_c00228{word-spacing:-16.064000pt;}
.ws1_c00228{word-spacing:-16.000000pt;}
.ws2_c00228{word-spacing:-15.936000pt;}
.ws5_c00228{word-spacing:-15.808000pt;}
.ws6_c00228{word-spacing:-15.616000pt;}
.ws3_c00228{word-spacing:-10.810240pt;}
.ws7_c00228{word-spacing:-8.640000pt;}
.ws20_c00228{word-spacing:-0.320000pt;}
.ws33_c00228{word-spacing:-0.128000pt;}
.ws1f_c00228{word-spacing:-0.064000pt;}
.ws8_c00228{word-spacing:0.000000pt;}
.wsa_c00228{word-spacing:0.144000pt;}
.ws39_c00228{word-spacing:0.213760pt;}
.ws9_c00228{word-spacing:0.240000pt;}
.ws29_c00228{word-spacing:0.256000pt;}
.ws2a_c00228{word-spacing:0.320000pt;}
.wsb_c00228{word-spacing:0.896000pt;}
.wsc_c00228{word-spacing:0.960000pt;}
.ws27_c00228{word-spacing:1.536000pt;}
.ws28_c00228{word-spacing:1.600000pt;}
.wsf_c00228{word-spacing:1.856000pt;}
.wsd_c00228{word-spacing:1.920000pt;}
.wse_c00228{word-spacing:2.240000pt;}
.ws15_c00228{word-spacing:2.816000pt;}
.ws16_c00228{word-spacing:2.880000pt;}
.ws1b_c00228{word-spacing:3.136000pt;}
.ws1a_c00228{word-spacing:3.200000pt;}
.ws25_c00228{word-spacing:3.456000pt;}
.ws26_c00228{word-spacing:3.520000pt;}
.ws35_c00228{word-spacing:3.840000pt;}
.ws37_c00228{word-spacing:4.736000pt;}
.ws36_c00228{word-spacing:4.800000pt;}
.ws2c_c00228{word-spacing:6.336000pt;}
.ws2b_c00228{word-spacing:6.400000pt;}
.ws34_c00228{word-spacing:6.656000pt;}
.ws2d_c00228{word-spacing:7.040000pt;}
.ws38_c00228{word-spacing:7.481600pt;}
.ws32_c00228{word-spacing:7.936000pt;}
.ws31_c00228{word-spacing:8.000000pt;}
.ws2f_c00228{word-spacing:10.560000pt;}
.ws1e_c00228{word-spacing:10.816000pt;}
.ws2e_c00228{word-spacing:10.880000pt;}
.ws18_c00228{word-spacing:13.376000pt;}
.ws17_c00228{word-spacing:13.440000pt;}
.ws19_c00228{word-spacing:13.760000pt;}
.ws23_c00228{word-spacing:16.576000pt;}
.ws24_c00228{word-spacing:16.640000pt;}
.ws30_c00228{word-spacing:17.216000pt;}
.ws22_c00228{word-spacing:17.600000pt;}
.ws21_c00228{word-spacing:17.920000pt;}
.ws14_c00228{word-spacing:19.776000pt;}
.ws13_c00228{word-spacing:19.840000pt;}
.ws1c_c00228{word-spacing:22.656000pt;}
.ws1d_c00228{word-spacing:22.720000pt;}
.ws10_c00228{word-spacing:22.976000pt;}
.ws12_c00228{word-spacing:23.040000pt;}
.ws11_c00228{word-spacing:23.296000pt;}
._1_c00228{margin-left:-0.940800pt;}
._0_c00228{width:1.084800pt;}
._3_c00228{width:2.944000pt;}
._4_c00228{width:6.400000pt;}
._5_c00228{width:8.192000pt;}
._2_c00228{width:12.800000pt;}
.fs3_c00228{font-size:34.560000pt;}
.fs2_c00228{font-size:42.560000pt;}
.fs0_c00228{font-size:48.000000pt;}
.fs4_c00228{font-size:53.440000pt;}
.fs1_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y27_c00228{bottom:50.880000pt;}
.y26_c00228{bottom:97.596160pt;}
.y25_c00228{bottom:117.520000pt;}
.y28_c00228{bottom:128.800000pt;}
.y24_c00228{bottom:159.040000pt;}
.y23_c00228{bottom:186.640000pt;}
.y22_c00228{bottom:214.240000pt;}
.y21_c00228{bottom:241.840000pt;}
.y20_c00228{bottom:269.440000pt;}
.y1f_c00228{bottom:297.040000pt;}
.y1e_c00228{bottom:324.640000pt;}
.y1d_c00228{bottom:352.240000pt;}
.y1c_c00228{bottom:379.840000pt;}
.y1b_c00228{bottom:407.440000pt;}
.y1a_c00228{bottom:435.040000pt;}
.y19_c00228{bottom:462.640000pt;}
.y18_c00228{bottom:490.240000pt;}
.y17_c00228{bottom:517.840000pt;}
.y16_c00228{bottom:545.440000pt;}
.y15_c00228{bottom:573.040000pt;}
.y14_c00228{bottom:600.640000pt;}
.y13_c00228{bottom:628.240000pt;}
.y12_c00228{bottom:655.840000pt;}
.y11_c00228{bottom:683.440000pt;}
.y10_c00228{bottom:711.040000pt;}
.yf_c00228{bottom:738.640000pt;}
.ye_c00228{bottom:766.160000pt;}
.yd_c00228{bottom:793.760000pt;}
.yc_c00228{bottom:821.360000pt;}
.yb_c00228{bottom:848.960000pt;}
.ya_c00228{bottom:876.560000pt;}
.y9_c00228{bottom:904.160000pt;}
.y8_c00228{bottom:931.760000pt;}
.y7_c00228{bottom:959.360000pt;}
.y6_c00228{bottom:986.960000pt;}
.y5_c00228{bottom:1005.360000pt;}
.y4_c00228{bottom:1023.040000pt;}
.y3_c00228{bottom:1036.804000pt;}
.y2_c00228{bottom:1050.640000pt;}
.y1_c00228{bottom:1064.400000pt;}
.h6_c00228{height:33.918750pt;}
.h3_c00228{height:47.085938pt;}
.h2_c00228{height:47.109375pt;}
.h7_c00228{height:52.448437pt;}
.h4_c00228{height:62.812500pt;}
.h5_c00228{height:65.770313pt;}
.h0_c00228{height:1122.560000pt;}
.h1_c00228{height:1122.666667pt;}
.w0_c00228{width:793.840000pt;}
.w1_c00228{width:794.000000pt;}
.x0_c00228{left:0.000000pt;}
.x3_c00228{left:113.440000pt;}
.x2_c00228{left:377.920000pt;}
.x1_c00228{left:396.960000pt;}
.x4_c00228{left:656.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_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_718bd64658bf4764b71f8369.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00229{vertical-align:-61.938000px;}
.v3_c00229{vertical-align:-20.880000px;}
.v0_c00229{vertical-align:0.000000px;}
.v2_c00229{vertical-align:27.000000px;}
.ls14_c00229{letter-spacing:-0.576000px;}
.ls15_c00229{letter-spacing:-0.288000px;}
.ls13_c00229{letter-spacing:-0.072000px;}
.ls16_c00229{letter-spacing:-0.060120px;}
.ls12_c00229{letter-spacing:0.000000px;}
.ls10_c00229{letter-spacing:0.072000px;}
.ls9_c00229{letter-spacing:0.144000px;}
.ls17_c00229{letter-spacing:0.180360px;}
.ls2_c00229{letter-spacing:0.191520px;}
.lse_c00229{letter-spacing:2.520000px;}
.ls7_c00229{letter-spacing:2.880000px;}
.ls8_c00229{letter-spacing:2.887200px;}
.lsc_c00229{letter-spacing:3.240000px;}
.lsd_c00229{letter-spacing:3.960000px;}
.lsb_c00229{letter-spacing:6.480000px;}
.ls1_c00229{letter-spacing:6.840000px;}
.ls11_c00229{letter-spacing:9.078120px;}
.lsa_c00229{letter-spacing:9.720000px;}
.ls3_c00229{letter-spacing:11.880000px;}
.ls4_c00229{letter-spacing:12.600000px;}
.lsf_c00229{letter-spacing:14.760000px;}
.ls6_c00229{letter-spacing:20.160000px;}
.ls5_c00229{letter-spacing:20.880000px;}
.ls0_c00229{letter-spacing:319.518000px;}
.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;}
}
.ws4_c00229{word-spacing:-18.144000px;}
.ws2_c00229{word-spacing:-18.072000px;}
.ws5_c00229{word-spacing:-18.000000px;}
.ws0_c00229{word-spacing:-17.928000px;}
.ws3_c00229{word-spacing:-17.424000px;}
.ws1_c00229{word-spacing:-12.161520px;}
.ws6_c00229{word-spacing:-9.720000px;}
.ws33_c00229{word-spacing:-0.420840px;}
.ws8_c00229{word-spacing:-0.162000px;}
.wsb_c00229{word-spacing:-0.072000px;}
.ws7_c00229{word-spacing:0.000000px;}
.ws25_c00229{word-spacing:0.360000px;}
.ws23_c00229{word-spacing:1.728000px;}
.ws24_c00229{word-spacing:1.800000px;}
.ws2e_c00229{word-spacing:2.448000px;}
.ws2d_c00229{word-spacing:2.520000px;}
.ws1f_c00229{word-spacing:2.808000px;}
.ws20_c00229{word-spacing:2.880000px;}
.ws28_c00229{word-spacing:3.528000px;}
.ws29_c00229{word-spacing:3.600000px;}
.wsf_c00229{word-spacing:6.480000px;}
.wse_c00229{word-spacing:6.768000px;}
.wsd_c00229{word-spacing:7.488000px;}
.wsc_c00229{word-spacing:7.560000px;}
.ws32_c00229{word-spacing:9.138240px;}
.ws26_c00229{word-spacing:9.648000px;}
.ws27_c00229{word-spacing:9.720000px;}
.ws2c_c00229{word-spacing:10.440000px;}
.ws2b_c00229{word-spacing:10.728000px;}
.ws2a_c00229{word-spacing:10.800000px;}
.ws17_c00229{word-spacing:11.448000px;}
.ws18_c00229{word-spacing:11.808000px;}
.ws16_c00229{word-spacing:11.880000px;}
.ws12_c00229{word-spacing:12.600000px;}
.ws1d_c00229{word-spacing:12.816000px;}
.ws1c_c00229{word-spacing:12.888000px;}
.ws1b_c00229{word-spacing:13.032000px;}
.ws14_c00229{word-spacing:13.608000px;}
.ws15_c00229{word-spacing:14.040000px;}
.ws22_c00229{word-spacing:14.688000px;}
.ws21_c00229{word-spacing:14.760000px;}
.ws13_c00229{word-spacing:15.048000px;}
.ws2f_c00229{word-spacing:15.120000px;}
.wsa_c00229{word-spacing:16.488000px;}
.ws9_c00229{word-spacing:16.560000px;}
.ws11_c00229{word-spacing:18.288000px;}
.ws10_c00229{word-spacing:18.360000px;}
.ws31_c00229{word-spacing:19.008000px;}
.ws30_c00229{word-spacing:19.440000px;}
.ws1e_c00229{word-spacing:20.520000px;}
.ws1a_c00229{word-spacing:50.328000px;}
.ws19_c00229{word-spacing:50.400000px;}
._0_c00229{margin-left:-1.512000px;}
._1_c00229{width:1.008000px;}
._2_c00229{width:2.808000px;}
._5_c00229{width:6.840000px;}
._6_c00229{width:11.016000px;}
._4_c00229{width:12.024000px;}
._3_c00229{width:13.752000px;}
._7_c00229{width:15.480000px;}
._8_c00229{width:19.008000px;}
.fc0_c00229{color:rgb(0,0,0);}
.fs3_c00229{font-size:38.880000px;}
.fs2_c00229{font-size:47.880000px;}
.fs0_c00229{font-size:54.000000px;}
.fs4_c00229{font-size:60.120000px;}
.fs1_c00229{font-size:72.000000px;}
.y0_c00229{bottom:0.000000px;}
.y26_c00229{bottom:57.240000px;}
.y25_c00229{bottom:109.795680px;}
.y24_c00229{bottom:132.210000px;}
.y27_c00229{bottom:144.900000px;}
.y23_c00229{bottom:178.920000px;}
.y22_c00229{bottom:209.970000px;}
.y21_c00229{bottom:241.020000px;}
.y20_c00229{bottom:272.070000px;}
.y1f_c00229{bottom:303.120000px;}
.y1e_c00229{bottom:334.170000px;}
.y1d_c00229{bottom:365.220000px;}
.y1c_c00229{bottom:396.270000px;}
.y1b_c00229{bottom:427.320000px;}
.y1a_c00229{bottom:458.370000px;}
.y19_c00229{bottom:489.420000px;}
.y18_c00229{bottom:520.470000px;}
.y17_c00229{bottom:551.520000px;}
.y16_c00229{bottom:582.570000px;}
.y15_c00229{bottom:613.620000px;}
.y14_c00229{bottom:644.670000px;}
.y13_c00229{bottom:675.720000px;}
.y12_c00229{bottom:706.770000px;}
.y11_c00229{bottom:737.820000px;}
.y10_c00229{bottom:768.870000px;}
.yf_c00229{bottom:799.920000px;}
.ye_c00229{bottom:830.970000px;}
.yd_c00229{bottom:861.930000px;}
.yc_c00229{bottom:892.980000px;}
.yb_c00229{bottom:924.030000px;}
.ya_c00229{bottom:955.080000px;}
.y9_c00229{bottom:986.130000px;}
.y8_c00229{bottom:1017.180000px;}
.y7_c00229{bottom:1048.230000px;}
.y6_c00229{bottom:1079.280000px;}
.y5_c00229{bottom:1110.330000px;}
.y4_c00229{bottom:1131.030000px;}
.y3_c00229{bottom:1150.915500px;}
.y2_c00229{bottom:1166.400000px;}
.y1_c00229{bottom:1197.450000px;}
.h5_c00229{height:38.158594px;}
.h2_c00229{height:52.998047px;}
.h6_c00229{height:59.004492px;}
.h3_c00229{height:70.664062px;}
.h4_c00229{height:73.991602px;}
.h0_c00229{height:1262.880000px;}
.h1_c00229{height:1263.000000px;}
.w0_c00229{width:893.070000px;}
.w1_c00229{width:893.250000px;}
.x0_c00229{left:0.000000px;}
.x2_c00229{left:127.620000px;}
.x1_c00229{left:446.580000px;}
@media print{
.v1_c00229{vertical-align:-55.056000pt;}
.v3_c00229{vertical-align:-18.560000pt;}
.v0_c00229{vertical-align:0.000000pt;}
.v2_c00229{vertical-align:24.000000pt;}
.ls14_c00229{letter-spacing:-0.512000pt;}
.ls15_c00229{letter-spacing:-0.256000pt;}
.ls13_c00229{letter-spacing:-0.064000pt;}
.ls16_c00229{letter-spacing:-0.053440pt;}
.ls12_c00229{letter-spacing:0.000000pt;}
.ls10_c00229{letter-spacing:0.064000pt;}
.ls9_c00229{letter-spacing:0.128000pt;}
.ls17_c00229{letter-spacing:0.160320pt;}
.ls2_c00229{letter-spacing:0.170240pt;}
.lse_c00229{letter-spacing:2.240000pt;}
.ls7_c00229{letter-spacing:2.560000pt;}
.ls8_c00229{letter-spacing:2.566400pt;}
.lsc_c00229{letter-spacing:2.880000pt;}
.lsd_c00229{letter-spacing:3.520000pt;}
.lsb_c00229{letter-spacing:5.760000pt;}
.ls1_c00229{letter-spacing:6.080000pt;}
.ls11_c00229{letter-spacing:8.069440pt;}
.lsa_c00229{letter-spacing:8.640000pt;}
.ls3_c00229{letter-spacing:10.560000pt;}
.ls4_c00229{letter-spacing:11.200000pt;}
.lsf_c00229{letter-spacing:13.120000pt;}
.ls6_c00229{letter-spacing:17.920000pt;}
.ls5_c00229{letter-spacing:18.560000pt;}
.ls0_c00229{letter-spacing:284.016000pt;}
.ws4_c00229{word-spacing:-16.128000pt;}
.ws2_c00229{word-spacing:-16.064000pt;}
.ws5_c00229{word-spacing:-16.000000pt;}
.ws0_c00229{word-spacing:-15.936000pt;}
.ws3_c00229{word-spacing:-15.488000pt;}
.ws1_c00229{word-spacing:-10.810240pt;}
.ws6_c00229{word-spacing:-8.640000pt;}
.ws33_c00229{word-spacing:-0.374080pt;}
.ws8_c00229{word-spacing:-0.144000pt;}
.wsb_c00229{word-spacing:-0.064000pt;}
.ws7_c00229{word-spacing:0.000000pt;}
.ws25_c00229{word-spacing:0.320000pt;}
.ws23_c00229{word-spacing:1.536000pt;}
.ws24_c00229{word-spacing:1.600000pt;}
.ws2e_c00229{word-spacing:2.176000pt;}
.ws2d_c00229{word-spacing:2.240000pt;}
.ws1f_c00229{word-spacing:2.496000pt;}
.ws20_c00229{word-spacing:2.560000pt;}
.ws28_c00229{word-spacing:3.136000pt;}
.ws29_c00229{word-spacing:3.200000pt;}
.wsf_c00229{word-spacing:5.760000pt;}
.wse_c00229{word-spacing:6.016000pt;}
.wsd_c00229{word-spacing:6.656000pt;}
.wsc_c00229{word-spacing:6.720000pt;}
.ws32_c00229{word-spacing:8.122880pt;}
.ws26_c00229{word-spacing:8.576000pt;}
.ws27_c00229{word-spacing:8.640000pt;}
.ws2c_c00229{word-spacing:9.280000pt;}
.ws2b_c00229{word-spacing:9.536000pt;}
.ws2a_c00229{word-spacing:9.600000pt;}
.ws17_c00229{word-spacing:10.176000pt;}
.ws18_c00229{word-spacing:10.496000pt;}
.ws16_c00229{word-spacing:10.560000pt;}
.ws12_c00229{word-spacing:11.200000pt;}
.ws1d_c00229{word-spacing:11.392000pt;}
.ws1c_c00229{word-spacing:11.456000pt;}
.ws1b_c00229{word-spacing:11.584000pt;}
.ws14_c00229{word-spacing:12.096000pt;}
.ws15_c00229{word-spacing:12.480000pt;}
.ws22_c00229{word-spacing:13.056000pt;}
.ws21_c00229{word-spacing:13.120000pt;}
.ws13_c00229{word-spacing:13.376000pt;}
.ws2f_c00229{word-spacing:13.440000pt;}
.wsa_c00229{word-spacing:14.656000pt;}
.ws9_c00229{word-spacing:14.720000pt;}
.ws11_c00229{word-spacing:16.256000pt;}
.ws10_c00229{word-spacing:16.320000pt;}
.ws31_c00229{word-spacing:16.896000pt;}
.ws30_c00229{word-spacing:17.280000pt;}
.ws1e_c00229{word-spacing:18.240000pt;}
.ws1a_c00229{word-spacing:44.736000pt;}
.ws19_c00229{word-spacing:44.800000pt;}
._0_c00229{margin-left:-1.344000pt;}
._1_c00229{width:0.896000pt;}
._2_c00229{width:2.496000pt;}
._5_c00229{width:6.080000pt;}
._6_c00229{width:9.792000pt;}
._4_c00229{width:10.688000pt;}
._3_c00229{width:12.224000pt;}
._7_c00229{width:13.760000pt;}
._8_c00229{width:16.896000pt;}
.fs3_c00229{font-size:34.560000pt;}
.fs2_c00229{font-size:42.560000pt;}
.fs0_c00229{font-size:48.000000pt;}
.fs4_c00229{font-size:53.440000pt;}
.fs1_c00229{font-size:64.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y26_c00229{bottom:50.880000pt;}
.y25_c00229{bottom:97.596160pt;}
.y24_c00229{bottom:117.520000pt;}
.y27_c00229{bottom:128.800000pt;}
.y23_c00229{bottom:159.040000pt;}
.y22_c00229{bottom:186.640000pt;}
.y21_c00229{bottom:214.240000pt;}
.y20_c00229{bottom:241.840000pt;}
.y1f_c00229{bottom:269.440000pt;}
.y1e_c00229{bottom:297.040000pt;}
.y1d_c00229{bottom:324.640000pt;}
.y1c_c00229{bottom:352.240000pt;}
.y1b_c00229{bottom:379.840000pt;}
.y1a_c00229{bottom:407.440000pt;}
.y19_c00229{bottom:435.040000pt;}
.y18_c00229{bottom:462.640000pt;}
.y17_c00229{bottom:490.240000pt;}
.y16_c00229{bottom:517.840000pt;}
.y15_c00229{bottom:545.440000pt;}
.y14_c00229{bottom:573.040000pt;}
.y13_c00229{bottom:600.640000pt;}
.y12_c00229{bottom:628.240000pt;}
.y11_c00229{bottom:655.840000pt;}
.y10_c00229{bottom:683.440000pt;}
.yf_c00229{bottom:711.040000pt;}
.ye_c00229{bottom:738.640000pt;}
.yd_c00229{bottom:766.160000pt;}
.yc_c00229{bottom:793.760000pt;}
.yb_c00229{bottom:821.360000pt;}
.ya_c00229{bottom:848.960000pt;}
.y9_c00229{bottom:876.560000pt;}
.y8_c00229{bottom:904.160000pt;}
.y7_c00229{bottom:931.760000pt;}
.y6_c00229{bottom:959.360000pt;}
.y5_c00229{bottom:986.960000pt;}
.y4_c00229{bottom:1005.360000pt;}
.y3_c00229{bottom:1023.036000pt;}
.y2_c00229{bottom:1036.800000pt;}
.y1_c00229{bottom:1064.400000pt;}
.h5_c00229{height:33.918750pt;}
.h2_c00229{height:47.109375pt;}
.h6_c00229{height:52.448437pt;}
.h3_c00229{height:62.812500pt;}
.h4_c00229{height:65.770312pt;}
.h0_c00229{height:1122.560000pt;}
.h1_c00229{height:1122.666667pt;}
.w0_c00229{width:793.840000pt;}
.w1_c00229{width:794.000000pt;}
.x0_c00229{left:0.000000pt;}
.x2_c00229{left:113.440000pt;}
.x1_c00229{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33642245c820e830ce9eb507.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.284668;font-style:normal;font-weight:normal;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_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_13a12077849d9ca1058fe398.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_ff8fb85a50692b85c1c141a3.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.002930;font-style:normal;font-weight:normal;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_809f5fa95248c28c60ec7731.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{transform:matrix(0.339984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339984,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.339987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339987,0.000000,0.000000,0.250000,0,0);}
.v2_c00230{vertical-align:-83.520000px;}
.v1_c00230{vertical-align:-61.920000px;}
.v3_c00230{vertical-align:-2.934479px;}
.v0_c00230{vertical-align:0.000000px;}
.v4_c00230{vertical-align:2.934479px;}
.lsc_c00230{letter-spacing:-1.751928px;}
.lsb_c00230{letter-spacing:-1.182551px;}
.ls19_c00230{letter-spacing:-1.121242px;}
.ls12_c00230{letter-spacing:-0.963560px;}
.lse_c00230{letter-spacing:-0.569377px;}
.lsd_c00230{letter-spacing:-0.327029px;}
.ls10_c00230{letter-spacing:-0.175193px;}
.ls8_c00230{letter-spacing:-0.144000px;}
.ls17_c00230{letter-spacing:-0.140155px;}
.ls11_c00230{letter-spacing:-0.131395px;}
.ls6_c00230{letter-spacing:-0.108000px;}
.ls7_c00230{letter-spacing:0.000000px;}
.ls9_c00230{letter-spacing:0.072000px;}
.ls13_c00230{letter-spacing:0.131395px;}
.ls5_c00230{letter-spacing:0.186874px;}
.lsa_c00230{letter-spacing:0.197640px;}
.ls4_c00230{letter-spacing:0.280310px;}
.ls1a_c00230{letter-spacing:0.887650px;}
.lsf_c00230{letter-spacing:0.919762px;}
.ls18_c00230{letter-spacing:1.167960px;}
.ls16_c00230{letter-spacing:1.214678px;}
.ls14_c00230{letter-spacing:1.313946px;}
.ls15_c00230{letter-spacing:1.354834px;}
.ls3_c00230{letter-spacing:36.177313px;}
.ls0_c00230{letter-spacing:725.580000px;}
.ls1_c00230{letter-spacing:2082.240000px;}
.ls2_c00230{letter-spacing:2303.280000px;}
.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:-16.667640px;}
.ws27_c00230{word-spacing:-11.913192px;}
.ws2a_c00230{word-spacing:-11.773037px;}
.ws29_c00230{word-spacing:-10.838669px;}
.ws28_c00230{word-spacing:-10.745232px;}
.ws5_c00230{word-spacing:-10.231330px;}
.ws2b_c00230{word-spacing:-9.437117px;}
.ws4_c00230{word-spacing:-8.146465px;}
.ws36_c00230{word-spacing:-1.214678px;}
.ws39_c00230{word-spacing:-1.167960px;}
.ws33_c00230{word-spacing:-1.007359px;}
.ws32_c00230{word-spacing:-0.963560px;}
.ws3e_c00230{word-spacing:-0.887650px;}
.ws35_c00230{word-spacing:-0.569377px;}
.ws3b_c00230{word-spacing:-0.280310px;}
.ws3d_c00230{word-spacing:-0.186874px;}
.ws30_c00230{word-spacing:-0.072000px;}
.ws2c_c00230{word-spacing:0.000000px;}
.ws34_c00230{word-spacing:0.043798px;}
.ws38_c00230{word-spacing:0.140155px;}
.ws2f_c00230{word-spacing:0.144000px;}
.ws2e_c00230{word-spacing:0.162000px;}
.ws2d_c00230{word-spacing:0.270000px;}
.ws37_c00230{word-spacing:0.840931px;}
.ws3a_c00230{word-spacing:0.934368px;}
.ws3c_c00230{word-spacing:1.121242px;}
.ws31_c00230{word-spacing:1.751928px;}
.wsa_c00230{word-spacing:9.329017px;}
.ws6_c00230{word-spacing:21.023136px;}
.ws3_c00230{word-spacing:49.811693px;}
.wsb_c00230{word-spacing:49.820452px;}
.ws2_c00230{word-spacing:49.824832px;}
.ws8_c00230{word-spacing:49.842352px;}
.ws19_c00230{word-spacing:49.846731px;}
.ws20_c00230{word-spacing:117.291580px;}
.ws1d_c00230{word-spacing:131.902659px;}
.wsf_c00230{word-spacing:190.767440px;}
.ws1_c00230{word-spacing:193.693160px;}
.ws14_c00230{word-spacing:196.102061px;}
.ws24_c00230{word-spacing:220.813005px;}
.ws25_c00230{word-spacing:238.362944px;}
.ws22_c00230{word-spacing:241.253625px;}
.ws16_c00230{word-spacing:245.274300px;}
.wse_c00230{word-spacing:245.913754px;}
.ws23_c00230{word-spacing:247.166382px;}
.ws15_c00230{word-spacing:256.942140px;}
.wsc_c00230{word-spacing:261.720524px;}
.ws1b_c00230{word-spacing:263.647645px;}
.wsd_c00230{word-spacing:267.558824px;}
.ws10_c00230{word-spacing:269.683037px;}
.ws1c_c00230{word-spacing:272.381006px;}
.ws1f_c00230{word-spacing:276.116992px;}
.ws26_c00230{word-spacing:277.098072px;}
.ws7_c00230{word-spacing:277.168149px;}
.ws18_c00230{word-spacing:303.359473px;}
.ws12_c00230{word-spacing:310.555517px;}
.ws11_c00230{word-spacing:319.280118px;}
.ws1a_c00230{word-spacing:320.147323px;}
.ws21_c00230{word-spacing:323.432188px;}
.ws9_c00230{word-spacing:326.752091px;}
.ws1e_c00230{word-spacing:339.698839px;}
.ws17_c00230{word-spacing:357.086725px;}
.ws13_c00230{word-spacing:357.555365px;}
._b_c00230{margin-left:-2.317094px;}
._1_c00230{margin-left:-1.058400px;}
._0_c00230{width:1.225800px;}
._2_c00230{width:2.599432px;}
._1c_c00230{width:3.872256px;}
._1d_c00230{width:58.580208px;}
._15_c00230{width:96.381786px;}
._9_c00230{width:116.176907px;}
._3_c00230{width:119.520891px;}
._6_c00230{width:120.557277px;}
._10_c00230{width:125.260654px;}
._12_c00230{width:126.395577px;}
._f_c00230{width:127.586355px;}
._11_c00230{width:137.185424px;}
._14_c00230{width:140.805167px;}
._1b_c00230{width:145.604405px;}
._d_c00230{width:146.849336px;}
._4_c00230{width:148.267848px;}
._c_c00230{width:149.380339px;}
._1a_c00230{width:154.667315px;}
._5_c00230{width:157.377874px;}
._1f_c00230{width:158.456632px;}
._18_c00230{width:160.156861px;}
._8_c00230{width:161.176277px;}
._19_c00230{width:178.335862px;}
._13_c00230{width:183.748753px;}
._1e_c00230{width:198.539989px;}
._a_c00230{width:203.965452px;}
._7_c00230{width:205.210437px;}
._17_c00230{width:207.515855px;}
._e_c00230{width:224.638752px;}
._16_c00230{width:225.683915px;}
.fc0_c00230{color:rgb(0,0,0);}
.fs3_c00230{font-size:43.798200px;}
.fs4_c00230{font-size:46.718400px;}
.fs0_c00230{font-size:54.000000px;}
.fs2_c00230{font-size:65.880000px;}
.fs1_c00230{font-size:72.000000px;}
.y0_c00230{bottom:0.000000px;}
.y58_c00230{bottom:2.201080px;}
.y11_c00230{bottom:2.918250px;}
.y10_c00230{bottom:2.918400px;}
.ya_c00230{bottom:2.918700px;}
.y15_c00230{bottom:2.918850px;}
.y14_c00230{bottom:2.919000px;}
.y1e_c00230{bottom:2.919150px;}
.yd_c00230{bottom:2.919300px;}
.y19_c00230{bottom:2.919450px;}
.y18_c00230{bottom:2.919600px;}
.y21_c00230{bottom:2.919750px;}
.y3f_c00230{bottom:2.919900px;}
.y1c_c00230{bottom:2.920050px;}
.y30_c00230{bottom:2.920200px;}
.y2b_c00230{bottom:2.920350px;}
.y2a_c00230{bottom:2.920500px;}
.y3d_c00230{bottom:2.920800px;}
.y48_c00230{bottom:2.920950px;}
.y27_c00230{bottom:3.648750px;}
.yf_c00230{bottom:3.648900px;}
.y38_c00230{bottom:3.649050px;}
.y9_c00230{bottom:3.649200px;}
.y35_c00230{bottom:3.649350px;}
.y13_c00230{bottom:3.649500px;}
.y3a_c00230{bottom:3.649650px;}
.yc_c00230{bottom:3.649800px;}
.y2d_c00230{bottom:3.649950px;}
.y17_c00230{bottom:3.650100px;}
.y33_c00230{bottom:3.650250px;}
.y20_c00230{bottom:3.650400px;}
.y2f_c00230{bottom:3.650550px;}
.y1b_c00230{bottom:3.650700px;}
.y29_c00230{bottom:3.650850px;}
.y47_c00230{bottom:3.651150px;}
.y53_c00230{bottom:10.224965px;}
.y4f_c00230{bottom:17.518950px;}
.y57_c00230{bottom:17.524715px;}
.y52_c00230{bottom:25.548600px;}
.y4c_c00230{bottom:25.554515px;}
.y4e_c00230{bottom:32.842585px;}
.y56_c00230{bottom:32.848350px;}
.y4a_c00230{bottom:32.848500px;}
.y4b_c00230{bottom:40.878150px;}
.y51_c00230{bottom:40.883915px;}
.y55_c00230{bottom:48.171985px;}
.y4d_c00230{bottom:48.177900px;}
.y50_c00230{bottom:56.207550px;}
.y59_c00230{bottom:57.330000px;}
.y54_c00230{bottom:63.507300px;}
.y7_c00230{bottom:133.200000px;}
.y6_c00230{bottom:148.500000px;}
.y46_c00230{bottom:149.950500px;}
.y45_c00230{bottom:165.280500px;}
.y44_c00230{bottom:180.610500px;}
.y43_c00230{bottom:195.940500px;}
.y42_c00230{bottom:211.269000px;}
.y41_c00230{bottom:226.599000px;}
.y40_c00230{bottom:241.927500px;}
.y3e_c00230{bottom:257.257500px;}
.y3c_c00230{bottom:272.586000px;}
.y3b_c00230{bottom:287.916000px;}
.y39_c00230{bottom:303.246000px;}
.y37_c00230{bottom:318.576000px;}
.y36_c00230{bottom:333.904500px;}
.y34_c00230{bottom:349.234500px;}
.y32_c00230{bottom:364.563000px;}
.y31_c00230{bottom:379.893000px;}
.y2e_c00230{bottom:395.221500px;}
.y2c_c00230{bottom:410.551500px;}
.y28_c00230{bottom:425.880000px;}
.y26_c00230{bottom:441.211500px;}
.y25_c00230{bottom:456.540000px;}
.y24_c00230{bottom:471.870000px;}
.y23_c00230{bottom:487.198500px;}
.y22_c00230{bottom:502.528500px;}
.y1f_c00230{bottom:517.857000px;}
.y1d_c00230{bottom:533.187000px;}
.y1a_c00230{bottom:548.515500px;}
.y16_c00230{bottom:563.845500px;}
.y12_c00230{bottom:579.175500px;}
.ye_c00230{bottom:594.505500px;}
.yb_c00230{bottom:609.834000px;}
.y8_c00230{bottom:625.164000px;}
.y49_c00230{bottom:641.223000px;}
.y5_c00230{bottom:719.640000px;}
.y4_c00230{bottom:761.220000px;}
.y3_c00230{bottom:781.110000px;}
.y2_c00230{bottom:796.594500px;}
.y1_c00230{bottom:827.640000px;}
.h9_c00230{height:14.599500px;}
.ha_c00230{height:14.601000px;}
.h5_c00230{height:15.328500px;}
.h8_c00230{height:32.570634px;}
.h7_c00230{height:34.742248px;}
.h6_c00230{height:36.120683px;}
.hc_c00230{height:38.528993px;}
.h2_c00230{height:52.998047px;}
.h3_c00230{height:70.664062px;}
.h4_c00230{height:72.562500px;}
.hb_c00230{height:73.728000px;}
.h0_c00230{height:893.070000px;}
.h1_c00230{height:893.250000px;}
.w3_c00230{width:26.805000px;}
.w5_c00230{width:71.475000px;}
.wd_c00230{width:71.476500px;}
.wc_c00230{width:75.445500px;}
.w8_c00230{width:84.381000px;}
.w9_c00230{width:89.344500px;}
.w6_c00230{width:89.346000px;}
.w7_c00230{width:94.308000px;}
.we_c00230{width:95.302500px;}
.wb_c00230{width:97.287000px;}
.wa_c00230{width:98.278500px;}
.w4_c00230{width:141.960000px;}
.w2_c00230{width:1047.319500px;}
.w0_c00230{width:1262.880000px;}
.w1_c00230{width:1263.000000px;}
.x0_c00230{left:0.000000px;}
.xa_c00230{left:2.979300px;}
.x16_c00230{left:4.955165px;}
.x9_c00230{left:5.957550px;}
.x12_c00230{left:8.927802px;}
.x6_c00230{left:9.928350px;}
.xf_c00230{left:12.906187px;}
.x1c_c00230{left:14.882502px;}
.x19_c00230{left:15.882750px;}
.x15_c00230{left:17.868450px;}
.x11_c00230{left:19.855650px;}
.x20_c00230{left:22.832100px;}
.x1d_c00230{left:30.766002px;}
.x1b_c00230{left:33.752100px;}
.xd_c00230{left:36.729900px;}
.x2_c00230{left:106.380000px;}
.xc_c00230{left:135.169500px;}
.xe_c00230{left:278.119500px;}
.x3_c00230{left:316.710000px;}
.x10_c00230{left:350.587500px;}
.x13_c00230{left:440.926500px;}
.x5_c00230{left:500.220000px;}
.x21_c00230{left:536.226000px;}
.x1_c00230{left:631.440000px;}
.x14_c00230{left:632.521500px;}
.x17_c00230{left:717.895500px;}
.x18_c00230{left:808.233000px;}
.x1a_c00230{left:907.504500px;}
.xb_c00230{left:920.250750px;}
.x7_c00230{left:928.192500px;}
.x1e_c00230{left:1005.783000px;}
.x8_c00230{left:1030.442400px;}
.x1f_c00230{left:1082.223000px;}
.x22_c00230{left:1129.590000px;}
.x4_c00230{left:1155.780000px;}
@media print{
.v2_c00230{vertical-align:-74.240000pt;}
.v1_c00230{vertical-align:-55.040000pt;}
.v3_c00230{vertical-align:-2.608426pt;}
.v0_c00230{vertical-align:0.000000pt;}
.v4_c00230{vertical-align:2.608426pt;}
.lsc_c00230{letter-spacing:-1.557269pt;}
.lsb_c00230{letter-spacing:-1.051157pt;}
.ls19_c00230{letter-spacing:-0.996659pt;}
.ls12_c00230{letter-spacing:-0.856498pt;}
.lse_c00230{letter-spacing:-0.506113pt;}
.lsd_c00230{letter-spacing:-0.290692pt;}
.ls10_c00230{letter-spacing:-0.155727pt;}
.ls8_c00230{letter-spacing:-0.128000pt;}
.ls17_c00230{letter-spacing:-0.124582pt;}
.ls11_c00230{letter-spacing:-0.116795pt;}
.ls6_c00230{letter-spacing:-0.096000pt;}
.ls7_c00230{letter-spacing:0.000000pt;}
.ls9_c00230{letter-spacing:0.064000pt;}
.ls13_c00230{letter-spacing:0.116795pt;}
.ls5_c00230{letter-spacing:0.166110pt;}
.lsa_c00230{letter-spacing:0.175680pt;}
.ls4_c00230{letter-spacing:0.249165pt;}
.ls1a_c00230{letter-spacing:0.789022pt;}
.lsf_c00230{letter-spacing:0.817566pt;}
.ls18_c00230{letter-spacing:1.038187pt;}
.ls16_c00230{letter-spacing:1.079714pt;}
.ls14_c00230{letter-spacing:1.167952pt;}
.ls15_c00230{letter-spacing:1.204297pt;}
.ls3_c00230{letter-spacing:32.157612pt;}
.ls0_c00230{letter-spacing:644.960000pt;}
.ls1_c00230{letter-spacing:1850.880000pt;}
.ls2_c00230{letter-spacing:2047.360000pt;}
.ws0_c00230{word-spacing:-14.815680pt;}
.ws27_c00230{word-spacing:-10.589504pt;}
.ws2a_c00230{word-spacing:-10.464922pt;}
.ws29_c00230{word-spacing:-9.634372pt;}
.ws28_c00230{word-spacing:-9.551317pt;}
.ws5_c00230{word-spacing:-9.094515pt;}
.ws2b_c00230{word-spacing:-8.388548pt;}
.ws4_c00230{word-spacing:-7.241302pt;}
.ws36_c00230{word-spacing:-1.079714pt;}
.ws39_c00230{word-spacing:-1.038187pt;}
.ws33_c00230{word-spacing:-0.895430pt;}
.ws32_c00230{word-spacing:-0.856498pt;}
.ws3e_c00230{word-spacing:-0.789022pt;}
.ws35_c00230{word-spacing:-0.506113pt;}
.ws3b_c00230{word-spacing:-0.249165pt;}
.ws3d_c00230{word-spacing:-0.166110pt;}
.ws30_c00230{word-spacing:-0.064000pt;}
.ws2c_c00230{word-spacing:0.000000pt;}
.ws34_c00230{word-spacing:0.038932pt;}
.ws38_c00230{word-spacing:0.124582pt;}
.ws2f_c00230{word-spacing:0.128000pt;}
.ws2e_c00230{word-spacing:0.144000pt;}
.ws2d_c00230{word-spacing:0.240000pt;}
.ws37_c00230{word-spacing:0.747494pt;}
.ws3a_c00230{word-spacing:0.830549pt;}
.ws3c_c00230{word-spacing:0.996659pt;}
.ws31_c00230{word-spacing:1.557269pt;}
.wsa_c00230{word-spacing:8.292459pt;}
.ws6_c00230{word-spacing:18.687232pt;}
.ws3_c00230{word-spacing:44.277060pt;}
.wsb_c00230{word-spacing:44.284847pt;}
.ws2_c00230{word-spacing:44.288740pt;}
.ws8_c00230{word-spacing:44.304313pt;}
.ws19_c00230{word-spacing:44.308206pt;}
.ws20_c00230{word-spacing:104.259182pt;}
.ws1d_c00230{word-spacing:117.246808pt;}
.wsf_c00230{word-spacing:169.571058pt;}
.ws1_c00230{word-spacing:172.171697pt;}
.ws14_c00230{word-spacing:174.312943pt;}
.ws24_c00230{word-spacing:196.278227pt;}
.ws25_c00230{word-spacing:211.878172pt;}
.ws22_c00230{word-spacing:214.447667pt;}
.ws16_c00230{word-spacing:218.021600pt;}
.wse_c00230{word-spacing:218.590003pt;}
.ws23_c00230{word-spacing:219.703451pt;}
.ws15_c00230{word-spacing:228.393014pt;}
.wsc_c00230{word-spacing:232.640466pt;}
.ws1b_c00230{word-spacing:234.353462pt;}
.wsd_c00230{word-spacing:237.830066pt;}
.ws10_c00230{word-spacing:239.718255pt;}
.ws1c_c00230{word-spacing:242.116450pt;}
.ws1f_c00230{word-spacing:245.437326pt;}
.ws26_c00230{word-spacing:246.309397pt;}
.ws7_c00230{word-spacing:246.371688pt;}
.ws18_c00230{word-spacing:269.652865pt;}
.ws12_c00230{word-spacing:276.049348pt;}
.ws11_c00230{word-spacing:283.804550pt;}
.ws1a_c00230{word-spacing:284.575398pt;}
.ws21_c00230{word-spacing:287.495278pt;}
.ws9_c00230{word-spacing:290.446303pt;}
.ws1e_c00230{word-spacing:301.954524pt;}
.ws17_c00230{word-spacing:317.410422pt;}
.ws13_c00230{word-spacing:317.826991pt;}
._b_c00230{margin-left:-2.059639pt;}
._1_c00230{margin-left:-0.940800pt;}
._0_c00230{width:1.089600pt;}
._2_c00230{width:2.310606pt;}
._1c_c00230{width:3.442006pt;}
._1d_c00230{width:52.071296pt;}
._15_c00230{width:85.672699pt;}
._9_c00230{width:103.268362pt;}
._3_c00230{width:106.240792pt;}
._6_c00230{width:107.162024pt;}
._10_c00230{width:111.342803pt;}
._12_c00230{width:112.351624pt;}
._f_c00230{width:113.410093pt;}
._11_c00230{width:121.942599pt;}
._14_c00230{width:125.160149pt;}
._1b_c00230{width:129.426138pt;}
._d_c00230{width:130.532743pt;}
._4_c00230{width:131.793643pt;}
._c_c00230{width:132.782524pt;}
._1a_c00230{width:137.482057pt;}
._5_c00230{width:139.891443pt;}
._1f_c00230{width:140.850340pt;}
._18_c00230{width:142.361654pt;}
._8_c00230{width:143.267802pt;}
._19_c00230{width:158.520766pt;}
._13_c00230{width:163.332225pt;}
._1e_c00230{width:176.479990pt;}
._a_c00230{width:181.302624pt;}
._7_c00230{width:182.409278pt;}
._17_c00230{width:184.458537pt;}
._e_c00230{width:199.678891pt;}
._16_c00230{width:200.607924pt;}
.fs3_c00230{font-size:38.931733pt;}
.fs4_c00230{font-size:41.527467pt;}
.fs0_c00230{font-size:48.000000pt;}
.fs2_c00230{font-size:58.560000pt;}
.fs1_c00230{font-size:64.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y58_c00230{bottom:1.956515pt;}
.y11_c00230{bottom:2.594000pt;}
.y10_c00230{bottom:2.594133pt;}
.ya_c00230{bottom:2.594400pt;}
.y15_c00230{bottom:2.594533pt;}
.y14_c00230{bottom:2.594667pt;}
.y1e_c00230{bottom:2.594800pt;}
.yd_c00230{bottom:2.594933pt;}
.y19_c00230{bottom:2.595067pt;}
.y18_c00230{bottom:2.595200pt;}
.y21_c00230{bottom:2.595333pt;}
.y3f_c00230{bottom:2.595467pt;}
.y1c_c00230{bottom:2.595600pt;}
.y30_c00230{bottom:2.595733pt;}
.y2b_c00230{bottom:2.595867pt;}
.y2a_c00230{bottom:2.596000pt;}
.y3d_c00230{bottom:2.596267pt;}
.y48_c00230{bottom:2.596400pt;}
.y27_c00230{bottom:3.243333pt;}
.yf_c00230{bottom:3.243467pt;}
.y38_c00230{bottom:3.243600pt;}
.y9_c00230{bottom:3.243733pt;}
.y35_c00230{bottom:3.243867pt;}
.y13_c00230{bottom:3.244000pt;}
.y3a_c00230{bottom:3.244133pt;}
.yc_c00230{bottom:3.244267pt;}
.y2d_c00230{bottom:3.244400pt;}
.y17_c00230{bottom:3.244533pt;}
.y33_c00230{bottom:3.244667pt;}
.y20_c00230{bottom:3.244800pt;}
.y2f_c00230{bottom:3.244933pt;}
.y1b_c00230{bottom:3.245067pt;}
.y29_c00230{bottom:3.245200pt;}
.y47_c00230{bottom:3.245467pt;}
.y53_c00230{bottom:9.088858pt;}
.y4f_c00230{bottom:15.572400pt;}
.y57_c00230{bottom:15.577524pt;}
.y52_c00230{bottom:22.709867pt;}
.y4c_c00230{bottom:22.715124pt;}
.y4e_c00230{bottom:29.193409pt;}
.y56_c00230{bottom:29.198533pt;}
.y4a_c00230{bottom:29.198667pt;}
.y4b_c00230{bottom:36.336133pt;}
.y51_c00230{bottom:36.341258pt;}
.y55_c00230{bottom:42.819542pt;}
.y4d_c00230{bottom:42.824800pt;}
.y50_c00230{bottom:49.962267pt;}
.y59_c00230{bottom:50.960000pt;}
.y54_c00230{bottom:56.450933pt;}
.y7_c00230{bottom:118.400000pt;}
.y6_c00230{bottom:132.000000pt;}
.y46_c00230{bottom:133.289333pt;}
.y45_c00230{bottom:146.916000pt;}
.y44_c00230{bottom:160.542667pt;}
.y43_c00230{bottom:174.169333pt;}
.y42_c00230{bottom:187.794667pt;}
.y41_c00230{bottom:201.421333pt;}
.y40_c00230{bottom:215.046667pt;}
.y3e_c00230{bottom:228.673333pt;}
.y3c_c00230{bottom:242.298667pt;}
.y3b_c00230{bottom:255.925333pt;}
.y39_c00230{bottom:269.552000pt;}
.y37_c00230{bottom:283.178667pt;}
.y36_c00230{bottom:296.804000pt;}
.y34_c00230{bottom:310.430667pt;}
.y32_c00230{bottom:324.056000pt;}
.y31_c00230{bottom:337.682667pt;}
.y2e_c00230{bottom:351.308000pt;}
.y2c_c00230{bottom:364.934667pt;}
.y28_c00230{bottom:378.560000pt;}
.y26_c00230{bottom:392.188000pt;}
.y25_c00230{bottom:405.813333pt;}
.y24_c00230{bottom:419.440000pt;}
.y23_c00230{bottom:433.065333pt;}
.y22_c00230{bottom:446.692000pt;}
.y1f_c00230{bottom:460.317333pt;}
.y1d_c00230{bottom:473.944000pt;}
.y1a_c00230{bottom:487.569333pt;}
.y16_c00230{bottom:501.196000pt;}
.y12_c00230{bottom:514.822667pt;}
.ye_c00230{bottom:528.449333pt;}
.yb_c00230{bottom:542.074667pt;}
.y8_c00230{bottom:555.701333pt;}
.y49_c00230{bottom:569.976000pt;}
.y5_c00230{bottom:639.680000pt;}
.y4_c00230{bottom:676.640000pt;}
.y3_c00230{bottom:694.320000pt;}
.y2_c00230{bottom:708.084000pt;}
.y1_c00230{bottom:735.680000pt;}
.h9_c00230{height:12.977333pt;}
.ha_c00230{height:12.978667pt;}
.h5_c00230{height:13.625333pt;}
.h8_c00230{height:28.951675pt;}
.h7_c00230{height:30.881998pt;}
.h6_c00230{height:32.107274pt;}
.hc_c00230{height:34.247994pt;}
.h2_c00230{height:47.109375pt;}
.h3_c00230{height:62.812500pt;}
.h4_c00230{height:64.500000pt;}
.hb_c00230{height:65.536000pt;}
.h0_c00230{height:793.840000pt;}
.h1_c00230{height:794.000000pt;}
.w3_c00230{width:23.826667pt;}
.w5_c00230{width:63.533333pt;}
.wd_c00230{width:63.534667pt;}
.wc_c00230{width:67.062667pt;}
.w8_c00230{width:75.005333pt;}
.w9_c00230{width:79.417333pt;}
.w6_c00230{width:79.418667pt;}
.w7_c00230{width:83.829333pt;}
.we_c00230{width:84.713333pt;}
.wb_c00230{width:86.477333pt;}
.wa_c00230{width:87.358667pt;}
.w4_c00230{width:126.186667pt;}
.w2_c00230{width:930.950667pt;}
.w0_c00230{width:1122.560000pt;}
.w1_c00230{width:1122.666667pt;}
.x0_c00230{left:0.000000pt;}
.xa_c00230{left:2.648267pt;}
.x16_c00230{left:4.404591pt;}
.x9_c00230{left:5.295600pt;}
.x12_c00230{left:7.935824pt;}
.x6_c00230{left:8.825200pt;}
.xf_c00230{left:11.472167pt;}
.x1c_c00230{left:13.228891pt;}
.x19_c00230{left:14.118000pt;}
.x15_c00230{left:15.883067pt;}
.x11_c00230{left:17.649467pt;}
.x20_c00230{left:20.295200pt;}
.x1d_c00230{left:27.347557pt;}
.x1b_c00230{left:30.001867pt;}
.xd_c00230{left:32.648800pt;}
.x2_c00230{left:94.560000pt;}
.xc_c00230{left:120.150667pt;}
.xe_c00230{left:247.217333pt;}
.x3_c00230{left:281.520000pt;}
.x10_c00230{left:311.633333pt;}
.x13_c00230{left:391.934667pt;}
.x5_c00230{left:444.640000pt;}
.x21_c00230{left:476.645333pt;}
.x1_c00230{left:561.280000pt;}
.x14_c00230{left:562.241333pt;}
.x17_c00230{left:638.129333pt;}
.x18_c00230{left:718.429333pt;}
.x1a_c00230{left:806.670667pt;}
.xb_c00230{left:818.000667pt;}
.x7_c00230{left:825.060000pt;}
.x1e_c00230{left:894.029333pt;}
.x8_c00230{left:915.948800pt;}
.x1f_c00230{left:961.976000pt;}
.x22_c00230{left:1004.080000pt;}
.x4_c00230{left:1027.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_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_a8c931aeeaba8a4c04fe3e4c.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_767b9596e44c653d2b72783a.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.002930;font-style:normal;font-weight:normal;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_e74b07ebded0c67389dd9f51.woff2')format("woff");}.ff4_c00231{font-family:ff4_c00231;line-height:0.921875;font-style:normal;font-weight:normal;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_0add47b736c63e786fbad3c0.woff2')format("woff");}.ff5_c00231{font-family:ff5_c00231;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314011,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314012,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.314016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314016,0.000000,0.000000,0.250000,0,0);}
.v1_c00231{vertical-align:-61.938000px;}
.v2_c00231{vertical-align:-3.178574px;}
.v0_c00231{vertical-align:0.000000px;}
.v3_c00231{vertical-align:3.178574px;}
.ls3_c00231{letter-spacing:-1.897656px;}
.lsc_c00231{letter-spacing:-1.562393px;}
.ls4_c00231{letter-spacing:-1.280918px;}
.ls9_c00231{letter-spacing:-1.043711px;}
.lsb_c00231{letter-spacing:-0.616738px;}
.ls5_c00231{letter-spacing:-0.354228px;}
.lsa_c00231{letter-spacing:-0.189766px;}
.ls7_c00231{letter-spacing:-0.142324px;}
.ls2_c00231{letter-spacing:0.000000px;}
.ls6_c00231{letter-spacing:0.996269px;}
.ls8_c00231{letter-spacing:1.423242px;}
.lsd_c00231{letter-spacing:1.603508px;}
.ls1_c00231{letter-spacing:39.186596px;}
.ls0_c00231{letter-spacing:1144.260000px;}
.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;}
}
.ws4_c00231{word-spacing:-11.082276px;}
.ws3_c00231{word-spacing:-8.824100px;}
.ws2c_c00231{word-spacing:-2.656718px;}
.ws30_c00231{word-spacing:-2.384705px;}
.ws2b_c00231{word-spacing:-1.091152px;}
.ws2d_c00231{word-spacing:-0.616738px;}
.ws29_c00231{word-spacing:-0.162000px;}
.ws28_c00231{word-spacing:0.000000px;}
.ws2e_c00231{word-spacing:0.047441px;}
.ws2f_c00231{word-spacing:0.781196px;}
.ws2a_c00231{word-spacing:1.897656px;}
.wsb_c00231{word-spacing:10.105018px;}
.ws0_c00231{word-spacing:22.771872px;}
.wse_c00231{word-spacing:53.959848px;}
.ws6_c00231{word-spacing:53.969337px;}
.ws2_c00231{word-spacing:53.988313px;}
.wsc_c00231{word-spacing:53.993057px;}
.ws15_c00231{word-spacing:216.489341px;}
.ws12_c00231{word-spacing:247.392669px;}
.ws26_c00231{word-spacing:263.622372px;}
.ws20_c00231{word-spacing:269.875148px;}
.ws10_c00231{word-spacing:270.857185px;}
.ws16_c00231{word-spacing:282.523025px;}
.ws1a_c00231{word-spacing:282.546746px;}
.ws1e_c00231{word-spacing:283.490830px;}
.wsf_c00231{word-spacing:292.979110px;}
.wsa_c00231{word-spacing:299.307793px;}
.ws17_c00231{word-spacing:301.528050px;}
.ws13_c00231{word-spacing:302.467390px;}
.ws24_c00231{word-spacing:313.141705px;}
.ws7_c00231{word-spacing:319.389737px;}
.ws1d_c00231{word-spacing:322.606264px;}
.ws5_c00231{word-spacing:323.683184px;}
.ws25_c00231{word-spacing:325.319912px;}
.ws23_c00231{word-spacing:326.838037px;}
.ws9_c00231{word-spacing:327.772633px;}
.ws18_c00231{word-spacing:330.049820px;}
.ws11_c00231{word-spacing:330.903765px;}
.ws19_c00231{word-spacing:332.768212px;}
.ws14_c00231{word-spacing:334.096571px;}
.ws22_c00231{word-spacing:337.275145px;}
.ws1c_c00231{word-spacing:345.847806px;}
.ws1f_c00231{word-spacing:348.836614px;}
.ws1b_c00231{word-spacing:350.274089px;}
.ws27_c00231{word-spacing:351.071104px;}
.wsd_c00231{word-spacing:358.827773px;}
.ws8_c00231{word-spacing:361.650536px;}
.ws1_c00231{word-spacing:368.017172px;}
.ws21_c00231{word-spacing:405.989269px;}
._1c_c00231{margin-left:-5.627459px;}
._1a_c00231{margin-left:-4.604947px;}
._1b_c00231{margin-left:-3.207017px;}
._a_c00231{margin-left:-2.087422px;}
._12_c00231{margin-left:-1.029478px;}
._4_c00231{width:1.892912px;}
._0_c00231{width:2.912902px;}
._16_c00231{width:4.141634px;}
._14_c00231{width:104.712658px;}
._c_c00231{width:122.835273px;}
._f_c00231{width:126.175147px;}
._10_c00231{width:129.685811px;}
._6_c00231{width:136.337095px;}
._b_c00231{width:152.495636px;}
._15_c00231{width:156.390575px;}
._1_c00231{width:158.354649px;}
._2_c00231{width:160.816858px;}
._7_c00231{width:161.822615px;}
._8_c00231{width:171.396290px;}
._11_c00231{width:174.769373px;}
._18_c00231{width:177.478277px;}
._3_c00231{width:192.517201px;}
._d_c00231{width:193.783887px;}
._9_c00231{width:221.821754px;}
._13_c00231{width:227.353421px;}
._19_c00231{width:228.397132px;}
._5_c00231{width:244.090747px;}
._e_c00231{width:299.402675px;}
._17_c00231{width:304.735089px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs4_c00231{font-size:41.115600px;}
.fs2_c00231{font-size:47.441400px;}
.fs3_c00231{font-size:50.604000px;}
.fs0_c00231{font-size:54.000000px;}
.fs1_c00231{font-size:72.000000px;}
.y0_c00231{bottom:0.000000px;}
.y19_c00231{bottom:3.161550px;}
.y14_c00231{bottom:3.161850px;}
.y1b_c00231{bottom:3.162150px;}
.y2c_c00231{bottom:3.162300px;}
.ya_c00231{bottom:3.162450px;}
.y11_c00231{bottom:3.162600px;}
.y16_c00231{bottom:3.162750px;}
.y1d_c00231{bottom:3.162900px;}
.y1e_c00231{bottom:3.163050px;}
.y20_c00231{bottom:3.163200px;}
.y7_c00231{bottom:3.163350px;}
.y27_c00231{bottom:3.163500px;}
.y28_c00231{bottom:3.163650px;}
.y23_c00231{bottom:3.163950px;}
.y18_c00231{bottom:3.952200px;}
.y13_c00231{bottom:3.952500px;}
.y47_c00231{bottom:3.952650px;}
.ye_c00231{bottom:3.952800px;}
.y9_c00231{bottom:3.953100px;}
.y10_c00231{bottom:3.953400px;}
.y42_c00231{bottom:3.953550px;}
.yc_c00231{bottom:3.953700px;}
.y6_c00231{bottom:3.954000px;}
.y26_c00231{bottom:3.954300px;}
.y22_c00231{bottom:3.954600px;}
.y44_c00231{bottom:4.743300px;}
.y48_c00231{bottom:57.330000px;}
.y46_c00231{bottom:77.091000px;}
.y45_c00231{bottom:92.904000px;}
.y43_c00231{bottom:108.718500px;}
.y41_c00231{bottom:125.322000px;}
.y40_c00231{bottom:142.716000px;}
.y3f_c00231{bottom:159.321000px;}
.y3e_c00231{bottom:175.926000px;}
.y3d_c00231{bottom:192.531000px;}
.y3c_c00231{bottom:209.134500px;}
.y3b_c00231{bottom:225.739500px;}
.y3a_c00231{bottom:242.344500px;}
.y39_c00231{bottom:258.948000px;}
.y38_c00231{bottom:275.553000px;}
.y37_c00231{bottom:292.156500px;}
.y36_c00231{bottom:308.761500px;}
.y35_c00231{bottom:325.366500px;}
.y34_c00231{bottom:341.970000px;}
.y33_c00231{bottom:358.575000px;}
.y32_c00231{bottom:375.178500px;}
.y31_c00231{bottom:391.783500px;}
.y30_c00231{bottom:408.387000px;}
.y2f_c00231{bottom:424.992000px;}
.y2e_c00231{bottom:441.595500px;}
.y2d_c00231{bottom:458.200500px;}
.y2b_c00231{bottom:474.805500px;}
.y2a_c00231{bottom:491.409000px;}
.y29_c00231{bottom:508.014000px;}
.y25_c00231{bottom:524.617500px;}
.y24_c00231{bottom:541.222500px;}
.y21_c00231{bottom:557.826000px;}
.y1f_c00231{bottom:574.431000px;}
.y1c_c00231{bottom:591.036000px;}
.y1a_c00231{bottom:607.641000px;}
.y17_c00231{bottom:624.246000px;}
.y15_c00231{bottom:640.849500px;}
.y12_c00231{bottom:657.454500px;}
.yf_c00231{bottom:674.058000px;}
.yd_c00231{bottom:690.663000px;}
.yb_c00231{bottom:707.266500px;}
.y8_c00231{bottom:723.871500px;}
.y5_c00231{bottom:740.475000px;}
.y4_c00231{bottom:761.220000px;}
.y3_c00231{bottom:781.105500px;}
.y2_c00231{bottom:796.590000px;}
.y1_c00231{bottom:827.640000px;}
.hb_c00231{height:15.022500px;}
.h8_c00231{height:15.813000px;}
.h4_c00231{height:15.814500px;}
.h9_c00231{height:16.605000px;}
.h7_c00231{height:35.279908px;}
.h6_c00231{height:37.631783px;}
.h5_c00231{height:39.125256px;}
.hc_c00231{height:40.352713px;}
.ha_c00231{height:41.436816px;}
.h2_c00231{height:52.998047px;}
.h3_c00231{height:70.664062px;}
.h0_c00231{height:893.070000px;}
.h1_c00231{height:893.250000px;}
.w3_c00231{width:1018.965000px;}
.w2_c00231{width:1047.768000px;}
.w0_c00231{width:1262.880000px;}
.w1_c00231{width:1263.000000px;}
.x0_c00231{left:0.000000px;}
.x7_c00231{left:2.979600px;}
.x4_c00231{left:5.959050px;}
.x9_c00231{left:9.931500px;}
.x2_c00231{left:106.380000px;}
.x3_c00231{left:107.823000px;}
.xb_c00231{left:135.631500px;}
.x1_c00231{left:631.440000px;}
.xa_c00231{left:912.699750px;}
.x5_c00231{left:920.645250px;}
.x8_c00231{left:1023.932100px;}
.x6_c00231{left:1030.884450px;}
@media print{
.v1_c00231{vertical-align:-55.056000pt;}
.v2_c00231{vertical-align:-2.825399pt;}
.v0_c00231{vertical-align:0.000000pt;}
.v3_c00231{vertical-align:2.825399pt;}
.ls3_c00231{letter-spacing:-1.686805pt;}
.lsc_c00231{letter-spacing:-1.388794pt;}
.ls4_c00231{letter-spacing:-1.138594pt;}
.ls9_c00231{letter-spacing:-0.927743pt;}
.lsb_c00231{letter-spacing:-0.548212pt;}
.ls5_c00231{letter-spacing:-0.314869pt;}
.lsa_c00231{letter-spacing:-0.168681pt;}
.ls7_c00231{letter-spacing:-0.126510pt;}
.ls2_c00231{letter-spacing:0.000000pt;}
.ls6_c00231{letter-spacing:0.885573pt;}
.ls8_c00231{letter-spacing:1.265104pt;}
.lsd_c00231{letter-spacing:1.425341pt;}
.ls1_c00231{letter-spacing:34.832530pt;}
.ls0_c00231{letter-spacing:1017.120000pt;}
.ws4_c00231{word-spacing:-9.850912pt;}
.ws3_c00231{word-spacing:-7.843645pt;}
.ws2c_c00231{word-spacing:-2.361527pt;}
.ws30_c00231{word-spacing:-2.119738pt;}
.ws2b_c00231{word-spacing:-0.969913pt;}
.ws2d_c00231{word-spacing:-0.548212pt;}
.ws29_c00231{word-spacing:-0.144000pt;}
.ws28_c00231{word-spacing:0.000000pt;}
.ws2e_c00231{word-spacing:0.042170pt;}
.ws2f_c00231{word-spacing:0.694397pt;}
.ws2a_c00231{word-spacing:1.686805pt;}
.wsb_c00231{word-spacing:8.982238pt;}
.ws0_c00231{word-spacing:20.241664pt;}
.wse_c00231{word-spacing:47.964310pt;}
.ws6_c00231{word-spacing:47.972744pt;}
.ws2_c00231{word-spacing:47.989612pt;}
.wsc_c00231{word-spacing:47.993829pt;}
.ws15_c00231{word-spacing:192.434969pt;}
.ws12_c00231{word-spacing:219.904594pt;}
.ws26_c00231{word-spacing:234.330997pt;}
.ws20_c00231{word-spacing:239.889020pt;}
.ws10_c00231{word-spacing:240.761942pt;}
.ws16_c00231{word-spacing:251.131578pt;}
.ws1a_c00231{word-spacing:251.152663pt;}
.ws1e_c00231{word-spacing:251.991849pt;}
.wsf_c00231{word-spacing:260.425875pt;}
.wsa_c00231{word-spacing:266.051371pt;}
.ws17_c00231{word-spacing:268.024933pt;}
.ws13_c00231{word-spacing:268.859902pt;}
.ws24_c00231{word-spacing:278.348182pt;}
.ws7_c00231{word-spacing:283.901989pt;}
.ws1d_c00231{word-spacing:286.761124pt;}
.ws5_c00231{word-spacing:287.718386pt;}
.ws25_c00231{word-spacing:289.173255pt;}
.ws23_c00231{word-spacing:290.522700pt;}
.ws9_c00231{word-spacing:291.353451pt;}
.ws18_c00231{word-spacing:293.377618pt;}
.ws11_c00231{word-spacing:294.136680pt;}
.ws19_c00231{word-spacing:295.793966pt;}
.ws14_c00231{word-spacing:296.974730pt;}
.ws22_c00231{word-spacing:299.800129pt;}
.ws1c_c00231{word-spacing:307.420272pt;}
.ws1f_c00231{word-spacing:310.076990pt;}
.ws1b_c00231{word-spacing:311.354745pt;}
.ws27_c00231{word-spacing:312.063204pt;}
.wsd_c00231{word-spacing:318.958020pt;}
.ws8_c00231{word-spacing:321.467143pt;}
.ws1_c00231{word-spacing:327.126375pt;}
.ws21_c00231{word-spacing:360.879350pt;}
._1c_c00231{margin-left:-5.002186pt;}
._1a_c00231{margin-left:-4.093286pt;}
._1b_c00231{margin-left:-2.850682pt;}
._a_c00231{margin-left:-1.855486pt;}
._12_c00231{margin-left:-0.915092pt;}
._4_c00231{width:1.682588pt;}
._0_c00231{width:2.589246pt;}
._16_c00231{width:3.681453pt;}
._14_c00231{width:93.077918pt;}
._c_c00231{width:109.186909pt;}
._f_c00231{width:112.155687pt;}
._10_c00231{width:115.276276pt;}
._6_c00231{width:121.188529pt;}
._b_c00231{width:135.551677pt;}
._15_c00231{width:139.013845pt;}
._1_c00231{width:140.759688pt;}
._2_c00231{width:142.948318pt;}
._7_c00231{width:143.842325pt;}
._8_c00231{width:152.352258pt;}
._11_c00231{width:155.350554pt;}
._18_c00231{width:157.758469pt;}
._3_c00231{width:171.126401pt;}
._d_c00231{width:172.252344pt;}
._9_c00231{width:197.174892pt;}
._13_c00231{width:202.091930pt;}
._19_c00231{width:203.019673pt;}
._5_c00231{width:216.969553pt;}
._e_c00231{width:266.135711pt;}
._17_c00231{width:270.875634pt;}
.fs4_c00231{font-size:36.547200pt;}
.fs2_c00231{font-size:42.170133pt;}
.fs3_c00231{font-size:44.981333pt;}
.fs0_c00231{font-size:48.000000pt;}
.fs1_c00231{font-size:64.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y19_c00231{bottom:2.810267pt;}
.y14_c00231{bottom:2.810533pt;}
.y1b_c00231{bottom:2.810800pt;}
.y2c_c00231{bottom:2.810933pt;}
.ya_c00231{bottom:2.811067pt;}
.y11_c00231{bottom:2.811200pt;}
.y16_c00231{bottom:2.811333pt;}
.y1d_c00231{bottom:2.811467pt;}
.y1e_c00231{bottom:2.811600pt;}
.y20_c00231{bottom:2.811733pt;}
.y7_c00231{bottom:2.811867pt;}
.y27_c00231{bottom:2.812000pt;}
.y28_c00231{bottom:2.812133pt;}
.y23_c00231{bottom:2.812400pt;}
.y18_c00231{bottom:3.513067pt;}
.y13_c00231{bottom:3.513333pt;}
.y47_c00231{bottom:3.513467pt;}
.ye_c00231{bottom:3.513600pt;}
.y9_c00231{bottom:3.513867pt;}
.y10_c00231{bottom:3.514133pt;}
.y42_c00231{bottom:3.514267pt;}
.yc_c00231{bottom:3.514400pt;}
.y6_c00231{bottom:3.514667pt;}
.y26_c00231{bottom:3.514933pt;}
.y22_c00231{bottom:3.515200pt;}
.y44_c00231{bottom:4.216267pt;}
.y48_c00231{bottom:50.960000pt;}
.y46_c00231{bottom:68.525333pt;}
.y45_c00231{bottom:82.581333pt;}
.y43_c00231{bottom:96.638667pt;}
.y41_c00231{bottom:111.397333pt;}
.y40_c00231{bottom:126.858667pt;}
.y3f_c00231{bottom:141.618667pt;}
.y3e_c00231{bottom:156.378667pt;}
.y3d_c00231{bottom:171.138667pt;}
.y3c_c00231{bottom:185.897333pt;}
.y3b_c00231{bottom:200.657333pt;}
.y3a_c00231{bottom:215.417333pt;}
.y39_c00231{bottom:230.176000pt;}
.y38_c00231{bottom:244.936000pt;}
.y37_c00231{bottom:259.694667pt;}
.y36_c00231{bottom:274.454667pt;}
.y35_c00231{bottom:289.214667pt;}
.y34_c00231{bottom:303.973333pt;}
.y33_c00231{bottom:318.733333pt;}
.y32_c00231{bottom:333.492000pt;}
.y31_c00231{bottom:348.252000pt;}
.y30_c00231{bottom:363.010667pt;}
.y2f_c00231{bottom:377.770667pt;}
.y2e_c00231{bottom:392.529333pt;}
.y2d_c00231{bottom:407.289333pt;}
.y2b_c00231{bottom:422.049333pt;}
.y2a_c00231{bottom:436.808000pt;}
.y29_c00231{bottom:451.568000pt;}
.y25_c00231{bottom:466.326667pt;}
.y24_c00231{bottom:481.086667pt;}
.y21_c00231{bottom:495.845333pt;}
.y1f_c00231{bottom:510.605333pt;}
.y1c_c00231{bottom:525.365333pt;}
.y1a_c00231{bottom:540.125333pt;}
.y17_c00231{bottom:554.885333pt;}
.y15_c00231{bottom:569.644000pt;}
.y12_c00231{bottom:584.404000pt;}
.yf_c00231{bottom:599.162667pt;}
.yd_c00231{bottom:613.922667pt;}
.yb_c00231{bottom:628.681333pt;}
.y8_c00231{bottom:643.441333pt;}
.y5_c00231{bottom:658.200000pt;}
.y4_c00231{bottom:676.640000pt;}
.y3_c00231{bottom:694.316000pt;}
.y2_c00231{bottom:708.080000pt;}
.y1_c00231{bottom:735.680000pt;}
.hb_c00231{height:13.353333pt;}
.h8_c00231{height:14.056000pt;}
.h4_c00231{height:14.057333pt;}
.h9_c00231{height:14.760000pt;}
.h7_c00231{height:31.359918pt;}
.h6_c00231{height:33.450474pt;}
.h5_c00231{height:34.778005pt;}
.hc_c00231{height:35.869078pt;}
.ha_c00231{height:36.832725pt;}
.h2_c00231{height:47.109375pt;}
.h3_c00231{height:62.812500pt;}
.h0_c00231{height:793.840000pt;}
.h1_c00231{height:794.000000pt;}
.w3_c00231{width:905.746667pt;}
.w2_c00231{width:931.349333pt;}
.w0_c00231{width:1122.560000pt;}
.w1_c00231{width:1122.666667pt;}
.x0_c00231{left:0.000000pt;}
.x7_c00231{left:2.648533pt;}
.x4_c00231{left:5.296933pt;}
.x9_c00231{left:8.828000pt;}
.x2_c00231{left:94.560000pt;}
.x3_c00231{left:95.842667pt;}
.xb_c00231{left:120.561333pt;}
.x1_c00231{left:561.280000pt;}
.xa_c00231{left:811.288667pt;}
.x5_c00231{left:818.351333pt;}
.x8_c00231{left:910.161867pt;}
.x6_c00231{left:916.341733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c944f1920d8ab0f40969701.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00232{vertical-align:-20.880000px;}
.v0_c00232{vertical-align:0.000000px;}
.v1_c00232{vertical-align:27.000000px;}
.ls16_c00232{letter-spacing:-0.360000px;}
.ls13_c00232{letter-spacing:-0.216000px;}
.ls19_c00232{letter-spacing:-0.180360px;}
.ls14_c00232{letter-spacing:-0.144000px;}
.ls18_c00232{letter-spacing:-0.120240px;}
.ls12_c00232{letter-spacing:-0.108000px;}
.ls15_c00232{letter-spacing:-0.072000px;}
.ls1a_c00232{letter-spacing:-0.060120px;}
.ls11_c00232{letter-spacing:0.000000px;}
.ls10_c00232{letter-spacing:0.060120px;}
.ls3_c00232{letter-spacing:0.072000px;}
.lsf_c00232{letter-spacing:0.120240px;}
.ls2_c00232{letter-spacing:0.144000px;}
.lsc_c00232{letter-spacing:0.191520px;}
.ls17_c00232{letter-spacing:0.360000px;}
.lsb_c00232{letter-spacing:1.080000px;}
.ls9_c00232{letter-spacing:1.792800px;}
.lsa_c00232{letter-spacing:1.800000px;}
.ls4_c00232{letter-spacing:3.240000px;}
.ls7_c00232{letter-spacing:12.240000px;}
.ls6_c00232{letter-spacing:12.600000px;}
.ls0_c00232{letter-spacing:14.760000px;}
.ls1_c00232{letter-spacing:15.120000px;}
.ls5_c00232{letter-spacing:18.000000px;}
.lsd_c00232{letter-spacing:24.480000px;}
.lse_c00232{letter-spacing:24.840000px;}
.ls8_c00232{letter-spacing:27.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-18.144000px;}
.ws2_c00232{word-spacing:-18.072000px;}
.ws4_c00232{word-spacing:-18.000000px;}
.ws5_c00232{word-spacing:-17.928000px;}
.ws3_c00232{word-spacing:-17.856000px;}
.ws1_c00232{word-spacing:-17.784000px;}
.ws6_c00232{word-spacing:-12.161520px;}
.ws7_c00232{word-spacing:-9.720000px;}
.ws2a_c00232{word-spacing:-0.360000px;}
.ws38_c00232{word-spacing:-0.180360px;}
.wsc_c00232{word-spacing:-0.072000px;}
.ws8_c00232{word-spacing:0.000000px;}
.ws18_c00232{word-spacing:0.072000px;}
.ws36_c00232{word-spacing:0.120240px;}
.ws14_c00232{word-spacing:0.144000px;}
.wsa_c00232{word-spacing:0.162000px;}
.ws3a_c00232{word-spacing:0.180360px;}
.ws39_c00232{word-spacing:0.240480px;}
.ws9_c00232{word-spacing:0.270000px;}
.ws37_c00232{word-spacing:0.300600px;}
.ws1d_c00232{word-spacing:0.360000px;}
.ws23_c00232{word-spacing:1.008000px;}
.ws24_c00232{word-spacing:1.080000px;}
.ws22_c00232{word-spacing:1.440000px;}
.ws21_c00232{word-spacing:1.656000px;}
.ws20_c00232{word-spacing:1.800000px;}
.ws35_c00232{word-spacing:2.880000px;}
.ws10_c00232{word-spacing:3.240000px;}
.ws2d_c00232{word-spacing:3.600000px;}
.ws1f_c00232{word-spacing:3.960000px;}
.ws12_c00232{word-spacing:4.608000px;}
.ws11_c00232{word-spacing:4.680000px;}
.ws31_c00232{word-spacing:6.408000px;}
.ws30_c00232{word-spacing:6.480000px;}
.ws27_c00232{word-spacing:6.768000px;}
.ws13_c00232{word-spacing:7.848000px;}
.ws15_c00232{word-spacing:7.920000px;}
.ws25_c00232{word-spacing:8.640000px;}
.ws28_c00232{word-spacing:8.856000px;}
.ws29_c00232{word-spacing:8.928000px;}
.ws26_c00232{word-spacing:9.000000px;}
.ws2f_c00232{word-spacing:9.720000px;}
.ws32_c00232{word-spacing:10.080000px;}
.ws1c_c00232{word-spacing:12.240000px;}
.ws1b_c00232{word-spacing:12.600000px;}
.ws2e_c00232{word-spacing:13.320000px;}
.wsf_c00232{word-spacing:14.616000px;}
.wse_c00232{word-spacing:14.688000px;}
.wsd_c00232{word-spacing:14.760000px;}
.ws33_c00232{word-spacing:15.120000px;}
.ws17_c00232{word-spacing:18.000000px;}
.wsb_c00232{word-spacing:18.648000px;}
.ws2b_c00232{word-spacing:20.088000px;}
.ws2c_c00232{word-spacing:20.160000px;}
.ws16_c00232{word-spacing:21.240000px;}
.ws34_c00232{word-spacing:21.600000px;}
.ws19_c00232{word-spacing:24.480000px;}
.ws1a_c00232{word-spacing:24.840000px;}
.ws1e_c00232{word-spacing:27.360000px;}
._1_c00232{margin-left:-1.058400px;}
._0_c00232{width:1.220400px;}
._2_c00232{width:2.451600px;}
._3_c00232{width:4.536000px;}
._4_c00232{width:7.992000px;}
.fc0_c00232{color:rgb(0,0,0);}
.fs3_c00232{font-size:38.880000px;}
.fs2_c00232{font-size:47.880000px;}
.fs0_c00232{font-size:54.000000px;}
.fs4_c00232{font-size:60.120000px;}
.fs1_c00232{font-size:72.000000px;}
.y0_c00232{bottom:0.000000px;}
.y26_c00232{bottom:57.240000px;}
.y25_c00232{bottom:115.020000px;}
.y27_c00232{bottom:127.710000px;}
.y24_c00232{bottom:178.920000px;}
.y23_c00232{bottom:209.970000px;}
.y22_c00232{bottom:241.020000px;}
.y21_c00232{bottom:272.070000px;}
.y20_c00232{bottom:303.120000px;}
.y1f_c00232{bottom:334.170000px;}
.y1e_c00232{bottom:365.220000px;}
.y1d_c00232{bottom:396.270000px;}
.y1c_c00232{bottom:427.320000px;}
.y1b_c00232{bottom:458.370000px;}
.y1a_c00232{bottom:489.420000px;}
.y19_c00232{bottom:520.470000px;}
.y18_c00232{bottom:551.520000px;}
.y17_c00232{bottom:582.570000px;}
.y16_c00232{bottom:613.620000px;}
.y15_c00232{bottom:644.670000px;}
.y14_c00232{bottom:675.720000px;}
.y13_c00232{bottom:706.770000px;}
.y12_c00232{bottom:737.820000px;}
.y11_c00232{bottom:768.870000px;}
.y10_c00232{bottom:799.920000px;}
.yf_c00232{bottom:830.970000px;}
.ye_c00232{bottom:861.930000px;}
.yd_c00232{bottom:892.980000px;}
.yc_c00232{bottom:924.030000px;}
.yb_c00232{bottom:955.080000px;}
.ya_c00232{bottom:986.130000px;}
.y9_c00232{bottom:1017.180000px;}
.y8_c00232{bottom:1048.230000px;}
.y7_c00232{bottom:1079.280000px;}
.y6_c00232{bottom:1110.330000px;}
.y5_c00232{bottom:1131.030000px;}
.y4_c00232{bottom:1150.920000px;}
.y3_c00232{bottom:1166.404500px;}
.y2_c00232{bottom:1181.970000px;}
.y1_c00232{bottom:1197.450000px;}
.h6_c00232{height:38.158594px;}
.h3_c00232{height:52.971680px;}
.h2_c00232{height:52.998047px;}
.h4_c00232{height:70.664062px;}
.h5_c00232{height:73.991602px;}
.h0_c00232{height:1262.880000px;}
.h1_c00232{height:1263.000000px;}
.w0_c00232{width:893.070000px;}
.w1_c00232{width:893.250000px;}
.x0_c00232{left:0.000000px;}
.x3_c00232{left:127.620000px;}
.x2_c00232{left:425.160000px;}
.x1_c00232{left:446.580000px;}
.x4_c00232{left:738.540000px;}
@media print{
.v2_c00232{vertical-align:-18.560000pt;}
.v0_c00232{vertical-align:0.000000pt;}
.v1_c00232{vertical-align:24.000000pt;}
.ls16_c00232{letter-spacing:-0.320000pt;}
.ls13_c00232{letter-spacing:-0.192000pt;}
.ls19_c00232{letter-spacing:-0.160320pt;}
.ls14_c00232{letter-spacing:-0.128000pt;}
.ls18_c00232{letter-spacing:-0.106880pt;}
.ls12_c00232{letter-spacing:-0.096000pt;}
.ls15_c00232{letter-spacing:-0.064000pt;}
.ls1a_c00232{letter-spacing:-0.053440pt;}
.ls11_c00232{letter-spacing:0.000000pt;}
.ls10_c00232{letter-spacing:0.053440pt;}
.ls3_c00232{letter-spacing:0.064000pt;}
.lsf_c00232{letter-spacing:0.106880pt;}
.ls2_c00232{letter-spacing:0.128000pt;}
.lsc_c00232{letter-spacing:0.170240pt;}
.ls17_c00232{letter-spacing:0.320000pt;}
.lsb_c00232{letter-spacing:0.960000pt;}
.ls9_c00232{letter-spacing:1.593600pt;}
.lsa_c00232{letter-spacing:1.600000pt;}
.ls4_c00232{letter-spacing:2.880000pt;}
.ls7_c00232{letter-spacing:10.880000pt;}
.ls6_c00232{letter-spacing:11.200000pt;}
.ls0_c00232{letter-spacing:13.120000pt;}
.ls1_c00232{letter-spacing:13.440000pt;}
.ls5_c00232{letter-spacing:16.000000pt;}
.lsd_c00232{letter-spacing:21.760000pt;}
.lse_c00232{letter-spacing:22.080000pt;}
.ls8_c00232{letter-spacing:24.000000pt;}
.ws0_c00232{word-spacing:-16.128000pt;}
.ws2_c00232{word-spacing:-16.064000pt;}
.ws4_c00232{word-spacing:-16.000000pt;}
.ws5_c00232{word-spacing:-15.936000pt;}
.ws3_c00232{word-spacing:-15.872000pt;}
.ws1_c00232{word-spacing:-15.808000pt;}
.ws6_c00232{word-spacing:-10.810240pt;}
.ws7_c00232{word-spacing:-8.640000pt;}
.ws2a_c00232{word-spacing:-0.320000pt;}
.ws38_c00232{word-spacing:-0.160320pt;}
.wsc_c00232{word-spacing:-0.064000pt;}
.ws8_c00232{word-spacing:0.000000pt;}
.ws18_c00232{word-spacing:0.064000pt;}
.ws36_c00232{word-spacing:0.106880pt;}
.ws14_c00232{word-spacing:0.128000pt;}
.wsa_c00232{word-spacing:0.144000pt;}
.ws3a_c00232{word-spacing:0.160320pt;}
.ws39_c00232{word-spacing:0.213760pt;}
.ws9_c00232{word-spacing:0.240000pt;}
.ws37_c00232{word-spacing:0.267200pt;}
.ws1d_c00232{word-spacing:0.320000pt;}
.ws23_c00232{word-spacing:0.896000pt;}
.ws24_c00232{word-spacing:0.960000pt;}
.ws22_c00232{word-spacing:1.280000pt;}
.ws21_c00232{word-spacing:1.472000pt;}
.ws20_c00232{word-spacing:1.600000pt;}
.ws35_c00232{word-spacing:2.560000pt;}
.ws10_c00232{word-spacing:2.880000pt;}
.ws2d_c00232{word-spacing:3.200000pt;}
.ws1f_c00232{word-spacing:3.520000pt;}
.ws12_c00232{word-spacing:4.096000pt;}
.ws11_c00232{word-spacing:4.160000pt;}
.ws31_c00232{word-spacing:5.696000pt;}
.ws30_c00232{word-spacing:5.760000pt;}
.ws27_c00232{word-spacing:6.016000pt;}
.ws13_c00232{word-spacing:6.976000pt;}
.ws15_c00232{word-spacing:7.040000pt;}
.ws25_c00232{word-spacing:7.680000pt;}
.ws28_c00232{word-spacing:7.872000pt;}
.ws29_c00232{word-spacing:7.936000pt;}
.ws26_c00232{word-spacing:8.000000pt;}
.ws2f_c00232{word-spacing:8.640000pt;}
.ws32_c00232{word-spacing:8.960000pt;}
.ws1c_c00232{word-spacing:10.880000pt;}
.ws1b_c00232{word-spacing:11.200000pt;}
.ws2e_c00232{word-spacing:11.840000pt;}
.wsf_c00232{word-spacing:12.992000pt;}
.wse_c00232{word-spacing:13.056000pt;}
.wsd_c00232{word-spacing:13.120000pt;}
.ws33_c00232{word-spacing:13.440000pt;}
.ws17_c00232{word-spacing:16.000000pt;}
.wsb_c00232{word-spacing:16.576000pt;}
.ws2b_c00232{word-spacing:17.856000pt;}
.ws2c_c00232{word-spacing:17.920000pt;}
.ws16_c00232{word-spacing:18.880000pt;}
.ws34_c00232{word-spacing:19.200000pt;}
.ws19_c00232{word-spacing:21.760000pt;}
.ws1a_c00232{word-spacing:22.080000pt;}
.ws1e_c00232{word-spacing:24.320000pt;}
._1_c00232{margin-left:-0.940800pt;}
._0_c00232{width:1.084800pt;}
._2_c00232{width:2.179200pt;}
._3_c00232{width:4.032000pt;}
._4_c00232{width:7.104000pt;}
.fs3_c00232{font-size:34.560000pt;}
.fs2_c00232{font-size:42.560000pt;}
.fs0_c00232{font-size:48.000000pt;}
.fs4_c00232{font-size:53.440000pt;}
.fs1_c00232{font-size:64.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y26_c00232{bottom:50.880000pt;}
.y25_c00232{bottom:102.240000pt;}
.y27_c00232{bottom:113.520000pt;}
.y24_c00232{bottom:159.040000pt;}
.y23_c00232{bottom:186.640000pt;}
.y22_c00232{bottom:214.240000pt;}
.y21_c00232{bottom:241.840000pt;}
.y20_c00232{bottom:269.440000pt;}
.y1f_c00232{bottom:297.040000pt;}
.y1e_c00232{bottom:324.640000pt;}
.y1d_c00232{bottom:352.240000pt;}
.y1c_c00232{bottom:379.840000pt;}
.y1b_c00232{bottom:407.440000pt;}
.y1a_c00232{bottom:435.040000pt;}
.y19_c00232{bottom:462.640000pt;}
.y18_c00232{bottom:490.240000pt;}
.y17_c00232{bottom:517.840000pt;}
.y16_c00232{bottom:545.440000pt;}
.y15_c00232{bottom:573.040000pt;}
.y14_c00232{bottom:600.640000pt;}
.y13_c00232{bottom:628.240000pt;}
.y12_c00232{bottom:655.840000pt;}
.y11_c00232{bottom:683.440000pt;}
.y10_c00232{bottom:711.040000pt;}
.yf_c00232{bottom:738.640000pt;}
.ye_c00232{bottom:766.160000pt;}
.yd_c00232{bottom:793.760000pt;}
.yc_c00232{bottom:821.360000pt;}
.yb_c00232{bottom:848.960000pt;}
.ya_c00232{bottom:876.560000pt;}
.y9_c00232{bottom:904.160000pt;}
.y8_c00232{bottom:931.760000pt;}
.y7_c00232{bottom:959.360000pt;}
.y6_c00232{bottom:986.960000pt;}
.y5_c00232{bottom:1005.360000pt;}
.y4_c00232{bottom:1023.040000pt;}
.y3_c00232{bottom:1036.804000pt;}
.y2_c00232{bottom:1050.640000pt;}
.y1_c00232{bottom:1064.400000pt;}
.h6_c00232{height:33.918750pt;}
.h3_c00232{height:47.085938pt;}
.h2_c00232{height:47.109375pt;}
.h4_c00232{height:62.812500pt;}
.h5_c00232{height:65.770312pt;}
.h0_c00232{height:1122.560000pt;}
.h1_c00232{height:1122.666667pt;}
.w0_c00232{width:793.840000pt;}
.w1_c00232{width:794.000000pt;}
.x0_c00232{left:0.000000pt;}
.x3_c00232{left:113.440000pt;}
.x2_c00232{left:377.920000pt;}
.x1_c00232{left:396.960000pt;}
.x4_c00232{left:656.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_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_6cb38b12ffb7853ed739280a.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_73c09dec177d88a641a8d05a.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_31c7ad032026844ccd8dfb69.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_193c62a4c3af0d02de5b5ab1.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);}
.v2_c00233{vertical-align:-83.520000px;}
.v1_c00233{vertical-align:-61.938000px;}
.v4_c00233{vertical-align:-3.865069px;}
.v0_c00233{vertical-align:0.000000px;}
.v3_c00233{vertical-align:3.865069px;}
.ls7_c00233{letter-spacing:-2.307504px;}
.ls13_c00233{letter-spacing:-1.899833px;}
.ls10_c00233{letter-spacing:-1.557565px;}
.lsb_c00233{letter-spacing:-1.476792px;}
.ls11_c00233{letter-spacing:-1.269127px;}
.lsf_c00233{letter-spacing:-0.430731px;}
.lsa_c00233{letter-spacing:-0.184599px;}
.ls12_c00233{letter-spacing:-0.173063px;}
.ls5_c00233{letter-spacing:-0.144000px;}
.ls4_c00233{letter-spacing:-0.072000px;}
.ls3_c00233{letter-spacing:0.000000px;}
.ls6_c00233{letter-spacing:0.072000px;}
.ls8_c00233{letter-spacing:0.246132px;}
.ls2_c00233{letter-spacing:0.369198px;}
.ls9_c00233{letter-spacing:1.169127px;}
.lse_c00233{letter-spacing:1.538325px;}
.lsd_c00233{letter-spacing:1.599858px;}
.lsc_c00233{letter-spacing:1.784457px;}
.ls14_c00233{letter-spacing:1.949828px;}
.ls0_c00233{letter-spacing:1144.260000px;}
.ls1_c00233{letter-spacing:2082.240000px;}
.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:-17.856000px;}
.wsb_c00233{word-spacing:-15.690915px;}
.wse_c00233{word-spacing:-15.506316px;}
.wsc_c00233{word-spacing:-14.152590px;}
.wsd_c00233{word-spacing:-13.475727px;}
.ws11_c00233{word-spacing:-12.864335px;}
.wsa_c00233{word-spacing:-12.429666px;}
.ws10_c00233{word-spacing:-11.768270px;}
.wsf_c00233{word-spacing:-11.479832px;}
.ws3_c00233{word-spacing:-10.729894px;}
.ws23_c00233{word-spacing:-2.899745px;}
.ws1a_c00233{word-spacing:-1.599858px;}
.ws1c_c00233{word-spacing:-1.538325px;}
.ws17_c00233{word-spacing:-1.169127px;}
.ws1e_c00233{word-spacing:-0.369198px;}
.ws16_c00233{word-spacing:-0.246132px;}
.ws13_c00233{word-spacing:-0.162000px;}
.ws15_c00233{word-spacing:-0.072000px;}
.ws12_c00233{word-spacing:0.000000px;}
.ws21_c00233{word-spacing:0.057688px;}
.ws14_c00233{word-spacing:0.072000px;}
.ws19_c00233{word-spacing:0.184599px;}
.ws22_c00233{word-spacing:0.949916px;}
.ws1b_c00233{word-spacing:1.107594px;}
.ws1f_c00233{word-spacing:1.476792px;}
.ws18_c00233{word-spacing:1.661391px;}
.ws1d_c00233{word-spacing:1.907523px;}
.ws20_c00233{word-spacing:2.307504px;}
.ws8_c00233{word-spacing:57.895275px;}
.ws9_c00233{word-spacing:57.918350px;}
.ws6_c00233{word-spacing:57.929888px;}
.ws1_c00233{word-spacing:57.935657px;}
.ws5_c00233{word-spacing:57.952963px;}
.ws4_c00233{word-spacing:57.958732px;}
.ws7_c00233{word-spacing:119.465251px;}
.ws2_c00233{word-spacing:119.488326px;}
._1d_c00233{margin-left:-7.231515px;}
._1b_c00233{margin-left:-5.599507px;}
._1c_c00233{margin-left:-3.899657px;}
._19_c00233{margin-left:-2.645919px;}
._1_c00233{margin-left:-1.087200px;}
._0_c00233{width:1.080000px;}
._18_c00233{width:2.181249px;}
._2_c00233{width:3.270887px;}
._d_c00233{width:4.430408px;}
._1a_c00233{width:5.552154px;}
._a_c00233{width:130.079769px;}
._13_c00233{width:141.640364px;}
._11_c00233{width:157.164097px;}
._e_c00233{width:164.963461px;}
._4_c00233{width:169.174656px;}
._14_c00233{width:172.785900px;}
._16_c00233{width:181.110220px;}
._9_c00233{width:184.184969px;}
._6_c00233{width:191.897801px;}
._3_c00233{width:199.726009px;}
._17_c00233{width:207.352309px;}
._10_c00233{width:211.107772px;}
._12_c00233{width:218.935980px;}
._5_c00233{width:226.643043px;}
._c_c00233{width:233.790537px;}
._7_c00233{width:234.823145px;}
._b_c00233{width:241.993713px;}
._8_c00233{width:253.069732px;}
._15_c00233{width:254.142722px;}
._f_c00233{width:261.226759px;}
.fc0_c00233{color:rgb(0,0,0);}
.fs4_c00233{font-size:49.995600px;}
.fs0_c00233{font-size:54.000000px;}
.fs2_c00233{font-size:57.687600px;}
.fs3_c00233{font-size:61.533000px;}
.fs1_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y45_c00233{bottom:4.807050px;}
.y43_c00233{bottom:5.769150px;}
.y3a_c00233{bottom:13.459500px;}
.y21_c00233{bottom:13.459987px;}
.y2c_c00233{bottom:13.460137px;}
.y30_c00233{bottom:13.475371px;}
.y40_c00233{bottom:14.420700px;}
.y39_c00233{bottom:14.421000px;}
.y46_c00233{bottom:14.421150px;}
.y3c_c00233{bottom:14.421300px;}
.y33_c00233{bottom:14.421600px;}
.y35_c00233{bottom:14.421900px;}
.y37_c00233{bottom:14.422200px;}
.y32_c00233{bottom:15.383100px;}
.y27_c00233{bottom:33.635185px;}
.y20_c00233{bottom:33.642811px;}
.y2b_c00233{bottom:33.642961px;}
.y2d_c00233{bottom:33.650569px;}
.y2f_c00233{bottom:33.658195px;}
.y24_c00233{bottom:44.218843px;}
.y1b_c00233{bottom:45.225128px;}
.y26_c00233{bottom:53.833393px;}
.y22_c00233{bottom:53.841000px;}
.y1f_c00233{bottom:53.841019px;}
.y2a_c00233{bottom:53.841169px;}
.y2e_c00233{bottom:53.856402px;}
.y48_c00233{bottom:57.330000px;}
.y23_c00233{bottom:64.417050px;}
.y1a_c00233{bottom:64.449521px;}
.y29_c00233{bottom:74.023993px;}
.y25_c00233{bottom:74.031600px;}
.y1e_c00233{bottom:74.039226px;}
.y19_c00233{bottom:84.640181px;}
.y1d_c00233{bottom:94.222050px;}
.y28_c00233{bottom:94.222200px;}
.y18_c00233{bottom:103.864574px;}
.y17_c00233{bottom:124.055234px;}
.y16_c00233{bottom:143.279627px;}
.y6_c00233{bottom:160.920000px;}
.y7_c00233{bottom:161.881500px;}
.y44_c00233{bottom:162.843000px;}
.y15_c00233{bottom:163.470286px;}
.y42_c00233{bottom:182.071500px;}
.y14_c00233{bottom:182.694679px;}
.y47_c00233{bottom:202.263000px;}
.y13_c00233{bottom:202.885339px;}
.y12_c00233{bottom:222.109732px;}
.y41_c00233{bottom:241.683000px;}
.y11_c00233{bottom:242.300392px;}
.y10_c00233{bottom:261.524785px;}
.y3f_c00233{bottom:281.103000px;}
.yf_c00233{bottom:281.715445px;}
.ye_c00233{bottom:299.987992px;}
.yd_c00233{bottom:320.178652px;}
.y3e_c00233{bottom:320.521500px;}
.yc_c00233{bottom:339.403045px;}
.yb_c00233{bottom:359.593705px;}
.y3d_c00233{bottom:359.941500px;}
.ya_c00233{bottom:378.818097px;}
.y9_c00233{bottom:399.008757px;}
.y3b_c00233{bottom:399.361500px;}
.y8_c00233{bottom:418.233150px;}
.y38_c00233{bottom:438.781500px;}
.y36_c00233{bottom:477.238500px;}
.y34_c00233{bottom:516.658500px;}
.y31_c00233{bottom:556.078500px;}
.y1c_c00233{bottom:596.460000px;}
.y5_c00233{bottom:719.640000px;}
.y4_c00233{bottom:761.220000px;}
.y3_c00233{bottom:781.105500px;}
.y2_c00233{bottom:796.590000px;}
.y1_c00233{bottom:827.640000px;}
.h12_c00233{height:18.268500px;}
.h10_c00233{height:19.230000px;}
.he_c00233{height:37.495500px;}
.hf_c00233{height:38.457000px;}
.hd_c00233{height:38.458500px;}
.ha_c00233{height:39.420000px;}
.h7_c00233{height:42.899519px;}
.hc_c00233{height:45.759160px;}
.h6_c00233{height:46.764588px;}
.hb_c00233{height:47.575369px;}
.h13_c00233{height:49.067947px;}
.h11_c00233{height:50.386191px;}
.h9_c00233{height:50.746698px;}
.h2_c00233{height:52.998047px;}
.h3_c00233{height:70.664062px;}
.h4_c00233{height:72.562500px;}
.h8_c00233{height:118.258500px;}
.h5_c00233{height:552.837000px;}
.h0_c00233{height:893.070000px;}
.h1_c00233{height:893.250000px;}
.w4_c00233{width:25.029000px;}
.wd_c00233{width:73.161000px;}
.w6_c00233{width:76.048500px;}
.wa_c00233{width:79.899000px;}
.w3_c00233{width:80.860500px;}
.wb_c00233{width:86.635500px;}
.w7_c00233{width:88.563000px;}
.w8_c00233{width:95.301000px;}
.w9_c00233{width:97.225500px;}
.wc_c00233{width:99.150000px;}
.w5_c00233{width:139.581000px;}
.we_c00233{width:1021.350000px;}
.w2_c00233{width:1048.305000px;}
.w0_c00233{width:1262.880000px;}
.w1_c00233{width:1263.000000px;}
.x0_c00233{left:0.000000px;}
.x1e_c00233{left:1.924931px;}
.xb_c00233{left:3.856992px;}
.x17_c00233{left:5.767702px;}
.x1a_c00233{left:7.708092px;}
.x13_c00233{left:9.619121px;}
.x9_c00233{left:12.513000px;}
.x10_c00233{left:15.402169px;}
.x12_c00233{left:20.215800px;}
.xc_c00233{left:24.064612px;}
.x18_c00233{left:25.975323px;}
.xa_c00233{left:27.915150px;}
.x20_c00233{left:30.802950px;}
.x16_c00233{left:33.691800px;}
.xe_c00233{left:36.580050px;}
.x2_c00233{left:106.380000px;}
.xd_c00233{left:133.333500px;}
.x6_c00233{left:179.044077px;}
.x5_c00233{left:185.787300px;}
.x7_c00233{left:196.371417px;}
.xf_c00233{left:273.877500px;}
.x3_c00233{left:278.190000px;}
.x11_c00233{left:350.887500px;}
.x14_c00233{left:440.413500px;}
.x15_c00233{left:536.676000px;}
.x1_c00233{left:631.440000px;}
.x19_c00233{left:634.864500px;}
.x1b_c00233{left:715.725000px;}
.x1c_c00233{left:803.323500px;}
.x1d_c00233{left:899.587500px;}
.x1f_c00233{left:999.700500px;}
.x8_c00233{left:1073.824500px;}
.x4_c00233{left:1156.590000px;}
@media print{
.v2_c00233{vertical-align:-74.240000pt;}
.v1_c00233{vertical-align:-55.056000pt;}
.v4_c00233{vertical-align:-3.435617pt;}
.v0_c00233{vertical-align:0.000000pt;}
.v3_c00233{vertical-align:3.435617pt;}
.ls7_c00233{letter-spacing:-2.051115pt;}
.ls13_c00233{letter-spacing:-1.688740pt;}
.ls10_c00233{letter-spacing:-1.384502pt;}
.lsb_c00233{letter-spacing:-1.312704pt;}
.ls11_c00233{letter-spacing:-1.128113pt;}
.lsf_c00233{letter-spacing:-0.382872pt;}
.lsa_c00233{letter-spacing:-0.164088pt;}
.ls12_c00233{letter-spacing:-0.153834pt;}
.ls5_c00233{letter-spacing:-0.128000pt;}
.ls4_c00233{letter-spacing:-0.064000pt;}
.ls3_c00233{letter-spacing:0.000000pt;}
.ls6_c00233{letter-spacing:0.064000pt;}
.ls8_c00233{letter-spacing:0.218784pt;}
.ls2_c00233{letter-spacing:0.328176pt;}
.ls9_c00233{letter-spacing:1.039224pt;}
.lse_c00233{letter-spacing:1.367400pt;}
.lsd_c00233{letter-spacing:1.422096pt;}
.lsc_c00233{letter-spacing:1.586184pt;}
.ls14_c00233{letter-spacing:1.733181pt;}
.ls0_c00233{letter-spacing:1017.120000pt;}
.ls1_c00233{letter-spacing:1850.880000pt;}
.ws0_c00233{word-spacing:-15.872000pt;}
.wsb_c00233{word-spacing:-13.947480pt;}
.wse_c00233{word-spacing:-13.783392pt;}
.wsc_c00233{word-spacing:-12.580080pt;}
.wsd_c00233{word-spacing:-11.978424pt;}
.ws11_c00233{word-spacing:-11.434964pt;}
.wsa_c00233{word-spacing:-11.048592pt;}
.ws10_c00233{word-spacing:-10.460685pt;}
.wsf_c00233{word-spacing:-10.204295pt;}
.ws3_c00233{word-spacing:-9.537683pt;}
.ws23_c00233{word-spacing:-2.577551pt;}
.ws1a_c00233{word-spacing:-1.422096pt;}
.ws1c_c00233{word-spacing:-1.367400pt;}
.ws17_c00233{word-spacing:-1.039224pt;}
.ws1e_c00233{word-spacing:-0.328176pt;}
.ws16_c00233{word-spacing:-0.218784pt;}
.ws13_c00233{word-spacing:-0.144000pt;}
.ws15_c00233{word-spacing:-0.064000pt;}
.ws12_c00233{word-spacing:0.000000pt;}
.ws21_c00233{word-spacing:0.051278pt;}
.ws14_c00233{word-spacing:0.064000pt;}
.ws19_c00233{word-spacing:0.164088pt;}
.ws22_c00233{word-spacing:0.844370pt;}
.ws1b_c00233{word-spacing:0.984528pt;}
.ws1f_c00233{word-spacing:1.312704pt;}
.ws18_c00233{word-spacing:1.476792pt;}
.ws1d_c00233{word-spacing:1.695576pt;}
.ws20_c00233{word-spacing:2.051115pt;}
.ws8_c00233{word-spacing:51.462467pt;}
.ws9_c00233{word-spacing:51.482978pt;}
.ws6_c00233{word-spacing:51.493234pt;}
.ws1_c00233{word-spacing:51.498361pt;}
.ws5_c00233{word-spacing:51.513745pt;}
.ws4_c00233{word-spacing:51.518873pt;}
.ws7_c00233{word-spacing:106.191334pt;}
.ws2_c00233{word-spacing:106.211845pt;}
._1d_c00233{margin-left:-6.428013pt;}
._1b_c00233{margin-left:-4.977340pt;}
._1c_c00233{margin-left:-3.466362pt;}
._19_c00233{margin-left:-2.351928pt;}
._1_c00233{margin-left:-0.966400pt;}
._0_c00233{width:0.960000pt;}
._18_c00233{width:1.938888pt;}
._2_c00233{width:2.907455pt;}
._d_c00233{width:3.938140pt;}
._1a_c00233{width:4.935248pt;}
._a_c00233{width:115.626462pt;}
._13_c00233{width:125.902546pt;}
._11_c00233{width:139.701420pt;}
._e_c00233{width:146.634188pt;}
._4_c00233{width:150.377472pt;}
._14_c00233{width:153.587466pt;}
._16_c00233{width:160.986862pt;}
._9_c00233{width:163.719973pt;}
._6_c00233{width:170.575823pt;}
._3_c00233{width:177.534230pt;}
._17_c00233{width:184.313164pt;}
._10_c00233{width:187.651353pt;}
._12_c00233{width:194.609760pt;}
._5_c00233{width:201.460483pt;}
._c_c00233{width:207.813810pt;}
._7_c00233{width:208.731684pt;}
._b_c00233{width:215.105523pt;}
._8_c00233{width:224.950873pt;}
._15_c00233{width:225.904642pt;}
._f_c00233{width:232.201564pt;}
.fs4_c00233{font-size:44.440533pt;}
.fs0_c00233{font-size:48.000000pt;}
.fs2_c00233{font-size:51.277867pt;}
.fs3_c00233{font-size:54.696000pt;}
.fs1_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y45_c00233{bottom:4.272933pt;}
.y43_c00233{bottom:5.128133pt;}
.y3a_c00233{bottom:11.964000pt;}
.y21_c00233{bottom:11.964433pt;}
.y2c_c00233{bottom:11.964567pt;}
.y30_c00233{bottom:11.978107pt;}
.y40_c00233{bottom:12.818400pt;}
.y39_c00233{bottom:12.818667pt;}
.y46_c00233{bottom:12.818800pt;}
.y3c_c00233{bottom:12.818933pt;}
.y33_c00233{bottom:12.819200pt;}
.y35_c00233{bottom:12.819467pt;}
.y37_c00233{bottom:12.819733pt;}
.y32_c00233{bottom:13.673867pt;}
.y27_c00233{bottom:29.897943pt;}
.y20_c00233{bottom:29.904721pt;}
.y2b_c00233{bottom:29.904855pt;}
.y2d_c00233{bottom:29.911617pt;}
.y2f_c00233{bottom:29.918395pt;}
.y24_c00233{bottom:39.305638pt;}
.y1b_c00233{bottom:40.200114pt;}
.y26_c00233{bottom:47.851905pt;}
.y22_c00233{bottom:47.858667pt;}
.y1f_c00233{bottom:47.858683pt;}
.y2a_c00233{bottom:47.858817pt;}
.y2e_c00233{bottom:47.872357pt;}
.y48_c00233{bottom:50.960000pt;}
.y23_c00233{bottom:57.259600pt;}
.y1a_c00233{bottom:57.288463pt;}
.y29_c00233{bottom:65.799105pt;}
.y25_c00233{bottom:65.805867pt;}
.y1e_c00233{bottom:65.812645pt;}
.y19_c00233{bottom:75.235717pt;}
.y1d_c00233{bottom:83.752933pt;}
.y28_c00233{bottom:83.753067pt;}
.y18_c00233{bottom:92.324066pt;}
.y17_c00233{bottom:110.271319pt;}
.y16_c00233{bottom:127.359668pt;}
.y6_c00233{bottom:143.040000pt;}
.y7_c00233{bottom:143.894667pt;}
.y44_c00233{bottom:144.749333pt;}
.y15_c00233{bottom:145.306921pt;}
.y42_c00233{bottom:161.841333pt;}
.y14_c00233{bottom:162.395270pt;}
.y47_c00233{bottom:179.789333pt;}
.y13_c00233{bottom:180.342524pt;}
.y12_c00233{bottom:197.430873pt;}
.y41_c00233{bottom:214.829333pt;}
.y11_c00233{bottom:215.378126pt;}
.y10_c00233{bottom:232.466475pt;}
.y3f_c00233{bottom:249.869333pt;}
.yf_c00233{bottom:250.413729pt;}
.ye_c00233{bottom:266.655993pt;}
.yd_c00233{bottom:284.603246pt;}
.y3e_c00233{bottom:284.908000pt;}
.yc_c00233{bottom:301.691595pt;}
.yb_c00233{bottom:319.638849pt;}
.y3d_c00233{bottom:319.948000pt;}
.ya_c00233{bottom:336.727198pt;}
.y9_c00233{bottom:354.674451pt;}
.y3b_c00233{bottom:354.988000pt;}
.y8_c00233{bottom:371.762800pt;}
.y38_c00233{bottom:390.028000pt;}
.y36_c00233{bottom:424.212000pt;}
.y34_c00233{bottom:459.252000pt;}
.y31_c00233{bottom:494.292000pt;}
.y1c_c00233{bottom:530.186667pt;}
.y5_c00233{bottom:639.680000pt;}
.y4_c00233{bottom:676.640000pt;}
.y3_c00233{bottom:694.316000pt;}
.y2_c00233{bottom:708.080000pt;}
.y1_c00233{bottom:735.680000pt;}
.h12_c00233{height:16.238667pt;}
.h10_c00233{height:17.093333pt;}
.he_c00233{height:33.329333pt;}
.hf_c00233{height:34.184000pt;}
.hd_c00233{height:34.185333pt;}
.ha_c00233{height:35.040000pt;}
.h7_c00233{height:38.132906pt;}
.hc_c00233{height:40.674809pt;}
.h6_c00233{height:41.568523pt;}
.hb_c00233{height:42.289217pt;}
.h13_c00233{height:43.615953pt;}
.h11_c00233{height:44.787725pt;}
.h9_c00233{height:45.108176pt;}
.h2_c00233{height:47.109375pt;}
.h3_c00233{height:62.812500pt;}
.h4_c00233{height:64.500000pt;}
.h8_c00233{height:105.118667pt;}
.h5_c00233{height:491.410667pt;}
.h0_c00233{height:793.840000pt;}
.h1_c00233{height:794.000000pt;}
.w4_c00233{width:22.248000pt;}
.wd_c00233{width:65.032000pt;}
.w6_c00233{width:67.598667pt;}
.wa_c00233{width:71.021333pt;}
.w3_c00233{width:71.876000pt;}
.wb_c00233{width:77.009333pt;}
.w7_c00233{width:78.722667pt;}
.w8_c00233{width:84.712000pt;}
.w9_c00233{width:86.422667pt;}
.wc_c00233{width:88.133333pt;}
.w5_c00233{width:124.072000pt;}
.we_c00233{width:907.866667pt;}
.w2_c00233{width:931.826667pt;}
.w0_c00233{width:1122.560000pt;}
.w1_c00233{width:1122.666667pt;}
.x0_c00233{left:0.000000pt;}
.x1e_c00233{left:1.711050pt;}
.xb_c00233{left:3.428437pt;}
.x17_c00233{left:5.126846pt;}
.x1a_c00233{left:6.851637pt;}
.x13_c00233{left:8.550330pt;}
.x9_c00233{left:11.122667pt;}
.x10_c00233{left:13.690817pt;}
.x12_c00233{left:17.969600pt;}
.xc_c00233{left:21.390767pt;}
.x18_c00233{left:23.089176pt;}
.xa_c00233{left:24.813467pt;}
.x20_c00233{left:27.380400pt;}
.x16_c00233{left:29.948267pt;}
.xe_c00233{left:32.515600pt;}
.x2_c00233{left:94.560000pt;}
.xd_c00233{left:118.518667pt;}
.x6_c00233{left:159.150291pt;}
.x5_c00233{left:165.144267pt;}
.x7_c00233{left:174.552371pt;}
.xf_c00233{left:243.446667pt;}
.x3_c00233{left:247.280000pt;}
.x11_c00233{left:311.900000pt;}
.x14_c00233{left:391.478667pt;}
.x15_c00233{left:477.045333pt;}
.x1_c00233{left:561.280000pt;}
.x19_c00233{left:564.324000pt;}
.x1b_c00233{left:636.200000pt;}
.x1c_c00233{left:714.065333pt;}
.x1d_c00233{left:799.633333pt;}
.x1f_c00233{left:888.622667pt;}
.x8_c00233{left:954.510667pt;}
.x4_c00233{left:1028.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_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_c62eaefe22eab2cd6f821a94.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls11_c00234{letter-spacing:-0.432000px;}
.ls12_c00234{letter-spacing:-0.288000px;}
.ls10_c00234{letter-spacing:-0.216000px;}
.lse_c00234{letter-spacing:-0.108000px;}
.lsf_c00234{letter-spacing:-0.072000px;}
.lsd_c00234{letter-spacing:0.000000px;}
.ls3_c00234{letter-spacing:0.072000px;}
.ls1_c00234{letter-spacing:0.144000px;}
.ls4_c00234{letter-spacing:0.720000px;}
.ls5_c00234{letter-spacing:1.080000px;}
.lsb_c00234{letter-spacing:3.960000px;}
.ls6_c00234{letter-spacing:6.120000px;}
.ls8_c00234{letter-spacing:7.200000px;}
.ls9_c00234{letter-spacing:7.560000px;}
.lsa_c00234{letter-spacing:9.720000px;}
.ls7_c00234{letter-spacing:11.880000px;}
.ls2_c00234{letter-spacing:15.840000px;}
.lsc_c00234{letter-spacing:16.920000px;}
.ls0_c00234{letter-spacing:17.640000px;}
.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;}
}
.ws2_c00234{word-spacing:-18.072000px;}
.ws0_c00234{word-spacing:-18.000000px;}
.ws1_c00234{word-spacing:-17.928000px;}
.ws3_c00234{word-spacing:-17.784000px;}
.ws4_c00234{word-spacing:-17.568000px;}
.ws27_c00234{word-spacing:-0.360000px;}
.ws13_c00234{word-spacing:-0.072000px;}
.ws5_c00234{word-spacing:0.000000px;}
.ws7_c00234{word-spacing:0.162000px;}
.ws6_c00234{word-spacing:0.270000px;}
.ws1e_c00234{word-spacing:0.288000px;}
.ws11_c00234{word-spacing:0.648000px;}
.ws12_c00234{word-spacing:0.720000px;}
.ws29_c00234{word-spacing:1.008000px;}
.ws28_c00234{word-spacing:1.368000px;}
.ws2a_c00234{word-spacing:1.440000px;}
.ws26_c00234{word-spacing:3.888000px;}
.ws25_c00234{word-spacing:3.960000px;}
.ws19_c00234{word-spacing:4.968000px;}
.ws18_c00234{word-spacing:5.040000px;}
.ws15_c00234{word-spacing:5.760000px;}
.ws1d_c00234{word-spacing:6.048000px;}
.ws14_c00234{word-spacing:6.120000px;}
.ws9_c00234{word-spacing:6.840000px;}
.ws8_c00234{word-spacing:7.200000px;}
.ws23_c00234{word-spacing:7.416000px;}
.ws22_c00234{word-spacing:7.488000px;}
.ws24_c00234{word-spacing:7.560000px;}
.ws2d_c00234{word-spacing:8.208000px;}
.ws2b_c00234{word-spacing:9.000000px;}
.ws1c_c00234{word-spacing:9.288000px;}
.ws2c_c00234{word-spacing:9.360000px;}
.ws1b_c00234{word-spacing:9.648000px;}
.ws1a_c00234{word-spacing:9.720000px;}
.wsd_c00234{word-spacing:10.440000px;}
.ws10_c00234{word-spacing:11.448000px;}
.wsf_c00234{word-spacing:11.520000px;}
.ws16_c00234{word-spacing:11.808000px;}
.ws17_c00234{word-spacing:11.880000px;}
.wsc_c00234{word-spacing:15.768000px;}
.wsb_c00234{word-spacing:15.840000px;}
.ws2e_c00234{word-spacing:16.488000px;}
.ws20_c00234{word-spacing:16.920000px;}
.ws1f_c00234{word-spacing:17.208000px;}
.ws21_c00234{word-spacing:17.280000px;}
.wsa_c00234{word-spacing:17.640000px;}
.ws2f_c00234{word-spacing:18.648000px;}
.wse_c00234{word-spacing:35.568000px;}
._1_c00234{margin-left:-1.058400px;}
._0_c00234{width:1.220400px;}
._3_c00234{width:5.184000px;}
._4_c00234{width:6.336000px;}
._5_c00234{width:8.042400px;}
._2_c00234{width:12.096000px;}
._6_c00234{width:16.848000px;}
.fc0_c00234{color:rgb(0,0,0);}
.fs0_c00234{font-size:54.000000px;}
.fs1_c00234{font-size:72.000000px;}
.y0_c00234{bottom:0.000000px;}
.y27_c00234{bottom:57.240000px;}
.y26_c00234{bottom:116.820000px;}
.y25_c00234{bottom:147.870000px;}
.y24_c00234{bottom:178.920000px;}
.y23_c00234{bottom:209.970000px;}
.y22_c00234{bottom:241.020000px;}
.y21_c00234{bottom:272.070000px;}
.y20_c00234{bottom:303.120000px;}
.y1f_c00234{bottom:334.170000px;}
.y1e_c00234{bottom:365.220000px;}
.y1d_c00234{bottom:396.270000px;}
.y1c_c00234{bottom:427.320000px;}
.y1b_c00234{bottom:458.370000px;}
.y1a_c00234{bottom:489.420000px;}
.y19_c00234{bottom:520.470000px;}
.y18_c00234{bottom:551.520000px;}
.y17_c00234{bottom:582.570000px;}
.y16_c00234{bottom:613.620000px;}
.y15_c00234{bottom:644.670000px;}
.y14_c00234{bottom:675.720000px;}
.y13_c00234{bottom:706.770000px;}
.y12_c00234{bottom:737.820000px;}
.y11_c00234{bottom:768.870000px;}
.y10_c00234{bottom:799.920000px;}
.yf_c00234{bottom:830.970000px;}
.ye_c00234{bottom:861.930000px;}
.yd_c00234{bottom:892.980000px;}
.yc_c00234{bottom:924.030000px;}
.yb_c00234{bottom:955.080000px;}
.ya_c00234{bottom:986.130000px;}
.y9_c00234{bottom:1017.180000px;}
.y8_c00234{bottom:1048.230000px;}
.y7_c00234{bottom:1079.280000px;}
.y6_c00234{bottom:1110.330000px;}
.y5_c00234{bottom:1131.030000px;}
.y4_c00234{bottom:1150.920000px;}
.y3_c00234{bottom:1166.404500px;}
.y2_c00234{bottom:1181.970000px;}
.y1_c00234{bottom:1197.450000px;}
.h3_c00234{height:52.971680px;}
.h2_c00234{height:52.998047px;}
.h4_c00234{height:70.664062px;}
.h0_c00234{height:1262.880000px;}
.h1_c00234{height:1263.000000px;}
.w0_c00234{width:893.070000px;}
.w1_c00234{width:893.250000px;}
.x0_c00234{left:0.000000px;}
.x3_c00234{left:127.620000px;}
.x2_c00234{left:425.160000px;}
.x1_c00234{left:446.580000px;}
.x4_c00234{left:738.540000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls11_c00234{letter-spacing:-0.384000pt;}
.ls12_c00234{letter-spacing:-0.256000pt;}
.ls10_c00234{letter-spacing:-0.192000pt;}
.lse_c00234{letter-spacing:-0.096000pt;}
.lsf_c00234{letter-spacing:-0.064000pt;}
.lsd_c00234{letter-spacing:0.000000pt;}
.ls3_c00234{letter-spacing:0.064000pt;}
.ls1_c00234{letter-spacing:0.128000pt;}
.ls4_c00234{letter-spacing:0.640000pt;}
.ls5_c00234{letter-spacing:0.960000pt;}
.lsb_c00234{letter-spacing:3.520000pt;}
.ls6_c00234{letter-spacing:5.440000pt;}
.ls8_c00234{letter-spacing:6.400000pt;}
.ls9_c00234{letter-spacing:6.720000pt;}
.lsa_c00234{letter-spacing:8.640000pt;}
.ls7_c00234{letter-spacing:10.560000pt;}
.ls2_c00234{letter-spacing:14.080000pt;}
.lsc_c00234{letter-spacing:15.040000pt;}
.ls0_c00234{letter-spacing:15.680000pt;}
.ws2_c00234{word-spacing:-16.064000pt;}
.ws0_c00234{word-spacing:-16.000000pt;}
.ws1_c00234{word-spacing:-15.936000pt;}
.ws3_c00234{word-spacing:-15.808000pt;}
.ws4_c00234{word-spacing:-15.616000pt;}
.ws27_c00234{word-spacing:-0.320000pt;}
.ws13_c00234{word-spacing:-0.064000pt;}
.ws5_c00234{word-spacing:0.000000pt;}
.ws7_c00234{word-spacing:0.144000pt;}
.ws6_c00234{word-spacing:0.240000pt;}
.ws1e_c00234{word-spacing:0.256000pt;}
.ws11_c00234{word-spacing:0.576000pt;}
.ws12_c00234{word-spacing:0.640000pt;}
.ws29_c00234{word-spacing:0.896000pt;}
.ws28_c00234{word-spacing:1.216000pt;}
.ws2a_c00234{word-spacing:1.280000pt;}
.ws26_c00234{word-spacing:3.456000pt;}
.ws25_c00234{word-spacing:3.520000pt;}
.ws19_c00234{word-spacing:4.416000pt;}
.ws18_c00234{word-spacing:4.480000pt;}
.ws15_c00234{word-spacing:5.120000pt;}
.ws1d_c00234{word-spacing:5.376000pt;}
.ws14_c00234{word-spacing:5.440000pt;}
.ws9_c00234{word-spacing:6.080000pt;}
.ws8_c00234{word-spacing:6.400000pt;}
.ws23_c00234{word-spacing:6.592000pt;}
.ws22_c00234{word-spacing:6.656000pt;}
.ws24_c00234{word-spacing:6.720000pt;}
.ws2d_c00234{word-spacing:7.296000pt;}
.ws2b_c00234{word-spacing:8.000000pt;}
.ws1c_c00234{word-spacing:8.256000pt;}
.ws2c_c00234{word-spacing:8.320000pt;}
.ws1b_c00234{word-spacing:8.576000pt;}
.ws1a_c00234{word-spacing:8.640000pt;}
.wsd_c00234{word-spacing:9.280000pt;}
.ws10_c00234{word-spacing:10.176000pt;}
.wsf_c00234{word-spacing:10.240000pt;}
.ws16_c00234{word-spacing:10.496000pt;}
.ws17_c00234{word-spacing:10.560000pt;}
.wsc_c00234{word-spacing:14.016000pt;}
.wsb_c00234{word-spacing:14.080000pt;}
.ws2e_c00234{word-spacing:14.656000pt;}
.ws20_c00234{word-spacing:15.040000pt;}
.ws1f_c00234{word-spacing:15.296000pt;}
.ws21_c00234{word-spacing:15.360000pt;}
.wsa_c00234{word-spacing:15.680000pt;}
.ws2f_c00234{word-spacing:16.576000pt;}
.wse_c00234{word-spacing:31.616000pt;}
._1_c00234{margin-left:-0.940800pt;}
._0_c00234{width:1.084800pt;}
._3_c00234{width:4.608000pt;}
._4_c00234{width:5.632000pt;}
._5_c00234{width:7.148800pt;}
._2_c00234{width:10.752000pt;}
._6_c00234{width:14.976000pt;}
.fs0_c00234{font-size:48.000000pt;}
.fs1_c00234{font-size:64.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y27_c00234{bottom:50.880000pt;}
.y26_c00234{bottom:103.840000pt;}
.y25_c00234{bottom:131.440000pt;}
.y24_c00234{bottom:159.040000pt;}
.y23_c00234{bottom:186.640000pt;}
.y22_c00234{bottom:214.240000pt;}
.y21_c00234{bottom:241.840000pt;}
.y20_c00234{bottom:269.440000pt;}
.y1f_c00234{bottom:297.040000pt;}
.y1e_c00234{bottom:324.640000pt;}
.y1d_c00234{bottom:352.240000pt;}
.y1c_c00234{bottom:379.840000pt;}
.y1b_c00234{bottom:407.440000pt;}
.y1a_c00234{bottom:435.040000pt;}
.y19_c00234{bottom:462.640000pt;}
.y18_c00234{bottom:490.240000pt;}
.y17_c00234{bottom:517.840000pt;}
.y16_c00234{bottom:545.440000pt;}
.y15_c00234{bottom:573.040000pt;}
.y14_c00234{bottom:600.640000pt;}
.y13_c00234{bottom:628.240000pt;}
.y12_c00234{bottom:655.840000pt;}
.y11_c00234{bottom:683.440000pt;}
.y10_c00234{bottom:711.040000pt;}
.yf_c00234{bottom:738.640000pt;}
.ye_c00234{bottom:766.160000pt;}
.yd_c00234{bottom:793.760000pt;}
.yc_c00234{bottom:821.360000pt;}
.yb_c00234{bottom:848.960000pt;}
.ya_c00234{bottom:876.560000pt;}
.y9_c00234{bottom:904.160000pt;}
.y8_c00234{bottom:931.760000pt;}
.y7_c00234{bottom:959.360000pt;}
.y6_c00234{bottom:986.960000pt;}
.y5_c00234{bottom:1005.360000pt;}
.y4_c00234{bottom:1023.040000pt;}
.y3_c00234{bottom:1036.804000pt;}
.y2_c00234{bottom:1050.640000pt;}
.y1_c00234{bottom:1064.400000pt;}
.h3_c00234{height:47.085938pt;}
.h2_c00234{height:47.109375pt;}
.h4_c00234{height:62.812500pt;}
.h0_c00234{height:1122.560000pt;}
.h1_c00234{height:1122.666667pt;}
.w0_c00234{width:793.840000pt;}
.w1_c00234{width:794.000000pt;}
.x0_c00234{left:0.000000pt;}
.x3_c00234{left:113.440000pt;}
.x2_c00234{left:377.920000pt;}
.x1_c00234{left:396.960000pt;}
.x4_c00234{left:656.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_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_f4a09e01b1a87d1f7b8b4d8b.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00235{vertical-align:-61.938000px;}
.v3_c00235{vertical-align:-20.880000px;}
.v0_c00235{vertical-align:0.000000px;}
.v2_c00235{vertical-align:27.000000px;}
.ls8_c00235{letter-spacing:-0.216000px;}
.ls7_c00235{letter-spacing:-0.072000px;}
.ls6_c00235{letter-spacing:0.000000px;}
.ls4_c00235{letter-spacing:0.072000px;}
.ls5_c00235{letter-spacing:0.120240px;}
.ls1_c00235{letter-spacing:0.144000px;}
.ls9_c00235{letter-spacing:0.180360px;}
.ls3_c00235{letter-spacing:0.191520px;}
.ls2_c00235{letter-spacing:6.840000px;}
.ls0_c00235{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00235{word-spacing:-18.144000px;}
.ws4_c00235{word-spacing:-18.072000px;}
.ws0_c00235{word-spacing:-18.000000px;}
.ws1_c00235{word-spacing:-17.928000px;}
.ws2_c00235{word-spacing:-12.161520px;}
.ws5_c00235{word-spacing:-9.720000px;}
.ws7_c00235{word-spacing:-0.162000px;}
.ws17_c00235{word-spacing:-0.144000px;}
.wse_c00235{word-spacing:-0.072000px;}
.ws22_c00235{word-spacing:-0.060120px;}
.ws6_c00235{word-spacing:0.000000px;}
.ws1c_c00235{word-spacing:0.216000px;}
.ws1f_c00235{word-spacing:0.720000px;}
.ws20_c00235{word-spacing:1.080000px;}
.ws13_c00235{word-spacing:2.520000px;}
.ws21_c00235{word-spacing:2.808000px;}
.wsa_c00235{word-spacing:3.528000px;}
.ws9_c00235{word-spacing:3.600000px;}
.ws8_c00235{word-spacing:4.248000px;}
.ws14_c00235{word-spacing:4.320000px;}
.ws12_c00235{word-spacing:5.040000px;}
.wsc_c00235{word-spacing:6.768000px;}
.wsb_c00235{word-spacing:6.840000px;}
.ws1a_c00235{word-spacing:7.560000px;}
.ws11_c00235{word-spacing:7.776000px;}
.ws10_c00235{word-spacing:7.848000px;}
.wsf_c00235{word-spacing:7.920000px;}
.ws16_c00235{word-spacing:11.088000px;}
.ws15_c00235{word-spacing:11.160000px;}
.ws1e_c00235{word-spacing:11.520000px;}
.wsd_c00235{word-spacing:16.488000px;}
.ws1d_c00235{word-spacing:16.920000px;}
.ws1b_c00235{word-spacing:17.280000px;}
.ws19_c00235{word-spacing:17.928000px;}
.ws18_c00235{word-spacing:18.000000px;}
._0_c00235{margin-left:-1.303200px;}
._2_c00235{width:1.296000px;}
._1_c00235{width:2.808000px;}
.fc0_c00235{color:rgb(0,0,0);}
.fs3_c00235{font-size:38.880000px;}
.fs2_c00235{font-size:47.880000px;}
.fs0_c00235{font-size:54.000000px;}
.fs4_c00235{font-size:60.120000px;}
.fs1_c00235{font-size:72.000000px;}
.y0_c00235{bottom:0.000000px;}
.y1d_c00235{bottom:57.240000px;}
.y1c_c00235{bottom:109.795680px;}
.y1b_c00235{bottom:132.210000px;}
.y1e_c00235{bottom:144.900000px;}
.y1a_c00235{bottom:458.190000px;}
.y19_c00235{bottom:489.420000px;}
.y18_c00235{bottom:520.470000px;}
.y17_c00235{bottom:551.520000px;}
.y16_c00235{bottom:582.570000px;}
.y15_c00235{bottom:613.620000px;}
.y14_c00235{bottom:644.670000px;}
.y13_c00235{bottom:675.720000px;}
.y12_c00235{bottom:706.770000px;}
.y11_c00235{bottom:737.820000px;}
.y10_c00235{bottom:768.870000px;}
.yf_c00235{bottom:799.920000px;}
.ye_c00235{bottom:830.970000px;}
.yd_c00235{bottom:861.930000px;}
.yc_c00235{bottom:892.980000px;}
.yb_c00235{bottom:924.030000px;}
.ya_c00235{bottom:955.080000px;}
.y9_c00235{bottom:986.130000px;}
.y8_c00235{bottom:1017.180000px;}
.y7_c00235{bottom:1048.230000px;}
.y6_c00235{bottom:1079.280000px;}
.y5_c00235{bottom:1110.330000px;}
.y4_c00235{bottom:1131.030000px;}
.y3_c00235{bottom:1150.915500px;}
.y2_c00235{bottom:1166.400000px;}
.y1_c00235{bottom:1197.450000px;}
.h6_c00235{height:38.158594px;}
.h2_c00235{height:52.998047px;}
.h7_c00235{height:59.004492px;}
.h3_c00235{height:70.664062px;}
.h5_c00235{height:72.562500px;}
.h4_c00235{height:73.991602px;}
.h0_c00235{height:1262.880000px;}
.h1_c00235{height:1263.000000px;}
.w0_c00235{width:893.070000px;}
.w1_c00235{width:893.250000px;}
.x0_c00235{left:0.000000px;}
.x2_c00235{left:127.620000px;}
.x1_c00235{left:446.580000px;}
@media print{
.v1_c00235{vertical-align:-55.056000pt;}
.v3_c00235{vertical-align:-18.560000pt;}
.v0_c00235{vertical-align:0.000000pt;}
.v2_c00235{vertical-align:24.000000pt;}
.ls8_c00235{letter-spacing:-0.192000pt;}
.ls7_c00235{letter-spacing:-0.064000pt;}
.ls6_c00235{letter-spacing:0.000000pt;}
.ls4_c00235{letter-spacing:0.064000pt;}
.ls5_c00235{letter-spacing:0.106880pt;}
.ls1_c00235{letter-spacing:0.128000pt;}
.ls9_c00235{letter-spacing:0.160320pt;}
.ls3_c00235{letter-spacing:0.170240pt;}
.ls2_c00235{letter-spacing:6.080000pt;}
.ls0_c00235{letter-spacing:284.016000pt;}
.ws3_c00235{word-spacing:-16.128000pt;}
.ws4_c00235{word-spacing:-16.064000pt;}
.ws0_c00235{word-spacing:-16.000000pt;}
.ws1_c00235{word-spacing:-15.936000pt;}
.ws2_c00235{word-spacing:-10.810240pt;}
.ws5_c00235{word-spacing:-8.640000pt;}
.ws7_c00235{word-spacing:-0.144000pt;}
.ws17_c00235{word-spacing:-0.128000pt;}
.wse_c00235{word-spacing:-0.064000pt;}
.ws22_c00235{word-spacing:-0.053440pt;}
.ws6_c00235{word-spacing:0.000000pt;}
.ws1c_c00235{word-spacing:0.192000pt;}
.ws1f_c00235{word-spacing:0.640000pt;}
.ws20_c00235{word-spacing:0.960000pt;}
.ws13_c00235{word-spacing:2.240000pt;}
.ws21_c00235{word-spacing:2.496000pt;}
.wsa_c00235{word-spacing:3.136000pt;}
.ws9_c00235{word-spacing:3.200000pt;}
.ws8_c00235{word-spacing:3.776000pt;}
.ws14_c00235{word-spacing:3.840000pt;}
.ws12_c00235{word-spacing:4.480000pt;}
.wsc_c00235{word-spacing:6.016000pt;}
.wsb_c00235{word-spacing:6.080000pt;}
.ws1a_c00235{word-spacing:6.720000pt;}
.ws11_c00235{word-spacing:6.912000pt;}
.ws10_c00235{word-spacing:6.976000pt;}
.wsf_c00235{word-spacing:7.040000pt;}
.ws16_c00235{word-spacing:9.856000pt;}
.ws15_c00235{word-spacing:9.920000pt;}
.ws1e_c00235{word-spacing:10.240000pt;}
.wsd_c00235{word-spacing:14.656000pt;}
.ws1d_c00235{word-spacing:15.040000pt;}
.ws1b_c00235{word-spacing:15.360000pt;}
.ws19_c00235{word-spacing:15.936000pt;}
.ws18_c00235{word-spacing:16.000000pt;}
._0_c00235{margin-left:-1.158400pt;}
._2_c00235{width:1.152000pt;}
._1_c00235{width:2.496000pt;}
.fs3_c00235{font-size:34.560000pt;}
.fs2_c00235{font-size:42.560000pt;}
.fs0_c00235{font-size:48.000000pt;}
.fs4_c00235{font-size:53.440000pt;}
.fs1_c00235{font-size:64.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.y1d_c00235{bottom:50.880000pt;}
.y1c_c00235{bottom:97.596160pt;}
.y1b_c00235{bottom:117.520000pt;}
.y1e_c00235{bottom:128.800000pt;}
.y1a_c00235{bottom:407.280000pt;}
.y19_c00235{bottom:435.040000pt;}
.y18_c00235{bottom:462.640000pt;}
.y17_c00235{bottom:490.240000pt;}
.y16_c00235{bottom:517.840000pt;}
.y15_c00235{bottom:545.440000pt;}
.y14_c00235{bottom:573.040000pt;}
.y13_c00235{bottom:600.640000pt;}
.y12_c00235{bottom:628.240000pt;}
.y11_c00235{bottom:655.840000pt;}
.y10_c00235{bottom:683.440000pt;}
.yf_c00235{bottom:711.040000pt;}
.ye_c00235{bottom:738.640000pt;}
.yd_c00235{bottom:766.160000pt;}
.yc_c00235{bottom:793.760000pt;}
.yb_c00235{bottom:821.360000pt;}
.ya_c00235{bottom:848.960000pt;}
.y9_c00235{bottom:876.560000pt;}
.y8_c00235{bottom:904.160000pt;}
.y7_c00235{bottom:931.760000pt;}
.y6_c00235{bottom:959.360000pt;}
.y5_c00235{bottom:986.960000pt;}
.y4_c00235{bottom:1005.360000pt;}
.y3_c00235{bottom:1023.036000pt;}
.y2_c00235{bottom:1036.800000pt;}
.y1_c00235{bottom:1064.400000pt;}
.h6_c00235{height:33.918750pt;}
.h2_c00235{height:47.109375pt;}
.h7_c00235{height:52.448437pt;}
.h3_c00235{height:62.812500pt;}
.h5_c00235{height:64.500000pt;}
.h4_c00235{height:65.770312pt;}
.h0_c00235{height:1122.560000pt;}
.h1_c00235{height:1122.666667pt;}
.w0_c00235{width:793.840000pt;}
.w1_c00235{width:794.000000pt;}
.x0_c00235{left:0.000000pt;}
.x2_c00235{left:113.440000pt;}
.x1_c00235{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b138fac16761a684e1ac7c42.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_ddc56ac83fdff72700942283.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_ea8acecdcb48c32b616b3d50.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_df291b1288e9514f3ef16a90.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.002930;font-style: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);}
.m2_c00236{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.v2_c00236{vertical-align:-83.520000px;}
.v1_c00236{vertical-align:-61.920000px;}
.v4_c00236{vertical-align:-3.863984px;}
.v0_c00236{vertical-align:0.000000px;}
.v3_c00236{vertical-align:3.863984px;}
.lsc_c00236{letter-spacing:-2.306856px;}
.ls1b_c00236{letter-spacing:-1.899331px;}
.ls15_c00236{letter-spacing:-1.557128px;}
.ls10_c00236{letter-spacing:-1.476389px;}
.ls1a_c00236{letter-spacing:-1.268771px;}
.ls16_c00236{letter-spacing:-0.749728px;}
.ls14_c00236{letter-spacing:-0.430613px;}
.ls18_c00236{letter-spacing:-0.230686px;}
.lsf_c00236{letter-spacing:-0.184549px;}
.ls19_c00236{letter-spacing:-0.173014px;}
.ls9_c00236{letter-spacing:-0.144000px;}
.ls6_c00236{letter-spacing:-0.108000px;}
.ls8_c00236{letter-spacing:-0.072000px;}
.ls7_c00236{letter-spacing:0.000000px;}
.ls4_c00236{letter-spacing:0.000599px;}
.lsb_c00236{letter-spacing:0.072000px;}
.ls5_c00236{letter-spacing:0.091862px;}
.lsa_c00236{letter-spacing:0.144000px;}
.lsd_c00236{letter-spacing:0.246065px;}
.ls3_c00236{letter-spacing:0.369097px;}
.lse_c00236{letter-spacing:1.168808px;}
.ls17_c00236{letter-spacing:1.211099px;}
.ls2_c00236{letter-spacing:1.230324px;}
.ls13_c00236{letter-spacing:1.537905px;}
.ls12_c00236{letter-spacing:1.599421px;}
.ls11_c00236{letter-spacing:1.783970px;}
.ls0_c00236{letter-spacing:725.580000px;}
.ls1_c00236{letter-spacing:2082.240000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:-17.856000px;}
.ws8_c00236{word-spacing:-15.686631px;}
.wsc_c00236{word-spacing:-15.502082px;}
.wsa_c00236{word-spacing:-14.271758px;}
.wsf_c00236{word-spacing:-14.244836px;}
.ws9_c00236{word-spacing:-14.148726px;}
.wsb_c00236{word-spacing:-13.472048px;}
.ws10_c00236{word-spacing:-12.860722px;}
.ws7_c00236{word-spacing:-12.426272px;}
.wse_c00236{word-spacing:-12.284008px;}
.ws11_c00236{word-spacing:-11.764966px;}
.wsd_c00236{word-spacing:-11.476609px;}
.ws4_c00236{word-spacing:-10.726880px;}
.ws1c_c00236{word-spacing:-1.599421px;}
.ws1e_c00236{word-spacing:-1.537905px;}
.ws24_c00236{word-spacing:-1.326442px;}
.ws23_c00236{word-spacing:-1.268771px;}
.ws19_c00236{word-spacing:-1.168808px;}
.ws20_c00236{word-spacing:-0.369097px;}
.ws18_c00236{word-spacing:-0.246065px;}
.ws16_c00236{word-spacing:-0.144000px;}
.ws17_c00236{word-spacing:-0.072000px;}
.ws12_c00236{word-spacing:0.000000px;}
.ws15_c00236{word-spacing:0.072000px;}
.ws14_c00236{word-spacing:0.162000px;}
.ws1b_c00236{word-spacing:0.184549px;}
.ws13_c00236{word-spacing:0.270000px;}
.ws25_c00236{word-spacing:0.949666px;}
.ws1d_c00236{word-spacing:1.107292px;}
.ws21_c00236{word-spacing:1.476389px;}
.ws1a_c00236{word-spacing:1.660937px;}
.ws1f_c00236{word-spacing:1.907002px;}
.ws22_c00236{word-spacing:2.306856px;}
.ws2_c00236{word-spacing:57.913620px;}
.ws6_c00236{word-spacing:57.919387px;}
.ws5_c00236{word-spacing:119.437469px;}
.ws3_c00236{word-spacing:119.454771px;}
.ws1_c00236{word-spacing:177.547172px;}
._13_c00236{margin-left:-2.645197px;}
._1_c00236{margin-left:-1.058400px;}
._0_c00236{width:1.225800px;}
._2_c00236{width:3.154626px;}
._a_c00236{width:4.502613px;}
._14_c00236{width:5.714611px;}
._8_c00236{width:129.914840px;}
._12_c00236{width:141.854343px;}
._7_c00236{width:161.451084px;}
._9_c00236{width:169.052175px;}
._5_c00236{width:188.187545px;}
._c_c00236{width:195.833250px;}
._f_c00236{width:200.500389px;}
._10_c00236{width:208.362524px;}
._3_c00236{width:210.915844px;}
._b_c00236{width:215.258501px;}
._4_c00236{width:226.748166px;}
._6_c00236{width:234.336200px;}
._e_c00236{width:237.779182px;}
._11_c00236{width:261.038058px;}
._d_c00236{width:262.239146px;}
.fc0_c00236{color:rgb(0,0,0);}
.fs4_c00236{font-size:49.982400px;}
.fs0_c00236{font-size:54.000000px;}
.fs2_c00236{font-size:57.671400px;}
.fs3_c00236{font-size:61.516200px;}
.fs1_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.y43_c00236{bottom:5.767500px;}
.y36_c00236{bottom:13.456650px;}
.y39_c00236{bottom:14.416800px;}
.y38_c00236{bottom:14.416950px;}
.y3b_c00236{bottom:14.417400px;}
.y33_c00236{bottom:14.417700px;}
.y35_c00236{bottom:14.417850px;}
.y2e_c00236{bottom:14.418150px;}
.y3e_c00236{bottom:14.418450px;}
.y31_c00236{bottom:14.418600px;}
.y30_c00236{bottom:14.418750px;}
.y40_c00236{bottom:14.418900px;}
.y2b_c00236{bottom:14.425380px;}
.y22_c00236{bottom:14.440759px;}
.y2d_c00236{bottom:15.379350px;}
.y1c_c00236{bottom:25.993228px;}
.y2a_c00236{bottom:34.602694px;}
.y21_c00236{bottom:34.618073px;}
.y26_c00236{bottom:45.183386px;}
.y1b_c00236{bottom:45.212222px;}
.y29_c00236{bottom:54.780007px;}
.y23_c00236{bottom:54.787500px;}
.y24_c00236{bottom:54.787650px;}
.y28_c00236{bottom:54.795386px;}
.y20_c00236{bottom:54.803123px;}
.y44_c00236{bottom:57.330000px;}
.y25_c00236{bottom:65.360700px;}
.y1a_c00236{bottom:65.397212px;}
.y27_c00236{bottom:74.972700px;}
.y1f_c00236{bottom:74.980436px;}
.y19_c00236{bottom:84.616206px;}
.y1e_c00236{bottom:95.157750px;}
.y18_c00236{bottom:104.801196px;}
.y17_c00236{bottom:124.020190px;}
.y16_c00236{bottom:144.205180px;}
.y7_c00236{bottom:151.470000px;}
.y15_c00236{bottom:163.424174px;}
.y6_c00236{bottom:178.470000px;}
.y8_c00236{bottom:179.332500px;}
.y42_c00236{bottom:180.294000px;}
.y14_c00236{bottom:183.609164px;}
.y41_c00236{bottom:200.479500px;}
.y13_c00236{bottom:202.828158px;}
.y12_c00236{bottom:223.013148px;}
.y3f_c00236{bottom:239.887500px;}
.y11_c00236{bottom:242.232142px;}
.y10_c00236{bottom:262.417132px;}
.y3d_c00236{bottom:279.297000px;}
.yf_c00236{bottom:280.684548px;}
.ye_c00236{bottom:300.869538px;}
.y3c_c00236{bottom:318.706500px;}
.yd_c00236{bottom:320.088532px;}
.yc_c00236{bottom:340.273522px;}
.y3a_c00236{bottom:358.116000px;}
.yb_c00236{bottom:359.492516px;}
.ya_c00236{bottom:379.677506px;}
.y37_c00236{bottom:397.525500px;}
.y9_c00236{bottom:398.896650px;}
.y34_c00236{bottom:436.933500px;}
.y32_c00236{bottom:475.381500px;}
.y2f_c00236{bottom:514.789500px;}
.y2c_c00236{bottom:554.199000px;}
.y1d_c00236{bottom:594.570000px;}
.y5_c00236{bottom:719.640000px;}
.y4_c00236{bottom:761.220000px;}
.y3_c00236{bottom:781.110000px;}
.y2_c00236{bottom:796.594500px;}
.y1_c00236{bottom:827.640000px;}
.h11_c00236{height:19.224000px;}
.hf_c00236{height:37.486500px;}
.h10_c00236{height:38.446500px;}
.he_c00236{height:38.448000px;}
.hb_c00236{height:39.409500px;}
.h7_c00236{height:42.887472px;}
.hd_c00236{height:45.746666px;}
.h6_c00236{height:46.750856px;}
.hc_c00236{height:47.562009px;}
.h12_c00236{height:50.372888px;}
.h9_c00236{height:50.732843px;}
.ha_c00236{height:50.762813px;}
.h2_c00236{height:52.998047px;}
.h3_c00236{height:70.664062px;}
.h4_c00236{height:72.562500px;}
.h8_c00236{height:120.148500px;}
.h5_c00236{height:535.386000px;}
.h0_c00236{height:893.070000px;}
.h1_c00236{height:893.250000px;}
.w4_c00236{width:25.029000px;}
.wd_c00236{width:73.161000px;}
.w6_c00236{width:76.048500px;}
.wa_c00236{width:79.897500px;}
.w3_c00236{width:80.860500px;}
.w7_c00236{width:87.598500px;}
.w8_c00236{width:95.299500px;}
.wb_c00236{width:95.301000px;}
.w9_c00236{width:97.224000px;}
.wc_c00236{width:99.150000px;}
.w5_c00236{width:139.581000px;}
.we_c00236{width:1021.350000px;}
.w2_c00236{width:1048.305000px;}
.w0_c00236{width:1262.880000px;}
.w1_c00236{width:1263.000000px;}
.x0_c00236{left:0.000000px;}
.x1f_c00236{left:1.924931px;}
.xc_c00236{left:3.857142px;}
.x19_c00236{left:5.768302px;}
.x14_c00236{left:8.656571px;}
.x16_c00236{left:10.596229px;}
.xa_c00236{left:12.513150px;}
.x11_c00236{left:15.402319px;}
.x13_c00236{left:19.253250px;}
.xd_c00236{left:24.080165px;}
.x1a_c00236{left:25.975923px;}
.xb_c00236{left:27.915300px;}
.x18_c00236{left:33.692250px;}
.xf_c00236{left:36.580050px;}
.x2_c00236{left:106.380000px;}
.xe_c00236{left:133.333500px;}
.x8_c00236{left:178.995865px;}
.x6_c00236{left:185.782407px;}
.x5_c00236{left:196.376250px;}
.x7_c00236{left:203.080868px;}
.x10_c00236{left:273.877500px;}
.x3_c00236{left:278.190000px;}
.x12_c00236{left:350.887500px;}
.x15_c00236{left:439.450500px;}
.x17_c00236{left:535.713000px;}
.x1_c00236{left:631.440000px;}
.x1b_c00236{left:633.901500px;}
.x1c_c00236{left:714.763500px;}
.x1d_c00236{left:803.323500px;}
.x1e_c00236{left:899.587500px;}
.x20_c00236{left:999.700500px;}
.x9_c00236{left:1073.824500px;}
.x21_c00236{left:1129.590000px;}
.x4_c00236{left:1156.590000px;}
@media print{
.v2_c00236{vertical-align:-74.240000pt;}
.v1_c00236{vertical-align:-55.040000pt;}
.v4_c00236{vertical-align:-3.434652pt;}
.v0_c00236{vertical-align:0.000000pt;}
.v3_c00236{vertical-align:3.434652pt;}
.lsc_c00236{letter-spacing:-2.050539pt;}
.ls1b_c00236{letter-spacing:-1.688294pt;}
.ls15_c00236{letter-spacing:-1.384114pt;}
.ls10_c00236{letter-spacing:-1.312346pt;}
.ls1a_c00236{letter-spacing:-1.127796pt;}
.ls16_c00236{letter-spacing:-0.666425pt;}
.ls14_c00236{letter-spacing:-0.382767pt;}
.ls18_c00236{letter-spacing:-0.205054pt;}
.lsf_c00236{letter-spacing:-0.164043pt;}
.ls19_c00236{letter-spacing:-0.153790pt;}
.ls9_c00236{letter-spacing:-0.128000pt;}
.ls6_c00236{letter-spacing:-0.096000pt;}
.ls8_c00236{letter-spacing:-0.064000pt;}
.ls7_c00236{letter-spacing:0.000000pt;}
.ls4_c00236{letter-spacing:0.000533pt;}
.lsb_c00236{letter-spacing:0.064000pt;}
.ls5_c00236{letter-spacing:0.081655pt;}
.lsa_c00236{letter-spacing:0.128000pt;}
.lsd_c00236{letter-spacing:0.218724pt;}
.ls3_c00236{letter-spacing:0.328086pt;}
.lse_c00236{letter-spacing:1.038940pt;}
.ls17_c00236{letter-spacing:1.076533pt;}
.ls2_c00236{letter-spacing:1.093621pt;}
.ls13_c00236{letter-spacing:1.367027pt;}
.ls12_c00236{letter-spacing:1.421708pt;}
.ls11_c00236{letter-spacing:1.585751pt;}
.ls0_c00236{letter-spacing:644.960000pt;}
.ls1_c00236{letter-spacing:1850.880000pt;}
.ws0_c00236{word-spacing:-15.872000pt;}
.ws8_c00236{word-spacing:-13.943672pt;}
.wsc_c00236{word-spacing:-13.779629pt;}
.wsa_c00236{word-spacing:-12.686007pt;}
.wsf_c00236{word-spacing:-12.662076pt;}
.ws9_c00236{word-spacing:-12.576645pt;}
.wsb_c00236{word-spacing:-11.975154pt;}
.ws10_c00236{word-spacing:-11.431753pt;}
.ws7_c00236{word-spacing:-11.045575pt;}
.wse_c00236{word-spacing:-10.919118pt;}
.ws11_c00236{word-spacing:-10.457747pt;}
.wsd_c00236{word-spacing:-10.201430pt;}
.ws4_c00236{word-spacing:-9.535005pt;}
.ws1c_c00236{word-spacing:-1.421708pt;}
.ws1e_c00236{word-spacing:-1.367027pt;}
.ws24_c00236{word-spacing:-1.179060pt;}
.ws23_c00236{word-spacing:-1.127796pt;}
.ws19_c00236{word-spacing:-1.038940pt;}
.ws20_c00236{word-spacing:-0.328086pt;}
.ws18_c00236{word-spacing:-0.218724pt;}
.ws16_c00236{word-spacing:-0.128000pt;}
.ws17_c00236{word-spacing:-0.064000pt;}
.ws12_c00236{word-spacing:0.000000pt;}
.ws15_c00236{word-spacing:0.064000pt;}
.ws14_c00236{word-spacing:0.144000pt;}
.ws1b_c00236{word-spacing:0.164043pt;}
.ws13_c00236{word-spacing:0.240000pt;}
.ws25_c00236{word-spacing:0.844147pt;}
.ws1d_c00236{word-spacing:0.984259pt;}
.ws21_c00236{word-spacing:1.312346pt;}
.ws1a_c00236{word-spacing:1.476389pt;}
.ws1f_c00236{word-spacing:1.695113pt;}
.ws22_c00236{word-spacing:2.050539pt;}
.ws2_c00236{word-spacing:51.478773pt;}
.ws6_c00236{word-spacing:51.483900pt;}
.ws5_c00236{word-spacing:106.166639pt;}
.ws3_c00236{word-spacing:106.182019pt;}
.ws1_c00236{word-spacing:157.819708pt;}
._13_c00236{margin-left:-2.351286pt;}
._1_c00236{margin-left:-0.940800pt;}
._0_c00236{width:1.089600pt;}
._2_c00236{width:2.804112pt;}
._a_c00236{width:4.002323pt;}
._14_c00236{width:5.079654pt;}
._8_c00236{width:115.479858pt;}
._12_c00236{width:126.092749pt;}
._7_c00236{width:143.512075pt;}
._9_c00236{width:150.268600pt;}
._5_c00236{width:167.277818pt;}
._c_c00236{width:174.074000pt;}
._f_c00236{width:178.222568pt;}
._10_c00236{width:185.211132pt;}
._3_c00236{width:187.480750pt;}
._b_c00236{width:191.340889pt;}
._4_c00236{width:201.553926pt;}
._6_c00236{width:208.298844pt;}
._e_c00236{width:211.359273pt;}
._11_c00236{width:232.033829pt;}
._d_c00236{width:233.101463pt;}
.fs4_c00236{font-size:44.428800pt;}
.fs0_c00236{font-size:48.000000pt;}
.fs2_c00236{font-size:51.263467pt;}
.fs3_c00236{font-size:54.681067pt;}
.fs1_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y43_c00236{bottom:5.126667pt;}
.y36_c00236{bottom:11.961467pt;}
.y39_c00236{bottom:12.814933pt;}
.y38_c00236{bottom:12.815067pt;}
.y3b_c00236{bottom:12.815467pt;}
.y33_c00236{bottom:12.815733pt;}
.y35_c00236{bottom:12.815867pt;}
.y2e_c00236{bottom:12.816133pt;}
.y3e_c00236{bottom:12.816400pt;}
.y31_c00236{bottom:12.816533pt;}
.y30_c00236{bottom:12.816667pt;}
.y40_c00236{bottom:12.816800pt;}
.y2b_c00236{bottom:12.822560pt;}
.y22_c00236{bottom:12.836230pt;}
.y2d_c00236{bottom:13.670533pt;}
.y1c_c00236{bottom:23.105091pt;}
.y2a_c00236{bottom:30.757950pt;}
.y21_c00236{bottom:30.771620pt;}
.y26_c00236{bottom:40.163010pt;}
.y1b_c00236{bottom:40.188641pt;}
.y29_c00236{bottom:48.693340pt;}
.y23_c00236{bottom:48.700000pt;}
.y24_c00236{bottom:48.700133pt;}
.y28_c00236{bottom:48.707010pt;}
.y20_c00236{bottom:48.713887pt;}
.y44_c00236{bottom:50.960000pt;}
.y25_c00236{bottom:58.098400pt;}
.y1a_c00236{bottom:58.130855pt;}
.y27_c00236{bottom:66.642400pt;}
.y1f_c00236{bottom:66.649277pt;}
.y19_c00236{bottom:75.214405pt;}
.y1e_c00236{bottom:84.584667pt;}
.y18_c00236{bottom:93.156618pt;}
.y17_c00236{bottom:110.240169pt;}
.y16_c00236{bottom:128.182382pt;}
.y7_c00236{bottom:134.640000pt;}
.y15_c00236{bottom:145.265932pt;}
.y6_c00236{bottom:158.640000pt;}
.y8_c00236{bottom:159.406667pt;}
.y42_c00236{bottom:160.261333pt;}
.y14_c00236{bottom:163.208146pt;}
.y41_c00236{bottom:178.204000pt;}
.y13_c00236{bottom:180.291696pt;}
.y12_c00236{bottom:198.233909pt;}
.y3f_c00236{bottom:213.233333pt;}
.y11_c00236{bottom:215.317459pt;}
.y10_c00236{bottom:233.259673pt;}
.y3d_c00236{bottom:248.264000pt;}
.yf_c00236{bottom:249.497376pt;}
.ye_c00236{bottom:267.439589pt;}
.y3c_c00236{bottom:283.294667pt;}
.yd_c00236{bottom:284.523139pt;}
.yc_c00236{bottom:302.465353pt;}
.y3a_c00236{bottom:318.325333pt;}
.yb_c00236{bottom:319.548903pt;}
.ya_c00236{bottom:337.491116pt;}
.y37_c00236{bottom:353.356000pt;}
.y9_c00236{bottom:354.574800pt;}
.y34_c00236{bottom:388.385333pt;}
.y32_c00236{bottom:422.561333pt;}
.y2f_c00236{bottom:457.590667pt;}
.y2c_c00236{bottom:492.621333pt;}
.y1d_c00236{bottom:528.506667pt;}
.y5_c00236{bottom:639.680000pt;}
.y4_c00236{bottom:676.640000pt;}
.y3_c00236{bottom:694.320000pt;}
.y2_c00236{bottom:708.084000pt;}
.y1_c00236{bottom:735.680000pt;}
.h11_c00236{height:17.088000pt;}
.hf_c00236{height:33.321333pt;}
.h10_c00236{height:34.174667pt;}
.he_c00236{height:34.176000pt;}
.hb_c00236{height:35.030667pt;}
.h7_c00236{height:38.122197pt;}
.hd_c00236{height:40.663703pt;}
.h6_c00236{height:41.556316pt;}
.hc_c00236{height:42.277341pt;}
.h12_c00236{height:44.775900pt;}
.h9_c00236{height:45.095860pt;}
.ha_c00236{height:45.122501pt;}
.h2_c00236{height:47.109375pt;}
.h3_c00236{height:62.812500pt;}
.h4_c00236{height:64.500000pt;}
.h8_c00236{height:106.798667pt;}
.h5_c00236{height:475.898667pt;}
.h0_c00236{height:793.840000pt;}
.h1_c00236{height:794.000000pt;}
.w4_c00236{width:22.248000pt;}
.wd_c00236{width:65.032000pt;}
.w6_c00236{width:67.598667pt;}
.wa_c00236{width:71.020000pt;}
.w3_c00236{width:71.876000pt;}
.w7_c00236{width:77.865333pt;}
.w8_c00236{width:84.710667pt;}
.wb_c00236{width:84.712000pt;}
.w9_c00236{width:86.421333pt;}
.wc_c00236{width:88.133333pt;}
.w5_c00236{width:124.072000pt;}
.we_c00236{width:907.866667pt;}
.w2_c00236{width:931.826667pt;}
.w0_c00236{width:1122.560000pt;}
.w1_c00236{width:1122.666667pt;}
.x0_c00236{left:0.000000pt;}
.x1f_c00236{left:1.711050pt;}
.xc_c00236{left:3.428570pt;}
.x19_c00236{left:5.127380pt;}
.x14_c00236{left:7.694730pt;}
.x16_c00236{left:9.418870pt;}
.xa_c00236{left:11.122800pt;}
.x11_c00236{left:13.690950pt;}
.x13_c00236{left:17.114000pt;}
.xd_c00236{left:21.404591pt;}
.x1a_c00236{left:23.089709pt;}
.xb_c00236{left:24.813600pt;}
.x18_c00236{left:29.948667pt;}
.xf_c00236{left:32.515600pt;}
.x2_c00236{left:94.560000pt;}
.xe_c00236{left:118.518667pt;}
.x8_c00236{left:159.107436pt;}
.x6_c00236{left:165.139917pt;}
.x5_c00236{left:174.556667pt;}
.x7_c00236{left:180.516327pt;}
.x10_c00236{left:243.446667pt;}
.x3_c00236{left:247.280000pt;}
.x12_c00236{left:311.900000pt;}
.x15_c00236{left:390.622667pt;}
.x17_c00236{left:476.189333pt;}
.x1_c00236{left:561.280000pt;}
.x1b_c00236{left:563.468000pt;}
.x1c_c00236{left:635.345333pt;}
.x1d_c00236{left:714.065333pt;}
.x1e_c00236{left:799.633333pt;}
.x20_c00236{left:888.622667pt;}
.x9_c00236{left:954.510667pt;}
.x21_c00236{left:1004.080000pt;}
.x4_c00236{left:1028.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_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_506a31c920ad2fa30a913d4a.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00237{vertical-align:-61.938000px;}
.v3_c00237{vertical-align:-20.880000px;}
.v0_c00237{vertical-align:0.000000px;}
.v2_c00237{vertical-align:27.000000px;}
.ls15_c00237{letter-spacing:-0.432000px;}
.ls12_c00237{letter-spacing:-0.360000px;}
.ls13_c00237{letter-spacing:-0.288000px;}
.ls11_c00237{letter-spacing:-0.216000px;}
.ls10_c00237{letter-spacing:-0.144000px;}
.ls18_c00237{letter-spacing:-0.120240px;}
.ls14_c00237{letter-spacing:-0.072000px;}
.ls17_c00237{letter-spacing:-0.060120px;}
.lsf_c00237{letter-spacing:0.000000px;}
.ls3_c00237{letter-spacing:0.072000px;}
.ls5_c00237{letter-spacing:0.144000px;}
.ls16_c00237{letter-spacing:0.180360px;}
.lsb_c00237{letter-spacing:0.191520px;}
.lse_c00237{letter-spacing:2.945880px;}
.lsa_c00237{letter-spacing:4.320000px;}
.ls8_c00237{letter-spacing:6.480000px;}
.ls9_c00237{letter-spacing:6.494400px;}
.ls7_c00237{letter-spacing:6.840000px;}
.ls6_c00237{letter-spacing:7.200000px;}
.ls4_c00237{letter-spacing:10.800000px;}
.ls1_c00237{letter-spacing:18.000000px;}
.ls2_c00237{letter-spacing:26.280000px;}
.lsc_c00237{letter-spacing:26.640000px;}
.lsd_c00237{letter-spacing:27.000000px;}
.ls0_c00237{letter-spacing:319.518000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00237{word-spacing:-18.144000px;}
.ws5_c00237{word-spacing:-18.072000px;}
.ws0_c00237{word-spacing:-18.000000px;}
.ws6_c00237{word-spacing:-17.928000px;}
.ws2_c00237{word-spacing:-17.784000px;}
.ws4_c00237{word-spacing:-17.712000px;}
.ws3_c00237{word-spacing:-17.640000px;}
.ws8_c00237{word-spacing:-17.568000px;}
.ws7_c00237{word-spacing:-12.161520px;}
.ws9_c00237{word-spacing:-9.720000px;}
.wsb_c00237{word-spacing:-0.162000px;}
.wsc_c00237{word-spacing:-0.144000px;}
.ws10_c00237{word-spacing:-0.072000px;}
.wsa_c00237{word-spacing:0.000000px;}
.ws2e_c00237{word-spacing:0.180360px;}
.ws2f_c00237{word-spacing:0.240480px;}
.ws1d_c00237{word-spacing:1.080000px;}
.ws17_c00237{word-spacing:1.800000px;}
.ws2c_c00237{word-spacing:2.765520px;}
.ws2b_c00237{word-spacing:2.808000px;}
.ws2d_c00237{word-spacing:3.006000px;}
.wse_c00237{word-spacing:3.168000px;}
.wsf_c00237{word-spacing:3.240000px;}
.ws1e_c00237{word-spacing:3.600000px;}
.ws22_c00237{word-spacing:3.960000px;}
.ws1c_c00237{word-spacing:4.608000px;}
.ws1b_c00237{word-spacing:5.040000px;}
.ws20_c00237{word-spacing:6.120000px;}
.ws21_c00237{word-spacing:6.408000px;}
.ws1f_c00237{word-spacing:6.480000px;}
.ws19_c00237{word-spacing:6.768000px;}
.ws16_c00237{word-spacing:6.840000px;}
.ws29_c00237{word-spacing:7.200000px;}
.ws28_c00237{word-spacing:7.560000px;}
.ws26_c00237{word-spacing:7.848000px;}
.ws27_c00237{word-spacing:7.920000px;}
.ws1a_c00237{word-spacing:9.000000px;}
.ws23_c00237{word-spacing:10.080000px;}
.ws18_c00237{word-spacing:10.728000px;}
.wsd_c00237{word-spacing:10.800000px;}
.ws24_c00237{word-spacing:14.328000px;}
.ws25_c00237{word-spacing:14.400000px;}
.ws11_c00237{word-spacing:17.928000px;}
.ws13_c00237{word-spacing:18.000000px;}
.ws12_c00237{word-spacing:18.144000px;}
.ws15_c00237{word-spacing:26.208000px;}
.ws14_c00237{word-spacing:26.280000px;}
.ws2a_c00237{word-spacing:26.640000px;}
._1_c00237{margin-left:-1.008000px;}
._2_c00237{width:1.008000px;}
._5_c00237{width:3.024000px;}
._4_c00237{width:5.184000px;}
._0_c00237{width:10.728000px;}
._3_c00237{width:26.496000px;}
.fc0_c00237{color:rgb(0,0,0);}
.fs3_c00237{font-size:38.880000px;}
.fs2_c00237{font-size:47.880000px;}
.fs0_c00237{font-size:54.000000px;}
.fs4_c00237{font-size:60.120000px;}
.fs1_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y26_c00237{bottom:57.240000px;}
.y25_c00237{bottom:109.795680px;}
.y24_c00237{bottom:132.210000px;}
.y27_c00237{bottom:144.900000px;}
.y23_c00237{bottom:178.920000px;}
.y22_c00237{bottom:209.970000px;}
.y21_c00237{bottom:241.020000px;}
.y20_c00237{bottom:272.070000px;}
.y1f_c00237{bottom:303.120000px;}
.y1e_c00237{bottom:334.170000px;}
.y1d_c00237{bottom:365.220000px;}
.y1c_c00237{bottom:396.270000px;}
.y1b_c00237{bottom:427.320000px;}
.y1a_c00237{bottom:458.370000px;}
.y19_c00237{bottom:489.420000px;}
.y18_c00237{bottom:520.470000px;}
.y17_c00237{bottom:551.520000px;}
.y16_c00237{bottom:582.570000px;}
.y15_c00237{bottom:613.620000px;}
.y14_c00237{bottom:644.670000px;}
.y13_c00237{bottom:675.720000px;}
.y12_c00237{bottom:706.770000px;}
.y11_c00237{bottom:737.820000px;}
.y10_c00237{bottom:768.870000px;}
.yf_c00237{bottom:799.920000px;}
.ye_c00237{bottom:830.970000px;}
.yd_c00237{bottom:861.930000px;}
.yc_c00237{bottom:892.980000px;}
.yb_c00237{bottom:924.030000px;}
.ya_c00237{bottom:955.080000px;}
.y9_c00237{bottom:986.130000px;}
.y8_c00237{bottom:1017.180000px;}
.y7_c00237{bottom:1048.230000px;}
.y6_c00237{bottom:1079.280000px;}
.y5_c00237{bottom:1110.330000px;}
.y4_c00237{bottom:1131.030000px;}
.y3_c00237{bottom:1150.915500px;}
.y2_c00237{bottom:1166.400000px;}
.y1_c00237{bottom:1197.450000px;}
.h5_c00237{height:38.158594px;}
.h2_c00237{height:52.998047px;}
.h6_c00237{height:59.004492px;}
.h3_c00237{height:70.664062px;}
.h4_c00237{height:73.991602px;}
.h0_c00237{height:1262.880000px;}
.h1_c00237{height:1263.000000px;}
.w0_c00237{width:893.070000px;}
.w1_c00237{width:893.250000px;}
.x0_c00237{left:0.000000px;}
.x2_c00237{left:127.620000px;}
.x1_c00237{left:446.580000px;}
@media print{
.v1_c00237{vertical-align:-55.056000pt;}
.v3_c00237{vertical-align:-18.560000pt;}
.v0_c00237{vertical-align:0.000000pt;}
.v2_c00237{vertical-align:24.000000pt;}
.ls15_c00237{letter-spacing:-0.384000pt;}
.ls12_c00237{letter-spacing:-0.320000pt;}
.ls13_c00237{letter-spacing:-0.256000pt;}
.ls11_c00237{letter-spacing:-0.192000pt;}
.ls10_c00237{letter-spacing:-0.128000pt;}
.ls18_c00237{letter-spacing:-0.106880pt;}
.ls14_c00237{letter-spacing:-0.064000pt;}
.ls17_c00237{letter-spacing:-0.053440pt;}
.lsf_c00237{letter-spacing:0.000000pt;}
.ls3_c00237{letter-spacing:0.064000pt;}
.ls5_c00237{letter-spacing:0.128000pt;}
.ls16_c00237{letter-spacing:0.160320pt;}
.lsb_c00237{letter-spacing:0.170240pt;}
.lse_c00237{letter-spacing:2.618560pt;}
.lsa_c00237{letter-spacing:3.840000pt;}
.ls8_c00237{letter-spacing:5.760000pt;}
.ls9_c00237{letter-spacing:5.772800pt;}
.ls7_c00237{letter-spacing:6.080000pt;}
.ls6_c00237{letter-spacing:6.400000pt;}
.ls4_c00237{letter-spacing:9.600000pt;}
.ls1_c00237{letter-spacing:16.000000pt;}
.ls2_c00237{letter-spacing:23.360000pt;}
.lsc_c00237{letter-spacing:23.680000pt;}
.lsd_c00237{letter-spacing:24.000000pt;}
.ls0_c00237{letter-spacing:284.016000pt;}
.ws1_c00237{word-spacing:-16.128000pt;}
.ws5_c00237{word-spacing:-16.064000pt;}
.ws0_c00237{word-spacing:-16.000000pt;}
.ws6_c00237{word-spacing:-15.936000pt;}
.ws2_c00237{word-spacing:-15.808000pt;}
.ws4_c00237{word-spacing:-15.744000pt;}
.ws3_c00237{word-spacing:-15.680000pt;}
.ws8_c00237{word-spacing:-15.616000pt;}
.ws7_c00237{word-spacing:-10.810240pt;}
.ws9_c00237{word-spacing:-8.640000pt;}
.wsb_c00237{word-spacing:-0.144000pt;}
.wsc_c00237{word-spacing:-0.128000pt;}
.ws10_c00237{word-spacing:-0.064000pt;}
.wsa_c00237{word-spacing:0.000000pt;}
.ws2e_c00237{word-spacing:0.160320pt;}
.ws2f_c00237{word-spacing:0.213760pt;}
.ws1d_c00237{word-spacing:0.960000pt;}
.ws17_c00237{word-spacing:1.600000pt;}
.ws2c_c00237{word-spacing:2.458240pt;}
.ws2b_c00237{word-spacing:2.496000pt;}
.ws2d_c00237{word-spacing:2.672000pt;}
.wse_c00237{word-spacing:2.816000pt;}
.wsf_c00237{word-spacing:2.880000pt;}
.ws1e_c00237{word-spacing:3.200000pt;}
.ws22_c00237{word-spacing:3.520000pt;}
.ws1c_c00237{word-spacing:4.096000pt;}
.ws1b_c00237{word-spacing:4.480000pt;}
.ws20_c00237{word-spacing:5.440000pt;}
.ws21_c00237{word-spacing:5.696000pt;}
.ws1f_c00237{word-spacing:5.760000pt;}
.ws19_c00237{word-spacing:6.016000pt;}
.ws16_c00237{word-spacing:6.080000pt;}
.ws29_c00237{word-spacing:6.400000pt;}
.ws28_c00237{word-spacing:6.720000pt;}
.ws26_c00237{word-spacing:6.976000pt;}
.ws27_c00237{word-spacing:7.040000pt;}
.ws1a_c00237{word-spacing:8.000000pt;}
.ws23_c00237{word-spacing:8.960000pt;}
.ws18_c00237{word-spacing:9.536000pt;}
.wsd_c00237{word-spacing:9.600000pt;}
.ws24_c00237{word-spacing:12.736000pt;}
.ws25_c00237{word-spacing:12.800000pt;}
.ws11_c00237{word-spacing:15.936000pt;}
.ws13_c00237{word-spacing:16.000000pt;}
.ws12_c00237{word-spacing:16.128000pt;}
.ws15_c00237{word-spacing:23.296000pt;}
.ws14_c00237{word-spacing:23.360000pt;}
.ws2a_c00237{word-spacing:23.680000pt;}
._1_c00237{margin-left:-0.896000pt;}
._2_c00237{width:0.896000pt;}
._5_c00237{width:2.688000pt;}
._4_c00237{width:4.608000pt;}
._0_c00237{width:9.536000pt;}
._3_c00237{width:23.552000pt;}
.fs3_c00237{font-size:34.560000pt;}
.fs2_c00237{font-size:42.560000pt;}
.fs0_c00237{font-size:48.000000pt;}
.fs4_c00237{font-size:53.440000pt;}
.fs1_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y26_c00237{bottom:50.880000pt;}
.y25_c00237{bottom:97.596160pt;}
.y24_c00237{bottom:117.520000pt;}
.y27_c00237{bottom:128.800000pt;}
.y23_c00237{bottom:159.040000pt;}
.y22_c00237{bottom:186.640000pt;}
.y21_c00237{bottom:214.240000pt;}
.y20_c00237{bottom:241.840000pt;}
.y1f_c00237{bottom:269.440000pt;}
.y1e_c00237{bottom:297.040000pt;}
.y1d_c00237{bottom:324.640000pt;}
.y1c_c00237{bottom:352.240000pt;}
.y1b_c00237{bottom:379.840000pt;}
.y1a_c00237{bottom:407.440000pt;}
.y19_c00237{bottom:435.040000pt;}
.y18_c00237{bottom:462.640000pt;}
.y17_c00237{bottom:490.240000pt;}
.y16_c00237{bottom:517.840000pt;}
.y15_c00237{bottom:545.440000pt;}
.y14_c00237{bottom:573.040000pt;}
.y13_c00237{bottom:600.640000pt;}
.y12_c00237{bottom:628.240000pt;}
.y11_c00237{bottom:655.840000pt;}
.y10_c00237{bottom:683.440000pt;}
.yf_c00237{bottom:711.040000pt;}
.ye_c00237{bottom:738.640000pt;}
.yd_c00237{bottom:766.160000pt;}
.yc_c00237{bottom:793.760000pt;}
.yb_c00237{bottom:821.360000pt;}
.ya_c00237{bottom:848.960000pt;}
.y9_c00237{bottom:876.560000pt;}
.y8_c00237{bottom:904.160000pt;}
.y7_c00237{bottom:931.760000pt;}
.y6_c00237{bottom:959.360000pt;}
.y5_c00237{bottom:986.960000pt;}
.y4_c00237{bottom:1005.360000pt;}
.y3_c00237{bottom:1023.036000pt;}
.y2_c00237{bottom:1036.800000pt;}
.y1_c00237{bottom:1064.400000pt;}
.h5_c00237{height:33.918750pt;}
.h2_c00237{height:47.109375pt;}
.h6_c00237{height:52.448437pt;}
.h3_c00237{height:62.812500pt;}
.h4_c00237{height:65.770313pt;}
.h0_c00237{height:1122.560000pt;}
.h1_c00237{height:1122.666667pt;}
.w0_c00237{width:793.840000pt;}
.w1_c00237{width:794.000000pt;}
.x0_c00237{left:0.000000pt;}
.x2_c00237{left:113.440000pt;}
.x1_c00237{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5439e82726e69550b1b3c615.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.284180;font-style: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;}
.ls16_c00238{letter-spacing:-0.360000px;}
.ls15_c00238{letter-spacing:-0.288000px;}
.ls17_c00238{letter-spacing:-0.216000px;}
.ls13_c00238{letter-spacing:-0.108000px;}
.ls14_c00238{letter-spacing:-0.072000px;}
.ls12_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.072000px;}
.ls8_c00238{letter-spacing:0.144000px;}
.lsd_c00238{letter-spacing:0.158400px;}
.ls2_c00238{letter-spacing:0.360000px;}
.ls18_c00238{letter-spacing:0.432000px;}
.ls6_c00238{letter-spacing:1.800000px;}
.ls7_c00238{letter-spacing:1.807200px;}
.lsb_c00238{letter-spacing:3.240000px;}
.lsc_c00238{letter-spacing:3.960000px;}
.ls5_c00238{letter-spacing:5.040000px;}
.ls1_c00238{letter-spacing:8.640000px;}
.ls9_c00238{letter-spacing:9.720000px;}
.lsa_c00238{letter-spacing:10.440000px;}
.ls10_c00238{letter-spacing:11.880000px;}
.ls11_c00238{letter-spacing:11.887200px;}
.lse_c00238{letter-spacing:14.760000px;}
.lsf_c00238{letter-spacing:23.760000px;}
.ls4_c00238{letter-spacing:28.080000px;}
.ls3_c00238{letter-spacing:28.440000px;}
.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;}
}
.ws3_c00238{word-spacing:-18.144000px;}
.ws5_c00238{word-spacing:-18.072000px;}
.ws2_c00238{word-spacing:-18.000000px;}
.ws0_c00238{word-spacing:-17.928000px;}
.ws4_c00238{word-spacing:-17.784000px;}
.ws1_c00238{word-spacing:-17.712000px;}
.ws6_c00238{word-spacing:-17.640000px;}
.ws2a_c00238{word-spacing:-0.432000px;}
.ws10_c00238{word-spacing:-0.360000px;}
.ws22_c00238{word-spacing:-0.144000px;}
.ws15_c00238{word-spacing:-0.072000px;}
.ws7_c00238{word-spacing:0.000000px;}
.ws18_c00238{word-spacing:0.072000px;}
.ws9_c00238{word-spacing:0.162000px;}
.ws8_c00238{word-spacing:0.270000px;}
.wsb_c00238{word-spacing:0.288000px;}
.wsc_c00238{word-spacing:0.360000px;}
.wsa_c00238{word-spacing:1.368000px;}
.ws1e_c00238{word-spacing:1.728000px;}
.ws1f_c00238{word-spacing:1.800000px;}
.ws29_c00238{word-spacing:3.240000px;}
.ws26_c00238{word-spacing:3.528000px;}
.ws20_c00238{word-spacing:3.600000px;}
.ws21_c00238{word-spacing:3.960000px;}
.ws1d_c00238{word-spacing:4.968000px;}
.ws1b_c00238{word-spacing:5.040000px;}
.ws1c_c00238{word-spacing:5.400000px;}
.wsf_c00238{word-spacing:7.848000px;}
.wsd_c00238{word-spacing:8.208000px;}
.wse_c00238{word-spacing:8.280000px;}
.ws12_c00238{word-spacing:8.928000px;}
.ws11_c00238{word-spacing:9.288000px;}
.ws23_c00238{word-spacing:9.648000px;}
.ws24_c00238{word-spacing:9.720000px;}
.ws25_c00238{word-spacing:10.440000px;}
.ws30_c00238{word-spacing:11.808000px;}
.ws2f_c00238{word-spacing:11.880000px;}
.ws1a_c00238{word-spacing:12.168000px;}
.ws19_c00238{word-spacing:12.240000px;}
.ws13_c00238{word-spacing:12.528000px;}
.ws2b_c00238{word-spacing:15.120000px;}
.ws14_c00238{word-spacing:16.200000px;}
.ws28_c00238{word-spacing:22.248000px;}
.ws27_c00238{word-spacing:22.320000px;}
.ws2c_c00238{word-spacing:23.688000px;}
.ws2e_c00238{word-spacing:23.760000px;}
.ws2d_c00238{word-spacing:24.048000px;}
.ws17_c00238{word-spacing:28.080000px;}
.ws16_c00238{word-spacing:28.368000px;}
._1_c00238{margin-left:-1.058400px;}
._0_c00238{width:1.220400px;}
._7_c00238{width:2.595600px;}
._8_c00238{width:3.812400px;}
._2_c00238{width:8.524800px;}
._5_c00238{width:10.123200px;}
._4_c00238{width:11.527200px;}
._3_c00238{width:12.528000px;}
._9_c00238{width:16.275600px;}
._6_c00238{width:21.607200px;}
._b_c00238{width:22.968000px;}
._a_c00238{width:24.098400px;}
.fc0_c00238{color:rgb(0,0,0);}
.fs0_c00238{font-size:54.000000px;}
.fs1_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y27_c00238{bottom:57.240000px;}
.y26_c00238{bottom:116.820000px;}
.y25_c00238{bottom:147.870000px;}
.y24_c00238{bottom:178.920000px;}
.y23_c00238{bottom:209.970000px;}
.y22_c00238{bottom:241.020000px;}
.y21_c00238{bottom:272.070000px;}
.y20_c00238{bottom:303.120000px;}
.y1f_c00238{bottom:334.170000px;}
.y1e_c00238{bottom:365.220000px;}
.y1d_c00238{bottom:396.270000px;}
.y1c_c00238{bottom:427.320000px;}
.y1b_c00238{bottom:458.370000px;}
.y1a_c00238{bottom:489.420000px;}
.y19_c00238{bottom:520.470000px;}
.y18_c00238{bottom:551.520000px;}
.y17_c00238{bottom:582.570000px;}
.y16_c00238{bottom:613.620000px;}
.y15_c00238{bottom:644.670000px;}
.y14_c00238{bottom:675.720000px;}
.y13_c00238{bottom:706.770000px;}
.y12_c00238{bottom:737.820000px;}
.y11_c00238{bottom:768.870000px;}
.y10_c00238{bottom:799.920000px;}
.yf_c00238{bottom:830.970000px;}
.ye_c00238{bottom:861.930000px;}
.yd_c00238{bottom:892.980000px;}
.yc_c00238{bottom:924.030000px;}
.yb_c00238{bottom:955.080000px;}
.ya_c00238{bottom:986.130000px;}
.y9_c00238{bottom:1017.180000px;}
.y8_c00238{bottom:1048.230000px;}
.y7_c00238{bottom:1079.280000px;}
.y6_c00238{bottom:1110.330000px;}
.y5_c00238{bottom:1131.030000px;}
.y4_c00238{bottom:1150.920000px;}
.y3_c00238{bottom:1166.404500px;}
.y2_c00238{bottom:1181.970000px;}
.y1_c00238{bottom:1197.450000px;}
.h3_c00238{height:52.971680px;}
.h2_c00238{height:52.998047px;}
.h4_c00238{height:70.664062px;}
.h0_c00238{height:1262.880000px;}
.h1_c00238{height:1263.000000px;}
.w0_c00238{width:893.070000px;}
.w1_c00238{width:893.250000px;}
.x0_c00238{left:0.000000px;}
.x3_c00238{left:127.620000px;}
.x2_c00238{left:425.160000px;}
.x1_c00238{left:446.580000px;}
.x4_c00238{left:738.540000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls16_c00238{letter-spacing:-0.320000pt;}
.ls15_c00238{letter-spacing:-0.256000pt;}
.ls17_c00238{letter-spacing:-0.192000pt;}
.ls13_c00238{letter-spacing:-0.096000pt;}
.ls14_c00238{letter-spacing:-0.064000pt;}
.ls12_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.064000pt;}
.ls8_c00238{letter-spacing:0.128000pt;}
.lsd_c00238{letter-spacing:0.140800pt;}
.ls2_c00238{letter-spacing:0.320000pt;}
.ls18_c00238{letter-spacing:0.384000pt;}
.ls6_c00238{letter-spacing:1.600000pt;}
.ls7_c00238{letter-spacing:1.606400pt;}
.lsb_c00238{letter-spacing:2.880000pt;}
.lsc_c00238{letter-spacing:3.520000pt;}
.ls5_c00238{letter-spacing:4.480000pt;}
.ls1_c00238{letter-spacing:7.680000pt;}
.ls9_c00238{letter-spacing:8.640000pt;}
.lsa_c00238{letter-spacing:9.280000pt;}
.ls10_c00238{letter-spacing:10.560000pt;}
.ls11_c00238{letter-spacing:10.566400pt;}
.lse_c00238{letter-spacing:13.120000pt;}
.lsf_c00238{letter-spacing:21.120000pt;}
.ls4_c00238{letter-spacing:24.960000pt;}
.ls3_c00238{letter-spacing:25.280000pt;}
.ws3_c00238{word-spacing:-16.128000pt;}
.ws5_c00238{word-spacing:-16.064000pt;}
.ws2_c00238{word-spacing:-16.000000pt;}
.ws0_c00238{word-spacing:-15.936000pt;}
.ws4_c00238{word-spacing:-15.808000pt;}
.ws1_c00238{word-spacing:-15.744000pt;}
.ws6_c00238{word-spacing:-15.680000pt;}
.ws2a_c00238{word-spacing:-0.384000pt;}
.ws10_c00238{word-spacing:-0.320000pt;}
.ws22_c00238{word-spacing:-0.128000pt;}
.ws15_c00238{word-spacing:-0.064000pt;}
.ws7_c00238{word-spacing:0.000000pt;}
.ws18_c00238{word-spacing:0.064000pt;}
.ws9_c00238{word-spacing:0.144000pt;}
.ws8_c00238{word-spacing:0.240000pt;}
.wsb_c00238{word-spacing:0.256000pt;}
.wsc_c00238{word-spacing:0.320000pt;}
.wsa_c00238{word-spacing:1.216000pt;}
.ws1e_c00238{word-spacing:1.536000pt;}
.ws1f_c00238{word-spacing:1.600000pt;}
.ws29_c00238{word-spacing:2.880000pt;}
.ws26_c00238{word-spacing:3.136000pt;}
.ws20_c00238{word-spacing:3.200000pt;}
.ws21_c00238{word-spacing:3.520000pt;}
.ws1d_c00238{word-spacing:4.416000pt;}
.ws1b_c00238{word-spacing:4.480000pt;}
.ws1c_c00238{word-spacing:4.800000pt;}
.wsf_c00238{word-spacing:6.976000pt;}
.wsd_c00238{word-spacing:7.296000pt;}
.wse_c00238{word-spacing:7.360000pt;}
.ws12_c00238{word-spacing:7.936000pt;}
.ws11_c00238{word-spacing:8.256000pt;}
.ws23_c00238{word-spacing:8.576000pt;}
.ws24_c00238{word-spacing:8.640000pt;}
.ws25_c00238{word-spacing:9.280000pt;}
.ws30_c00238{word-spacing:10.496000pt;}
.ws2f_c00238{word-spacing:10.560000pt;}
.ws1a_c00238{word-spacing:10.816000pt;}
.ws19_c00238{word-spacing:10.880000pt;}
.ws13_c00238{word-spacing:11.136000pt;}
.ws2b_c00238{word-spacing:13.440000pt;}
.ws14_c00238{word-spacing:14.400000pt;}
.ws28_c00238{word-spacing:19.776000pt;}
.ws27_c00238{word-spacing:19.840000pt;}
.ws2c_c00238{word-spacing:21.056000pt;}
.ws2e_c00238{word-spacing:21.120000pt;}
.ws2d_c00238{word-spacing:21.376000pt;}
.ws17_c00238{word-spacing:24.960000pt;}
.ws16_c00238{word-spacing:25.216000pt;}
._1_c00238{margin-left:-0.940800pt;}
._0_c00238{width:1.084800pt;}
._7_c00238{width:2.307200pt;}
._8_c00238{width:3.388800pt;}
._2_c00238{width:7.577600pt;}
._5_c00238{width:8.998400pt;}
._4_c00238{width:10.246400pt;}
._3_c00238{width:11.136000pt;}
._9_c00238{width:14.467200pt;}
._6_c00238{width:19.206400pt;}
._b_c00238{width:20.416000pt;}
._a_c00238{width:21.420800pt;}
.fs0_c00238{font-size:48.000000pt;}
.fs1_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y27_c00238{bottom:50.880000pt;}
.y26_c00238{bottom:103.840000pt;}
.y25_c00238{bottom:131.440000pt;}
.y24_c00238{bottom:159.040000pt;}
.y23_c00238{bottom:186.640000pt;}
.y22_c00238{bottom:214.240000pt;}
.y21_c00238{bottom:241.840000pt;}
.y20_c00238{bottom:269.440000pt;}
.y1f_c00238{bottom:297.040000pt;}
.y1e_c00238{bottom:324.640000pt;}
.y1d_c00238{bottom:352.240000pt;}
.y1c_c00238{bottom:379.840000pt;}
.y1b_c00238{bottom:407.440000pt;}
.y1a_c00238{bottom:435.040000pt;}
.y19_c00238{bottom:462.640000pt;}
.y18_c00238{bottom:490.240000pt;}
.y17_c00238{bottom:517.840000pt;}
.y16_c00238{bottom:545.440000pt;}
.y15_c00238{bottom:573.040000pt;}
.y14_c00238{bottom:600.640000pt;}
.y13_c00238{bottom:628.240000pt;}
.y12_c00238{bottom:655.840000pt;}
.y11_c00238{bottom:683.440000pt;}
.y10_c00238{bottom:711.040000pt;}
.yf_c00238{bottom:738.640000pt;}
.ye_c00238{bottom:766.160000pt;}
.yd_c00238{bottom:793.760000pt;}
.yc_c00238{bottom:821.360000pt;}
.yb_c00238{bottom:848.960000pt;}
.ya_c00238{bottom:876.560000pt;}
.y9_c00238{bottom:904.160000pt;}
.y8_c00238{bottom:931.760000pt;}
.y7_c00238{bottom:959.360000pt;}
.y6_c00238{bottom:986.960000pt;}
.y5_c00238{bottom:1005.360000pt;}
.y4_c00238{bottom:1023.040000pt;}
.y3_c00238{bottom:1036.804000pt;}
.y2_c00238{bottom:1050.640000pt;}
.y1_c00238{bottom:1064.400000pt;}
.h3_c00238{height:47.085938pt;}
.h2_c00238{height:47.109375pt;}
.h4_c00238{height:62.812500pt;}
.h0_c00238{height:1122.560000pt;}
.h1_c00238{height:1122.666667pt;}
.w0_c00238{width:793.840000pt;}
.w1_c00238{width:794.000000pt;}
.x0_c00238{left:0.000000pt;}
.x3_c00238{left:113.440000pt;}
.x2_c00238{left:377.920000pt;}
.x1_c00238{left:396.960000pt;}
.x4_c00238{left:656.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_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_a276cf215d78f7b65e779390.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_66aa76b45a2c734733552708.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_3687078d9f9a8635bf423450.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00239;src:url('chunks/assets/font_b2fd17922e4de433183544e8.woff2')format("woff");}.ff5_c00239{font-family:ff5_c00239;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00239{transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251189,0.000000,0.000000,0.250000,0,0);}
.v2_c00239{vertical-align:-83.520000px;}
.v1_c00239{vertical-align:-61.938000px;}
.v3_c00239{vertical-align:-3.993227px;}
.v0_c00239{vertical-align:0.000000px;}
.v4_c00239{vertical-align:3.993227px;}
.lsa_c00239{letter-spacing:-2.384016px;}
.lse_c00239{letter-spacing:-1.668811px;}
.lsb_c00239{letter-spacing:-1.609211px;}
.ls16_c00239{letter-spacing:-1.525766px;}
.ls10_c00239{letter-spacing:-1.311209px;}
.lsd_c00239{letter-spacing:-0.774805px;}
.lsc_c00239{letter-spacing:-0.445015px;}
.ls11_c00239{letter-spacing:-0.417203px;}
.ls14_c00239{letter-spacing:-0.190721px;}
.lsf_c00239{letter-spacing:-0.178801px;}
.ls7_c00239{letter-spacing:-0.144000px;}
.ls9_c00239{letter-spacing:-0.120240px;}
.ls6_c00239{letter-spacing:0.000000px;}
.ls8_c00239{letter-spacing:0.072000px;}
.ls5_c00239{letter-spacing:0.254294px;}
.ls4_c00239{letter-spacing:0.381442px;}
.ls17_c00239{letter-spacing:1.207898px;}
.ls3_c00239{letter-spacing:1.251608px;}
.ls15_c00239{letter-spacing:1.589340px;}
.ls13_c00239{letter-spacing:1.652914px;}
.ls12_c00239{letter-spacing:1.843634px;}
.ls2_c00239{letter-spacing:49.229930px;}
.ls1_c00239{letter-spacing:700.200000px;}
.ls0_c00239{letter-spacing:1144.260000px;}
.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;}
}
.ws1e_c00239{word-spacing:-16.211268px;}
.ws21_c00239{word-spacing:-16.020547px;}
.ws0_c00239{word-spacing:-14.909760px;}
.ws20_c00239{word-spacing:-14.749075px;}
.ws1f_c00239{word-spacing:-14.621928px;}
.ws5_c00239{word-spacing:-13.922618px;}
.ws22_c00239{word-spacing:-12.841867px;}
.ws4_c00239{word-spacing:-11.085674px;}
.ws2a_c00239{word-spacing:-1.652914px;}
.ws2d_c00239{word-spacing:-1.589340px;}
.ws32_c00239{word-spacing:-1.207898px;}
.ws2f_c00239{word-spacing:-0.381442px;}
.ws31_c00239{word-spacing:-0.254294px;}
.ws24_c00239{word-spacing:-0.162000px;}
.ws26_c00239{word-spacing:-0.072000px;}
.ws23_c00239{word-spacing:0.000000px;}
.ws27_c00239{word-spacing:0.059600px;}
.ws25_c00239{word-spacing:0.144000px;}
.ws28_c00239{word-spacing:0.178801px;}
.ws2c_c00239{word-spacing:0.190721px;}
.ws2b_c00239{word-spacing:1.144325px;}
.ws2e_c00239{word-spacing:1.271472px;}
.ws30_c00239{word-spacing:1.525766px;}
.ws29_c00239{word-spacing:2.384016px;}
.ws1_c00239{word-spacing:28.608192px;}
.wsc_c00239{word-spacing:67.783535px;}
.ws3_c00239{word-spacing:67.801415px;}
.ws16_c00239{word-spacing:67.807375px;}
.ws7_c00239{word-spacing:67.825255px;}
.wsa_c00239{word-spacing:67.831215px;}
.wsf_c00239{word-spacing:179.492565px;}
.ws6_c00239{word-spacing:255.608235px;}
.ws9_c00239{word-spacing:327.170436px;}
.ws2_c00239{word-spacing:335.150929px;}
.wsb_c00239{word-spacing:349.395425px;}
.ws18_c00239{word-spacing:358.973209px;}
.ws1b_c00239{word-spacing:382.867010px;}
.ws13_c00239{word-spacing:398.661116px;}
.ws11_c00239{word-spacing:406.450888px;}
.ws1c_c00239{word-spacing:410.980518px;}
.ws8_c00239{word-spacing:416.904798px;}
.ws17_c00239{word-spacing:418.370968px;}
.ws19_c00239{word-spacing:418.615329px;}
.ws15_c00239{word-spacing:439.254948px;}
.ws12_c00239{word-spacing:442.771372px;}
.ws14_c00239{word-spacing:446.406996px;}
.wsd_c00239{word-spacing:450.501543px;}
.wse_c00239{word-spacing:459.262802px;}
.ws1d_c00239{word-spacing:466.498291px;}
.ws1a_c00239{word-spacing:474.282103px;}
.ws10_c00239{word-spacing:497.502419px;}
._19_c00239{margin-left:-3.593403px;}
._16_c00239{margin-left:-2.287902px;}
._1_c00239{margin-left:-1.008000px;}
._0_c00239{width:1.440000px;}
._2_c00239{width:3.163481px;}
._6_c00239{width:4.217650px;}
._11_c00239{width:78.593261px;}
._4_c00239{width:159.296590px;}
._15_c00239{width:162.757530px;}
._3_c00239{width:170.839887px;}
._e_c00239{width:186.218363px;}
._14_c00239{width:190.224197px;}
._d_c00239{width:191.236926px;}
._a_c00239{width:198.686495px;}
._13_c00239{width:201.414892px;}
._c_c00239{width:202.658968px;}
._5_c00239{width:214.730922px;}
._17_c00239{width:218.159728px;}
._8_c00239{width:219.271172px;}
._f_c00239{width:229.976223px;}
._9_c00239{width:241.716683px;}
._7_c00239{width:258.117412px;}
._b_c00239{width:285.907778px;}
._10_c00239{width:346.020742px;}
._12_c00239{width:404.066324px;}
._18_c00239{width:431.239723px;}
.fc0_c00239{color:rgb(0,0,0);}
.fs0_c00239{font-size:54.000000px;}
.fs3_c00239{font-size:59.600400px;}
.fs2_c00239{font-size:60.120000px;}
.fs4_c00239{font-size:63.573600px;}
.fs1_c00239{font-size:72.000000px;}
.y0_c00239{bottom:0.000000px;}
.y49_c00239{bottom:2.964157px;}
.yf_c00239{bottom:3.972300px;}
.y1b_c00239{bottom:3.972600px;}
.y1c_c00239{bottom:3.972750px;}
.y12_c00239{bottom:3.972900px;}
.y13_c00239{bottom:3.973050px;}
.y9_c00239{bottom:3.973200px;}
.y20_c00239{bottom:3.973350px;}
.yc_c00239{bottom:3.973500px;}
.y23_c00239{bottom:3.973650px;}
.y17_c00239{bottom:3.973800px;}
.y18_c00239{bottom:3.973950px;}
.ye_c00239{bottom:4.965750px;}
.y1a_c00239{bottom:4.965900px;}
.y11_c00239{bottom:4.966050px;}
.y26_c00239{bottom:4.966200px;}
.y15_c00239{bottom:4.966350px;}
.y8_c00239{bottom:4.966500px;}
.y1f_c00239{bottom:4.966650px;}
.yb_c00239{bottom:4.966800px;}
.y33_c00239{bottom:4.966950px;}
.y22_c00239{bottom:4.967100px;}
.y2a_c00239{bottom:4.967250px;}
.y44_c00239{bottom:13.930528px;}
.y48_c00239{bottom:23.832191px;}
.y3d_c00239{bottom:23.840025px;}
.y40_c00239{bottom:23.840175px;}
.y3b_c00239{bottom:23.855918px;}
.y38_c00239{bottom:34.758866px;}
.y43_c00239{bottom:34.782668px;}
.y3c_c00239{bottom:44.692166px;}
.y3f_c00239{bottom:44.692316px;}
.y36_c00239{bottom:44.700000px;}
.y35_c00239{bottom:44.700150px;}
.y47_c00239{bottom:44.700225px;}
.y3a_c00239{bottom:44.708059px;}
.y37_c00239{bottom:55.626900px;}
.y42_c00239{bottom:55.634809px;}
.y4a_c00239{bottom:57.330000px;}
.y46_c00239{bottom:65.552366px;}
.y39_c00239{bottom:65.560200px;}
.y3e_c00239{bottom:65.560350px;}
.y41_c00239{bottom:76.486950px;}
.y45_c00239{bottom:86.420400px;}
.y6_c00239{bottom:139.410000px;}
.y5_c00239{bottom:153.180000px;}
.y32_c00239{bottom:155.275500px;}
.y31_c00239{bottom:176.136000px;}
.y30_c00239{bottom:196.996500px;}
.y2f_c00239{bottom:217.857000px;}
.y2e_c00239{bottom:238.716000px;}
.y2d_c00239{bottom:259.576500px;}
.y2c_c00239{bottom:280.437000px;}
.y2b_c00239{bottom:301.297500px;}
.y29_c00239{bottom:322.156500px;}
.y28_c00239{bottom:343.017000px;}
.y27_c00239{bottom:363.877500px;}
.y25_c00239{bottom:384.738000px;}
.y24_c00239{bottom:405.598500px;}
.y21_c00239{bottom:426.457500px;}
.y1e_c00239{bottom:447.318000px;}
.y1d_c00239{bottom:468.178500px;}
.y19_c00239{bottom:489.039000px;}
.y16_c00239{bottom:509.898000px;}
.y14_c00239{bottom:529.765500px;}
.y10_c00239{bottom:550.626000px;}
.yd_c00239{bottom:571.486500px;}
.ya_c00239{bottom:592.345500px;}
.y7_c00239{bottom:613.206000px;}
.y34_c00239{bottom:635.059500px;}
.y4_c00239{bottom:761.220000px;}
.y3_c00239{bottom:781.105500px;}
.y2_c00239{bottom:796.590000px;}
.y1_c00239{bottom:827.640000px;}
.hb_c00239{height:18.874500px;}
.h9_c00239{height:19.866000px;}
.h5_c00239{height:20.859000px;}
.h8_c00239{height:44.321977px;}
.ha_c00239{height:47.276657px;}
.h6_c00239{height:49.152869px;}
.h7_c00239{height:52.429595px;}
.h2_c00239{height:52.998047px;}
.h4_c00239{height:58.975137px;}
.h3_c00239{height:70.664062px;}
.hc_c00239{height:100.327500px;}
.h0_c00239{height:893.070000px;}
.h1_c00239{height:893.250000px;}
.w3_c00239{width:26.947500px;}
.w5_c00239{width:71.860500px;}
.wb_c00239{width:75.850500px;}
.w8_c00239{width:84.835500px;}
.w6_c00239{width:89.826000px;}
.wa_c00239{width:92.818500px;}
.w7_c00239{width:94.816500px;}
.wc_c00239{width:95.814000px;}
.w9_c00239{width:98.808000px;}
.w4_c00239{width:142.722000px;}
.w2_c00239{width:1047.961500px;}
.w0_c00239{width:1262.880000px;}
.w1_c00239{width:1263.000000px;}
.x0_c00239{left:0.000000px;}
.x1d_c00239{left:2.012544px;}
.x13_c00239{left:3.993000px;}
.x5_c00239{left:5.988900px;}
.x21_c00239{left:7.002369px;}
.x14_c00239{left:8.975328px;}
.xa_c00239{left:9.981150px;}
.x10_c00239{left:12.975375px;}
.x23_c00239{left:13.981047px;}
.x1a_c00239{left:15.969150px;}
.x17_c00239{left:17.965500px;}
.x12_c00239{left:19.962000px;}
.x20_c00239{left:22.955400px;}
.x1c_c00239{left:28.952247px;}
.x1b_c00239{left:31.938450px;}
.xe_c00239{left:36.927900px;}
.x2_c00239{left:106.380000px;}
.xd_c00239{left:135.324000px;}
.xf_c00239{left:279.043500px;}
.x11_c00239{left:351.901500px;}
.x15_c00239{left:442.725000px;}
.x22_c00239{left:538.539000px;}
.x1_c00239{left:631.440000px;}
.x16_c00239{left:635.350500px;}
.x18_c00239{left:721.183500px;}
.x19_c00239{left:812.007000px;}
.x6_c00239{left:903.243450px;}
.x8_c00239{left:909.231750px;}
.xc_c00239{left:911.227950px;}
.x9_c00239{left:917.216400px;}
.x1e_c00239{left:1005.631500px;}
.xb_c00239{left:1030.995150px;}
.x7_c00239{left:1037.981100px;}
.x1f_c00239{left:1082.481000px;}
.x4_c00239{left:1089.540000px;}
.x3_c00239{left:1156.320000px;}
@media print{
.v2_c00239{vertical-align:-74.240000pt;}
.v1_c00239{vertical-align:-55.056000pt;}
.v3_c00239{vertical-align:-3.549535pt;}
.v0_c00239{vertical-align:0.000000pt;}
.v4_c00239{vertical-align:3.549535pt;}
.lsa_c00239{letter-spacing:-2.119125pt;}
.lse_c00239{letter-spacing:-1.483388pt;}
.lsb_c00239{letter-spacing:-1.430410pt;}
.ls16_c00239{letter-spacing:-1.356237pt;}
.ls10_c00239{letter-spacing:-1.165519pt;}
.lsd_c00239{letter-spacing:-0.688716pt;}
.lsc_c00239{letter-spacing:-0.395569pt;}
.ls11_c00239{letter-spacing:-0.370847pt;}
.ls14_c00239{letter-spacing:-0.169530pt;}
.lsf_c00239{letter-spacing:-0.158934pt;}
.ls7_c00239{letter-spacing:-0.128000pt;}
.ls9_c00239{letter-spacing:-0.106880pt;}
.ls6_c00239{letter-spacing:0.000000pt;}
.ls8_c00239{letter-spacing:0.064000pt;}
.ls5_c00239{letter-spacing:0.226039pt;}
.ls4_c00239{letter-spacing:0.339059pt;}
.ls17_c00239{letter-spacing:1.073687pt;}
.ls3_c00239{letter-spacing:1.112541pt;}
.ls15_c00239{letter-spacing:1.412747pt;}
.ls13_c00239{letter-spacing:1.469257pt;}
.ls12_c00239{letter-spacing:1.638786pt;}
.ls2_c00239{letter-spacing:43.759938pt;}
.ls1_c00239{letter-spacing:622.400000pt;}
.ls0_c00239{letter-spacing:1017.120000pt;}
.ws1e_c00239{word-spacing:-14.410016pt;}
.ws21_c00239{word-spacing:-14.240486pt;}
.ws0_c00239{word-spacing:-13.253120pt;}
.ws20_c00239{word-spacing:-13.110289pt;}
.ws1f_c00239{word-spacing:-12.997269pt;}
.ws5_c00239{word-spacing:-12.375661pt;}
.ws22_c00239{word-spacing:-11.414993pt;}
.ws4_c00239{word-spacing:-9.853933pt;}
.ws2a_c00239{word-spacing:-1.469257pt;}
.ws2d_c00239{word-spacing:-1.412747pt;}
.ws32_c00239{word-spacing:-1.073687pt;}
.ws2f_c00239{word-spacing:-0.339059pt;}
.ws31_c00239{word-spacing:-0.226039pt;}
.ws24_c00239{word-spacing:-0.144000pt;}
.ws26_c00239{word-spacing:-0.064000pt;}
.ws23_c00239{word-spacing:0.000000pt;}
.ws27_c00239{word-spacing:0.052978pt;}
.ws25_c00239{word-spacing:0.128000pt;}
.ws28_c00239{word-spacing:0.158934pt;}
.ws2c_c00239{word-spacing:0.169530pt;}
.ws2b_c00239{word-spacing:1.017178pt;}
.ws2e_c00239{word-spacing:1.130197pt;}
.ws30_c00239{word-spacing:1.356237pt;}
.ws29_c00239{word-spacing:2.119125pt;}
.ws1_c00239{word-spacing:25.429504pt;}
.wsc_c00239{word-spacing:60.252031pt;}
.ws3_c00239{word-spacing:60.267924pt;}
.ws16_c00239{word-spacing:60.273222pt;}
.ws7_c00239{word-spacing:60.289116pt;}
.wsa_c00239{word-spacing:60.294414pt;}
.wsf_c00239{word-spacing:159.548946pt;}
.ws6_c00239{word-spacing:227.207320pt;}
.ws9_c00239{word-spacing:290.818165pt;}
.ws2_c00239{word-spacing:297.911937pt;}
.wsb_c00239{word-spacing:310.573711pt;}
.ws18_c00239{word-spacing:319.087297pt;}
.ws1b_c00239{word-spacing:340.326231pt;}
.ws13_c00239{word-spacing:354.365436pt;}
.ws11_c00239{word-spacing:361.289678pt;}
.ws1c_c00239{word-spacing:365.316016pt;}
.ws8_c00239{word-spacing:370.582043pt;}
.ws17_c00239{word-spacing:371.885305pt;}
.ws19_c00239{word-spacing:372.102515pt;}
.ws15_c00239{word-spacing:390.448843pt;}
.ws12_c00239{word-spacing:393.574553pt;}
.ws14_c00239{word-spacing:396.806219pt;}
.wsd_c00239{word-spacing:400.445816pt;}
.wse_c00239{word-spacing:408.233602pt;}
.ws1d_c00239{word-spacing:414.665147pt;}
.ws1a_c00239{word-spacing:421.584092pt;}
.ws10_c00239{word-spacing:442.224372pt;}
._19_c00239{margin-left:-3.194136pt;}
._16_c00239{margin-left:-2.033691pt;}
._1_c00239{margin-left:-0.896000pt;}
._0_c00239{width:1.280000pt;}
._2_c00239{width:2.811983pt;}
._6_c00239{width:3.749023pt;}
._11_c00239{width:69.860677pt;}
._4_c00239{width:141.596969pt;}
._15_c00239{width:144.673360pt;}
._3_c00239{width:151.857678pt;}
._e_c00239{width:165.527434pt;}
._14_c00239{width:169.088175pt;}
._d_c00239{width:169.988379pt;}
._a_c00239{width:176.610218pt;}
._13_c00239{width:179.035460pt;}
._c_c00239{width:180.141305pt;}
._5_c00239{width:190.871931pt;}
._17_c00239{width:193.919758pt;}
._8_c00239{width:194.907709pt;}
._f_c00239{width:204.423310pt;}
._9_c00239{width:214.859274pt;}
._7_c00239{width:229.437700pt;}
._b_c00239{width:254.140247pt;}
._10_c00239{width:307.573993pt;}
._12_c00239{width:359.170066pt;}
._18_c00239{width:383.324198pt;}
.fs0_c00239{font-size:48.000000pt;}
.fs3_c00239{font-size:52.978133pt;}
.fs2_c00239{font-size:53.440000pt;}
.fs4_c00239{font-size:56.509867pt;}
.fs1_c00239{font-size:64.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y49_c00239{bottom:2.634806pt;}
.yf_c00239{bottom:3.530933pt;}
.y1b_c00239{bottom:3.531200pt;}
.y1c_c00239{bottom:3.531333pt;}
.y12_c00239{bottom:3.531467pt;}
.y13_c00239{bottom:3.531600pt;}
.y9_c00239{bottom:3.531733pt;}
.y20_c00239{bottom:3.531867pt;}
.yc_c00239{bottom:3.532000pt;}
.y23_c00239{bottom:3.532133pt;}
.y17_c00239{bottom:3.532267pt;}
.y18_c00239{bottom:3.532400pt;}
.ye_c00239{bottom:4.414000pt;}
.y1a_c00239{bottom:4.414133pt;}
.y11_c00239{bottom:4.414267pt;}
.y26_c00239{bottom:4.414400pt;}
.y15_c00239{bottom:4.414533pt;}
.y8_c00239{bottom:4.414667pt;}
.y1f_c00239{bottom:4.414800pt;}
.yb_c00239{bottom:4.414933pt;}
.y33_c00239{bottom:4.415067pt;}
.y22_c00239{bottom:4.415200pt;}
.y2a_c00239{bottom:4.415333pt;}
.y44_c00239{bottom:12.382691pt;}
.y48_c00239{bottom:21.184170pt;}
.y3d_c00239{bottom:21.191133pt;}
.y40_c00239{bottom:21.191267pt;}
.y3b_c00239{bottom:21.205261pt;}
.y38_c00239{bottom:30.896770pt;}
.y43_c00239{bottom:30.917927pt;}
.y3c_c00239{bottom:39.726370pt;}
.y3f_c00239{bottom:39.726503pt;}
.y36_c00239{bottom:39.733333pt;}
.y35_c00239{bottom:39.733467pt;}
.y47_c00239{bottom:39.733533pt;}
.y3a_c00239{bottom:39.740497pt;}
.y37_c00239{bottom:49.446133pt;}
.y42_c00239{bottom:49.453164pt;}
.y4a_c00239{bottom:50.960000pt;}
.y46_c00239{bottom:58.268770pt;}
.y39_c00239{bottom:58.275733pt;}
.y3e_c00239{bottom:58.275867pt;}
.y41_c00239{bottom:67.988400pt;}
.y45_c00239{bottom:76.818133pt;}
.y6_c00239{bottom:123.920000pt;}
.y5_c00239{bottom:136.160000pt;}
.y32_c00239{bottom:138.022667pt;}
.y31_c00239{bottom:156.565333pt;}
.y30_c00239{bottom:175.108000pt;}
.y2f_c00239{bottom:193.650667pt;}
.y2e_c00239{bottom:212.192000pt;}
.y2d_c00239{bottom:230.734667pt;}
.y2c_c00239{bottom:249.277333pt;}
.y2b_c00239{bottom:267.820000pt;}
.y29_c00239{bottom:286.361333pt;}
.y28_c00239{bottom:304.904000pt;}
.y27_c00239{bottom:323.446667pt;}
.y25_c00239{bottom:341.989333pt;}
.y24_c00239{bottom:360.532000pt;}
.y21_c00239{bottom:379.073333pt;}
.y1e_c00239{bottom:397.616000pt;}
.y1d_c00239{bottom:416.158667pt;}
.y19_c00239{bottom:434.701333pt;}
.y16_c00239{bottom:453.242667pt;}
.y14_c00239{bottom:470.902667pt;}
.y10_c00239{bottom:489.445333pt;}
.yd_c00239{bottom:507.988000pt;}
.ya_c00239{bottom:526.529333pt;}
.y7_c00239{bottom:545.072000pt;}
.y34_c00239{bottom:564.497333pt;}
.y4_c00239{bottom:676.640000pt;}
.y3_c00239{bottom:694.316000pt;}
.y2_c00239{bottom:708.080000pt;}
.y1_c00239{bottom:735.680000pt;}
.hb_c00239{height:16.777333pt;}
.h9_c00239{height:17.658667pt;}
.h5_c00239{height:18.541333pt;}
.h8_c00239{height:39.397313pt;}
.ha_c00239{height:42.023695pt;}
.h6_c00239{height:43.691439pt;}
.h7_c00239{height:46.604084pt;}
.h2_c00239{height:47.109375pt;}
.h4_c00239{height:52.422344pt;}
.h3_c00239{height:62.812500pt;}
.hc_c00239{height:89.180000pt;}
.h0_c00239{height:793.840000pt;}
.h1_c00239{height:794.000000pt;}
.w3_c00239{width:23.953333pt;}
.w5_c00239{width:63.876000pt;}
.wb_c00239{width:67.422667pt;}
.w8_c00239{width:75.409333pt;}
.w6_c00239{width:79.845333pt;}
.wa_c00239{width:82.505333pt;}
.w7_c00239{width:84.281333pt;}
.wc_c00239{width:85.168000pt;}
.w9_c00239{width:87.829333pt;}
.w4_c00239{width:126.864000pt;}
.w2_c00239{width:931.521333pt;}
.w0_c00239{width:1122.560000pt;}
.w1_c00239{width:1122.666667pt;}
.x0_c00239{left:0.000000pt;}
.x1d_c00239{left:1.788928pt;}
.x13_c00239{left:3.549333pt;}
.x5_c00239{left:5.323467pt;}
.x21_c00239{left:6.224328pt;}
.x14_c00239{left:7.978069pt;}
.xa_c00239{left:8.872133pt;}
.x10_c00239{left:11.533667pt;}
.x23_c00239{left:12.427597pt;}
.x1a_c00239{left:14.194800pt;}
.x17_c00239{left:15.969333pt;}
.x12_c00239{left:17.744000pt;}
.x20_c00239{left:20.404800pt;}
.x1c_c00239{left:25.735331pt;}
.x1b_c00239{left:28.389733pt;}
.xe_c00239{left:32.824800pt;}
.x2_c00239{left:94.560000pt;}
.xd_c00239{left:120.288000pt;}
.xf_c00239{left:248.038667pt;}
.x11_c00239{left:312.801333pt;}
.x15_c00239{left:393.533333pt;}
.x22_c00239{left:478.701333pt;}
.x1_c00239{left:561.280000pt;}
.x16_c00239{left:564.756000pt;}
.x18_c00239{left:641.052000pt;}
.x19_c00239{left:721.784000pt;}
.x6_c00239{left:802.883067pt;}
.x8_c00239{left:808.206000pt;}
.xc_c00239{left:809.980400pt;}
.x9_c00239{left:815.303467pt;}
.x1e_c00239{left:893.894667pt;}
.xb_c00239{left:916.440133pt;}
.x7_c00239{left:922.649867pt;}
.x1f_c00239{left:962.205333pt;}
.x4_c00239{left:968.480000pt;}
.x3_c00239{left:1027.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_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_22a5bbc3be9dbec63ef5caaf.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_9174197674d8683648a12ed1.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_c932ba1cf4263a60d4766913.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_0add47b736c63e786fbad3c0.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.v1_c00240{vertical-align:-61.920000px;}
.v2_c00240{vertical-align:-4.007458px;}
.v0_c00240{vertical-align:0.000000px;}
.v3_c00240{vertical-align:4.007458px;}
.ls4_c00240{letter-spacing:-2.392512px;}
.lsb_c00240{letter-spacing:-1.969829px;}
.ls7_c00240{letter-spacing:-1.614946px;}
.ls8_c00240{letter-spacing:-1.315882px;}
.ls6_c00240{letter-spacing:-0.446603px;}
.ls5_c00240{letter-spacing:-0.179438px;}
.ls2_c00240{letter-spacing:-0.108000px;}
.ls3_c00240{letter-spacing:0.000000px;}
.ls9_c00240{letter-spacing:1.256069px;}
.lsa_c00240{letter-spacing:1.794384px;}
.lsc_c00240{letter-spacing:2.021666px;}
.ls1_c00240{letter-spacing:49.405373px;}
.ls0_c00240{letter-spacing:725.580000px;}
.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;}
}
.ws33_c00240{word-spacing:-3.006581px;}
.ws30_c00240{word-spacing:-0.239251px;}
.ws2c_c00240{word-spacing:0.000000px;}
.ws31_c00240{word-spacing:0.059813px;}
.ws2e_c00240{word-spacing:0.162000px;}
.ws2d_c00240{word-spacing:0.270000px;}
.ws32_c00240{word-spacing:0.984914px;}
.ws2f_c00240{word-spacing:2.392512px;}
.ws25_c00240{word-spacing:12.740126px;}
.ws0_c00240{word-spacing:28.710144px;}
.wsc_c00240{word-spacing:56.184190px;}
.ws12_c00240{word-spacing:68.025097px;}
.ws10_c00240{word-spacing:68.037060px;}
.ws3_c00240{word-spacing:68.043041px;}
.wsb_c00240{word-spacing:68.066966px;}
.ws2_c00240{word-spacing:68.072948px;}
.ws9_c00240{word-spacing:79.963965px;}
.ws7_c00240{word-spacing:80.023778px;}
.ws4_c00240{word-spacing:80.030358px;}
.wse_c00240{word-spacing:80.043995px;}
.ws19_c00240{word-spacing:111.863566px;}
.ws15_c00240{word-spacing:111.864165px;}
.ws23_c00240{word-spacing:111.864764px;}
.ws13_c00240{word-spacing:111.869547px;}
.ws1c_c00240{word-spacing:111.870745px;}
.ws17_c00240{word-spacing:111.923978px;}
.ws20_c00240{word-spacing:111.929959px;}
.ws21_c00240{word-spacing:111.930558px;}
.ws29_c00240{word-spacing:143.823578px;}
.ws27_c00240{word-spacing:143.890211px;}
.ws1f_c00240{word-spacing:180.132228px;}
.wsf_c00240{word-spacing:219.982131px;}
.ws5_c00240{word-spacing:219.982731px;}
.ws2b_c00240{word-spacing:219.983330px;}
.wsd_c00240{word-spacing:223.076900px;}
.ws8_c00240{word-spacing:337.481761px;}
.ws1d_c00240{word-spacing:349.444321px;}
.ws26_c00240{word-spacing:355.700740px;}
.ws1e_c00240{word-spacing:368.195634px;}
.ws18_c00240{word-spacing:368.291335px;}
.ws1a_c00240{word-spacing:381.360432px;}
.ws6_c00240{word-spacing:384.201540px;}
.ws22_c00240{word-spacing:393.305048px;}
.ws11_c00240{word-spacing:400.955105px;}
.ws1b_c00240{word-spacing:408.090772px;}
.ws2a_c00240{word-spacing:409.298990px;}
.ws1_c00240{word-spacing:417.230168px;}
.ws24_c00240{word-spacing:424.054808px;}
.ws16_c00240{word-spacing:443.410230px;}
.ws28_c00240{word-spacing:449.134315px;}
.ws14_c00240{word-spacing:458.602681px;}
.wsa_c00240{word-spacing:503.223030px;}
._1d_c00240{margin-left:-7.213936px;}
._1b_c00240{margin-left:-5.805811px;}
._1c_c00240{margin-left:-4.043333px;}
._2_c00240{margin-left:-2.428973px;}
._1_c00240{margin-left:-1.058400px;}
._0_c00240{width:1.225800px;}
._3_c00240{width:2.637744px;}
._5_c00240{width:4.025401px;}
._1a_c00240{width:6.008596px;}
._15_c00240{width:78.912839px;}
._16_c00240{width:113.265142px;}
._19_c00240{width:155.548574px;}
._f_c00240{width:158.797003px;}
._18_c00240{width:159.820661px;}
._12_c00240{width:163.738265px;}
._4_c00240{width:171.339747px;}
._10_c00240{width:187.765775px;}
._e_c00240{width:189.596425px;}
._9_c00240{width:191.850643px;}
._13_c00240{width:198.855809px;}
._14_c00240{width:200.083469px;}
._6_c00240{width:203.417352px;}
._a_c00240{width:215.834489px;}
._c_c00240{width:219.278619px;}
._11_c00240{width:230.811614px;}
._7_c00240{width:243.743141px;}
._b_c00240{width:259.496746px;}
._d_c00240{width:276.791163px;}
._8_c00240{width:286.610975px;}
._17_c00240{width:287.724580px;}
.fc0_c00240{color:rgb(0,0,0);}
.fs4_c00240{font-size:51.837600px;}
.fs0_c00240{font-size:54.000000px;}
.fs2_c00240{font-size:59.812800px;}
.fs3_c00240{font-size:63.800400px;}
.fs1_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y10_c00240{bottom:4.983600px;}
.y8_c00240{bottom:4.983750px;}
.y27_c00240{bottom:4.983900px;}
.ye_c00240{bottom:4.984050px;}
.y14_c00240{bottom:4.984200px;}
.y1e_c00240{bottom:4.984350px;}
.yc_c00240{bottom:4.984500px;}
.y12_c00240{bottom:4.984650px;}
.ya_c00240{bottom:4.984800px;}
.y17_c00240{bottom:4.984950px;}
.y1b_c00240{bottom:4.985100px;}
.y25_c00240{bottom:4.985250px;}
.y20_c00240{bottom:4.985400px;}
.y29_c00240{bottom:5.981850px;}
.y2c_c00240{bottom:57.330000px;}
.y6_c00240{bottom:247.680000px;}
.y5_c00240{bottom:274.590000px;}
.y2b_c00240{bottom:276.585000px;}
.y2a_c00240{bottom:296.521500px;}
.y28_c00240{bottom:316.459500px;}
.y26_c00240{bottom:337.395000px;}
.y24_c00240{bottom:359.325000px;}
.y23_c00240{bottom:380.260500px;}
.y22_c00240{bottom:401.194500px;}
.y21_c00240{bottom:422.128500px;}
.y1f_c00240{bottom:443.062500px;}
.y1d_c00240{bottom:463.998000px;}
.y1c_c00240{bottom:484.932000px;}
.y1a_c00240{bottom:505.866000px;}
.y19_c00240{bottom:526.801500px;}
.y18_c00240{bottom:547.735500px;}
.y16_c00240{bottom:568.669500px;}
.y15_c00240{bottom:589.605000px;}
.y13_c00240{bottom:610.539000px;}
.y11_c00240{bottom:631.473000px;}
.yf_c00240{bottom:652.408500px;}
.yd_c00240{bottom:673.342500px;}
.yb_c00240{bottom:694.276500px;}
.y9_c00240{bottom:715.210500px;}
.y7_c00240{bottom:736.146000px;}
.y4_c00240{bottom:761.220000px;}
.y3_c00240{bottom:781.110000px;}
.y2_c00240{bottom:796.594500px;}
.y1_c00240{bottom:827.640000px;}
.h9_c00240{height:18.940500px;}
.h4_c00240{height:19.936500px;}
.h6_c00240{height:19.938000px;}
.h7_c00240{height:20.934000px;}
.h5_c00240{height:49.328037px;}
.ha_c00240{height:50.875770px;}
.h8_c00240{height:52.242581px;}
.h2_c00240{height:52.998047px;}
.h3_c00240{height:70.664062px;}
.h0_c00240{height:893.070000px;}
.h1_c00240{height:893.250000px;}
.w3_c00240{width:1019.193000px;}
.w2_c00240{width:1048.141500px;}
.w0_c00240{width:1262.880000px;}
.w1_c00240{width:1263.000000px;}
.x0_c00240{left:0.000000px;}
.x6_c00240{left:2.995350px;}
.x4_c00240{left:5.990100px;}
.x5_c00240{left:9.982950px;}
.x2_c00240{left:106.380000px;}
.x7_c00240{left:135.328500px;}
.x1_c00240{left:631.440000px;}
.x8_c00240{left:1129.590000px;}
.x3_c00240{left:1156.590000px;}
@media print{
.v1_c00240{vertical-align:-55.040000pt;}
.v2_c00240{vertical-align:-3.562185pt;}
.v0_c00240{vertical-align:0.000000pt;}
.v3_c00240{vertical-align:3.562185pt;}
.ls4_c00240{letter-spacing:-2.126677pt;}
.lsb_c00240{letter-spacing:-1.750959pt;}
.ls7_c00240{letter-spacing:-1.435507pt;}
.ls8_c00240{letter-spacing:-1.169673pt;}
.ls6_c00240{letter-spacing:-0.396980pt;}
.ls5_c00240{letter-spacing:-0.159501pt;}
.ls2_c00240{letter-spacing:-0.096000pt;}
.ls3_c00240{letter-spacing:0.000000pt;}
.ls9_c00240{letter-spacing:1.116506pt;}
.lsa_c00240{letter-spacing:1.595008pt;}
.lsc_c00240{letter-spacing:1.797037pt;}
.ls1_c00240{letter-spacing:43.915887pt;}
.ls0_c00240{letter-spacing:644.960000pt;}
.ws33_c00240{word-spacing:-2.672516pt;}
.ws30_c00240{word-spacing:-0.212668pt;}
.ws2c_c00240{word-spacing:0.000000pt;}
.ws31_c00240{word-spacing:0.053167pt;}
.ws2e_c00240{word-spacing:0.144000pt;}
.ws2d_c00240{word-spacing:0.240000pt;}
.ws32_c00240{word-spacing:0.875479pt;}
.ws2f_c00240{word-spacing:2.126677pt;}
.ws25_c00240{word-spacing:11.324557pt;}
.ws0_c00240{word-spacing:25.520128pt;}
.wsc_c00240{word-spacing:49.941502pt;}
.ws12_c00240{word-spacing:60.466753pt;}
.ws10_c00240{word-spacing:60.477387pt;}
.ws3_c00240{word-spacing:60.482703pt;}
.wsb_c00240{word-spacing:60.503970pt;}
.ws2_c00240{word-spacing:60.509287pt;}
.ws9_c00240{word-spacing:71.079080pt;}
.ws7_c00240{word-spacing:71.132247pt;}
.ws4_c00240{word-spacing:71.138096pt;}
.wse_c00240{word-spacing:71.150218pt;}
.ws19_c00240{word-spacing:99.434281pt;}
.ws15_c00240{word-spacing:99.434813pt;}
.ws23_c00240{word-spacing:99.435346pt;}
.ws13_c00240{word-spacing:99.439597pt;}
.ws1c_c00240{word-spacing:99.440663pt;}
.ws17_c00240{word-spacing:99.487980pt;}
.ws20_c00240{word-spacing:99.493297pt;}
.ws21_c00240{word-spacing:99.493829pt;}
.ws29_c00240{word-spacing:127.843181pt;}
.ws27_c00240{word-spacing:127.902410pt;}
.ws1f_c00240{word-spacing:160.117536pt;}
.wsf_c00240{word-spacing:195.539672pt;}
.ws5_c00240{word-spacing:195.540205pt;}
.ws2b_c00240{word-spacing:195.540738pt;}
.wsd_c00240{word-spacing:198.290578pt;}
.ws8_c00240{word-spacing:299.983788pt;}
.ws1d_c00240{word-spacing:310.617175pt;}
.ws26_c00240{word-spacing:316.178436pt;}
.ws1e_c00240{word-spacing:327.285008pt;}
.ws18_c00240{word-spacing:327.370075pt;}
.ws1a_c00240{word-spacing:338.987050pt;}
.ws6_c00240{word-spacing:341.512480pt;}
.ws22_c00240{word-spacing:349.604487pt;}
.ws11_c00240{word-spacing:356.404538pt;}
.ws1b_c00240{word-spacing:362.747353pt;}
.ws2a_c00240{word-spacing:363.821325pt;}
.ws1_c00240{word-spacing:370.871260pt;}
.ws24_c00240{word-spacing:376.937607pt;}
.ws16_c00240{word-spacing:394.142427pt;}
.ws28_c00240{word-spacing:399.230502pt;}
.ws14_c00240{word-spacing:407.646828pt;}
.wsa_c00240{word-spacing:447.309360pt;}
._1d_c00240{margin-left:-6.412387pt;}
._1b_c00240{margin-left:-5.160721pt;}
._1c_c00240{margin-left:-3.594074pt;}
._2_c00240{margin-left:-2.159087pt;}
._1_c00240{margin-left:-0.940800pt;}
._0_c00240{width:1.089600pt;}
._3_c00240{width:2.344662pt;}
._5_c00240{width:3.578135pt;}
._1a_c00240{width:5.340974pt;}
._15_c00240{width:70.144746pt;}
._16_c00240{width:100.680126pt;}
._19_c00240{width:138.265399pt;}
._f_c00240{width:141.152891pt;}
._18_c00240{width:142.062810pt;}
._12_c00240{width:145.545124pt;}
._4_c00240{width:152.301997pt;}
._10_c00240{width:166.902911pt;}
._e_c00240{width:168.530156pt;}
._9_c00240{width:170.533905pt;}
._13_c00240{width:176.760719pt;}
._14_c00240{width:177.851973pt;}
._6_c00240{width:180.815424pt;}
._a_c00240{width:191.852879pt;}
._c_c00240{width:194.914328pt;}
._11_c00240{width:205.165879pt;}
._7_c00240{width:216.660570pt;}
._b_c00240{width:230.663774pt;}
._d_c00240{width:246.036589pt;}
._8_c00240{width:254.765311pt;}
._17_c00240{width:255.755183pt;}
.fs4_c00240{font-size:46.077867pt;}
.fs0_c00240{font-size:48.000000pt;}
.fs2_c00240{font-size:53.166933pt;}
.fs3_c00240{font-size:56.711467pt;}
.fs1_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y10_c00240{bottom:4.429867pt;}
.y8_c00240{bottom:4.430000pt;}
.y27_c00240{bottom:4.430133pt;}
.ye_c00240{bottom:4.430267pt;}
.y14_c00240{bottom:4.430400pt;}
.y1e_c00240{bottom:4.430533pt;}
.yc_c00240{bottom:4.430667pt;}
.y12_c00240{bottom:4.430800pt;}
.ya_c00240{bottom:4.430933pt;}
.y17_c00240{bottom:4.431067pt;}
.y1b_c00240{bottom:4.431200pt;}
.y25_c00240{bottom:4.431333pt;}
.y20_c00240{bottom:4.431467pt;}
.y29_c00240{bottom:5.317200pt;}
.y2c_c00240{bottom:50.960000pt;}
.y6_c00240{bottom:220.160000pt;}
.y5_c00240{bottom:244.080000pt;}
.y2b_c00240{bottom:245.853333pt;}
.y2a_c00240{bottom:263.574667pt;}
.y28_c00240{bottom:281.297333pt;}
.y26_c00240{bottom:299.906667pt;}
.y24_c00240{bottom:319.400000pt;}
.y23_c00240{bottom:338.009333pt;}
.y22_c00240{bottom:356.617333pt;}
.y21_c00240{bottom:375.225333pt;}
.y1f_c00240{bottom:393.833333pt;}
.y1d_c00240{bottom:412.442667pt;}
.y1c_c00240{bottom:431.050667pt;}
.y1a_c00240{bottom:449.658667pt;}
.y19_c00240{bottom:468.268000pt;}
.y18_c00240{bottom:486.876000pt;}
.y16_c00240{bottom:505.484000pt;}
.y15_c00240{bottom:524.093333pt;}
.y13_c00240{bottom:542.701333pt;}
.y11_c00240{bottom:561.309333pt;}
.yf_c00240{bottom:579.918667pt;}
.yd_c00240{bottom:598.526667pt;}
.yb_c00240{bottom:617.134667pt;}
.y9_c00240{bottom:635.742667pt;}
.y7_c00240{bottom:654.352000pt;}
.y4_c00240{bottom:676.640000pt;}
.y3_c00240{bottom:694.320000pt;}
.y2_c00240{bottom:708.084000pt;}
.y1_c00240{bottom:735.680000pt;}
.h9_c00240{height:16.836000pt;}
.h4_c00240{height:17.721333pt;}
.h6_c00240{height:17.722667pt;}
.h7_c00240{height:18.608000pt;}
.h5_c00240{height:43.847144pt;}
.ha_c00240{height:45.222906pt;}
.h8_c00240{height:46.437850pt;}
.h2_c00240{height:47.109375pt;}
.h3_c00240{height:62.812500pt;}
.h0_c00240{height:793.840000pt;}
.h1_c00240{height:794.000000pt;}
.w3_c00240{width:905.949333pt;}
.w2_c00240{width:931.681333pt;}
.w0_c00240{width:1122.560000pt;}
.w1_c00240{width:1122.666667pt;}
.x0_c00240{left:0.000000pt;}
.x6_c00240{left:2.662533pt;}
.x4_c00240{left:5.324533pt;}
.x5_c00240{left:8.873733pt;}
.x2_c00240{left:94.560000pt;}
.x7_c00240{left:120.292000pt;}
.x1_c00240{left:561.280000pt;}
.x8_c00240{left:1004.080000pt;}
.x3_c00240{left:1028.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_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_49c2dd8bef0ac40d50348030.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00241{vertical-align:-61.938000px;}
.v3_c00241{vertical-align:-20.880000px;}
.v0_c00241{vertical-align:0.000000px;}
.v2_c00241{vertical-align:27.000000px;}
.lsb_c00241{letter-spacing:-0.288000px;}
.lsa_c00241{letter-spacing:-0.216000px;}
.lsc_c00241{letter-spacing:-0.120240px;}
.ls9_c00241{letter-spacing:-0.072000px;}
.ls8_c00241{letter-spacing:0.000000px;}
.ls6_c00241{letter-spacing:0.072000px;}
.ls7_c00241{letter-spacing:0.120240px;}
.ls4_c00241{letter-spacing:0.144000px;}
.lsd_c00241{letter-spacing:0.180360px;}
.ls5_c00241{letter-spacing:0.191520px;}
.ls1_c00241{letter-spacing:4.680000px;}
.ls2_c00241{letter-spacing:5.040000px;}
.ls3_c00241{letter-spacing:9.360000px;}
.ls0_c00241{letter-spacing:319.518000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00241{word-spacing:-18.144000px;}
.ws2_c00241{word-spacing:-18.000000px;}
.ws0_c00241{word-spacing:-17.928000px;}
.ws3_c00241{word-spacing:-17.712000px;}
.ws6_c00241{word-spacing:-15.030000px;}
.ws4_c00241{word-spacing:-12.161520px;}
.ws5_c00241{word-spacing:-9.720000px;}
.ws32_c00241{word-spacing:-0.420840px;}
.ws1e_c00241{word-spacing:-0.360000px;}
.ws8_c00241{word-spacing:-0.162000px;}
.ws31_c00241{word-spacing:-0.120240px;}
.ws30_c00241{word-spacing:-0.072000px;}
.ws7_c00241{word-spacing:0.000000px;}
.ws16_c00241{word-spacing:0.072000px;}
.wse_c00241{word-spacing:0.288000px;}
.wsa_c00241{word-spacing:1.008000px;}
.ws9_c00241{word-spacing:1.080000px;}
.ws1b_c00241{word-spacing:2.520000px;}
.ws28_c00241{word-spacing:3.960000px;}
.ws2c_c00241{word-spacing:4.320000px;}
.wsc_c00241{word-spacing:4.608000px;}
.wsb_c00241{word-spacing:4.680000px;}
.wsd_c00241{word-spacing:4.896000px;}
.ws21_c00241{word-spacing:5.040000px;}
.ws20_c00241{word-spacing:5.328000px;}
.ws1f_c00241{word-spacing:5.400000px;}
.ws27_c00241{word-spacing:6.408000px;}
.wsf_c00241{word-spacing:6.480000px;}
.ws2d_c00241{word-spacing:7.200000px;}
.ws2a_c00241{word-spacing:7.560000px;}
.ws14_c00241{word-spacing:7.920000px;}
.ws23_c00241{word-spacing:9.000000px;}
.ws17_c00241{word-spacing:9.288000px;}
.ws10_c00241{word-spacing:9.360000px;}
.ws15_c00241{word-spacing:9.720000px;}
.ws18_c00241{word-spacing:10.440000px;}
.ws1a_c00241{word-spacing:10.800000px;}
.ws19_c00241{word-spacing:10.872000px;}
.ws2f_c00241{word-spacing:14.976000px;}
.ws2e_c00241{word-spacing:15.120000px;}
.ws22_c00241{word-spacing:15.840000px;}
.ws1c_c00241{word-spacing:16.128000px;}
.ws1d_c00241{word-spacing:17.568000px;}
.ws26_c00241{word-spacing:17.640000px;}
.ws13_c00241{word-spacing:17.856000px;}
.ws12_c00241{word-spacing:17.928000px;}
.ws11_c00241{word-spacing:18.000000px;}
.ws29_c00241{word-spacing:23.040000px;}
.ws25_c00241{word-spacing:30.168000px;}
.ws24_c00241{word-spacing:30.240000px;}
.ws2b_c00241{word-spacing:30.600000px;}
._0_c00241{margin-left:-1.519200px;}
._1_c00241{width:1.152000px;}
._4_c00241{width:4.104000px;}
._2_c00241{width:5.904000px;}
._3_c00241{width:10.512000px;}
.fc0_c00241{color:rgb(0,0,0);}
.fs3_c00241{font-size:38.880000px;}
.fs2_c00241{font-size:47.880000px;}
.fs0_c00241{font-size:54.000000px;}
.fs4_c00241{font-size:60.120000px;}
.fs1_c00241{font-size:72.000000px;}
.y0_c00241{bottom:0.000000px;}
.y25_c00241{bottom:57.240000px;}
.y24_c00241{bottom:115.020000px;}
.y26_c00241{bottom:127.710000px;}
.y23_c00241{bottom:178.920000px;}
.y22_c00241{bottom:209.970000px;}
.y21_c00241{bottom:241.020000px;}
.y20_c00241{bottom:272.070000px;}
.y1f_c00241{bottom:303.120000px;}
.y1e_c00241{bottom:334.170000px;}
.y1d_c00241{bottom:365.220000px;}
.y1c_c00241{bottom:396.270000px;}
.y1b_c00241{bottom:427.320000px;}
.y1a_c00241{bottom:458.370000px;}
.y19_c00241{bottom:489.420000px;}
.y18_c00241{bottom:520.470000px;}
.y17_c00241{bottom:551.520000px;}
.y16_c00241{bottom:582.570000px;}
.y15_c00241{bottom:613.620000px;}
.y14_c00241{bottom:644.670000px;}
.y13_c00241{bottom:675.720000px;}
.y12_c00241{bottom:706.770000px;}
.y11_c00241{bottom:737.820000px;}
.y10_c00241{bottom:768.870000px;}
.yf_c00241{bottom:799.920000px;}
.ye_c00241{bottom:830.970000px;}
.yd_c00241{bottom:861.930000px;}
.yc_c00241{bottom:892.980000px;}
.yb_c00241{bottom:924.030000px;}
.ya_c00241{bottom:955.080000px;}
.y9_c00241{bottom:986.130000px;}
.y8_c00241{bottom:1017.180000px;}
.y7_c00241{bottom:1048.230000px;}
.y6_c00241{bottom:1079.280000px;}
.y5_c00241{bottom:1110.330000px;}
.y4_c00241{bottom:1131.030000px;}
.y3_c00241{bottom:1150.915500px;}
.y2_c00241{bottom:1166.400000px;}
.y1_c00241{bottom:1197.450000px;}
.h5_c00241{height:38.158594px;}
.h2_c00241{height:52.998047px;}
.h3_c00241{height:70.664062px;}
.h4_c00241{height:73.991602px;}
.h0_c00241{height:1262.880000px;}
.h1_c00241{height:1263.000000px;}
.w0_c00241{width:893.070000px;}
.w1_c00241{width:893.250000px;}
.x0_c00241{left:0.000000px;}
.x2_c00241{left:127.620000px;}
.x1_c00241{left:446.580000px;}
@media print{
.v1_c00241{vertical-align:-55.056000pt;}
.v3_c00241{vertical-align:-18.560000pt;}
.v0_c00241{vertical-align:0.000000pt;}
.v2_c00241{vertical-align:24.000000pt;}
.lsb_c00241{letter-spacing:-0.256000pt;}
.lsa_c00241{letter-spacing:-0.192000pt;}
.lsc_c00241{letter-spacing:-0.106880pt;}
.ls9_c00241{letter-spacing:-0.064000pt;}
.ls8_c00241{letter-spacing:0.000000pt;}
.ls6_c00241{letter-spacing:0.064000pt;}
.ls7_c00241{letter-spacing:0.106880pt;}
.ls4_c00241{letter-spacing:0.128000pt;}
.lsd_c00241{letter-spacing:0.160320pt;}
.ls5_c00241{letter-spacing:0.170240pt;}
.ls1_c00241{letter-spacing:4.160000pt;}
.ls2_c00241{letter-spacing:4.480000pt;}
.ls3_c00241{letter-spacing:8.320000pt;}
.ls0_c00241{letter-spacing:284.016000pt;}
.ws1_c00241{word-spacing:-16.128000pt;}
.ws2_c00241{word-spacing:-16.000000pt;}
.ws0_c00241{word-spacing:-15.936000pt;}
.ws3_c00241{word-spacing:-15.744000pt;}
.ws6_c00241{word-spacing:-13.360000pt;}
.ws4_c00241{word-spacing:-10.810240pt;}
.ws5_c00241{word-spacing:-8.640000pt;}
.ws32_c00241{word-spacing:-0.374080pt;}
.ws1e_c00241{word-spacing:-0.320000pt;}
.ws8_c00241{word-spacing:-0.144000pt;}
.ws31_c00241{word-spacing:-0.106880pt;}
.ws30_c00241{word-spacing:-0.064000pt;}
.ws7_c00241{word-spacing:0.000000pt;}
.ws16_c00241{word-spacing:0.064000pt;}
.wse_c00241{word-spacing:0.256000pt;}
.wsa_c00241{word-spacing:0.896000pt;}
.ws9_c00241{word-spacing:0.960000pt;}
.ws1b_c00241{word-spacing:2.240000pt;}
.ws28_c00241{word-spacing:3.520000pt;}
.ws2c_c00241{word-spacing:3.840000pt;}
.wsc_c00241{word-spacing:4.096000pt;}
.wsb_c00241{word-spacing:4.160000pt;}
.wsd_c00241{word-spacing:4.352000pt;}
.ws21_c00241{word-spacing:4.480000pt;}
.ws20_c00241{word-spacing:4.736000pt;}
.ws1f_c00241{word-spacing:4.800000pt;}
.ws27_c00241{word-spacing:5.696000pt;}
.wsf_c00241{word-spacing:5.760000pt;}
.ws2d_c00241{word-spacing:6.400000pt;}
.ws2a_c00241{word-spacing:6.720000pt;}
.ws14_c00241{word-spacing:7.040000pt;}
.ws23_c00241{word-spacing:8.000000pt;}
.ws17_c00241{word-spacing:8.256000pt;}
.ws10_c00241{word-spacing:8.320000pt;}
.ws15_c00241{word-spacing:8.640000pt;}
.ws18_c00241{word-spacing:9.280000pt;}
.ws1a_c00241{word-spacing:9.600000pt;}
.ws19_c00241{word-spacing:9.664000pt;}
.ws2f_c00241{word-spacing:13.312000pt;}
.ws2e_c00241{word-spacing:13.440000pt;}
.ws22_c00241{word-spacing:14.080000pt;}
.ws1c_c00241{word-spacing:14.336000pt;}
.ws1d_c00241{word-spacing:15.616000pt;}
.ws26_c00241{word-spacing:15.680000pt;}
.ws13_c00241{word-spacing:15.872000pt;}
.ws12_c00241{word-spacing:15.936000pt;}
.ws11_c00241{word-spacing:16.000000pt;}
.ws29_c00241{word-spacing:20.480000pt;}
.ws25_c00241{word-spacing:26.816000pt;}
.ws24_c00241{word-spacing:26.880000pt;}
.ws2b_c00241{word-spacing:27.200000pt;}
._0_c00241{margin-left:-1.350400pt;}
._1_c00241{width:1.024000pt;}
._4_c00241{width:3.648000pt;}
._2_c00241{width:5.248000pt;}
._3_c00241{width:9.344000pt;}
.fs3_c00241{font-size:34.560000pt;}
.fs2_c00241{font-size:42.560000pt;}
.fs0_c00241{font-size:48.000000pt;}
.fs4_c00241{font-size:53.440000pt;}
.fs1_c00241{font-size:64.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y25_c00241{bottom:50.880000pt;}
.y24_c00241{bottom:102.240000pt;}
.y26_c00241{bottom:113.520000pt;}
.y23_c00241{bottom:159.040000pt;}
.y22_c00241{bottom:186.640000pt;}
.y21_c00241{bottom:214.240000pt;}
.y20_c00241{bottom:241.840000pt;}
.y1f_c00241{bottom:269.440000pt;}
.y1e_c00241{bottom:297.040000pt;}
.y1d_c00241{bottom:324.640000pt;}
.y1c_c00241{bottom:352.240000pt;}
.y1b_c00241{bottom:379.840000pt;}
.y1a_c00241{bottom:407.440000pt;}
.y19_c00241{bottom:435.040000pt;}
.y18_c00241{bottom:462.640000pt;}
.y17_c00241{bottom:490.240000pt;}
.y16_c00241{bottom:517.840000pt;}
.y15_c00241{bottom:545.440000pt;}
.y14_c00241{bottom:573.040000pt;}
.y13_c00241{bottom:600.640000pt;}
.y12_c00241{bottom:628.240000pt;}
.y11_c00241{bottom:655.840000pt;}
.y10_c00241{bottom:683.440000pt;}
.yf_c00241{bottom:711.040000pt;}
.ye_c00241{bottom:738.640000pt;}
.yd_c00241{bottom:766.160000pt;}
.yc_c00241{bottom:793.760000pt;}
.yb_c00241{bottom:821.360000pt;}
.ya_c00241{bottom:848.960000pt;}
.y9_c00241{bottom:876.560000pt;}
.y8_c00241{bottom:904.160000pt;}
.y7_c00241{bottom:931.760000pt;}
.y6_c00241{bottom:959.360000pt;}
.y5_c00241{bottom:986.960000pt;}
.y4_c00241{bottom:1005.360000pt;}
.y3_c00241{bottom:1023.036000pt;}
.y2_c00241{bottom:1036.800000pt;}
.y1_c00241{bottom:1064.400000pt;}
.h5_c00241{height:33.918750pt;}
.h2_c00241{height:47.109375pt;}
.h3_c00241{height:62.812500pt;}
.h4_c00241{height:65.770313pt;}
.h0_c00241{height:1122.560000pt;}
.h1_c00241{height:1122.666667pt;}
.w0_c00241{width:793.840000pt;}
.w1_c00241{width:794.000000pt;}
.x0_c00241{left:0.000000pt;}
.x2_c00241{left:113.440000pt;}
.x1_c00241{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35554a15e65dae741e4bc736.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_ad3884ded2607945404afdf7.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_26b1870f2f9deb64a331b64b.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_b0f3b6a77243b869034f5270.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.v2_c00242{vertical-align:-83.520000px;}
.v1_c00242{vertical-align:-61.920000px;}
.v4_c00242{vertical-align:-3.854899px;}
.v0_c00242{vertical-align:0.000000px;}
.v3_c00242{vertical-align:3.854899px;}
.ls9_c00242{letter-spacing:-2.301432px;}
.lsc_c00242{letter-spacing:-1.894840px;}
.lsd_c00242{letter-spacing:-1.553467px;}
.ls11_c00242{letter-spacing:-1.472918px;}
.lsa_c00242{letter-spacing:-0.747965px;}
.lsb_c00242{letter-spacing:-0.429601px;}
.ls10_c00242{letter-spacing:-0.184115px;}
.ls6_c00242{letter-spacing:-0.144000px;}
.ls3_c00242{letter-spacing:-0.108000px;}
.ls5_c00242{letter-spacing:-0.072000px;}
.ls4_c00242{letter-spacing:0.000000px;}
.ls8_c00242{letter-spacing:0.072000px;}
.ls7_c00242{letter-spacing:0.144000px;}
.lse_c00242{letter-spacing:0.245486px;}
.ls2_c00242{letter-spacing:0.368230px;}
.lsf_c00242{letter-spacing:1.166060px;}
.ls14_c00242{letter-spacing:1.534290px;}
.ls13_c00242{letter-spacing:1.595662px;}
.ls12_c00242{letter-spacing:1.779776px;}
.ls0_c00242{letter-spacing:725.580000px;}
.ls1_c00242{letter-spacing:2082.240000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00242{word-spacing:-18.144000px;}
.ws0_c00242{word-spacing:-17.856000px;}
.wsd_c00242{word-spacing:-15.649758px;}
.wsf_c00242{word-spacing:-15.465643px;}
.wse_c00242{word-spacing:-14.115468px;}
.wsa_c00242{word-spacing:-13.440380px;}
.wsc_c00242{word-spacing:-12.397063px;}
.ws9_c00242{word-spacing:-12.255125px;}
.wsb_c00242{word-spacing:-11.449624px;}
.ws4_c00242{word-spacing:-10.701659px;}
.ws1c_c00242{word-spacing:-1.595662px;}
.ws1e_c00242{word-spacing:-1.534290px;}
.ws19_c00242{word-spacing:-1.166060px;}
.ws20_c00242{word-spacing:-0.368230px;}
.ws18_c00242{word-spacing:-0.245486px;}
.ws15_c00242{word-spacing:-0.072000px;}
.ws10_c00242{word-spacing:0.000000px;}
.ws13_c00242{word-spacing:0.072000px;}
.ws14_c00242{word-spacing:0.144000px;}
.ws12_c00242{word-spacing:0.162000px;}
.ws1b_c00242{word-spacing:0.184115px;}
.ws11_c00242{word-spacing:0.270000px;}
.ws17_c00242{word-spacing:0.947420px;}
.ws1d_c00242{word-spacing:1.104689px;}
.ws21_c00242{word-spacing:1.472918px;}
.ws1a_c00242{word-spacing:1.657033px;}
.ws1f_c00242{word-spacing:1.902520px;}
.ws16_c00242{word-spacing:2.301432px;}
.ws8_c00242{word-spacing:57.777450px;}
.ws2_c00242{word-spacing:57.783204px;}
.ws5_c00242{word-spacing:57.788958px;}
.ws6_c00242{word-spacing:57.823479px;}
.ws7_c00242{word-spacing:119.156642px;}
.ws3_c00242{word-spacing:119.173903px;}
._18_c00242{margin-left:-2.329629px;}
._1_c00242{margin-left:-1.058400px;}
._0_c00242{width:1.225800px;}
._2_c00242{width:3.147208px;}
._12_c00242{width:4.447517px;}
._19_c00242{width:5.847319px;}
._f_c00242{width:129.570622px;}
._c_c00242{width:130.583252px;}
._15_c00242{width:157.020952px;}
._b_c00242{width:164.736503px;}
._9_c00242{width:168.959630px;}
._8_c00242{width:176.433531px;}
._6_c00242{width:183.964967px;}
._10_c00242{width:190.961320px;}
._3_c00242{width:195.518156px;}
._16_c00242{width:199.321272px;}
._13_c00242{width:203.170417px;}
._17_c00242{width:207.255459px;}
._4_c00242{width:210.425681px;}
._e_c00242{width:222.462171px;}
._a_c00242{width:226.259534px;}
._d_c00242{width:233.779463px;}
._14_c00242{width:236.926671px;}
._7_c00242{width:241.495013px;}
._5_c00242{width:253.059709px;}
._11_c00242{width:260.648681px;}
.fc0_c00242{color:rgb(0,0,0);}
.fs4_c00242{font-size:49.864200px;}
.fs0_c00242{font-size:54.000000px;}
.fs2_c00242{font-size:57.535800px;}
.fs3_c00242{font-size:61.371600px;}
.fs1_c00242{font-size:72.000000px;}
.y0_c00242{bottom:0.000000px;}
.y16_c00242{bottom:5.752800px;}
.y2f_c00242{bottom:11.523268px;}
.y26_c00242{bottom:11.538611px;}
.y1c_c00242{bottom:13.424100px;}
.y1b_c00242{bottom:14.383050px;}
.y32_c00242{bottom:14.383200px;}
.y14_c00242{bottom:14.383350px;}
.y20_c00242{bottom:14.385000px;}
.y19_c00242{bottom:14.385150px;}
.y18_c00242{bottom:14.385300px;}
.y31_c00242{bottom:15.342000px;}
.y1e_c00242{bottom:15.342150px;}
.y12_c00242{bottom:25.906244px;}
.y2c_c00242{bottom:31.645538px;}
.y2e_c00242{bottom:31.653153px;}
.y30_c00242{bottom:31.660880px;}
.y25_c00242{bottom:31.668496px;}
.y29_c00242{bottom:42.201415px;}
.y11_c00242{bottom:45.080049px;}
.y27_c00242{bottom:51.783000px;}
.y2d_c00242{bottom:51.783037px;}
.y2b_c00242{bottom:51.790765px;}
.y24_c00242{bottom:51.798380px;}
.y33_c00242{bottom:57.330000px;}
.y28_c00242{bottom:62.331300px;}
.y10_c00242{bottom:65.217579px;}
.y2a_c00242{bottom:71.920650px;}
.y23_c00242{bottom:71.928265px;}
.yf_c00242{bottom:83.442044px;}
.y22_c00242{bottom:92.058150px;}
.ye_c00242{bottom:103.579574px;}
.yd_c00242{bottom:122.753379px;}
.yc_c00242{bottom:142.890909px;}
.yb_c00242{bottom:162.064715px;}
.ya_c00242{bottom:182.202245px;}
.y9_c00242{bottom:201.376050px;}
.y7_c00242{bottom:355.050000px;}
.y6_c00242{bottom:381.960000px;}
.y8_c00242{bottom:382.930500px;}
.y15_c00242{bottom:383.890500px;}
.y13_c00242{bottom:404.028000px;}
.y1a_c00242{bottom:443.344500px;}
.y17_c00242{bottom:481.699500px;}
.y1f_c00242{bottom:521.016000px;}
.y1d_c00242{bottom:560.334000px;}
.y21_c00242{bottom:600.607500px;}
.y5_c00242{bottom:719.640000px;}
.y4_c00242{bottom:761.220000px;}
.y3_c00242{bottom:781.110000px;}
.y2_c00242{bottom:796.594500px;}
.y1_c00242{bottom:827.640000px;}
.hb_c00242{height:19.177500px;}
.he_c00242{height:37.398000px;}
.h8_c00242{height:38.356500px;}
.hd_c00242{height:38.358000px;}
.hf_c00242{height:39.316500px;}
.h7_c00242{height:42.786633px;}
.ha_c00242{height:45.639134px;}
.h6_c00242{height:46.641531px;}
.h9_c00242{height:47.450179px;}
.hc_c00242{height:50.253764px;}
.h10_c00242{height:50.613590px;}
.h2_c00242{height:52.998047px;}
.h3_c00242{height:70.664062px;}
.h4_c00242{height:72.562500px;}
.h11_c00242{height:114.112500px;}
.h5_c00242{height:331.791000px;}
.h0_c00242{height:893.070000px;}
.h1_c00242{height:893.250000px;}
.w3_c00242{width:25.000500px;}
.w5_c00242{width:73.080000px;}
.w8_c00242{width:75.964500px;}
.wc_c00242{width:79.809000px;}
.w6_c00242{width:80.772000px;}
.wd_c00242{width:86.541000px;}
.w9_c00242{width:89.427000px;}
.wa_c00242{width:95.196000px;}
.wb_c00242{width:97.119000px;}
.we_c00242{width:99.043500px;}
.w4_c00242{width:139.428000px;}
.w7_c00242{width:1021.188000px;}
.w2_c00242{width:1048.114500px;}
.w0_c00242{width:1262.880000px;}
.w1_c00242{width:1263.000000px;}
.x0_c00242{left:0.000000px;}
.x9_c00242{left:1.922100px;}
.xd_c00242{left:3.845400px;}
.x7_c00242{left:5.769450px;}
.x1b_c00242{left:7.699318px;}
.x15_c00242{left:9.608282px;}
.xe_c00242{left:12.500700px;}
.x12_c00242{left:15.385650px;}
.x14_c00242{left:20.193300px;}
.x10_c00242{left:24.039600px;}
.x19_c00242{left:25.947815px;}
.xf_c00242{left:27.885900px;}
.x18_c00242{left:33.655800px;}
.xc_c00242{left:37.501650px;}
.x2_c00242{left:106.380000px;}
.x8_c00242{left:133.305000px;}
.x6_c00242{left:185.602661px;}
.x5_c00242{left:196.160700px;}
.x11_c00242{left:273.693000px;}
.x3_c00242{left:276.210000px;}
.x13_c00242{left:350.619000px;}
.x16_c00242{left:441.007500px;}
.x17_c00242{left:537.163500px;}
.x1_c00242{left:631.440000px;}
.x1a_c00242{left:635.245500px;}
.x1c_c00242{left:716.017500px;}
.x1d_c00242{left:803.520000px;}
.x1e_c00242{left:899.676000px;}
.xa_c00242{left:999.681000px;}
.xb_c00242{left:1073.721000px;}
.x1f_c00242{left:1129.590000px;}
.x4_c00242{left:1156.590000px;}
@media print{
.v2_c00242{vertical-align:-74.240000pt;}
.v1_c00242{vertical-align:-55.040000pt;}
.v4_c00242{vertical-align:-3.426577pt;}
.v0_c00242{vertical-align:0.000000pt;}
.v3_c00242{vertical-align:3.426577pt;}
.ls9_c00242{letter-spacing:-2.045717pt;}
.lsc_c00242{letter-spacing:-1.684302pt;}
.lsd_c00242{letter-spacing:-1.380859pt;}
.ls11_c00242{letter-spacing:-1.309261pt;}
.lsa_c00242{letter-spacing:-0.664858pt;}
.lsb_c00242{letter-spacing:-0.381868pt;}
.ls10_c00242{letter-spacing:-0.163658pt;}
.ls6_c00242{letter-spacing:-0.128000pt;}
.ls3_c00242{letter-spacing:-0.096000pt;}
.ls5_c00242{letter-spacing:-0.064000pt;}
.ls4_c00242{letter-spacing:0.000000pt;}
.ls8_c00242{letter-spacing:0.064000pt;}
.ls7_c00242{letter-spacing:0.128000pt;}
.lse_c00242{letter-spacing:0.218210pt;}
.ls2_c00242{letter-spacing:0.327315pt;}
.lsf_c00242{letter-spacing:1.036498pt;}
.ls14_c00242{letter-spacing:1.363813pt;}
.ls13_c00242{letter-spacing:1.418366pt;}
.ls12_c00242{letter-spacing:1.582023pt;}
.ls0_c00242{letter-spacing:644.960000pt;}
.ls1_c00242{letter-spacing:1850.880000pt;}
.ws1_c00242{word-spacing:-16.128000pt;}
.ws0_c00242{word-spacing:-15.872000pt;}
.wsd_c00242{word-spacing:-13.910896pt;}
.wsf_c00242{word-spacing:-13.747238pt;}
.wse_c00242{word-spacing:-12.547083pt;}
.wsa_c00242{word-spacing:-11.947005pt;}
.wsc_c00242{word-spacing:-11.019612pt;}
.ws9_c00242{word-spacing:-10.893445pt;}
.wsb_c00242{word-spacing:-10.177444pt;}
.ws4_c00242{word-spacing:-9.512586pt;}
.ws1c_c00242{word-spacing:-1.418366pt;}
.ws1e_c00242{word-spacing:-1.363813pt;}
.ws19_c00242{word-spacing:-1.036498pt;}
.ws20_c00242{word-spacing:-0.327315pt;}
.ws18_c00242{word-spacing:-0.218210pt;}
.ws15_c00242{word-spacing:-0.064000pt;}
.ws10_c00242{word-spacing:0.000000pt;}
.ws13_c00242{word-spacing:0.064000pt;}
.ws14_c00242{word-spacing:0.128000pt;}
.ws12_c00242{word-spacing:0.144000pt;}
.ws1b_c00242{word-spacing:0.163658pt;}
.ws11_c00242{word-spacing:0.240000pt;}
.ws17_c00242{word-spacing:0.842151pt;}
.ws1d_c00242{word-spacing:0.981946pt;}
.ws21_c00242{word-spacing:1.309261pt;}
.ws1a_c00242{word-spacing:1.472918pt;}
.ws1f_c00242{word-spacing:1.691129pt;}
.ws16_c00242{word-spacing:2.045717pt;}
.ws8_c00242{word-spacing:51.357734pt;}
.ws2_c00242{word-spacing:51.362848pt;}
.ws5_c00242{word-spacing:51.367962pt;}
.ws6_c00242{word-spacing:51.398648pt;}
.ws7_c00242{word-spacing:105.917015pt;}
.ws3_c00242{word-spacing:105.932358pt;}
._18_c00242{margin-left:-2.070781pt;}
._1_c00242{margin-left:-0.940800pt;}
._0_c00242{width:1.089600pt;}
._2_c00242{width:2.797518pt;}
._12_c00242{width:3.953349pt;}
._19_c00242{width:5.197617pt;}
._f_c00242{width:115.173886pt;}
._c_c00242{width:116.074001pt;}
._15_c00242{width:139.574179pt;}
._b_c00242{width:146.432447pt;}
._9_c00242{width:150.186338pt;}
._8_c00242{width:156.829805pt;}
._6_c00242{width:163.524415pt;}
._10_c00242{width:169.743396pt;}
._3_c00242{width:173.793916pt;}
._16_c00242{width:177.174464pt;}
._13_c00242{width:180.595926pt;}
._17_c00242{width:184.227074pt;}
._4_c00242{width:187.045050pt;}
._e_c00242{width:197.744152pt;}
._a_c00242{width:201.119585pt;}
._d_c00242{width:207.803967pt;}
._14_c00242{width:210.601485pt;}
._7_c00242{width:214.662234pt;}
._5_c00242{width:224.941964pt;}
._11_c00242{width:231.687717pt;}
.fs4_c00242{font-size:44.323733pt;}
.fs0_c00242{font-size:48.000000pt;}
.fs2_c00242{font-size:51.142933pt;}
.fs3_c00242{font-size:54.552533pt;}
.fs1_c00242{font-size:64.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y16_c00242{bottom:5.113600pt;}
.y2f_c00242{bottom:10.242905pt;}
.y26_c00242{bottom:10.256543pt;}
.y1c_c00242{bottom:11.932533pt;}
.y1b_c00242{bottom:12.784933pt;}
.y32_c00242{bottom:12.785067pt;}
.y14_c00242{bottom:12.785200pt;}
.y20_c00242{bottom:12.786667pt;}
.y19_c00242{bottom:12.786800pt;}
.y18_c00242{bottom:12.786933pt;}
.y31_c00242{bottom:13.637333pt;}
.y1e_c00242{bottom:13.637467pt;}
.y12_c00242{bottom:23.027772pt;}
.y2c_c00242{bottom:28.129367pt;}
.y2e_c00242{bottom:28.136136pt;}
.y30_c00242{bottom:28.143005pt;}
.y25_c00242{bottom:28.149774pt;}
.y29_c00242{bottom:37.512369pt;}
.y11_c00242{bottom:40.071155pt;}
.y27_c00242{bottom:46.029333pt;}
.y2d_c00242{bottom:46.029367pt;}
.y2b_c00242{bottom:46.036236pt;}
.y24_c00242{bottom:46.043005pt;}
.y33_c00242{bottom:50.960000pt;}
.y28_c00242{bottom:55.405600pt;}
.y10_c00242{bottom:57.971182pt;}
.y2a_c00242{bottom:63.929467pt;}
.y23_c00242{bottom:63.936236pt;}
.yf_c00242{bottom:74.170706pt;}
.y22_c00242{bottom:81.829467pt;}
.ye_c00242{bottom:92.070732pt;}
.yd_c00242{bottom:109.114115pt;}
.yc_c00242{bottom:127.014142pt;}
.yb_c00242{bottom:144.057524pt;}
.ya_c00242{bottom:161.957551pt;}
.y9_c00242{bottom:179.000933pt;}
.y7_c00242{bottom:315.600000pt;}
.y6_c00242{bottom:339.520000pt;}
.y8_c00242{bottom:340.382667pt;}
.y15_c00242{bottom:341.236000pt;}
.y13_c00242{bottom:359.136000pt;}
.y1a_c00242{bottom:394.084000pt;}
.y17_c00242{bottom:428.177333pt;}
.y1f_c00242{bottom:463.125333pt;}
.y1d_c00242{bottom:498.074667pt;}
.y21_c00242{bottom:533.873333pt;}
.y5_c00242{bottom:639.680000pt;}
.y4_c00242{bottom:676.640000pt;}
.y3_c00242{bottom:694.320000pt;}
.y2_c00242{bottom:708.084000pt;}
.y1_c00242{bottom:735.680000pt;}
.hb_c00242{height:17.046667pt;}
.he_c00242{height:33.242667pt;}
.h8_c00242{height:34.094667pt;}
.hd_c00242{height:34.096000pt;}
.hf_c00242{height:34.948000pt;}
.h7_c00242{height:38.032562pt;}
.ha_c00242{height:40.568119pt;}
.h6_c00242{height:41.459139pt;}
.h9_c00242{height:42.177937pt;}
.hc_c00242{height:44.670012pt;}
.h10_c00242{height:44.989858pt;}
.h2_c00242{height:47.109375pt;}
.h3_c00242{height:62.812500pt;}
.h4_c00242{height:64.500000pt;}
.h11_c00242{height:101.433333pt;}
.h5_c00242{height:294.925333pt;}
.h0_c00242{height:793.840000pt;}
.h1_c00242{height:794.000000pt;}
.w3_c00242{width:22.222667pt;}
.w5_c00242{width:64.960000pt;}
.w8_c00242{width:67.524000pt;}
.wc_c00242{width:70.941333pt;}
.w6_c00242{width:71.797333pt;}
.wd_c00242{width:76.925333pt;}
.w9_c00242{width:79.490667pt;}
.wa_c00242{width:84.618667pt;}
.wb_c00242{width:86.328000pt;}
.we_c00242{width:88.038667pt;}
.w4_c00242{width:123.936000pt;}
.w7_c00242{width:907.722667pt;}
.w2_c00242{width:931.657333pt;}
.w0_c00242{width:1122.560000pt;}
.w1_c00242{width:1122.666667pt;}
.x0_c00242{left:0.000000pt;}
.x9_c00242{left:1.708533pt;}
.xd_c00242{left:3.418133pt;}
.x7_c00242{left:5.128400pt;}
.x1b_c00242{left:6.843838pt;}
.x15_c00242{left:8.540695pt;}
.xe_c00242{left:11.111733pt;}
.x12_c00242{left:13.676133pt;}
.x14_c00242{left:17.949600pt;}
.x10_c00242{left:21.368533pt;}
.x19_c00242{left:23.064724pt;}
.xf_c00242{left:24.787467pt;}
.x18_c00242{left:29.916267pt;}
.xc_c00242{left:33.334800pt;}
.x2_c00242{left:94.560000pt;}
.x8_c00242{left:118.493333pt;}
.x6_c00242{left:164.980143pt;}
.x5_c00242{left:174.365067pt;}
.x11_c00242{left:243.282667pt;}
.x3_c00242{left:245.520000pt;}
.x13_c00242{left:311.661333pt;}
.x16_c00242{left:392.006667pt;}
.x17_c00242{left:477.478667pt;}
.x1_c00242{left:561.280000pt;}
.x1a_c00242{left:564.662667pt;}
.x1c_c00242{left:636.460000pt;}
.x1d_c00242{left:714.240000pt;}
.x1e_c00242{left:799.712000pt;}
.xa_c00242{left:888.605333pt;}
.xb_c00242{left:954.418667pt;}
.x1f_c00242{left:1004.080000pt;}
.x4_c00242{left:1028.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_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_88fa1dbd6598780f6933e5f8.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00243{vertical-align:-61.938000px;}
.v3_c00243{vertical-align:-20.880000px;}
.v0_c00243{vertical-align:0.000000px;}
.v2_c00243{vertical-align:27.000000px;}
.ls13_c00243{letter-spacing:-0.144000px;}
.ls14_c00243{letter-spacing:-0.120240px;}
.ls12_c00243{letter-spacing:-0.072000px;}
.ls11_c00243{letter-spacing:0.000000px;}
.ls3_c00243{letter-spacing:0.072000px;}
.ls10_c00243{letter-spacing:0.120240px;}
.ls4_c00243{letter-spacing:0.144000px;}
.lse_c00243{letter-spacing:0.158400px;}
.lsc_c00243{letter-spacing:0.191520px;}
.ls2_c00243{letter-spacing:1.800000px;}
.ls8_c00243{letter-spacing:2.160000px;}
.ls7_c00243{letter-spacing:2.520000px;}
.lsd_c00243{letter-spacing:3.600000px;}
.lsa_c00243{letter-spacing:6.120000px;}
.lsf_c00243{letter-spacing:7.920000px;}
.ls9_c00243{letter-spacing:8.280000px;}
.ls1_c00243{letter-spacing:8.640000px;}
.lsb_c00243{letter-spacing:9.720000px;}
.ls6_c00243{letter-spacing:19.440000px;}
.ls5_c00243{letter-spacing:19.800000px;}
.ls0_c00243{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00243{word-spacing:-18.072000px;}
.ws0_c00243{word-spacing:-18.000000px;}
.ws1_c00243{word-spacing:-17.928000px;}
.ws4_c00243{word-spacing:-17.856000px;}
.ws2_c00243{word-spacing:-12.161520px;}
.ws5_c00243{word-spacing:-9.720000px;}
.ws16_c00243{word-spacing:-0.360000px;}
.ws7_c00243{word-spacing:-0.162000px;}
.ws15_c00243{word-spacing:-0.144000px;}
.ws8_c00243{word-spacing:-0.072000px;}
.ws6_c00243{word-spacing:0.000000px;}
.ws38_c00243{word-spacing:0.240480px;}
.ws17_c00243{word-spacing:1.008000px;}
.ws18_c00243{word-spacing:1.080000px;}
.wsc_c00243{word-spacing:1.440000px;}
.wsb_c00243{word-spacing:1.728000px;}
.ws1c_c00243{word-spacing:2.376000px;}
.ws1d_c00243{word-spacing:2.448000px;}
.ws1b_c00243{word-spacing:2.520000px;}
.ws2c_c00243{word-spacing:2.808000px;}
.ws1a_c00243{word-spacing:3.240000px;}
.ws19_c00243{word-spacing:3.528000px;}
.wse_c00243{word-spacing:3.600000px;}
.ws2b_c00243{word-spacing:6.048000px;}
.ws2a_c00243{word-spacing:6.120000px;}
.ws1f_c00243{word-spacing:6.480000px;}
.ws1e_c00243{word-spacing:6.696000px;}
.ws21_c00243{word-spacing:6.768000px;}
.ws20_c00243{word-spacing:6.840000px;}
.ws37_c00243{word-spacing:7.848000px;}
.ws27_c00243{word-spacing:7.920000px;}
.ws28_c00243{word-spacing:8.208000px;}
.wsa_c00243{word-spacing:8.280000px;}
.wsd_c00243{word-spacing:8.568000px;}
.ws9_c00243{word-spacing:8.640000px;}
.ws2f_c00243{word-spacing:8.928000px;}
.ws2d_c00243{word-spacing:9.720000px;}
.ws24_c00243{word-spacing:13.608000px;}
.ws26_c00243{word-spacing:13.896000px;}
.ws23_c00243{word-spacing:13.968000px;}
.ws25_c00243{word-spacing:14.040000px;}
.wsf_c00243{word-spacing:15.840000px;}
.ws29_c00243{word-spacing:17.208000px;}
.ws22_c00243{word-spacing:17.928000px;}
.ws12_c00243{word-spacing:19.368000px;}
.ws11_c00243{word-spacing:19.728000px;}
.ws10_c00243{word-spacing:19.800000px;}
.ws31_c00243{word-spacing:20.808000px;}
.ws30_c00243{word-spacing:20.880000px;}
.ws34_c00243{word-spacing:21.096000px;}
.ws33_c00243{word-spacing:21.168000px;}
.ws32_c00243{word-spacing:21.240000px;}
.ws13_c00243{word-spacing:21.600000px;}
.ws14_c00243{word-spacing:21.960000px;}
.ws2e_c00243{word-spacing:22.320000px;}
.ws36_c00243{word-spacing:27.576000px;}
.ws35_c00243{word-spacing:27.720000px;}
._0_c00243{margin-left:-1.015200px;}
._2_c00243{width:1.008000px;}
._1_c00243{width:8.136000px;}
._3_c00243{width:9.720000px;}
._4_c00243{width:20.815200px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs3_c00243{font-size:38.880000px;}
.fs2_c00243{font-size:47.880000px;}
.fs0_c00243{font-size:54.000000px;}
.fs4_c00243{font-size:60.120000px;}
.fs1_c00243{font-size:72.000000px;}
.y0_c00243{bottom:0.000000px;}
.y25_c00243{bottom:57.240000px;}
.y24_c00243{bottom:115.020000px;}
.y26_c00243{bottom:127.710000px;}
.y23_c00243{bottom:178.920000px;}
.y22_c00243{bottom:209.970000px;}
.y21_c00243{bottom:241.020000px;}
.y20_c00243{bottom:272.070000px;}
.y1f_c00243{bottom:303.120000px;}
.y1e_c00243{bottom:334.170000px;}
.y1d_c00243{bottom:365.220000px;}
.y1c_c00243{bottom:396.270000px;}
.y1b_c00243{bottom:427.320000px;}
.y1a_c00243{bottom:458.370000px;}
.y19_c00243{bottom:489.420000px;}
.y18_c00243{bottom:520.470000px;}
.y17_c00243{bottom:551.520000px;}
.y16_c00243{bottom:582.570000px;}
.y15_c00243{bottom:613.620000px;}
.y14_c00243{bottom:644.670000px;}
.y13_c00243{bottom:675.720000px;}
.y12_c00243{bottom:706.770000px;}
.y11_c00243{bottom:737.820000px;}
.y10_c00243{bottom:768.870000px;}
.yf_c00243{bottom:799.920000px;}
.ye_c00243{bottom:830.970000px;}
.yd_c00243{bottom:861.930000px;}
.yc_c00243{bottom:892.980000px;}
.yb_c00243{bottom:924.030000px;}
.ya_c00243{bottom:955.080000px;}
.y9_c00243{bottom:986.130000px;}
.y8_c00243{bottom:1017.180000px;}
.y7_c00243{bottom:1048.230000px;}
.y6_c00243{bottom:1079.280000px;}
.y5_c00243{bottom:1110.330000px;}
.y4_c00243{bottom:1131.030000px;}
.y3_c00243{bottom:1150.915500px;}
.y2_c00243{bottom:1166.400000px;}
.y1_c00243{bottom:1197.450000px;}
.h5_c00243{height:38.158594px;}
.h2_c00243{height:52.998047px;}
.h3_c00243{height:70.664062px;}
.h4_c00243{height:73.991602px;}
.h0_c00243{height:1262.880000px;}
.h1_c00243{height:1263.000000px;}
.w0_c00243{width:893.070000px;}
.w1_c00243{width:893.250000px;}
.x0_c00243{left:0.000000px;}
.x2_c00243{left:127.620000px;}
.x1_c00243{left:446.580000px;}
@media print{
.v1_c00243{vertical-align:-55.056000pt;}
.v3_c00243{vertical-align:-18.560000pt;}
.v0_c00243{vertical-align:0.000000pt;}
.v2_c00243{vertical-align:24.000000pt;}
.ls13_c00243{letter-spacing:-0.128000pt;}
.ls14_c00243{letter-spacing:-0.106880pt;}
.ls12_c00243{letter-spacing:-0.064000pt;}
.ls11_c00243{letter-spacing:0.000000pt;}
.ls3_c00243{letter-spacing:0.064000pt;}
.ls10_c00243{letter-spacing:0.106880pt;}
.ls4_c00243{letter-spacing:0.128000pt;}
.lse_c00243{letter-spacing:0.140800pt;}
.lsc_c00243{letter-spacing:0.170240pt;}
.ls2_c00243{letter-spacing:1.600000pt;}
.ls8_c00243{letter-spacing:1.920000pt;}
.ls7_c00243{letter-spacing:2.240000pt;}
.lsd_c00243{letter-spacing:3.200000pt;}
.lsa_c00243{letter-spacing:5.440000pt;}
.lsf_c00243{letter-spacing:7.040000pt;}
.ls9_c00243{letter-spacing:7.360000pt;}
.ls1_c00243{letter-spacing:7.680000pt;}
.lsb_c00243{letter-spacing:8.640000pt;}
.ls6_c00243{letter-spacing:17.280000pt;}
.ls5_c00243{letter-spacing:17.600000pt;}
.ls0_c00243{letter-spacing:284.016000pt;}
.ws3_c00243{word-spacing:-16.064000pt;}
.ws0_c00243{word-spacing:-16.000000pt;}
.ws1_c00243{word-spacing:-15.936000pt;}
.ws4_c00243{word-spacing:-15.872000pt;}
.ws2_c00243{word-spacing:-10.810240pt;}
.ws5_c00243{word-spacing:-8.640000pt;}
.ws16_c00243{word-spacing:-0.320000pt;}
.ws7_c00243{word-spacing:-0.144000pt;}
.ws15_c00243{word-spacing:-0.128000pt;}
.ws8_c00243{word-spacing:-0.064000pt;}
.ws6_c00243{word-spacing:0.000000pt;}
.ws38_c00243{word-spacing:0.213760pt;}
.ws17_c00243{word-spacing:0.896000pt;}
.ws18_c00243{word-spacing:0.960000pt;}
.wsc_c00243{word-spacing:1.280000pt;}
.wsb_c00243{word-spacing:1.536000pt;}
.ws1c_c00243{word-spacing:2.112000pt;}
.ws1d_c00243{word-spacing:2.176000pt;}
.ws1b_c00243{word-spacing:2.240000pt;}
.ws2c_c00243{word-spacing:2.496000pt;}
.ws1a_c00243{word-spacing:2.880000pt;}
.ws19_c00243{word-spacing:3.136000pt;}
.wse_c00243{word-spacing:3.200000pt;}
.ws2b_c00243{word-spacing:5.376000pt;}
.ws2a_c00243{word-spacing:5.440000pt;}
.ws1f_c00243{word-spacing:5.760000pt;}
.ws1e_c00243{word-spacing:5.952000pt;}
.ws21_c00243{word-spacing:6.016000pt;}
.ws20_c00243{word-spacing:6.080000pt;}
.ws37_c00243{word-spacing:6.976000pt;}
.ws27_c00243{word-spacing:7.040000pt;}
.ws28_c00243{word-spacing:7.296000pt;}
.wsa_c00243{word-spacing:7.360000pt;}
.wsd_c00243{word-spacing:7.616000pt;}
.ws9_c00243{word-spacing:7.680000pt;}
.ws2f_c00243{word-spacing:7.936000pt;}
.ws2d_c00243{word-spacing:8.640000pt;}
.ws24_c00243{word-spacing:12.096000pt;}
.ws26_c00243{word-spacing:12.352000pt;}
.ws23_c00243{word-spacing:12.416000pt;}
.ws25_c00243{word-spacing:12.480000pt;}
.wsf_c00243{word-spacing:14.080000pt;}
.ws29_c00243{word-spacing:15.296000pt;}
.ws22_c00243{word-spacing:15.936000pt;}
.ws12_c00243{word-spacing:17.216000pt;}
.ws11_c00243{word-spacing:17.536000pt;}
.ws10_c00243{word-spacing:17.600000pt;}
.ws31_c00243{word-spacing:18.496000pt;}
.ws30_c00243{word-spacing:18.560000pt;}
.ws34_c00243{word-spacing:18.752000pt;}
.ws33_c00243{word-spacing:18.816000pt;}
.ws32_c00243{word-spacing:18.880000pt;}
.ws13_c00243{word-spacing:19.200000pt;}
.ws14_c00243{word-spacing:19.520000pt;}
.ws2e_c00243{word-spacing:19.840000pt;}
.ws36_c00243{word-spacing:24.512000pt;}
.ws35_c00243{word-spacing:24.640000pt;}
._0_c00243{margin-left:-0.902400pt;}
._2_c00243{width:0.896000pt;}
._1_c00243{width:7.232000pt;}
._3_c00243{width:8.640000pt;}
._4_c00243{width:18.502400pt;}
.fs3_c00243{font-size:34.560000pt;}
.fs2_c00243{font-size:42.560000pt;}
.fs0_c00243{font-size:48.000000pt;}
.fs4_c00243{font-size:53.440000pt;}
.fs1_c00243{font-size:64.000000pt;}
.y0_c00243{bottom:0.000000pt;}
.y25_c00243{bottom:50.880000pt;}
.y24_c00243{bottom:102.240000pt;}
.y26_c00243{bottom:113.520000pt;}
.y23_c00243{bottom:159.040000pt;}
.y22_c00243{bottom:186.640000pt;}
.y21_c00243{bottom:214.240000pt;}
.y20_c00243{bottom:241.840000pt;}
.y1f_c00243{bottom:269.440000pt;}
.y1e_c00243{bottom:297.040000pt;}
.y1d_c00243{bottom:324.640000pt;}
.y1c_c00243{bottom:352.240000pt;}
.y1b_c00243{bottom:379.840000pt;}
.y1a_c00243{bottom:407.440000pt;}
.y19_c00243{bottom:435.040000pt;}
.y18_c00243{bottom:462.640000pt;}
.y17_c00243{bottom:490.240000pt;}
.y16_c00243{bottom:517.840000pt;}
.y15_c00243{bottom:545.440000pt;}
.y14_c00243{bottom:573.040000pt;}
.y13_c00243{bottom:600.640000pt;}
.y12_c00243{bottom:628.240000pt;}
.y11_c00243{bottom:655.840000pt;}
.y10_c00243{bottom:683.440000pt;}
.yf_c00243{bottom:711.040000pt;}
.ye_c00243{bottom:738.640000pt;}
.yd_c00243{bottom:766.160000pt;}
.yc_c00243{bottom:793.760000pt;}
.yb_c00243{bottom:821.360000pt;}
.ya_c00243{bottom:848.960000pt;}
.y9_c00243{bottom:876.560000pt;}
.y8_c00243{bottom:904.160000pt;}
.y7_c00243{bottom:931.760000pt;}
.y6_c00243{bottom:959.360000pt;}
.y5_c00243{bottom:986.960000pt;}
.y4_c00243{bottom:1005.360000pt;}
.y3_c00243{bottom:1023.036000pt;}
.y2_c00243{bottom:1036.800000pt;}
.y1_c00243{bottom:1064.400000pt;}
.h5_c00243{height:33.918750pt;}
.h2_c00243{height:47.109375pt;}
.h3_c00243{height:62.812500pt;}
.h4_c00243{height:65.770313pt;}
.h0_c00243{height:1122.560000pt;}
.h1_c00243{height:1122.666667pt;}
.w0_c00243{width:793.840000pt;}
.w1_c00243{width:794.000000pt;}
.x0_c00243{left:0.000000pt;}
.x2_c00243{left:113.440000pt;}
.x1_c00243{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cf6123a4bf87e81ccfac172f.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00244;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.284180;font-style: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;}
.ls7_c00244{letter-spacing:-0.360000px;}
.ls5_c00244{letter-spacing:-0.108000px;}
.ls6_c00244{letter-spacing:-0.072000px;}
.ls4_c00244{letter-spacing:0.000000px;}
.ls3_c00244{letter-spacing:0.072000px;}
.ls1_c00244{letter-spacing:0.144000px;}
.ls0_c00244{letter-spacing:10.440000px;}
.ls2_c00244{letter-spacing:18.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:-18.000000px;}
.ws11_c00244{word-spacing:-0.360000px;}
.ws22_c00244{word-spacing:-0.072000px;}
.ws1_c00244{word-spacing:0.000000px;}
.wsa_c00244{word-spacing:0.072000px;}
.ws3_c00244{word-spacing:0.162000px;}
.ws2_c00244{word-spacing:0.270000px;}
.ws27_c00244{word-spacing:0.288000px;}
.ws26_c00244{word-spacing:0.360000px;}
.ws6_c00244{word-spacing:1.800000px;}
.ws20_c00244{word-spacing:2.088000px;}
.ws7_c00244{word-spacing:2.160000px;}
.ws23_c00244{word-spacing:2.448000px;}
.ws1e_c00244{word-spacing:2.520000px;}
.wsc_c00244{word-spacing:2.880000px;}
.ws12_c00244{word-spacing:3.600000px;}
.ws19_c00244{word-spacing:4.320000px;}
.wsd_c00244{word-spacing:4.968000px;}
.wse_c00244{word-spacing:5.040000px;}
.wsb_c00244{word-spacing:5.400000px;}
.ws1a_c00244{word-spacing:6.840000px;}
.ws1f_c00244{word-spacing:9.000000px;}
.ws10_c00244{word-spacing:10.008000px;}
.wsf_c00244{word-spacing:10.080000px;}
.ws4_c00244{word-spacing:10.368000px;}
.ws5_c00244{word-spacing:10.440000px;}
.ws28_c00244{word-spacing:10.800000px;}
.ws18_c00244{word-spacing:11.160000px;}
.ws17_c00244{word-spacing:11.520000px;}
.ws1d_c00244{word-spacing:11.880000px;}
.ws15_c00244{word-spacing:13.680000px;}
.ws1c_c00244{word-spacing:14.688000px;}
.ws1b_c00244{word-spacing:15.120000px;}
.ws16_c00244{word-spacing:17.640000px;}
.ws9_c00244{word-spacing:17.928000px;}
.ws8_c00244{word-spacing:18.000000px;}
.ws14_c00244{word-spacing:19.368000px;}
.ws13_c00244{word-spacing:19.440000px;}
.ws25_c00244{word-spacing:22.176000px;}
.ws24_c00244{word-spacing:22.248000px;}
.ws21_c00244{word-spacing:35.640000px;}
._1_c00244{margin-left:-1.058400px;}
._0_c00244{width:1.220400px;}
.fc0_c00244{color:rgb(0,0,0);}
.fs0_c00244{font-size:54.000000px;}
.fs1_c00244{font-size:72.000000px;}
.y0_c00244{bottom:0.000000px;}
.y27_c00244{bottom:57.240000px;}
.y26_c00244{bottom:116.820000px;}
.y25_c00244{bottom:147.870000px;}
.y24_c00244{bottom:178.920000px;}
.y23_c00244{bottom:209.970000px;}
.y22_c00244{bottom:241.020000px;}
.y21_c00244{bottom:272.070000px;}
.y20_c00244{bottom:303.120000px;}
.y1f_c00244{bottom:334.170000px;}
.y1e_c00244{bottom:365.220000px;}
.y1d_c00244{bottom:396.270000px;}
.y1c_c00244{bottom:427.320000px;}
.y1b_c00244{bottom:458.370000px;}
.y1a_c00244{bottom:489.420000px;}
.y19_c00244{bottom:520.470000px;}
.y18_c00244{bottom:551.520000px;}
.y17_c00244{bottom:582.570000px;}
.y16_c00244{bottom:613.620000px;}
.y15_c00244{bottom:644.670000px;}
.y14_c00244{bottom:675.720000px;}
.y13_c00244{bottom:706.770000px;}
.y12_c00244{bottom:737.820000px;}
.y11_c00244{bottom:768.870000px;}
.y10_c00244{bottom:799.920000px;}
.yf_c00244{bottom:830.970000px;}
.ye_c00244{bottom:861.930000px;}
.yd_c00244{bottom:892.980000px;}
.yc_c00244{bottom:924.030000px;}
.yb_c00244{bottom:955.080000px;}
.ya_c00244{bottom:986.130000px;}
.y9_c00244{bottom:1017.180000px;}
.y8_c00244{bottom:1048.230000px;}
.y7_c00244{bottom:1079.280000px;}
.y6_c00244{bottom:1110.330000px;}
.y5_c00244{bottom:1131.030000px;}
.y4_c00244{bottom:1150.920000px;}
.y3_c00244{bottom:1166.404500px;}
.y2_c00244{bottom:1181.970000px;}
.y1_c00244{bottom:1197.450000px;}
.h3_c00244{height:52.971680px;}
.h2_c00244{height:52.998047px;}
.h4_c00244{height:70.664062px;}
.h0_c00244{height:1262.880000px;}
.h1_c00244{height:1263.000000px;}
.w0_c00244{width:893.070000px;}
.w1_c00244{width:893.250000px;}
.x0_c00244{left:0.000000px;}
.x3_c00244{left:127.620000px;}
.x2_c00244{left:425.160000px;}
.x1_c00244{left:446.580000px;}
.x4_c00244{left:738.540000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls7_c00244{letter-spacing:-0.320000pt;}
.ls5_c00244{letter-spacing:-0.096000pt;}
.ls6_c00244{letter-spacing:-0.064000pt;}
.ls4_c00244{letter-spacing:0.000000pt;}
.ls3_c00244{letter-spacing:0.064000pt;}
.ls1_c00244{letter-spacing:0.128000pt;}
.ls0_c00244{letter-spacing:9.280000pt;}
.ls2_c00244{letter-spacing:16.000000pt;}
.ws0_c00244{word-spacing:-16.000000pt;}
.ws11_c00244{word-spacing:-0.320000pt;}
.ws22_c00244{word-spacing:-0.064000pt;}
.ws1_c00244{word-spacing:0.000000pt;}
.wsa_c00244{word-spacing:0.064000pt;}
.ws3_c00244{word-spacing:0.144000pt;}
.ws2_c00244{word-spacing:0.240000pt;}
.ws27_c00244{word-spacing:0.256000pt;}
.ws26_c00244{word-spacing:0.320000pt;}
.ws6_c00244{word-spacing:1.600000pt;}
.ws20_c00244{word-spacing:1.856000pt;}
.ws7_c00244{word-spacing:1.920000pt;}
.ws23_c00244{word-spacing:2.176000pt;}
.ws1e_c00244{word-spacing:2.240000pt;}
.wsc_c00244{word-spacing:2.560000pt;}
.ws12_c00244{word-spacing:3.200000pt;}
.ws19_c00244{word-spacing:3.840000pt;}
.wsd_c00244{word-spacing:4.416000pt;}
.wse_c00244{word-spacing:4.480000pt;}
.wsb_c00244{word-spacing:4.800000pt;}
.ws1a_c00244{word-spacing:6.080000pt;}
.ws1f_c00244{word-spacing:8.000000pt;}
.ws10_c00244{word-spacing:8.896000pt;}
.wsf_c00244{word-spacing:8.960000pt;}
.ws4_c00244{word-spacing:9.216000pt;}
.ws5_c00244{word-spacing:9.280000pt;}
.ws28_c00244{word-spacing:9.600000pt;}
.ws18_c00244{word-spacing:9.920000pt;}
.ws17_c00244{word-spacing:10.240000pt;}
.ws1d_c00244{word-spacing:10.560000pt;}
.ws15_c00244{word-spacing:12.160000pt;}
.ws1c_c00244{word-spacing:13.056000pt;}
.ws1b_c00244{word-spacing:13.440000pt;}
.ws16_c00244{word-spacing:15.680000pt;}
.ws9_c00244{word-spacing:15.936000pt;}
.ws8_c00244{word-spacing:16.000000pt;}
.ws14_c00244{word-spacing:17.216000pt;}
.ws13_c00244{word-spacing:17.280000pt;}
.ws25_c00244{word-spacing:19.712000pt;}
.ws24_c00244{word-spacing:19.776000pt;}
.ws21_c00244{word-spacing:31.680000pt;}
._1_c00244{margin-left:-0.940800pt;}
._0_c00244{width:1.084800pt;}
.fs0_c00244{font-size:48.000000pt;}
.fs1_c00244{font-size:64.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.y27_c00244{bottom:50.880000pt;}
.y26_c00244{bottom:103.840000pt;}
.y25_c00244{bottom:131.440000pt;}
.y24_c00244{bottom:159.040000pt;}
.y23_c00244{bottom:186.640000pt;}
.y22_c00244{bottom:214.240000pt;}
.y21_c00244{bottom:241.840000pt;}
.y20_c00244{bottom:269.440000pt;}
.y1f_c00244{bottom:297.040000pt;}
.y1e_c00244{bottom:324.640000pt;}
.y1d_c00244{bottom:352.240000pt;}
.y1c_c00244{bottom:379.840000pt;}
.y1b_c00244{bottom:407.440000pt;}
.y1a_c00244{bottom:435.040000pt;}
.y19_c00244{bottom:462.640000pt;}
.y18_c00244{bottom:490.240000pt;}
.y17_c00244{bottom:517.840000pt;}
.y16_c00244{bottom:545.440000pt;}
.y15_c00244{bottom:573.040000pt;}
.y14_c00244{bottom:600.640000pt;}
.y13_c00244{bottom:628.240000pt;}
.y12_c00244{bottom:655.840000pt;}
.y11_c00244{bottom:683.440000pt;}
.y10_c00244{bottom:711.040000pt;}
.yf_c00244{bottom:738.640000pt;}
.ye_c00244{bottom:766.160000pt;}
.yd_c00244{bottom:793.760000pt;}
.yc_c00244{bottom:821.360000pt;}
.yb_c00244{bottom:848.960000pt;}
.ya_c00244{bottom:876.560000pt;}
.y9_c00244{bottom:904.160000pt;}
.y8_c00244{bottom:931.760000pt;}
.y7_c00244{bottom:959.360000pt;}
.y6_c00244{bottom:986.960000pt;}
.y5_c00244{bottom:1005.360000pt;}
.y4_c00244{bottom:1023.040000pt;}
.y3_c00244{bottom:1036.804000pt;}
.y2_c00244{bottom:1050.640000pt;}
.y1_c00244{bottom:1064.400000pt;}
.h3_c00244{height:47.085938pt;}
.h2_c00244{height:47.109375pt;}
.h4_c00244{height:62.812500pt;}
.h0_c00244{height:1122.560000pt;}
.h1_c00244{height:1122.666667pt;}
.w0_c00244{width:793.840000pt;}
.w1_c00244{width:794.000000pt;}
.x0_c00244{left:0.000000pt;}
.x3_c00244{left:113.440000pt;}
.x2_c00244{left:377.920000pt;}
.x1_c00244{left:396.960000pt;}
.x4_c00244{left:656.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_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_e9e17d5a90ca75c84dcb1236.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_12da637c9192610e00233ad6.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_3ea499bfc70482375f1af48b.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00245;src:url('chunks/assets/font_a741f1d0a84fa621c9eebf72.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:1.002930;font-style: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);}
.m2_c00245{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.v2_c00245{vertical-align:-83.520000px;}
.v1_c00245{vertical-align:-61.938000px;}
.v4_c00245{vertical-align:-3.864265px;}
.v0_c00245{vertical-align:0.000000px;}
.v3_c00245{vertical-align:3.864265px;}
.ls8_c00245{letter-spacing:-2.307024px;}
.ls9_c00245{letter-spacing:-1.899445px;}
.lsf_c00245{letter-spacing:-1.557241px;}
.ls13_c00245{letter-spacing:-1.476504px;}
.lsb_c00245{letter-spacing:-1.268863px;}
.lsc_c00245{letter-spacing:-0.430647px;}
.ls12_c00245{letter-spacing:-0.184563px;}
.lsd_c00245{letter-spacing:-0.173027px;}
.ls5_c00245{letter-spacing:-0.144000px;}
.ls4_c00245{letter-spacing:-0.072000px;}
.ls3_c00245{letter-spacing:0.000000px;}
.ls7_c00245{letter-spacing:0.072000px;}
.ls6_c00245{letter-spacing:0.144000px;}
.ls10_c00245{letter-spacing:0.246084px;}
.ls2_c00245{letter-spacing:0.369126px;}
.ls11_c00245{letter-spacing:1.168899px;}
.ls16_c00245{letter-spacing:1.538025px;}
.ls15_c00245{letter-spacing:1.599546px;}
.lse_c00245{letter-spacing:1.730268px;}
.ls14_c00245{letter-spacing:1.784109px;}
.lsa_c00245{letter-spacing:1.949431px;}
.ls0_c00245{letter-spacing:1144.260000px;}
.ls1_c00245{letter-spacing:2082.240000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:-17.856000px;}
.wsc_c00245{word-spacing:-15.687855px;}
.wse_c00245{word-spacing:-15.503292px;}
.ws9_c00245{word-spacing:-14.764954px;}
.wsd_c00245{word-spacing:-14.149830px;}
.ws7_c00245{word-spacing:-13.473099px;}
.ws8_c00245{word-spacing:-12.861659px;}
.wsb_c00245{word-spacing:-12.427242px;}
.ws6_c00245{word-spacing:-11.765822px;}
.wsa_c00245{word-spacing:-11.477444px;}
.ws4_c00245{word-spacing:-10.727662px;}
.ws16_c00245{word-spacing:-2.899153px;}
.ws1c_c00245{word-spacing:-1.599546px;}
.ws1e_c00245{word-spacing:-1.538025px;}
.ws19_c00245{word-spacing:-1.168899px;}
.ws20_c00245{word-spacing:-0.369126px;}
.ws18_c00245{word-spacing:-0.246084px;}
.ws10_c00245{word-spacing:-0.162000px;}
.ws13_c00245{word-spacing:-0.144000px;}
.ws14_c00245{word-spacing:-0.072000px;}
.wsf_c00245{word-spacing:0.000000px;}
.ws11_c00245{word-spacing:0.072000px;}
.ws12_c00245{word-spacing:0.144000px;}
.ws1b_c00245{word-spacing:0.184563px;}
.ws15_c00245{word-spacing:0.949723px;}
.ws1d_c00245{word-spacing:1.107378px;}
.ws21_c00245{word-spacing:1.476504px;}
.ws1a_c00245{word-spacing:1.661067px;}
.ws1f_c00245{word-spacing:1.907151px;}
.ws17_c00245{word-spacing:2.307024px;}
.ws1_c00245{word-spacing:57.917838px;}
.ws5_c00245{word-spacing:57.923605px;}
.ws2_c00245{word-spacing:119.463470px;}
.ws3_c00245{word-spacing:223.608301px;}
._12_c00245{margin-left:-5.633355px;}
._13_c00245{margin-left:-4.405734px;}
._10_c00245{margin-left:-3.361997px;}
._f_c00245{margin-left:-2.239474px;}
._1_c00245{margin-left:-1.008000px;}
._0_c00245{width:1.080000px;}
._2_c00245{width:3.154855px;}
._11_c00245{width:5.616619px;}
._8_c00245{width:130.894774px;}
._6_c00245{width:165.194454px;}
._a_c00245{width:169.370167px;}
._7_c00245{width:173.592021px;}
._e_c00245{width:184.463871px;}
._5_c00245{width:192.077051px;}
._3_c00245{width:211.358004px;}
._b_c00245{width:219.132675px;}
._4_c00245{width:226.307519px;}
._9_c00245{width:234.347498px;}
._d_c00245{width:237.906082px;}
._c_c00245{width:260.578361px;}
.fc0_c00245{color:rgb(0,0,0);}
.fs3_c00245{font-size:49.985400px;}
.fs0_c00245{font-size:54.000000px;}
.fs2_c00245{font-size:57.675600px;}
.fs4_c00245{font-size:61.521000px;}
.fs1_c00245{font-size:72.000000px;}
.y0_c00245{bottom:0.000000px;}
.y16_c00245{bottom:4.806900px;}
.y14_c00245{bottom:5.767950px;}
.y1d_c00245{bottom:13.456800px;}
.y27_c00245{bottom:13.487598px;}
.y31_c00245{bottom:14.417700px;}
.y1c_c00245{bottom:14.418150px;}
.y21_c00245{bottom:14.418450px;}
.y18_c00245{bottom:14.418900px;}
.y1a_c00245{bottom:14.419200px;}
.y1f_c00245{bottom:15.379050px;}
.y30_c00245{bottom:33.658824px;}
.y2d_c00245{bottom:33.658974px;}
.y26_c00245{bottom:33.666486px;}
.y2a_c00245{bottom:44.225112px;}
.y12_c00245{bottom:45.189373px;}
.y28_c00245{bottom:53.830200px;}
.y2f_c00245{bottom:53.837712px;}
.y2c_c00245{bottom:53.837862px;}
.y25_c00245{bottom:53.845374px;}
.y32_c00245{bottom:57.330000px;}
.y29_c00245{bottom:64.404000px;}
.y11_c00245{bottom:64.409766px;}
.y2e_c00245{bottom:74.016600px;}
.y2b_c00245{bottom:74.016750px;}
.y24_c00245{bottom:74.024262px;}
.y10_c00245{bottom:84.596226px;}
.y23_c00245{bottom:94.203150px;}
.yf_c00245{bottom:102.864973px;}
.ye_c00245{bottom:123.051433px;}
.yd_c00245{bottom:142.271826px;}
.yc_c00245{bottom:162.458286px;}
.yb_c00245{bottom:181.678680px;}
.ya_c00245{bottom:201.865140px;}
.y9_c00245{bottom:221.089950px;}
.y7_c00245{bottom:331.200000px;}
.y6_c00245{bottom:358.110000px;}
.y8_c00245{bottom:359.052000px;}
.y15_c00245{bottom:360.012000px;}
.y13_c00245{bottom:379.237500px;}
.y17_c00245{bottom:399.424500px;}
.y1b_c00245{bottom:438.837000px;}
.y19_c00245{bottom:477.286500px;}
.y20_c00245{bottom:516.699000px;}
.y1e_c00245{bottom:556.111500px;}
.y22_c00245{bottom:596.484000px;}
.y5_c00245{bottom:719.640000px;}
.y4_c00245{bottom:761.220000px;}
.y3_c00245{bottom:781.105500px;}
.y2_c00245{bottom:796.590000px;}
.y1_c00245{bottom:827.640000px;}
.ha_c00245{height:18.264000px;}
.h8_c00245{height:19.225500px;}
.hf_c00245{height:37.489500px;}
.hc_c00245{height:38.451000px;}
.h10_c00245{height:39.411000px;}
.h7_c00245{height:42.890595px;}
.he_c00245{height:45.750236px;}
.h6_c00245{height:46.754860px;}
.hd_c00245{height:47.565473px;}
.hb_c00245{height:49.057937px;}
.h9_c00245{height:50.375911px;}
.h12_c00245{height:50.736801px;}
.h2_c00245{height:52.998047px;}
.h3_c00245{height:70.664062px;}
.h4_c00245{height:72.562500px;}
.h11_c00245{height:118.234500px;}
.h5_c00245{height:355.666500px;}
.h0_c00245{height:893.070000px;}
.h1_c00245{height:893.250000px;}
.w5_c00245{width:25.023000px;}
.w7_c00245{width:73.147500px;}
.w8_c00245{width:76.035000px;}
.wc_c00245{width:79.884000px;}
.w4_c00245{width:80.847000px;}
.w9_c00245{width:86.622000px;}
.wd_c00245{width:88.548000px;}
.wa_c00245{width:95.284500px;}
.wb_c00245{width:97.209000px;}
.we_c00245{width:99.135000px;}
.w6_c00245{width:139.557000px;}
.w3_c00245{width:1021.176000px;}
.w2_c00245{width:1048.125000px;}
.w0_c00245{width:1262.880000px;}
.w1_c00245{width:1263.000000px;}
.x0_c00245{left:0.000000px;}
.x9_c00245{left:1.924950px;}
.x12_c00245{left:3.857009px;}
.xe_c00245{left:5.774250px;}
.x17_c00245{left:8.655128px;}
.x19_c00245{left:10.594822px;}
.x10_c00245{left:12.511500px;}
.xf_c00245{left:14.437050px;}
.x1d_c00245{left:16.361850px;}
.xd_c00245{left:18.286950px;}
.x1f_c00245{left:20.211900px;}
.x13_c00245{left:24.061087px;}
.x1b_c00245{left:25.971726px;}
.x11_c00245{left:27.910950px;}
.xb_c00245{left:33.685800px;}
.x14_c00245{left:36.573750px;}
.x2_c00245{left:106.380000px;}
.x8_c00245{left:133.329000px;}
.x7_c00245{left:185.748008px;}
.x5_c00245{left:196.342350px;}
.x6_c00245{left:203.072468px;}
.x15_c00245{left:273.849000px;}
.x3_c00245{left:276.210000px;}
.x16_c00245{left:350.845500px;}
.x18_c00245{left:438.430500px;}
.x1a_c00245{left:534.676500px;}
.x1_c00245{left:631.440000px;}
.x1c_c00245{left:632.848500px;}
.x1e_c00245{left:713.695500px;}
.x20_c00245{left:803.203500px;}
.x21_c00245{left:899.451000px;}
.xc_c00245{left:999.547500px;}
.xa_c00245{left:1073.658000px;}
.x4_c00245{left:1156.590000px;}
@media print{
.v2_c00245{vertical-align:-74.240000pt;}
.v1_c00245{vertical-align:-55.056000pt;}
.v4_c00245{vertical-align:-3.434902pt;}
.v0_c00245{vertical-align:0.000000pt;}
.v3_c00245{vertical-align:3.434902pt;}
.ls8_c00245{letter-spacing:-2.050688pt;}
.ls9_c00245{letter-spacing:-1.688396pt;}
.lsf_c00245{letter-spacing:-1.384214pt;}
.ls13_c00245{letter-spacing:-1.312448pt;}
.lsb_c00245{letter-spacing:-1.127878pt;}
.lsc_c00245{letter-spacing:-0.382797pt;}
.ls12_c00245{letter-spacing:-0.164056pt;}
.lsd_c00245{letter-spacing:-0.153802pt;}
.ls5_c00245{letter-spacing:-0.128000pt;}
.ls4_c00245{letter-spacing:-0.064000pt;}
.ls3_c00245{letter-spacing:0.000000pt;}
.ls7_c00245{letter-spacing:0.064000pt;}
.ls6_c00245{letter-spacing:0.128000pt;}
.ls10_c00245{letter-spacing:0.218741pt;}
.ls2_c00245{letter-spacing:0.328112pt;}
.ls11_c00245{letter-spacing:1.039021pt;}
.ls16_c00245{letter-spacing:1.367133pt;}
.ls15_c00245{letter-spacing:1.421819pt;}
.lse_c00245{letter-spacing:1.538016pt;}
.ls14_c00245{letter-spacing:1.585875pt;}
.lsa_c00245{letter-spacing:1.732827pt;}
.ls0_c00245{letter-spacing:1017.120000pt;}
.ls1_c00245{letter-spacing:1850.880000pt;}
.ws0_c00245{word-spacing:-15.872000pt;}
.wsc_c00245{word-spacing:-13.944760pt;}
.wse_c00245{word-spacing:-13.780704pt;}
.ws9_c00245{word-spacing:-13.124403pt;}
.wsd_c00245{word-spacing:-12.577627pt;}
.ws7_c00245{word-spacing:-11.976088pt;}
.ws8_c00245{word-spacing:-11.432586pt;}
.wsb_c00245{word-spacing:-11.046437pt;}
.ws6_c00245{word-spacing:-10.458509pt;}
.wsa_c00245{word-spacing:-10.202173pt;}
.ws4_c00245{word-spacing:-9.535699pt;}
.ws16_c00245{word-spacing:-2.577025pt;}
.ws1c_c00245{word-spacing:-1.421819pt;}
.ws1e_c00245{word-spacing:-1.367133pt;}
.ws19_c00245{word-spacing:-1.039021pt;}
.ws20_c00245{word-spacing:-0.328112pt;}
.ws18_c00245{word-spacing:-0.218741pt;}
.ws10_c00245{word-spacing:-0.144000pt;}
.ws13_c00245{word-spacing:-0.128000pt;}
.ws14_c00245{word-spacing:-0.064000pt;}
.wsf_c00245{word-spacing:0.000000pt;}
.ws11_c00245{word-spacing:0.064000pt;}
.ws12_c00245{word-spacing:0.128000pt;}
.ws1b_c00245{word-spacing:0.164056pt;}
.ws15_c00245{word-spacing:0.844198pt;}
.ws1d_c00245{word-spacing:0.984336pt;}
.ws21_c00245{word-spacing:1.312448pt;}
.ws1a_c00245{word-spacing:1.476504pt;}
.ws1f_c00245{word-spacing:1.695245pt;}
.ws17_c00245{word-spacing:2.050688pt;}
.ws1_c00245{word-spacing:51.482522pt;}
.ws5_c00245{word-spacing:51.487649pt;}
.ws2_c00245{word-spacing:106.189751pt;}
.ws3_c00245{word-spacing:198.762934pt;}
._12_c00245{margin-left:-5.007426pt;}
._13_c00245{margin-left:-3.916208pt;}
._10_c00245{margin-left:-2.988442pt;}
._f_c00245{margin-left:-1.990644pt;}
._1_c00245{margin-left:-0.896000pt;}
._0_c00245{width:0.960000pt;}
._2_c00245{width:2.804316pt;}
._11_c00245{width:4.992550pt;}
._8_c00245{width:116.350910pt;}
._6_c00245{width:146.839514pt;}
._a_c00245{width:150.551260pt;}
._7_c00245{width:154.304019pt;}
._e_c00245{width:163.967886pt;}
._5_c00245{width:170.735156pt;}
._3_c00245{width:187.873781pt;}
._b_c00245{width:194.784600pt;}
._4_c00245{width:201.162239pt;}
._9_c00245{width:208.308887pt;}
._d_c00245{width:211.472073pt;}
._c_c00245{width:231.625210pt;}
.fs3_c00245{font-size:44.431467pt;}
.fs0_c00245{font-size:48.000000pt;}
.fs2_c00245{font-size:51.267200pt;}
.fs4_c00245{font-size:54.685333pt;}
.fs1_c00245{font-size:64.000000pt;}
.y0_c00245{bottom:0.000000pt;}
.y16_c00245{bottom:4.272800pt;}
.y14_c00245{bottom:5.127067pt;}
.y1d_c00245{bottom:11.961600pt;}
.y27_c00245{bottom:11.988976pt;}
.y31_c00245{bottom:12.815733pt;}
.y1c_c00245{bottom:12.816133pt;}
.y21_c00245{bottom:12.816400pt;}
.y18_c00245{bottom:12.816800pt;}
.y1a_c00245{bottom:12.817067pt;}
.y1f_c00245{bottom:13.670267pt;}
.y30_c00245{bottom:29.918955pt;}
.y2d_c00245{bottom:29.919088pt;}
.y26_c00245{bottom:29.925765pt;}
.y2a_c00245{bottom:39.311211pt;}
.y12_c00245{bottom:40.168331pt;}
.y28_c00245{bottom:47.849067pt;}
.y2f_c00245{bottom:47.855744pt;}
.y2c_c00245{bottom:47.855877pt;}
.y25_c00245{bottom:47.862555pt;}
.y32_c00245{bottom:50.960000pt;}
.y29_c00245{bottom:57.248000pt;}
.y11_c00245{bottom:57.253126pt;}
.y2e_c00245{bottom:65.792533pt;}
.y2b_c00245{bottom:65.792667pt;}
.y24_c00245{bottom:65.799344pt;}
.y10_c00245{bottom:75.196646pt;}
.y23_c00245{bottom:83.736133pt;}
.yf_c00245{bottom:91.435531pt;}
.ye_c00245{bottom:109.379051pt;}
.yd_c00245{bottom:126.463846pt;}
.yc_c00245{bottom:144.407366pt;}
.yb_c00245{bottom:161.492160pt;}
.ya_c00245{bottom:179.435680pt;}
.y9_c00245{bottom:196.524400pt;}
.y7_c00245{bottom:294.400000pt;}
.y6_c00245{bottom:318.320000pt;}
.y8_c00245{bottom:319.157333pt;}
.y15_c00245{bottom:320.010667pt;}
.y13_c00245{bottom:337.100000pt;}
.y17_c00245{bottom:355.044000pt;}
.y1b_c00245{bottom:390.077333pt;}
.y19_c00245{bottom:424.254667pt;}
.y20_c00245{bottom:459.288000pt;}
.y1e_c00245{bottom:494.321333pt;}
.y22_c00245{bottom:530.208000pt;}
.y5_c00245{bottom:639.680000pt;}
.y4_c00245{bottom:676.640000pt;}
.y3_c00245{bottom:694.316000pt;}
.y2_c00245{bottom:708.080000pt;}
.y1_c00245{bottom:735.680000pt;}
.ha_c00245{height:16.234667pt;}
.h8_c00245{height:17.089333pt;}
.hf_c00245{height:33.324000pt;}
.hc_c00245{height:34.178667pt;}
.h10_c00245{height:35.032000pt;}
.h7_c00245{height:38.124973pt;}
.he_c00245{height:40.666876pt;}
.h6_c00245{height:41.559876pt;}
.hd_c00245{height:42.280420pt;}
.hb_c00245{height:43.607055pt;}
.h9_c00245{height:44.778587pt;}
.h12_c00245{height:45.099379pt;}
.h2_c00245{height:47.109375pt;}
.h3_c00245{height:62.812500pt;}
.h4_c00245{height:64.500000pt;}
.h11_c00245{height:105.097333pt;}
.h5_c00245{height:316.148000pt;}
.h0_c00245{height:793.840000pt;}
.h1_c00245{height:794.000000pt;}
.w5_c00245{width:22.242667pt;}
.w7_c00245{width:65.020000pt;}
.w8_c00245{width:67.586667pt;}
.wc_c00245{width:71.008000pt;}
.w4_c00245{width:71.864000pt;}
.w9_c00245{width:76.997333pt;}
.wd_c00245{width:78.709333pt;}
.wa_c00245{width:84.697333pt;}
.wb_c00245{width:86.408000pt;}
.we_c00245{width:88.120000pt;}
.w6_c00245{width:124.050667pt;}
.w3_c00245{width:907.712000pt;}
.w2_c00245{width:931.666667pt;}
.w0_c00245{width:1122.560000pt;}
.w1_c00245{width:1122.666667pt;}
.x0_c00245{left:0.000000pt;}
.x9_c00245{left:1.711067pt;}
.x12_c00245{left:3.428453pt;}
.xe_c00245{left:5.132667pt;}
.x17_c00245{left:7.693447pt;}
.x19_c00245{left:9.417619pt;}
.x10_c00245{left:11.121333pt;}
.xf_c00245{left:12.832933pt;}
.x1d_c00245{left:14.543867pt;}
.xd_c00245{left:16.255067pt;}
.x1f_c00245{left:17.966133pt;}
.x13_c00245{left:21.387633pt;}
.x1b_c00245{left:23.085978pt;}
.x11_c00245{left:24.809733pt;}
.xb_c00245{left:29.942933pt;}
.x14_c00245{left:32.510000pt;}
.x2_c00245{left:94.560000pt;}
.x8_c00245{left:118.514667pt;}
.x7_c00245{left:165.109340pt;}
.x5_c00245{left:174.526533pt;}
.x6_c00245{left:180.508860pt;}
.x15_c00245{left:243.421333pt;}
.x3_c00245{left:245.520000pt;}
.x16_c00245{left:311.862667pt;}
.x18_c00245{left:389.716000pt;}
.x1a_c00245{left:475.268000pt;}
.x1_c00245{left:561.280000pt;}
.x1c_c00245{left:562.532000pt;}
.x1e_c00245{left:634.396000pt;}
.x20_c00245{left:713.958667pt;}
.x21_c00245{left:799.512000pt;}
.xc_c00245{left:888.486667pt;}
.xa_c00245{left:954.362667pt;}
.x4_c00245{left:1028.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_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_3a8ec9bc07661fb9f2fa391e.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_8bc8f986fdd601c04cfb87f5.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.lsf_c00246{letter-spacing:-0.576000px;}
.lse_c00246{letter-spacing:-0.432000px;}
.lsc_c00246{letter-spacing:-0.216000px;}
.lsb_c00246{letter-spacing:-0.108000px;}
.lsd_c00246{letter-spacing:-0.072000px;}
.lsa_c00246{letter-spacing:0.000000px;}
.ls4_c00246{letter-spacing:0.072000px;}
.ls8_c00246{letter-spacing:0.144000px;}
.ls2_c00246{letter-spacing:1.800000px;}
.ls3_c00246{letter-spacing:2.880000px;}
.ls9_c00246{letter-spacing:5.400000px;}
.ls0_c00246{letter-spacing:6.120000px;}
.ls1_c00246{letter-spacing:6.480000px;}
.ls6_c00246{letter-spacing:8.272800px;}
.ls5_c00246{letter-spacing:11.160000px;}
.ls7_c00246{letter-spacing:26.640000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00246{word-spacing:-18.144000px;}
.ws3_c00246{word-spacing:-18.000000px;}
.ws2_c00246{word-spacing:-17.928000px;}
.ws0_c00246{word-spacing:-17.784000px;}
.ws4_c00246{word-spacing:-17.568000px;}
.ws11_c00246{word-spacing:-0.360000px;}
.wsc_c00246{word-spacing:-0.072000px;}
.ws5_c00246{word-spacing:0.000000px;}
.ws7_c00246{word-spacing:0.162000px;}
.ws22_c00246{word-spacing:0.216000px;}
.ws6_c00246{word-spacing:0.270000px;}
.ws2a_c00246{word-spacing:0.648000px;}
.ws2c_c00246{word-spacing:1.368000px;}
.ws2b_c00246{word-spacing:1.440000px;}
.ws10_c00246{word-spacing:2.088000px;}
.wsb_c00246{word-spacing:2.160000px;}
.wse_c00246{word-spacing:2.448000px;}
.wsf_c00246{word-spacing:2.520000px;}
.wsd_c00246{word-spacing:2.880000px;}
.ws26_c00246{word-spacing:3.888000px;}
.ws1f_c00246{word-spacing:3.960000px;}
.ws1d_c00246{word-spacing:4.248000px;}
.ws1e_c00246{word-spacing:4.320000px;}
.ws1a_c00246{word-spacing:4.608000px;}
.ws1c_c00246{word-spacing:4.680000px;}
.ws1b_c00246{word-spacing:5.256000px;}
.ws20_c00246{word-spacing:5.688000px;}
.ws8_c00246{word-spacing:5.976000px;}
.wsa_c00246{word-spacing:6.048000px;}
.ws9_c00246{word-spacing:6.120000px;}
.ws21_c00246{word-spacing:7.848000px;}
.ws15_c00246{word-spacing:8.208000px;}
.ws14_c00246{word-spacing:8.640000px;}
.ws29_c00246{word-spacing:10.728000px;}
.ws2d_c00246{word-spacing:10.800000px;}
.ws12_c00246{word-spacing:11.448000px;}
.ws13_c00246{word-spacing:11.520000px;}
.ws18_c00246{word-spacing:13.968000px;}
.ws19_c00246{word-spacing:14.040000px;}
.ws25_c00246{word-spacing:15.120000px;}
.ws28_c00246{word-spacing:20.520000px;}
.ws2e_c00246{word-spacing:23.040000px;}
.ws23_c00246{word-spacing:25.488000px;}
.ws24_c00246{word-spacing:25.560000px;}
.ws17_c00246{word-spacing:26.208000px;}
.ws16_c00246{word-spacing:26.280000px;}
.ws27_c00246{word-spacing:38.448000px;}
._1_c00246{margin-left:-1.058400px;}
._0_c00246{width:1.220400px;}
._2_c00246{width:2.790000px;}
._4_c00246{width:4.716000px;}
._3_c00246{width:14.947200px;}
.fc0_c00246{color:rgb(0,0,0);}
.fs0_c00246{font-size:54.000000px;}
.fs1_c00246{font-size:72.000000px;}
.y0_c00246{bottom:0.000000px;}
.y27_c00246{bottom:57.240000px;}
.y26_c00246{bottom:116.820000px;}
.y25_c00246{bottom:147.870000px;}
.y24_c00246{bottom:178.920000px;}
.y23_c00246{bottom:209.970000px;}
.y22_c00246{bottom:241.020000px;}
.y21_c00246{bottom:272.070000px;}
.y20_c00246{bottom:303.120000px;}
.y1f_c00246{bottom:334.170000px;}
.y1e_c00246{bottom:365.220000px;}
.y1d_c00246{bottom:396.270000px;}
.y1c_c00246{bottom:427.320000px;}
.y1b_c00246{bottom:458.370000px;}
.y1a_c00246{bottom:489.420000px;}
.y19_c00246{bottom:520.470000px;}
.y18_c00246{bottom:551.520000px;}
.y17_c00246{bottom:582.390000px;}
.y16_c00246{bottom:613.440000px;}
.y15_c00246{bottom:644.670000px;}
.y14_c00246{bottom:675.720000px;}
.y13_c00246{bottom:706.770000px;}
.y12_c00246{bottom:737.820000px;}
.y11_c00246{bottom:768.870000px;}
.y10_c00246{bottom:799.920000px;}
.yf_c00246{bottom:830.970000px;}
.ye_c00246{bottom:861.930000px;}
.yd_c00246{bottom:892.980000px;}
.yc_c00246{bottom:924.030000px;}
.yb_c00246{bottom:955.080000px;}
.ya_c00246{bottom:986.130000px;}
.y9_c00246{bottom:1017.180000px;}
.y8_c00246{bottom:1048.230000px;}
.y7_c00246{bottom:1079.280000px;}
.y6_c00246{bottom:1110.330000px;}
.y5_c00246{bottom:1131.030000px;}
.y4_c00246{bottom:1150.920000px;}
.y3_c00246{bottom:1166.404500px;}
.y2_c00246{bottom:1181.970000px;}
.y1_c00246{bottom:1197.450000px;}
.h3_c00246{height:52.971680px;}
.h2_c00246{height:52.998047px;}
.h4_c00246{height:70.664062px;}
.h5_c00246{height:72.562500px;}
.h0_c00246{height:1262.880000px;}
.h1_c00246{height:1263.000000px;}
.w0_c00246{width:893.070000px;}
.w1_c00246{width:893.250000px;}
.x0_c00246{left:0.000000px;}
.x3_c00246{left:127.620000px;}
.x2_c00246{left:425.160000px;}
.x1_c00246{left:446.580000px;}
.x4_c00246{left:738.540000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.lsf_c00246{letter-spacing:-0.512000pt;}
.lse_c00246{letter-spacing:-0.384000pt;}
.lsc_c00246{letter-spacing:-0.192000pt;}
.lsb_c00246{letter-spacing:-0.096000pt;}
.lsd_c00246{letter-spacing:-0.064000pt;}
.lsa_c00246{letter-spacing:0.000000pt;}
.ls4_c00246{letter-spacing:0.064000pt;}
.ls8_c00246{letter-spacing:0.128000pt;}
.ls2_c00246{letter-spacing:1.600000pt;}
.ls3_c00246{letter-spacing:2.560000pt;}
.ls9_c00246{letter-spacing:4.800000pt;}
.ls0_c00246{letter-spacing:5.440000pt;}
.ls1_c00246{letter-spacing:5.760000pt;}
.ls6_c00246{letter-spacing:7.353600pt;}
.ls5_c00246{letter-spacing:9.920000pt;}
.ls7_c00246{letter-spacing:23.680000pt;}
.ws1_c00246{word-spacing:-16.128000pt;}
.ws3_c00246{word-spacing:-16.000000pt;}
.ws2_c00246{word-spacing:-15.936000pt;}
.ws0_c00246{word-spacing:-15.808000pt;}
.ws4_c00246{word-spacing:-15.616000pt;}
.ws11_c00246{word-spacing:-0.320000pt;}
.wsc_c00246{word-spacing:-0.064000pt;}
.ws5_c00246{word-spacing:0.000000pt;}
.ws7_c00246{word-spacing:0.144000pt;}
.ws22_c00246{word-spacing:0.192000pt;}
.ws6_c00246{word-spacing:0.240000pt;}
.ws2a_c00246{word-spacing:0.576000pt;}
.ws2c_c00246{word-spacing:1.216000pt;}
.ws2b_c00246{word-spacing:1.280000pt;}
.ws10_c00246{word-spacing:1.856000pt;}
.wsb_c00246{word-spacing:1.920000pt;}
.wse_c00246{word-spacing:2.176000pt;}
.wsf_c00246{word-spacing:2.240000pt;}
.wsd_c00246{word-spacing:2.560000pt;}
.ws26_c00246{word-spacing:3.456000pt;}
.ws1f_c00246{word-spacing:3.520000pt;}
.ws1d_c00246{word-spacing:3.776000pt;}
.ws1e_c00246{word-spacing:3.840000pt;}
.ws1a_c00246{word-spacing:4.096000pt;}
.ws1c_c00246{word-spacing:4.160000pt;}
.ws1b_c00246{word-spacing:4.672000pt;}
.ws20_c00246{word-spacing:5.056000pt;}
.ws8_c00246{word-spacing:5.312000pt;}
.wsa_c00246{word-spacing:5.376000pt;}
.ws9_c00246{word-spacing:5.440000pt;}
.ws21_c00246{word-spacing:6.976000pt;}
.ws15_c00246{word-spacing:7.296000pt;}
.ws14_c00246{word-spacing:7.680000pt;}
.ws29_c00246{word-spacing:9.536000pt;}
.ws2d_c00246{word-spacing:9.600000pt;}
.ws12_c00246{word-spacing:10.176000pt;}
.ws13_c00246{word-spacing:10.240000pt;}
.ws18_c00246{word-spacing:12.416000pt;}
.ws19_c00246{word-spacing:12.480000pt;}
.ws25_c00246{word-spacing:13.440000pt;}
.ws28_c00246{word-spacing:18.240000pt;}
.ws2e_c00246{word-spacing:20.480000pt;}
.ws23_c00246{word-spacing:22.656000pt;}
.ws24_c00246{word-spacing:22.720000pt;}
.ws17_c00246{word-spacing:23.296000pt;}
.ws16_c00246{word-spacing:23.360000pt;}
.ws27_c00246{word-spacing:34.176000pt;}
._1_c00246{margin-left:-0.940800pt;}
._0_c00246{width:1.084800pt;}
._2_c00246{width:2.480000pt;}
._4_c00246{width:4.192000pt;}
._3_c00246{width:13.286400pt;}
.fs0_c00246{font-size:48.000000pt;}
.fs1_c00246{font-size:64.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y27_c00246{bottom:50.880000pt;}
.y26_c00246{bottom:103.840000pt;}
.y25_c00246{bottom:131.440000pt;}
.y24_c00246{bottom:159.040000pt;}
.y23_c00246{bottom:186.640000pt;}
.y22_c00246{bottom:214.240000pt;}
.y21_c00246{bottom:241.840000pt;}
.y20_c00246{bottom:269.440000pt;}
.y1f_c00246{bottom:297.040000pt;}
.y1e_c00246{bottom:324.640000pt;}
.y1d_c00246{bottom:352.240000pt;}
.y1c_c00246{bottom:379.840000pt;}
.y1b_c00246{bottom:407.440000pt;}
.y1a_c00246{bottom:435.040000pt;}
.y19_c00246{bottom:462.640000pt;}
.y18_c00246{bottom:490.240000pt;}
.y17_c00246{bottom:517.680000pt;}
.y16_c00246{bottom:545.280000pt;}
.y15_c00246{bottom:573.040000pt;}
.y14_c00246{bottom:600.640000pt;}
.y13_c00246{bottom:628.240000pt;}
.y12_c00246{bottom:655.840000pt;}
.y11_c00246{bottom:683.440000pt;}
.y10_c00246{bottom:711.040000pt;}
.yf_c00246{bottom:738.640000pt;}
.ye_c00246{bottom:766.160000pt;}
.yd_c00246{bottom:793.760000pt;}
.yc_c00246{bottom:821.360000pt;}
.yb_c00246{bottom:848.960000pt;}
.ya_c00246{bottom:876.560000pt;}
.y9_c00246{bottom:904.160000pt;}
.y8_c00246{bottom:931.760000pt;}
.y7_c00246{bottom:959.360000pt;}
.y6_c00246{bottom:986.960000pt;}
.y5_c00246{bottom:1005.360000pt;}
.y4_c00246{bottom:1023.040000pt;}
.y3_c00246{bottom:1036.804000pt;}
.y2_c00246{bottom:1050.640000pt;}
.y1_c00246{bottom:1064.400000pt;}
.h3_c00246{height:47.085938pt;}
.h2_c00246{height:47.109375pt;}
.h4_c00246{height:62.812500pt;}
.h5_c00246{height:64.500000pt;}
.h0_c00246{height:1122.560000pt;}
.h1_c00246{height:1122.666667pt;}
.w0_c00246{width:793.840000pt;}
.w1_c00246{width:794.000000pt;}
.x0_c00246{left:0.000000pt;}
.x3_c00246{left:113.440000pt;}
.x2_c00246{left:377.920000pt;}
.x1_c00246{left:396.960000pt;}
.x4_c00246{left:656.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_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_c9c4372c02f58c60f3e08587.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.284180;font-style: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);}
.v1_c00247{vertical-align:-61.938000px;}
.v0_c00247{vertical-align:0.000000px;}
.ls5_c00247{letter-spacing:0.000000px;}
.ls4_c00247{letter-spacing:0.072000px;}
.ls1_c00247{letter-spacing:0.144000px;}
.ls2_c00247{letter-spacing:1.800000px;}
.ls3_c00247{letter-spacing:2.527200px;}
.ls0_c00247{letter-spacing:319.518000px;}
.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:-18.000000px;}
.ws10_c00247{word-spacing:-0.432000px;}
.ws2_c00247{word-spacing:-0.162000px;}
.ws17_c00247{word-spacing:-0.072000px;}
.ws1_c00247{word-spacing:0.000000px;}
.ws7_c00247{word-spacing:1.728000px;}
.ws6_c00247{word-spacing:1.800000px;}
.ws18_c00247{word-spacing:2.088000px;}
.ws3_c00247{word-spacing:2.448000px;}
.ws4_c00247{word-spacing:2.520000px;}
.wsd_c00247{word-spacing:5.760000px;}
.wse_c00247{word-spacing:8.280000px;}
.ws9_c00247{word-spacing:8.640000px;}
.ws19_c00247{word-spacing:11.808000px;}
.ws14_c00247{word-spacing:12.168000px;}
.ws15_c00247{word-spacing:12.240000px;}
.ws1c_c00247{word-spacing:12.600000px;}
.wsb_c00247{word-spacing:12.888000px;}
.ws1b_c00247{word-spacing:13.248000px;}
.ws1a_c00247{word-spacing:13.320000px;}
.ws5_c00247{word-spacing:13.680000px;}
.ws12_c00247{word-spacing:14.688000px;}
.ws13_c00247{word-spacing:17.640000px;}
.ws11_c00247{word-spacing:17.928000px;}
.ws16_c00247{word-spacing:19.440000px;}
.wsc_c00247{word-spacing:21.600000px;}
.ws1d_c00247{word-spacing:22.608000px;}
.wsf_c00247{word-spacing:23.040000px;}
.wsa_c00247{word-spacing:26.280000px;}
.ws8_c00247{word-spacing:28.800000px;}
._0_c00247{margin-left:-1.152000px;}
._1_c00247{width:1.080000px;}
.fc0_c00247{color:rgb(0,0,0);}
.fs0_c00247{font-size:54.000000px;}
.fs1_c00247{font-size:72.000000px;}
.y0_c00247{bottom:0.000000px;}
.y26_c00247{bottom:57.240000px;}
.y25_c00247{bottom:116.820000px;}
.y24_c00247{bottom:147.870000px;}
.y23_c00247{bottom:178.920000px;}
.y22_c00247{bottom:209.970000px;}
.y21_c00247{bottom:241.020000px;}
.y20_c00247{bottom:272.070000px;}
.y1f_c00247{bottom:303.120000px;}
.y1e_c00247{bottom:334.170000px;}
.y1d_c00247{bottom:365.220000px;}
.y1c_c00247{bottom:396.270000px;}
.y1b_c00247{bottom:427.320000px;}
.y1a_c00247{bottom:458.370000px;}
.y19_c00247{bottom:489.420000px;}
.y18_c00247{bottom:520.470000px;}
.y17_c00247{bottom:551.520000px;}
.y16_c00247{bottom:582.570000px;}
.y15_c00247{bottom:613.620000px;}
.y14_c00247{bottom:644.670000px;}
.y13_c00247{bottom:675.720000px;}
.y12_c00247{bottom:706.770000px;}
.y11_c00247{bottom:737.820000px;}
.y10_c00247{bottom:768.870000px;}
.yf_c00247{bottom:799.920000px;}
.ye_c00247{bottom:830.970000px;}
.yd_c00247{bottom:861.930000px;}
.yc_c00247{bottom:892.980000px;}
.yb_c00247{bottom:924.030000px;}
.ya_c00247{bottom:955.080000px;}
.y9_c00247{bottom:986.130000px;}
.y8_c00247{bottom:1017.180000px;}
.y7_c00247{bottom:1048.230000px;}
.y6_c00247{bottom:1079.280000px;}
.y5_c00247{bottom:1110.330000px;}
.y4_c00247{bottom:1131.030000px;}
.y3_c00247{bottom:1150.915500px;}
.y2_c00247{bottom:1166.400000px;}
.y1_c00247{bottom:1197.450000px;}
.h2_c00247{height:52.998047px;}
.h3_c00247{height:70.664062px;}
.h0_c00247{height:1262.880000px;}
.h1_c00247{height:1263.000000px;}
.w0_c00247{width:893.070000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x2_c00247{left:127.620000px;}
.x1_c00247{left:446.580000px;}
@media print{
.v1_c00247{vertical-align:-55.056000pt;}
.v0_c00247{vertical-align:0.000000pt;}
.ls5_c00247{letter-spacing:0.000000pt;}
.ls4_c00247{letter-spacing:0.064000pt;}
.ls1_c00247{letter-spacing:0.128000pt;}
.ls2_c00247{letter-spacing:1.600000pt;}
.ls3_c00247{letter-spacing:2.246400pt;}
.ls0_c00247{letter-spacing:284.016000pt;}
.ws0_c00247{word-spacing:-16.000000pt;}
.ws10_c00247{word-spacing:-0.384000pt;}
.ws2_c00247{word-spacing:-0.144000pt;}
.ws17_c00247{word-spacing:-0.064000pt;}
.ws1_c00247{word-spacing:0.000000pt;}
.ws7_c00247{word-spacing:1.536000pt;}
.ws6_c00247{word-spacing:1.600000pt;}
.ws18_c00247{word-spacing:1.856000pt;}
.ws3_c00247{word-spacing:2.176000pt;}
.ws4_c00247{word-spacing:2.240000pt;}
.wsd_c00247{word-spacing:5.120000pt;}
.wse_c00247{word-spacing:7.360000pt;}
.ws9_c00247{word-spacing:7.680000pt;}
.ws19_c00247{word-spacing:10.496000pt;}
.ws14_c00247{word-spacing:10.816000pt;}
.ws15_c00247{word-spacing:10.880000pt;}
.ws1c_c00247{word-spacing:11.200000pt;}
.wsb_c00247{word-spacing:11.456000pt;}
.ws1b_c00247{word-spacing:11.776000pt;}
.ws1a_c00247{word-spacing:11.840000pt;}
.ws5_c00247{word-spacing:12.160000pt;}
.ws12_c00247{word-spacing:13.056000pt;}
.ws13_c00247{word-spacing:15.680000pt;}
.ws11_c00247{word-spacing:15.936000pt;}
.ws16_c00247{word-spacing:17.280000pt;}
.wsc_c00247{word-spacing:19.200000pt;}
.ws1d_c00247{word-spacing:20.096000pt;}
.wsf_c00247{word-spacing:20.480000pt;}
.wsa_c00247{word-spacing:23.360000pt;}
.ws8_c00247{word-spacing:25.600000pt;}
._0_c00247{margin-left:-1.024000pt;}
._1_c00247{width:0.960000pt;}
.fs0_c00247{font-size:48.000000pt;}
.fs1_c00247{font-size:64.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y26_c00247{bottom:50.880000pt;}
.y25_c00247{bottom:103.840000pt;}
.y24_c00247{bottom:131.440000pt;}
.y23_c00247{bottom:159.040000pt;}
.y22_c00247{bottom:186.640000pt;}
.y21_c00247{bottom:214.240000pt;}
.y20_c00247{bottom:241.840000pt;}
.y1f_c00247{bottom:269.440000pt;}
.y1e_c00247{bottom:297.040000pt;}
.y1d_c00247{bottom:324.640000pt;}
.y1c_c00247{bottom:352.240000pt;}
.y1b_c00247{bottom:379.840000pt;}
.y1a_c00247{bottom:407.440000pt;}
.y19_c00247{bottom:435.040000pt;}
.y18_c00247{bottom:462.640000pt;}
.y17_c00247{bottom:490.240000pt;}
.y16_c00247{bottom:517.840000pt;}
.y15_c00247{bottom:545.440000pt;}
.y14_c00247{bottom:573.040000pt;}
.y13_c00247{bottom:600.640000pt;}
.y12_c00247{bottom:628.240000pt;}
.y11_c00247{bottom:655.840000pt;}
.y10_c00247{bottom:683.440000pt;}
.yf_c00247{bottom:711.040000pt;}
.ye_c00247{bottom:738.640000pt;}
.yd_c00247{bottom:766.160000pt;}
.yc_c00247{bottom:793.760000pt;}
.yb_c00247{bottom:821.360000pt;}
.ya_c00247{bottom:848.960000pt;}
.y9_c00247{bottom:876.560000pt;}
.y8_c00247{bottom:904.160000pt;}
.y7_c00247{bottom:931.760000pt;}
.y6_c00247{bottom:959.360000pt;}
.y5_c00247{bottom:986.960000pt;}
.y4_c00247{bottom:1005.360000pt;}
.y3_c00247{bottom:1023.036000pt;}
.y2_c00247{bottom:1036.800000pt;}
.y1_c00247{bottom:1064.400000pt;}
.h2_c00247{height:47.109375pt;}
.h3_c00247{height:62.812500pt;}
.h0_c00247{height:1122.560000pt;}
.h1_c00247{height:1122.666667pt;}
.w0_c00247{width:793.840000pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x2_c00247{left:113.440000pt;}
.x1_c00247{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c996c46ee3a16b53bbfbf0e.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls3_c00248{letter-spacing:-0.108000px;}
.ls2_c00248{letter-spacing:0.000000px;}
.ls1_c00248{letter-spacing:0.072000px;}
.ls0_c00248{letter-spacing:0.144000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:-18.144000px;}
.ws1_c00248{word-spacing:-18.072000px;}
.wsc_c00248{word-spacing:-0.360000px;}
.wse_c00248{word-spacing:-0.072000px;}
.ws2_c00248{word-spacing:0.000000px;}
.ws4_c00248{word-spacing:0.162000px;}
.ws3_c00248{word-spacing:0.270000px;}
.ws13_c00248{word-spacing:0.288000px;}
.ws14_c00248{word-spacing:0.648000px;}
.ws8_c00248{word-spacing:1.080000px;}
.ws7_c00248{word-spacing:1.368000px;}
.ws6_c00248{word-spacing:1.440000px;}
.ws1a_c00248{word-spacing:1.728000px;}
.ws19_c00248{word-spacing:1.800000px;}
.wsa_c00248{word-spacing:4.680000px;}
.ws5_c00248{word-spacing:6.408000px;}
.ws1e_c00248{word-spacing:6.480000px;}
.ws9_c00248{word-spacing:7.560000px;}
.ws15_c00248{word-spacing:8.640000px;}
.ws1d_c00248{word-spacing:8.928000px;}
.ws18_c00248{word-spacing:9.360000px;}
.ws12_c00248{word-spacing:9.648000px;}
.wsd_c00248{word-spacing:10.008000px;}
.ws11_c00248{word-spacing:10.080000px;}
.ws1c_c00248{word-spacing:12.528000px;}
.wsf_c00248{word-spacing:12.600000px;}
.ws1b_c00248{word-spacing:12.960000px;}
.wsb_c00248{word-spacing:14.688000px;}
.ws1f_c00248{word-spacing:16.848000px;}
.ws10_c00248{word-spacing:20.160000px;}
.ws16_c00248{word-spacing:22.248000px;}
.ws17_c00248{word-spacing:22.680000px;}
._1_c00248{margin-left:-1.058400px;}
._0_c00248{width:1.220400px;}
.fc0_c00248{color:rgb(0,0,0);}
.fs0_c00248{font-size:54.000000px;}
.fs1_c00248{font-size:72.000000px;}
.y0_c00248{bottom:0.000000px;}
.y27_c00248{bottom:57.240000px;}
.y26_c00248{bottom:116.820000px;}
.y25_c00248{bottom:147.870000px;}
.y24_c00248{bottom:178.920000px;}
.y23_c00248{bottom:209.970000px;}
.y22_c00248{bottom:241.020000px;}
.y21_c00248{bottom:272.070000px;}
.y20_c00248{bottom:303.120000px;}
.y1f_c00248{bottom:334.170000px;}
.y1e_c00248{bottom:365.220000px;}
.y1d_c00248{bottom:396.270000px;}
.y1c_c00248{bottom:427.320000px;}
.y1b_c00248{bottom:458.370000px;}
.y1a_c00248{bottom:489.420000px;}
.y19_c00248{bottom:520.470000px;}
.y18_c00248{bottom:551.520000px;}
.y17_c00248{bottom:582.570000px;}
.y16_c00248{bottom:613.620000px;}
.y15_c00248{bottom:644.670000px;}
.y14_c00248{bottom:675.720000px;}
.y13_c00248{bottom:706.770000px;}
.y12_c00248{bottom:737.820000px;}
.y11_c00248{bottom:768.870000px;}
.y10_c00248{bottom:799.920000px;}
.yf_c00248{bottom:830.970000px;}
.ye_c00248{bottom:861.930000px;}
.yd_c00248{bottom:892.980000px;}
.yc_c00248{bottom:924.030000px;}
.yb_c00248{bottom:955.080000px;}
.ya_c00248{bottom:986.130000px;}
.y9_c00248{bottom:1017.180000px;}
.y8_c00248{bottom:1048.230000px;}
.y7_c00248{bottom:1079.280000px;}
.y6_c00248{bottom:1110.330000px;}
.y5_c00248{bottom:1131.030000px;}
.y4_c00248{bottom:1150.920000px;}
.y3_c00248{bottom:1166.404500px;}
.y2_c00248{bottom:1181.970000px;}
.y1_c00248{bottom:1197.450000px;}
.h3_c00248{height:52.971680px;}
.h2_c00248{height:52.998047px;}
.h4_c00248{height:70.664062px;}
.h0_c00248{height:1262.880000px;}
.h1_c00248{height:1263.000000px;}
.w0_c00248{width:893.070000px;}
.w1_c00248{width:893.250000px;}
.x0_c00248{left:0.000000px;}
.x3_c00248{left:127.620000px;}
.x2_c00248{left:425.160000px;}
.x1_c00248{left:446.580000px;}
.x4_c00248{left:738.540000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls3_c00248{letter-spacing:-0.096000pt;}
.ls2_c00248{letter-spacing:0.000000pt;}
.ls1_c00248{letter-spacing:0.064000pt;}
.ls0_c00248{letter-spacing:0.128000pt;}
.ws0_c00248{word-spacing:-16.128000pt;}
.ws1_c00248{word-spacing:-16.064000pt;}
.wsc_c00248{word-spacing:-0.320000pt;}
.wse_c00248{word-spacing:-0.064000pt;}
.ws2_c00248{word-spacing:0.000000pt;}
.ws4_c00248{word-spacing:0.144000pt;}
.ws3_c00248{word-spacing:0.240000pt;}
.ws13_c00248{word-spacing:0.256000pt;}
.ws14_c00248{word-spacing:0.576000pt;}
.ws8_c00248{word-spacing:0.960000pt;}
.ws7_c00248{word-spacing:1.216000pt;}
.ws6_c00248{word-spacing:1.280000pt;}
.ws1a_c00248{word-spacing:1.536000pt;}
.ws19_c00248{word-spacing:1.600000pt;}
.wsa_c00248{word-spacing:4.160000pt;}
.ws5_c00248{word-spacing:5.696000pt;}
.ws1e_c00248{word-spacing:5.760000pt;}
.ws9_c00248{word-spacing:6.720000pt;}
.ws15_c00248{word-spacing:7.680000pt;}
.ws1d_c00248{word-spacing:7.936000pt;}
.ws18_c00248{word-spacing:8.320000pt;}
.ws12_c00248{word-spacing:8.576000pt;}
.wsd_c00248{word-spacing:8.896000pt;}
.ws11_c00248{word-spacing:8.960000pt;}
.ws1c_c00248{word-spacing:11.136000pt;}
.wsf_c00248{word-spacing:11.200000pt;}
.ws1b_c00248{word-spacing:11.520000pt;}
.wsb_c00248{word-spacing:13.056000pt;}
.ws1f_c00248{word-spacing:14.976000pt;}
.ws10_c00248{word-spacing:17.920000pt;}
.ws16_c00248{word-spacing:19.776000pt;}
.ws17_c00248{word-spacing:20.160000pt;}
._1_c00248{margin-left:-0.940800pt;}
._0_c00248{width:1.084800pt;}
.fs0_c00248{font-size:48.000000pt;}
.fs1_c00248{font-size:64.000000pt;}
.y0_c00248{bottom:0.000000pt;}
.y27_c00248{bottom:50.880000pt;}
.y26_c00248{bottom:103.840000pt;}
.y25_c00248{bottom:131.440000pt;}
.y24_c00248{bottom:159.040000pt;}
.y23_c00248{bottom:186.640000pt;}
.y22_c00248{bottom:214.240000pt;}
.y21_c00248{bottom:241.840000pt;}
.y20_c00248{bottom:269.440000pt;}
.y1f_c00248{bottom:297.040000pt;}
.y1e_c00248{bottom:324.640000pt;}
.y1d_c00248{bottom:352.240000pt;}
.y1c_c00248{bottom:379.840000pt;}
.y1b_c00248{bottom:407.440000pt;}
.y1a_c00248{bottom:435.040000pt;}
.y19_c00248{bottom:462.640000pt;}
.y18_c00248{bottom:490.240000pt;}
.y17_c00248{bottom:517.840000pt;}
.y16_c00248{bottom:545.440000pt;}
.y15_c00248{bottom:573.040000pt;}
.y14_c00248{bottom:600.640000pt;}
.y13_c00248{bottom:628.240000pt;}
.y12_c00248{bottom:655.840000pt;}
.y11_c00248{bottom:683.440000pt;}
.y10_c00248{bottom:711.040000pt;}
.yf_c00248{bottom:738.640000pt;}
.ye_c00248{bottom:766.160000pt;}
.yd_c00248{bottom:793.760000pt;}
.yc_c00248{bottom:821.360000pt;}
.yb_c00248{bottom:848.960000pt;}
.ya_c00248{bottom:876.560000pt;}
.y9_c00248{bottom:904.160000pt;}
.y8_c00248{bottom:931.760000pt;}
.y7_c00248{bottom:959.360000pt;}
.y6_c00248{bottom:986.960000pt;}
.y5_c00248{bottom:1005.360000pt;}
.y4_c00248{bottom:1023.040000pt;}
.y3_c00248{bottom:1036.804000pt;}
.y2_c00248{bottom:1050.640000pt;}
.y1_c00248{bottom:1064.400000pt;}
.h3_c00248{height:47.085938pt;}
.h2_c00248{height:47.109375pt;}
.h4_c00248{height:62.812500pt;}
.h0_c00248{height:1122.560000pt;}
.h1_c00248{height:1122.666667pt;}
.w0_c00248{width:793.840000pt;}
.w1_c00248{width:794.000000pt;}
.x0_c00248{left:0.000000pt;}
.x3_c00248{left:113.440000pt;}
.x2_c00248{left:377.920000pt;}
.x1_c00248{left:396.960000pt;}
.x4_c00248{left:656.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_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_25ff2323fbea6c9e0481d815.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_624684f95cc48b02726b15d6.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_7f543badbc91f8d795ed55ef.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250417,0.000000,0.000000,0.250000,0,0);}
.v2_c00249{vertical-align:-83.520000px;}
.v1_c00249{vertical-align:-61.938000px;}
.v0_c00249{vertical-align:0.000000px;}
.ls12_c00249{letter-spacing:-0.432000px;}
.ls10_c00249{letter-spacing:-0.288000px;}
.ls11_c00249{letter-spacing:-0.216000px;}
.lsd_c00249{letter-spacing:-0.120240px;}
.lsc_c00249{letter-spacing:-0.072000px;}
.lse_c00249{letter-spacing:-0.060120px;}
.ls13_c00249{letter-spacing:-0.033472px;}
.lsb_c00249{letter-spacing:0.000000px;}
.ls15_c00249{letter-spacing:0.033472px;}
.ls9_c00249{letter-spacing:0.072000px;}
.ls2_c00249{letter-spacing:0.144000px;}
.lsf_c00249{letter-spacing:0.180360px;}
.ls14_c00249{letter-spacing:0.234301px;}
.ls6_c00249{letter-spacing:1.800000px;}
.ls1_c00249{letter-spacing:2.160000px;}
.ls7_c00249{letter-spacing:6.120000px;}
.ls8_c00249{letter-spacing:6.840000px;}
.ls5_c00249{letter-spacing:8.280000px;}
.ls3_c00249{letter-spacing:9.360000px;}
.lsa_c00249{letter-spacing:16.920000px;}
.ls4_c00249{letter-spacing:37.440000px;}
.ls0_c00249{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00249{word-spacing:-18.144000px;}
.ws4_c00249{word-spacing:-18.072000px;}
.ws6_c00249{word-spacing:-18.000000px;}
.ws0_c00249{word-spacing:-17.928000px;}
.ws5_c00249{word-spacing:-17.784000px;}
.ws7_c00249{word-spacing:-17.568000px;}
.ws2_c00249{word-spacing:-15.210360px;}
.ws1_c00249{word-spacing:-15.030000px;}
.ws8_c00249{word-spacing:-7.531110px;}
.wsb_c00249{word-spacing:-0.162000px;}
.wsc_c00249{word-spacing:-0.144000px;}
.ws26_c00249{word-spacing:-0.133886px;}
.wsd_c00249{word-spacing:-0.072000px;}
.wsa_c00249{word-spacing:0.000000px;}
.ws10_c00249{word-spacing:0.060120px;}
.ws28_c00249{word-spacing:0.066943px;}
.wse_c00249{word-spacing:0.120240px;}
.ws27_c00249{word-spacing:0.133886px;}
.wsf_c00249{word-spacing:0.240480px;}
.ws25_c00249{word-spacing:0.288000px;}
.ws15_c00249{word-spacing:1.800000px;}
.ws14_c00249{word-spacing:2.160000px;}
.ws12_c00249{word-spacing:2.736000px;}
.ws22_c00249{word-spacing:2.808000px;}
.ws11_c00249{word-spacing:3.240000px;}
.ws20_c00249{word-spacing:3.888000px;}
.ws17_c00249{word-spacing:4.896000px;}
.ws16_c00249{word-spacing:5.328000px;}
.ws18_c00249{word-spacing:5.400000px;}
.ws21_c00249{word-spacing:6.480000px;}
.ws1e_c00249{word-spacing:7.920000px;}
.ws1f_c00249{word-spacing:8.136000px;}
.ws1c_c00249{word-spacing:8.208000px;}
.ws1d_c00249{word-spacing:8.280000px;}
.ws19_c00249{word-spacing:9.288000px;}
.ws1a_c00249{word-spacing:9.360000px;}
.ws23_c00249{word-spacing:12.528000px;}
.ws24_c00249{word-spacing:17.280000px;}
.ws9_c00249{word-spacing:28.793994px;}
.ws13_c00249{word-spacing:31.248000px;}
.ws1b_c00249{word-spacing:37.440000px;}
._0_c00249{margin-left:-2.160000px;}
._1_c00249{margin-left:-1.080000px;}
._3_c00249{width:1.008000px;}
._2_c00249{width:2.376000px;}
.fc0_c00249{color:rgb(0,0,0);}
.fs3_c00249{font-size:33.471600px;}
.fs0_c00249{font-size:54.000000px;}
.fs2_c00249{font-size:60.120000px;}
.fs1_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y1d_c00249{bottom:6.903750px;}
.y1e_c00249{bottom:44.859450px;}
.y2a_c00249{bottom:57.240000px;}
.y26_c00249{bottom:71.892900px;}
.y1f_c00249{bottom:82.815150px;}
.y20_c00249{bottom:120.770850px;}
.y1b_c00249{bottom:130.320000px;}
.y29_c00249{bottom:141.713700px;}
.y28_c00249{bottom:156.313650px;}
.y21_c00249{bottom:158.726700px;}
.y1a_c00249{bottom:161.370000px;}
.y27_c00249{bottom:166.567800px;}
.y19_c00249{bottom:192.420000px;}
.y22_c00249{bottom:196.682400px;}
.y18_c00249{bottom:223.470000px;}
.y23_c00249{bottom:234.638100px;}
.y17_c00249{bottom:254.520000px;}
.y24_c00249{bottom:272.593800px;}
.y16_c00249{bottom:285.570000px;}
.y25_c00249{bottom:310.549650px;}
.y15_c00249{bottom:316.620000px;}
.y14_c00249{bottom:347.670000px;}
.y13_c00249{bottom:378.720000px;}
.y12_c00249{bottom:409.770000px;}
.y11_c00249{bottom:440.820000px;}
.y10_c00249{bottom:471.870000px;}
.yf_c00249{bottom:502.920000px;}
.ye_c00249{bottom:533.880000px;}
.yd_c00249{bottom:564.930000px;}
.yc_c00249{bottom:595.980000px;}
.yb_c00249{bottom:627.030000px;}
.ya_c00249{bottom:658.080000px;}
.y9_c00249{bottom:688.950000px;}
.y8_c00249{bottom:720.180000px;}
.y7_c00249{bottom:748.890000px;}
.y6_c00249{bottom:762.660000px;}
.y1c_c00249{bottom:762.973500px;}
.y5_c00249{bottom:1089.450000px;}
.y4_c00249{bottom:1131.030000px;}
.y3_c00249{bottom:1150.915500px;}
.y2_c00249{bottom:1166.400000px;}
.y1_c00249{bottom:1197.450000px;}
.h7_c00249{height:24.891234px;}
.h2_c00249{height:52.998047px;}
.h5_c00249{height:59.004492px;}
.h3_c00249{height:70.664062px;}
.h4_c00249{height:72.562500px;}
.h6_c00249{height:322.314000px;}
.h0_c00249{height:1262.880000px;}
.h1_c00249{height:1263.000000px;}
.w2_c00249{width:637.323000px;}
.w0_c00249{width:893.070000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x8_c00249{left:5.515800px;}
.x5_c00249{left:7.207200px;}
.x7_c00249{left:9.782400px;}
.x6_c00249{left:14.049000px;}
.x9_c00249{left:47.345100px;}
.x2_c00249{left:127.620000px;}
.x3_c00249{left:328.860000px;}
.x1_c00249{left:446.580000px;}
.xa_c00249{left:563.151750px;}
.x4_c00249{left:765.450000px;}
@media print{
.v2_c00249{vertical-align:-74.240000pt;}
.v1_c00249{vertical-align:-55.056000pt;}
.v0_c00249{vertical-align:0.000000pt;}
.ls12_c00249{letter-spacing:-0.384000pt;}
.ls10_c00249{letter-spacing:-0.256000pt;}
.ls11_c00249{letter-spacing:-0.192000pt;}
.lsd_c00249{letter-spacing:-0.106880pt;}
.lsc_c00249{letter-spacing:-0.064000pt;}
.lse_c00249{letter-spacing:-0.053440pt;}
.ls13_c00249{letter-spacing:-0.029753pt;}
.lsb_c00249{letter-spacing:0.000000pt;}
.ls15_c00249{letter-spacing:0.029753pt;}
.ls9_c00249{letter-spacing:0.064000pt;}
.ls2_c00249{letter-spacing:0.128000pt;}
.lsf_c00249{letter-spacing:0.160320pt;}
.ls14_c00249{letter-spacing:0.208268pt;}
.ls6_c00249{letter-spacing:1.600000pt;}
.ls1_c00249{letter-spacing:1.920000pt;}
.ls7_c00249{letter-spacing:5.440000pt;}
.ls8_c00249{letter-spacing:6.080000pt;}
.ls5_c00249{letter-spacing:7.360000pt;}
.ls3_c00249{letter-spacing:8.320000pt;}
.lsa_c00249{letter-spacing:15.040000pt;}
.ls4_c00249{letter-spacing:33.280000pt;}
.ls0_c00249{letter-spacing:284.016000pt;}
.ws3_c00249{word-spacing:-16.128000pt;}
.ws4_c00249{word-spacing:-16.064000pt;}
.ws6_c00249{word-spacing:-16.000000pt;}
.ws0_c00249{word-spacing:-15.936000pt;}
.ws5_c00249{word-spacing:-15.808000pt;}
.ws7_c00249{word-spacing:-15.616000pt;}
.ws2_c00249{word-spacing:-13.520320pt;}
.ws1_c00249{word-spacing:-13.360000pt;}
.ws8_c00249{word-spacing:-6.694320pt;}
.wsb_c00249{word-spacing:-0.144000pt;}
.wsc_c00249{word-spacing:-0.128000pt;}
.ws26_c00249{word-spacing:-0.119010pt;}
.wsd_c00249{word-spacing:-0.064000pt;}
.wsa_c00249{word-spacing:0.000000pt;}
.ws10_c00249{word-spacing:0.053440pt;}
.ws28_c00249{word-spacing:0.059505pt;}
.wse_c00249{word-spacing:0.106880pt;}
.ws27_c00249{word-spacing:0.119010pt;}
.wsf_c00249{word-spacing:0.213760pt;}
.ws25_c00249{word-spacing:0.256000pt;}
.ws15_c00249{word-spacing:1.600000pt;}
.ws14_c00249{word-spacing:1.920000pt;}
.ws12_c00249{word-spacing:2.432000pt;}
.ws22_c00249{word-spacing:2.496000pt;}
.ws11_c00249{word-spacing:2.880000pt;}
.ws20_c00249{word-spacing:3.456000pt;}
.ws17_c00249{word-spacing:4.352000pt;}
.ws16_c00249{word-spacing:4.736000pt;}
.ws18_c00249{word-spacing:4.800000pt;}
.ws21_c00249{word-spacing:5.760000pt;}
.ws1e_c00249{word-spacing:7.040000pt;}
.ws1f_c00249{word-spacing:7.232000pt;}
.ws1c_c00249{word-spacing:7.296000pt;}
.ws1d_c00249{word-spacing:7.360000pt;}
.ws19_c00249{word-spacing:8.256000pt;}
.ws1a_c00249{word-spacing:8.320000pt;}
.ws23_c00249{word-spacing:11.136000pt;}
.ws24_c00249{word-spacing:15.360000pt;}
.ws9_c00249{word-spacing:25.594661pt;}
.ws13_c00249{word-spacing:27.776000pt;}
.ws1b_c00249{word-spacing:33.280000pt;}
._0_c00249{margin-left:-1.920000pt;}
._1_c00249{margin-left:-0.960000pt;}
._3_c00249{width:0.896000pt;}
._2_c00249{width:2.112000pt;}
.fs3_c00249{font-size:29.752533pt;}
.fs0_c00249{font-size:48.000000pt;}
.fs2_c00249{font-size:53.440000pt;}
.fs1_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y1d_c00249{bottom:6.136667pt;}
.y1e_c00249{bottom:39.875067pt;}
.y2a_c00249{bottom:50.880000pt;}
.y26_c00249{bottom:63.904800pt;}
.y1f_c00249{bottom:73.613467pt;}
.y20_c00249{bottom:107.351867pt;}
.y1b_c00249{bottom:115.840000pt;}
.y29_c00249{bottom:125.967733pt;}
.y28_c00249{bottom:138.945467pt;}
.y21_c00249{bottom:141.090400pt;}
.y1a_c00249{bottom:143.440000pt;}
.y27_c00249{bottom:148.060267pt;}
.y19_c00249{bottom:171.040000pt;}
.y22_c00249{bottom:174.828800pt;}
.y18_c00249{bottom:198.640000pt;}
.y23_c00249{bottom:208.567200pt;}
.y17_c00249{bottom:226.240000pt;}
.y24_c00249{bottom:242.305600pt;}
.y16_c00249{bottom:253.840000pt;}
.y25_c00249{bottom:276.044133pt;}
.y15_c00249{bottom:281.440000pt;}
.y14_c00249{bottom:309.040000pt;}
.y13_c00249{bottom:336.640000pt;}
.y12_c00249{bottom:364.240000pt;}
.y11_c00249{bottom:391.840000pt;}
.y10_c00249{bottom:419.440000pt;}
.yf_c00249{bottom:447.040000pt;}
.ye_c00249{bottom:474.560000pt;}
.yd_c00249{bottom:502.160000pt;}
.yc_c00249{bottom:529.760000pt;}
.yb_c00249{bottom:557.360000pt;}
.ya_c00249{bottom:584.960000pt;}
.y9_c00249{bottom:612.400000pt;}
.y8_c00249{bottom:640.160000pt;}
.y7_c00249{bottom:665.680000pt;}
.y6_c00249{bottom:677.920000pt;}
.y1c_c00249{bottom:678.198667pt;}
.y5_c00249{bottom:968.400000pt;}
.y4_c00249{bottom:1005.360000pt;}
.y3_c00249{bottom:1023.036000pt;}
.y2_c00249{bottom:1036.800000pt;}
.y1_c00249{bottom:1064.400000pt;}
.h7_c00249{height:22.125541pt;}
.h2_c00249{height:47.109375pt;}
.h5_c00249{height:52.448437pt;}
.h3_c00249{height:62.812500pt;}
.h4_c00249{height:64.500000pt;}
.h6_c00249{height:286.501333pt;}
.h0_c00249{height:1122.560000pt;}
.h1_c00249{height:1122.666667pt;}
.w2_c00249{width:566.509333pt;}
.w0_c00249{width:793.840000pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x8_c00249{left:4.902933pt;}
.x5_c00249{left:6.406400pt;}
.x7_c00249{left:8.695467pt;}
.x6_c00249{left:12.488000pt;}
.x9_c00249{left:42.084533pt;}
.x2_c00249{left:113.440000pt;}
.x3_c00249{left:292.320000pt;}
.x1_c00249{left:396.960000pt;}
.xa_c00249{left:500.579333pt;}
.x4_c00249{left:680.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_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_98b220108d156865517e96bf.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.284180;font-style: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;}
.lse_c00250{letter-spacing:-0.432000px;}
.lsc_c00250{letter-spacing:-0.288000px;}
.lsf_c00250{letter-spacing:-0.216000px;}
.lsb_c00250{letter-spacing:-0.108000px;}
.lsd_c00250{letter-spacing:-0.072000px;}
.lsa_c00250{letter-spacing:0.000000px;}
.ls1_c00250{letter-spacing:0.072000px;}
.ls5_c00250{letter-spacing:0.144000px;}
.ls8_c00250{letter-spacing:0.158400px;}
.ls7_c00250{letter-spacing:3.600000px;}
.ls3_c00250{letter-spacing:7.560000px;}
.ls4_c00250{letter-spacing:8.280000px;}
.ls9_c00250{letter-spacing:8.640000px;}
.ls6_c00250{letter-spacing:9.360000px;}
.ls2_c00250{letter-spacing:14.760000px;}
.ls0_c00250{letter-spacing:18.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00250{word-spacing:-18.072000px;}
.ws2_c00250{word-spacing:-18.000000px;}
.ws4_c00250{word-spacing:-17.928000px;}
.ws5_c00250{word-spacing:-17.784000px;}
.ws0_c00250{word-spacing:-17.712000px;}
.ws3_c00250{word-spacing:-17.568000px;}
.ws1a_c00250{word-spacing:-0.072000px;}
.ws6_c00250{word-spacing:0.000000px;}
.ws8_c00250{word-spacing:0.162000px;}
.ws31_c00250{word-spacing:0.216000px;}
.ws7_c00250{word-spacing:0.270000px;}
.ws2c_c00250{word-spacing:0.648000px;}
.ws18_c00250{word-spacing:1.080000px;}
.ws19_c00250{word-spacing:2.088000px;}
.wsb_c00250{word-spacing:2.160000px;}
.ws22_c00250{word-spacing:3.096000px;}
.ws21_c00250{word-spacing:3.600000px;}
.wsc_c00250{word-spacing:4.680000px;}
.wsd_c00250{word-spacing:5.040000px;}
.wse_c00250{word-spacing:6.048000px;}
.ws2a_c00250{word-spacing:6.120000px;}
.ws29_c00250{word-spacing:6.768000px;}
.ws2e_c00250{word-spacing:7.200000px;}
.ws14_c00250{word-spacing:7.488000px;}
.ws15_c00250{word-spacing:7.560000px;}
.ws33_c00250{word-spacing:7.848000px;}
.ws32_c00250{word-spacing:7.920000px;}
.ws17_c00250{word-spacing:8.208000px;}
.ws16_c00250{word-spacing:8.280000px;}
.ws30_c00250{word-spacing:8.568000px;}
.ws1e_c00250{word-spacing:8.856000px;}
.ws1c_c00250{word-spacing:8.928000px;}
.ws1d_c00250{word-spacing:9.000000px;}
.ws1b_c00250{word-spacing:9.360000px;}
.wsf_c00250{word-spacing:9.720000px;}
.ws2f_c00250{word-spacing:10.080000px;}
.ws20_c00250{word-spacing:12.600000px;}
.ws1f_c00250{word-spacing:12.960000px;}
.ws12_c00250{word-spacing:14.616000px;}
.ws13_c00250{word-spacing:14.688000px;}
.ws11_c00250{word-spacing:14.760000px;}
.ws10_c00250{word-spacing:14.832000px;}
.ws28_c00250{word-spacing:15.048000px;}
.ws27_c00250{word-spacing:15.120000px;}
.ws9_c00250{word-spacing:18.000000px;}
.ws25_c00250{word-spacing:20.448000px;}
.ws2b_c00250{word-spacing:20.808000px;}
.ws26_c00250{word-spacing:20.880000px;}
.wsa_c00250{word-spacing:29.088000px;}
.ws23_c00250{word-spacing:32.688000px;}
.ws24_c00250{word-spacing:32.760000px;}
.ws2d_c00250{word-spacing:34.848000px;}
._1_c00250{margin-left:-1.058400px;}
._0_c00250{width:1.220400px;}
._5_c00250{width:5.760000px;}
._4_c00250{width:6.840000px;}
._2_c00250{width:8.474400px;}
._3_c00250{width:13.204800px;}
._6_c00250{width:20.592000px;}
.fc0_c00250{color:rgb(0,0,0);}
.fs0_c00250{font-size:54.000000px;}
.fs1_c00250{font-size:72.000000px;}
.y0_c00250{bottom:0.000000px;}
.y27_c00250{bottom:57.240000px;}
.y26_c00250{bottom:116.820000px;}
.y25_c00250{bottom:147.870000px;}
.y24_c00250{bottom:178.920000px;}
.y23_c00250{bottom:209.970000px;}
.y22_c00250{bottom:241.020000px;}
.y21_c00250{bottom:272.070000px;}
.y20_c00250{bottom:303.120000px;}
.y1f_c00250{bottom:334.170000px;}
.y1e_c00250{bottom:365.220000px;}
.y1d_c00250{bottom:396.270000px;}
.y1c_c00250{bottom:427.320000px;}
.y1b_c00250{bottom:458.370000px;}
.y1a_c00250{bottom:489.420000px;}
.y19_c00250{bottom:520.470000px;}
.y18_c00250{bottom:551.520000px;}
.y17_c00250{bottom:582.570000px;}
.y16_c00250{bottom:613.620000px;}
.y15_c00250{bottom:644.670000px;}
.y14_c00250{bottom:675.720000px;}
.y13_c00250{bottom:706.770000px;}
.y12_c00250{bottom:737.820000px;}
.y11_c00250{bottom:768.870000px;}
.y10_c00250{bottom:799.920000px;}
.yf_c00250{bottom:830.970000px;}
.ye_c00250{bottom:861.930000px;}
.yd_c00250{bottom:892.980000px;}
.yc_c00250{bottom:924.030000px;}
.yb_c00250{bottom:955.080000px;}
.ya_c00250{bottom:986.130000px;}
.y9_c00250{bottom:1017.180000px;}
.y8_c00250{bottom:1048.230000px;}
.y7_c00250{bottom:1079.280000px;}
.y6_c00250{bottom:1110.330000px;}
.y5_c00250{bottom:1131.030000px;}
.y4_c00250{bottom:1150.920000px;}
.y3_c00250{bottom:1166.404500px;}
.y2_c00250{bottom:1181.970000px;}
.y1_c00250{bottom:1197.450000px;}
.h3_c00250{height:52.971680px;}
.h2_c00250{height:52.998047px;}
.h4_c00250{height:70.664062px;}
.h0_c00250{height:1262.880000px;}
.h1_c00250{height:1263.000000px;}
.w0_c00250{width:893.070000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x3_c00250{left:127.620000px;}
.x2_c00250{left:425.160000px;}
.x1_c00250{left:446.580000px;}
.x4_c00250{left:738.540000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.lse_c00250{letter-spacing:-0.384000pt;}
.lsc_c00250{letter-spacing:-0.256000pt;}
.lsf_c00250{letter-spacing:-0.192000pt;}
.lsb_c00250{letter-spacing:-0.096000pt;}
.lsd_c00250{letter-spacing:-0.064000pt;}
.lsa_c00250{letter-spacing:0.000000pt;}
.ls1_c00250{letter-spacing:0.064000pt;}
.ls5_c00250{letter-spacing:0.128000pt;}
.ls8_c00250{letter-spacing:0.140800pt;}
.ls7_c00250{letter-spacing:3.200000pt;}
.ls3_c00250{letter-spacing:6.720000pt;}
.ls4_c00250{letter-spacing:7.360000pt;}
.ls9_c00250{letter-spacing:7.680000pt;}
.ls6_c00250{letter-spacing:8.320000pt;}
.ls2_c00250{letter-spacing:13.120000pt;}
.ls0_c00250{letter-spacing:16.000000pt;}
.ws1_c00250{word-spacing:-16.064000pt;}
.ws2_c00250{word-spacing:-16.000000pt;}
.ws4_c00250{word-spacing:-15.936000pt;}
.ws5_c00250{word-spacing:-15.808000pt;}
.ws0_c00250{word-spacing:-15.744000pt;}
.ws3_c00250{word-spacing:-15.616000pt;}
.ws1a_c00250{word-spacing:-0.064000pt;}
.ws6_c00250{word-spacing:0.000000pt;}
.ws8_c00250{word-spacing:0.144000pt;}
.ws31_c00250{word-spacing:0.192000pt;}
.ws7_c00250{word-spacing:0.240000pt;}
.ws2c_c00250{word-spacing:0.576000pt;}
.ws18_c00250{word-spacing:0.960000pt;}
.ws19_c00250{word-spacing:1.856000pt;}
.wsb_c00250{word-spacing:1.920000pt;}
.ws22_c00250{word-spacing:2.752000pt;}
.ws21_c00250{word-spacing:3.200000pt;}
.wsc_c00250{word-spacing:4.160000pt;}
.wsd_c00250{word-spacing:4.480000pt;}
.wse_c00250{word-spacing:5.376000pt;}
.ws2a_c00250{word-spacing:5.440000pt;}
.ws29_c00250{word-spacing:6.016000pt;}
.ws2e_c00250{word-spacing:6.400000pt;}
.ws14_c00250{word-spacing:6.656000pt;}
.ws15_c00250{word-spacing:6.720000pt;}
.ws33_c00250{word-spacing:6.976000pt;}
.ws32_c00250{word-spacing:7.040000pt;}
.ws17_c00250{word-spacing:7.296000pt;}
.ws16_c00250{word-spacing:7.360000pt;}
.ws30_c00250{word-spacing:7.616000pt;}
.ws1e_c00250{word-spacing:7.872000pt;}
.ws1c_c00250{word-spacing:7.936000pt;}
.ws1d_c00250{word-spacing:8.000000pt;}
.ws1b_c00250{word-spacing:8.320000pt;}
.wsf_c00250{word-spacing:8.640000pt;}
.ws2f_c00250{word-spacing:8.960000pt;}
.ws20_c00250{word-spacing:11.200000pt;}
.ws1f_c00250{word-spacing:11.520000pt;}
.ws12_c00250{word-spacing:12.992000pt;}
.ws13_c00250{word-spacing:13.056000pt;}
.ws11_c00250{word-spacing:13.120000pt;}
.ws10_c00250{word-spacing:13.184000pt;}
.ws28_c00250{word-spacing:13.376000pt;}
.ws27_c00250{word-spacing:13.440000pt;}
.ws9_c00250{word-spacing:16.000000pt;}
.ws25_c00250{word-spacing:18.176000pt;}
.ws2b_c00250{word-spacing:18.496000pt;}
.ws26_c00250{word-spacing:18.560000pt;}
.wsa_c00250{word-spacing:25.856000pt;}
.ws23_c00250{word-spacing:29.056000pt;}
.ws24_c00250{word-spacing:29.120000pt;}
.ws2d_c00250{word-spacing:30.976000pt;}
._1_c00250{margin-left:-0.940800pt;}
._0_c00250{width:1.084800pt;}
._5_c00250{width:5.120000pt;}
._4_c00250{width:6.080000pt;}
._2_c00250{width:7.532800pt;}
._3_c00250{width:11.737600pt;}
._6_c00250{width:18.304000pt;}
.fs0_c00250{font-size:48.000000pt;}
.fs1_c00250{font-size:64.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y27_c00250{bottom:50.880000pt;}
.y26_c00250{bottom:103.840000pt;}
.y25_c00250{bottom:131.440000pt;}
.y24_c00250{bottom:159.040000pt;}
.y23_c00250{bottom:186.640000pt;}
.y22_c00250{bottom:214.240000pt;}
.y21_c00250{bottom:241.840000pt;}
.y20_c00250{bottom:269.440000pt;}
.y1f_c00250{bottom:297.040000pt;}
.y1e_c00250{bottom:324.640000pt;}
.y1d_c00250{bottom:352.240000pt;}
.y1c_c00250{bottom:379.840000pt;}
.y1b_c00250{bottom:407.440000pt;}
.y1a_c00250{bottom:435.040000pt;}
.y19_c00250{bottom:462.640000pt;}
.y18_c00250{bottom:490.240000pt;}
.y17_c00250{bottom:517.840000pt;}
.y16_c00250{bottom:545.440000pt;}
.y15_c00250{bottom:573.040000pt;}
.y14_c00250{bottom:600.640000pt;}
.y13_c00250{bottom:628.240000pt;}
.y12_c00250{bottom:655.840000pt;}
.y11_c00250{bottom:683.440000pt;}
.y10_c00250{bottom:711.040000pt;}
.yf_c00250{bottom:738.640000pt;}
.ye_c00250{bottom:766.160000pt;}
.yd_c00250{bottom:793.760000pt;}
.yc_c00250{bottom:821.360000pt;}
.yb_c00250{bottom:848.960000pt;}
.ya_c00250{bottom:876.560000pt;}
.y9_c00250{bottom:904.160000pt;}
.y8_c00250{bottom:931.760000pt;}
.y7_c00250{bottom:959.360000pt;}
.y6_c00250{bottom:986.960000pt;}
.y5_c00250{bottom:1005.360000pt;}
.y4_c00250{bottom:1023.040000pt;}
.y3_c00250{bottom:1036.804000pt;}
.y2_c00250{bottom:1050.640000pt;}
.y1_c00250{bottom:1064.400000pt;}
.h3_c00250{height:47.085938pt;}
.h2_c00250{height:47.109375pt;}
.h4_c00250{height:62.812500pt;}
.h0_c00250{height:1122.560000pt;}
.h1_c00250{height:1122.666667pt;}
.w0_c00250{width:793.840000pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x3_c00250{left:113.440000pt;}
.x2_c00250{left:377.920000pt;}
.x1_c00250{left:396.960000pt;}
.x4_c00250{left:656.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_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_472649445c0e87a3fbff1c38.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.284180;font-style: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);}
.v1_c00251{vertical-align:-61.938000px;}
.v0_c00251{vertical-align:0.000000px;}
.lsc_c00251{letter-spacing:-0.288000px;}
.lsd_c00251{letter-spacing:-0.072000px;}
.lsb_c00251{letter-spacing:0.000000px;}
.ls1_c00251{letter-spacing:0.072000px;}
.ls3_c00251{letter-spacing:0.144000px;}
.ls7_c00251{letter-spacing:3.960000px;}
.ls8_c00251{letter-spacing:4.320000px;}
.lsa_c00251{letter-spacing:6.120000px;}
.ls5_c00251{letter-spacing:8.280000px;}
.ls6_c00251{letter-spacing:16.920000px;}
.ls4_c00251{letter-spacing:18.360000px;}
.ls9_c00251{letter-spacing:25.200000px;}
.ls2_c00251{letter-spacing:25.920000px;}
.ls0_c00251{letter-spacing:319.518000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00251{word-spacing:-18.072000px;}
.ws1_c00251{word-spacing:-18.000000px;}
.ws0_c00251{word-spacing:-17.928000px;}
.ws4_c00251{word-spacing:-0.162000px;}
.ws9_c00251{word-spacing:-0.072000px;}
.ws3_c00251{word-spacing:0.000000px;}
.wsb_c00251{word-spacing:0.288000px;}
.ws2d_c00251{word-spacing:0.360000px;}
.ws7_c00251{word-spacing:1.368000px;}
.ws8_c00251{word-spacing:1.440000px;}
.ws6_c00251{word-spacing:2.808000px;}
.wsa_c00251{word-spacing:3.168000px;}
.ws2a_c00251{word-spacing:3.816000px;}
.ws5_c00251{word-spacing:4.248000px;}
.ws29_c00251{word-spacing:4.320000px;}
.ws22_c00251{word-spacing:4.608000px;}
.ws23_c00251{word-spacing:5.040000px;}
.ws20_c00251{word-spacing:5.328000px;}
.ws1f_c00251{word-spacing:5.400000px;}
.ws30_c00251{word-spacing:6.048000px;}
.ws2f_c00251{word-spacing:6.120000px;}
.ws28_c00251{word-spacing:6.480000px;}
.ws1e_c00251{word-spacing:7.848000px;}
.ws1a_c00251{word-spacing:7.920000px;}
.ws1b_c00251{word-spacing:8.208000px;}
.ws21_c00251{word-spacing:8.280000px;}
.ws10_c00251{word-spacing:13.320000px;}
.wsf_c00251{word-spacing:13.608000px;}
.ws11_c00251{word-spacing:13.680000px;}
.ws19_c00251{word-spacing:13.896000px;}
.ws17_c00251{word-spacing:13.968000px;}
.ws18_c00251{word-spacing:14.040000px;}
.ws15_c00251{word-spacing:14.688000px;}
.ws24_c00251{word-spacing:14.760000px;}
.ws25_c00251{word-spacing:16.128000px;}
.ws27_c00251{word-spacing:16.488000px;}
.ws26_c00251{word-spacing:16.560000px;}
.ws1c_c00251{word-spacing:17.208000px;}
.ws2e_c00251{word-spacing:17.280000px;}
.ws13_c00251{word-spacing:17.640000px;}
.ws12_c00251{word-spacing:17.928000px;}
.ws1d_c00251{word-spacing:20.088000px;}
.ws16_c00251{word-spacing:24.768000px;}
.ws2b_c00251{word-spacing:24.840000px;}
.ws2c_c00251{word-spacing:25.128000px;}
.wse_c00251{word-spacing:25.200000px;}
.wsd_c00251{word-spacing:25.848000px;}
.wsc_c00251{word-spacing:25.920000px;}
.ws14_c00251{word-spacing:35.280000px;}
._0_c00251{margin-left:-1.159200px;}
._2_c00251{width:1.296000px;}
._1_c00251{width:3.960000px;}
._3_c00251{width:7.704000px;}
._4_c00251{width:26.856000px;}
.fc0_c00251{color:rgb(0,0,0);}
.fs0_c00251{font-size:54.000000px;}
.fs1_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y25_c00251{bottom:57.240000px;}
.y24_c00251{bottom:147.870000px;}
.y23_c00251{bottom:178.920000px;}
.y22_c00251{bottom:209.970000px;}
.y21_c00251{bottom:241.020000px;}
.y20_c00251{bottom:272.070000px;}
.y1f_c00251{bottom:303.120000px;}
.y1e_c00251{bottom:334.170000px;}
.y1d_c00251{bottom:365.220000px;}
.y1c_c00251{bottom:396.270000px;}
.y1b_c00251{bottom:427.320000px;}
.y1a_c00251{bottom:458.370000px;}
.y19_c00251{bottom:489.420000px;}
.y18_c00251{bottom:520.470000px;}
.y17_c00251{bottom:551.520000px;}
.y16_c00251{bottom:582.570000px;}
.y15_c00251{bottom:613.620000px;}
.y14_c00251{bottom:644.670000px;}
.y13_c00251{bottom:675.720000px;}
.y12_c00251{bottom:706.770000px;}
.y11_c00251{bottom:737.820000px;}
.y10_c00251{bottom:768.870000px;}
.yf_c00251{bottom:799.920000px;}
.ye_c00251{bottom:830.970000px;}
.yd_c00251{bottom:861.930000px;}
.yc_c00251{bottom:892.980000px;}
.yb_c00251{bottom:924.030000px;}
.ya_c00251{bottom:955.080000px;}
.y9_c00251{bottom:986.130000px;}
.y8_c00251{bottom:1017.180000px;}
.y7_c00251{bottom:1048.230000px;}
.y6_c00251{bottom:1079.280000px;}
.y5_c00251{bottom:1110.330000px;}
.y4_c00251{bottom:1131.030000px;}
.y3_c00251{bottom:1150.915500px;}
.y2_c00251{bottom:1166.400000px;}
.y1_c00251{bottom:1197.450000px;}
.h2_c00251{height:52.998047px;}
.h3_c00251{height:70.664062px;}
.h0_c00251{height:1262.880000px;}
.h1_c00251{height:1263.000000px;}
.w0_c00251{width:893.070000px;}
.w1_c00251{width:893.250000px;}
.x0_c00251{left:0.000000px;}
.x2_c00251{left:127.620000px;}
.x1_c00251{left:446.580000px;}
@media print{
.v1_c00251{vertical-align:-55.056000pt;}
.v0_c00251{vertical-align:0.000000pt;}
.lsc_c00251{letter-spacing:-0.256000pt;}
.lsd_c00251{letter-spacing:-0.064000pt;}
.lsb_c00251{letter-spacing:0.000000pt;}
.ls1_c00251{letter-spacing:0.064000pt;}
.ls3_c00251{letter-spacing:0.128000pt;}
.ls7_c00251{letter-spacing:3.520000pt;}
.ls8_c00251{letter-spacing:3.840000pt;}
.lsa_c00251{letter-spacing:5.440000pt;}
.ls5_c00251{letter-spacing:7.360000pt;}
.ls6_c00251{letter-spacing:15.040000pt;}
.ls4_c00251{letter-spacing:16.320000pt;}
.ls9_c00251{letter-spacing:22.400000pt;}
.ls2_c00251{letter-spacing:23.040000pt;}
.ls0_c00251{letter-spacing:284.016000pt;}
.ws2_c00251{word-spacing:-16.064000pt;}
.ws1_c00251{word-spacing:-16.000000pt;}
.ws0_c00251{word-spacing:-15.936000pt;}
.ws4_c00251{word-spacing:-0.144000pt;}
.ws9_c00251{word-spacing:-0.064000pt;}
.ws3_c00251{word-spacing:0.000000pt;}
.wsb_c00251{word-spacing:0.256000pt;}
.ws2d_c00251{word-spacing:0.320000pt;}
.ws7_c00251{word-spacing:1.216000pt;}
.ws8_c00251{word-spacing:1.280000pt;}
.ws6_c00251{word-spacing:2.496000pt;}
.wsa_c00251{word-spacing:2.816000pt;}
.ws2a_c00251{word-spacing:3.392000pt;}
.ws5_c00251{word-spacing:3.776000pt;}
.ws29_c00251{word-spacing:3.840000pt;}
.ws22_c00251{word-spacing:4.096000pt;}
.ws23_c00251{word-spacing:4.480000pt;}
.ws20_c00251{word-spacing:4.736000pt;}
.ws1f_c00251{word-spacing:4.800000pt;}
.ws30_c00251{word-spacing:5.376000pt;}
.ws2f_c00251{word-spacing:5.440000pt;}
.ws28_c00251{word-spacing:5.760000pt;}
.ws1e_c00251{word-spacing:6.976000pt;}
.ws1a_c00251{word-spacing:7.040000pt;}
.ws1b_c00251{word-spacing:7.296000pt;}
.ws21_c00251{word-spacing:7.360000pt;}
.ws10_c00251{word-spacing:11.840000pt;}
.wsf_c00251{word-spacing:12.096000pt;}
.ws11_c00251{word-spacing:12.160000pt;}
.ws19_c00251{word-spacing:12.352000pt;}
.ws17_c00251{word-spacing:12.416000pt;}
.ws18_c00251{word-spacing:12.480000pt;}
.ws15_c00251{word-spacing:13.056000pt;}
.ws24_c00251{word-spacing:13.120000pt;}
.ws25_c00251{word-spacing:14.336000pt;}
.ws27_c00251{word-spacing:14.656000pt;}
.ws26_c00251{word-spacing:14.720000pt;}
.ws1c_c00251{word-spacing:15.296000pt;}
.ws2e_c00251{word-spacing:15.360000pt;}
.ws13_c00251{word-spacing:15.680000pt;}
.ws12_c00251{word-spacing:15.936000pt;}
.ws1d_c00251{word-spacing:17.856000pt;}
.ws16_c00251{word-spacing:22.016000pt;}
.ws2b_c00251{word-spacing:22.080000pt;}
.ws2c_c00251{word-spacing:22.336000pt;}
.wse_c00251{word-spacing:22.400000pt;}
.wsd_c00251{word-spacing:22.976000pt;}
.wsc_c00251{word-spacing:23.040000pt;}
.ws14_c00251{word-spacing:31.360000pt;}
._0_c00251{margin-left:-1.030400pt;}
._2_c00251{width:1.152000pt;}
._1_c00251{width:3.520000pt;}
._3_c00251{width:6.848000pt;}
._4_c00251{width:23.872000pt;}
.fs0_c00251{font-size:48.000000pt;}
.fs1_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y25_c00251{bottom:50.880000pt;}
.y24_c00251{bottom:131.440000pt;}
.y23_c00251{bottom:159.040000pt;}
.y22_c00251{bottom:186.640000pt;}
.y21_c00251{bottom:214.240000pt;}
.y20_c00251{bottom:241.840000pt;}
.y1f_c00251{bottom:269.440000pt;}
.y1e_c00251{bottom:297.040000pt;}
.y1d_c00251{bottom:324.640000pt;}
.y1c_c00251{bottom:352.240000pt;}
.y1b_c00251{bottom:379.840000pt;}
.y1a_c00251{bottom:407.440000pt;}
.y19_c00251{bottom:435.040000pt;}
.y18_c00251{bottom:462.640000pt;}
.y17_c00251{bottom:490.240000pt;}
.y16_c00251{bottom:517.840000pt;}
.y15_c00251{bottom:545.440000pt;}
.y14_c00251{bottom:573.040000pt;}
.y13_c00251{bottom:600.640000pt;}
.y12_c00251{bottom:628.240000pt;}
.y11_c00251{bottom:655.840000pt;}
.y10_c00251{bottom:683.440000pt;}
.yf_c00251{bottom:711.040000pt;}
.ye_c00251{bottom:738.640000pt;}
.yd_c00251{bottom:766.160000pt;}
.yc_c00251{bottom:793.760000pt;}
.yb_c00251{bottom:821.360000pt;}
.ya_c00251{bottom:848.960000pt;}
.y9_c00251{bottom:876.560000pt;}
.y8_c00251{bottom:904.160000pt;}
.y7_c00251{bottom:931.760000pt;}
.y6_c00251{bottom:959.360000pt;}
.y5_c00251{bottom:986.960000pt;}
.y4_c00251{bottom:1005.360000pt;}
.y3_c00251{bottom:1023.036000pt;}
.y2_c00251{bottom:1036.800000pt;}
.y1_c00251{bottom:1064.400000pt;}
.h2_c00251{height:47.109375pt;}
.h3_c00251{height:62.812500pt;}
.h0_c00251{height:1122.560000pt;}
.h1_c00251{height:1122.666667pt;}
.w0_c00251{width:793.840000pt;}
.w1_c00251{width:794.000000pt;}
.x0_c00251{left:0.000000pt;}
.x2_c00251{left:113.440000pt;}
.x1_c00251{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f4fd4715d77a3ac4a0b902e.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00252{letter-spacing:-0.108000px;}
.ls2_c00252{letter-spacing:0.000000px;}
.ls1_c00252{letter-spacing:0.072000px;}
.ls0_c00252{letter-spacing:0.144000px;}
.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:-18.000000px;}
.ws5_c00252{word-spacing:-0.072000px;}
.ws1_c00252{word-spacing:0.000000px;}
.ws3_c00252{word-spacing:0.162000px;}
.ws2_c00252{word-spacing:0.270000px;}
.ws16_c00252{word-spacing:0.288000px;}
.ws17_c00252{word-spacing:0.648000px;}
.wsb_c00252{word-spacing:1.008000px;}
.wsa_c00252{word-spacing:1.080000px;}
.ws4_c00252{word-spacing:1.368000px;}
.ws7_c00252{word-spacing:2.448000px;}
.ws9_c00252{word-spacing:3.240000px;}
.ws10_c00252{word-spacing:4.680000px;}
.ws13_c00252{word-spacing:6.120000px;}
.wse_c00252{word-spacing:6.408000px;}
.wsf_c00252{word-spacing:7.560000px;}
.ws18_c00252{word-spacing:8.640000px;}
.ws12_c00252{word-spacing:10.008000px;}
.wsc_c00252{word-spacing:12.600000px;}
.ws11_c00252{word-spacing:14.688000px;}
.ws8_c00252{word-spacing:15.768000px;}
.ws6_c00252{word-spacing:19.440000px;}
.ws19_c00252{word-spacing:22.248000px;}
.wsd_c00252{word-spacing:22.608000px;}
.ws15_c00252{word-spacing:25.848000px;}
.ws14_c00252{word-spacing:25.920000px;}
._1_c00252{margin-left:-1.058400px;}
._0_c00252{width:1.220400px;}
.fc0_c00252{color:rgb(0,0,0);}
.fs0_c00252{font-size:54.000000px;}
.fs1_c00252{font-size:72.000000px;}
.y0_c00252{bottom:0.000000px;}
.y27_c00252{bottom:57.240000px;}
.y26_c00252{bottom:116.820000px;}
.y25_c00252{bottom:147.870000px;}
.y24_c00252{bottom:178.920000px;}
.y23_c00252{bottom:209.970000px;}
.y22_c00252{bottom:241.020000px;}
.y21_c00252{bottom:272.070000px;}
.y20_c00252{bottom:303.120000px;}
.y1f_c00252{bottom:334.170000px;}
.y1e_c00252{bottom:365.220000px;}
.y1d_c00252{bottom:396.270000px;}
.y1c_c00252{bottom:427.320000px;}
.y1b_c00252{bottom:458.370000px;}
.y1a_c00252{bottom:489.420000px;}
.y19_c00252{bottom:520.470000px;}
.y18_c00252{bottom:551.520000px;}
.y17_c00252{bottom:582.570000px;}
.y16_c00252{bottom:613.620000px;}
.y15_c00252{bottom:644.670000px;}
.y14_c00252{bottom:675.720000px;}
.y13_c00252{bottom:706.770000px;}
.y12_c00252{bottom:737.820000px;}
.y11_c00252{bottom:768.870000px;}
.y10_c00252{bottom:799.920000px;}
.yf_c00252{bottom:830.970000px;}
.ye_c00252{bottom:861.930000px;}
.yd_c00252{bottom:892.980000px;}
.yc_c00252{bottom:924.030000px;}
.yb_c00252{bottom:955.080000px;}
.ya_c00252{bottom:986.130000px;}
.y9_c00252{bottom:1017.180000px;}
.y8_c00252{bottom:1048.230000px;}
.y7_c00252{bottom:1079.280000px;}
.y6_c00252{bottom:1110.330000px;}
.y5_c00252{bottom:1131.030000px;}
.y4_c00252{bottom:1150.920000px;}
.y3_c00252{bottom:1166.404500px;}
.y2_c00252{bottom:1181.970000px;}
.y1_c00252{bottom:1197.450000px;}
.h3_c00252{height:52.971680px;}
.h2_c00252{height:52.998047px;}
.h4_c00252{height:70.664062px;}
.h0_c00252{height:1262.880000px;}
.h1_c00252{height:1263.000000px;}
.w0_c00252{width:893.070000px;}
.w1_c00252{width:893.250000px;}
.x0_c00252{left:0.000000px;}
.x3_c00252{left:127.620000px;}
.x2_c00252{left:425.160000px;}
.x1_c00252{left:446.580000px;}
.x4_c00252{left:738.540000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls3_c00252{letter-spacing:-0.096000pt;}
.ls2_c00252{letter-spacing:0.000000pt;}
.ls1_c00252{letter-spacing:0.064000pt;}
.ls0_c00252{letter-spacing:0.128000pt;}
.ws0_c00252{word-spacing:-16.000000pt;}
.ws5_c00252{word-spacing:-0.064000pt;}
.ws1_c00252{word-spacing:0.000000pt;}
.ws3_c00252{word-spacing:0.144000pt;}
.ws2_c00252{word-spacing:0.240000pt;}
.ws16_c00252{word-spacing:0.256000pt;}
.ws17_c00252{word-spacing:0.576000pt;}
.wsb_c00252{word-spacing:0.896000pt;}
.wsa_c00252{word-spacing:0.960000pt;}
.ws4_c00252{word-spacing:1.216000pt;}
.ws7_c00252{word-spacing:2.176000pt;}
.ws9_c00252{word-spacing:2.880000pt;}
.ws10_c00252{word-spacing:4.160000pt;}
.ws13_c00252{word-spacing:5.440000pt;}
.wse_c00252{word-spacing:5.696000pt;}
.wsf_c00252{word-spacing:6.720000pt;}
.ws18_c00252{word-spacing:7.680000pt;}
.ws12_c00252{word-spacing:8.896000pt;}
.wsc_c00252{word-spacing:11.200000pt;}
.ws11_c00252{word-spacing:13.056000pt;}
.ws8_c00252{word-spacing:14.016000pt;}
.ws6_c00252{word-spacing:17.280000pt;}
.ws19_c00252{word-spacing:19.776000pt;}
.wsd_c00252{word-spacing:20.096000pt;}
.ws15_c00252{word-spacing:22.976000pt;}
.ws14_c00252{word-spacing:23.040000pt;}
._1_c00252{margin-left:-0.940800pt;}
._0_c00252{width:1.084800pt;}
.fs0_c00252{font-size:48.000000pt;}
.fs1_c00252{font-size:64.000000pt;}
.y0_c00252{bottom:0.000000pt;}
.y27_c00252{bottom:50.880000pt;}
.y26_c00252{bottom:103.840000pt;}
.y25_c00252{bottom:131.440000pt;}
.y24_c00252{bottom:159.040000pt;}
.y23_c00252{bottom:186.640000pt;}
.y22_c00252{bottom:214.240000pt;}
.y21_c00252{bottom:241.840000pt;}
.y20_c00252{bottom:269.440000pt;}
.y1f_c00252{bottom:297.040000pt;}
.y1e_c00252{bottom:324.640000pt;}
.y1d_c00252{bottom:352.240000pt;}
.y1c_c00252{bottom:379.840000pt;}
.y1b_c00252{bottom:407.440000pt;}
.y1a_c00252{bottom:435.040000pt;}
.y19_c00252{bottom:462.640000pt;}
.y18_c00252{bottom:490.240000pt;}
.y17_c00252{bottom:517.840000pt;}
.y16_c00252{bottom:545.440000pt;}
.y15_c00252{bottom:573.040000pt;}
.y14_c00252{bottom:600.640000pt;}
.y13_c00252{bottom:628.240000pt;}
.y12_c00252{bottom:655.840000pt;}
.y11_c00252{bottom:683.440000pt;}
.y10_c00252{bottom:711.040000pt;}
.yf_c00252{bottom:738.640000pt;}
.ye_c00252{bottom:766.160000pt;}
.yd_c00252{bottom:793.760000pt;}
.yc_c00252{bottom:821.360000pt;}
.yb_c00252{bottom:848.960000pt;}
.ya_c00252{bottom:876.560000pt;}
.y9_c00252{bottom:904.160000pt;}
.y8_c00252{bottom:931.760000pt;}
.y7_c00252{bottom:959.360000pt;}
.y6_c00252{bottom:986.960000pt;}
.y5_c00252{bottom:1005.360000pt;}
.y4_c00252{bottom:1023.040000pt;}
.y3_c00252{bottom:1036.804000pt;}
.y2_c00252{bottom:1050.640000pt;}
.y1_c00252{bottom:1064.400000pt;}
.h3_c00252{height:47.085938pt;}
.h2_c00252{height:47.109375pt;}
.h4_c00252{height:62.812500pt;}
.h0_c00252{height:1122.560000pt;}
.h1_c00252{height:1122.666667pt;}
.w0_c00252{width:793.840000pt;}
.w1_c00252{width:794.000000pt;}
.x0_c00252{left:0.000000pt;}
.x3_c00252{left:113.440000pt;}
.x2_c00252{left:377.920000pt;}
.x1_c00252{left:396.960000pt;}
.x4_c00252{left:656.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_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_da377ef11c26a048fc5ba3f0.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00253{vertical-align:-61.938000px;}
.v0_c00253{vertical-align:0.000000px;}
.ls3_c00253{letter-spacing:0.000000px;}
.ls4_c00253{letter-spacing:0.072000px;}
.ls1_c00253{letter-spacing:0.144000px;}
.ls0_c00253{letter-spacing:319.518000px;}
.ls2_c00253{letter-spacing:839.970000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:-18.072000px;}
.ws1_c00253{word-spacing:-18.000000px;}
.ws3_c00253{word-spacing:-0.162000px;}
.ws9_c00253{word-spacing:-0.072000px;}
.ws2_c00253{word-spacing:0.000000px;}
.ws11_c00253{word-spacing:0.216000px;}
.ws10_c00253{word-spacing:0.360000px;}
.ws7_c00253{word-spacing:0.720000px;}
.ws5_c00253{word-spacing:4.968000px;}
.ws6_c00253{word-spacing:5.040000px;}
.ws12_c00253{word-spacing:5.328000px;}
.ws13_c00253{word-spacing:5.400000px;}
.wsf_c00253{word-spacing:5.760000px;}
.wsd_c00253{word-spacing:6.408000px;}
.wsc_c00253{word-spacing:6.480000px;}
.wsb_c00253{word-spacing:8.928000px;}
.wsa_c00253{word-spacing:12.600000px;}
.ws8_c00253{word-spacing:13.608000px;}
.wse_c00253{word-spacing:16.848000px;}
.ws4_c00253{word-spacing:17.208000px;}
._0_c00253{margin-left:-1.015200px;}
._1_c00253{width:1.008000px;}
._2_c00253{width:5.832000px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs0_c00253{font-size:54.000000px;}
.fs1_c00253{font-size:72.000000px;}
.fs2_c00253{font-size:96.120000px;}
.y0_c00253{bottom:0.000000px;}
.y16_c00253{bottom:57.240000px;}
.y15_c00253{bottom:613.620000px;}
.y14_c00253{bottom:644.670000px;}
.y13_c00253{bottom:675.720000px;}
.y12_c00253{bottom:706.770000px;}
.y11_c00253{bottom:737.820000px;}
.y10_c00253{bottom:768.870000px;}
.yf_c00253{bottom:799.920000px;}
.ye_c00253{bottom:830.970000px;}
.yd_c00253{bottom:861.930000px;}
.yc_c00253{bottom:892.980000px;}
.yb_c00253{bottom:924.030000px;}
.ya_c00253{bottom:955.080000px;}
.y9_c00253{bottom:986.130000px;}
.y8_c00253{bottom:1017.180000px;}
.y7_c00253{bottom:1048.230000px;}
.y6_c00253{bottom:1079.280000px;}
.y5_c00253{bottom:1110.330000px;}
.y4_c00253{bottom:1131.030000px;}
.y3_c00253{bottom:1150.915500px;}
.y2_c00253{bottom:1166.400000px;}
.y1_c00253{bottom:1197.450000px;}
.h2_c00253{height:52.998047px;}
.h3_c00253{height:70.664062px;}
.h4_c00253{height:96.870938px;}
.h0_c00253{height:1262.880000px;}
.h1_c00253{height:1263.000000px;}
.w0_c00253{width:893.070000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:127.620000px;}
.x1_c00253{left:446.580000px;}
@media print{
.v1_c00253{vertical-align:-55.056000pt;}
.v0_c00253{vertical-align:0.000000pt;}
.ls3_c00253{letter-spacing:0.000000pt;}
.ls4_c00253{letter-spacing:0.064000pt;}
.ls1_c00253{letter-spacing:0.128000pt;}
.ls0_c00253{letter-spacing:284.016000pt;}
.ls2_c00253{letter-spacing:746.640000pt;}
.ws0_c00253{word-spacing:-16.064000pt;}
.ws1_c00253{word-spacing:-16.000000pt;}
.ws3_c00253{word-spacing:-0.144000pt;}
.ws9_c00253{word-spacing:-0.064000pt;}
.ws2_c00253{word-spacing:0.000000pt;}
.ws11_c00253{word-spacing:0.192000pt;}
.ws10_c00253{word-spacing:0.320000pt;}
.ws7_c00253{word-spacing:0.640000pt;}
.ws5_c00253{word-spacing:4.416000pt;}
.ws6_c00253{word-spacing:4.480000pt;}
.ws12_c00253{word-spacing:4.736000pt;}
.ws13_c00253{word-spacing:4.800000pt;}
.wsf_c00253{word-spacing:5.120000pt;}
.wsd_c00253{word-spacing:5.696000pt;}
.wsc_c00253{word-spacing:5.760000pt;}
.wsb_c00253{word-spacing:7.936000pt;}
.wsa_c00253{word-spacing:11.200000pt;}
.ws8_c00253{word-spacing:12.096000pt;}
.wse_c00253{word-spacing:14.976000pt;}
.ws4_c00253{word-spacing:15.296000pt;}
._0_c00253{margin-left:-0.902400pt;}
._1_c00253{width:0.896000pt;}
._2_c00253{width:5.184000pt;}
.fs0_c00253{font-size:48.000000pt;}
.fs1_c00253{font-size:64.000000pt;}
.fs2_c00253{font-size:85.440000pt;}
.y0_c00253{bottom:0.000000pt;}
.y16_c00253{bottom:50.880000pt;}
.y15_c00253{bottom:545.440000pt;}
.y14_c00253{bottom:573.040000pt;}
.y13_c00253{bottom:600.640000pt;}
.y12_c00253{bottom:628.240000pt;}
.y11_c00253{bottom:655.840000pt;}
.y10_c00253{bottom:683.440000pt;}
.yf_c00253{bottom:711.040000pt;}
.ye_c00253{bottom:738.640000pt;}
.yd_c00253{bottom:766.160000pt;}
.yc_c00253{bottom:793.760000pt;}
.yb_c00253{bottom:821.360000pt;}
.ya_c00253{bottom:848.960000pt;}
.y9_c00253{bottom:876.560000pt;}
.y8_c00253{bottom:904.160000pt;}
.y7_c00253{bottom:931.760000pt;}
.y6_c00253{bottom:959.360000pt;}
.y5_c00253{bottom:986.960000pt;}
.y4_c00253{bottom:1005.360000pt;}
.y3_c00253{bottom:1023.036000pt;}
.y2_c00253{bottom:1036.800000pt;}
.y1_c00253{bottom:1064.400000pt;}
.h2_c00253{height:47.109375pt;}
.h3_c00253{height:62.812500pt;}
.h4_c00253{height:86.107500pt;}
.h0_c00253{height:1122.560000pt;}
.h1_c00253{height:1122.666667pt;}
.w0_c00253{width:793.840000pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:113.440000pt;}
.x1_c00253{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_529aa3eb264675f0b7e2e8f5.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.284180;font-style:normal;font-weight:normal;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_239b9ad793db2fc3b929f4de.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00254{vertical-align:-105.840000px;}
.v0_c00254{vertical-align:0.000000px;}
.ls5_c00254{letter-spacing:-0.192240px;}
.ls4_c00254{letter-spacing:-0.108000px;}
.ls6_c00254{letter-spacing:-0.096120px;}
.ls3_c00254{letter-spacing:0.000000px;}
.ls2_c00254{letter-spacing:0.072000px;}
.ls1_c00254{letter-spacing:0.192240px;}
.ls0_c00254{letter-spacing:1257.840000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-24.030000px;}
.ws1_c00254{word-spacing:-23.837760px;}
.ws8_c00254{word-spacing:-0.480600px;}
.ws6_c00254{word-spacing:-0.192240px;}
.ws7_c00254{word-spacing:-0.096120px;}
.ws9_c00254{word-spacing:-0.072000px;}
.ws2_c00254{word-spacing:0.000000px;}
.ws4_c00254{word-spacing:0.162000px;}
.ws3_c00254{word-spacing:0.270000px;}
.ws5_c00254{word-spacing:0.288360px;}
._1_c00254{margin-left:-1.058400px;}
._0_c00254{width:1.220400px;}
._2_c00254{width:846.000000px;}
.fc0_c00254{color:rgb(0,0,0);}
.fs0_c00254{font-size:54.000000px;}
.fs1_c00254{font-size:72.000000px;}
.fs2_c00254{font-size:96.120000px;}
.fs3_c00254{font-size:144.000000px;}
.y0_c00254{bottom:0.000000px;}
.y1b_c00254{bottom:57.240000px;}
.y1a_c00254{bottom:323.640000px;}
.y19_c00254{bottom:344.340000px;}
.y18_c00254{bottom:365.220000px;}
.y17_c00254{bottom:385.920000px;}
.y16_c00254{bottom:406.620000px;}
.y15_c00254{bottom:427.320000px;}
.y14_c00254{bottom:462.937860px;}
.y13_c00254{bottom:504.341550px;}
.y12_c00254{bottom:545.745240px;}
.y11_c00254{bottom:587.148930px;}
.y10_c00254{bottom:628.552620px;}
.yf_c00254{bottom:669.956310px;}
.ye_c00254{bottom:711.360000px;}
.yd_c00254{bottom:762.300000px;}
.yc_c00254{bottom:814.840290px;}
.yb_c00254{bottom:856.147860px;}
.ya_c00254{bottom:897.551550px;}
.y9_c00254{bottom:938.955240px;}
.y8_c00254{bottom:980.358930px;}
.y7_c00254{bottom:1021.762620px;}
.y6_c00254{bottom:1063.166310px;}
.y5_c00254{bottom:1131.030000px;}
.y4_c00254{bottom:1150.920000px;}
.y3_c00254{bottom:1166.404500px;}
.y2_c00254{bottom:1181.970000px;}
.y1_c00254{bottom:1197.450000px;}
.h3_c00254{height:52.971680px;}
.h2_c00254{height:52.998047px;}
.h4_c00254{height:70.664062px;}
.h7_c00254{height:72.562500px;}
.h5_c00254{height:96.870938px;}
.h6_c00254{height:145.125000px;}
.h0_c00254{height:1262.880000px;}
.h1_c00254{height:1263.000000px;}
.w0_c00254{width:893.070000px;}
.w1_c00254{width:893.250000px;}
.x0_c00254{left:0.000000px;}
.x3_c00254{left:127.620000px;}
.x8_c00254{left:132.210000px;}
.x6_c00254{left:146.877840px;}
.x9_c00254{left:152.370000px;}
.x5_c00254{left:153.894600px;}
.x7_c00254{left:349.186410px;}
.x4_c00254{left:350.550000px;}
.xb_c00254{left:382.320000px;}
.xa_c00254{left:415.800000px;}
.x2_c00254{left:425.160000px;}
.x1_c00254{left:446.580000px;}
.xc_c00254{left:738.540000px;}
@media print{
.v1_c00254{vertical-align:-94.080000pt;}
.v0_c00254{vertical-align:0.000000pt;}
.ls5_c00254{letter-spacing:-0.170880pt;}
.ls4_c00254{letter-spacing:-0.096000pt;}
.ls6_c00254{letter-spacing:-0.085440pt;}
.ls3_c00254{letter-spacing:0.000000pt;}
.ls2_c00254{letter-spacing:0.064000pt;}
.ls1_c00254{letter-spacing:0.170880pt;}
.ls0_c00254{letter-spacing:1118.080000pt;}
.ws0_c00254{word-spacing:-21.360000pt;}
.ws1_c00254{word-spacing:-21.189120pt;}
.ws8_c00254{word-spacing:-0.427200pt;}
.ws6_c00254{word-spacing:-0.170880pt;}
.ws7_c00254{word-spacing:-0.085440pt;}
.ws9_c00254{word-spacing:-0.064000pt;}
.ws2_c00254{word-spacing:0.000000pt;}
.ws4_c00254{word-spacing:0.144000pt;}
.ws3_c00254{word-spacing:0.240000pt;}
.ws5_c00254{word-spacing:0.256320pt;}
._1_c00254{margin-left:-0.940800pt;}
._0_c00254{width:1.084800pt;}
._2_c00254{width:752.000000pt;}
.fs0_c00254{font-size:48.000000pt;}
.fs1_c00254{font-size:64.000000pt;}
.fs2_c00254{font-size:85.440000pt;}
.fs3_c00254{font-size:128.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y1b_c00254{bottom:50.880000pt;}
.y1a_c00254{bottom:287.680000pt;}
.y19_c00254{bottom:306.080000pt;}
.y18_c00254{bottom:324.640000pt;}
.y17_c00254{bottom:343.040000pt;}
.y16_c00254{bottom:361.440000pt;}
.y15_c00254{bottom:379.840000pt;}
.y14_c00254{bottom:411.500320pt;}
.y13_c00254{bottom:448.303600pt;}
.y12_c00254{bottom:485.106880pt;}
.y11_c00254{bottom:521.910160pt;}
.y10_c00254{bottom:558.713440pt;}
.yf_c00254{bottom:595.516720pt;}
.ye_c00254{bottom:632.320000pt;}
.yd_c00254{bottom:677.600000pt;}
.yc_c00254{bottom:724.302480pt;}
.yb_c00254{bottom:761.020320pt;}
.ya_c00254{bottom:797.823600pt;}
.y9_c00254{bottom:834.626880pt;}
.y8_c00254{bottom:871.430160pt;}
.y7_c00254{bottom:908.233440pt;}
.y6_c00254{bottom:945.036720pt;}
.y5_c00254{bottom:1005.360000pt;}
.y4_c00254{bottom:1023.040000pt;}
.y3_c00254{bottom:1036.804000pt;}
.y2_c00254{bottom:1050.640000pt;}
.y1_c00254{bottom:1064.400000pt;}
.h3_c00254{height:47.085938pt;}
.h2_c00254{height:47.109375pt;}
.h4_c00254{height:62.812500pt;}
.h7_c00254{height:64.500000pt;}
.h5_c00254{height:86.107500pt;}
.h6_c00254{height:129.000000pt;}
.h0_c00254{height:1122.560000pt;}
.h1_c00254{height:1122.666667pt;}
.w0_c00254{width:793.840000pt;}
.w1_c00254{width:794.000000pt;}
.x0_c00254{left:0.000000pt;}
.x3_c00254{left:113.440000pt;}
.x8_c00254{left:117.520000pt;}
.x6_c00254{left:130.558080pt;}
.x9_c00254{left:135.440000pt;}
.x5_c00254{left:136.795200pt;}
.x7_c00254{left:310.387920pt;}
.x4_c00254{left:311.600000pt;}
.xb_c00254{left:339.840000pt;}
.xa_c00254{left:369.600000pt;}
.x2_c00254{left:377.920000pt;}
.x1_c00254{left:396.960000pt;}
.xc_c00254{left:656.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_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_eb7127db03ac4d7196b43ff8.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.284668;font-style:normal;font-weight:normal;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_f6d9d10844c0ed027a8202ae.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_df75002493e70985d87c934c.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_6c6846bb31d0d3d1897210d2.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_23827b74d8f38b9a6e3a14bc.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00255;src:url('chunks/assets/font_f4c6e35c0cac55bee684898c.woff2')format("woff");}.ff6_c00255{font-family:ff6_c00255;line-height:1.142090;font-style:normal;font-weight: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_c00255;src:url('chunks/assets/font_272bcc86fd2ae1a02bf17150.woff2')format("woff");}.ff7_c00255{font-family:ff7_c00255;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:ff8_c00255;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00255{font-family:ff8_c00255;line-height:1.432129;font-style:normal;font-weight: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_c00255;src:url('chunks/assets/font_b5d12d1e3ece1879867416c9.woff2')format("woff");}.ff9_c00255{font-family:ff9_c00255;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_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);}
.m2_c00255{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{transform:matrix(0.257458,0.000000,-0.085819,0.234809,0,0);-ms-transform:matrix(0.257458,0.000000,-0.085819,0.234809,0,0);-webkit-transform:matrix(0.257458,0.000000,-0.085819,0.234809,0,0);}
.m1_c00255{transform:matrix(0.288007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288007,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00255{vertical-align:-61.938000px;}
.v7_c00255{vertical-align:-20.880000px;}
.v8_c00255{vertical-align:-12.240000px;}
.v2_c00255{vertical-align:-10.440000px;}
.va_c00255{vertical-align:-8.640000px;}
.v5_c00255{vertical-align:-2.880000px;}
.v0_c00255{vertical-align:0.000000px;}
.vc_c00255{vertical-align:18.000000px;}
.v6_c00255{vertical-align:27.004320px;}
.vb_c00255{vertical-align:30.240000px;}
.v9_c00255{vertical-align:35.280000px;}
.v3_c00255{vertical-align:36.360000px;}
.v4_c00255{vertical-align:78.480000px;}
.ls24_c00255{letter-spacing:-0.576000px;}
.ls23_c00255{letter-spacing:-0.360000px;}
.ls25_c00255{letter-spacing:-0.288000px;}
.ls26_c00255{letter-spacing:-0.240480px;}
.ls22_c00255{letter-spacing:-0.216000px;}
.ls28_c00255{letter-spacing:-0.210600px;}
.ls1f_c00255{letter-spacing:-0.144000px;}
.ls21_c00255{letter-spacing:-0.102240px;}
.ls1e_c00255{letter-spacing:-0.072000px;}
.ls1d_c00255{letter-spacing:0.000000px;}
.lsc_c00255{letter-spacing:0.009360px;}
.ls2_c00255{letter-spacing:0.072000px;}
.ls20_c00255{letter-spacing:0.102240px;}
.ls27_c00255{letter-spacing:0.126360px;}
.ls1_c00255{letter-spacing:0.144000px;}
.lse_c00255{letter-spacing:0.191520px;}
.ls14_c00255{letter-spacing:0.360000px;}
.ls19_c00255{letter-spacing:1.692000px;}
.ls12_c00255{letter-spacing:2.160000px;}
.ls18_c00255{letter-spacing:2.173320px;}
.ls1c_c00255{letter-spacing:3.067200px;}
.lsd_c00255{letter-spacing:3.255840px;}
.lsb_c00255{letter-spacing:5.400000px;}
.ls15_c00255{letter-spacing:6.840000px;}
.ls3_c00255{letter-spacing:7.200000px;}
.ls13_c00255{letter-spacing:12.960000px;}
.ls1a_c00255{letter-spacing:12.985920px;}
.ls1b_c00255{letter-spacing:13.226400px;}
.lsa_c00255{letter-spacing:15.696000px;}
.ls7_c00255{letter-spacing:16.056000px;}
.ls6_c00255{letter-spacing:16.272000px;}
.ls17_c00255{letter-spacing:16.653240px;}
.ls9_c00255{letter-spacing:17.762040px;}
.ls8_c00255{letter-spacing:18.360000px;}
.ls5_c00255{letter-spacing:19.656000px;}
.ls16_c00255{letter-spacing:19.987200px;}
.ls4_c00255{letter-spacing:22.082040px;}
.ls10_c00255{letter-spacing:24.854400px;}
.lsf_c00255{letter-spacing:25.200000px;}
.ls11_c00255{letter-spacing:30.744000px;}
.ls0_c00255{letter-spacing:319.518000px;}
.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;}
}
.ws12_c00255{word-spacing:-60.120000px;}
.wsf_c00255{word-spacing:-59.879520px;}
.ws4_c00255{word-spacing:-51.222240px;}
.ws3_c00255{word-spacing:-51.120000px;}
.ws5_c00255{word-spacing:-51.017760px;}
.ws10_c00255{word-spacing:-42.246360px;}
.ws11_c00255{word-spacing:-41.909400px;}
.wsa_c00255{word-spacing:-39.528000px;}
.wsb_c00255{word-spacing:-18.514200px;}
.ws0_c00255{word-spacing:-18.144000px;}
.ws2_c00255{word-spacing:-18.072000px;}
.ws6_c00255{word-spacing:-18.000000px;}
.ws7_c00255{word-spacing:-17.928000px;}
.ws1_c00255{word-spacing:-17.856000px;}
.wsc_c00255{word-spacing:-17.640000px;}
.wsd_c00255{word-spacing:-17.424000px;}
.ws9_c00255{word-spacing:-17.325000px;}
.ws8_c00255{word-spacing:-12.161520px;}
.wse_c00255{word-spacing:-9.720000px;}
.ws25_c00255{word-spacing:-0.504000px;}
.ws1f_c00255{word-spacing:-0.432000px;}
.ws14_c00255{word-spacing:-0.162000px;}
.ws16_c00255{word-spacing:-0.144000px;}
.ws19_c00255{word-spacing:-0.072000px;}
.ws13_c00255{word-spacing:0.000000px;}
.ws17_c00255{word-spacing:0.072000px;}
.ws24_c00255{word-spacing:0.216000px;}
.ws2b_c00255{word-spacing:0.288000px;}
.ws2a_c00255{word-spacing:0.360000px;}
.ws2d_c00255{word-spacing:3.816000px;}
.ws2c_c00255{word-spacing:3.888000px;}
.ws21_c00255{word-spacing:5.328000px;}
.ws20_c00255{word-spacing:5.400000px;}
.ws2e_c00255{word-spacing:6.768000px;}
.ws26_c00255{word-spacing:6.840000px;}
.ws2f_c00255{word-spacing:7.128000px;}
.ws1c_c00255{word-spacing:7.200000px;}
.ws1d_c00255{word-spacing:7.488000px;}
.ws1e_c00255{word-spacing:7.560000px;}
.ws18_c00255{word-spacing:7.848000px;}
.ws15_c00255{word-spacing:7.992000px;}
.ws27_c00255{word-spacing:12.528000px;}
.ws29_c00255{word-spacing:12.600000px;}
.ws28_c00255{word-spacing:12.888000px;}
.ws31_c00255{word-spacing:15.768000px;}
.ws30_c00255{word-spacing:15.840000px;}
.ws32_c00255{word-spacing:20.088000px;}
.ws1a_c00255{word-spacing:22.248000px;}
.ws1b_c00255{word-spacing:22.320000px;}
.ws22_c00255{word-spacing:25.128000px;}
.ws23_c00255{word-spacing:25.200000px;}
._1_c00255{margin-left:-1.015200px;}
._4_c00255{width:1.008000px;}
._7_c00255{width:4.017600px;}
._9_c00255{width:5.198400px;}
._8_c00255{width:6.206400px;}
._0_c00255{width:7.920000px;}
._5_c00255{width:12.168000px;}
._6_c00255{width:13.392000px;}
._a_c00255{width:16.128000px;}
._2_c00255{width:21.830400px;}
._3_c00255{width:23.313600px;}
.fc0_c00255{color:rgb(0,0,0);}
.fsc_c00255{font-size:36.000000px;}
.fsa_c00255{font-size:38.880000px;}
.fs5_c00255{font-size:40.425000px;}
.fs3_c00255{font-size:42.120000px;}
.fs7_c00255{font-size:43.200000px;}
.fs4_c00255{font-size:47.880000px;}
.fs2_c00255{font-size:51.120000px;}
.fs0_c00255{font-size:54.000000px;}
.fsb_c00255{font-size:60.120000px;}
.fs6_c00255{font-size:69.300000px;}
.fs1_c00255{font-size:72.000000px;}
.fs8_c00255{font-size:74.056800px;}
.fs9_c00255{font-size:108.017779px;}
.y0_c00255{bottom:0.000000px;}
.y1d_c00255{bottom:3.760950px;}
.y14_c00255{bottom:4.195950px;}
.y16_c00255{bottom:5.278800px;}
.y25_c00255{bottom:6.341100px;}
.y1f_c00255{bottom:8.678700px;}
.y15_c00255{bottom:25.580775px;}
.y17_c00255{bottom:29.914950px;}
.y1e_c00255{bottom:30.804150px;}
.y20_c00255{bottom:35.431719px;}
.y35_c00255{bottom:57.240000px;}
.y34_c00255{bottom:108.630000px;}
.y33_c00255{bottom:121.410000px;}
.y36_c00255{bottom:139.050000px;}
.y32_c00255{bottom:160.920000px;}
.y31_c00255{bottom:191.970000px;}
.y30_c00255{bottom:223.020000px;}
.y2f_c00255{bottom:254.070000px;}
.y2e_c00255{bottom:285.840000px;}
.y2d_c00255{bottom:318.240000px;}
.y2c_c00255{bottom:349.290000px;}
.y2b_c00255{bottom:380.520000px;}
.y2a_c00255{bottom:411.930000px;}
.y29_c00255{bottom:442.980000px;}
.y28_c00255{bottom:474.030000px;}
.y27_c00255{bottom:505.080000px;}
.y24_c00255{bottom:531.285000px;}
.y26_c00255{bottom:536.580000px;}
.y23_c00255{bottom:559.260000px;}
.y22_c00255{bottom:581.400000px;}
.y1c_c00255{bottom:597.885000px;}
.y21_c00255{bottom:620.460000px;}
.y1b_c00255{bottom:656.100000px;}
.y1a_c00255{bottom:676.800000px;}
.y19_c00255{bottom:697.410000px;}
.y13_c00255{bottom:715.485000px;}
.y18_c00255{bottom:735.030000px;}
.y12_c00255{bottom:765.900000px;}
.y11_c00255{bottom:786.600000px;}
.y10_c00255{bottom:807.300000px;}
.yf_c00255{bottom:828.000000px;}
.ye_c00255{bottom:848.610000px;}
.yd_c00255{bottom:878.580000px;}
.yc_c00255{bottom:898.200000px;}
.yb_c00255{bottom:924.030000px;}
.ya_c00255{bottom:955.080000px;}
.y9_c00255{bottom:986.130000px;}
.y8_c00255{bottom:1017.180000px;}
.y7_c00255{bottom:1048.230000px;}
.y6_c00255{bottom:1079.100000px;}
.y5_c00255{bottom:1110.150000px;}
.y4_c00255{bottom:1131.030000px;}
.y3_c00255{bottom:1150.915500px;}
.y2_c00255{bottom:1166.400000px;}
.y1_c00255{bottom:1197.450000px;}
.hf_c00255{height:23.251500px;}
.ha_c00255{height:39.655188px;}
.hd_c00255{height:42.377344px;}
.h9_c00255{height:46.200000px;}
.h2_c00255{height:52.998047px;}
.hc_c00255{height:54.000000px;}
.hb_c00255{height:67.980322px;}
.h3_c00255{height:70.664062px;}
.h8_c00255{height:71.092543px;}
.h4_c00255{height:72.562500px;}
.he_c00255{height:72.646539px;}
.h12_c00255{height:75.093750px;}
.h13_c00255{height:98.978379px;}
.h10_c00255{height:100.053577px;}
.h5_c00255{height:101.915508px;}
.h11_c00255{height:143.542969px;}
.h14_c00255{height:150.098379px;}
.h7_c00255{height:179.902969px;}
.h6_c00255{height:180.395508px;}
.h0_c00255{height:1262.880000px;}
.h1_c00255{height:1263.000000px;}
.w4_c00255{width:23.175000px;}
.w3_c00255{width:61.725000px;}
.w2_c00255{width:84.825000px;}
.w0_c00255{width:893.070000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.xe_c00255{left:2.896800px;}
.x8_c00255{left:4.062790px;}
.xc_c00255{left:5.449200px;}
.x7_c00255{left:7.016700px;}
.xb_c00255{left:45.382222px;}
.xa_c00255{left:54.250500px;}
.x6_c00255{left:67.515206px;}
.x5_c00255{left:76.456800px;}
.x2_c00255{left:127.620000px;}
.xf_c00255{left:150.840000px;}
.x10_c00255{left:154.620000px;}
.xd_c00255{left:189.360000px;}
.x9_c00255{left:212.490000px;}
.x11_c00255{left:227.340000px;}
.x3_c00255{left:327.600000px;}
.x1_c00255{left:446.580000px;}
.x4_c00255{left:449.910000px;}
@media print{
.v1_c00255{vertical-align:-55.056000pt;}
.v7_c00255{vertical-align:-18.560000pt;}
.v8_c00255{vertical-align:-10.880000pt;}
.v2_c00255{vertical-align:-9.280000pt;}
.va_c00255{vertical-align:-7.680000pt;}
.v5_c00255{vertical-align:-2.560000pt;}
.v0_c00255{vertical-align:0.000000pt;}
.vc_c00255{vertical-align:16.000000pt;}
.v6_c00255{vertical-align:24.003840pt;}
.vb_c00255{vertical-align:26.880000pt;}
.v9_c00255{vertical-align:31.360000pt;}
.v3_c00255{vertical-align:32.320000pt;}
.v4_c00255{vertical-align:69.760000pt;}
.ls24_c00255{letter-spacing:-0.512000pt;}
.ls23_c00255{letter-spacing:-0.320000pt;}
.ls25_c00255{letter-spacing:-0.256000pt;}
.ls26_c00255{letter-spacing:-0.213760pt;}
.ls22_c00255{letter-spacing:-0.192000pt;}
.ls28_c00255{letter-spacing:-0.187200pt;}
.ls1f_c00255{letter-spacing:-0.128000pt;}
.ls21_c00255{letter-spacing:-0.090880pt;}
.ls1e_c00255{letter-spacing:-0.064000pt;}
.ls1d_c00255{letter-spacing:0.000000pt;}
.lsc_c00255{letter-spacing:0.008320pt;}
.ls2_c00255{letter-spacing:0.064000pt;}
.ls20_c00255{letter-spacing:0.090880pt;}
.ls27_c00255{letter-spacing:0.112320pt;}
.ls1_c00255{letter-spacing:0.128000pt;}
.lse_c00255{letter-spacing:0.170240pt;}
.ls14_c00255{letter-spacing:0.320000pt;}
.ls19_c00255{letter-spacing:1.504000pt;}
.ls12_c00255{letter-spacing:1.920000pt;}
.ls18_c00255{letter-spacing:1.931840pt;}
.ls1c_c00255{letter-spacing:2.726400pt;}
.lsd_c00255{letter-spacing:2.894080pt;}
.lsb_c00255{letter-spacing:4.800000pt;}
.ls15_c00255{letter-spacing:6.080000pt;}
.ls3_c00255{letter-spacing:6.400000pt;}
.ls13_c00255{letter-spacing:11.520000pt;}
.ls1a_c00255{letter-spacing:11.543040pt;}
.ls1b_c00255{letter-spacing:11.756800pt;}
.lsa_c00255{letter-spacing:13.952000pt;}
.ls7_c00255{letter-spacing:14.272000pt;}
.ls6_c00255{letter-spacing:14.464000pt;}
.ls17_c00255{letter-spacing:14.802880pt;}
.ls9_c00255{letter-spacing:15.788480pt;}
.ls8_c00255{letter-spacing:16.320000pt;}
.ls5_c00255{letter-spacing:17.472000pt;}
.ls16_c00255{letter-spacing:17.766400pt;}
.ls4_c00255{letter-spacing:19.628480pt;}
.ls10_c00255{letter-spacing:22.092800pt;}
.lsf_c00255{letter-spacing:22.400000pt;}
.ls11_c00255{letter-spacing:27.328000pt;}
.ls0_c00255{letter-spacing:284.016000pt;}
.ws12_c00255{word-spacing:-53.440000pt;}
.wsf_c00255{word-spacing:-53.226240pt;}
.ws4_c00255{word-spacing:-45.530880pt;}
.ws3_c00255{word-spacing:-45.440000pt;}
.ws5_c00255{word-spacing:-45.349120pt;}
.ws10_c00255{word-spacing:-37.552320pt;}
.ws11_c00255{word-spacing:-37.252800pt;}
.wsa_c00255{word-spacing:-35.136000pt;}
.wsb_c00255{word-spacing:-16.457067pt;}
.ws0_c00255{word-spacing:-16.128000pt;}
.ws2_c00255{word-spacing:-16.064000pt;}
.ws6_c00255{word-spacing:-16.000000pt;}
.ws7_c00255{word-spacing:-15.936000pt;}
.ws1_c00255{word-spacing:-15.872000pt;}
.wsc_c00255{word-spacing:-15.680000pt;}
.wsd_c00255{word-spacing:-15.488000pt;}
.ws9_c00255{word-spacing:-15.400000pt;}
.ws8_c00255{word-spacing:-10.810240pt;}
.wse_c00255{word-spacing:-8.640000pt;}
.ws25_c00255{word-spacing:-0.448000pt;}
.ws1f_c00255{word-spacing:-0.384000pt;}
.ws14_c00255{word-spacing:-0.144000pt;}
.ws16_c00255{word-spacing:-0.128000pt;}
.ws19_c00255{word-spacing:-0.064000pt;}
.ws13_c00255{word-spacing:0.000000pt;}
.ws17_c00255{word-spacing:0.064000pt;}
.ws24_c00255{word-spacing:0.192000pt;}
.ws2b_c00255{word-spacing:0.256000pt;}
.ws2a_c00255{word-spacing:0.320000pt;}
.ws2d_c00255{word-spacing:3.392000pt;}
.ws2c_c00255{word-spacing:3.456000pt;}
.ws21_c00255{word-spacing:4.736000pt;}
.ws20_c00255{word-spacing:4.800000pt;}
.ws2e_c00255{word-spacing:6.016000pt;}
.ws26_c00255{word-spacing:6.080000pt;}
.ws2f_c00255{word-spacing:6.336000pt;}
.ws1c_c00255{word-spacing:6.400000pt;}
.ws1d_c00255{word-spacing:6.656000pt;}
.ws1e_c00255{word-spacing:6.720000pt;}
.ws18_c00255{word-spacing:6.976000pt;}
.ws15_c00255{word-spacing:7.104000pt;}
.ws27_c00255{word-spacing:11.136000pt;}
.ws29_c00255{word-spacing:11.200000pt;}
.ws28_c00255{word-spacing:11.456000pt;}
.ws31_c00255{word-spacing:14.016000pt;}
.ws30_c00255{word-spacing:14.080000pt;}
.ws32_c00255{word-spacing:17.856000pt;}
.ws1a_c00255{word-spacing:19.776000pt;}
.ws1b_c00255{word-spacing:19.840000pt;}
.ws22_c00255{word-spacing:22.336000pt;}
.ws23_c00255{word-spacing:22.400000pt;}
._1_c00255{margin-left:-0.902400pt;}
._4_c00255{width:0.896000pt;}
._7_c00255{width:3.571200pt;}
._9_c00255{width:4.620800pt;}
._8_c00255{width:5.516800pt;}
._0_c00255{width:7.040000pt;}
._5_c00255{width:10.816000pt;}
._6_c00255{width:11.904000pt;}
._a_c00255{width:14.336000pt;}
._2_c00255{width:19.404800pt;}
._3_c00255{width:20.723200pt;}
.fsc_c00255{font-size:32.000000pt;}
.fsa_c00255{font-size:34.560000pt;}
.fs5_c00255{font-size:35.933333pt;}
.fs3_c00255{font-size:37.440000pt;}
.fs7_c00255{font-size:38.400000pt;}
.fs4_c00255{font-size:42.560000pt;}
.fs2_c00255{font-size:45.440000pt;}
.fs0_c00255{font-size:48.000000pt;}
.fsb_c00255{font-size:53.440000pt;}
.fs6_c00255{font-size:61.600000pt;}
.fs1_c00255{font-size:64.000000pt;}
.fs8_c00255{font-size:65.828267pt;}
.fs9_c00255{font-size:96.015803pt;}
.y0_c00255{bottom:0.000000pt;}
.y1d_c00255{bottom:3.343067pt;}
.y14_c00255{bottom:3.729733pt;}
.y16_c00255{bottom:4.692267pt;}
.y25_c00255{bottom:5.636533pt;}
.y1f_c00255{bottom:7.714400pt;}
.y15_c00255{bottom:22.738467pt;}
.y17_c00255{bottom:26.591067pt;}
.y1e_c00255{bottom:27.381467pt;}
.y20_c00255{bottom:31.494861pt;}
.y35_c00255{bottom:50.880000pt;}
.y34_c00255{bottom:96.560000pt;}
.y33_c00255{bottom:107.920000pt;}
.y36_c00255{bottom:123.600000pt;}
.y32_c00255{bottom:143.040000pt;}
.y31_c00255{bottom:170.640000pt;}
.y30_c00255{bottom:198.240000pt;}
.y2f_c00255{bottom:225.840000pt;}
.y2e_c00255{bottom:254.080000pt;}
.y2d_c00255{bottom:282.880000pt;}
.y2c_c00255{bottom:310.480000pt;}
.y2b_c00255{bottom:338.240000pt;}
.y2a_c00255{bottom:366.160000pt;}
.y29_c00255{bottom:393.760000pt;}
.y28_c00255{bottom:421.360000pt;}
.y27_c00255{bottom:448.960000pt;}
.y24_c00255{bottom:472.253333pt;}
.y26_c00255{bottom:476.960000pt;}
.y23_c00255{bottom:497.120000pt;}
.y22_c00255{bottom:516.800000pt;}
.y1c_c00255{bottom:531.453333pt;}
.y21_c00255{bottom:551.520000pt;}
.y1b_c00255{bottom:583.200000pt;}
.y1a_c00255{bottom:601.600000pt;}
.y19_c00255{bottom:619.920000pt;}
.y13_c00255{bottom:635.986667pt;}
.y18_c00255{bottom:653.360000pt;}
.y12_c00255{bottom:680.800000pt;}
.y11_c00255{bottom:699.200000pt;}
.y10_c00255{bottom:717.600000pt;}
.yf_c00255{bottom:736.000000pt;}
.ye_c00255{bottom:754.320000pt;}
.yd_c00255{bottom:780.960000pt;}
.yc_c00255{bottom:798.400000pt;}
.yb_c00255{bottom:821.360000pt;}
.ya_c00255{bottom:848.960000pt;}
.y9_c00255{bottom:876.560000pt;}
.y8_c00255{bottom:904.160000pt;}
.y7_c00255{bottom:931.760000pt;}
.y6_c00255{bottom:959.200000pt;}
.y5_c00255{bottom:986.800000pt;}
.y4_c00255{bottom:1005.360000pt;}
.y3_c00255{bottom:1023.036000pt;}
.y2_c00255{bottom:1036.800000pt;}
.y1_c00255{bottom:1064.400000pt;}
.hf_c00255{height:20.668000pt;}
.ha_c00255{height:35.249056pt;}
.hd_c00255{height:37.668750pt;}
.h9_c00255{height:41.066667pt;}
.h2_c00255{height:47.109375pt;}
.hc_c00255{height:48.000000pt;}
.hb_c00255{height:60.426953pt;}
.h3_c00255{height:62.812500pt;}
.h8_c00255{height:63.193371pt;}
.h4_c00255{height:64.500000pt;}
.he_c00255{height:64.574701pt;}
.h12_c00255{height:66.750000pt;}
.h13_c00255{height:87.980781pt;}
.h10_c00255{height:88.936513pt;}
.h5_c00255{height:90.591562pt;}
.h11_c00255{height:127.593750pt;}
.h14_c00255{height:133.420781pt;}
.h7_c00255{height:159.913750pt;}
.h6_c00255{height:160.351562pt;}
.h0_c00255{height:1122.560000pt;}
.h1_c00255{height:1122.666667pt;}
.w4_c00255{width:20.600000pt;}
.w3_c00255{width:54.866667pt;}
.w2_c00255{width:75.400000pt;}
.w0_c00255{width:793.840000pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.xe_c00255{left:2.574933pt;}
.x8_c00255{left:3.611369pt;}
.xc_c00255{left:4.843733pt;}
.x7_c00255{left:6.237067pt;}
.xb_c00255{left:40.339753pt;}
.xa_c00255{left:48.222667pt;}
.x6_c00255{left:60.013517pt;}
.x5_c00255{left:67.961600pt;}
.x2_c00255{left:113.440000pt;}
.xf_c00255{left:134.080000pt;}
.x10_c00255{left:137.440000pt;}
.xd_c00255{left:168.320000pt;}
.x9_c00255{left:188.880000pt;}
.x11_c00255{left:202.080000pt;}
.x3_c00255{left:291.200000pt;}
.x1_c00255{left:396.960000pt;}
.x4_c00255{left:399.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ecb12de12e10b55f096fd2d8.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_5fbd172266a7e764cc97caee.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_70888e991020cb058fe16698.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;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_c00256;src:url('chunks/assets/font_10c5b09461cd9835a5ce7ee9.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;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:ff6_c00256;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:1.432129;font-style:normal;font-weight: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_c00256;src:url('chunks/assets/font_c35402909bef5d6bde7622ab.woff2')format("woff");}.ff7_c00256{font-family:ff7_c00256;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00256;src:url('chunks/assets/font_f4978f041852dbcd549f0a38.woff2')format("woff");}.ff8_c00256{font-family:ff8_c00256;line-height:3.333984;font-style:normal;font-weight: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_c00256;src:url('chunks/assets/font_0780e5bf9d1897607ddbb2ae.woff2')format("woff");}.ff9_c00256{font-family:ff9_c00256;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00256;src:url('chunks/assets/font_ae779e7c9ab22db20e8e4de8.woff2')format("woff");}.ffa_c00256{font-family:ffa_c00256;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.266228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266228,0.000000,0.000000,0.250000,0,0);}
.v1_c00256{vertical-align:-88.200000px;}
.v5_c00256{vertical-align:-10.440000px;}
.v0_c00256{vertical-align:0.000000px;}
.v2_c00256{vertical-align:2.880000px;}
.v3_c00256{vertical-align:26.280000px;}
.v6_c00256{vertical-align:36.360000px;}
.v4_c00256{vertical-align:42.120000px;}
.ls1b_c00256{letter-spacing:-0.493704px;}
.ls16_c00256{letter-spacing:-0.360000px;}
.ls15_c00256{letter-spacing:-0.288000px;}
.ls11_c00256{letter-spacing:-0.108000px;}
.ls14_c00256{letter-spacing:-0.072000px;}
.ls10_c00256{letter-spacing:0.000000px;}
.ls1_c00256{letter-spacing:0.072000px;}
.ls3_c00256{letter-spacing:0.100800px;}
.ls13_c00256{letter-spacing:0.102240px;}
.ls12_c00256{letter-spacing:0.144000px;}
.ls19_c00256{letter-spacing:0.246852px;}
.ls18_c00256{letter-spacing:0.329136px;}
.ls8_c00256{letter-spacing:0.360000px;}
.ls9_c00256{letter-spacing:0.720000px;}
.ls17_c00256{letter-spacing:1.042260px;}
.lsc_c00256{letter-spacing:1.440000px;}
.ls1a_c00256{letter-spacing:1.522254px;}
.ls2_c00256{letter-spacing:1.800000px;}
.lsa_c00256{letter-spacing:1.922040px;}
.ls6_c00256{letter-spacing:2.016000px;}
.ls7_c00256{letter-spacing:2.801520px;}
.lsb_c00256{letter-spacing:3.161520px;}
.lse_c00256{letter-spacing:4.320000px;}
.lsf_c00256{letter-spacing:4.680000px;}
.lsd_c00256{letter-spacing:5.400000px;}
.ls4_c00256{letter-spacing:14.760000px;}
.ls5_c00256{letter-spacing:30.744000px;}
.ls0_c00256{letter-spacing:90.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;}
}
.ws3_c00256{word-spacing:-72.000000px;}
.ws2_c00256{word-spacing:-51.222240px;}
.ws1_c00256{word-spacing:-51.120000px;}
.ws5_c00256{word-spacing:-18.360000px;}
.ws6_c00256{word-spacing:-18.144000px;}
.ws4_c00256{word-spacing:-18.072000px;}
.ws0_c00256{word-spacing:-15.840000px;}
.ws8_c00256{word-spacing:-10.820346px;}
.ws7_c00256{word-spacing:-9.627228px;}
.ws9_c00256{word-spacing:-8.804388px;}
.ws32_c00256{word-spacing:-1.823955px;}
.ws33_c00256{word-spacing:-1.398828px;}
.ws34_c00256{word-spacing:-1.316544px;}
.ws2b_c00256{word-spacing:-0.360000px;}
.ws35_c00256{word-spacing:-0.246852px;}
.ws10_c00256{word-spacing:-0.072000px;}
.wsa_c00256{word-spacing:0.000000px;}
.ws23_c00256{word-spacing:0.072000px;}
.wsc_c00256{word-spacing:0.162000px;}
.wsb_c00256{word-spacing:0.270000px;}
.ws27_c00256{word-spacing:0.288000px;}
.ws2a_c00256{word-spacing:0.360000px;}
.ws17_c00256{word-spacing:0.648000px;}
.ws18_c00256{word-spacing:0.720000px;}
.ws1a_c00256{word-spacing:1.296000px;}
.ws19_c00256{word-spacing:1.368000px;}
.ws12_c00256{word-spacing:1.656000px;}
.ws11_c00256{word-spacing:1.728000px;}
.wsd_c00256{word-spacing:2.016000px;}
.wse_c00256{word-spacing:2.088000px;}
.wsf_c00256{word-spacing:2.160000px;}
.ws2c_c00256{word-spacing:2.448000px;}
.ws2d_c00256{word-spacing:2.520000px;}
.ws2e_c00256{word-spacing:3.960000px;}
.ws2f_c00256{word-spacing:4.176000px;}
.ws30_c00256{word-spacing:4.320000px;}
.ws28_c00256{word-spacing:4.680000px;}
.ws31_c00256{word-spacing:4.968000px;}
.ws26_c00256{word-spacing:5.040000px;}
.ws1f_c00256{word-spacing:5.688000px;}
.ws1e_c00256{word-spacing:5.760000px;}
.ws14_c00256{word-spacing:6.768000px;}
.ws25_c00256{word-spacing:8.208000px;}
.ws24_c00256{word-spacing:8.280000px;}
.ws20_c00256{word-spacing:8.928000px;}
.ws13_c00256{word-spacing:15.048000px;}
.ws29_c00256{word-spacing:15.120000px;}
.ws1d_c00256{word-spacing:19.080000px;}
.ws15_c00256{word-spacing:19.368000px;}
.ws16_c00256{word-spacing:19.440000px;}
.ws21_c00256{word-spacing:20.016000px;}
.ws22_c00256{word-spacing:20.160000px;}
.ws1c_c00256{word-spacing:34.848000px;}
.ws1b_c00256{word-spacing:34.920000px;}
._8_c00256{margin-left:-2.110585px;}
._1_c00256{margin-left:-1.058400px;}
._0_c00256{width:1.220400px;}
._2_c00256{width:2.480400px;}
._7_c00256{width:4.320000px;}
._5_c00256{width:5.328000px;}
._6_c00256{width:14.814000px;}
._3_c00256{width:19.684800px;}
._4_c00256{width:35.064000px;}
.fc0_c00256{color:rgb(0,0,0);}
.fs5_c00256{font-size:41.142000px;}
.fs3_c00256{font-size:42.120000px;}
.fs2_c00256{font-size:51.120000px;}
.fs4_c00256{font-size:52.113000px;}
.fs0_c00256{font-size:54.000000px;}
.fs1_c00256{font-size:72.000000px;}
.y0_c00256{bottom:0.000000px;}
.y29_c00256{bottom:2.745928px;}
.y26_c00256{bottom:2.746378px;}
.y23_c00256{bottom:3.428400px;}
.y2a_c00256{bottom:10.285200px;}
.y28_c00256{bottom:16.456500px;}
.y25_c00256{bottom:16.456950px;}
.y2b_c00256{bottom:57.240000px;}
.y21_c00256{bottom:143.640000px;}
.y20_c00256{bottom:174.690000px;}
.y1f_c00256{bottom:205.740000px;}
.y1e_c00256{bottom:236.790000px;}
.y1d_c00256{bottom:267.840000px;}
.y1c_c00256{bottom:298.890000px;}
.y1b_c00256{bottom:329.940000px;}
.y1a_c00256{bottom:360.990000px;}
.y19_c00256{bottom:392.040000px;}
.y18_c00256{bottom:423.090000px;}
.y17_c00256{bottom:454.140000px;}
.y16_c00256{bottom:481.140000px;}
.y22_c00256{bottom:496.138500px;}
.y27_c00256{bottom:542.080500px;}
.y24_c00256{bottom:569.508000px;}
.y15_c00256{bottom:624.960000px;}
.y14_c00256{bottom:656.190000px;}
.y13_c00256{bottom:687.240000px;}
.y12_c00256{bottom:718.290000px;}
.y11_c00256{bottom:749.250000px;}
.y10_c00256{bottom:780.300000px;}
.yf_c00256{bottom:811.350000px;}
.ye_c00256{bottom:842.400000px;}
.yd_c00256{bottom:873.630000px;}
.yc_c00256{bottom:904.050000px;}
.yb_c00256{bottom:913.140000px;}
.ya_c00256{bottom:950.400000px;}
.y9_c00256{bottom:982.080000px;}
.y8_c00256{bottom:1013.130000px;}
.y7_c00256{bottom:1044.900000px;}
.y6_c00256{bottom:1077.300000px;}
.y5_c00256{bottom:1131.030000px;}
.y4_c00256{bottom:1150.920000px;}
.y3_c00256{bottom:1166.404500px;}
.y2_c00256{bottom:1181.970000px;}
.y1_c00256{bottom:1197.450000px;}
.ha_c00256{height:16.456500px;}
.hc_c00256{height:26.742000px;}
.hd_c00256{height:30.595345px;}
.hb_c00256{height:38.753955px;}
.h3_c00256{height:52.971680px;}
.h2_c00256{height:52.998047px;}
.h4_c00256{height:70.664062px;}
.h9_c00256{height:72.562500px;}
.h8_c00256{height:75.093750px;}
.h5_c00256{height:143.542969px;}
.h6_c00256{height:144.035508px;}
.h7_c00256{height:179.902969px;}
.h0_c00256{height:1262.880000px;}
.h1_c00256{height:1263.000000px;}
.w4_c00256{width:57.685500px;}
.w2_c00256{width:116.103000px;}
.w3_c00256{width:174.520500px;}
.w5_c00256{width:232.935000px;}
.w0_c00256{width:893.070000px;}
.w1_c00256{width:893.250000px;}
.x0_c00256{left:0.000000px;}
.x10_c00256{left:5.114671px;}
.xf_c00256{left:10.952700px;}
.x13_c00256{left:21.906450px;}
.xa_c00256{left:38.701650px;}
.x14_c00256{left:40.165351px;}
.x8_c00256{left:54.765150px;}
.x16_c00256{left:62.797800px;}
.x3_c00256{left:127.620000px;}
.x6_c00256{left:149.220000px;}
.x4_c00256{left:154.620000px;}
.x12_c00256{left:186.766500px;}
.x9_c00256{left:245.182500px;}
.xe_c00256{left:303.600000px;}
.x5_c00256{left:317.610000px;}
.x15_c00256{left:362.016000px;}
.xb_c00256{left:420.432000px;}
.x2_c00256{left:425.160000px;}
.x1_c00256{left:446.580000px;}
.xc_c00256{left:537.265500px;}
.x11_c00256{left:595.681500px;}
.x17_c00256{left:654.097500px;}
.xd_c00256{left:712.515000px;}
.x18_c00256{left:738.540000px;}
.x7_c00256{left:830.070000px;}
@media print{
.v1_c00256{vertical-align:-78.400000pt;}
.v5_c00256{vertical-align:-9.280000pt;}
.v0_c00256{vertical-align:0.000000pt;}
.v2_c00256{vertical-align:2.560000pt;}
.v3_c00256{vertical-align:23.360000pt;}
.v6_c00256{vertical-align:32.320000pt;}
.v4_c00256{vertical-align:37.440000pt;}
.ls1b_c00256{letter-spacing:-0.438848pt;}
.ls16_c00256{letter-spacing:-0.320000pt;}
.ls15_c00256{letter-spacing:-0.256000pt;}
.ls11_c00256{letter-spacing:-0.096000pt;}
.ls14_c00256{letter-spacing:-0.064000pt;}
.ls10_c00256{letter-spacing:0.000000pt;}
.ls1_c00256{letter-spacing:0.064000pt;}
.ls3_c00256{letter-spacing:0.089600pt;}
.ls13_c00256{letter-spacing:0.090880pt;}
.ls12_c00256{letter-spacing:0.128000pt;}
.ls19_c00256{letter-spacing:0.219424pt;}
.ls18_c00256{letter-spacing:0.292565pt;}
.ls8_c00256{letter-spacing:0.320000pt;}
.ls9_c00256{letter-spacing:0.640000pt;}
.ls17_c00256{letter-spacing:0.926453pt;}
.lsc_c00256{letter-spacing:1.280000pt;}
.ls1a_c00256{letter-spacing:1.353115pt;}
.ls2_c00256{letter-spacing:1.600000pt;}
.lsa_c00256{letter-spacing:1.708480pt;}
.ls6_c00256{letter-spacing:1.792000pt;}
.ls7_c00256{letter-spacing:2.490240pt;}
.lsb_c00256{letter-spacing:2.810240pt;}
.lse_c00256{letter-spacing:3.840000pt;}
.lsf_c00256{letter-spacing:4.160000pt;}
.lsd_c00256{letter-spacing:4.800000pt;}
.ls4_c00256{letter-spacing:13.120000pt;}
.ls5_c00256{letter-spacing:27.328000pt;}
.ls0_c00256{letter-spacing:80.000000pt;}
.ws3_c00256{word-spacing:-64.000000pt;}
.ws2_c00256{word-spacing:-45.530880pt;}
.ws1_c00256{word-spacing:-45.440000pt;}
.ws5_c00256{word-spacing:-16.320000pt;}
.ws6_c00256{word-spacing:-16.128000pt;}
.ws4_c00256{word-spacing:-16.064000pt;}
.ws0_c00256{word-spacing:-14.080000pt;}
.ws8_c00256{word-spacing:-9.618085pt;}
.ws7_c00256{word-spacing:-8.557536pt;}
.ws9_c00256{word-spacing:-7.826123pt;}
.ws32_c00256{word-spacing:-1.621293pt;}
.ws33_c00256{word-spacing:-1.243403pt;}
.ws34_c00256{word-spacing:-1.170261pt;}
.ws2b_c00256{word-spacing:-0.320000pt;}
.ws35_c00256{word-spacing:-0.219424pt;}
.ws10_c00256{word-spacing:-0.064000pt;}
.wsa_c00256{word-spacing:0.000000pt;}
.ws23_c00256{word-spacing:0.064000pt;}
.wsc_c00256{word-spacing:0.144000pt;}
.wsb_c00256{word-spacing:0.240000pt;}
.ws27_c00256{word-spacing:0.256000pt;}
.ws2a_c00256{word-spacing:0.320000pt;}
.ws17_c00256{word-spacing:0.576000pt;}
.ws18_c00256{word-spacing:0.640000pt;}
.ws1a_c00256{word-spacing:1.152000pt;}
.ws19_c00256{word-spacing:1.216000pt;}
.ws12_c00256{word-spacing:1.472000pt;}
.ws11_c00256{word-spacing:1.536000pt;}
.wsd_c00256{word-spacing:1.792000pt;}
.wse_c00256{word-spacing:1.856000pt;}
.wsf_c00256{word-spacing:1.920000pt;}
.ws2c_c00256{word-spacing:2.176000pt;}
.ws2d_c00256{word-spacing:2.240000pt;}
.ws2e_c00256{word-spacing:3.520000pt;}
.ws2f_c00256{word-spacing:3.712000pt;}
.ws30_c00256{word-spacing:3.840000pt;}
.ws28_c00256{word-spacing:4.160000pt;}
.ws31_c00256{word-spacing:4.416000pt;}
.ws26_c00256{word-spacing:4.480000pt;}
.ws1f_c00256{word-spacing:5.056000pt;}
.ws1e_c00256{word-spacing:5.120000pt;}
.ws14_c00256{word-spacing:6.016000pt;}
.ws25_c00256{word-spacing:7.296000pt;}
.ws24_c00256{word-spacing:7.360000pt;}
.ws20_c00256{word-spacing:7.936000pt;}
.ws13_c00256{word-spacing:13.376000pt;}
.ws29_c00256{word-spacing:13.440000pt;}
.ws1d_c00256{word-spacing:16.960000pt;}
.ws15_c00256{word-spacing:17.216000pt;}
.ws16_c00256{word-spacing:17.280000pt;}
.ws21_c00256{word-spacing:17.792000pt;}
.ws22_c00256{word-spacing:17.920000pt;}
.ws1c_c00256{word-spacing:30.976000pt;}
.ws1b_c00256{word-spacing:31.040000pt;}
._8_c00256{margin-left:-1.876075pt;}
._1_c00256{margin-left:-0.940800pt;}
._0_c00256{width:1.084800pt;}
._2_c00256{width:2.204800pt;}
._7_c00256{width:3.840000pt;}
._5_c00256{width:4.736000pt;}
._6_c00256{width:13.168000pt;}
._3_c00256{width:17.497600pt;}
._4_c00256{width:31.168000pt;}
.fs5_c00256{font-size:36.570667pt;}
.fs3_c00256{font-size:37.440000pt;}
.fs2_c00256{font-size:45.440000pt;}
.fs4_c00256{font-size:46.322667pt;}
.fs0_c00256{font-size:48.000000pt;}
.fs1_c00256{font-size:64.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y29_c00256{bottom:2.440825pt;}
.y26_c00256{bottom:2.441225pt;}
.y23_c00256{bottom:3.047467pt;}
.y2a_c00256{bottom:9.142400pt;}
.y28_c00256{bottom:14.628000pt;}
.y25_c00256{bottom:14.628400pt;}
.y2b_c00256{bottom:50.880000pt;}
.y21_c00256{bottom:127.680000pt;}
.y20_c00256{bottom:155.280000pt;}
.y1f_c00256{bottom:182.880000pt;}
.y1e_c00256{bottom:210.480000pt;}
.y1d_c00256{bottom:238.080000pt;}
.y1c_c00256{bottom:265.680000pt;}
.y1b_c00256{bottom:293.280000pt;}
.y1a_c00256{bottom:320.880000pt;}
.y19_c00256{bottom:348.480000pt;}
.y18_c00256{bottom:376.080000pt;}
.y17_c00256{bottom:403.680000pt;}
.y16_c00256{bottom:427.680000pt;}
.y22_c00256{bottom:441.012000pt;}
.y27_c00256{bottom:481.849333pt;}
.y24_c00256{bottom:506.229333pt;}
.y15_c00256{bottom:555.520000pt;}
.y14_c00256{bottom:583.280000pt;}
.y13_c00256{bottom:610.880000pt;}
.y12_c00256{bottom:638.480000pt;}
.y11_c00256{bottom:666.000000pt;}
.y10_c00256{bottom:693.600000pt;}
.yf_c00256{bottom:721.200000pt;}
.ye_c00256{bottom:748.800000pt;}
.yd_c00256{bottom:776.560000pt;}
.yc_c00256{bottom:803.600000pt;}
.yb_c00256{bottom:811.680000pt;}
.ya_c00256{bottom:844.800000pt;}
.y9_c00256{bottom:872.960000pt;}
.y8_c00256{bottom:900.560000pt;}
.y7_c00256{bottom:928.800000pt;}
.y6_c00256{bottom:957.600000pt;}
.y5_c00256{bottom:1005.360000pt;}
.y4_c00256{bottom:1023.040000pt;}
.y3_c00256{bottom:1036.804000pt;}
.y2_c00256{bottom:1050.640000pt;}
.y1_c00256{bottom:1064.400000pt;}
.ha_c00256{height:14.628000pt;}
.hc_c00256{height:23.770667pt;}
.hd_c00256{height:27.195862pt;}
.hb_c00256{height:34.447960pt;}
.h3_c00256{height:47.085938pt;}
.h2_c00256{height:47.109375pt;}
.h4_c00256{height:62.812500pt;}
.h9_c00256{height:64.500000pt;}
.h8_c00256{height:66.750000pt;}
.h5_c00256{height:127.593750pt;}
.h6_c00256{height:128.031562pt;}
.h7_c00256{height:159.913750pt;}
.h0_c00256{height:1122.560000pt;}
.h1_c00256{height:1122.666667pt;}
.w4_c00256{width:51.276000pt;}
.w2_c00256{width:103.202667pt;}
.w3_c00256{width:155.129333pt;}
.w5_c00256{width:207.053333pt;}
.w0_c00256{width:793.840000pt;}
.w1_c00256{width:794.000000pt;}
.x0_c00256{left:0.000000pt;}
.x10_c00256{left:4.546374pt;}
.xf_c00256{left:9.735733pt;}
.x13_c00256{left:19.472400pt;}
.xa_c00256{left:34.401467pt;}
.x14_c00256{left:35.702534pt;}
.x8_c00256{left:48.680133pt;}
.x16_c00256{left:55.820267pt;}
.x3_c00256{left:113.440000pt;}
.x6_c00256{left:132.640000pt;}
.x4_c00256{left:137.440000pt;}
.x12_c00256{left:166.014667pt;}
.x9_c00256{left:217.940000pt;}
.xe_c00256{left:269.866667pt;}
.x5_c00256{left:282.320000pt;}
.x15_c00256{left:321.792000pt;}
.xb_c00256{left:373.717333pt;}
.x2_c00256{left:377.920000pt;}
.x1_c00256{left:396.960000pt;}
.xc_c00256{left:477.569333pt;}
.x11_c00256{left:529.494667pt;}
.x17_c00256{left:581.420000pt;}
.xd_c00256{left:633.346667pt;}
.x18_c00256{left:656.480000pt;}
.x7_c00256{left:737.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_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_a9e58764648ef2dc28d29ce1.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_8f19637f25d5ed64a4f0e239.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_7fb24aa57edd5055ccc26611.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_5d4fe607b800ba74eb57d67d.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00257;src:url('chunks/assets/font_6ed7202260adaa08cb8c5828.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.309300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309300,0.000000,0.000000,0.250000,0,0);}
.v2_c00257{vertical-align:-83.520000px;}
.v1_c00257{vertical-align:-61.938000px;}
.v5_c00257{vertical-align:-10.415358px;}
.v3_c00257{vertical-align:-3.451813px;}
.v0_c00257{vertical-align:0.000000px;}
.v4_c00257{vertical-align:3.451813px;}
.v6_c00257{vertical-align:27.477000px;}
.ls13_c00257{letter-spacing:-2.060784px;}
.ls18_c00257{letter-spacing:-1.391029px;}
.ls12_c00257{letter-spacing:-1.318896px;}
.ls16_c00257{letter-spacing:-1.184951px;}
.ls17_c00257{letter-spacing:-1.133431px;}
.ls1b_c00257{letter-spacing:-0.669755px;}
.ls20_c00257{letter-spacing:-0.652578px;}
.ls15_c00257{letter-spacing:-0.618235px;}
.ls14_c00257{letter-spacing:-0.384678px;}
.ls10_c00257{letter-spacing:-0.240480px;}
.ls11_c00257{letter-spacing:-0.164862px;}
.ls19_c00257{letter-spacing:-0.154559px;}
.lsf_c00257{letter-spacing:-0.120240px;}
.lsd_c00257{letter-spacing:-0.072000px;}
.lsc_c00257{letter-spacing:0.000000px;}
.ls3_c00257{letter-spacing:0.072000px;}
.ls2_c00257{letter-spacing:0.136800px;}
.lse_c00257{letter-spacing:0.144000px;}
.ls4_c00257{letter-spacing:0.219816px;}
.ls5_c00257{letter-spacing:0.329724px;}
.lsa_c00257{letter-spacing:0.628667px;}
.ls1e_c00257{letter-spacing:0.642274px;}
.ls1d_c00257{letter-spacing:0.934218px;}
.ls1f_c00257{letter-spacing:1.044126px;}
.ls7_c00257{letter-spacing:1.081912px;}
.ls21_c00257{letter-spacing:1.373850px;}
.ls1c_c00257{letter-spacing:1.428804px;}
.lsb_c00257{letter-spacing:1.473451px;}
.ls1a_c00257{letter-spacing:1.545588px;}
.ls22_c00257{letter-spacing:1.593666px;}
.ls9_c00257{letter-spacing:2.637792px;}
.ls6_c00257{letter-spacing:49.458816px;}
.ls8_c00257{letter-spacing:190.261883px;}
.ls1_c00257{letter-spacing:224.640000px;}
.ls0_c00257{letter-spacing:1144.260000px;}
.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:-14.909760px;}
.ws1_c00257{word-spacing:-14.789520px;}
.ws30_c00257{word-spacing:-14.013270px;}
.ws2e_c00257{word-spacing:-13.848408px;}
.ws2d_c00257{word-spacing:-12.749328px;}
.ws31_c00257{word-spacing:-12.639420px;}
.ws2f_c00257{word-spacing:-12.419604px;}
.ws2_c00257{word-spacing:-11.100708px;}
.ws7_c00257{word-spacing:-11.025194px;}
.ws45_c00257{word-spacing:-3.135806px;}
.ws44_c00257{word-spacing:-2.304629px;}
.ws49_c00257{word-spacing:-1.473451px;}
.ws42_c00257{word-spacing:-1.428804px;}
.ws3f_c00257{word-spacing:-1.318896px;}
.ws46_c00257{word-spacing:-1.044126px;}
.ws43_c00257{word-spacing:-0.934218px;}
.ws47_c00257{word-spacing:-0.329724px;}
.ws4a_c00257{word-spacing:-0.326289px;}
.ws3a_c00257{word-spacing:-0.219816px;}
.ws3c_c00257{word-spacing:-0.206078px;}
.ws33_c00257{word-spacing:-0.162000px;}
.ws3b_c00257{word-spacing:-0.154559px;}
.ws35_c00257{word-spacing:-0.144000px;}
.ws41_c00257{word-spacing:-0.109908px;}
.ws36_c00257{word-spacing:-0.072000px;}
.ws4b_c00257{word-spacing:-0.054954px;}
.ws32_c00257{word-spacing:0.000000px;}
.ws34_c00257{word-spacing:0.072000px;}
.ws38_c00257{word-spacing:0.164862px;}
.ws3e_c00257{word-spacing:0.384678px;}
.ws39_c00257{word-spacing:0.989172px;}
.ws37_c00257{word-spacing:1.099080px;}
.ws48_c00257{word-spacing:1.318896px;}
.ws40_c00257{word-spacing:1.703574px;}
.ws3d_c00257{word-spacing:2.060784px;}
.ws1a_c00257{word-spacing:31.581515px;}
.ws6_c00257{word-spacing:52.112075px;}
.ws19_c00257{word-spacing:53.987389px;}
.wse_c00257{word-spacing:62.405691px;}
.wsb_c00257{word-spacing:67.748274px;}
.wsf_c00257{word-spacing:79.206233px;}
.wsc_c00257{word-spacing:127.325539px;}
.ws4_c00257{word-spacing:137.990097px;}
.ws2b_c00257{word-spacing:141.436758px;}
.ws14_c00257{word-spacing:156.261032px;}
.ws5_c00257{word-spacing:159.696051px;}
.wsa_c00257{word-spacing:166.565089px;}
.ws16_c00257{word-spacing:166.565574px;}
.ws28_c00257{word-spacing:168.984288px;}
.ws17_c00257{word-spacing:172.384582px;}
.ws10_c00257{word-spacing:182.688502px;}
.ws8_c00257{word-spacing:182.740021px;}
.wsd_c00257{word-spacing:210.684252px;}
.ws1f_c00257{word-spacing:247.268320px;}
.ws23_c00257{word-spacing:248.082330px;}
.ws2c_c00257{word-spacing:254.949893px;}
.ws11_c00257{word-spacing:263.193029px;}
.ws12_c00257{word-spacing:269.128086px;}
.ws1d_c00257{word-spacing:271.358885px;}
.ws20_c00257{word-spacing:272.554140px;}
.ws1e_c00257{word-spacing:296.536514px;}
.ws22_c00257{word-spacing:300.287141px;}
.ws29_c00257{word-spacing:306.675571px;}
.ws26_c00257{word-spacing:306.886801px;}
.ws9_c00257{word-spacing:324.728039px;}
.ws1c_c00257{word-spacing:327.767695px;}
.ws3_c00257{word-spacing:329.385411px;}
.ws21_c00257{word-spacing:335.392596px;}
.ws1b_c00257{word-spacing:340.044816px;}
.ws25_c00257{word-spacing:343.223575px;}
.ws2a_c00257{word-spacing:355.006108px;}
.ws15_c00257{word-spacing:365.067886px;}
.ws13_c00257{word-spacing:375.078144px;}
.ws24_c00257{word-spacing:379.838555px;}
.ws27_c00257{word-spacing:382.429991px;}
.ws18_c00257{word-spacing:416.293824px;}
._14_c00257{margin-left:-4.203981px;}
._3_c00257{margin-left:-2.224828px;}
._0_c00257{margin-left:-1.224000px;}
._1_c00257{width:1.087200px;}
._2_c00257{width:2.881368px;}
._11_c00257{width:3.910201px;}
._9_c00257{width:68.519646px;}
._6_c00257{width:71.919939px;}
._b_c00257{width:76.111885px;}
._c_c00257{width:124.130105px;}
._10_c00257{width:127.304940px;}
._12_c00257{width:137.139076px;}
._e_c00257{width:138.174811px;}
._5_c00257{width:144.033500px;}
._8_c00257{width:147.830634px;}
._4_c00257{width:153.829041px;}
._d_c00257{width:155.219934px;}
._f_c00257{width:158.243487px;}
._13_c00257{width:162.198188px;}
._7_c00257{width:164.951497px;}
._a_c00257{width:183.293042px;}
.fc1_c00257{color:transparent;}
.fc0_c00257{color:rgb(0,0,0);}
.fs5_c00257{font-size:37.780800px;}
.fs4_c00257{font-size:51.519600px;}
.fs0_c00257{font-size:54.000000px;}
.fs3_c00257{font-size:54.954000px;}
.fs2_c00257{font-size:60.120000px;}
.fs6_c00257{font-size:65.257800px;}
.fs1_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y2f_c00257{bottom:3.433650px;}
.y31_c00257{bottom:3.433950px;}
.y22_c00257{bottom:3.434400px;}
.y2b_c00257{bottom:3.434550px;}
.y24_c00257{bottom:3.434700px;}
.y2d_c00257{bottom:3.434850px;}
.y35_c00257{bottom:3.435000px;}
.y1e_c00257{bottom:3.435150px;}
.y27_c00257{bottom:3.435300px;}
.y20_c00257{bottom:3.435450px;}
.y29_c00257{bottom:3.435600px;}
.y38_c00257{bottom:3.435750px;}
.y16_c00257{bottom:4.293000px;}
.y14_c00257{bottom:4.293300px;}
.y1c_c00257{bottom:4.293450px;}
.y12_c00257{bottom:4.293600px;}
.y1a_c00257{bottom:4.293900px;}
.y18_c00257{bottom:4.294200px;}
.y44_c00257{bottom:4.326990px;}
.y52_c00257{bottom:5.146250px;}
.y4f_c00257{bottom:6.010800px;}
.y10_c00257{bottom:6.037452px;}
.y4c_c00257{bottom:12.020250px;}
.y4d_c00257{bottom:12.020550px;}
.y49_c00257{bottom:13.765340px;}
.y43_c00257{bottom:22.351902px;}
.y51_c00257{bottom:23.184900px;}
.yb_c00257{bottom:24.055326px;}
.yf_c00257{bottom:24.062364px;}
.y3e_c00257{bottom:31.783326px;}
.y4b_c00257{bottom:31.790252px;}
.y48_c00257{bottom:33.507564px;}
.y4a_c00257{bottom:39.497400px;}
.y42_c00257{bottom:40.376814px;}
.ya_c00257{bottom:42.080238px;}
.ye_c00257{bottom:42.087276px;}
.y3d_c00257{bottom:49.808238px;}
.y47_c00257{bottom:51.532476px;}
.y54_c00257{bottom:57.330000px;}
.y41_c00257{bottom:58.401726px;}
.y9_c00257{bottom:60.105150px;}
.yd_c00257{bottom:60.112188px;}
.y53_c00257{bottom:60.963900px;}
.y3c_c00257{bottom:67.833150px;}
.y46_c00257{bottom:69.557388px;}
.y40_c00257{bottom:76.426638px;}
.yc_c00257{bottom:78.137100px;}
.y45_c00257{bottom:87.582300px;}
.y3f_c00257{bottom:94.451550px;}
.y7_c00257{bottom:133.470000px;}
.y6_c00257{bottom:147.240000px;}
.y3b_c00257{bottom:148.966500px;}
.y3a_c00257{bottom:166.138500px;}
.y39_c00257{bottom:183.312000px;}
.y37_c00257{bottom:200.484000px;}
.y36_c00257{bottom:217.657500px;}
.y34_c00257{bottom:234.831000px;}
.y33_c00257{bottom:252.004500px;}
.y32_c00257{bottom:269.178000px;}
.y30_c00257{bottom:286.351500px;}
.y2e_c00257{bottom:303.525000px;}
.y2c_c00257{bottom:320.697000px;}
.y2a_c00257{bottom:337.870500px;}
.y28_c00257{bottom:355.042500px;}
.y26_c00257{bottom:372.216000px;}
.y25_c00257{bottom:389.389500px;}
.y23_c00257{bottom:406.563000px;}
.y21_c00257{bottom:423.736500px;}
.y1f_c00257{bottom:440.908500px;}
.y1d_c00257{bottom:458.082000px;}
.y1b_c00257{bottom:475.255500px;}
.y19_c00257{bottom:493.287000px;}
.y17_c00257{bottom:511.318500px;}
.y15_c00257{bottom:529.351500px;}
.y13_c00257{bottom:547.383000px;}
.y11_c00257{bottom:565.414500px;}
.y8_c00257{bottom:583.447500px;}
.y50_c00257{bottom:677.898000px;}
.y4e_c00257{bottom:692.496000px;}
.y5_c00257{bottom:719.640000px;}
.y4_c00257{bottom:761.220000px;}
.y3_c00257{bottom:781.105500px;}
.y2_c00257{bottom:796.590000px;}
.y1_c00257{bottom:827.640000px;}
.hb_c00257{height:16.314000px;}
.hc_c00257{height:16.315500px;}
.h8_c00257{height:17.173500px;}
.h10_c00257{height:22.324500px;}
.h12_c00257{height:36.922500px;}
.he_c00257{height:37.619877px;}
.ha_c00257{height:38.312671px;}
.h9_c00257{height:42.488576px;}
.h7_c00257{height:45.320950px;}
.h2_c00257{height:52.998047px;}
.h11_c00257{height:53.818567px;}
.hf_c00257{height:58.635091px;}
.h5_c00257{height:58.975137px;}
.h3_c00257{height:70.664062px;}
.h4_c00257{height:72.562500px;}
.h6_c00257{height:93.592500px;}
.hd_c00257{height:108.190500px;}
.h13_c00257{height:131.374500px;}
.h0_c00257{height:893.070000px;}
.h1_c00257{height:893.250000px;}
.we_c00257{width:32.932500px;}
.w2_c00257{width:67.989000px;}
.wb_c00257{width:74.364000px;}
.wa_c00257{width:76.486500px;}
.w3_c00257{width:78.612000px;}
.w5_c00257{width:80.737500px;}
.w6_c00257{width:90.297000px;}
.w7_c00257{width:97.732500px;}
.w8_c00257{width:106.233000px;}
.w9_c00257{width:107.295000px;}
.wf_c00257{width:143.415000px;}
.wd_c00257{width:147.663000px;}
.wc_c00257{width:719.194500px;}
.w4_c00257{width:1047.454500px;}
.w0_c00257{width:1262.880000px;}
.w1_c00257{width:1263.000000px;}
.x0_c00257{left:0.000000px;}
.x1f_c00257{left:2.124412px;}
.x8_c00257{left:3.194808px;}
.x16_c00257{left:4.248994px;}
.xc_c00257{left:5.311294px;}
.x1d_c00257{left:6.373725px;}
.x22_c00257{left:7.461549px;}
.xe_c00257{left:8.489780px;}
.x29_c00257{left:9.570052px;}
.x28_c00257{left:10.623881px;}
.x2b_c00257{left:11.685450px;}
.x11_c00257{left:12.748200px;}
.x13_c00257{left:14.872200px;}
.x9_c00257{left:15.942746px;}
.x21_c00257{left:19.121663px;}
.x19_c00257{left:20.175005px;}
.xf_c00257{left:21.237717px;}
.x1c_c00257{left:23.370975px;}
.xb_c00257{left:24.433200px;}
.x7_c00257{left:25.495200px;}
.x2c_c00257{left:26.558250px;}
.xd_c00257{left:27.611686px;}
.x25_c00257{left:30.807638px;}
.x27_c00257{left:33.995100px;}
.x24_c00257{left:35.056950px;}
.x15_c00257{left:40.368150px;}
.x2e_c00257{left:42.492544px;}
.x18_c00257{left:44.617050px;}
.x1e_c00257{left:47.813020px;}
.x1b_c00257{left:48.866850px;}
.x2_c00257{left:106.380000px;}
.x10_c00257{left:107.712000px;}
.x2f_c00257{left:141.706500px;}
.x2d_c00257{left:201.841800px;}
.x14_c00257{left:286.183500px;}
.x17_c00257{left:377.544000px;}
.x1a_c00257{left:476.340000px;}
.x3_c00257{left:495.450000px;}
.x20_c00257{left:583.635000px;}
.x1_c00257{left:631.440000px;}
.x23_c00257{left:691.992000px;}
.x26_c00257{left:771.666000px;}
.x2a_c00257{left:849.216000px;}
.x12_c00257{left:924.642000px;}
.x6_c00257{left:1006.441500px;}
.xa_c00257{left:1075.492500px;}
.x5_c00257{left:1089.540000px;}
.x4_c00257{left:1156.230000px;}
@media print{
.v2_c00257{vertical-align:-74.240000pt;}
.v1_c00257{vertical-align:-55.056000pt;}
.v5_c00257{vertical-align:-9.258096pt;}
.v3_c00257{vertical-align:-3.068278pt;}
.v0_c00257{vertical-align:0.000000pt;}
.v4_c00257{vertical-align:3.068278pt;}
.v6_c00257{vertical-align:24.424000pt;}
.ls13_c00257{letter-spacing:-1.831808pt;}
.ls18_c00257{letter-spacing:-1.236470pt;}
.ls12_c00257{letter-spacing:-1.172352pt;}
.ls16_c00257{letter-spacing:-1.053290pt;}
.ls17_c00257{letter-spacing:-1.007494pt;}
.ls1b_c00257{letter-spacing:-0.595338pt;}
.ls20_c00257{letter-spacing:-0.580069pt;}
.ls15_c00257{letter-spacing:-0.549542pt;}
.ls14_c00257{letter-spacing:-0.341936pt;}
.ls10_c00257{letter-spacing:-0.213760pt;}
.ls11_c00257{letter-spacing:-0.146544pt;}
.ls19_c00257{letter-spacing:-0.137386pt;}
.lsf_c00257{letter-spacing:-0.106880pt;}
.lsd_c00257{letter-spacing:-0.064000pt;}
.lsc_c00257{letter-spacing:0.000000pt;}
.ls3_c00257{letter-spacing:0.064000pt;}
.ls2_c00257{letter-spacing:0.121600pt;}
.lse_c00257{letter-spacing:0.128000pt;}
.ls4_c00257{letter-spacing:0.195392pt;}
.ls5_c00257{letter-spacing:0.293088pt;}
.lsa_c00257{letter-spacing:0.558815pt;}
.ls1e_c00257{letter-spacing:0.570910pt;}
.ls1d_c00257{letter-spacing:0.830416pt;}
.ls1f_c00257{letter-spacing:0.928112pt;}
.ls7_c00257{letter-spacing:0.961699pt;}
.ls21_c00257{letter-spacing:1.221200pt;}
.ls1c_c00257{letter-spacing:1.270048pt;}
.lsb_c00257{letter-spacing:1.309734pt;}
.ls1a_c00257{letter-spacing:1.373856pt;}
.ls22_c00257{letter-spacing:1.416592pt;}
.ls9_c00257{letter-spacing:2.344704pt;}
.ls6_c00257{letter-spacing:43.963392pt;}
.ls8_c00257{letter-spacing:169.121674pt;}
.ls1_c00257{letter-spacing:199.680000pt;}
.ls0_c00257{letter-spacing:1017.120000pt;}
.ws0_c00257{word-spacing:-13.253120pt;}
.ws1_c00257{word-spacing:-13.146240pt;}
.ws30_c00257{word-spacing:-12.456240pt;}
.ws2e_c00257{word-spacing:-12.309696pt;}
.ws2d_c00257{word-spacing:-11.332736pt;}
.ws31_c00257{word-spacing:-11.235040pt;}
.ws2f_c00257{word-spacing:-11.039648pt;}
.ws2_c00257{word-spacing:-9.867296pt;}
.ws7_c00257{word-spacing:-9.800173pt;}
.ws45_c00257{word-spacing:-2.787383pt;}
.ws44_c00257{word-spacing:-2.048559pt;}
.ws49_c00257{word-spacing:-1.309734pt;}
.ws42_c00257{word-spacing:-1.270048pt;}
.ws3f_c00257{word-spacing:-1.172352pt;}
.ws46_c00257{word-spacing:-0.928112pt;}
.ws43_c00257{word-spacing:-0.830416pt;}
.ws47_c00257{word-spacing:-0.293088pt;}
.ws4a_c00257{word-spacing:-0.290035pt;}
.ws3a_c00257{word-spacing:-0.195392pt;}
.ws3c_c00257{word-spacing:-0.183181pt;}
.ws33_c00257{word-spacing:-0.144000pt;}
.ws3b_c00257{word-spacing:-0.137386pt;}
.ws35_c00257{word-spacing:-0.128000pt;}
.ws41_c00257{word-spacing:-0.097696pt;}
.ws36_c00257{word-spacing:-0.064000pt;}
.ws4b_c00257{word-spacing:-0.048848pt;}
.ws32_c00257{word-spacing:0.000000pt;}
.ws34_c00257{word-spacing:0.064000pt;}
.ws38_c00257{word-spacing:0.146544pt;}
.ws3e_c00257{word-spacing:0.341936pt;}
.ws39_c00257{word-spacing:0.879264pt;}
.ws37_c00257{word-spacing:0.976960pt;}
.ws48_c00257{word-spacing:1.172352pt;}
.ws40_c00257{word-spacing:1.514288pt;}
.ws3d_c00257{word-spacing:1.831808pt;}
.ws1a_c00257{word-spacing:28.072458pt;}
.ws6_c00257{word-spacing:46.321845pt;}
.ws19_c00257{word-spacing:47.988790pt;}
.wse_c00257{word-spacing:55.471726pt;}
.wsb_c00257{word-spacing:60.220688pt;}
.wsf_c00257{word-spacing:70.405540pt;}
.wsc_c00257{word-spacing:113.178257pt;}
.ws4_c00257{word-spacing:122.657864pt;}
.ws2b_c00257{word-spacing:125.721563pt;}
.ws14_c00257{word-spacing:138.898695pt;}
.ws5_c00257{word-spacing:141.952046pt;}
.wsa_c00257{word-spacing:148.057857pt;}
.ws16_c00257{word-spacing:148.058288pt;}
.ws28_c00257{word-spacing:150.208256pt;}
.ws17_c00257{word-spacing:153.230739pt;}
.ws10_c00257{word-spacing:162.389779pt;}
.ws8_c00257{word-spacing:162.435574pt;}
.wsd_c00257{word-spacing:187.274891pt;}
.ws1f_c00257{word-spacing:219.794062pt;}
.ws23_c00257{word-spacing:220.517627pt;}
.ws2c_c00257{word-spacing:226.622127pt;}
.ws11_c00257{word-spacing:233.949359pt;}
.ws12_c00257{word-spacing:239.224966pt;}
.ws1d_c00257{word-spacing:241.207898pt;}
.ws20_c00257{word-spacing:242.270347pt;}
.ws1e_c00257{word-spacing:263.588012pt;}
.ws22_c00257{word-spacing:266.921903pt;}
.ws29_c00257{word-spacing:272.600508pt;}
.ws26_c00257{word-spacing:272.788268pt;}
.ws9_c00257{word-spacing:288.647146pt;}
.ws1c_c00257{word-spacing:291.349062pt;}
.ws3_c00257{word-spacing:292.787032pt;}
.ws21_c00257{word-spacing:298.126752pt;}
.ws1b_c00257{word-spacing:302.262059pt;}
.ws25_c00257{word-spacing:305.087622pt;}
.ws2a_c00257{word-spacing:315.560985pt;}
.ws15_c00257{word-spacing:324.504787pt;}
.ws13_c00257{word-spacing:333.402795pt;}
.ws24_c00257{word-spacing:337.634271pt;}
.ws27_c00257{word-spacing:339.937770pt;}
.ws18_c00257{word-spacing:370.038955pt;}
._14_c00257{margin-left:-3.736872pt;}
._3_c00257{margin-left:-1.977625pt;}
._0_c00257{margin-left:-1.088000pt;}
._1_c00257{width:0.966400pt;}
._2_c00257{width:2.561216pt;}
._11_c00257{width:3.475734pt;}
._9_c00257{width:60.906352pt;}
._6_c00257{width:63.928835pt;}
._b_c00257{width:67.655009pt;}
._c_c00257{width:110.337871pt;}
._10_c00257{width:113.159947pt;}
._12_c00257{width:121.901401pt;}
._e_c00257{width:122.822054pt;}
._5_c00257{width:128.029778pt;}
._8_c00257{width:131.405008pt;}
._4_c00257{width:136.736925pt;}
._d_c00257{width:137.973274pt;}
._f_c00257{width:140.660878pt;}
._13_c00257{width:144.176167pt;}
._7_c00257{width:146.623553pt;}
._a_c00257{width:162.927149pt;}
.fs5_c00257{font-size:33.582933pt;}
.fs4_c00257{font-size:45.795200pt;}
.fs0_c00257{font-size:48.000000pt;}
.fs3_c00257{font-size:48.848000pt;}
.fs2_c00257{font-size:53.440000pt;}
.fs6_c00257{font-size:58.006933pt;}
.fs1_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y2f_c00257{bottom:3.052133pt;}
.y31_c00257{bottom:3.052400pt;}
.y22_c00257{bottom:3.052800pt;}
.y2b_c00257{bottom:3.052933pt;}
.y24_c00257{bottom:3.053067pt;}
.y2d_c00257{bottom:3.053200pt;}
.y35_c00257{bottom:3.053333pt;}
.y1e_c00257{bottom:3.053467pt;}
.y27_c00257{bottom:3.053600pt;}
.y20_c00257{bottom:3.053733pt;}
.y29_c00257{bottom:3.053867pt;}
.y38_c00257{bottom:3.054000pt;}
.y16_c00257{bottom:3.816000pt;}
.y14_c00257{bottom:3.816267pt;}
.y1c_c00257{bottom:3.816400pt;}
.y12_c00257{bottom:3.816533pt;}
.y1a_c00257{bottom:3.816800pt;}
.y18_c00257{bottom:3.817067pt;}
.y44_c00257{bottom:3.846213pt;}
.y52_c00257{bottom:4.574444pt;}
.y4f_c00257{bottom:5.342933pt;}
.y10_c00257{bottom:5.366624pt;}
.y4c_c00257{bottom:10.684667pt;}
.y4d_c00257{bottom:10.684933pt;}
.y49_c00257{bottom:12.235857pt;}
.y43_c00257{bottom:19.868357pt;}
.y51_c00257{bottom:20.608800pt;}
.yb_c00257{bottom:21.382512pt;}
.yf_c00257{bottom:21.388768pt;}
.y3e_c00257{bottom:28.251845pt;}
.y4b_c00257{bottom:28.258001pt;}
.y48_c00257{bottom:29.784501pt;}
.y4a_c00257{bottom:35.108800pt;}
.y42_c00257{bottom:35.890501pt;}
.ya_c00257{bottom:37.404656pt;}
.ye_c00257{bottom:37.410912pt;}
.y3d_c00257{bottom:44.273989pt;}
.y47_c00257{bottom:45.806645pt;}
.y54_c00257{bottom:50.960000pt;}
.y41_c00257{bottom:51.912645pt;}
.y9_c00257{bottom:53.426800pt;}
.yd_c00257{bottom:53.433056pt;}
.y53_c00257{bottom:54.190133pt;}
.y3c_c00257{bottom:60.296133pt;}
.y46_c00257{bottom:61.828789pt;}
.y40_c00257{bottom:67.934789pt;}
.yc_c00257{bottom:69.455200pt;}
.y45_c00257{bottom:77.850933pt;}
.y3f_c00257{bottom:83.956933pt;}
.y7_c00257{bottom:118.640000pt;}
.y6_c00257{bottom:130.880000pt;}
.y3b_c00257{bottom:132.414667pt;}
.y3a_c00257{bottom:147.678667pt;}
.y39_c00257{bottom:162.944000pt;}
.y37_c00257{bottom:178.208000pt;}
.y36_c00257{bottom:193.473333pt;}
.y34_c00257{bottom:208.738667pt;}
.y33_c00257{bottom:224.004000pt;}
.y32_c00257{bottom:239.269333pt;}
.y30_c00257{bottom:254.534667pt;}
.y2e_c00257{bottom:269.800000pt;}
.y2c_c00257{bottom:285.064000pt;}
.y2a_c00257{bottom:300.329333pt;}
.y28_c00257{bottom:315.593333pt;}
.y26_c00257{bottom:330.858667pt;}
.y25_c00257{bottom:346.124000pt;}
.y23_c00257{bottom:361.389333pt;}
.y21_c00257{bottom:376.654667pt;}
.y1f_c00257{bottom:391.918667pt;}
.y1d_c00257{bottom:407.184000pt;}
.y1b_c00257{bottom:422.449333pt;}
.y19_c00257{bottom:438.477333pt;}
.y17_c00257{bottom:454.505333pt;}
.y15_c00257{bottom:470.534667pt;}
.y13_c00257{bottom:486.562667pt;}
.y11_c00257{bottom:502.590667pt;}
.y8_c00257{bottom:518.620000pt;}
.y50_c00257{bottom:602.576000pt;}
.y4e_c00257{bottom:615.552000pt;}
.y5_c00257{bottom:639.680000pt;}
.y4_c00257{bottom:676.640000pt;}
.y3_c00257{bottom:694.316000pt;}
.y2_c00257{bottom:708.080000pt;}
.y1_c00257{bottom:735.680000pt;}
.hb_c00257{height:14.501333pt;}
.hc_c00257{height:14.502667pt;}
.h8_c00257{height:15.265333pt;}
.h10_c00257{height:19.844000pt;}
.h12_c00257{height:32.820000pt;}
.he_c00257{height:33.439891pt;}
.ha_c00257{height:34.055708pt;}
.h9_c00257{height:37.767623pt;}
.h7_c00257{height:40.285289pt;}
.h2_c00257{height:47.109375pt;}
.h11_c00257{height:47.838726pt;}
.hf_c00257{height:52.120081pt;}
.h5_c00257{height:52.422344pt;}
.h3_c00257{height:62.812500pt;}
.h4_c00257{height:64.500000pt;}
.h6_c00257{height:83.193333pt;}
.hd_c00257{height:96.169333pt;}
.h13_c00257{height:116.777333pt;}
.h0_c00257{height:793.840000pt;}
.h1_c00257{height:794.000000pt;}
.we_c00257{width:29.273333pt;}
.w2_c00257{width:60.434667pt;}
.wb_c00257{width:66.101333pt;}
.wa_c00257{width:67.988000pt;}
.w3_c00257{width:69.877333pt;}
.w5_c00257{width:71.766667pt;}
.w6_c00257{width:80.264000pt;}
.w7_c00257{width:86.873333pt;}
.w8_c00257{width:94.429333pt;}
.w9_c00257{width:95.373333pt;}
.wf_c00257{width:127.480000pt;}
.wd_c00257{width:131.256000pt;}
.wc_c00257{width:639.284000pt;}
.w4_c00257{width:931.070667pt;}
.w0_c00257{width:1122.560000pt;}
.w1_c00257{width:1122.666667pt;}
.x0_c00257{left:0.000000pt;}
.x1f_c00257{left:1.888367pt;}
.x8_c00257{left:2.839829pt;}
.x16_c00257{left:3.776883pt;}
.xc_c00257{left:4.721150pt;}
.x1d_c00257{left:5.665533pt;}
.x22_c00257{left:6.632488pt;}
.xe_c00257{left:7.546471pt;}
.x29_c00257{left:8.506713pt;}
.x28_c00257{left:9.443450pt;}
.x2b_c00257{left:10.387067pt;}
.x11_c00257{left:11.331733pt;}
.x13_c00257{left:13.219733pt;}
.x9_c00257{left:14.171329pt;}
.x21_c00257{left:16.997033pt;}
.x19_c00257{left:17.933337pt;}
.xf_c00257{left:18.877971pt;}
.x1c_c00257{left:20.774200pt;}
.xb_c00257{left:21.718400pt;}
.x7_c00257{left:22.662400pt;}
.x2c_c00257{left:23.607333pt;}
.xd_c00257{left:24.543721pt;}
.x25_c00257{left:27.384567pt;}
.x27_c00257{left:30.217867pt;}
.x24_c00257{left:31.161733pt;}
.x15_c00257{left:35.882800pt;}
.x2e_c00257{left:37.771150pt;}
.x18_c00257{left:39.659600pt;}
.x1e_c00257{left:42.500463pt;}
.x1b_c00257{left:43.437200pt;}
.x2_c00257{left:94.560000pt;}
.x10_c00257{left:95.744000pt;}
.x2f_c00257{left:125.961333pt;}
.x2d_c00257{left:179.414933pt;}
.x14_c00257{left:254.385333pt;}
.x17_c00257{left:335.594667pt;}
.x1a_c00257{left:423.413333pt;}
.x3_c00257{left:440.400000pt;}
.x20_c00257{left:518.786667pt;}
.x1_c00257{left:561.280000pt;}
.x23_c00257{left:615.104000pt;}
.x26_c00257{left:685.925333pt;}
.x2a_c00257{left:754.858667pt;}
.x12_c00257{left:821.904000pt;}
.x6_c00257{left:894.614667pt;}
.xa_c00257{left:955.993333pt;}
.x5_c00257{left:968.480000pt;}
.x4_c00257{left:1027.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_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_5ca8b2824deaba0f3b11ec6c.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.284668;font-style:normal;font-weight:normal;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_f02a0b000d54b9e1205078e1.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_cc74dc5c84e0656a286d21f3.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_31b58398fc9396204f33347d.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:0.921875;font-style: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);}
.m2_c00258{transform:matrix(0.274949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274949,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.274951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274951,0.000000,0.000000,0.250000,0,0);}
.v1_c00258{vertical-align:-61.920000px;}
.v0_c00258{vertical-align:0.000000px;}
.ls6_c00258{letter-spacing:-2.318616px;}
.lse_c00258{letter-spacing:-1.565066px;}
.lsb_c00258{letter-spacing:-1.333204px;}
.lsd_c00258{letter-spacing:-1.275239px;}
.lsc_c00258{letter-spacing:-0.753550px;}
.ls9_c00258{letter-spacing:-0.695585px;}
.ls8_c00258{letter-spacing:-0.432810px;}
.ls11_c00258{letter-spacing:-0.405758px;}
.ls10_c00258{letter-spacing:-0.231862px;}
.lsa_c00258{letter-spacing:-0.173896px;}
.ls5_c00258{letter-spacing:-0.120240px;}
.ls3_c00258{letter-spacing:-0.108000px;}
.ls4_c00258{letter-spacing:0.000000px;}
.ls7_c00258{letter-spacing:1.217273px;}
.ls2_c00258{letter-spacing:1.584169px;}
.lsf_c00258{letter-spacing:1.738962px;}
.ls1_c00258{letter-spacing:214.066222px;}
.ls0_c00258{letter-spacing:725.580000px;}
.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:-14.909760px;}
.ws5_c00258{word-spacing:-13.540770px;}
.ws3_c00258{word-spacing:-10.781564px;}
.ws31_c00258{word-spacing:-0.753550px;}
.ws2d_c00258{word-spacing:0.000000px;}
.ws32_c00258{word-spacing:0.057965px;}
.ws2f_c00258{word-spacing:0.162000px;}
.ws2e_c00258{word-spacing:0.270000px;}
.ws30_c00258{word-spacing:2.318616px;}
.ws1_c00258{word-spacing:35.532790px;}
.ws6_c00258{word-spacing:58.632002px;}
.ws7_c00258{word-spacing:60.741943px;}
.wsf_c00258{word-spacing:70.213489px;}
.ws24_c00258{word-spacing:73.697210px;}
.wsb_c00258{word-spacing:76.224501px;}
.ws10_c00258{word-spacing:89.116006px;}
.ws12_c00258{word-spacing:127.778928px;}
.ws25_c00258{word-spacing:130.306219px;}
.wsc_c00258{word-spacing:143.255690px;}
.ws19_c00258{word-spacing:147.521943px;}
.ws4_c00258{word-spacing:155.254527px;}
.ws1f_c00258{word-spacing:159.138209px;}
.ws27_c00258{word-spacing:190.126512px;}
.ws13_c00258{word-spacing:193.952228px;}
.ws9_c00258{word-spacing:205.603274px;}
.ws11_c00258{word-spacing:240.423090px;}
.ws15_c00258{word-spacing:256.346185px;}
.ws1a_c00258{word-spacing:265.209095px;}
.wse_c00258{word-spacing:284.528962px;}
.wsd_c00258{word-spacing:292.255750px;}
.ws8_c00258{word-spacing:296.122042px;}
.ws16_c00258{word-spacing:303.854627px;}
.ws2c_c00258{word-spacing:310.514851px;}
.wsa_c00258{word-spacing:319.308202px;}
.ws20_c00258{word-spacing:321.626818px;}
.ws18_c00258{word-spacing:321.858680px;}
.ws28_c00258{word-spacing:325.893072px;}
.ws2_c00258{word-spacing:326.721977px;}
.ws23_c00258{word-spacing:328.391381px;}
.ws1e_c00258{word-spacing:337.161546px;}
.ws22_c00258{word-spacing:338.633867px;}
.ws17_c00258{word-spacing:347.519963px;}
.ws2a_c00258{word-spacing:366.126856px;}
.ws29_c00258{word-spacing:373.140669px;}
.ws26_c00258{word-spacing:380.038552px;}
.ws14_c00258{word-spacing:382.183272px;}
.ws21_c00258{word-spacing:390.083956px;}
.ws2b_c00258{word-spacing:391.851901px;}
.ws1d_c00258{word-spacing:409.647278px;}
.ws1b_c00258{word-spacing:410.412422px;}
.ws1c_c00258{word-spacing:434.201422px;}
._2_c00258{margin-left:-2.393971px;}
._1_c00258{margin-left:-1.058400px;}
._0_c00258{width:1.225800px;}
._6_c00258{width:2.832767px;}
._3_c00258{width:3.940994px;}
._5_c00258{width:80.218970px;}
._9_c00258{width:81.327197px;}
._c_c00258{width:85.554615px;}
._10_c00258{width:122.045595px;}
._f_c00258{width:139.677008px;}
._a_c00258{width:142.516561px;}
._7_c00258{width:154.608381px;}
._4_c00258{width:161.434292px;}
._8_c00258{width:162.542519px;}
._d_c00258{width:184.956750px;}
._11_c00258{width:199.060642px;}
._b_c00258{width:215.042118px;}
._e_c00258{width:317.575373px;}
.fc0_c00258{color:rgb(0,0,0);}
.fs0_c00258{font-size:54.000000px;}
.fs3_c00258{font-size:57.965400px;}
.fs2_c00258{font-size:60.120000px;}
.fs4_c00258{font-size:61.830000px;}
.fs1_c00258{font-size:72.000000px;}
.y0_c00258{bottom:0.000000px;}
.y1f_c00258{bottom:2.896800px;}
.y44_c00258{bottom:2.896950px;}
.y36_c00258{bottom:2.897100px;}
.y42_c00258{bottom:2.897250px;}
.y13_c00258{bottom:2.897400px;}
.y1b_c00258{bottom:2.897550px;}
.yf_c00258{bottom:2.897700px;}
.y31_c00258{bottom:2.897850px;}
.yc_c00258{bottom:2.898000px;}
.y17_c00258{bottom:2.898150px;}
.y39_c00258{bottom:2.898300px;}
.y8_c00258{bottom:2.898450px;}
.y24_c00258{bottom:2.898750px;}
.y2b_c00258{bottom:2.898900px;}
.y33_c00258{bottom:2.899050px;}
.y20_c00258{bottom:3.862800px;}
.y3e_c00258{bottom:3.862950px;}
.y37_c00258{bottom:3.863100px;}
.y14_c00258{bottom:3.863400px;}
.y1c_c00258{bottom:3.863550px;}
.y10_c00258{bottom:3.863700px;}
.y19_c00258{bottom:3.863850px;}
.yd_c00258{bottom:3.864000px;}
.y12_c00258{bottom:3.864150px;}
.y2f_c00258{bottom:3.864300px;}
.y9_c00258{bottom:3.864450px;}
.y27_c00258{bottom:3.864600px;}
.yb_c00258{bottom:3.864750px;}
.y2c_c00258{bottom:3.864900px;}
.y34_c00258{bottom:3.865050px;}
.y7_c00258{bottom:3.865200px;}
.y2a_c00258{bottom:3.865350px;}
.y45_c00258{bottom:57.330000px;}
.y5_c00258{bottom:142.380000px;}
.y43_c00258{bottom:158.103000px;}
.y41_c00258{bottom:177.424500px;}
.y40_c00258{bottom:196.746000px;}
.y3f_c00258{bottom:216.067500px;}
.y3d_c00258{bottom:235.390500px;}
.y3c_c00258{bottom:254.710500px;}
.y3b_c00258{bottom:274.032000px;}
.y3a_c00258{bottom:293.355000px;}
.y38_c00258{bottom:312.676500px;}
.y35_c00258{bottom:331.999500px;}
.y32_c00258{bottom:351.319500px;}
.y30_c00258{bottom:370.642500px;}
.y2e_c00258{bottom:389.964000px;}
.y2d_c00258{bottom:409.285500px;}
.y29_c00258{bottom:428.607000px;}
.y28_c00258{bottom:447.930000px;}
.y26_c00258{bottom:467.251500px;}
.y25_c00258{bottom:486.574500px;}
.y23_c00258{bottom:505.894500px;}
.y22_c00258{bottom:525.217500px;}
.y21_c00258{bottom:544.539000px;}
.y1e_c00258{bottom:563.862000px;}
.y1d_c00258{bottom:583.182000px;}
.y1a_c00258{bottom:602.505000px;}
.y18_c00258{bottom:621.826500px;}
.y16_c00258{bottom:641.148000px;}
.y15_c00258{bottom:660.469500px;}
.y11_c00258{bottom:679.792500px;}
.ye_c00258{bottom:699.114000px;}
.ya_c00258{bottom:718.435500px;}
.y6_c00258{bottom:737.757000px;}
.y4_c00258{bottom:761.220000px;}
.y3_c00258{bottom:781.110000px;}
.y2_c00258{bottom:796.594500px;}
.y1_c00258{bottom:827.640000px;}
.h9_c00258{height:18.354000px;}
.h5_c00258{height:18.355500px;}
.h8_c00258{height:43.106106px;}
.h7_c00258{height:45.980024px;}
.h6_c00258{height:47.804473px;}
.h2_c00258{height:52.998047px;}
.h4_c00258{height:58.975137px;}
.h3_c00258{height:70.664062px;}
.h0_c00258{height:893.070000px;}
.h1_c00258{height:893.250000px;}
.w2_c00258{width:1047.633000px;}
.w0_c00258{width:1262.880000px;}
.w1_c00258{width:1263.000000px;}
.x0_c00258{left:0.000000px;}
.x5_c00258{left:8.499000px;}
.x2_c00258{left:106.380000px;}
.x4_c00258{left:107.803500px;}
.x6_c00258{left:386.752200px;}
.x9_c00258{left:387.814650px;}
.x8_c00258{left:389.939700px;}
.x7_c00258{left:508.940700px;}
.x1_c00258{left:631.440000px;}
.x3_c00258{left:1089.540000px;}
.xa_c00258{left:1129.590000px;}
@media print{
.v1_c00258{vertical-align:-55.040000pt;}
.v0_c00258{vertical-align:0.000000pt;}
.ls6_c00258{letter-spacing:-2.060992pt;}
.lse_c00258{letter-spacing:-1.391170pt;}
.lsb_c00258{letter-spacing:-1.185070pt;}
.lsd_c00258{letter-spacing:-1.133546pt;}
.lsc_c00258{letter-spacing:-0.669822pt;}
.ls9_c00258{letter-spacing:-0.618298pt;}
.ls8_c00258{letter-spacing:-0.384720pt;}
.ls11_c00258{letter-spacing:-0.360674pt;}
.ls10_c00258{letter-spacing:-0.206099pt;}
.lsa_c00258{letter-spacing:-0.154574pt;}
.ls5_c00258{letter-spacing:-0.106880pt;}
.ls3_c00258{letter-spacing:-0.096000pt;}
.ls4_c00258{letter-spacing:0.000000pt;}
.ls7_c00258{letter-spacing:1.082021pt;}
.ls2_c00258{letter-spacing:1.408151pt;}
.lsf_c00258{letter-spacing:1.545744pt;}
.ls1_c00258{letter-spacing:190.281086pt;}
.ls0_c00258{letter-spacing:644.960000pt;}
.ws0_c00258{word-spacing:-13.253120pt;}
.ws5_c00258{word-spacing:-12.036240pt;}
.ws3_c00258{word-spacing:-9.583613pt;}
.ws31_c00258{word-spacing:-0.669822pt;}
.ws2d_c00258{word-spacing:0.000000pt;}
.ws32_c00258{word-spacing:0.051525pt;}
.ws2f_c00258{word-spacing:0.144000pt;}
.ws2e_c00258{word-spacing:0.240000pt;}
.ws30_c00258{word-spacing:2.060992pt;}
.ws1_c00258{word-spacing:31.584702pt;}
.ws6_c00258{word-spacing:52.117335pt;}
.ws7_c00258{word-spacing:53.992838pt;}
.wsf_c00258{word-spacing:62.411990pt;}
.ws24_c00258{word-spacing:65.508631pt;}
.wsb_c00258{word-spacing:67.755112pt;}
.ws10_c00258{word-spacing:79.214228pt;}
.ws12_c00258{word-spacing:113.581269pt;}
.ws25_c00258{word-spacing:115.827750pt;}
.wsc_c00258{word-spacing:127.338391pt;}
.ws19_c00258{word-spacing:131.130616pt;}
.ws4_c00258{word-spacing:138.004024pt;}
.ws1f_c00258{word-spacing:141.456186pt;}
.ws27_c00258{word-spacing:169.001344pt;}
.ws13_c00258{word-spacing:172.401981pt;}
.ws9_c00258{word-spacing:182.758466pt;}
.ws11_c00258{word-spacing:213.709413pt;}
.ws15_c00258{word-spacing:227.863276pt;}
.ws1a_c00258{word-spacing:235.741417pt;}
.wse_c00258{word-spacing:252.914633pt;}
.wsd_c00258{word-spacing:259.782889pt;}
.ws8_c00258{word-spacing:263.219593pt;}
.ws16_c00258{word-spacing:270.093002pt;}
.ws2c_c00258{word-spacing:276.013201pt;}
.wsa_c00258{word-spacing:283.829513pt;}
.ws20_c00258{word-spacing:285.890505pt;}
.ws18_c00258{word-spacing:286.096604pt;}
.ws28_c00258{word-spacing:289.682731pt;}
.ws2_c00258{word-spacing:290.419535pt;}
.ws23_c00258{word-spacing:291.903449pt;}
.ws1e_c00258{word-spacing:299.699152pt;}
.ws22_c00258{word-spacing:301.007882pt;}
.ws17_c00258{word-spacing:308.906633pt;}
.ws2a_c00258{word-spacing:325.446094pt;}
.ws29_c00258{word-spacing:331.680595pt;}
.ws26_c00258{word-spacing:337.812046pt;}
.ws14_c00258{word-spacing:339.718464pt;}
.ws21_c00258{word-spacing:346.741294pt;}
.ws2b_c00258{word-spacing:348.312800pt;}
.ws1d_c00258{word-spacing:364.130914pt;}
.ws1b_c00258{word-spacing:364.811041pt;}
.ws1c_c00258{word-spacing:385.956819pt;}
._2_c00258{margin-left:-2.127974pt;}
._1_c00258{margin-left:-0.940800pt;}
._0_c00258{width:1.089600pt;}
._6_c00258{width:2.518015pt;}
._3_c00258{width:3.503106pt;}
._5_c00258{width:71.305751pt;}
._9_c00258{width:72.290842pt;}
._c_c00258{width:76.048547pt;}
._10_c00258{width:108.484974pt;}
._f_c00258{width:124.157340pt;}
._a_c00258{width:126.681388pt;}
._7_c00258{width:137.429672pt;}
._4_c00258{width:143.497148pt;}
._8_c00258{width:144.482239pt;}
._d_c00258{width:164.406000pt;}
._11_c00258{width:176.942793pt;}
._b_c00258{width:191.148549pt;}
._e_c00258{width:282.289221pt;}
.fs0_c00258{font-size:48.000000pt;}
.fs3_c00258{font-size:51.524800pt;}
.fs2_c00258{font-size:53.440000pt;}
.fs4_c00258{font-size:54.960000pt;}
.fs1_c00258{font-size:64.000000pt;}
.y0_c00258{bottom:0.000000pt;}
.y1f_c00258{bottom:2.574933pt;}
.y44_c00258{bottom:2.575067pt;}
.y36_c00258{bottom:2.575200pt;}
.y42_c00258{bottom:2.575333pt;}
.y13_c00258{bottom:2.575467pt;}
.y1b_c00258{bottom:2.575600pt;}
.yf_c00258{bottom:2.575733pt;}
.y31_c00258{bottom:2.575867pt;}
.yc_c00258{bottom:2.576000pt;}
.y17_c00258{bottom:2.576133pt;}
.y39_c00258{bottom:2.576267pt;}
.y8_c00258{bottom:2.576400pt;}
.y24_c00258{bottom:2.576667pt;}
.y2b_c00258{bottom:2.576800pt;}
.y33_c00258{bottom:2.576933pt;}
.y20_c00258{bottom:3.433600pt;}
.y3e_c00258{bottom:3.433733pt;}
.y37_c00258{bottom:3.433867pt;}
.y14_c00258{bottom:3.434133pt;}
.y1c_c00258{bottom:3.434267pt;}
.y10_c00258{bottom:3.434400pt;}
.y19_c00258{bottom:3.434533pt;}
.yd_c00258{bottom:3.434667pt;}
.y12_c00258{bottom:3.434800pt;}
.y2f_c00258{bottom:3.434933pt;}
.y9_c00258{bottom:3.435067pt;}
.y27_c00258{bottom:3.435200pt;}
.yb_c00258{bottom:3.435333pt;}
.y2c_c00258{bottom:3.435467pt;}
.y34_c00258{bottom:3.435600pt;}
.y7_c00258{bottom:3.435733pt;}
.y2a_c00258{bottom:3.435867pt;}
.y45_c00258{bottom:50.960000pt;}
.y5_c00258{bottom:126.560000pt;}
.y43_c00258{bottom:140.536000pt;}
.y41_c00258{bottom:157.710667pt;}
.y40_c00258{bottom:174.885333pt;}
.y3f_c00258{bottom:192.060000pt;}
.y3d_c00258{bottom:209.236000pt;}
.y3c_c00258{bottom:226.409333pt;}
.y3b_c00258{bottom:243.584000pt;}
.y3a_c00258{bottom:260.760000pt;}
.y38_c00258{bottom:277.934667pt;}
.y35_c00258{bottom:295.110667pt;}
.y32_c00258{bottom:312.284000pt;}
.y30_c00258{bottom:329.460000pt;}
.y2e_c00258{bottom:346.634667pt;}
.y2d_c00258{bottom:363.809333pt;}
.y29_c00258{bottom:380.984000pt;}
.y28_c00258{bottom:398.160000pt;}
.y26_c00258{bottom:415.334667pt;}
.y25_c00258{bottom:432.510667pt;}
.y23_c00258{bottom:449.684000pt;}
.y22_c00258{bottom:466.860000pt;}
.y21_c00258{bottom:484.034667pt;}
.y1e_c00258{bottom:501.210667pt;}
.y1d_c00258{bottom:518.384000pt;}
.y1a_c00258{bottom:535.560000pt;}
.y18_c00258{bottom:552.734667pt;}
.y16_c00258{bottom:569.909333pt;}
.y15_c00258{bottom:587.084000pt;}
.y11_c00258{bottom:604.260000pt;}
.ye_c00258{bottom:621.434667pt;}
.ya_c00258{bottom:638.609333pt;}
.y6_c00258{bottom:655.784000pt;}
.y4_c00258{bottom:676.640000pt;}
.y3_c00258{bottom:694.320000pt;}
.y2_c00258{bottom:708.084000pt;}
.y1_c00258{bottom:735.680000pt;}
.h9_c00258{height:16.314667pt;}
.h5_c00258{height:16.316000pt;}
.h8_c00258{height:38.316538pt;}
.h7_c00258{height:40.871133pt;}
.h6_c00258{height:42.492865pt;}
.h2_c00258{height:47.109375pt;}
.h4_c00258{height:52.422344pt;}
.h3_c00258{height:62.812500pt;}
.h0_c00258{height:793.840000pt;}
.h1_c00258{height:794.000000pt;}
.w2_c00258{width:931.229333pt;}
.w0_c00258{width:1122.560000pt;}
.w1_c00258{width:1122.666667pt;}
.x0_c00258{left:0.000000pt;}
.x5_c00258{left:7.554667pt;}
.x2_c00258{left:94.560000pt;}
.x4_c00258{left:95.825333pt;}
.x6_c00258{left:343.779733pt;}
.x9_c00258{left:344.724133pt;}
.x8_c00258{left:346.613067pt;}
.x7_c00258{left:452.391733pt;}
.x1_c00258{left:561.280000pt;}
.x3_c00258{left:968.480000pt;}
.xa_c00258{left:1004.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_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_fcdb1171e4ac92068e489d0c.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.284668;font-style:normal;font-weight:normal;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_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00259;src:url('chunks/assets/font_52bf20de146515bcf8efaeed.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00259;src:url('chunks/assets/font_5cebef5244287ba748da2e6b.woff2')format("woff");}.ff4_c00259{font-family:ff4_c00259;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.262876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262876,0.000000,0.000000,0.250000,0,0);}
.v1_c00259{vertical-align:-61.938000px;}
.v2_c00259{vertical-align:-4.044000px;}
.v0_c00259{vertical-align:0.000000px;}
.ls5_c00259{letter-spacing:-2.425944px;}
.ls9_c00259{letter-spacing:-1.637512px;}
.ls8_c00259{letter-spacing:-1.394918px;}
.lsc_c00259{letter-spacing:-1.334269px;}
.lsa_c00259{letter-spacing:-0.727783px;}
.ls7_c00259{letter-spacing:-0.452844px;}
.ls4_c00259{letter-spacing:-0.240480px;}
.ls6_c00259{letter-spacing:-0.181946px;}
.ls3_c00259{letter-spacing:-0.120240px;}
.ls2_c00259{letter-spacing:0.000000px;}
.lsb_c00259{letter-spacing:1.273621px;}
.lsd_c00259{letter-spacing:1.819458px;}
.ls1_c00259{letter-spacing:223.975280px;}
.ls0_c00259{letter-spacing:1144.260000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:-14.909760px;}
.ws1_c00259{word-spacing:-14.789520px;}
.ws14_c00259{word-spacing:-11.280640px;}
.ws32_c00259{word-spacing:-3.396322px;}
.ws30_c00259{word-spacing:-1.394918px;}
.ws2e_c00259{word-spacing:-0.162000px;}
.ws2d_c00259{word-spacing:0.000000px;}
.ws2f_c00259{word-spacing:0.060649px;}
.ws31_c00259{word-spacing:2.425944px;}
.ws2_c00259{word-spacing:37.177592px;}
.wsd_c00259{word-spacing:61.346059px;}
.ws18_c00259{word-spacing:63.553668px;}
.ws6_c00259{word-spacing:73.463649px;}
.wsa_c00259{word-spacing:77.108630px;}
.wse_c00259{word-spacing:79.752909px;}
.ws7_c00259{word-spacing:93.241158px;}
.wsb_c00259{word-spacing:120.205525px;}
.wsf_c00259{word-spacing:149.886950px;}
.ws4_c00259{word-spacing:162.441210px;}
.ws15_c00259{word-spacing:166.504666px;}
.ws1e_c00259{word-spacing:183.952487px;}
.ws17_c00259{word-spacing:187.995273px;}
.ws5_c00259{word-spacing:187.995844px;}
.ws9_c00259{word-spacing:196.082023px;}
.ws10_c00259{word-spacing:198.927408px;}
.ws2a_c00259{word-spacing:199.448986px;}
.wsc_c00259{word-spacing:215.059936px;}
.ws8_c00259{word-spacing:215.120584px;}
.ws21_c00259{word-spacing:227.250304px;}
.ws2b_c00259{word-spacing:239.907667px;}
.ws24_c00259{word-spacing:250.442329px;}
.ws16_c00259{word-spacing:265.355820px;}
.ws22_c00259{word-spacing:289.615260px;}
.ws3_c00259{word-spacing:297.699718px;}
.ws2c_c00259{word-spacing:300.125662px;}
.ws20_c00259{word-spacing:313.874700px;}
.ws1c_c00259{word-spacing:318.993441px;}
.ws28_c00259{word-spacing:324.809642px;}
.ws13_c00259{word-spacing:324.858161px;}
.ws27_c00259{word-spacing:330.049681px;}
.ws11_c00259{word-spacing:335.344304px;}
.ws19_c00259{word-spacing:349.081212px;}
.ws1b_c00259{word-spacing:353.144668px;}
.ws1f_c00259{word-spacing:360.695419px;}
.ws29_c00259{word-spacing:365.268323px;}
.ws25_c00259{word-spacing:385.476437px;}
.ws12_c00259{word-spacing:389.545958px;}
.ws26_c00259{word-spacing:390.698281px;}
.ws23_c00259{word-spacing:395.689661px;}
.ws1a_c00259{word-spacing:397.618286px;}
.ws1d_c00259{word-spacing:401.736326px;}
._10_c00259{margin-left:-2.890365px;}
._1_c00259{margin-left:-1.597937px;}
._0_c00259{width:1.052100px;}
._5_c00259{width:2.796380px;}
._2_c00259{width:3.826447px;}
._c_c00259{width:84.789449px;}
._6_c00259{width:88.819875px;}
._8_c00259{width:114.534842px;}
._f_c00259{width:149.670190px;}
._7_c00259{width:162.372886px;}
._4_c00259{width:169.348710px;}
._a_c00259{width:170.557536px;}
._3_c00259{width:181.313463px;}
._d_c00259{width:182.598868px;}
._11_c00259{width:186.300846px;}
._e_c00259{width:190.669315px;}
._9_c00259{width:194.003720px;}
._b_c00259{width:245.963104px;}
._12_c00259{width:340.016953px;}
._13_c00259{width:362.374038px;}
._14_c00259{width:373.607333px;}
.fc0_c00259{color:rgb(0,0,0);}
.fs0_c00259{font-size:54.000000px;}
.fs2_c00259{font-size:60.120000px;}
.fs3_c00259{font-size:60.648600px;}
.fs4_c00259{font-size:64.692000px;}
.fs1_c00259{font-size:72.000000px;}
.y0_c00259{bottom:0.000000px;}
.yc_c00259{bottom:4.042500px;}
.y14_c00259{bottom:4.042650px;}
.y28_c00259{bottom:4.042950px;}
.ya_c00259{bottom:4.043100px;}
.ye_c00259{bottom:4.043250px;}
.y12_c00259{bottom:4.043400px;}
.y1e_c00259{bottom:4.043550px;}
.y21_c00259{bottom:4.043700px;}
.y8_c00259{bottom:4.043850px;}
.y10_c00259{bottom:4.044000px;}
.y17_c00259{bottom:4.044150px;}
.y1c_c00259{bottom:4.044300px;}
.y25_c00259{bottom:4.044450px;}
.y32_c00259{bottom:57.330000px;}
.y6_c00259{bottom:134.822520px;}
.y5_c00259{bottom:148.590000px;}
.y31_c00259{bottom:150.594000px;}
.y30_c00259{bottom:170.809500px;}
.y2f_c00259{bottom:191.026500px;}
.y2e_c00259{bottom:211.242000px;}
.y2d_c00259{bottom:231.457500px;}
.y2c_c00259{bottom:251.674500px;}
.y2b_c00259{bottom:271.890000px;}
.y2a_c00259{bottom:292.107000px;}
.y29_c00259{bottom:312.322500px;}
.y27_c00259{bottom:332.539500px;}
.y26_c00259{bottom:352.755000px;}
.y24_c00259{bottom:372.970500px;}
.y23_c00259{bottom:393.187500px;}
.y22_c00259{bottom:413.403000px;}
.y20_c00259{bottom:433.620000px;}
.y1f_c00259{bottom:453.835500px;}
.y1d_c00259{bottom:474.052500px;}
.y1b_c00259{bottom:494.268000px;}
.y1a_c00259{bottom:514.485000px;}
.y19_c00259{bottom:534.700500px;}
.y18_c00259{bottom:554.917500px;}
.y16_c00259{bottom:575.133000px;}
.y15_c00259{bottom:595.350000px;}
.y13_c00259{bottom:615.567000px;}
.y11_c00259{bottom:635.782500px;}
.yf_c00259{bottom:655.998000px;}
.yd_c00259{bottom:676.215000px;}
.yb_c00259{bottom:696.432000px;}
.y9_c00259{bottom:716.647500px;}
.y7_c00259{bottom:736.863000px;}
.y4_c00259{bottom:761.220000px;}
.y3_c00259{bottom:781.105500px;}
.y2_c00259{bottom:796.590000px;}
.y1_c00259{bottom:827.640000px;}
.h5_c00259{height:19.204500px;}
.h7_c00259{height:19.206000px;}
.h6_c00259{height:50.017327px;}
.h2_c00259{height:52.998047px;}
.h4_c00259{height:58.975137px;}
.h3_c00259{height:70.664062px;}
.h0_c00259{height:893.070000px;}
.h1_c00259{height:893.250000px;}
.w2_c00259{width:1047.993000px;}
.w0_c00259{width:1262.880000px;}
.w1_c00259{width:1263.000000px;}
.x0_c00259{left:0.000000px;}
.x6_c00259{left:8.502300px;}
.x2_c00259{left:106.380000px;}
.x5_c00259{left:107.533500px;}
.x1_c00259{left:631.440000px;}
.x4_c00259{left:1089.541170px;}
.x3_c00259{left:1156.590000px;}
@media print{
.v1_c00259{vertical-align:-55.056000pt;}
.v2_c00259{vertical-align:-3.594667pt;}
.v0_c00259{vertical-align:0.000000pt;}
.ls5_c00259{letter-spacing:-2.156395pt;}
.ls9_c00259{letter-spacing:-1.455566pt;}
.ls8_c00259{letter-spacing:-1.239927pt;}
.lsc_c00259{letter-spacing:-1.186017pt;}
.lsa_c00259{letter-spacing:-0.646918pt;}
.ls7_c00259{letter-spacing:-0.402528pt;}
.ls4_c00259{letter-spacing:-0.213760pt;}
.ls6_c00259{letter-spacing:-0.161730pt;}
.ls3_c00259{letter-spacing:-0.106880pt;}
.ls2_c00259{letter-spacing:0.000000pt;}
.lsb_c00259{letter-spacing:1.132107pt;}
.lsd_c00259{letter-spacing:1.617296pt;}
.ls1_c00259{letter-spacing:199.089138pt;}
.ls0_c00259{letter-spacing:1017.120000pt;}
.ws0_c00259{word-spacing:-13.253120pt;}
.ws1_c00259{word-spacing:-13.146240pt;}
.ws14_c00259{word-spacing:-10.027235pt;}
.ws32_c00259{word-spacing:-3.018953pt;}
.ws30_c00259{word-spacing:-1.239927pt;}
.ws2e_c00259{word-spacing:-0.144000pt;}
.ws2d_c00259{word-spacing:0.000000pt;}
.ws2f_c00259{word-spacing:0.053910pt;}
.ws31_c00259{word-spacing:2.156395pt;}
.ws2_c00259{word-spacing:33.046748pt;}
.wsd_c00259{word-spacing:54.529830pt;}
.ws18_c00259{word-spacing:56.492149pt;}
.ws6_c00259{word-spacing:65.301021pt;}
.wsa_c00259{word-spacing:68.541004pt;}
.wse_c00259{word-spacing:70.891475pt;}
.ws7_c00259{word-spacing:82.881029pt;}
.wsb_c00259{word-spacing:106.849356pt;}
.wsf_c00259{word-spacing:133.232844pt;}
.ws4_c00259{word-spacing:144.392187pt;}
.ws15_c00259{word-spacing:148.004148pt;}
.ws1e_c00259{word-spacing:163.513321pt;}
.ws17_c00259{word-spacing:167.106909pt;}
.ws5_c00259{word-spacing:167.107417pt;}
.ws9_c00259{word-spacing:174.295131pt;}
.ws10_c00259{word-spacing:176.824363pt;}
.ws2a_c00259{word-spacing:177.287988pt;}
.wsc_c00259{word-spacing:191.164387pt;}
.ws8_c00259{word-spacing:191.218297pt;}
.ws21_c00259{word-spacing:202.000270pt;}
.ws2b_c00259{word-spacing:213.251260pt;}
.ws24_c00259{word-spacing:222.615403pt;}
.ws16_c00259{word-spacing:235.871840pt;}
.ws22_c00259{word-spacing:257.435786pt;}
.ws3_c00259{word-spacing:264.621972pt;}
.ws2c_c00259{word-spacing:266.778366pt;}
.ws20_c00259{word-spacing:278.999733pt;}
.ws1c_c00259{word-spacing:283.549726pt;}
.ws28_c00259{word-spacing:288.719682pt;}
.ws13_c00259{word-spacing:288.762810pt;}
.ws27_c00259{word-spacing:293.377494pt;}
.ws11_c00259{word-spacing:298.083826pt;}
.ws19_c00259{word-spacing:310.294411pt;}
.ws1b_c00259{word-spacing:313.906372pt;}
.ws1f_c00259{word-spacing:320.618150pt;}
.ws29_c00259{word-spacing:324.682954pt;}
.ws25_c00259{word-spacing:342.645722pt;}
.ws12_c00259{word-spacing:346.263074pt;}
.ws26_c00259{word-spacing:347.287361pt;}
.ws23_c00259{word-spacing:351.724143pt;}
.ws1a_c00259{word-spacing:353.438477pt;}
.ws1d_c00259{word-spacing:357.098957pt;}
._10_c00259{margin-left:-2.569214pt;}
._1_c00259{margin-left:-1.420389pt;}
._0_c00259{width:0.935200pt;}
._5_c00259{width:2.485671pt;}
._2_c00259{width:3.401287pt;}
._c_c00259{width:75.368399pt;}
._6_c00259{width:78.951000pt;}
._8_c00259{width:101.808748pt;}
._f_c00259{width:133.040169pt;}
._7_c00259{width:144.331454pt;}
._4_c00259{width:150.532187pt;}
._a_c00259{width:151.606699pt;}
._3_c00259{width:161.167523pt;}
._d_c00259{width:162.310105pt;}
._11_c00259{width:165.600752pt;}
._e_c00259{width:169.483836pt;}
._9_c00259{width:172.447751pt;}
._b_c00259{width:218.633870pt;}
._12_c00259{width:302.237291pt;}
._13_c00259{width:322.110256pt;}
._14_c00259{width:332.095407pt;}
.fs0_c00259{font-size:48.000000pt;}
.fs2_c00259{font-size:53.440000pt;}
.fs3_c00259{font-size:53.909867pt;}
.fs4_c00259{font-size:57.504000pt;}
.fs1_c00259{font-size:64.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.yc_c00259{bottom:3.593333pt;}
.y14_c00259{bottom:3.593467pt;}
.y28_c00259{bottom:3.593733pt;}
.ya_c00259{bottom:3.593867pt;}
.ye_c00259{bottom:3.594000pt;}
.y12_c00259{bottom:3.594133pt;}
.y1e_c00259{bottom:3.594267pt;}
.y21_c00259{bottom:3.594400pt;}
.y8_c00259{bottom:3.594533pt;}
.y10_c00259{bottom:3.594667pt;}
.y17_c00259{bottom:3.594800pt;}
.y1c_c00259{bottom:3.594933pt;}
.y25_c00259{bottom:3.595067pt;}
.y32_c00259{bottom:50.960000pt;}
.y6_c00259{bottom:119.842240pt;}
.y5_c00259{bottom:132.080000pt;}
.y31_c00259{bottom:133.861333pt;}
.y30_c00259{bottom:151.830667pt;}
.y2f_c00259{bottom:169.801333pt;}
.y2e_c00259{bottom:187.770667pt;}
.y2d_c00259{bottom:205.740000pt;}
.y2c_c00259{bottom:223.710667pt;}
.y2b_c00259{bottom:241.680000pt;}
.y2a_c00259{bottom:259.650667pt;}
.y29_c00259{bottom:277.620000pt;}
.y27_c00259{bottom:295.590667pt;}
.y26_c00259{bottom:313.560000pt;}
.y24_c00259{bottom:331.529333pt;}
.y23_c00259{bottom:349.500000pt;}
.y22_c00259{bottom:367.469333pt;}
.y20_c00259{bottom:385.440000pt;}
.y1f_c00259{bottom:403.409333pt;}
.y1d_c00259{bottom:421.380000pt;}
.y1b_c00259{bottom:439.349333pt;}
.y1a_c00259{bottom:457.320000pt;}
.y19_c00259{bottom:475.289333pt;}
.y18_c00259{bottom:493.260000pt;}
.y16_c00259{bottom:511.229333pt;}
.y15_c00259{bottom:529.200000pt;}
.y13_c00259{bottom:547.170667pt;}
.y11_c00259{bottom:565.140000pt;}
.yf_c00259{bottom:583.109333pt;}
.yd_c00259{bottom:601.080000pt;}
.yb_c00259{bottom:619.050667pt;}
.y9_c00259{bottom:637.020000pt;}
.y7_c00259{bottom:654.989333pt;}
.y4_c00259{bottom:676.640000pt;}
.y3_c00259{bottom:694.316000pt;}
.y2_c00259{bottom:708.080000pt;}
.y1_c00259{bottom:735.680000pt;}
.h5_c00259{height:17.070667pt;}
.h7_c00259{height:17.072000pt;}
.h6_c00259{height:44.459846pt;}
.h2_c00259{height:47.109375pt;}
.h4_c00259{height:52.422344pt;}
.h3_c00259{height:62.812500pt;}
.h0_c00259{height:793.840000pt;}
.h1_c00259{height:794.000000pt;}
.w2_c00259{width:931.549333pt;}
.w0_c00259{width:1122.560000pt;}
.w1_c00259{width:1122.666667pt;}
.x0_c00259{left:0.000000pt;}
.x6_c00259{left:7.557600pt;}
.x2_c00259{left:94.560000pt;}
.x5_c00259{left:95.585333pt;}
.x1_c00259{left:561.280000pt;}
.x4_c00259{left:968.481040pt;}
.x3_c00259{left:1028.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_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_ea18ad03ee12c79a71980e7f.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_55f25d6085ff4f31a1e7b154.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_afa6e6efe4093c24360fe415.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00260;src:url('chunks/assets/font_9090b9fa7586f137f007e75e.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.v1_c00260{vertical-align:-61.920000px;}
.v2_c00260{vertical-align:-4.249800px;}
.v0_c00260{vertical-align:0.000000px;}
.v3_c00260{vertical-align:4.270808px;}
.ls5_c00260{letter-spacing:-2.549736px;}
.ls13_c00260{letter-spacing:-2.099287px;}
.lsd_c00260{letter-spacing:-1.784815px;}
.ls6_c00260{letter-spacing:-1.721072px;}
.ls9_c00260{letter-spacing:-1.466098px;}
.ls10_c00260{letter-spacing:-1.402355px;}
.lsc_c00260{letter-spacing:-0.828664px;}
.ls8_c00260{letter-spacing:-0.764921px;}
.ls7_c00260{letter-spacing:-0.475952px;}
.ls11_c00260{letter-spacing:-0.254974px;}
.lsb_c00260{letter-spacing:-0.191230px;}
.ls3_c00260{letter-spacing:-0.108000px;}
.ls4_c00260{letter-spacing:0.000000px;}
.lse_c00260{letter-spacing:0.191230px;}
.ls12_c00260{letter-spacing:0.994399px;}
.lsf_c00260{letter-spacing:1.338611px;}
.ls2_c00260{letter-spacing:1.742799px;}
.lsa_c00260{letter-spacing:1.912302px;}
.ls14_c00260{letter-spacing:2.154532px;}
.ls1_c00260{letter-spacing:235.404376px;}
.ls0_c00260{letter-spacing:725.580000px;}
.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;}
}
.wsd_c00260{word-spacing:-11.856272px;}
.ws36_c00260{word-spacing:-3.204175px;}
.ws34_c00260{word-spacing:-2.044043px;}
.ws31_c00260{word-spacing:-1.466098px;}
.ws33_c00260{word-spacing:-1.402355px;}
.ws32_c00260{word-spacing:-0.828664px;}
.ws2d_c00260{word-spacing:0.000000px;}
.ws2f_c00260{word-spacing:0.162000px;}
.ws2e_c00260{word-spacing:0.270000px;}
.ws35_c00260{word-spacing:1.049644px;}
.ws30_c00260{word-spacing:2.549736px;}
.ws1e_c00260{word-spacing:22.055216px;}
.ws0_c00260{word-spacing:39.074704px;}
.ws4_c00260{word-spacing:64.476449px;}
.wsa_c00260{word-spacing:66.796709px;}
.wse_c00260{word-spacing:77.212380px;}
.ws15_c00260{word-spacing:81.043359px;}
.ws5_c00260{word-spacing:83.822571px;}
.wsf_c00260{word-spacing:97.999103px;}
.ws16_c00260{word-spacing:126.339419px;}
.ws6_c00260{word-spacing:157.535439px;}
.ws14_c00260{word-spacing:162.220579px;}
.ws23_c00260{word-spacing:166.491386px;}
.ws2_c00260{word-spacing:170.730323px;}
.ws9_c00260{word-spacing:197.588577px;}
.ws11_c00260{word-spacing:197.589176px;}
.ws3_c00260{word-spacing:206.087989px;}
.ws29_c00260{word-spacing:209.078352px;}
.ws2c_c00260{word-spacing:213.285416px;}
.ws17_c00260{word-spacing:226.034096px;}
.ws7_c00260{word-spacing:226.097840px;}
.wsb_c00260{word-spacing:269.653705px;}
.ws2a_c00260{word-spacing:289.885860px;}
.ws1f_c00260{word-spacing:291.708921px;}
.ws24_c00260{word-spacing:296.655409px;}
.ws28_c00260{word-spacing:300.142173px;}
.ws13_c00260{word-spacing:302.946883px;}
.ws1a_c00260{word-spacing:305.668726px;}
.wsc_c00260{word-spacing:315.912290px;}
.ws27_c00260{word-spacing:335.468766px;}
.ws10_c00260{word-spacing:342.703641px;}
.ws8_c00260{word-spacing:358.410015px;}
.ws12_c00260{word-spacing:363.885573px;}
.ws18_c00260{word-spacing:365.447287px;}
.ws19_c00260{word-spacing:380.885938px;}
.ws2b_c00260{word-spacing:383.913750px;}
.ws22_c00260{word-spacing:385.175869px;}
.ws1d_c00260{word-spacing:400.691012px;}
.ws21_c00260{word-spacing:400.971483px;}
.ws1b_c00260{word-spacing:413.803030px;}
.ws20_c00260{word-spacing:420.923168px;}
.ws1_c00260{word-spacing:426.462469px;}
.ws26_c00260{word-spacing:429.222558px;}
.ws1c_c00260{word-spacing:431.944401px;}
.ws25_c00260{word-spacing:443.462834px;}
._1c_c00260{margin-left:-7.650273px;}
._1b_c00260{margin-left:-6.187373px;}
._19_c00260{margin-left:-4.999618px;}
._9_c00260{margin-left:-3.716240px;}
._a_c00260{margin-left:-2.148153px;}
._1_c00260{margin-left:-1.058400px;}
._0_c00260{width:1.225800px;}
._6_c00260{width:2.734592px;}
._2_c00260{width:3.913845px;}
._d_c00260{width:5.206827px;}
._1a_c00260{width:6.803913px;}
._5_c00260{width:88.635198px;}
._10_c00260{width:90.024807px;}
._b_c00260{width:93.771586px;}
._12_c00260{width:96.186864px;}
._17_c00260{width:105.648905px;}
._18_c00260{width:140.483756px;}
._14_c00260{width:154.375690px;}
._16_c00260{width:156.886937px;}
._8_c00260{width:157.922944px;}
._f_c00260{width:169.519795px;}
._c_c00260{width:170.652498px;}
._4_c00260{width:178.286041px;}
._e_c00260{width:179.286816px;}
._11_c00260{width:183.623686px;}
._7_c00260{width:191.112876px;}
._13_c00260{width:199.645117px;}
._3_c00260{width:203.884293px;}
._15_c00260{width:258.507505px;}
.fc0_c00260{color:rgb(0,0,0);}
.fs0_c00260{font-size:54.000000px;}
.fs4_c00260{font-size:55.244400px;}
.fs2_c00260{font-size:63.743400px;}
.fs3_c00260{font-size:67.993200px;}
.fs1_c00260{font-size:72.000000px;}
.y0_c00260{bottom:0.000000px;}
.yc_c00260{bottom:4.248450px;}
.ya_c00260{bottom:4.248600px;}
.y1c_c00260{bottom:4.248750px;}
.y8_c00260{bottom:4.248900px;}
.y1a_c00260{bottom:4.249050px;}
.y6_c00260{bottom:4.249200px;}
.y21_c00260{bottom:4.249350px;}
.ye_c00260{bottom:4.249650px;}
.y16_c00260{bottom:4.249800px;}
.y1e_c00260{bottom:4.249950px;}
.y14_c00260{bottom:4.250100px;}
.y25_c00260{bottom:4.250250px;}
.y12_c00260{bottom:4.250400px;}
.y23_c00260{bottom:4.250550px;}
.y10_c00260{bottom:4.250700px;}
.y30_c00260{bottom:5.311350px;}
.y36_c00260{bottom:5.311650px;}
.y34_c00260{bottom:5.311950px;}
.y32_c00260{bottom:6.374550px;}
.y37_c00260{bottom:57.330000px;}
.y2f_c00260{bottom:97.336500px;}
.y35_c00260{bottom:118.584000px;}
.y33_c00260{bottom:139.831500px;}
.y31_c00260{bottom:161.079000px;}
.y2e_c00260{bottom:183.390000px;}
.y2d_c00260{bottom:204.637500px;}
.y2c_c00260{bottom:225.885000px;}
.y2b_c00260{bottom:247.132500px;}
.y2a_c00260{bottom:268.381500px;}
.y29_c00260{bottom:289.629000px;}
.y28_c00260{bottom:310.876500px;}
.y27_c00260{bottom:332.124000px;}
.y26_c00260{bottom:353.371500px;}
.y24_c00260{bottom:374.619000px;}
.y22_c00260{bottom:395.866500px;}
.y20_c00260{bottom:417.115500px;}
.y1f_c00260{bottom:438.363000px;}
.y1d_c00260{bottom:459.610500px;}
.y1b_c00260{bottom:480.859500px;}
.y19_c00260{bottom:502.107000px;}
.y18_c00260{bottom:523.354500px;}
.y17_c00260{bottom:544.602000px;}
.y15_c00260{bottom:565.849500px;}
.y13_c00260{bottom:587.097000px;}
.y11_c00260{bottom:608.344500px;}
.yf_c00260{bottom:629.592000px;}
.yd_c00260{bottom:650.841000px;}
.yb_c00260{bottom:672.090000px;}
.y9_c00260{bottom:693.337500px;}
.y7_c00260{bottom:714.585000px;}
.y5_c00260{bottom:735.832500px;}
.y4_c00260{bottom:761.220000px;}
.y3_c00260{bottom:781.110000px;}
.y2_c00260{bottom:796.594500px;}
.y1_c00260{bottom:827.640000px;}
.h4_c00260{height:20.185500px;}
.h6_c00260{height:20.187000px;}
.h9_c00260{height:21.247500px;}
.h5_c00260{height:52.569630px;}
.h2_c00260{height:52.998047px;}
.h8_c00260{height:54.219357px;}
.ha_c00260{height:55.675997px;}
.h7_c00260{height:56.840438px;}
.h3_c00260{height:70.664062px;}
.h0_c00260{height:893.070000px;}
.h1_c00260{height:893.250000px;}
.w3_c00260{width:1012.918500px;}
.w2_c00260{width:1047.994500px;}
.w0_c00260{width:1262.880000px;}
.w1_c00260{width:1263.000000px;}
.x0_c00260{left:0.000000px;}
.x7_c00260{left:2.126100px;}
.x5_c00260{left:5.315250px;}
.x4_c00260{left:8.503800px;}
.x2_c00260{left:106.380000px;}
.x3_c00260{left:107.442000px;}
.x6_c00260{left:141.454500px;}
.x1_c00260{left:631.440000px;}
.x8_c00260{left:1129.590000px;}
@media print{
.v1_c00260{vertical-align:-55.040000pt;}
.v2_c00260{vertical-align:-3.777600pt;}
.v0_c00260{vertical-align:0.000000pt;}
.v3_c00260{vertical-align:3.796274pt;}
.ls5_c00260{letter-spacing:-2.266432pt;}
.ls13_c00260{letter-spacing:-1.866033pt;}
.lsd_c00260{letter-spacing:-1.586502pt;}
.ls6_c00260{letter-spacing:-1.529842pt;}
.ls9_c00260{letter-spacing:-1.303198pt;}
.ls10_c00260{letter-spacing:-1.246538pt;}
.lsc_c00260{letter-spacing:-0.736590pt;}
.ls8_c00260{letter-spacing:-0.679930pt;}
.ls7_c00260{letter-spacing:-0.423069pt;}
.ls11_c00260{letter-spacing:-0.226643pt;}
.lsb_c00260{letter-spacing:-0.169982pt;}
.ls3_c00260{letter-spacing:-0.096000pt;}
.ls4_c00260{letter-spacing:0.000000pt;}
.lse_c00260{letter-spacing:0.169982pt;}
.ls12_c00260{letter-spacing:0.883910pt;}
.lsf_c00260{letter-spacing:1.189877pt;}
.ls2_c00260{letter-spacing:1.549155pt;}
.lsa_c00260{letter-spacing:1.699824pt;}
.ls14_c00260{letter-spacing:1.915139pt;}
.ls1_c00260{letter-spacing:209.248334pt;}
.ls0_c00260{letter-spacing:644.960000pt;}
.wsd_c00260{word-spacing:-10.538909pt;}
.ws36_c00260{word-spacing:-2.848156pt;}
.ws34_c00260{word-spacing:-1.816927pt;}
.ws31_c00260{word-spacing:-1.303198pt;}
.ws33_c00260{word-spacing:-1.246538pt;}
.ws32_c00260{word-spacing:-0.736590pt;}
.ws2d_c00260{word-spacing:0.000000pt;}
.ws2f_c00260{word-spacing:0.144000pt;}
.ws2e_c00260{word-spacing:0.240000pt;}
.ws35_c00260{word-spacing:0.933017pt;}
.ws30_c00260{word-spacing:2.266432pt;}
.ws1e_c00260{word-spacing:19.604637pt;}
.ws0_c00260{word-spacing:34.733070pt;}
.ws4_c00260{word-spacing:57.312399pt;}
.wsa_c00260{word-spacing:59.374852pt;}
.wse_c00260{word-spacing:68.633227pt;}
.ws15_c00260{word-spacing:72.038541pt;}
.ws5_c00260{word-spacing:74.508952pt;}
.wsf_c00260{word-spacing:87.110314pt;}
.ws16_c00260{word-spacing:112.301706pt;}
.ws6_c00260{word-spacing:140.031501pt;}
.ws14_c00260{word-spacing:144.196070pt;}
.ws23_c00260{word-spacing:147.992344pt;}
.ws2_c00260{word-spacing:151.760287pt;}
.ws9_c00260{word-spacing:175.634290pt;}
.ws11_c00260{word-spacing:175.634823pt;}
.ws3_c00260{word-spacing:183.189323pt;}
.ws29_c00260{word-spacing:185.847424pt;}
.ws2c_c00260{word-spacing:189.587037pt;}
.ws17_c00260{word-spacing:200.919197pt;}
.ws7_c00260{word-spacing:200.975858pt;}
.wsb_c00260{word-spacing:239.692182pt;}
.ws2a_c00260{word-spacing:257.676320pt;}
.ws1f_c00260{word-spacing:259.296819pt;}
.ws24_c00260{word-spacing:263.693697pt;}
.ws28_c00260{word-spacing:266.793043pt;}
.ws13_c00260{word-spacing:269.286118pt;}
.ws1a_c00260{word-spacing:271.705534pt;}
.wsc_c00260{word-spacing:280.810925pt;}
.ws27_c00260{word-spacing:298.194458pt;}
.ws10_c00260{word-spacing:304.625459pt;}
.ws8_c00260{word-spacing:318.586680pt;}
.ws12_c00260{word-spacing:323.453843pt;}
.ws18_c00260{word-spacing:324.842032pt;}
.ws19_c00260{word-spacing:338.565278pt;}
.ws2b_c00260{word-spacing:341.256666pt;}
.ws22_c00260{word-spacing:342.378550pt;}
.ws1d_c00260{word-spacing:356.169789pt;}
.ws21_c00260{word-spacing:356.419096pt;}
.ws1b_c00260{word-spacing:367.824915pt;}
.ws20_c00260{word-spacing:374.153927pt;}
.ws1_c00260{word-spacing:379.077750pt;}
.ws26_c00260{word-spacing:381.531163pt;}
.ws1c_c00260{word-spacing:383.950579pt;}
.ws25_c00260{word-spacing:394.189186pt;}
._1c_c00260{margin-left:-6.800243pt;}
._1b_c00260{margin-left:-5.499887pt;}
._19_c00260{margin-left:-4.444105pt;}
._9_c00260{margin-left:-3.303325pt;}
._a_c00260{margin-left:-1.909469pt;}
._1_c00260{margin-left:-0.940800pt;}
._0_c00260{width:1.089600pt;}
._6_c00260{width:2.430748pt;}
._2_c00260{width:3.478973pt;}
._d_c00260{width:4.628290pt;}
._1a_c00260{width:6.047922pt;}
._5_c00260{width:78.786842pt;}
._10_c00260{width:80.022051pt;}
._b_c00260{width:83.352521pt;}
._12_c00260{width:85.499435pt;}
._17_c00260{width:93.910138pt;}
._18_c00260{width:124.874450pt;}
._14_c00260{width:137.222835pt;}
._16_c00260{width:139.455055pt;}
._8_c00260{width:140.375950pt;}
._f_c00260{width:150.684263pt;}
._c_c00260{width:151.691109pt;}
._4_c00260{width:158.476481pt;}
._e_c00260{width:159.366059pt;}
._11_c00260{width:163.221054pt;}
._7_c00260{width:169.878112pt;}
._13_c00260{width:177.462326pt;}
._3_c00260{width:181.230483pt;}
._15_c00260{width:229.784449pt;}
.fs0_c00260{font-size:48.000000pt;}
.fs4_c00260{font-size:49.106133pt;}
.fs2_c00260{font-size:56.660800pt;}
.fs3_c00260{font-size:60.438400pt;}
.fs1_c00260{font-size:64.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.yc_c00260{bottom:3.776400pt;}
.ya_c00260{bottom:3.776533pt;}
.y1c_c00260{bottom:3.776667pt;}
.y8_c00260{bottom:3.776800pt;}
.y1a_c00260{bottom:3.776933pt;}
.y6_c00260{bottom:3.777067pt;}
.y21_c00260{bottom:3.777200pt;}
.ye_c00260{bottom:3.777467pt;}
.y16_c00260{bottom:3.777600pt;}
.y1e_c00260{bottom:3.777733pt;}
.y14_c00260{bottom:3.777867pt;}
.y25_c00260{bottom:3.778000pt;}
.y12_c00260{bottom:3.778133pt;}
.y23_c00260{bottom:3.778267pt;}
.y10_c00260{bottom:3.778400pt;}
.y30_c00260{bottom:4.721200pt;}
.y36_c00260{bottom:4.721467pt;}
.y34_c00260{bottom:4.721733pt;}
.y32_c00260{bottom:5.666267pt;}
.y37_c00260{bottom:50.960000pt;}
.y2f_c00260{bottom:86.521333pt;}
.y35_c00260{bottom:105.408000pt;}
.y33_c00260{bottom:124.294667pt;}
.y31_c00260{bottom:143.181333pt;}
.y2e_c00260{bottom:163.013333pt;}
.y2d_c00260{bottom:181.900000pt;}
.y2c_c00260{bottom:200.786667pt;}
.y2b_c00260{bottom:219.673333pt;}
.y2a_c00260{bottom:238.561333pt;}
.y29_c00260{bottom:257.448000pt;}
.y28_c00260{bottom:276.334667pt;}
.y27_c00260{bottom:295.221333pt;}
.y26_c00260{bottom:314.108000pt;}
.y24_c00260{bottom:332.994667pt;}
.y22_c00260{bottom:351.881333pt;}
.y20_c00260{bottom:370.769333pt;}
.y1f_c00260{bottom:389.656000pt;}
.y1d_c00260{bottom:408.542667pt;}
.y1b_c00260{bottom:427.430667pt;}
.y19_c00260{bottom:446.317333pt;}
.y18_c00260{bottom:465.204000pt;}
.y17_c00260{bottom:484.090667pt;}
.y15_c00260{bottom:502.977333pt;}
.y13_c00260{bottom:521.864000pt;}
.y11_c00260{bottom:540.750667pt;}
.yf_c00260{bottom:559.637333pt;}
.yd_c00260{bottom:578.525333pt;}
.yb_c00260{bottom:597.413333pt;}
.y9_c00260{bottom:616.300000pt;}
.y7_c00260{bottom:635.186667pt;}
.y5_c00260{bottom:654.073333pt;}
.y4_c00260{bottom:676.640000pt;}
.y3_c00260{bottom:694.320000pt;}
.y2_c00260{bottom:708.084000pt;}
.y1_c00260{bottom:735.680000pt;}
.h4_c00260{height:17.942667pt;}
.h6_c00260{height:17.944000pt;}
.h9_c00260{height:18.886667pt;}
.h5_c00260{height:46.728560pt;}
.h2_c00260{height:47.109375pt;}
.h8_c00260{height:48.194984pt;}
.ha_c00260{height:49.489775pt;}
.h7_c00260{height:50.524834pt;}
.h3_c00260{height:62.812500pt;}
.h0_c00260{height:793.840000pt;}
.h1_c00260{height:794.000000pt;}
.w3_c00260{width:900.372000pt;}
.w2_c00260{width:931.550667pt;}
.w0_c00260{width:1122.560000pt;}
.w1_c00260{width:1122.666667pt;}
.x0_c00260{left:0.000000pt;}
.x7_c00260{left:1.889867pt;}
.x5_c00260{left:4.724667pt;}
.x4_c00260{left:7.558933pt;}
.x2_c00260{left:94.560000pt;}
.x3_c00260{left:95.504000pt;}
.x6_c00260{left:125.737333pt;}
.x1_c00260{left:561.280000pt;}
.x8_c00260{left:1004.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_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_924f976f05173b260cd29c6c.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.284668;font-style:normal;font-weight:normal;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_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_01f618fae18e6feef1733b22.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_e03720e109a192b5d4e620b7.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00261;src:url('chunks/assets/font_3e90f429b5302caa55751582.woff2')format("woff");}.ff5_c00261{font-family:ff5_c00261;line-height:0.921875;font-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_c00261{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,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);}
.v2_c00261{vertical-align:-83.520000px;}
.v1_c00261{vertical-align:-61.938000px;}
.v3_c00261{vertical-align:-3.106254px;}
.v0_c00261{vertical-align:0.000000px;}
.v4_c00261{vertical-align:3.106254px;}
.lsa_c00261{letter-spacing:-1.854480px;}
.lsd_c00261{letter-spacing:-1.251774px;}
.lsc_c00261{letter-spacing:-1.019964px;}
.ls12_c00261{letter-spacing:-0.602706px;}
.lsb_c00261{letter-spacing:-0.556344px;}
.lsf_c00261{letter-spacing:-0.139086px;}
.ls9_c00261{letter-spacing:-0.120240px;}
.ls8_c00261{letter-spacing:-0.072000px;}
.ls6_c00261{letter-spacing:0.000000px;}
.ls7_c00261{letter-spacing:0.072000px;}
.ls3_c00261{letter-spacing:0.144000px;}
.ls2_c00261{letter-spacing:0.158400px;}
.ls15_c00261{letter-spacing:0.197810px;}
.lse_c00261{letter-spacing:0.370896px;}
.ls14_c00261{letter-spacing:0.939599px;}
.ls5_c00261{letter-spacing:0.973602px;}
.ls11_c00261{letter-spacing:1.390860px;}
.ls13_c00261{letter-spacing:1.434125px;}
.ls10_c00261{letter-spacing:1.669032px;}
.ls4_c00261{letter-spacing:44.507520px;}
.ls1_c00261{letter-spacing:369.720000px;}
.ls0_c00261{letter-spacing:1144.260000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:-17.928000px;}
.ws1_c00261{word-spacing:-14.909760px;}
.ws1f_c00261{word-spacing:-12.610413px;}
.ws20_c00261{word-spacing:-11.374098px;}
.ws2a_c00261{word-spacing:-2.874444px;}
.ws29_c00261{word-spacing:-1.576308px;}
.ws27_c00261{word-spacing:-0.649068px;}
.ws24_c00261{word-spacing:-0.504000px;}
.ws28_c00261{word-spacing:-0.185448px;}
.ws22_c00261{word-spacing:-0.162000px;}
.ws25_c00261{word-spacing:-0.144000px;}
.ws23_c00261{word-spacing:-0.072000px;}
.ws21_c00261{word-spacing:0.000000px;}
.ws2b_c00261{word-spacing:0.247263px;}
.ws26_c00261{word-spacing:0.649068px;}
.wsa_c00261{word-spacing:28.419906px;}
.ws4_c00261{word-spacing:146.337017px;}
.wsf_c00261{word-spacing:179.258673px;}
.ws13_c00261{word-spacing:179.991193px;}
.ws1e_c00261{word-spacing:184.316767px;}
.ws1a_c00261{word-spacing:186.171247px;}
.ws1d_c00261{word-spacing:190.496822px;}
.ws5_c00261{word-spacing:193.589167px;}
.ws6_c00261{word-spacing:198.930070px;}
.wsd_c00261{word-spacing:200.937544px;}
.ws10_c00261{word-spacing:202.013143px;}
.ws1c_c00261{word-spacing:212.133967px;}
.ws1b_c00261{word-spacing:218.063667px;}
.wse_c00261{word-spacing:223.594654px;}
.ws12_c00261{word-spacing:226.969807px;}
.ws18_c00261{word-spacing:232.718695px;}
.ws16_c00261{word-spacing:232.908779px;}
.ws3_c00261{word-spacing:248.963940px;}
.wsc_c00261{word-spacing:251.699298px;}
.ws2_c00261{word-spacing:253.155065px;}
.ws11_c00261{word-spacing:258.560874px;}
.wsb_c00261{word-spacing:262.747363px;}
.ws15_c00261{word-spacing:265.607898px;}
.ws19_c00261{word-spacing:276.210887px;}
.ws8_c00261{word-spacing:285.265386px;}
.ws7_c00261{word-spacing:294.273523px;}
.ws14_c00261{word-spacing:298.557371px;}
.ws17_c00261{word-spacing:300.889380px;}
.ws9_c00261{word-spacing:331.363123px;}
._4_c00261{margin-left:-2.787848px;}
._0_c00261{margin-left:-1.303200px;}
._1_c00261{width:1.736078px;}
._2_c00261{width:3.116243px;}
._5_c00261{width:4.163297px;}
._3_c00261{width:122.106813px;}
.fc0_c00261{color:rgb(0,0,0);}
.fs3_c00261{font-size:46.362000px;}
.fs4_c00261{font-size:49.452600px;}
.fs0_c00261{font-size:54.000000px;}
.fs2_c00261{font-size:60.120000px;}
.fs1_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y33_c00261{bottom:3.089700px;}
.y1e_c00261{bottom:3.089850px;}
.y24_c00261{bottom:3.090150px;}
.y28_c00261{bottom:3.090450px;}
.y17_c00261{bottom:3.090600px;}
.y13_c00261{bottom:3.090750px;}
.y2f_c00261{bottom:3.090900px;}
.y22_c00261{bottom:3.091050px;}
.y19_c00261{bottom:3.091200px;}
.y15_c00261{bottom:3.091350px;}
.y1b_c00261{bottom:3.091650px;}
.y35_c00261{bottom:3.091800px;}
.y20_c00261{bottom:3.091950px;}
.y8_c00261{bottom:3.862500px;}
.ya_c00261{bottom:3.862800px;}
.y11_c00261{bottom:3.862950px;}
.yc_c00261{bottom:3.863250px;}
.ye_c00261{bottom:3.863700px;}
.y38_c00261{bottom:54.861450px;}
.y39_c00261{bottom:57.330000px;}
.y6_c00261{bottom:133.830000px;}
.y5_c00261{bottom:147.600000px;}
.y36_c00261{bottom:149.131500px;}
.y34_c00261{bottom:164.584500px;}
.y32_c00261{bottom:180.040500px;}
.y31_c00261{bottom:195.493500px;}
.y30_c00261{bottom:210.946500px;}
.y2e_c00261{bottom:226.401000px;}
.y2d_c00261{bottom:241.855500px;}
.y2c_c00261{bottom:257.308500px;}
.y2b_c00261{bottom:272.763000px;}
.y2a_c00261{bottom:288.217500px;}
.y29_c00261{bottom:303.670500px;}
.y27_c00261{bottom:319.125000px;}
.y26_c00261{bottom:334.578000px;}
.y25_c00261{bottom:350.032500px;}
.y23_c00261{bottom:365.487000px;}
.y21_c00261{bottom:380.940000px;}
.y1f_c00261{bottom:396.393000px;}
.y1d_c00261{bottom:411.849000px;}
.y1c_c00261{bottom:427.302000px;}
.y1a_c00261{bottom:442.755000px;}
.y18_c00261{bottom:458.209500px;}
.y16_c00261{bottom:473.664000px;}
.y14_c00261{bottom:489.117000px;}
.y12_c00261{bottom:504.571500px;}
.y10_c00261{bottom:520.026000px;}
.yf_c00261{bottom:536.253000px;}
.yd_c00261{bottom:552.478500px;}
.yb_c00261{bottom:568.705500px;}
.y9_c00261{bottom:584.932500px;}
.y7_c00261{bottom:601.159500px;}
.y37_c00261{bottom:617.385000px;}
.y4_c00261{bottom:761.220000px;}
.y3_c00261{bottom:781.105500px;}
.y2_c00261{bottom:796.590000px;}
.y1_c00261{bottom:827.640000px;}
.h9_c00261{height:14.680500px;}
.h8_c00261{height:14.682000px;}
.h5_c00261{height:15.453000px;}
.h7_c00261{height:15.454500px;}
.h6_c00261{height:38.235067px;}
.hb_c00261{height:40.783907px;}
.h2_c00261{height:52.998047px;}
.h4_c00261{height:58.975137px;}
.h3_c00261{height:70.664062px;}
.ha_c00261{height:118.222500px;}
.h0_c00261{height:893.070000px;}
.h1_c00261{height:893.250000px;}
.w3_c00261{width:23.572500px;}
.w5_c00261{width:102.654000px;}
.w4_c00261{width:920.083500px;}
.w2_c00261{width:1048.590000px;}
.w0_c00261{width:1262.880000px;}
.w1_c00261{width:1263.000000px;}
.x0_c00261{left:0.000000px;}
.x6_c00261{left:6.083100px;}
.x5_c00261{left:9.124650px;}
.xa_c00261{left:25.092750px;}
.x2_c00261{left:106.380000px;}
.x9_c00261{left:131.563500px;}
.x7_c00261{left:234.976500px;}
.x8_c00261{left:330.774300px;}
.x1_c00261{left:631.440000px;}
.x4_c00261{left:1089.540000px;}
.x3_c00261{left:1156.590000px;}
@media print{
.v2_c00261{vertical-align:-74.240000pt;}
.v1_c00261{vertical-align:-55.056000pt;}
.v3_c00261{vertical-align:-2.761115pt;}
.v0_c00261{vertical-align:0.000000pt;}
.v4_c00261{vertical-align:2.761115pt;}
.lsa_c00261{letter-spacing:-1.648427pt;}
.lsd_c00261{letter-spacing:-1.112688pt;}
.lsc_c00261{letter-spacing:-0.906635pt;}
.ls12_c00261{letter-spacing:-0.535739pt;}
.lsb_c00261{letter-spacing:-0.494528pt;}
.lsf_c00261{letter-spacing:-0.123632pt;}
.ls9_c00261{letter-spacing:-0.106880pt;}
.ls8_c00261{letter-spacing:-0.064000pt;}
.ls6_c00261{letter-spacing:0.000000pt;}
.ls7_c00261{letter-spacing:0.064000pt;}
.ls3_c00261{letter-spacing:0.128000pt;}
.ls2_c00261{letter-spacing:0.140800pt;}
.ls15_c00261{letter-spacing:0.175831pt;}
.lse_c00261{letter-spacing:0.329685pt;}
.ls14_c00261{letter-spacing:0.835199pt;}
.ls5_c00261{letter-spacing:0.865424pt;}
.ls11_c00261{letter-spacing:1.236320pt;}
.ls13_c00261{letter-spacing:1.274778pt;}
.ls10_c00261{letter-spacing:1.483584pt;}
.ls4_c00261{letter-spacing:39.562240pt;}
.ls1_c00261{letter-spacing:328.640000pt;}
.ls0_c00261{letter-spacing:1017.120000pt;}
.ws0_c00261{word-spacing:-15.936000pt;}
.ws1_c00261{word-spacing:-13.253120pt;}
.ws1f_c00261{word-spacing:-11.209256pt;}
.ws20_c00261{word-spacing:-10.110309pt;}
.ws2a_c00261{word-spacing:-2.555061pt;}
.ws29_c00261{word-spacing:-1.401163pt;}
.ws27_c00261{word-spacing:-0.576949pt;}
.ws24_c00261{word-spacing:-0.448000pt;}
.ws28_c00261{word-spacing:-0.164843pt;}
.ws22_c00261{word-spacing:-0.144000pt;}
.ws25_c00261{word-spacing:-0.128000pt;}
.ws23_c00261{word-spacing:-0.064000pt;}
.ws21_c00261{word-spacing:0.000000pt;}
.ws2b_c00261{word-spacing:0.219789pt;}
.ws26_c00261{word-spacing:0.576949pt;}
.wsa_c00261{word-spacing:25.262139pt;}
.ws4_c00261{word-spacing:130.077348pt;}
.wsf_c00261{word-spacing:159.341043pt;}
.ws13_c00261{word-spacing:159.992171pt;}
.ws1e_c00261{word-spacing:163.837126pt;}
.ws1a_c00261{word-spacing:165.485553pt;}
.ws1d_c00261{word-spacing:169.330508pt;}
.ws5_c00261{word-spacing:172.079260pt;}
.ws6_c00261{word-spacing:176.826729pt;}
.wsd_c00261{word-spacing:178.611150pt;}
.ws10_c00261{word-spacing:179.567238pt;}
.ws1c_c00261{word-spacing:188.563526pt;}
.ws1b_c00261{word-spacing:193.834371pt;}
.wse_c00261{word-spacing:198.750803pt;}
.ws12_c00261{word-spacing:201.750940pt;}
.ws18_c00261{word-spacing:206.861062pt;}
.ws16_c00261{word-spacing:207.030026pt;}
.ws3_c00261{word-spacing:221.301280pt;}
.wsc_c00261{word-spacing:223.732709pt;}
.ws2_c00261{word-spacing:225.026724pt;}
.ws11_c00261{word-spacing:229.831888pt;}
.wsb_c00261{word-spacing:233.553211pt;}
.ws15_c00261{word-spacing:236.095909pt;}
.ws19_c00261{word-spacing:245.520789pt;}
.ws8_c00261{word-spacing:253.569232pt;}
.ws7_c00261{word-spacing:261.576465pt;}
.ws14_c00261{word-spacing:265.384330pt;}
.ws17_c00261{word-spacing:267.457227pt;}
.ws9_c00261{word-spacing:294.544998pt;}
._4_c00261{margin-left:-2.478087pt;}
._0_c00261{margin-left:-1.158400pt;}
._1_c00261{width:1.543180pt;}
._2_c00261{width:2.769994pt;}
._5_c00261{width:3.700709pt;}
._3_c00261{width:108.539389pt;}
.fs3_c00261{font-size:41.210667pt;}
.fs4_c00261{font-size:43.957867pt;}
.fs0_c00261{font-size:48.000000pt;}
.fs2_c00261{font-size:53.440000pt;}
.fs1_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y33_c00261{bottom:2.746400pt;}
.y1e_c00261{bottom:2.746533pt;}
.y24_c00261{bottom:2.746800pt;}
.y28_c00261{bottom:2.747067pt;}
.y17_c00261{bottom:2.747200pt;}
.y13_c00261{bottom:2.747333pt;}
.y2f_c00261{bottom:2.747467pt;}
.y22_c00261{bottom:2.747600pt;}
.y19_c00261{bottom:2.747733pt;}
.y15_c00261{bottom:2.747867pt;}
.y1b_c00261{bottom:2.748133pt;}
.y35_c00261{bottom:2.748267pt;}
.y20_c00261{bottom:2.748400pt;}
.y8_c00261{bottom:3.433333pt;}
.ya_c00261{bottom:3.433600pt;}
.y11_c00261{bottom:3.433733pt;}
.yc_c00261{bottom:3.434000pt;}
.ye_c00261{bottom:3.434400pt;}
.y38_c00261{bottom:48.765733pt;}
.y39_c00261{bottom:50.960000pt;}
.y6_c00261{bottom:118.960000pt;}
.y5_c00261{bottom:131.200000pt;}
.y36_c00261{bottom:132.561333pt;}
.y34_c00261{bottom:146.297333pt;}
.y32_c00261{bottom:160.036000pt;}
.y31_c00261{bottom:173.772000pt;}
.y30_c00261{bottom:187.508000pt;}
.y2e_c00261{bottom:201.245333pt;}
.y2d_c00261{bottom:214.982667pt;}
.y2c_c00261{bottom:228.718667pt;}
.y2b_c00261{bottom:242.456000pt;}
.y2a_c00261{bottom:256.193333pt;}
.y29_c00261{bottom:269.929333pt;}
.y27_c00261{bottom:283.666667pt;}
.y26_c00261{bottom:297.402667pt;}
.y25_c00261{bottom:311.140000pt;}
.y23_c00261{bottom:324.877333pt;}
.y21_c00261{bottom:338.613333pt;}
.y1f_c00261{bottom:352.349333pt;}
.y1d_c00261{bottom:366.088000pt;}
.y1c_c00261{bottom:379.824000pt;}
.y1a_c00261{bottom:393.560000pt;}
.y18_c00261{bottom:407.297333pt;}
.y16_c00261{bottom:421.034667pt;}
.y14_c00261{bottom:434.770667pt;}
.y12_c00261{bottom:448.508000pt;}
.y10_c00261{bottom:462.245333pt;}
.yf_c00261{bottom:476.669333pt;}
.yd_c00261{bottom:491.092000pt;}
.yb_c00261{bottom:505.516000pt;}
.y9_c00261{bottom:519.940000pt;}
.y7_c00261{bottom:534.364000pt;}
.y37_c00261{bottom:548.786667pt;}
.y4_c00261{bottom:676.640000pt;}
.y3_c00261{bottom:694.316000pt;}
.y2_c00261{bottom:708.080000pt;}
.y1_c00261{bottom:735.680000pt;}
.h9_c00261{height:13.049333pt;}
.h8_c00261{height:13.050667pt;}
.h5_c00261{height:13.736000pt;}
.h7_c00261{height:13.737333pt;}
.h6_c00261{height:33.986727pt;}
.hb_c00261{height:36.252362pt;}
.h2_c00261{height:47.109375pt;}
.h4_c00261{height:52.422344pt;}
.h3_c00261{height:62.812500pt;}
.ha_c00261{height:105.086667pt;}
.h0_c00261{height:793.840000pt;}
.h1_c00261{height:794.000000pt;}
.w3_c00261{width:20.953333pt;}
.w5_c00261{width:91.248000pt;}
.w4_c00261{width:817.852000pt;}
.w2_c00261{width:932.080000pt;}
.w0_c00261{width:1122.560000pt;}
.w1_c00261{width:1122.666667pt;}
.x0_c00261{left:0.000000pt;}
.x6_c00261{left:5.407200pt;}
.x5_c00261{left:8.110800pt;}
.xa_c00261{left:22.304667pt;}
.x2_c00261{left:94.560000pt;}
.x9_c00261{left:116.945333pt;}
.x7_c00261{left:208.868000pt;}
.x8_c00261{left:294.021600pt;}
.x1_c00261{left:561.280000pt;}
.x4_c00261{left:968.480000pt;}
.x3_c00261{left:1028.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_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_0befa2dd78eabf07cf59feb4.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.284668;font-style:normal;font-weight:normal;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_f02a0b000d54b9e1205078e1.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.284180;font-style:normal;font-weight:normal;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_c60a942fb22293a846056892.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.002930;font-style:normal;font-weight:normal;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_11e8c278db0684f558731a49.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:0.921875;font-style: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(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.v1_c00262{vertical-align:-61.920000px;}
.v0_c00262{vertical-align:0.000000px;}
.ls4_c00262{letter-spacing:-1.818192px;}
.ls8_c00262{letter-spacing:-1.227280px;}
.ls7_c00262{letter-spacing:-1.000006px;}
.ls5_c00262{letter-spacing:-0.590912px;}
.ls6_c00262{letter-spacing:-0.545458px;}
.lsf_c00262{letter-spacing:-0.318184px;}
.lse_c00262{letter-spacing:-0.181819px;}
.lsb_c00262{letter-spacing:-0.136364px;}
.ls3_c00262{letter-spacing:-0.120240px;}
.ls1_c00262{letter-spacing:-0.108000px;}
.ls2_c00262{letter-spacing:0.000000px;}
.ls9_c00262{letter-spacing:0.363638px;}
.lsa_c00262{letter-spacing:0.954551px;}
.lsd_c00262{letter-spacing:1.363644px;}
.lsc_c00262{letter-spacing:1.636373px;}
.ls0_c00262{letter-spacing:725.580000px;}
.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:-14.909760px;}
.ws29_c00262{word-spacing:-2.818198px;}
.ws2b_c00262{word-spacing:-2.545469px;}
.ws28_c00262{word-spacing:-1.545463px;}
.ws2a_c00262{word-spacing:-1.045460px;}
.ws26_c00262{word-spacing:-0.636367px;}
.ws25_c00262{word-spacing:-0.590912px;}
.ws22_c00262{word-spacing:0.000000px;}
.ws27_c00262{word-spacing:0.045455px;}
.ws24_c00262{word-spacing:0.162000px;}
.ws23_c00262{word-spacing:0.270000px;}
.ws1_c00262{word-spacing:27.863792px;}
.ws2_c00262{word-spacing:146.123546px;}
.ws1b_c00262{word-spacing:156.469058px;}
.ws4_c00262{word-spacing:158.609979px;}
.ws8_c00262{word-spacing:165.560018px;}
.ws17_c00262{word-spacing:180.710103px;}
.ws5_c00262{word-spacing:195.864733px;}
.ws1f_c00262{word-spacing:196.669283px;}
.ws1a_c00262{word-spacing:201.064762px;}
.ws16_c00262{word-spacing:201.087490px;}
.ws18_c00262{word-spacing:208.923897px;}
.wsd_c00262{word-spacing:209.801175px;}
.ws12_c00262{word-spacing:213.146648px;}
.ws10_c00262{word-spacing:215.105750px;}
.ws7_c00262{word-spacing:219.073954px;}
.ws1c_c00262{word-spacing:219.219409px;}
.wsc_c00262{word-spacing:221.983061px;}
.ws1e_c00262{word-spacing:222.264881px;}
.wsf_c00262{word-spacing:223.137613px;}
.ws21_c00262{word-spacing:227.924004px;}
.ws6_c00262{word-spacing:230.105834px;}
.ws14_c00262{word-spacing:244.696825px;}
.ws19_c00262{word-spacing:249.546852px;}
.ws13_c00262{word-spacing:250.196856px;}
.ws1d_c00262{word-spacing:255.596886px;}
.ws11_c00262{word-spacing:255.605977px;}
.ws3_c00262{word-spacing:257.287804px;}
.ws20_c00262{word-spacing:258.683267px;}
.wse_c00262{word-spacing:263.483294px;}
.ws15_c00262{word-spacing:264.869665px;}
.wsb_c00262{word-spacing:278.824289px;}
.ws9_c00262{word-spacing:279.424292px;}
.wsa_c00262{word-spacing:298.078942px;}
._5_c00262{margin-left:-2.802910px;}
._1_c00262{margin-left:-1.058400px;}
._0_c00262{width:1.225800px;}
._3_c00262{width:3.045472px;}
._9_c00262{width:43.240831px;}
._7_c00262{width:53.012134px;}
._4_c00262{width:103.414109px;}
._8_c00262{width:113.371669px;}
._2_c00262{width:126.686966px;}
._a_c00262{width:142.367393px;}
._6_c00262{width:206.095022px;}
._b_c00262{width:212.325289px;}
.fc0_c00262{color:rgb(0,0,0);}
.fs3_c00262{font-size:45.454800px;}
.fs0_c00262{font-size:54.000000px;}
.fs2_c00262{font-size:60.120000px;}
.fs1_c00262{font-size:72.000000px;}
.y0_c00262{bottom:0.000000px;}
.y38_c00262{bottom:3.028950px;}
.y1a_c00262{bottom:3.029400px;}
.y2f_c00262{bottom:3.029550px;}
.y14_c00262{bottom:3.029700px;}
.yf_c00262{bottom:3.029850px;}
.yb_c00262{bottom:3.030000px;}
.y9_c00262{bottom:3.030150px;}
.y7_c00262{bottom:3.030300px;}
.y21_c00262{bottom:3.030450px;}
.y1f_c00262{bottom:3.030600px;}
.y1c_c00262{bottom:3.030750px;}
.y18_c00262{bottom:3.030900px;}
.y16_c00262{bottom:3.031050px;}
.y12_c00262{bottom:3.031200px;}
.y2c_c00262{bottom:3.031350px;}
.yd_c00262{bottom:3.031500px;}
.y26_c00262{bottom:3.031650px;}
.y3f_c00262{bottom:57.330000px;}
.y5_c00262{bottom:135.720000px;}
.y3e_c00262{bottom:151.017000px;}
.y3d_c00262{bottom:166.168500px;}
.y3c_c00262{bottom:181.320000px;}
.y3b_c00262{bottom:196.471500px;}
.y3a_c00262{bottom:211.623000px;}
.y39_c00262{bottom:226.774500px;}
.y37_c00262{bottom:241.927500px;}
.y36_c00262{bottom:257.077500px;}
.y35_c00262{bottom:272.229000px;}
.y34_c00262{bottom:287.380500px;}
.y33_c00262{bottom:302.532000px;}
.y32_c00262{bottom:317.685000px;}
.y31_c00262{bottom:332.836500px;}
.y30_c00262{bottom:347.986500px;}
.y2e_c00262{bottom:363.139500px;}
.y2d_c00262{bottom:378.289500px;}
.y2b_c00262{bottom:393.441000px;}
.y2a_c00262{bottom:408.594000px;}
.y29_c00262{bottom:423.744000px;}
.y28_c00262{bottom:438.897000px;}
.y27_c00262{bottom:454.048500px;}
.y25_c00262{bottom:469.198500px;}
.y24_c00262{bottom:484.351500px;}
.y23_c00262{bottom:499.503000px;}
.y22_c00262{bottom:514.654500px;}
.y20_c00262{bottom:529.806000px;}
.y1e_c00262{bottom:544.957500px;}
.y1d_c00262{bottom:560.109000px;}
.y1b_c00262{bottom:575.260500px;}
.y19_c00262{bottom:590.413500px;}
.y17_c00262{bottom:605.563500px;}
.y15_c00262{bottom:620.715000px;}
.y13_c00262{bottom:635.868000px;}
.y11_c00262{bottom:651.018000px;}
.y10_c00262{bottom:666.171000px;}
.ye_c00262{bottom:681.322500px;}
.yc_c00262{bottom:696.472500px;}
.ya_c00262{bottom:711.625500px;}
.y8_c00262{bottom:726.777000px;}
.y6_c00262{bottom:741.928500px;}
.y4_c00262{bottom:761.220000px;}
.y3_c00262{bottom:781.110000px;}
.y2_c00262{bottom:796.594500px;}
.y1_c00262{bottom:827.640000px;}
.h5_c00262{height:14.394000px;}
.h7_c00262{height:14.395500px;}
.h6_c00262{height:37.486893px;}
.h2_c00262{height:52.998047px;}
.h4_c00262{height:58.975137px;}
.h3_c00262{height:70.664062px;}
.h0_c00262{height:893.070000px;}
.h1_c00262{height:893.250000px;}
.w2_c00262{width:1048.498500px;}
.w0_c00262{width:1262.880000px;}
.w1_c00262{width:1263.000000px;}
.x0_c00262{left:0.000000px;}
.x4_c00262{left:6.082500px;}
.x2_c00262{left:106.380000px;}
.x1_c00262{left:631.440000px;}
.x3_c00262{left:1089.540000px;}
.x5_c00262{left:1129.590000px;}
@media print{
.v1_c00262{vertical-align:-55.040000pt;}
.v0_c00262{vertical-align:0.000000pt;}
.ls4_c00262{letter-spacing:-1.616171pt;}
.ls8_c00262{letter-spacing:-1.090915pt;}
.ls7_c00262{letter-spacing:-0.888894pt;}
.ls5_c00262{letter-spacing:-0.525255pt;}
.ls6_c00262{letter-spacing:-0.484851pt;}
.lsf_c00262{letter-spacing:-0.282830pt;}
.lse_c00262{letter-spacing:-0.161617pt;}
.lsb_c00262{letter-spacing:-0.121213pt;}
.ls3_c00262{letter-spacing:-0.106880pt;}
.ls1_c00262{letter-spacing:-0.096000pt;}
.ls2_c00262{letter-spacing:0.000000pt;}
.ls9_c00262{letter-spacing:0.323234pt;}
.lsa_c00262{letter-spacing:0.848490pt;}
.lsd_c00262{letter-spacing:1.212128pt;}
.lsc_c00262{letter-spacing:1.454554pt;}
.ls0_c00262{letter-spacing:644.960000pt;}
.ws0_c00262{word-spacing:-13.253120pt;}
.ws29_c00262{word-spacing:-2.505065pt;}
.ws2b_c00262{word-spacing:-2.262639pt;}
.ws28_c00262{word-spacing:-1.373745pt;}
.ws2a_c00262{word-spacing:-0.929298pt;}
.ws26_c00262{word-spacing:-0.565660pt;}
.ws25_c00262{word-spacing:-0.525255pt;}
.ws22_c00262{word-spacing:0.000000pt;}
.ws27_c00262{word-spacing:0.040404pt;}
.ws24_c00262{word-spacing:0.144000pt;}
.ws23_c00262{word-spacing:0.240000pt;}
.ws1_c00262{word-spacing:24.767815pt;}
.ws2_c00262{word-spacing:129.887596pt;}
.ws1b_c00262{word-spacing:139.083607pt;}
.ws4_c00262{word-spacing:140.986648pt;}
.ws8_c00262{word-spacing:147.164460pt;}
.ws17_c00262{word-spacing:160.631203pt;}
.ws5_c00262{word-spacing:174.101985pt;}
.ws1f_c00262{word-spacing:174.817141pt;}
.ws1a_c00262{word-spacing:178.724233pt;}
.ws16_c00262{word-spacing:178.744435pt;}
.ws18_c00262{word-spacing:185.710131pt;}
.wsd_c00262{word-spacing:186.489933pt;}
.ws12_c00262{word-spacing:189.463687pt;}
.ws10_c00262{word-spacing:191.205111pt;}
.ws7_c00262{word-spacing:194.732404pt;}
.ws1c_c00262{word-spacing:194.861697pt;}
.wsc_c00262{word-spacing:197.318277pt;}
.ws1e_c00262{word-spacing:197.568783pt;}
.wsf_c00262{word-spacing:198.344545pt;}
.ws21_c00262{word-spacing:202.599114pt;}
.ws6_c00262{word-spacing:204.538519pt;}
.ws14_c00262{word-spacing:217.508289pt;}
.ws19_c00262{word-spacing:221.819424pt;}
.ws13_c00262{word-spacing:222.397205pt;}
.ws1d_c00262{word-spacing:227.197232pt;}
.ws11_c00262{word-spacing:227.205313pt;}
.ws3_c00262{word-spacing:228.700271pt;}
.ws20_c00262{word-spacing:229.940682pt;}
.wse_c00262{word-spacing:234.207372pt;}
.ws15_c00262{word-spacing:235.439702pt;}
.wsb_c00262{word-spacing:247.843812pt;}
.ws9_c00262{word-spacing:248.377148pt;}
.wsa_c00262{word-spacing:264.959060pt;}
._5_c00262{margin-left:-2.491475pt;}
._1_c00262{margin-left:-0.940800pt;}
._0_c00262{width:1.089600pt;}
._3_c00262{width:2.707086pt;}
._9_c00262{width:38.436294pt;}
._7_c00262{width:47.121897pt;}
._4_c00262{width:91.923652pt;}
._8_c00262{width:100.774817pt;}
._2_c00262{width:112.610637pt;}
._a_c00262{width:126.548794pt;}
._6_c00262{width:183.195575pt;}
._b_c00262{width:188.733590pt;}
.fs3_c00262{font-size:40.404267pt;}
.fs0_c00262{font-size:48.000000pt;}
.fs2_c00262{font-size:53.440000pt;}
.fs1_c00262{font-size:64.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y38_c00262{bottom:2.692400pt;}
.y1a_c00262{bottom:2.692800pt;}
.y2f_c00262{bottom:2.692933pt;}
.y14_c00262{bottom:2.693067pt;}
.yf_c00262{bottom:2.693200pt;}
.yb_c00262{bottom:2.693333pt;}
.y9_c00262{bottom:2.693467pt;}
.y7_c00262{bottom:2.693600pt;}
.y21_c00262{bottom:2.693733pt;}
.y1f_c00262{bottom:2.693867pt;}
.y1c_c00262{bottom:2.694000pt;}
.y18_c00262{bottom:2.694133pt;}
.y16_c00262{bottom:2.694267pt;}
.y12_c00262{bottom:2.694400pt;}
.y2c_c00262{bottom:2.694533pt;}
.yd_c00262{bottom:2.694667pt;}
.y26_c00262{bottom:2.694800pt;}
.y3f_c00262{bottom:50.960000pt;}
.y5_c00262{bottom:120.640000pt;}
.y3e_c00262{bottom:134.237333pt;}
.y3d_c00262{bottom:147.705333pt;}
.y3c_c00262{bottom:161.173333pt;}
.y3b_c00262{bottom:174.641333pt;}
.y3a_c00262{bottom:188.109333pt;}
.y39_c00262{bottom:201.577333pt;}
.y37_c00262{bottom:215.046667pt;}
.y36_c00262{bottom:228.513333pt;}
.y35_c00262{bottom:241.981333pt;}
.y34_c00262{bottom:255.449333pt;}
.y33_c00262{bottom:268.917333pt;}
.y32_c00262{bottom:282.386667pt;}
.y31_c00262{bottom:295.854667pt;}
.y30_c00262{bottom:309.321333pt;}
.y2e_c00262{bottom:322.790667pt;}
.y2d_c00262{bottom:336.257333pt;}
.y2b_c00262{bottom:349.725333pt;}
.y2a_c00262{bottom:363.194667pt;}
.y29_c00262{bottom:376.661333pt;}
.y28_c00262{bottom:390.130667pt;}
.y27_c00262{bottom:403.598667pt;}
.y25_c00262{bottom:417.065333pt;}
.y24_c00262{bottom:430.534667pt;}
.y23_c00262{bottom:444.002667pt;}
.y22_c00262{bottom:457.470667pt;}
.y20_c00262{bottom:470.938667pt;}
.y1e_c00262{bottom:484.406667pt;}
.y1d_c00262{bottom:497.874667pt;}
.y1b_c00262{bottom:511.342667pt;}
.y19_c00262{bottom:524.812000pt;}
.y17_c00262{bottom:538.278667pt;}
.y15_c00262{bottom:551.746667pt;}
.y13_c00262{bottom:565.216000pt;}
.y11_c00262{bottom:578.682667pt;}
.y10_c00262{bottom:592.152000pt;}
.ye_c00262{bottom:605.620000pt;}
.yc_c00262{bottom:619.086667pt;}
.ya_c00262{bottom:632.556000pt;}
.y8_c00262{bottom:646.024000pt;}
.y6_c00262{bottom:659.492000pt;}
.y4_c00262{bottom:676.640000pt;}
.y3_c00262{bottom:694.320000pt;}
.y2_c00262{bottom:708.084000pt;}
.y1_c00262{bottom:735.680000pt;}
.h5_c00262{height:12.794667pt;}
.h7_c00262{height:12.796000pt;}
.h6_c00262{height:33.321683pt;}
.h2_c00262{height:47.109375pt;}
.h4_c00262{height:52.422344pt;}
.h3_c00262{height:62.812500pt;}
.h0_c00262{height:793.840000pt;}
.h1_c00262{height:794.000000pt;}
.w2_c00262{width:931.998667pt;}
.w0_c00262{width:1122.560000pt;}
.w1_c00262{width:1122.666667pt;}
.x0_c00262{left:0.000000pt;}
.x4_c00262{left:5.406667pt;}
.x2_c00262{left:94.560000pt;}
.x1_c00262{left:561.280000pt;}
.x3_c00262{left:968.480000pt;}
.x5_c00262{left:1004.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_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_92d4e6a3292aae60b7467407.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_4042378f68f61c0f5c6aabd3.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_57fab68b5db0c971fc6bf75b.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00263;src:url('chunks/assets/font_9090b9fa7586f137f007e75e.woff2')format("woff");}.ff5_c00263{font-family:ff5_c00263;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.260951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260951,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.260953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260953,0.000000,0.000000,0.250000,0,0);}
.v1_c00263{vertical-align:-61.938000px;}
.v3_c00263{vertical-align:-2.928530px;}
.v0_c00263{vertical-align:0.000000px;}
.v2_c00263{vertical-align:2.928530px;}
.ls2_c00263{letter-spacing:-1.748376px;}
.ls10_c00263{letter-spacing:-1.439478px;}
.lsb_c00263{letter-spacing:-1.223863px;}
.ls7_c00263{letter-spacing:-1.180154px;}
.ls6_c00263{letter-spacing:-0.961607px;}
.lsa_c00263{letter-spacing:-0.568222px;}
.ls5_c00263{letter-spacing:-0.524513px;}
.lsf_c00263{letter-spacing:-0.174838px;}
.ls3_c00263{letter-spacing:-0.131128px;}
.ls1_c00263{letter-spacing:0.000000px;}
.lsc_c00263{letter-spacing:0.131128px;}
.ls4_c00263{letter-spacing:0.349675px;}
.lsd_c00263{letter-spacing:0.917897px;}
.ls8_c00263{letter-spacing:1.311282px;}
.ls11_c00263{letter-spacing:1.477359px;}
.ls9_c00263{letter-spacing:1.573538px;}
.lse_c00263{letter-spacing:1.617248px;}
.ls0_c00263{letter-spacing:1144.260000px;}
.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;}
}
.ws2f_c00263{word-spacing:-2.753692px;}
.ws2c_c00263{word-spacing:-2.709983px;}
.ws2a_c00263{word-spacing:-2.447726px;}
.ws33_c00263{word-spacing:-2.197098px;}
.ws28_c00263{word-spacing:-1.486120px;}
.ws2e_c00263{word-spacing:-1.005316px;}
.ws31_c00263{word-spacing:-0.961607px;}
.ws29_c00263{word-spacing:-0.611932px;}
.ws30_c00263{word-spacing:-0.568222px;}
.ws27_c00263{word-spacing:-0.162000px;}
.ws26_c00263{word-spacing:0.000000px;}
.ws2b_c00263{word-spacing:0.043709px;}
.ws2d_c00263{word-spacing:0.611932px;}
.ws32_c00263{word-spacing:0.719739px;}
.ws1a_c00263{word-spacing:15.123452px;}
.ws0_c00263{word-spacing:26.793862px;}
.wsa_c00263{word-spacing:102.961863px;}
.wsb_c00263{word-spacing:132.120403px;}
.ws4_c00263{word-spacing:139.712726px;}
.wsf_c00263{word-spacing:144.118634px;}
.ws24_c00263{word-spacing:157.996368px;}
.ws1b_c00263{word-spacing:159.246457px;}
.ws1f_c00263{word-spacing:162.638306px;}
.ws23_c00263{word-spacing:165.029211px;}
.ws2_c00263{word-spacing:167.944628px;}
.ws16_c00263{word-spacing:168.818816px;}
.wsc_c00263{word-spacing:175.519467px;}
.ws13_c00263{word-spacing:175.694304px;}
.ws10_c00263{word-spacing:175.842916px;}
.ws1_c00263{word-spacing:185.428388px;}
.ws22_c00263{word-spacing:189.252960px;}
.ws8_c00263{word-spacing:193.309192px;}
.ws11_c00263{word-spacing:194.213977px;}
.ws7_c00263{word-spacing:197.085685px;}
.wse_c00263{word-spacing:204.983973px;}
.ws12_c00263{word-spacing:208.738611px;}
.ws14_c00263{word-spacing:209.809491px;}
.ws15_c00263{word-spacing:220.395908px;}
.ws9_c00263{word-spacing:222.467733px;}
.ws25_c00263{word-spacing:222.472104px;}
.ws1e_c00263{word-spacing:232.079430px;}
.ws19_c00263{word-spacing:233.976418px;}
.ws1d_c00263{word-spacing:234.168740px;}
.ws5_c00263{word-spacing:237.031705px;}
.ws6_c00263{word-spacing:240.795085px;}
.ws17_c00263{word-spacing:242.967442px;}
.ws3_c00263{word-spacing:244.392368px;}
.ws1c_c00263{word-spacing:247.849782px;}
.wsd_c00263{word-spacing:251.648129px;}
.ws21_c00263{word-spacing:253.540746px;}
.ws18_c00263{word-spacing:255.407137px;}
.ws20_c00263{word-spacing:263.305426px;}
._d_c00263{margin-left:-5.375290px;}
._7_c00263{margin-left:-4.178619px;}
._8_c00263{margin-left:-3.098996px;}
._0_c00263{margin-left:-1.748376px;}
._1_c00263{width:1.354991px;}
._2_c00263{width:2.740579px;}
._9_c00263{width:4.130538px;}
._a_c00263{width:26.007093px;}
._c_c00263{width:41.099949px;}
._6_c00263{width:67.369298px;}
._5_c00263{width:90.828133px;}
._b_c00263{width:136.705519px;}
._3_c00263{width:219.639735px;}
._4_c00263{width:229.299512px;}
.fc0_c00263{color:rgb(0,0,0);}
.fs3_c00263{font-size:37.881000px;}
.fs2_c00263{font-size:43.709400px;}
.fs0_c00263{font-size:54.000000px;}
.fs1_c00263{font-size:72.000000px;}
.y0_c00263{bottom:0.000000px;}
.y23_c00263{bottom:2.912850px;}
.y18_c00263{bottom:2.913000px;}
.ya_c00263{bottom:2.913150px;}
.y29_c00263{bottom:2.913300px;}
.y15_c00263{bottom:2.913450px;}
.y6_c00263{bottom:2.913600px;}
.y1e_c00263{bottom:2.913750px;}
.y12_c00263{bottom:2.913900px;}
.y10_c00263{bottom:2.914050px;}
.ye_c00263{bottom:2.914200px;}
.y1a_c00263{bottom:2.914350px;}
.yc_c00263{bottom:2.914500px;}
.y39_c00263{bottom:2.914650px;}
.y8_c00263{bottom:2.914800px;}
.y43_c00263{bottom:3.642150px;}
.y41_c00263{bottom:3.642450px;}
.y3f_c00263{bottom:4.371150px;}
.y44_c00263{bottom:57.330000px;}
.y42_c00263{bottom:86.145000px;}
.y40_c00263{bottom:100.714500px;}
.y3e_c00263{bottom:115.284000px;}
.y3d_c00263{bottom:130.582500px;}
.y3c_c00263{bottom:145.152000px;}
.y3b_c00263{bottom:159.721500px;}
.y3a_c00263{bottom:174.292500px;}
.y38_c00263{bottom:188.860500px;}
.y37_c00263{bottom:203.431500px;}
.y36_c00263{bottom:218.001000px;}
.y35_c00263{bottom:232.570500px;}
.y34_c00263{bottom:247.140000px;}
.y33_c00263{bottom:261.709500px;}
.y32_c00263{bottom:276.279000px;}
.y31_c00263{bottom:290.850000px;}
.y30_c00263{bottom:305.418000px;}
.y2f_c00263{bottom:319.989000px;}
.y2e_c00263{bottom:334.558500px;}
.y2d_c00263{bottom:349.128000px;}
.y2c_c00263{bottom:363.697500px;}
.y2b_c00263{bottom:378.267000px;}
.y2a_c00263{bottom:392.836500px;}
.y28_c00263{bottom:407.407500px;}
.y27_c00263{bottom:421.977000px;}
.y26_c00263{bottom:436.546500px;}
.y25_c00263{bottom:451.116000px;}
.y24_c00263{bottom:465.685500px;}
.y22_c00263{bottom:480.256500px;}
.y21_c00263{bottom:494.824500px;}
.y20_c00263{bottom:509.394000px;}
.y1f_c00263{bottom:523.965000px;}
.y1d_c00263{bottom:538.534500px;}
.y1c_c00263{bottom:553.104000px;}
.y1b_c00263{bottom:567.673500px;}
.y19_c00263{bottom:582.243000px;}
.y17_c00263{bottom:596.814000px;}
.y16_c00263{bottom:611.382000px;}
.y14_c00263{bottom:625.953000px;}
.y13_c00263{bottom:640.522500px;}
.y11_c00263{bottom:655.092000px;}
.yf_c00263{bottom:669.661500px;}
.yd_c00263{bottom:684.231000px;}
.yb_c00263{bottom:698.800500px;}
.y9_c00263{bottom:713.371500px;}
.y7_c00263{bottom:727.939500px;}
.y5_c00263{bottom:742.510500px;}
.y4_c00263{bottom:761.220000px;}
.y3_c00263{bottom:781.105500px;}
.y2_c00263{bottom:796.590000px;}
.y1_c00263{bottom:827.640000px;}
.h4_c00263{height:13.840500px;}
.h6_c00263{height:13.842000px;}
.h8_c00263{height:14.569500px;}
.h5_c00263{height:36.047450px;}
.ha_c00263{height:37.178130px;}
.h9_c00263{height:38.176945px;}
.h7_c00263{height:38.975979px;}
.h2_c00263{height:52.998047px;}
.h3_c00263{height:70.664062px;}
.h0_c00263{height:893.070000px;}
.h1_c00263{height:893.250000px;}
.w3_c00263{width:1023.495000px;}
.w2_c00263{width:1048.590000px;}
.w0_c00263{width:1262.880000px;}
.w1_c00263{width:1263.000000px;}
.x0_c00263{left:0.000000px;}
.x6_c00263{left:1.520400px;}
.x4_c00263{left:3.801900px;}
.x3_c00263{left:6.083100px;}
.x2_c00263{left:106.380000px;}
.x5_c00263{left:131.473500px;}
.x1_c00263{left:631.440000px;}
@media print{
.v1_c00263{vertical-align:-55.056000pt;}
.v3_c00263{vertical-align:-2.603138pt;}
.v0_c00263{vertical-align:0.000000pt;}
.v2_c00263{vertical-align:2.603138pt;}
.ls2_c00263{letter-spacing:-1.554112pt;}
.ls10_c00263{letter-spacing:-1.279536pt;}
.lsb_c00263{letter-spacing:-1.087878pt;}
.ls7_c00263{letter-spacing:-1.049026pt;}
.ls6_c00263{letter-spacing:-0.854762pt;}
.lsa_c00263{letter-spacing:-0.505086pt;}
.ls5_c00263{letter-spacing:-0.466234pt;}
.lsf_c00263{letter-spacing:-0.155411pt;}
.ls3_c00263{letter-spacing:-0.116558pt;}
.ls1_c00263{letter-spacing:0.000000pt;}
.lsc_c00263{letter-spacing:0.116558pt;}
.ls4_c00263{letter-spacing:0.310822pt;}
.lsd_c00263{letter-spacing:0.815909pt;}
.ls8_c00263{letter-spacing:1.165584pt;}
.ls11_c00263{letter-spacing:1.313208pt;}
.ls9_c00263{letter-spacing:1.398701pt;}
.lse_c00263{letter-spacing:1.437554pt;}
.ls0_c00263{letter-spacing:1017.120000pt;}
.ws2f_c00263{word-spacing:-2.447726pt;}
.ws2c_c00263{word-spacing:-2.408874pt;}
.ws2a_c00263{word-spacing:-2.175757pt;}
.ws33_c00263{word-spacing:-1.952976pt;}
.ws28_c00263{word-spacing:-1.320995pt;}
.ws2e_c00263{word-spacing:-0.893614pt;}
.ws31_c00263{word-spacing:-0.854762pt;}
.ws29_c00263{word-spacing:-0.543939pt;}
.ws30_c00263{word-spacing:-0.505086pt;}
.ws27_c00263{word-spacing:-0.144000pt;}
.ws26_c00263{word-spacing:0.000000pt;}
.ws2b_c00263{word-spacing:0.038853pt;}
.ws2d_c00263{word-spacing:0.543939pt;}
.ws32_c00263{word-spacing:0.639768pt;}
.ws1a_c00263{word-spacing:13.443069pt;}
.ws0_c00263{word-spacing:23.816766pt;}
.wsa_c00263{word-spacing:91.521656pt;}
.wsb_c00263{word-spacing:117.440359pt;}
.ws4_c00263{word-spacing:124.189090pt;}
.wsf_c00263{word-spacing:128.105452pt;}
.ws24_c00263{word-spacing:140.441216pt;}
.ws1b_c00263{word-spacing:141.552406pt;}
.ws1f_c00263{word-spacing:144.567384pt;}
.ws23_c00263{word-spacing:146.692632pt;}
.ws2_c00263{word-spacing:149.284113pt;}
.ws16_c00263{word-spacing:150.061169pt;}
.wsc_c00263{word-spacing:156.017304pt;}
.ws13_c00263{word-spacing:156.172715pt;}
.ws10_c00263{word-spacing:156.304814pt;}
.ws1_c00263{word-spacing:164.825233pt;}
.ws22_c00263{word-spacing:168.224853pt;}
.ws8_c00263{word-spacing:171.830393pt;}
.ws11_c00263{word-spacing:172.634646pt;}
.ws7_c00263{word-spacing:175.187275pt;}
.wse_c00263{word-spacing:182.207976pt;}
.ws12_c00263{word-spacing:185.545432pt;}
.ws14_c00263{word-spacing:186.497325pt;}
.ws15_c00263{word-spacing:195.907473pt;}
.ws9_c00263{word-spacing:197.749096pt;}
.ws25_c00263{word-spacing:197.752981pt;}
.ws1e_c00263{word-spacing:206.292827pt;}
.ws19_c00263{word-spacing:207.979038pt;}
.ws1d_c00263{word-spacing:208.149991pt;}
.ws5_c00263{word-spacing:210.694849pt;}
.ws6_c00263{word-spacing:214.040075pt;}
.ws17_c00263{word-spacing:215.971059pt;}
.ws3_c00263{word-spacing:217.237661pt;}
.ws1c_c00263{word-spacing:220.310917pt;}
.wsd_c00263{word-spacing:223.687225pt;}
.ws21_c00263{word-spacing:225.369552pt;}
.ws18_c00263{word-spacing:227.028566pt;}
.ws20_c00263{word-spacing:234.049267pt;}
._d_c00263{margin-left:-4.778035pt;}
._7_c00263{margin-left:-3.714328pt;}
._8_c00263{margin-left:-2.754664pt;}
._0_c00263{margin-left:-1.554112pt;}
._1_c00263{width:1.204437pt;}
._2_c00263{width:2.436071pt;}
._9_c00263{width:3.671590pt;}
._a_c00263{width:23.117416pt;}
._c_c00263{width:36.533288pt;}
._6_c00263{width:59.883821pt;}
._5_c00263{width:80.736118pt;}
._b_c00263{width:121.516017pt;}
._3_c00263{width:195.235320pt;}
._4_c00263{width:203.821789pt;}
.fs3_c00263{font-size:33.672000pt;}
.fs2_c00263{font-size:38.852800pt;}
.fs0_c00263{font-size:48.000000pt;}
.fs1_c00263{font-size:64.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y23_c00263{bottom:2.589200pt;}
.y18_c00263{bottom:2.589333pt;}
.ya_c00263{bottom:2.589467pt;}
.y29_c00263{bottom:2.589600pt;}
.y15_c00263{bottom:2.589733pt;}
.y6_c00263{bottom:2.589867pt;}
.y1e_c00263{bottom:2.590000pt;}
.y12_c00263{bottom:2.590133pt;}
.y10_c00263{bottom:2.590267pt;}
.ye_c00263{bottom:2.590400pt;}
.y1a_c00263{bottom:2.590533pt;}
.yc_c00263{bottom:2.590667pt;}
.y39_c00263{bottom:2.590800pt;}
.y8_c00263{bottom:2.590933pt;}
.y43_c00263{bottom:3.237467pt;}
.y41_c00263{bottom:3.237733pt;}
.y3f_c00263{bottom:3.885467pt;}
.y44_c00263{bottom:50.960000pt;}
.y42_c00263{bottom:76.573333pt;}
.y40_c00263{bottom:89.524000pt;}
.y3e_c00263{bottom:102.474667pt;}
.y3d_c00263{bottom:116.073333pt;}
.y3c_c00263{bottom:129.024000pt;}
.y3b_c00263{bottom:141.974667pt;}
.y3a_c00263{bottom:154.926667pt;}
.y38_c00263{bottom:167.876000pt;}
.y37_c00263{bottom:180.828000pt;}
.y36_c00263{bottom:193.778667pt;}
.y35_c00263{bottom:206.729333pt;}
.y34_c00263{bottom:219.680000pt;}
.y33_c00263{bottom:232.630667pt;}
.y32_c00263{bottom:245.581333pt;}
.y31_c00263{bottom:258.533333pt;}
.y30_c00263{bottom:271.482667pt;}
.y2f_c00263{bottom:284.434667pt;}
.y2e_c00263{bottom:297.385333pt;}
.y2d_c00263{bottom:310.336000pt;}
.y2c_c00263{bottom:323.286667pt;}
.y2b_c00263{bottom:336.237333pt;}
.y2a_c00263{bottom:349.188000pt;}
.y28_c00263{bottom:362.140000pt;}
.y27_c00263{bottom:375.090667pt;}
.y26_c00263{bottom:388.041333pt;}
.y25_c00263{bottom:400.992000pt;}
.y24_c00263{bottom:413.942667pt;}
.y22_c00263{bottom:426.894667pt;}
.y21_c00263{bottom:439.844000pt;}
.y20_c00263{bottom:452.794667pt;}
.y1f_c00263{bottom:465.746667pt;}
.y1d_c00263{bottom:478.697333pt;}
.y1c_c00263{bottom:491.648000pt;}
.y1b_c00263{bottom:504.598667pt;}
.y19_c00263{bottom:517.549333pt;}
.y17_c00263{bottom:530.501333pt;}
.y16_c00263{bottom:543.450667pt;}
.y14_c00263{bottom:556.402667pt;}
.y13_c00263{bottom:569.353333pt;}
.y11_c00263{bottom:582.304000pt;}
.yf_c00263{bottom:595.254667pt;}
.yd_c00263{bottom:608.205333pt;}
.yb_c00263{bottom:621.156000pt;}
.y9_c00263{bottom:634.108000pt;}
.y7_c00263{bottom:647.057333pt;}
.y5_c00263{bottom:660.009333pt;}
.y4_c00263{bottom:676.640000pt;}
.y3_c00263{bottom:694.316000pt;}
.y2_c00263{bottom:708.080000pt;}
.y1_c00263{bottom:735.680000pt;}
.h4_c00263{height:12.302667pt;}
.h6_c00263{height:12.304000pt;}
.h8_c00263{height:12.950667pt;}
.h5_c00263{height:32.042177pt;}
.ha_c00263{height:33.047227pt;}
.h9_c00263{height:33.935063pt;}
.h7_c00263{height:34.645315pt;}
.h2_c00263{height:47.109375pt;}
.h3_c00263{height:62.812500pt;}
.h0_c00263{height:793.840000pt;}
.h1_c00263{height:794.000000pt;}
.w3_c00263{width:909.773333pt;}
.w2_c00263{width:932.080000pt;}
.w0_c00263{width:1122.560000pt;}
.w1_c00263{width:1122.666667pt;}
.x0_c00263{left:0.000000pt;}
.x6_c00263{left:1.351467pt;}
.x4_c00263{left:3.379467pt;}
.x3_c00263{left:5.407200pt;}
.x2_c00263{left:94.560000pt;}
.x5_c00263{left:116.865333pt;}
.x1_c00263{left:561.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_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_c8abd74bc1ce451223dc6722.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_c35402909bef5d6bde7622ab.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_cb269dfbc02719a951d0f63c.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_fa61e12ae9604787e0bad71a.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;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:ff6_c00264;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00264{font-family:ff6_c00264;line-height:1.432129;font-style:normal;font-weight: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_c00264;src:url('chunks/assets/font_01cb70d5717e5c49d89131bb.woff2')format("woff");}.ff7_c00264{font-family:ff7_c00264;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:ff8_c00264;src:url('chunks/assets/font_eb84838c60e5f023944082dd.woff2')format("woff");}.ff8_c00264{font-family:ff8_c00264;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6_c00264{vertical-align:-20.880000px;}
.v3_c00264{vertical-align:-10.440000px;}
.v0_c00264{vertical-align:0.000000px;}
.v1_c00264{vertical-align:2.880000px;}
.v5_c00264{vertical-align:27.000000px;}
.v4_c00264{vertical-align:36.360000px;}
.v2_c00264{vertical-align:42.120000px;}
.ls17_c00264{letter-spacing:-0.180360px;}
.ls12_c00264{letter-spacing:-0.144000px;}
.ls11_c00264{letter-spacing:-0.108000px;}
.ls14_c00264{letter-spacing:-0.102240px;}
.ls15_c00264{letter-spacing:-0.072000px;}
.ls16_c00264{letter-spacing:-0.060120px;}
.ls10_c00264{letter-spacing:0.000000px;}
.ls4_c00264{letter-spacing:0.072000px;}
.ls13_c00264{letter-spacing:0.102240px;}
.ls0_c00264{letter-spacing:0.144000px;}
.ls9_c00264{letter-spacing:0.191520px;}
.ls2_c00264{letter-spacing:0.360000px;}
.ls6_c00264{letter-spacing:0.720000px;}
.ls1_c00264{letter-spacing:1.368000px;}
.ls7_c00264{letter-spacing:1.922040px;}
.lsd_c00264{letter-spacing:3.240000px;}
.ls3_c00264{letter-spacing:5.760000px;}
.ls8_c00264{letter-spacing:6.480000px;}
.lsf_c00264{letter-spacing:6.840000px;}
.lsb_c00264{letter-spacing:9.374400px;}
.lsc_c00264{letter-spacing:16.243200px;}
.lsa_c00264{letter-spacing:23.904000px;}
.lse_c00264{letter-spacing:24.120000px;}
.ls5_c00264{letter-spacing:30.744000px;}
.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;}
}
.ws4_c00264{word-spacing:-72.000000px;}
.ws3_c00264{word-spacing:-51.222240px;}
.ws2_c00264{word-spacing:-51.120000px;}
.ws5_c00264{word-spacing:-51.017760px;}
.ws7_c00264{word-spacing:-18.072000px;}
.ws0_c00264{word-spacing:-17.856000px;}
.ws1_c00264{word-spacing:-15.840000px;}
.ws6_c00264{word-spacing:-12.161520px;}
.ws8_c00264{word-spacing:-9.720000px;}
.ws15_c00264{word-spacing:-0.504000px;}
.ws1b_c00264{word-spacing:-0.360000px;}
.ws1e_c00264{word-spacing:-0.144000px;}
.wse_c00264{word-spacing:-0.072000px;}
.ws9_c00264{word-spacing:0.000000px;}
.ws20_c00264{word-spacing:0.060120px;}
.ws16_c00264{word-spacing:0.072000px;}
.wsb_c00264{word-spacing:0.162000px;}
.ws1f_c00264{word-spacing:0.180360px;}
.wsa_c00264{word-spacing:0.270000px;}
.ws21_c00264{word-spacing:0.300600px;}
.ws18_c00264{word-spacing:3.240000px;}
.ws17_c00264{word-spacing:3.888000px;}
.wsc_c00264{word-spacing:5.328000px;}
.wsd_c00264{word-spacing:5.688000px;}
.ws1d_c00264{word-spacing:6.768000px;}
.ws1c_c00264{word-spacing:6.840000px;}
.ws1a_c00264{word-spacing:7.128000px;}
.wsf_c00264{word-spacing:9.216000px;}
.ws10_c00264{word-spacing:9.288000px;}
.ws11_c00264{word-spacing:9.648000px;}
.ws12_c00264{word-spacing:9.720000px;}
.ws19_c00264{word-spacing:12.960000px;}
.ws13_c00264{word-spacing:16.128000px;}
.ws14_c00264{word-spacing:16.200000px;}
._1_c00264{margin-left:-1.058400px;}
._0_c00264{width:1.220400px;}
._3_c00264{width:2.332800px;}
._2_c00264{width:5.493600px;}
._6_c00264{width:6.638400px;}
._4_c00264{width:16.200000px;}
._5_c00264{width:23.400000px;}
._7_c00264{width:24.696000px;}
.fc0_c00264{color:rgb(0,0,0);}
.fs5_c00264{font-size:38.880000px;}
.fs3_c00264{font-size:42.120000px;}
.fs4_c00264{font-size:47.880000px;}
.fs2_c00264{font-size:51.120000px;}
.fs0_c00264{font-size:54.000000px;}
.fs6_c00264{font-size:60.120000px;}
.fs1_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y28_c00264{bottom:57.240000px;}
.y27_c00264{bottom:109.795680px;}
.y26_c00264{bottom:132.210000px;}
.y29_c00264{bottom:144.900000px;}
.y25_c00264{bottom:181.260000px;}
.y24_c00264{bottom:212.490000px;}
.y23_c00264{bottom:242.370000px;}
.y22_c00264{bottom:251.460000px;}
.y21_c00264{bottom:288.540000px;}
.y20_c00264{bottom:319.590000px;}
.y1f_c00264{bottom:350.640000px;}
.y1e_c00264{bottom:381.690000px;}
.y1d_c00264{bottom:412.740000px;}
.y1c_c00264{bottom:443.790000px;}
.y1b_c00264{bottom:474.840000px;}
.y1a_c00264{bottom:505.890000px;}
.y19_c00264{bottom:536.940000px;}
.y18_c00264{bottom:567.990000px;}
.y17_c00264{bottom:598.860000px;}
.y16_c00264{bottom:629.910000px;}
.y15_c00264{bottom:660.960000px;}
.y14_c00264{bottom:692.190000px;}
.y13_c00264{bottom:723.240000px;}
.y12_c00264{bottom:754.290000px;}
.y11_c00264{bottom:785.340000px;}
.y10_c00264{bottom:816.390000px;}
.yf_c00264{bottom:847.440000px;}
.ye_c00264{bottom:878.490000px;}
.yd_c00264{bottom:909.540000px;}
.yc_c00264{bottom:939.420000px;}
.yb_c00264{bottom:948.510000px;}
.ya_c00264{bottom:985.590000px;}
.y9_c00264{bottom:1016.640000px;}
.y8_c00264{bottom:1047.780000px;}
.y7_c00264{bottom:1079.280000px;}
.y6_c00264{bottom:1110.330000px;}
.y5_c00264{bottom:1131.030000px;}
.y4_c00264{bottom:1150.920000px;}
.y3_c00264{bottom:1166.404500px;}
.y2_c00264{bottom:1181.970000px;}
.y1_c00264{bottom:1197.450000px;}
.hc_c00264{height:38.158594px;}
.hb_c00264{height:50.027344px;}
.h3_c00264{height:52.971680px;}
.h2_c00264{height:52.998047px;}
.hd_c00264{height:59.004492px;}
.h4_c00264{height:70.664062px;}
.ha_c00264{height:72.562500px;}
.h6_c00264{height:75.093750px;}
.h5_c00264{height:143.542969px;}
.h7_c00264{height:144.035508px;}
.h9_c00264{height:179.902969px;}
.h8_c00264{height:180.395508px;}
.h0_c00264{height:1262.880000px;}
.h1_c00264{height:1263.000000px;}
.w0_c00264{width:893.070000px;}
.w1_c00264{width:893.250000px;}
.x0_c00264{left:0.000000px;}
.x3_c00264{left:127.620000px;}
.x4_c00264{left:154.620000px;}
.x7_c00264{left:181.620000px;}
.x8_c00264{left:348.300000px;}
.x2_c00264{left:425.160000px;}
.x1_c00264{left:446.580000px;}
.x5_c00264{left:455.760000px;}
.x9_c00264{left:601.650000px;}
.x6_c00264{left:709.110000px;}
.xa_c00264{left:738.540000px;}
@media print{
.v6_c00264{vertical-align:-18.560000pt;}
.v3_c00264{vertical-align:-9.280000pt;}
.v0_c00264{vertical-align:0.000000pt;}
.v1_c00264{vertical-align:2.560000pt;}
.v5_c00264{vertical-align:24.000000pt;}
.v4_c00264{vertical-align:32.320000pt;}
.v2_c00264{vertical-align:37.440000pt;}
.ls17_c00264{letter-spacing:-0.160320pt;}
.ls12_c00264{letter-spacing:-0.128000pt;}
.ls11_c00264{letter-spacing:-0.096000pt;}
.ls14_c00264{letter-spacing:-0.090880pt;}
.ls15_c00264{letter-spacing:-0.064000pt;}
.ls16_c00264{letter-spacing:-0.053440pt;}
.ls10_c00264{letter-spacing:0.000000pt;}
.ls4_c00264{letter-spacing:0.064000pt;}
.ls13_c00264{letter-spacing:0.090880pt;}
.ls0_c00264{letter-spacing:0.128000pt;}
.ls9_c00264{letter-spacing:0.170240pt;}
.ls2_c00264{letter-spacing:0.320000pt;}
.ls6_c00264{letter-spacing:0.640000pt;}
.ls1_c00264{letter-spacing:1.216000pt;}
.ls7_c00264{letter-spacing:1.708480pt;}
.lsd_c00264{letter-spacing:2.880000pt;}
.ls3_c00264{letter-spacing:5.120000pt;}
.ls8_c00264{letter-spacing:5.760000pt;}
.lsf_c00264{letter-spacing:6.080000pt;}
.lsb_c00264{letter-spacing:8.332800pt;}
.lsc_c00264{letter-spacing:14.438400pt;}
.lsa_c00264{letter-spacing:21.248000pt;}
.lse_c00264{letter-spacing:21.440000pt;}
.ls5_c00264{letter-spacing:27.328000pt;}
.ws4_c00264{word-spacing:-64.000000pt;}
.ws3_c00264{word-spacing:-45.530880pt;}
.ws2_c00264{word-spacing:-45.440000pt;}
.ws5_c00264{word-spacing:-45.349120pt;}
.ws7_c00264{word-spacing:-16.064000pt;}
.ws0_c00264{word-spacing:-15.872000pt;}
.ws1_c00264{word-spacing:-14.080000pt;}
.ws6_c00264{word-spacing:-10.810240pt;}
.ws8_c00264{word-spacing:-8.640000pt;}
.ws15_c00264{word-spacing:-0.448000pt;}
.ws1b_c00264{word-spacing:-0.320000pt;}
.ws1e_c00264{word-spacing:-0.128000pt;}
.wse_c00264{word-spacing:-0.064000pt;}
.ws9_c00264{word-spacing:0.000000pt;}
.ws20_c00264{word-spacing:0.053440pt;}
.ws16_c00264{word-spacing:0.064000pt;}
.wsb_c00264{word-spacing:0.144000pt;}
.ws1f_c00264{word-spacing:0.160320pt;}
.wsa_c00264{word-spacing:0.240000pt;}
.ws21_c00264{word-spacing:0.267200pt;}
.ws18_c00264{word-spacing:2.880000pt;}
.ws17_c00264{word-spacing:3.456000pt;}
.wsc_c00264{word-spacing:4.736000pt;}
.wsd_c00264{word-spacing:5.056000pt;}
.ws1d_c00264{word-spacing:6.016000pt;}
.ws1c_c00264{word-spacing:6.080000pt;}
.ws1a_c00264{word-spacing:6.336000pt;}
.wsf_c00264{word-spacing:8.192000pt;}
.ws10_c00264{word-spacing:8.256000pt;}
.ws11_c00264{word-spacing:8.576000pt;}
.ws12_c00264{word-spacing:8.640000pt;}
.ws19_c00264{word-spacing:11.520000pt;}
.ws13_c00264{word-spacing:14.336000pt;}
.ws14_c00264{word-spacing:14.400000pt;}
._1_c00264{margin-left:-0.940800pt;}
._0_c00264{width:1.084800pt;}
._3_c00264{width:2.073600pt;}
._2_c00264{width:4.883200pt;}
._6_c00264{width:5.900800pt;}
._4_c00264{width:14.400000pt;}
._5_c00264{width:20.800000pt;}
._7_c00264{width:21.952000pt;}
.fs5_c00264{font-size:34.560000pt;}
.fs3_c00264{font-size:37.440000pt;}
.fs4_c00264{font-size:42.560000pt;}
.fs2_c00264{font-size:45.440000pt;}
.fs0_c00264{font-size:48.000000pt;}
.fs6_c00264{font-size:53.440000pt;}
.fs1_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y28_c00264{bottom:50.880000pt;}
.y27_c00264{bottom:97.596160pt;}
.y26_c00264{bottom:117.520000pt;}
.y29_c00264{bottom:128.800000pt;}
.y25_c00264{bottom:161.120000pt;}
.y24_c00264{bottom:188.880000pt;}
.y23_c00264{bottom:215.440000pt;}
.y22_c00264{bottom:223.520000pt;}
.y21_c00264{bottom:256.480000pt;}
.y20_c00264{bottom:284.080000pt;}
.y1f_c00264{bottom:311.680000pt;}
.y1e_c00264{bottom:339.280000pt;}
.y1d_c00264{bottom:366.880000pt;}
.y1c_c00264{bottom:394.480000pt;}
.y1b_c00264{bottom:422.080000pt;}
.y1a_c00264{bottom:449.680000pt;}
.y19_c00264{bottom:477.280000pt;}
.y18_c00264{bottom:504.880000pt;}
.y17_c00264{bottom:532.320000pt;}
.y16_c00264{bottom:559.920000pt;}
.y15_c00264{bottom:587.520000pt;}
.y14_c00264{bottom:615.280000pt;}
.y13_c00264{bottom:642.880000pt;}
.y12_c00264{bottom:670.480000pt;}
.y11_c00264{bottom:698.080000pt;}
.y10_c00264{bottom:725.680000pt;}
.yf_c00264{bottom:753.280000pt;}
.ye_c00264{bottom:780.880000pt;}
.yd_c00264{bottom:808.480000pt;}
.yc_c00264{bottom:835.040000pt;}
.yb_c00264{bottom:843.120000pt;}
.ya_c00264{bottom:876.080000pt;}
.y9_c00264{bottom:903.680000pt;}
.y8_c00264{bottom:931.360000pt;}
.y7_c00264{bottom:959.360000pt;}
.y6_c00264{bottom:986.960000pt;}
.y5_c00264{bottom:1005.360000pt;}
.y4_c00264{bottom:1023.040000pt;}
.y3_c00264{bottom:1036.804000pt;}
.y2_c00264{bottom:1050.640000pt;}
.y1_c00264{bottom:1064.400000pt;}
.hc_c00264{height:33.918750pt;}
.hb_c00264{height:44.468750pt;}
.h3_c00264{height:47.085938pt;}
.h2_c00264{height:47.109375pt;}
.hd_c00264{height:52.448437pt;}
.h4_c00264{height:62.812500pt;}
.ha_c00264{height:64.500000pt;}
.h6_c00264{height:66.750000pt;}
.h5_c00264{height:127.593750pt;}
.h7_c00264{height:128.031562pt;}
.h9_c00264{height:159.913750pt;}
.h8_c00264{height:160.351562pt;}
.h0_c00264{height:1122.560000pt;}
.h1_c00264{height:1122.666667pt;}
.w0_c00264{width:793.840000pt;}
.w1_c00264{width:794.000000pt;}
.x0_c00264{left:0.000000pt;}
.x3_c00264{left:113.440000pt;}
.x4_c00264{left:137.440000pt;}
.x7_c00264{left:161.440000pt;}
.x8_c00264{left:309.600000pt;}
.x2_c00264{left:377.920000pt;}
.x1_c00264{left:396.960000pt;}
.x5_c00264{left:405.120000pt;}
.x9_c00264{left:534.800000pt;}
.x6_c00264{left:630.320000pt;}
.xa_c00264{left:656.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_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_c7a0b9b25e2befc99b00a56c.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_6f64bba6c85aeada21df3c76.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00265;src:url('chunks/assets/font_63abfd174981e0b36371ebd6.woff2')format("woff");}.ff4_c00265{font-family:ff4_c00265;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00265;src:url('chunks/assets/font_dd9802da226c1aa9b51a3062.woff2')format("woff");}.ff5_c00265{font-family:ff5_c00265;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00265;src:url('chunks/assets/font_cc1aa5d56c61f078b3ab70f1.woff2')format("woff");}.ff6_c00265{font-family:ff6_c00265;line-height:0.862793;font-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_c00265{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);}
.m2_c00265{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);}
.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);}
.v2_c00265{vertical-align:-83.520000px;}
.v1_c00265{vertical-align:-61.938000px;}
.v5_c00265{vertical-align:-12.005125px;}
.v3_c00265{vertical-align:-3.979157px;}
.v0_c00265{vertical-align:0.000000px;}
.v4_c00265{vertical-align:3.979157px;}
.v6_c00265{vertical-align:31.674900px;}
.lse_c00265{letter-spacing:-2.375616px;}
.ls22_c00265{letter-spacing:-1.955921px;}
.lsf_c00265{letter-spacing:-1.603541px;}
.lsd_c00265{letter-spacing:-1.520395px;}
.ls16_c00265{letter-spacing:-1.365979px;}
.ls17_c00265{letter-spacing:-1.306589px;}
.ls21_c00265{letter-spacing:-0.752280px;}
.ls11_c00265{letter-spacing:-0.712685px;}
.ls10_c00265{letter-spacing:-0.443449px;}
.ls18_c00265{letter-spacing:-0.415733px;}
.ls14_c00265{letter-spacing:-0.237562px;}
.lsc_c00265{letter-spacing:-0.190049px;}
.ls12_c00265{letter-spacing:-0.178171px;}
.lsa_c00265{letter-spacing:-0.072000px;}
.ls8_c00265{letter-spacing:0.000000px;}
.lsb_c00265{letter-spacing:0.072000px;}
.ls9_c00265{letter-spacing:0.144000px;}
.ls2_c00265{letter-spacing:0.253399px;}
.ls3_c00265{letter-spacing:0.380099px;}
.ls6_c00265{letter-spacing:0.724124px;}
.ls1d_c00265{letter-spacing:0.740398px;}
.ls19_c00265{letter-spacing:0.926489px;}
.ls1c_c00265{letter-spacing:1.076947px;}
.ls1e_c00265{letter-spacing:1.203646px;}
.ls15_c00265{letter-spacing:1.247198px;}
.ls1a_c00265{letter-spacing:1.583745px;}
.ls1b_c00265{letter-spacing:1.647095px;}
.ls7_c00265{letter-spacing:1.698559px;}
.ls13_c00265{letter-spacing:1.781712px;}
.ls20_c00265{letter-spacing:1.837144px;}
.ls1f_c00265{letter-spacing:2.007392px;}
.ls5_c00265{letter-spacing:3.040790px;}
.ls4_c00265{letter-spacing:215.349590px;}
.ls0_c00265{letter-spacing:1144.260000px;}
.ls1_c00265{letter-spacing:2082.240000px;}
.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;}
}
.ws23_c00265{word-spacing:-16.154199px;}
.ws21_c00265{word-spacing:-15.964150px;}
.ws20_c00265{word-spacing:-14.697154px;}
.ws24_c00265{word-spacing:-14.570454px;}
.ws22_c00265{word-spacing:-14.317055px;}
.ws0_c00265{word-spacing:-12.796660px;}
.ws3a_c00265{word-spacing:-3.614882px;}
.ws3f_c00265{word-spacing:-2.985353px;}
.ws39_c00265{word-spacing:-2.656721px;}
.ws31_c00265{word-spacing:-1.904449px;}
.ws3e_c00265{word-spacing:-1.698559px;}
.ws37_c00265{word-spacing:-1.647095px;}
.ws34_c00265{word-spacing:-1.520395px;}
.ws30_c00265{word-spacing:-1.306589px;}
.ws3b_c00265{word-spacing:-1.203646px;}
.ws38_c00265{word-spacing:-1.076947px;}
.ws3c_c00265{word-spacing:-0.380099px;}
.ws40_c00265{word-spacing:-0.376140px;}
.ws2d_c00265{word-spacing:-0.253399px;}
.ws26_c00265{word-spacing:-0.162000px;}
.ws27_c00265{word-spacing:-0.144000px;}
.ws36_c00265{word-spacing:-0.126700px;}
.ws29_c00265{word-spacing:-0.072000px;}
.ws32_c00265{word-spacing:-0.063350px;}
.ws25_c00265{word-spacing:0.000000px;}
.ws2f_c00265{word-spacing:0.059390px;}
.ws28_c00265{word-spacing:0.072000px;}
.ws2b_c00265{word-spacing:0.190049px;}
.ws33_c00265{word-spacing:0.443449px;}
.ws41_c00265{word-spacing:0.977960px;}
.ws2c_c00265{word-spacing:1.140296px;}
.ws2a_c00265{word-spacing:1.266996px;}
.ws3d_c00265{word-spacing:1.520395px;}
.ws35_c00265{word-spacing:1.963844px;}
.ws2e_c00265{word-spacing:2.375616px;}
.ws1_c00265{word-spacing:20.549078px;}
.ws8_c00265{word-spacing:36.406315px;}
.ws5_c00265{word-spacing:60.073390px;}
.ws6_c00265{word-spacing:62.235200px;}
.ws10_c00265{word-spacing:78.098376px;}
.ws11_c00265{word-spacing:146.777435px;}
.wsb_c00265{word-spacing:151.142629px;}
.ws3_c00265{word-spacing:159.071247px;}
.ws13_c00265{word-spacing:163.044465px;}
.ws1f_c00265{word-spacing:180.136131px;}
.ws1c_c00265{word-spacing:184.095381px;}
.ws4_c00265{word-spacing:184.095981px;}
.wse_c00265{word-spacing:190.821355px;}
.ws1a_c00265{word-spacing:192.014444px;}
.wsc_c00265{word-spacing:192.015044px;}
.ws7_c00265{word-spacing:206.678592px;}
.ws1b_c00265{word-spacing:246.333562px;}
.ws1d_c00265{word-spacing:259.850817px;}
.ws17_c00265{word-spacing:262.648105px;}
.ws1e_c00265{word-spacing:271.728897px;}
.ws15_c00265{word-spacing:279.645637px;}
.ws19_c00265{word-spacing:328.387339px;}
.ws18_c00265{word-spacing:329.533573px;}
.ws12_c00265{word-spacing:345.450201px;}
.ws14_c00265{word-spacing:353.212526px;}
.ws9_c00265{word-spacing:354.875457px;}
.ws2_c00265{word-spacing:373.589372px;}
.wsf_c00265{word-spacing:382.313822px;}
.wsa_c00265{word-spacing:386.631504px;}
.wsd_c00265{word-spacing:389.381280px;}
.ws16_c00265{word-spacing:401.479104px;}
._13_c00265{margin-left:-6.039457px;}
._12_c00265{margin-left:-4.658180px;}
._b_c00265{margin-left:-2.990698px;}
._0_c00265{margin-left:-1.296000px;}
._1_c00265{width:1.087200px;}
._2_c00265{width:2.109294px;}
._3_c00265{width:3.653782px;}
._14_c00265{width:5.017159px;}
._7_c00265{width:82.575140px;}
._6_c00265{width:86.554297px;}
._10_c00265{width:87.949037px;}
._c_c00265{width:98.015335px;}
._a_c00265{width:124.331456px;}
._e_c00265{width:130.714061px;}
._8_c00265{width:146.279930px;}
._9_c00265{width:158.477699px;}
._5_c00265{width:165.871801px;}
._f_c00265{width:177.724304px;}
._4_c00265{width:179.013411px;}
._11_c00265{width:181.869100px;}
._d_c00265{width:189.507951px;}
.fc1_c00265{color:transparent;}
.fc0_c00265{color:rgb(0,0,0);}
.fs5_c00265{font-size:43.552800px;}
.fs4_c00265{font-size:51.471600px;}
.fs0_c00265{font-size:54.000000px;}
.fs3_c00265{font-size:59.390400px;}
.fs2_c00265{font-size:63.349800px;}
.fs1_c00265{font-size:72.000000px;}
.fs6_c00265{font-size:75.228000px;}
.y0_c00265{bottom:0.000000px;}
.y29_c00265{bottom:3.958650px;}
.y2d_c00265{bottom:3.958950px;}
.y1d_c00265{bottom:3.959100px;}
.y1f_c00265{bottom:3.959250px;}
.y21_c00265{bottom:3.959400px;}
.y23_c00265{bottom:3.959550px;}
.y25_c00265{bottom:3.959700px;}
.y27_c00265{bottom:3.960000px;}
.y2b_c00265{bottom:3.960300px;}
.y56_c00265{bottom:4.948200px;}
.y11_c00265{bottom:4.948500px;}
.y1b_c00265{bottom:4.948650px;}
.y13_c00265{bottom:4.948800px;}
.y15_c00265{bottom:4.949250px;}
.y17_c00265{bottom:4.949550px;}
.y19_c00265{bottom:4.949850px;}
.y31_c00265{bottom:4.950000px;}
.y3d_c00265{bottom:4.973391px;}
.y48_c00265{bottom:4.989378px;}
.y54_c00265{bottom:5.939400px;}
.y34_c00265{bottom:5.946466px;}
.y52_c00265{bottom:6.930150px;}
.yf_c00265{bottom:6.961112px;}
.y4e_c00265{bottom:13.858350px;}
.y4d_c00265{bottom:13.858500px;}
.y42_c00265{bottom:15.869631px;}
.y3c_c00265{bottom:25.752125px;}
.y47_c00265{bottom:25.768112px;}
.y33_c00265{bottom:26.725200px;}
.ya_c00265{bottom:27.731881px;}
.ye_c00265{bottom:27.739847px;}
.y4b_c00265{bottom:36.624694px;}
.y37_c00265{bottom:36.640531px;}
.y4c_c00265{bottom:36.648366px;}
.y41_c00265{bottom:38.628047px;}
.y49_c00265{bottom:45.533175px;}
.y3b_c00265{bottom:46.530859px;}
.y46_c00265{bottom:46.546847px;}
.y9_c00265{bottom:48.510616px;}
.yd_c00265{bottom:48.518581px;}
.y57_c00265{bottom:57.330000px;}
.y4a_c00265{bottom:57.411150px;}
.y36_c00265{bottom:57.419266px;}
.y40_c00265{bottom:59.406781px;}
.y3a_c00265{bottom:67.309594px;}
.y45_c00265{bottom:67.325581px;}
.y8_c00265{bottom:69.289350px;}
.yc_c00265{bottom:69.297316px;}
.y50_c00265{bottom:70.279200px;}
.y35_c00265{bottom:78.198000px;}
.y3f_c00265{bottom:80.185516px;}
.y39_c00265{bottom:88.104166px;}
.y44_c00265{bottom:88.104316px;}
.yb_c00265{bottom:90.076050px;}
.y3e_c00265{bottom:100.964250px;}
.y38_c00265{bottom:108.882900px;}
.y43_c00265{bottom:108.883050px;}
.y6_c00265{bottom:138.600000px;}
.y30_c00265{bottom:140.581500px;}
.y4f_c00265{bottom:160.378500px;}
.y55_c00265{bottom:180.177000px;}
.y53_c00265{bottom:199.972500px;}
.y2f_c00265{bottom:220.759500px;}
.y2e_c00265{bottom:240.556500px;}
.y2c_c00265{bottom:260.353500px;}
.y2a_c00265{bottom:280.149000px;}
.y28_c00265{bottom:299.947500px;}
.y26_c00265{bottom:319.743000px;}
.y24_c00265{bottom:339.540000px;}
.y22_c00265{bottom:359.337000px;}
.y20_c00265{bottom:379.134000px;}
.y1e_c00265{bottom:398.931000px;}
.y1c_c00265{bottom:418.728000px;}
.y1a_c00265{bottom:438.525000px;}
.y18_c00265{bottom:459.310500px;}
.y16_c00265{bottom:480.097500px;}
.y14_c00265{bottom:500.884500px;}
.y12_c00265{bottom:521.671500px;}
.y10_c00265{bottom:542.458500px;}
.y7_c00265{bottom:563.244000px;}
.y32_c00265{bottom:672.127500px;}
.y51_c00265{bottom:688.953000px;}
.y5_c00265{bottom:719.640000px;}
.y4_c00265{bottom:761.220000px;}
.y3_c00265{bottom:781.105500px;}
.y2_c00265{bottom:796.590000px;}
.y1_c00265{bottom:827.640000px;}
.h9_c00265{height:18.807000px;}
.ha_c00265{height:18.808500px;}
.h7_c00265{height:19.797000px;}
.h12_c00265{height:25.737000px;}
.hd_c00265{height:42.562500px;}
.hf_c00265{height:43.367392px;}
.h8_c00265{height:48.979680px;}
.hc_c00265{height:50.516561px;}
.h14_c00265{height:51.873722px;}
.h6_c00265{height:52.245025px;}
.hb_c00265{height:52.958837px;}
.h2_c00265{height:52.998047px;}
.h13_c00265{height:62.041061px;}
.h10_c00265{height:67.593200px;}
.h3_c00265{height:70.664062px;}
.h4_c00265{height:72.562500px;}
.h5_c00265{height:107.893500px;}
.he_c00265{height:124.720500px;}
.h11_c00265{height:151.446000px;}
.h0_c00265{height:893.070000px;}
.h1_c00265{height:893.250000px;}
.wf_c00265{width:30.681000px;}
.w2_c00265{width:63.343500px;}
.wd_c00265{width:69.280500px;}
.wc_c00265{width:71.259000px;}
.w3_c00265{width:71.260500px;}
.wb_c00265{width:73.240500px;}
.we_c00265{width:75.219000px;}
.w7_c00265{width:84.126000px;}
.w8_c00265{width:91.054500px;}
.w9_c00265{width:98.973000px;}
.wa_c00265{width:99.963000px;}
.w10_c00265{width:133.614000px;}
.w6_c00265{width:135.594000px;}
.w11_c00265{width:744.276000px;}
.w5_c00265{width:1015.464000px;}
.w4_c00265{width:1048.125000px;}
.w0_c00265{width:1262.880000px;}
.w1_c00265{width:1263.000000px;}
.x0_c00265{left:0.000000px;}
.x7_c00265{left:2.977927px;}
.xd_c00265{left:4.948350px;}
.xb_c00265{left:6.919860px;}
.x1b_c00265{left:9.897581px;}
.x1e_c00265{left:11.869260px;}
.x8_c00265{left:14.854665px;}
.xc_c00265{left:18.796598px;}
.xa_c00265{left:21.773700px;}
.x6_c00265{left:23.754300px;}
.x18_c00265{left:28.702388px;}
.x17_c00265{left:32.661300px;}
.xf_c00265{left:38.600194px;}
.x12_c00265{left:41.569050px;}
.x14_c00265{left:45.526950px;}
.x2_c00265{left:106.380000px;}
.xe_c00265{left:139.041000px;}
.x3_c00265{left:213.030000px;}
.x1f_c00265{left:225.658050px;}
.x10_c00265{left:273.645000px;}
.x11_c00265{left:358.761000px;}
.x13_c00265{left:450.807000px;}
.x15_c00265{left:550.768500px;}
.x1_c00265{left:631.440000px;}
.x16_c00265{left:651.721500px;}
.x19_c00265{left:725.952000px;}
.x1a_c00265{left:800.181000px;}
.x1c_c00265{left:872.431500px;}
.x1d_c00265{left:942.702000px;}
.x5_c00265{left:1018.911000px;}
.x9_c00265{left:1083.244500px;}
.x4_c00265{left:1156.590000px;}
@media print{
.v2_c00265{vertical-align:-74.240000pt;}
.v1_c00265{vertical-align:-55.056000pt;}
.v5_c00265{vertical-align:-10.671222pt;}
.v3_c00265{vertical-align:-3.537028pt;}
.v0_c00265{vertical-align:0.000000pt;}
.v4_c00265{vertical-align:3.537028pt;}
.v6_c00265{vertical-align:28.155467pt;}
.lse_c00265{letter-spacing:-2.111659pt;}
.ls22_c00265{letter-spacing:-1.738596pt;}
.lsf_c00265{letter-spacing:-1.425370pt;}
.lsd_c00265{letter-spacing:-1.351462pt;}
.ls16_c00265{letter-spacing:-1.214204pt;}
.ls17_c00265{letter-spacing:-1.161412pt;}
.ls21_c00265{letter-spacing:-0.668693pt;}
.ls11_c00265{letter-spacing:-0.633498pt;}
.ls10_c00265{letter-spacing:-0.394177pt;}
.ls18_c00265{letter-spacing:-0.369540pt;}
.ls14_c00265{letter-spacing:-0.211166pt;}
.lsc_c00265{letter-spacing:-0.168933pt;}
.ls12_c00265{letter-spacing:-0.158374pt;}
.lsa_c00265{letter-spacing:-0.064000pt;}
.ls8_c00265{letter-spacing:0.000000pt;}
.lsb_c00265{letter-spacing:0.064000pt;}
.ls9_c00265{letter-spacing:0.128000pt;}
.ls2_c00265{letter-spacing:0.225244pt;}
.ls3_c00265{letter-spacing:0.337866pt;}
.ls6_c00265{letter-spacing:0.643666pt;}
.ls1d_c00265{letter-spacing:0.658131pt;}
.ls19_c00265{letter-spacing:0.823546pt;}
.ls1c_c00265{letter-spacing:0.957286pt;}
.ls1e_c00265{letter-spacing:1.069908pt;}
.ls15_c00265{letter-spacing:1.108621pt;}
.ls1a_c00265{letter-spacing:1.407773pt;}
.ls1b_c00265{letter-spacing:1.464084pt;}
.ls7_c00265{letter-spacing:1.509830pt;}
.ls13_c00265{letter-spacing:1.583744pt;}
.ls20_c00265{letter-spacing:1.633017pt;}
.ls1f_c00265{letter-spacing:1.784349pt;}
.ls5_c00265{letter-spacing:2.702925pt;}
.ls4_c00265{letter-spacing:191.421858pt;}
.ls0_c00265{letter-spacing:1017.120000pt;}
.ls1_c00265{letter-spacing:1850.880000pt;}
.ws23_c00265{word-spacing:-14.359288pt;}
.ws21_c00265{word-spacing:-14.190355pt;}
.ws20_c00265{word-spacing:-13.064137pt;}
.ws24_c00265{word-spacing:-12.951515pt;}
.ws22_c00265{word-spacing:-12.726271pt;}
.ws0_c00265{word-spacing:-11.374809pt;}
.ws3a_c00265{word-spacing:-3.213229pt;}
.ws3f_c00265{word-spacing:-2.653647pt;}
.ws39_c00265{word-spacing:-2.361530pt;}
.ws31_c00265{word-spacing:-1.692844pt;}
.ws3e_c00265{word-spacing:-1.509830pt;}
.ws37_c00265{word-spacing:-1.464084pt;}
.ws34_c00265{word-spacing:-1.351462pt;}
.ws30_c00265{word-spacing:-1.161412pt;}
.ws3b_c00265{word-spacing:-1.069908pt;}
.ws38_c00265{word-spacing:-0.957286pt;}
.ws3c_c00265{word-spacing:-0.337866pt;}
.ws40_c00265{word-spacing:-0.334347pt;}
.ws2d_c00265{word-spacing:-0.225244pt;}
.ws26_c00265{word-spacing:-0.144000pt;}
.ws27_c00265{word-spacing:-0.128000pt;}
.ws36_c00265{word-spacing:-0.112622pt;}
.ws29_c00265{word-spacing:-0.064000pt;}
.ws32_c00265{word-spacing:-0.056311pt;}
.ws25_c00265{word-spacing:0.000000pt;}
.ws2f_c00265{word-spacing:0.052791pt;}
.ws28_c00265{word-spacing:0.064000pt;}
.ws2b_c00265{word-spacing:0.168933pt;}
.ws33_c00265{word-spacing:0.394177pt;}
.ws41_c00265{word-spacing:0.869298pt;}
.ws2c_c00265{word-spacing:1.013597pt;}
.ws2a_c00265{word-spacing:1.126219pt;}
.ws3d_c00265{word-spacing:1.351462pt;}
.ws35_c00265{word-spacing:1.745639pt;}
.ws2e_c00265{word-spacing:2.111659pt;}
.ws1_c00265{word-spacing:18.265847pt;}
.ws8_c00265{word-spacing:32.361169pt;}
.ws5_c00265{word-spacing:53.398569pt;}
.ws6_c00265{word-spacing:55.320178pt;}
.ws10_c00265{word-spacing:69.420779pt;}
.ws11_c00265{word-spacing:130.468831pt;}
.wsb_c00265{word-spacing:134.349004pt;}
.ws3_c00265{word-spacing:141.396664pt;}
.ws13_c00265{word-spacing:144.928413pt;}
.ws1f_c00265{word-spacing:160.121006pt;}
.ws1c_c00265{word-spacing:163.640339pt;}
.ws4_c00265{word-spacing:163.640872pt;}
.wse_c00265{word-spacing:169.618982pt;}
.ws1a_c00265{word-spacing:170.679506pt;}
.wsc_c00265{word-spacing:170.680039pt;}
.ws7_c00265{word-spacing:183.714304pt;}
.ws1b_c00265{word-spacing:218.963166pt;}
.ws1d_c00265{word-spacing:230.978504pt;}
.ws17_c00265{word-spacing:233.464982pt;}
.ws1e_c00265{word-spacing:241.536797pt;}
.ws15_c00265{word-spacing:248.573900pt;}
.ws19_c00265{word-spacing:291.899857pt;}
.ws18_c00265{word-spacing:292.918732pt;}
.ws12_c00265{word-spacing:307.066845pt;}
.ws14_c00265{word-spacing:313.966690pt;}
.ws9_c00265{word-spacing:315.444851pt;}
.ws2_c00265{word-spacing:332.079442pt;}
.wsf_c00265{word-spacing:339.834508pt;}
.wsa_c00265{word-spacing:343.672448pt;}
.wsd_c00265{word-spacing:346.116693pt;}
.ws16_c00265{word-spacing:356.870315pt;}
._13_c00265{margin-left:-5.368406pt;}
._12_c00265{margin-left:-4.140604pt;}
._b_c00265{margin-left:-2.658398pt;}
._0_c00265{margin-left:-1.152000pt;}
._1_c00265{width:0.966400pt;}
._2_c00265{width:1.874928pt;}
._3_c00265{width:3.247806pt;}
._14_c00265{width:4.459697pt;}
._7_c00265{width:73.400125pt;}
._6_c00265{width:76.937153pt;}
._10_c00265{width:78.176921pt;}
._c_c00265{width:87.124742pt;}
._a_c00265{width:110.516850pt;}
._e_c00265{width:116.190277pt;}
._8_c00265{width:130.026604pt;}
._9_c00265{width:140.869065pt;}
._5_c00265{width:147.441601pt;}
._f_c00265{width:157.977160pt;}
._4_c00265{width:159.123032pt;}
._11_c00265{width:161.661423pt;}
._d_c00265{width:168.451512pt;}
.fs5_c00265{font-size:38.713600pt;}
.fs4_c00265{font-size:45.752533pt;}
.fs0_c00265{font-size:48.000000pt;}
.fs3_c00265{font-size:52.791467pt;}
.fs2_c00265{font-size:56.310933pt;}
.fs1_c00265{font-size:64.000000pt;}
.fs6_c00265{font-size:66.869333pt;}
.y0_c00265{bottom:0.000000pt;}
.y29_c00265{bottom:3.518800pt;}
.y2d_c00265{bottom:3.519067pt;}
.y1d_c00265{bottom:3.519200pt;}
.y1f_c00265{bottom:3.519333pt;}
.y21_c00265{bottom:3.519467pt;}
.y23_c00265{bottom:3.519600pt;}
.y25_c00265{bottom:3.519733pt;}
.y27_c00265{bottom:3.520000pt;}
.y2b_c00265{bottom:3.520267pt;}
.y56_c00265{bottom:4.398400pt;}
.y11_c00265{bottom:4.398667pt;}
.y1b_c00265{bottom:4.398800pt;}
.y13_c00265{bottom:4.398933pt;}
.y15_c00265{bottom:4.399333pt;}
.y17_c00265{bottom:4.399600pt;}
.y19_c00265{bottom:4.399867pt;}
.y31_c00265{bottom:4.400000pt;}
.y3d_c00265{bottom:4.420792pt;}
.y48_c00265{bottom:4.435003pt;}
.y54_c00265{bottom:5.279467pt;}
.y34_c00265{bottom:5.285747pt;}
.y52_c00265{bottom:6.160133pt;}
.yf_c00265{bottom:6.187655pt;}
.y4e_c00265{bottom:12.318533pt;}
.y4d_c00265{bottom:12.318667pt;}
.y42_c00265{bottom:14.106339pt;}
.y3c_c00265{bottom:22.890778pt;}
.y47_c00265{bottom:22.904989pt;}
.y33_c00265{bottom:23.755733pt;}
.ya_c00265{bottom:24.650561pt;}
.ye_c00265{bottom:24.657642pt;}
.y4b_c00265{bottom:32.555283pt;}
.y37_c00265{bottom:32.569361pt;}
.y4c_c00265{bottom:32.576325pt;}
.y41_c00265{bottom:34.336042pt;}
.y49_c00265{bottom:40.473933pt;}
.y3b_c00265{bottom:41.360764pt;}
.y46_c00265{bottom:41.374975pt;}
.y9_c00265{bottom:43.120547pt;}
.yd_c00265{bottom:43.127628pt;}
.y57_c00265{bottom:50.960000pt;}
.y4a_c00265{bottom:51.032133pt;}
.y36_c00265{bottom:51.039347pt;}
.y40_c00265{bottom:52.806028pt;}
.y3a_c00265{bottom:59.830750pt;}
.y45_c00265{bottom:59.844961pt;}
.y8_c00265{bottom:61.590533pt;}
.yc_c00265{bottom:61.597614pt;}
.y50_c00265{bottom:62.470400pt;}
.y35_c00265{bottom:69.509333pt;}
.y3f_c00265{bottom:71.276014pt;}
.y39_c00265{bottom:78.314814pt;}
.y44_c00265{bottom:78.314947pt;}
.yb_c00265{bottom:80.067600pt;}
.y3e_c00265{bottom:89.746000pt;}
.y38_c00265{bottom:96.784800pt;}
.y43_c00265{bottom:96.784933pt;}
.y6_c00265{bottom:123.200000pt;}
.y30_c00265{bottom:124.961333pt;}
.y4f_c00265{bottom:142.558667pt;}
.y55_c00265{bottom:160.157333pt;}
.y53_c00265{bottom:177.753333pt;}
.y2f_c00265{bottom:196.230667pt;}
.y2e_c00265{bottom:213.828000pt;}
.y2c_c00265{bottom:231.425333pt;}
.y2a_c00265{bottom:249.021333pt;}
.y28_c00265{bottom:266.620000pt;}
.y26_c00265{bottom:284.216000pt;}
.y24_c00265{bottom:301.813333pt;}
.y22_c00265{bottom:319.410667pt;}
.y20_c00265{bottom:337.008000pt;}
.y1e_c00265{bottom:354.605333pt;}
.y1c_c00265{bottom:372.202667pt;}
.y1a_c00265{bottom:389.800000pt;}
.y18_c00265{bottom:408.276000pt;}
.y16_c00265{bottom:426.753333pt;}
.y14_c00265{bottom:445.230667pt;}
.y12_c00265{bottom:463.708000pt;}
.y10_c00265{bottom:482.185333pt;}
.y7_c00265{bottom:500.661333pt;}
.y32_c00265{bottom:597.446667pt;}
.y51_c00265{bottom:612.402667pt;}
.y5_c00265{bottom:639.680000pt;}
.y4_c00265{bottom:676.640000pt;}
.y3_c00265{bottom:694.316000pt;}
.y2_c00265{bottom:708.080000pt;}
.y1_c00265{bottom:735.680000pt;}
.h9_c00265{height:16.717333pt;}
.ha_c00265{height:16.718667pt;}
.h7_c00265{height:17.597333pt;}
.h12_c00265{height:22.877333pt;}
.hd_c00265{height:37.833333pt;}
.hf_c00265{height:38.548793pt;}
.h8_c00265{height:43.537494pt;}
.hc_c00265{height:44.903609pt;}
.h14_c00265{height:46.109975pt;}
.h6_c00265{height:46.440023pt;}
.hb_c00265{height:47.074522pt;}
.h2_c00265{height:47.109375pt;}
.h13_c00265{height:55.147609pt;}
.h10_c00265{height:60.082845pt;}
.h3_c00265{height:62.812500pt;}
.h4_c00265{height:64.500000pt;}
.h5_c00265{height:95.905333pt;}
.he_c00265{height:110.862667pt;}
.h11_c00265{height:134.618667pt;}
.h0_c00265{height:793.840000pt;}
.h1_c00265{height:794.000000pt;}
.wf_c00265{width:27.272000pt;}
.w2_c00265{width:56.305333pt;}
.wd_c00265{width:61.582667pt;}
.wc_c00265{width:63.341333pt;}
.w3_c00265{width:63.342667pt;}
.wb_c00265{width:65.102667pt;}
.we_c00265{width:66.861333pt;}
.w7_c00265{width:74.778667pt;}
.w8_c00265{width:80.937333pt;}
.w9_c00265{width:87.976000pt;}
.wa_c00265{width:88.856000pt;}
.w10_c00265{width:118.768000pt;}
.w6_c00265{width:120.528000pt;}
.w11_c00265{width:661.578667pt;}
.w5_c00265{width:902.634667pt;}
.w4_c00265{width:931.666667pt;}
.w0_c00265{width:1122.560000pt;}
.w1_c00265{width:1122.666667pt;}
.x0_c00265{left:0.000000pt;}
.x7_c00265{left:2.647046pt;}
.xd_c00265{left:4.398533pt;}
.xb_c00265{left:6.150987pt;}
.x1b_c00265{left:8.797850pt;}
.x1e_c00265{left:10.550454pt;}
.x8_c00265{left:13.204146pt;}
.xc_c00265{left:16.708087pt;}
.xa_c00265{left:19.354400pt;}
.x6_c00265{left:21.114933pt;}
.x18_c00265{left:25.513233pt;}
.x17_c00265{left:29.032267pt;}
.xf_c00265{left:34.311283pt;}
.x12_c00265{left:36.950267pt;}
.x14_c00265{left:40.468400pt;}
.x2_c00265{left:94.560000pt;}
.xe_c00265{left:123.592000pt;}
.x3_c00265{left:189.360000pt;}
.x1f_c00265{left:200.584933pt;}
.x10_c00265{left:243.240000pt;}
.x11_c00265{left:318.898667pt;}
.x13_c00265{left:400.717333pt;}
.x15_c00265{left:489.572000pt;}
.x1_c00265{left:561.280000pt;}
.x16_c00265{left:579.308000pt;}
.x19_c00265{left:645.290667pt;}
.x1a_c00265{left:711.272000pt;}
.x1c_c00265{left:775.494667pt;}
.x1d_c00265{left:837.957333pt;}
.x5_c00265{left:905.698667pt;}
.x9_c00265{left:962.884000pt;}
.x4_c00265{left:1028.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_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_f04b87d69d314f4a642898ab.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.284180;font-style:normal;font-weight:normal;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_eeca4f6c683c6ad333dad719.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_5d4a8f7e1a31873f356cc0d3.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;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_c00266;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00266;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5_c00266{vertical-align:-27.000000px;}
.v8_c00266{vertical-align:-20.880000px;}
.v6_c00266{vertical-align:-14.760000px;}
.v2_c00266{vertical-align:-10.440000px;}
.v0_c00266{vertical-align:0.000000px;}
.v7_c00266{vertical-align:14.760000px;}
.v4_c00266{vertical-align:27.000000px;}
.v3_c00266{vertical-align:36.360000px;}
.v1_c00266{vertical-align:42.120000px;}
.ls1b_c00266{letter-spacing:-0.432000px;}
.ls19_c00266{letter-spacing:-0.360000px;}
.ls1c_c00266{letter-spacing:-0.288000px;}
.ls1a_c00266{letter-spacing:-0.216000px;}
.ls15_c00266{letter-spacing:-0.108000px;}
.ls18_c00266{letter-spacing:-0.102240px;}
.ls16_c00266{letter-spacing:-0.072000px;}
.ls1d_c00266{letter-spacing:-0.060120px;}
.ls14_c00266{letter-spacing:0.000000px;}
.lsd_c00266{letter-spacing:0.072000px;}
.ls12_c00266{letter-spacing:0.079200px;}
.ls17_c00266{letter-spacing:0.102240px;}
.ls4_c00266{letter-spacing:0.144000px;}
.ls1e_c00266{letter-spacing:0.180360px;}
.ls9_c00266{letter-spacing:0.191520px;}
.ls0_c00266{letter-spacing:0.720000px;}
.ls1_c00266{letter-spacing:1.922040px;}
.lsa_c00266{letter-spacing:2.880000px;}
.ls13_c00266{letter-spacing:3.667320px;}
.lse_c00266{letter-spacing:3.960000px;}
.ls3_c00266{letter-spacing:6.480000px;}
.lsf_c00266{letter-spacing:7.560000px;}
.ls2_c00266{letter-spacing:8.640000px;}
.ls8_c00266{letter-spacing:8.661600px;}
.ls5_c00266{letter-spacing:10.440000px;}
.ls6_c00266{letter-spacing:10.800000px;}
.ls7_c00266{letter-spacing:12.240000px;}
.lsc_c00266{letter-spacing:18.000000px;}
.ls11_c00266{letter-spacing:20.016000px;}
.lsb_c00266{letter-spacing:22.961520px;}
.ls10_c00266{letter-spacing:30.600000px;}
.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;}
}
.ws3_c00266{word-spacing:-72.000000px;}
.ws2_c00266{word-spacing:-51.222240px;}
.ws1_c00266{word-spacing:-51.120000px;}
.ws4_c00266{word-spacing:-51.017760px;}
.ws6_c00266{word-spacing:-18.072000px;}
.ws0_c00266{word-spacing:-18.000000px;}
.ws8_c00266{word-spacing:-17.928000px;}
.ws7_c00266{word-spacing:-17.784000px;}
.wsb_c00266{word-spacing:-17.568000px;}
.wsd_c00266{word-spacing:-15.030000px;}
.ws9_c00266{word-spacing:-12.161520px;}
.ws5_c00266{word-spacing:-11.970000px;}
.wsc_c00266{word-spacing:-9.720000px;}
.ws3f_c00266{word-spacing:-0.420840px;}
.ws1b_c00266{word-spacing:-0.072000px;}
.ws3d_c00266{word-spacing:-0.060120px;}
.wse_c00266{word-spacing:0.000000px;}
.ws11_c00266{word-spacing:0.072000px;}
.ws10_c00266{word-spacing:0.162000px;}
.ws3e_c00266{word-spacing:0.180360px;}
.ws25_c00266{word-spacing:0.216000px;}
.wsf_c00266{word-spacing:0.270000px;}
.ws1d_c00266{word-spacing:0.360000px;}
.ws17_c00266{word-spacing:0.648000px;}
.ws18_c00266{word-spacing:0.720000px;}
.ws3b_c00266{word-spacing:1.008000px;}
.ws2b_c00266{word-spacing:1.080000px;}
.ws36_c00266{word-spacing:1.800000px;}
.ws23_c00266{word-spacing:2.880000px;}
.ws2a_c00266{word-spacing:3.528000px;}
.ws3c_c00266{word-spacing:3.727440px;}
.ws29_c00266{word-spacing:3.888000px;}
.ws28_c00266{word-spacing:3.960000px;}
.wsa_c00266{word-spacing:4.176000px;}
.ws2e_c00266{word-spacing:6.840000px;}
.ws30_c00266{word-spacing:7.488000px;}
.ws2f_c00266{word-spacing:7.560000px;}
.ws2d_c00266{word-spacing:7.920000px;}
.ws2c_c00266{word-spacing:8.208000px;}
.ws14_c00266{word-spacing:8.568000px;}
.ws13_c00266{word-spacing:8.640000px;}
.ws24_c00266{word-spacing:9.648000px;}
.ws1e_c00266{word-spacing:10.080000px;}
.ws1f_c00266{word-spacing:10.368000px;}
.ws20_c00266{word-spacing:10.440000px;}
.ws22_c00266{word-spacing:12.168000px;}
.ws21_c00266{word-spacing:12.240000px;}
.ws19_c00266{word-spacing:12.528000px;}
.ws35_c00266{word-spacing:12.816000px;}
.ws34_c00266{word-spacing:12.888000px;}
.ws16_c00266{word-spacing:13.680000px;}
.ws15_c00266{word-spacing:14.040000px;}
.ws1a_c00266{word-spacing:14.688000px;}
.ws1c_c00266{word-spacing:14.760000px;}
.ws27_c00266{word-spacing:17.568000px;}
.ws26_c00266{word-spacing:18.000000px;}
.ws3a_c00266{word-spacing:25.128000px;}
.ws39_c00266{word-spacing:25.200000px;}
.ws12_c00266{word-spacing:27.000000px;}
.ws32_c00266{word-spacing:30.240000px;}
.ws37_c00266{word-spacing:30.456000px;}
.ws33_c00266{word-spacing:30.528000px;}
.ws31_c00266{word-spacing:30.600000px;}
.ws38_c00266{word-spacing:30.816000px;}
._9_c00266{margin-left:-6.667200px;}
._7_c00266{margin-left:-4.176000px;}
._1_c00266{margin-left:-1.058400px;}
._0_c00266{width:1.220400px;}
._5_c00266{width:2.592000px;}
._6_c00266{width:3.770640px;}
._a_c00266{width:4.797360px;}
._3_c00266{width:8.496000px;}
._4_c00266{width:14.428800px;}
._b_c00266{width:25.200000px;}
._2_c00266{width:27.216000px;}
._8_c00266{width:30.600000px;}
.fc0_c00266{color:rgb(0,0,0);}
.fs5_c00266{font-size:38.880000px;}
.fs3_c00266{font-size:42.120000px;}
.fs4_c00266{font-size:47.880000px;}
.fs2_c00266{font-size:51.120000px;}
.fs0_c00266{font-size:54.000000px;}
.fs6_c00266{font-size:60.120000px;}
.fs1_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y28_c00266{bottom:57.240000px;}
.y27_c00266{bottom:109.795680px;}
.y26_c00266{bottom:132.210000px;}
.y29_c00266{bottom:144.900000px;}
.y25_c00266{bottom:178.920000px;}
.y24_c00266{bottom:209.970000px;}
.y23_c00266{bottom:241.650000px;}
.y22_c00266{bottom:274.050000px;}
.y21_c00266{bottom:305.100000px;}
.y20_c00266{bottom:336.150000px;}
.y1f_c00266{bottom:367.380000px;}
.y1e_c00266{bottom:398.880000px;}
.y1d_c00266{bottom:429.930000px;}
.y1c_c00266{bottom:460.980000px;}
.y1b_c00266{bottom:492.030000px;}
.y1a_c00266{bottom:523.080000px;}
.y19_c00266{bottom:554.130000px;}
.y18_c00266{bottom:585.180000px;}
.y17_c00266{bottom:616.230000px;}
.y16_c00266{bottom:647.280000px;}
.y15_c00266{bottom:678.240000px;}
.y14_c00266{bottom:709.470000px;}
.y13_c00266{bottom:740.970000px;}
.y12_c00266{bottom:772.020000px;}
.y11_c00266{bottom:803.070000px;}
.y10_c00266{bottom:834.120000px;}
.yf_c00266{bottom:865.170000px;}
.ye_c00266{bottom:896.220000px;}
.yd_c00266{bottom:927.270000px;}
.yc_c00266{bottom:958.320000px;}
.yb_c00266{bottom:988.110000px;}
.ya_c00266{bottom:997.200000px;}
.y9_c00266{bottom:1034.280000px;}
.y8_c00266{bottom:1064.160000px;}
.y7_c00266{bottom:1073.250000px;}
.y6_c00266{bottom:1110.330000px;}
.y5_c00266{bottom:1131.030000px;}
.y4_c00266{bottom:1150.920000px;}
.y3_c00266{bottom:1166.404500px;}
.y2_c00266{bottom:1181.970000px;}
.y1_c00266{bottom:1197.450000px;}
.hb_c00266{height:38.158594px;}
.ha_c00266{height:50.027344px;}
.h3_c00266{height:52.971680px;}
.h2_c00266{height:52.998047px;}
.hc_c00266{height:59.004492px;}
.h4_c00266{height:70.664062px;}
.h8_c00266{height:73.991602px;}
.h9_c00266{height:143.542969px;}
.h5_c00266{height:144.035508px;}
.h7_c00266{height:179.902969px;}
.h6_c00266{height:180.395508px;}
.h0_c00266{height:1262.880000px;}
.h1_c00266{height:1263.000000px;}
.w0_c00266{width:893.070000px;}
.w1_c00266{width:893.250000px;}
.x0_c00266{left:0.000000px;}
.x3_c00266{left:127.620000px;}
.x4_c00266{left:230.040000px;}
.x6_c00266{left:290.790000px;}
.x2_c00266{left:425.160000px;}
.x1_c00266{left:446.580000px;}
.x5_c00266{left:494.100000px;}
.x7_c00266{left:738.540000px;}
@media print{
.v5_c00266{vertical-align:-24.000000pt;}
.v8_c00266{vertical-align:-18.560000pt;}
.v6_c00266{vertical-align:-13.120000pt;}
.v2_c00266{vertical-align:-9.280000pt;}
.v0_c00266{vertical-align:0.000000pt;}
.v7_c00266{vertical-align:13.120000pt;}
.v4_c00266{vertical-align:24.000000pt;}
.v3_c00266{vertical-align:32.320000pt;}
.v1_c00266{vertical-align:37.440000pt;}
.ls1b_c00266{letter-spacing:-0.384000pt;}
.ls19_c00266{letter-spacing:-0.320000pt;}
.ls1c_c00266{letter-spacing:-0.256000pt;}
.ls1a_c00266{letter-spacing:-0.192000pt;}
.ls15_c00266{letter-spacing:-0.096000pt;}
.ls18_c00266{letter-spacing:-0.090880pt;}
.ls16_c00266{letter-spacing:-0.064000pt;}
.ls1d_c00266{letter-spacing:-0.053440pt;}
.ls14_c00266{letter-spacing:0.000000pt;}
.lsd_c00266{letter-spacing:0.064000pt;}
.ls12_c00266{letter-spacing:0.070400pt;}
.ls17_c00266{letter-spacing:0.090880pt;}
.ls4_c00266{letter-spacing:0.128000pt;}
.ls1e_c00266{letter-spacing:0.160320pt;}
.ls9_c00266{letter-spacing:0.170240pt;}
.ls0_c00266{letter-spacing:0.640000pt;}
.ls1_c00266{letter-spacing:1.708480pt;}
.lsa_c00266{letter-spacing:2.560000pt;}
.ls13_c00266{letter-spacing:3.259840pt;}
.lse_c00266{letter-spacing:3.520000pt;}
.ls3_c00266{letter-spacing:5.760000pt;}
.lsf_c00266{letter-spacing:6.720000pt;}
.ls2_c00266{letter-spacing:7.680000pt;}
.ls8_c00266{letter-spacing:7.699200pt;}
.ls5_c00266{letter-spacing:9.280000pt;}
.ls6_c00266{letter-spacing:9.600000pt;}
.ls7_c00266{letter-spacing:10.880000pt;}
.lsc_c00266{letter-spacing:16.000000pt;}
.ls11_c00266{letter-spacing:17.792000pt;}
.lsb_c00266{letter-spacing:20.410240pt;}
.ls10_c00266{letter-spacing:27.200000pt;}
.ws3_c00266{word-spacing:-64.000000pt;}
.ws2_c00266{word-spacing:-45.530880pt;}
.ws1_c00266{word-spacing:-45.440000pt;}
.ws4_c00266{word-spacing:-45.349120pt;}
.ws6_c00266{word-spacing:-16.064000pt;}
.ws0_c00266{word-spacing:-16.000000pt;}
.ws8_c00266{word-spacing:-15.936000pt;}
.ws7_c00266{word-spacing:-15.808000pt;}
.wsb_c00266{word-spacing:-15.616000pt;}
.wsd_c00266{word-spacing:-13.360000pt;}
.ws9_c00266{word-spacing:-10.810240pt;}
.ws5_c00266{word-spacing:-10.640000pt;}
.wsc_c00266{word-spacing:-8.640000pt;}
.ws3f_c00266{word-spacing:-0.374080pt;}
.ws1b_c00266{word-spacing:-0.064000pt;}
.ws3d_c00266{word-spacing:-0.053440pt;}
.wse_c00266{word-spacing:0.000000pt;}
.ws11_c00266{word-spacing:0.064000pt;}
.ws10_c00266{word-spacing:0.144000pt;}
.ws3e_c00266{word-spacing:0.160320pt;}
.ws25_c00266{word-spacing:0.192000pt;}
.wsf_c00266{word-spacing:0.240000pt;}
.ws1d_c00266{word-spacing:0.320000pt;}
.ws17_c00266{word-spacing:0.576000pt;}
.ws18_c00266{word-spacing:0.640000pt;}
.ws3b_c00266{word-spacing:0.896000pt;}
.ws2b_c00266{word-spacing:0.960000pt;}
.ws36_c00266{word-spacing:1.600000pt;}
.ws23_c00266{word-spacing:2.560000pt;}
.ws2a_c00266{word-spacing:3.136000pt;}
.ws3c_c00266{word-spacing:3.313280pt;}
.ws29_c00266{word-spacing:3.456000pt;}
.ws28_c00266{word-spacing:3.520000pt;}
.wsa_c00266{word-spacing:3.712000pt;}
.ws2e_c00266{word-spacing:6.080000pt;}
.ws30_c00266{word-spacing:6.656000pt;}
.ws2f_c00266{word-spacing:6.720000pt;}
.ws2d_c00266{word-spacing:7.040000pt;}
.ws2c_c00266{word-spacing:7.296000pt;}
.ws14_c00266{word-spacing:7.616000pt;}
.ws13_c00266{word-spacing:7.680000pt;}
.ws24_c00266{word-spacing:8.576000pt;}
.ws1e_c00266{word-spacing:8.960000pt;}
.ws1f_c00266{word-spacing:9.216000pt;}
.ws20_c00266{word-spacing:9.280000pt;}
.ws22_c00266{word-spacing:10.816000pt;}
.ws21_c00266{word-spacing:10.880000pt;}
.ws19_c00266{word-spacing:11.136000pt;}
.ws35_c00266{word-spacing:11.392000pt;}
.ws34_c00266{word-spacing:11.456000pt;}
.ws16_c00266{word-spacing:12.160000pt;}
.ws15_c00266{word-spacing:12.480000pt;}
.ws1a_c00266{word-spacing:13.056000pt;}
.ws1c_c00266{word-spacing:13.120000pt;}
.ws27_c00266{word-spacing:15.616000pt;}
.ws26_c00266{word-spacing:16.000000pt;}
.ws3a_c00266{word-spacing:22.336000pt;}
.ws39_c00266{word-spacing:22.400000pt;}
.ws12_c00266{word-spacing:24.000000pt;}
.ws32_c00266{word-spacing:26.880000pt;}
.ws37_c00266{word-spacing:27.072000pt;}
.ws33_c00266{word-spacing:27.136000pt;}
.ws31_c00266{word-spacing:27.200000pt;}
.ws38_c00266{word-spacing:27.392000pt;}
._9_c00266{margin-left:-5.926400pt;}
._7_c00266{margin-left:-3.712000pt;}
._1_c00266{margin-left:-0.940800pt;}
._0_c00266{width:1.084800pt;}
._5_c00266{width:2.304000pt;}
._6_c00266{width:3.351680pt;}
._a_c00266{width:4.264320pt;}
._3_c00266{width:7.552000pt;}
._4_c00266{width:12.825600pt;}
._b_c00266{width:22.400000pt;}
._2_c00266{width:24.192000pt;}
._8_c00266{width:27.200000pt;}
.fs5_c00266{font-size:34.560000pt;}
.fs3_c00266{font-size:37.440000pt;}
.fs4_c00266{font-size:42.560000pt;}
.fs2_c00266{font-size:45.440000pt;}
.fs0_c00266{font-size:48.000000pt;}
.fs6_c00266{font-size:53.440000pt;}
.fs1_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y28_c00266{bottom:50.880000pt;}
.y27_c00266{bottom:97.596160pt;}
.y26_c00266{bottom:117.520000pt;}
.y29_c00266{bottom:128.800000pt;}
.y25_c00266{bottom:159.040000pt;}
.y24_c00266{bottom:186.640000pt;}
.y23_c00266{bottom:214.800000pt;}
.y22_c00266{bottom:243.600000pt;}
.y21_c00266{bottom:271.200000pt;}
.y20_c00266{bottom:298.800000pt;}
.y1f_c00266{bottom:326.560000pt;}
.y1e_c00266{bottom:354.560000pt;}
.y1d_c00266{bottom:382.160000pt;}
.y1c_c00266{bottom:409.760000pt;}
.y1b_c00266{bottom:437.360000pt;}
.y1a_c00266{bottom:464.960000pt;}
.y19_c00266{bottom:492.560000pt;}
.y18_c00266{bottom:520.160000pt;}
.y17_c00266{bottom:547.760000pt;}
.y16_c00266{bottom:575.360000pt;}
.y15_c00266{bottom:602.880000pt;}
.y14_c00266{bottom:630.640000pt;}
.y13_c00266{bottom:658.640000pt;}
.y12_c00266{bottom:686.240000pt;}
.y11_c00266{bottom:713.840000pt;}
.y10_c00266{bottom:741.440000pt;}
.yf_c00266{bottom:769.040000pt;}
.ye_c00266{bottom:796.640000pt;}
.yd_c00266{bottom:824.240000pt;}
.yc_c00266{bottom:851.840000pt;}
.yb_c00266{bottom:878.320000pt;}
.ya_c00266{bottom:886.400000pt;}
.y9_c00266{bottom:919.360000pt;}
.y8_c00266{bottom:945.920000pt;}
.y7_c00266{bottom:954.000000pt;}
.y6_c00266{bottom:986.960000pt;}
.y5_c00266{bottom:1005.360000pt;}
.y4_c00266{bottom:1023.040000pt;}
.y3_c00266{bottom:1036.804000pt;}
.y2_c00266{bottom:1050.640000pt;}
.y1_c00266{bottom:1064.400000pt;}
.hb_c00266{height:33.918750pt;}
.ha_c00266{height:44.468750pt;}
.h3_c00266{height:47.085938pt;}
.h2_c00266{height:47.109375pt;}
.hc_c00266{height:52.448437pt;}
.h4_c00266{height:62.812500pt;}
.h8_c00266{height:65.770312pt;}
.h9_c00266{height:127.593750pt;}
.h5_c00266{height:128.031562pt;}
.h7_c00266{height:159.913750pt;}
.h6_c00266{height:160.351563pt;}
.h0_c00266{height:1122.560000pt;}
.h1_c00266{height:1122.666667pt;}
.w0_c00266{width:793.840000pt;}
.w1_c00266{width:794.000000pt;}
.x0_c00266{left:0.000000pt;}
.x3_c00266{left:113.440000pt;}
.x4_c00266{left:204.480000pt;}
.x6_c00266{left:258.480000pt;}
.x2_c00266{left:377.920000pt;}
.x1_c00266{left:396.960000pt;}
.x5_c00266{left:439.200000pt;}
.x7_c00266{left:656.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_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_89a4c8f3eaf9542b7340bb55.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.284180;font-style:normal;font-weight:normal;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_943ca2657896f6823e081b80.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00267;src:url('chunks/assets/font_81c57defcfd66c0d899a70ad.woff2')format("woff");}.ff4_c00267{font-family:ff4_c00267;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_c00267;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00267{font-family:ff5_c00267;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-61.938000px;}
.v9_c00267{vertical-align:-20.880000px;}
.v7_c00267{vertical-align:-14.760000px;}
.v4_c00267{vertical-align:-10.440000px;}
.v0_c00267{vertical-align:0.000000px;}
.v8_c00267{vertical-align:14.760000px;}
.v2_c00267{vertical-align:27.000000px;}
.v6_c00267{vertical-align:31.680000px;}
.v5_c00267{vertical-align:36.360000px;}
.v3_c00267{vertical-align:42.120000px;}
.ls1d_c00267{letter-spacing:-0.432000px;}
.ls19_c00267{letter-spacing:-0.360000px;}
.ls1e_c00267{letter-spacing:-0.216000px;}
.ls22_c00267{letter-spacing:-0.180360px;}
.ls21_c00267{letter-spacing:-0.120240px;}
.ls1b_c00267{letter-spacing:-0.102240px;}
.ls1c_c00267{letter-spacing:-0.072000px;}
.ls20_c00267{letter-spacing:-0.060120px;}
.ls18_c00267{letter-spacing:0.000000px;}
.ls2_c00267{letter-spacing:0.072000px;}
.ls1a_c00267{letter-spacing:0.102240px;}
.ls1_c00267{letter-spacing:0.144000px;}
.ls3_c00267{letter-spacing:0.180000px;}
.ls23_c00267{letter-spacing:0.180360px;}
.lse_c00267{letter-spacing:0.191520px;}
.ls4_c00267{letter-spacing:0.360000px;}
.ls1f_c00267{letter-spacing:0.504000px;}
.lsc_c00267{letter-spacing:1.080000px;}
.ls8_c00267{letter-spacing:1.922040px;}
.ls5_c00267{letter-spacing:2.282040px;}
.ls12_c00267{letter-spacing:4.680000px;}
.ls11_c00267{letter-spacing:5.400000px;}
.ls14_c00267{letter-spacing:5.767200px;}
.ls7_c00267{letter-spacing:6.480000px;}
.ls13_c00267{letter-spacing:6.840000px;}
.lsb_c00267{letter-spacing:10.440000px;}
.lsa_c00267{letter-spacing:11.880000px;}
.ls16_c00267{letter-spacing:12.324600px;}
.ls17_c00267{letter-spacing:12.390732px;}
.lsd_c00267{letter-spacing:19.080000px;}
.ls10_c00267{letter-spacing:20.016000px;}
.ls15_c00267{letter-spacing:22.601520px;}
.lsf_c00267{letter-spacing:22.961520px;}
.ls9_c00267{letter-spacing:23.760000px;}
.ls6_c00267{letter-spacing:25.920000px;}
.ls0_c00267{letter-spacing:319.518000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00267{word-spacing:-72.000000px;}
.ws2_c00267{word-spacing:-51.222240px;}
.ws1_c00267{word-spacing:-51.120000px;}
.ws4_c00267{word-spacing:-51.017760px;}
.ws0_c00267{word-spacing:-18.000000px;}
.ws5_c00267{word-spacing:-17.928000px;}
.ws8_c00267{word-spacing:-17.784000px;}
.ws7_c00267{word-spacing:-17.568000px;}
.wsb_c00267{word-spacing:-15.030000px;}
.ws6_c00267{word-spacing:-12.161520px;}
.wsa_c00267{word-spacing:-9.720000px;}
.ws39_c00267{word-spacing:-0.504000px;}
.ws40_c00267{word-spacing:-0.420840px;}
.wsd_c00267{word-spacing:-0.162000px;}
.ws2c_c00267{word-spacing:-0.144000px;}
.ws14_c00267{word-spacing:-0.072000px;}
.ws3f_c00267{word-spacing:-0.060120px;}
.wsc_c00267{word-spacing:0.000000px;}
.ws3a_c00267{word-spacing:0.060120px;}
.ws3d_c00267{word-spacing:0.180360px;}
.ws1f_c00267{word-spacing:0.720000px;}
.ws20_c00267{word-spacing:1.008000px;}
.ws21_c00267{word-spacing:1.080000px;}
.ws10_c00267{word-spacing:2.160000px;}
.ws11_c00267{word-spacing:2.520000px;}
.ws15_c00267{word-spacing:2.808000px;}
.ws16_c00267{word-spacing:2.880000px;}
.ws13_c00267{word-spacing:3.096000px;}
.ws12_c00267{word-spacing:3.168000px;}
.ws2a_c00267{word-spacing:3.240000px;}
.ws29_c00267{word-spacing:3.528000px;}
.ws28_c00267{word-spacing:3.600000px;}
.ws9_c00267{word-spacing:4.176000px;}
.ws26_c00267{word-spacing:4.536000px;}
.ws27_c00267{word-spacing:4.680000px;}
.ws25_c00267{word-spacing:5.328000px;}
.ws33_c00267{word-spacing:5.688000px;}
.wse_c00267{word-spacing:5.976000px;}
.wsf_c00267{word-spacing:6.048000px;}
.ws32_c00267{word-spacing:6.120000px;}
.ws30_c00267{word-spacing:6.336000px;}
.ws31_c00267{word-spacing:6.408000px;}
.ws2f_c00267{word-spacing:6.480000px;}
.ws2b_c00267{word-spacing:9.360000px;}
.ws38_c00267{word-spacing:10.008000px;}
.ws37_c00267{word-spacing:10.080000px;}
.ws1d_c00267{word-spacing:10.296000px;}
.ws1e_c00267{word-spacing:10.440000px;}
.ws1c_c00267{word-spacing:11.880000px;}
.ws3b_c00267{word-spacing:12.024000px;}
.ws3e_c00267{word-spacing:12.144240px;}
.ws3c_c00267{word-spacing:12.444840px;}
.ws34_c00267{word-spacing:12.888000px;}
.ws35_c00267{word-spacing:12.960000px;}
.ws24_c00267{word-spacing:14.688000px;}
.ws36_c00267{word-spacing:17.640000px;}
.ws23_c00267{word-spacing:18.648000px;}
.ws22_c00267{word-spacing:18.720000px;}
.ws17_c00267{word-spacing:20.160000px;}
.ws19_c00267{word-spacing:20.448000px;}
.ws18_c00267{word-spacing:20.520000px;}
.ws1a_c00267{word-spacing:25.416000px;}
.ws1b_c00267{word-spacing:25.920000px;}
.ws2d_c00267{word-spacing:31.248000px;}
.ws2e_c00267{word-spacing:31.320000px;}
._3_c00267{margin-left:-6.696000px;}
._6_c00267{margin-left:-3.960000px;}
._0_c00267{margin-left:-1.224000px;}
._1_c00267{width:1.008000px;}
._2_c00267{width:3.384000px;}
._7_c00267{width:5.040000px;}
._4_c00267{width:9.648000px;}
._8_c00267{width:12.444840px;}
._5_c00267{width:31.104000px;}
.fc0_c00267{color:rgb(0,0,0);}
.fs5_c00267{font-size:38.880000px;}
.fs4_c00267{font-size:42.120000px;}
.fs2_c00267{font-size:47.880000px;}
.fs3_c00267{font-size:51.120000px;}
.fs0_c00267{font-size:54.000000px;}
.fs6_c00267{font-size:60.120000px;}
.fs1_c00267{font-size:72.000000px;}
.y0_c00267{bottom:0.000000px;}
.y28_c00267{bottom:57.240000px;}
.y27_c00267{bottom:109.795680px;}
.y26_c00267{bottom:132.210000px;}
.y29_c00267{bottom:144.900000px;}
.y25_c00267{bottom:167.040000px;}
.y24_c00267{bottom:198.270000px;}
.y23_c00267{bottom:229.770000px;}
.y22_c00267{bottom:260.820000px;}
.y21_c00267{bottom:291.870000px;}
.y20_c00267{bottom:322.830000px;}
.y1f_c00267{bottom:353.880000px;}
.y1e_c00267{bottom:384.930000px;}
.y1d_c00267{bottom:415.980000px;}
.y1c_c00267{bottom:447.030000px;}
.y1b_c00267{bottom:478.080000px;}
.y1a_c00267{bottom:509.130000px;}
.y19_c00267{bottom:540.180000px;}
.y18_c00267{bottom:571.410000px;}
.y17_c00267{bottom:602.910000px;}
.y16_c00267{bottom:633.960000px;}
.y15_c00267{bottom:665.010000px;}
.y14_c00267{bottom:696.060000px;}
.y13_c00267{bottom:727.110000px;}
.y12_c00267{bottom:758.160000px;}
.y11_c00267{bottom:789.210000px;}
.y10_c00267{bottom:819.000000px;}
.yf_c00267{bottom:828.090000px;}
.ye_c00267{bottom:864.000000px;}
.yd_c00267{bottom:873.090000px;}
.yc_c00267{bottom:908.910000px;}
.yb_c00267{bottom:918.000000px;}
.ya_c00267{bottom:955.080000px;}
.y9_c00267{bottom:986.130000px;}
.y8_c00267{bottom:1017.180000px;}
.y7_c00267{bottom:1048.230000px;}
.y6_c00267{bottom:1079.280000px;}
.y5_c00267{bottom:1110.330000px;}
.y4_c00267{bottom:1131.030000px;}
.y3_c00267{bottom:1150.915500px;}
.y2_c00267{bottom:1166.400000px;}
.y1_c00267{bottom:1197.450000px;}
.h9_c00267{height:38.158594px;}
.h8_c00267{height:50.027344px;}
.h2_c00267{height:52.998047px;}
.ha_c00267{height:59.004492px;}
.h3_c00267{height:70.664062px;}
.h4_c00267{height:73.991602px;}
.h7_c00267{height:143.542969px;}
.h5_c00267{height:144.035508px;}
.h6_c00267{height:179.902969px;}
.h0_c00267{height:1262.880000px;}
.h1_c00267{height:1263.000000px;}
.w0_c00267{width:893.070000px;}
.w1_c00267{width:893.250000px;}
.x0_c00267{left:0.000000px;}
.x2_c00267{left:127.620000px;}
.x4_c00267{left:136.440000px;}
.x1_c00267{left:446.580000px;}
.x3_c00267{left:499.590000px;}
.x5_c00267{left:544.320000px;}
@media print{
.v1_c00267{vertical-align:-55.056000pt;}
.v9_c00267{vertical-align:-18.560000pt;}
.v7_c00267{vertical-align:-13.120000pt;}
.v4_c00267{vertical-align:-9.280000pt;}
.v0_c00267{vertical-align:0.000000pt;}
.v8_c00267{vertical-align:13.120000pt;}
.v2_c00267{vertical-align:24.000000pt;}
.v6_c00267{vertical-align:28.160000pt;}
.v5_c00267{vertical-align:32.320000pt;}
.v3_c00267{vertical-align:37.440000pt;}
.ls1d_c00267{letter-spacing:-0.384000pt;}
.ls19_c00267{letter-spacing:-0.320000pt;}
.ls1e_c00267{letter-spacing:-0.192000pt;}
.ls22_c00267{letter-spacing:-0.160320pt;}
.ls21_c00267{letter-spacing:-0.106880pt;}
.ls1b_c00267{letter-spacing:-0.090880pt;}
.ls1c_c00267{letter-spacing:-0.064000pt;}
.ls20_c00267{letter-spacing:-0.053440pt;}
.ls18_c00267{letter-spacing:0.000000pt;}
.ls2_c00267{letter-spacing:0.064000pt;}
.ls1a_c00267{letter-spacing:0.090880pt;}
.ls1_c00267{letter-spacing:0.128000pt;}
.ls3_c00267{letter-spacing:0.160000pt;}
.ls23_c00267{letter-spacing:0.160320pt;}
.lse_c00267{letter-spacing:0.170240pt;}
.ls4_c00267{letter-spacing:0.320000pt;}
.ls1f_c00267{letter-spacing:0.448000pt;}
.lsc_c00267{letter-spacing:0.960000pt;}
.ls8_c00267{letter-spacing:1.708480pt;}
.ls5_c00267{letter-spacing:2.028480pt;}
.ls12_c00267{letter-spacing:4.160000pt;}
.ls11_c00267{letter-spacing:4.800000pt;}
.ls14_c00267{letter-spacing:5.126400pt;}
.ls7_c00267{letter-spacing:5.760000pt;}
.ls13_c00267{letter-spacing:6.080000pt;}
.lsb_c00267{letter-spacing:9.280000pt;}
.lsa_c00267{letter-spacing:10.560000pt;}
.ls16_c00267{letter-spacing:10.955200pt;}
.ls17_c00267{letter-spacing:11.013984pt;}
.lsd_c00267{letter-spacing:16.960000pt;}
.ls10_c00267{letter-spacing:17.792000pt;}
.ls15_c00267{letter-spacing:20.090240pt;}
.lsf_c00267{letter-spacing:20.410240pt;}
.ls9_c00267{letter-spacing:21.120000pt;}
.ls6_c00267{letter-spacing:23.040000pt;}
.ls0_c00267{letter-spacing:284.016000pt;}
.ws3_c00267{word-spacing:-64.000000pt;}
.ws2_c00267{word-spacing:-45.530880pt;}
.ws1_c00267{word-spacing:-45.440000pt;}
.ws4_c00267{word-spacing:-45.349120pt;}
.ws0_c00267{word-spacing:-16.000000pt;}
.ws5_c00267{word-spacing:-15.936000pt;}
.ws8_c00267{word-spacing:-15.808000pt;}
.ws7_c00267{word-spacing:-15.616000pt;}
.wsb_c00267{word-spacing:-13.360000pt;}
.ws6_c00267{word-spacing:-10.810240pt;}
.wsa_c00267{word-spacing:-8.640000pt;}
.ws39_c00267{word-spacing:-0.448000pt;}
.ws40_c00267{word-spacing:-0.374080pt;}
.wsd_c00267{word-spacing:-0.144000pt;}
.ws2c_c00267{word-spacing:-0.128000pt;}
.ws14_c00267{word-spacing:-0.064000pt;}
.ws3f_c00267{word-spacing:-0.053440pt;}
.wsc_c00267{word-spacing:0.000000pt;}
.ws3a_c00267{word-spacing:0.053440pt;}
.ws3d_c00267{word-spacing:0.160320pt;}
.ws1f_c00267{word-spacing:0.640000pt;}
.ws20_c00267{word-spacing:0.896000pt;}
.ws21_c00267{word-spacing:0.960000pt;}
.ws10_c00267{word-spacing:1.920000pt;}
.ws11_c00267{word-spacing:2.240000pt;}
.ws15_c00267{word-spacing:2.496000pt;}
.ws16_c00267{word-spacing:2.560000pt;}
.ws13_c00267{word-spacing:2.752000pt;}
.ws12_c00267{word-spacing:2.816000pt;}
.ws2a_c00267{word-spacing:2.880000pt;}
.ws29_c00267{word-spacing:3.136000pt;}
.ws28_c00267{word-spacing:3.200000pt;}
.ws9_c00267{word-spacing:3.712000pt;}
.ws26_c00267{word-spacing:4.032000pt;}
.ws27_c00267{word-spacing:4.160000pt;}
.ws25_c00267{word-spacing:4.736000pt;}
.ws33_c00267{word-spacing:5.056000pt;}
.wse_c00267{word-spacing:5.312000pt;}
.wsf_c00267{word-spacing:5.376000pt;}
.ws32_c00267{word-spacing:5.440000pt;}
.ws30_c00267{word-spacing:5.632000pt;}
.ws31_c00267{word-spacing:5.696000pt;}
.ws2f_c00267{word-spacing:5.760000pt;}
.ws2b_c00267{word-spacing:8.320000pt;}
.ws38_c00267{word-spacing:8.896000pt;}
.ws37_c00267{word-spacing:8.960000pt;}
.ws1d_c00267{word-spacing:9.152000pt;}
.ws1e_c00267{word-spacing:9.280000pt;}
.ws1c_c00267{word-spacing:10.560000pt;}
.ws3b_c00267{word-spacing:10.688000pt;}
.ws3e_c00267{word-spacing:10.794880pt;}
.ws3c_c00267{word-spacing:11.062080pt;}
.ws34_c00267{word-spacing:11.456000pt;}
.ws35_c00267{word-spacing:11.520000pt;}
.ws24_c00267{word-spacing:13.056000pt;}
.ws36_c00267{word-spacing:15.680000pt;}
.ws23_c00267{word-spacing:16.576000pt;}
.ws22_c00267{word-spacing:16.640000pt;}
.ws17_c00267{word-spacing:17.920000pt;}
.ws19_c00267{word-spacing:18.176000pt;}
.ws18_c00267{word-spacing:18.240000pt;}
.ws1a_c00267{word-spacing:22.592000pt;}
.ws1b_c00267{word-spacing:23.040000pt;}
.ws2d_c00267{word-spacing:27.776000pt;}
.ws2e_c00267{word-spacing:27.840000pt;}
._3_c00267{margin-left:-5.952000pt;}
._6_c00267{margin-left:-3.520000pt;}
._0_c00267{margin-left:-1.088000pt;}
._1_c00267{width:0.896000pt;}
._2_c00267{width:3.008000pt;}
._7_c00267{width:4.480000pt;}
._4_c00267{width:8.576000pt;}
._8_c00267{width:11.062080pt;}
._5_c00267{width:27.648000pt;}
.fs5_c00267{font-size:34.560000pt;}
.fs4_c00267{font-size:37.440000pt;}
.fs2_c00267{font-size:42.560000pt;}
.fs3_c00267{font-size:45.440000pt;}
.fs0_c00267{font-size:48.000000pt;}
.fs6_c00267{font-size:53.440000pt;}
.fs1_c00267{font-size:64.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y28_c00267{bottom:50.880000pt;}
.y27_c00267{bottom:97.596160pt;}
.y26_c00267{bottom:117.520000pt;}
.y29_c00267{bottom:128.800000pt;}
.y25_c00267{bottom:148.480000pt;}
.y24_c00267{bottom:176.240000pt;}
.y23_c00267{bottom:204.240000pt;}
.y22_c00267{bottom:231.840000pt;}
.y21_c00267{bottom:259.440000pt;}
.y20_c00267{bottom:286.960000pt;}
.y1f_c00267{bottom:314.560000pt;}
.y1e_c00267{bottom:342.160000pt;}
.y1d_c00267{bottom:369.760000pt;}
.y1c_c00267{bottom:397.360000pt;}
.y1b_c00267{bottom:424.960000pt;}
.y1a_c00267{bottom:452.560000pt;}
.y19_c00267{bottom:480.160000pt;}
.y18_c00267{bottom:507.920000pt;}
.y17_c00267{bottom:535.920000pt;}
.y16_c00267{bottom:563.520000pt;}
.y15_c00267{bottom:591.120000pt;}
.y14_c00267{bottom:618.720000pt;}
.y13_c00267{bottom:646.320000pt;}
.y12_c00267{bottom:673.920000pt;}
.y11_c00267{bottom:701.520000pt;}
.y10_c00267{bottom:728.000000pt;}
.yf_c00267{bottom:736.080000pt;}
.ye_c00267{bottom:768.000000pt;}
.yd_c00267{bottom:776.080000pt;}
.yc_c00267{bottom:807.920000pt;}
.yb_c00267{bottom:816.000000pt;}
.ya_c00267{bottom:848.960000pt;}
.y9_c00267{bottom:876.560000pt;}
.y8_c00267{bottom:904.160000pt;}
.y7_c00267{bottom:931.760000pt;}
.y6_c00267{bottom:959.360000pt;}
.y5_c00267{bottom:986.960000pt;}
.y4_c00267{bottom:1005.360000pt;}
.y3_c00267{bottom:1023.036000pt;}
.y2_c00267{bottom:1036.800000pt;}
.y1_c00267{bottom:1064.400000pt;}
.h9_c00267{height:33.918750pt;}
.h8_c00267{height:44.468750pt;}
.h2_c00267{height:47.109375pt;}
.ha_c00267{height:52.448437pt;}
.h3_c00267{height:62.812500pt;}
.h4_c00267{height:65.770313pt;}
.h7_c00267{height:127.593750pt;}
.h5_c00267{height:128.031563pt;}
.h6_c00267{height:159.913750pt;}
.h0_c00267{height:1122.560000pt;}
.h1_c00267{height:1122.666667pt;}
.w0_c00267{width:793.840000pt;}
.w1_c00267{width:794.000000pt;}
.x0_c00267{left:0.000000pt;}
.x2_c00267{left:113.440000pt;}
.x4_c00267{left:121.280000pt;}
.x1_c00267{left:396.960000pt;}
.x3_c00267{left:444.080000pt;}
.x5_c00267{left:483.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_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_04b3eead2d7bdb4aed1d1ffe.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_5be2c33fce4dcf38cdc4ab0c.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;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_c00268;src:url('chunks/assets/font_06276154d3a3889e2b6169bc.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00268;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff6_c00268{font-family:ff6_c00268;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v8_c00268{vertical-align:-20.880000px;}
.v6_c00268{vertical-align:-14.760000px;}
.v3_c00268{vertical-align:-10.440000px;}
.v0_c00268{vertical-align:0.000000px;}
.v7_c00268{vertical-align:14.760000px;}
.v1_c00268{vertical-align:27.000000px;}
.v4_c00268{vertical-align:36.360000px;}
.v2_c00268{vertical-align:42.120000px;}
.v5_c00268{vertical-align:78.480000px;}
.ls1c_c00268{letter-spacing:-0.576000px;}
.ls1b_c00268{letter-spacing:-0.216000px;}
.ls17_c00268{letter-spacing:-0.153360px;}
.ls15_c00268{letter-spacing:-0.108000px;}
.ls18_c00268{letter-spacing:-0.102240px;}
.ls1a_c00268{letter-spacing:-0.072000px;}
.ls1d_c00268{letter-spacing:-0.060120px;}
.ls16_c00268{letter-spacing:-0.051120px;}
.ls14_c00268{letter-spacing:0.000000px;}
.ls0_c00268{letter-spacing:0.072000px;}
.ls19_c00268{letter-spacing:0.102240px;}
.ls2_c00268{letter-spacing:0.144000px;}
.ls4_c00268{letter-spacing:0.180000px;}
.ls13_c00268{letter-spacing:0.180360px;}
.lsd_c00268{letter-spacing:0.191520px;}
.ls5_c00268{letter-spacing:0.720000px;}
.ls9_c00268{letter-spacing:0.734400px;}
.ls6_c00268{letter-spacing:1.922040px;}
.ls12_c00268{letter-spacing:3.667320px;}
.ls3_c00268{letter-spacing:5.040000px;}
.lsc_c00268{letter-spacing:6.480000px;}
.ls8_c00268{letter-spacing:6.494400px;}
.lsb_c00268{letter-spacing:6.840000px;}
.ls1_c00268{letter-spacing:8.280000px;}
.lse_c00268{letter-spacing:9.360000px;}
.ls11_c00268{letter-spacing:12.240000px;}
.lsa_c00268{letter-spacing:18.000000px;}
.ls10_c00268{letter-spacing:20.016000px;}
.lsf_c00268{letter-spacing:22.961520px;}
.ls7_c00268{letter-spacing:26.280000px;}
.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;}
}
.ws4_c00268{word-spacing:-72.000000px;}
.ws6_c00268{word-spacing:-51.222240px;}
.ws1_c00268{word-spacing:-51.120000px;}
.ws2_c00268{word-spacing:-51.068880px;}
.ws5_c00268{word-spacing:-51.017760px;}
.ws3_c00268{word-spacing:-50.966640px;}
.ws0_c00268{word-spacing:-18.000000px;}
.ws7_c00268{word-spacing:-17.928000px;}
.ws8_c00268{word-spacing:-17.784000px;}
.wsc_c00268{word-spacing:-15.030000px;}
.ws9_c00268{word-spacing:-12.161520px;}
.wsb_c00268{word-spacing:-9.720000px;}
.ws3a_c00268{word-spacing:-0.420840px;}
.ws11_c00268{word-spacing:-0.144000px;}
.ws17_c00268{word-spacing:-0.072000px;}
.ws38_c00268{word-spacing:-0.060120px;}
.wsd_c00268{word-spacing:0.000000px;}
.wsf_c00268{word-spacing:0.162000px;}
.ws39_c00268{word-spacing:0.180360px;}
.wse_c00268{word-spacing:0.270000px;}
.ws25_c00268{word-spacing:2.088000px;}
.ws18_c00268{word-spacing:2.160000px;}
.ws37_c00268{word-spacing:3.486960px;}
.ws36_c00268{word-spacing:3.727440px;}
.wsa_c00268{word-spacing:4.176000px;}
.ws1b_c00268{word-spacing:4.968000px;}
.ws1a_c00268{word-spacing:5.040000px;}
.ws2b_c00268{word-spacing:6.408000px;}
.ws2a_c00268{word-spacing:6.840000px;}
.ws19_c00268{word-spacing:7.920000px;}
.ws14_c00268{word-spacing:8.280000px;}
.ws2e_c00268{word-spacing:8.568000px;}
.ws2f_c00268{word-spacing:8.928000px;}
.ws31_c00268{word-spacing:9.288000px;}
.ws2d_c00268{word-spacing:9.360000px;}
.ws1c_c00268{word-spacing:10.368000px;}
.ws1d_c00268{word-spacing:10.440000px;}
.ws29_c00268{word-spacing:11.088000px;}
.ws28_c00268{word-spacing:11.160000px;}
.ws35_c00268{word-spacing:12.168000px;}
.ws34_c00268{word-spacing:12.240000px;}
.ws13_c00268{word-spacing:12.888000px;}
.ws26_c00268{word-spacing:13.248000px;}
.ws27_c00268{word-spacing:13.320000px;}
.ws2c_c00268{word-spacing:13.896000px;}
.ws1f_c00268{word-spacing:14.616000px;}
.ws1e_c00268{word-spacing:14.760000px;}
.ws30_c00268{word-spacing:15.768000px;}
.ws23_c00268{word-spacing:17.928000px;}
.ws24_c00268{word-spacing:18.000000px;}
.ws15_c00268{word-spacing:20.736000px;}
.ws16_c00268{word-spacing:20.880000px;}
.ws22_c00268{word-spacing:21.240000px;}
.ws21_c00268{word-spacing:26.208000px;}
.ws20_c00268{word-spacing:26.280000px;}
.ws12_c00268{word-spacing:38.088000px;}
.ws10_c00268{word-spacing:38.160000px;}
.ws33_c00268{word-spacing:56.088000px;}
.ws32_c00268{word-spacing:56.520000px;}
._c_c00268{margin-left:-5.709600px;}
._b_c00268{margin-left:-4.413600px;}
._1_c00268{margin-left:-1.058400px;}
._0_c00268{width:1.220400px;}
._9_c00268{width:2.260800px;}
._5_c00268{width:3.312000px;}
._8_c00268{width:6.656400px;}
._a_c00268{width:9.156240px;}
._4_c00268{width:10.706400px;}
._e_c00268{width:11.811600px;}
._7_c00268{width:13.248000px;}
._6_c00268{width:14.976000px;}
._d_c00268{width:16.056000px;}
._3_c00268{width:20.930400px;}
._2_c00268{width:38.116800px;}
.fc0_c00268{color:rgb(0,0,0);}
.fs5_c00268{font-size:38.880000px;}
.fs4_c00268{font-size:42.120000px;}
.fs2_c00268{font-size:47.880000px;}
.fs3_c00268{font-size:51.120000px;}
.fs0_c00268{font-size:54.000000px;}
.fs6_c00268{font-size:60.120000px;}
.fs1_c00268{font-size:72.000000px;}
.y0_c00268{bottom:0.000000px;}
.y27_c00268{bottom:57.240000px;}
.y26_c00268{bottom:109.795680px;}
.y25_c00268{bottom:132.210000px;}
.y28_c00268{bottom:144.900000px;}
.y24_c00268{bottom:209.970000px;}
.y23_c00268{bottom:241.020000px;}
.y22_c00268{bottom:272.070000px;}
.y21_c00268{bottom:303.210000px;}
.y20_c00268{bottom:334.890000px;}
.y1f_c00268{bottom:366.390000px;}
.y1e_c00268{bottom:397.440000px;}
.y1d_c00268{bottom:428.490000px;}
.y1c_c00268{bottom:459.540000px;}
.y1b_c00268{bottom:490.590000px;}
.y1a_c00268{bottom:521.640000px;}
.y19_c00268{bottom:552.690000px;}
.y18_c00268{bottom:583.740000px;}
.y17_c00268{bottom:613.530000px;}
.y16_c00268{bottom:622.620000px;}
.y15_c00268{bottom:659.700000px;}
.y14_c00268{bottom:689.580000px;}
.y13_c00268{bottom:698.670000px;}
.y12_c00268{bottom:735.750000px;}
.y11_c00268{bottom:766.800000px;}
.y10_c00268{bottom:797.850000px;}
.yf_c00268{bottom:828.900000px;}
.ye_c00268{bottom:859.950000px;}
.yd_c00268{bottom:891.000000px;}
.yc_c00268{bottom:922.050000px;}
.yb_c00268{bottom:953.100000px;}
.ya_c00268{bottom:984.150000px;}
.y9_c00268{bottom:1015.200000px;}
.y8_c00268{bottom:1046.880000px;}
.y7_c00268{bottom:1079.280000px;}
.y6_c00268{bottom:1110.330000px;}
.y5_c00268{bottom:1131.030000px;}
.y4_c00268{bottom:1150.920000px;}
.y3_c00268{bottom:1166.404500px;}
.y2_c00268{bottom:1181.970000px;}
.y1_c00268{bottom:1197.450000px;}
.hb_c00268{height:38.158594px;}
.h6_c00268{height:50.027344px;}
.h3_c00268{height:52.971680px;}
.h2_c00268{height:52.998047px;}
.hc_c00268{height:59.004492px;}
.h4_c00268{height:70.664062px;}
.h5_c00268{height:73.991602px;}
.ha_c00268{height:143.542969px;}
.h7_c00268{height:144.035508px;}
.h9_c00268{height:179.902969px;}
.h8_c00268{height:180.395508px;}
.h0_c00268{height:1262.880000px;}
.h1_c00268{height:1263.000000px;}
.w0_c00268{width:893.070000px;}
.w1_c00268{width:893.250000px;}
.x0_c00268{left:0.000000px;}
.x3_c00268{left:127.620000px;}
.x4_c00268{left:303.570000px;}
.x6_c00268{left:423.450000px;}
.x2_c00268{left:425.160000px;}
.x1_c00268{left:446.580000px;}
.x5_c00268{left:589.950000px;}
.x7_c00268{left:738.540000px;}
@media print{
.v8_c00268{vertical-align:-18.560000pt;}
.v6_c00268{vertical-align:-13.120000pt;}
.v3_c00268{vertical-align:-9.280000pt;}
.v0_c00268{vertical-align:0.000000pt;}
.v7_c00268{vertical-align:13.120000pt;}
.v1_c00268{vertical-align:24.000000pt;}
.v4_c00268{vertical-align:32.320000pt;}
.v2_c00268{vertical-align:37.440000pt;}
.v5_c00268{vertical-align:69.760000pt;}
.ls1c_c00268{letter-spacing:-0.512000pt;}
.ls1b_c00268{letter-spacing:-0.192000pt;}
.ls17_c00268{letter-spacing:-0.136320pt;}
.ls15_c00268{letter-spacing:-0.096000pt;}
.ls18_c00268{letter-spacing:-0.090880pt;}
.ls1a_c00268{letter-spacing:-0.064000pt;}
.ls1d_c00268{letter-spacing:-0.053440pt;}
.ls16_c00268{letter-spacing:-0.045440pt;}
.ls14_c00268{letter-spacing:0.000000pt;}
.ls0_c00268{letter-spacing:0.064000pt;}
.ls19_c00268{letter-spacing:0.090880pt;}
.ls2_c00268{letter-spacing:0.128000pt;}
.ls4_c00268{letter-spacing:0.160000pt;}
.ls13_c00268{letter-spacing:0.160320pt;}
.lsd_c00268{letter-spacing:0.170240pt;}
.ls5_c00268{letter-spacing:0.640000pt;}
.ls9_c00268{letter-spacing:0.652800pt;}
.ls6_c00268{letter-spacing:1.708480pt;}
.ls12_c00268{letter-spacing:3.259840pt;}
.ls3_c00268{letter-spacing:4.480000pt;}
.lsc_c00268{letter-spacing:5.760000pt;}
.ls8_c00268{letter-spacing:5.772800pt;}
.lsb_c00268{letter-spacing:6.080000pt;}
.ls1_c00268{letter-spacing:7.360000pt;}
.lse_c00268{letter-spacing:8.320000pt;}
.ls11_c00268{letter-spacing:10.880000pt;}
.lsa_c00268{letter-spacing:16.000000pt;}
.ls10_c00268{letter-spacing:17.792000pt;}
.lsf_c00268{letter-spacing:20.410240pt;}
.ls7_c00268{letter-spacing:23.360000pt;}
.ws4_c00268{word-spacing:-64.000000pt;}
.ws6_c00268{word-spacing:-45.530880pt;}
.ws1_c00268{word-spacing:-45.440000pt;}
.ws2_c00268{word-spacing:-45.394560pt;}
.ws5_c00268{word-spacing:-45.349120pt;}
.ws3_c00268{word-spacing:-45.303680pt;}
.ws0_c00268{word-spacing:-16.000000pt;}
.ws7_c00268{word-spacing:-15.936000pt;}
.ws8_c00268{word-spacing:-15.808000pt;}
.wsc_c00268{word-spacing:-13.360000pt;}
.ws9_c00268{word-spacing:-10.810240pt;}
.wsb_c00268{word-spacing:-8.640000pt;}
.ws3a_c00268{word-spacing:-0.374080pt;}
.ws11_c00268{word-spacing:-0.128000pt;}
.ws17_c00268{word-spacing:-0.064000pt;}
.ws38_c00268{word-spacing:-0.053440pt;}
.wsd_c00268{word-spacing:0.000000pt;}
.wsf_c00268{word-spacing:0.144000pt;}
.ws39_c00268{word-spacing:0.160320pt;}
.wse_c00268{word-spacing:0.240000pt;}
.ws25_c00268{word-spacing:1.856000pt;}
.ws18_c00268{word-spacing:1.920000pt;}
.ws37_c00268{word-spacing:3.099520pt;}
.ws36_c00268{word-spacing:3.313280pt;}
.wsa_c00268{word-spacing:3.712000pt;}
.ws1b_c00268{word-spacing:4.416000pt;}
.ws1a_c00268{word-spacing:4.480000pt;}
.ws2b_c00268{word-spacing:5.696000pt;}
.ws2a_c00268{word-spacing:6.080000pt;}
.ws19_c00268{word-spacing:7.040000pt;}
.ws14_c00268{word-spacing:7.360000pt;}
.ws2e_c00268{word-spacing:7.616000pt;}
.ws2f_c00268{word-spacing:7.936000pt;}
.ws31_c00268{word-spacing:8.256000pt;}
.ws2d_c00268{word-spacing:8.320000pt;}
.ws1c_c00268{word-spacing:9.216000pt;}
.ws1d_c00268{word-spacing:9.280000pt;}
.ws29_c00268{word-spacing:9.856000pt;}
.ws28_c00268{word-spacing:9.920000pt;}
.ws35_c00268{word-spacing:10.816000pt;}
.ws34_c00268{word-spacing:10.880000pt;}
.ws13_c00268{word-spacing:11.456000pt;}
.ws26_c00268{word-spacing:11.776000pt;}
.ws27_c00268{word-spacing:11.840000pt;}
.ws2c_c00268{word-spacing:12.352000pt;}
.ws1f_c00268{word-spacing:12.992000pt;}
.ws1e_c00268{word-spacing:13.120000pt;}
.ws30_c00268{word-spacing:14.016000pt;}
.ws23_c00268{word-spacing:15.936000pt;}
.ws24_c00268{word-spacing:16.000000pt;}
.ws15_c00268{word-spacing:18.432000pt;}
.ws16_c00268{word-spacing:18.560000pt;}
.ws22_c00268{word-spacing:18.880000pt;}
.ws21_c00268{word-spacing:23.296000pt;}
.ws20_c00268{word-spacing:23.360000pt;}
.ws12_c00268{word-spacing:33.856000pt;}
.ws10_c00268{word-spacing:33.920000pt;}
.ws33_c00268{word-spacing:49.856000pt;}
.ws32_c00268{word-spacing:50.240000pt;}
._c_c00268{margin-left:-5.075200pt;}
._b_c00268{margin-left:-3.923200pt;}
._1_c00268{margin-left:-0.940800pt;}
._0_c00268{width:1.084800pt;}
._9_c00268{width:2.009600pt;}
._5_c00268{width:2.944000pt;}
._8_c00268{width:5.916800pt;}
._a_c00268{width:8.138880pt;}
._4_c00268{width:9.516800pt;}
._e_c00268{width:10.499200pt;}
._7_c00268{width:11.776000pt;}
._6_c00268{width:13.312000pt;}
._d_c00268{width:14.272000pt;}
._3_c00268{width:18.604800pt;}
._2_c00268{width:33.881600pt;}
.fs5_c00268{font-size:34.560000pt;}
.fs4_c00268{font-size:37.440000pt;}
.fs2_c00268{font-size:42.560000pt;}
.fs3_c00268{font-size:45.440000pt;}
.fs0_c00268{font-size:48.000000pt;}
.fs6_c00268{font-size:53.440000pt;}
.fs1_c00268{font-size:64.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y27_c00268{bottom:50.880000pt;}
.y26_c00268{bottom:97.596160pt;}
.y25_c00268{bottom:117.520000pt;}
.y28_c00268{bottom:128.800000pt;}
.y24_c00268{bottom:186.640000pt;}
.y23_c00268{bottom:214.240000pt;}
.y22_c00268{bottom:241.840000pt;}
.y21_c00268{bottom:269.520000pt;}
.y20_c00268{bottom:297.680000pt;}
.y1f_c00268{bottom:325.680000pt;}
.y1e_c00268{bottom:353.280000pt;}
.y1d_c00268{bottom:380.880000pt;}
.y1c_c00268{bottom:408.480000pt;}
.y1b_c00268{bottom:436.080000pt;}
.y1a_c00268{bottom:463.680000pt;}
.y19_c00268{bottom:491.280000pt;}
.y18_c00268{bottom:518.880000pt;}
.y17_c00268{bottom:545.360000pt;}
.y16_c00268{bottom:553.440000pt;}
.y15_c00268{bottom:586.400000pt;}
.y14_c00268{bottom:612.960000pt;}
.y13_c00268{bottom:621.040000pt;}
.y12_c00268{bottom:654.000000pt;}
.y11_c00268{bottom:681.600000pt;}
.y10_c00268{bottom:709.200000pt;}
.yf_c00268{bottom:736.800000pt;}
.ye_c00268{bottom:764.400000pt;}
.yd_c00268{bottom:792.000000pt;}
.yc_c00268{bottom:819.600000pt;}
.yb_c00268{bottom:847.200000pt;}
.ya_c00268{bottom:874.800000pt;}
.y9_c00268{bottom:902.400000pt;}
.y8_c00268{bottom:930.560000pt;}
.y7_c00268{bottom:959.360000pt;}
.y6_c00268{bottom:986.960000pt;}
.y5_c00268{bottom:1005.360000pt;}
.y4_c00268{bottom:1023.040000pt;}
.y3_c00268{bottom:1036.804000pt;}
.y2_c00268{bottom:1050.640000pt;}
.y1_c00268{bottom:1064.400000pt;}
.hb_c00268{height:33.918750pt;}
.h6_c00268{height:44.468750pt;}
.h3_c00268{height:47.085938pt;}
.h2_c00268{height:47.109375pt;}
.hc_c00268{height:52.448437pt;}
.h4_c00268{height:62.812500pt;}
.h5_c00268{height:65.770312pt;}
.ha_c00268{height:127.593750pt;}
.h7_c00268{height:128.031563pt;}
.h9_c00268{height:159.913750pt;}
.h8_c00268{height:160.351563pt;}
.h0_c00268{height:1122.560000pt;}
.h1_c00268{height:1122.666667pt;}
.w0_c00268{width:793.840000pt;}
.w1_c00268{width:794.000000pt;}
.x0_c00268{left:0.000000pt;}
.x3_c00268{left:113.440000pt;}
.x4_c00268{left:269.840000pt;}
.x6_c00268{left:376.400000pt;}
.x2_c00268{left:377.920000pt;}
.x1_c00268{left:396.960000pt;}
.x5_c00268{left:524.400000pt;}
.x7_c00268{left:656.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_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_fdb3b0b0d12a329dea47c5d2.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_482e3ae402070edf88554940.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;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_c00269;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00269;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00269{font-family:ff5_c00269;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00269;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00269{font-family:ff6_c00269;line-height:1.142090;font-style:normal;font-weight: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_c00269;src:url('chunks/assets/font_956f0efab621f173472bc7d9.woff2')format("woff");}.ff7_c00269{font-family:ff7_c00269;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:ff8_c00269;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00269{font-family:ff8_c00269;line-height:1.432129;font-style: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);}
.v1_c00269{vertical-align:-61.938000px;}
.v2_c00269{vertical-align:-14.760000px;}
.v0_c00269{vertical-align:0.000000px;}
.v3_c00269{vertical-align:14.759400px;}
.v4_c00269{vertical-align:27.000600px;}
.ls10_c00269{letter-spacing:-0.432000px;}
.ls11_c00269{letter-spacing:-0.360000px;}
.ls14_c00269{letter-spacing:-0.216000px;}
.ls13_c00269{letter-spacing:-0.072000px;}
.lsf_c00269{letter-spacing:0.000000px;}
.ls7_c00269{letter-spacing:0.072000px;}
.ls9_c00269{letter-spacing:0.144000px;}
.ls12_c00269{letter-spacing:0.191520px;}
.lsa_c00269{letter-spacing:8.640000px;}
.ls8_c00269{letter-spacing:9.720000px;}
.ls1_c00269{letter-spacing:12.600000px;}
.lse_c00269{letter-spacing:12.960000px;}
.ls6_c00269{letter-spacing:14.760000px;}
.ls2_c00269{letter-spacing:18.720000px;}
.ls5_c00269{letter-spacing:20.016000px;}
.ls3_c00269{letter-spacing:22.601520px;}
.lsb_c00269{letter-spacing:22.961520px;}
.ls4_c00269{letter-spacing:23.321520px;}
.lsd_c00269{letter-spacing:27.360000px;}
.lsc_c00269{letter-spacing:30.744000px;}
.ls0_c00269{letter-spacing:319.518000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00269{word-spacing:-72.000000px;}
.ws4_c00269{word-spacing:-18.144000px;}
.ws5_c00269{word-spacing:-18.000000px;}
.ws6_c00269{word-spacing:-17.928000px;}
.ws0_c00269{word-spacing:-17.568000px;}
.ws3_c00269{word-spacing:-15.840000px;}
.ws20_c00269{word-spacing:-0.191520px;}
.ws8_c00269{word-spacing:-0.162000px;}
.ws15_c00269{word-spacing:-0.144000px;}
.wsb_c00269{word-spacing:-0.072000px;}
.ws7_c00269{word-spacing:0.000000px;}
.ws2e_c00269{word-spacing:0.216000px;}
.ws17_c00269{word-spacing:0.360000px;}
.ws1c_c00269{word-spacing:0.576000px;}
.ws2a_c00269{word-spacing:0.648000px;}
.ws28_c00269{word-spacing:2.088000px;}
.ws29_c00269{word-spacing:2.160000px;}
.ws22_c00269{word-spacing:3.600000px;}
.ws14_c00269{word-spacing:3.888000px;}
.ws1d_c00269{word-spacing:3.960000px;}
.ws2_c00269{word-spacing:4.176000px;}
.ws25_c00269{word-spacing:5.400000px;}
.ws2d_c00269{word-spacing:7.200000px;}
.ws13_c00269{word-spacing:7.920000px;}
.ws1f_c00269{word-spacing:8.568000px;}
.ws1e_c00269{word-spacing:8.640000px;}
.ws1b_c00269{word-spacing:9.576000px;}
.ws1a_c00269{word-spacing:9.720000px;}
.ws23_c00269{word-spacing:10.008000px;}
.ws24_c00269{word-spacing:10.080000px;}
.ws21_c00269{word-spacing:10.368000px;}
.wsa_c00269{word-spacing:11.448000px;}
.wsc_c00269{word-spacing:11.520000px;}
.wsd_c00269{word-spacing:12.528000px;}
.wse_c00269{word-spacing:12.600000px;}
.ws16_c00269{word-spacing:14.688000px;}
.ws19_c00269{word-spacing:15.768000px;}
.ws18_c00269{word-spacing:15.840000px;}
.ws10_c00269{word-spacing:16.128000px;}
.wsf_c00269{word-spacing:16.200000px;}
.ws11_c00269{word-spacing:18.648000px;}
.ws12_c00269{word-spacing:18.720000px;}
.ws9_c00269{word-spacing:19.800000px;}
.ws26_c00269{word-spacing:20.088000px;}
.ws27_c00269{word-spacing:20.160000px;}
.ws2c_c00269{word-spacing:27.288000px;}
.ws2b_c00269{word-spacing:27.360000px;}
._5_c00269{margin-left:-6.292800px;}
._4_c00269{margin-left:-4.593600px;}
._1_c00269{margin-left:-1.022400px;}
._0_c00269{width:1.087200px;}
._b_c00269{width:2.944800px;}
._a_c00269{width:3.960000px;}
._3_c00269{width:6.480000px;}
._8_c00269{width:7.912800px;}
._9_c00269{width:9.244800px;}
._2_c00269{width:11.160000px;}
._e_c00269{width:12.384000px;}
._7_c00269{width:13.464000px;}
._6_c00269{width:14.760000px;}
._c_c00269{width:19.569600px;}
._d_c00269{width:21.132000px;}
.fc0_c00269{color:rgb(0,0,0);}
.fs3_c00269{font-size:47.880000px;}
.fs2_c00269{font-size:51.120000px;}
.fs0_c00269{font-size:54.000000px;}
.fs1_c00269{font-size:72.000000px;}
.y0_c00269{bottom:0.000000px;}
.y26_c00269{bottom:57.240000px;}
.y25_c00269{bottom:112.950000px;}
.y24_c00269{bottom:144.000000px;}
.y23_c00269{bottom:175.050000px;}
.y22_c00269{bottom:206.100000px;}
.y21_c00269{bottom:237.330000px;}
.y20_c00269{bottom:268.830000px;}
.y1f_c00269{bottom:299.880000px;}
.y1e_c00269{bottom:331.110000px;}
.y1d_c00269{bottom:362.610000px;}
.y1c_c00269{bottom:393.660000px;}
.y1b_c00269{bottom:424.710000px;}
.y1a_c00269{bottom:455.760000px;}
.y19_c00269{bottom:486.810000px;}
.y18_c00269{bottom:517.859850px;}
.y17_c00269{bottom:548.819850px;}
.y16_c00269{bottom:579.869850px;}
.y15_c00269{bottom:610.919850px;}
.y14_c00269{bottom:641.969850px;}
.y13_c00269{bottom:673.019850px;}
.y12_c00269{bottom:704.069850px;}
.y11_c00269{bottom:735.839850px;}
.y10_c00269{bottom:768.239850px;}
.yf_c00269{bottom:799.289850px;}
.ye_c00269{bottom:830.339850px;}
.yd_c00269{bottom:861.480000px;}
.yc_c00269{bottom:892.980000px;}
.yb_c00269{bottom:924.030000px;}
.ya_c00269{bottom:955.080000px;}
.y9_c00269{bottom:986.130000px;}
.y8_c00269{bottom:1017.180000px;}
.y7_c00269{bottom:1048.230000px;}
.y6_c00269{bottom:1079.280000px;}
.y5_c00269{bottom:1110.330000px;}
.y4_c00269{bottom:1131.030000px;}
.y3_c00269{bottom:1150.915500px;}
.y2_c00269{bottom:1166.400000px;}
.y1_c00269{bottom:1197.450000px;}
.h4_c00269{height:50.027344px;}
.h2_c00269{height:52.998047px;}
.h3_c00269{height:70.664062px;}
.h6_c00269{height:73.992202px;}
.h7_c00269{height:75.093750px;}
.h5_c00269{height:143.542969px;}
.h0_c00269{height:1262.880000px;}
.h1_c00269{height:1263.000000px;}
.w0_c00269{width:893.070000px;}
.w1_c00269{width:893.250000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:127.620000px;}
.x3_c00269{left:154.620000px;}
.x1_c00269{left:446.580000px;}
@media print{
.v1_c00269{vertical-align:-55.056000pt;}
.v2_c00269{vertical-align:-13.120000pt;}
.v0_c00269{vertical-align:0.000000pt;}
.v3_c00269{vertical-align:13.119467pt;}
.v4_c00269{vertical-align:24.000533pt;}
.ls10_c00269{letter-spacing:-0.384000pt;}
.ls11_c00269{letter-spacing:-0.320000pt;}
.ls14_c00269{letter-spacing:-0.192000pt;}
.ls13_c00269{letter-spacing:-0.064000pt;}
.lsf_c00269{letter-spacing:0.000000pt;}
.ls7_c00269{letter-spacing:0.064000pt;}
.ls9_c00269{letter-spacing:0.128000pt;}
.ls12_c00269{letter-spacing:0.170240pt;}
.lsa_c00269{letter-spacing:7.680000pt;}
.ls8_c00269{letter-spacing:8.640000pt;}
.ls1_c00269{letter-spacing:11.200000pt;}
.lse_c00269{letter-spacing:11.520000pt;}
.ls6_c00269{letter-spacing:13.120000pt;}
.ls2_c00269{letter-spacing:16.640000pt;}
.ls5_c00269{letter-spacing:17.792000pt;}
.ls3_c00269{letter-spacing:20.090240pt;}
.lsb_c00269{letter-spacing:20.410240pt;}
.ls4_c00269{letter-spacing:20.730240pt;}
.lsd_c00269{letter-spacing:24.320000pt;}
.lsc_c00269{letter-spacing:27.328000pt;}
.ls0_c00269{letter-spacing:284.016000pt;}
.ws1_c00269{word-spacing:-64.000000pt;}
.ws4_c00269{word-spacing:-16.128000pt;}
.ws5_c00269{word-spacing:-16.000000pt;}
.ws6_c00269{word-spacing:-15.936000pt;}
.ws0_c00269{word-spacing:-15.616000pt;}
.ws3_c00269{word-spacing:-14.080000pt;}
.ws20_c00269{word-spacing:-0.170240pt;}
.ws8_c00269{word-spacing:-0.144000pt;}
.ws15_c00269{word-spacing:-0.128000pt;}
.wsb_c00269{word-spacing:-0.064000pt;}
.ws7_c00269{word-spacing:0.000000pt;}
.ws2e_c00269{word-spacing:0.192000pt;}
.ws17_c00269{word-spacing:0.320000pt;}
.ws1c_c00269{word-spacing:0.512000pt;}
.ws2a_c00269{word-spacing:0.576000pt;}
.ws28_c00269{word-spacing:1.856000pt;}
.ws29_c00269{word-spacing:1.920000pt;}
.ws22_c00269{word-spacing:3.200000pt;}
.ws14_c00269{word-spacing:3.456000pt;}
.ws1d_c00269{word-spacing:3.520000pt;}
.ws2_c00269{word-spacing:3.712000pt;}
.ws25_c00269{word-spacing:4.800000pt;}
.ws2d_c00269{word-spacing:6.400000pt;}
.ws13_c00269{word-spacing:7.040000pt;}
.ws1f_c00269{word-spacing:7.616000pt;}
.ws1e_c00269{word-spacing:7.680000pt;}
.ws1b_c00269{word-spacing:8.512000pt;}
.ws1a_c00269{word-spacing:8.640000pt;}
.ws23_c00269{word-spacing:8.896000pt;}
.ws24_c00269{word-spacing:8.960000pt;}
.ws21_c00269{word-spacing:9.216000pt;}
.wsa_c00269{word-spacing:10.176000pt;}
.wsc_c00269{word-spacing:10.240000pt;}
.wsd_c00269{word-spacing:11.136000pt;}
.wse_c00269{word-spacing:11.200000pt;}
.ws16_c00269{word-spacing:13.056000pt;}
.ws19_c00269{word-spacing:14.016000pt;}
.ws18_c00269{word-spacing:14.080000pt;}
.ws10_c00269{word-spacing:14.336000pt;}
.wsf_c00269{word-spacing:14.400000pt;}
.ws11_c00269{word-spacing:16.576000pt;}
.ws12_c00269{word-spacing:16.640000pt;}
.ws9_c00269{word-spacing:17.600000pt;}
.ws26_c00269{word-spacing:17.856000pt;}
.ws27_c00269{word-spacing:17.920000pt;}
.ws2c_c00269{word-spacing:24.256000pt;}
.ws2b_c00269{word-spacing:24.320000pt;}
._5_c00269{margin-left:-5.593600pt;}
._4_c00269{margin-left:-4.083200pt;}
._1_c00269{margin-left:-0.908800pt;}
._0_c00269{width:0.966400pt;}
._b_c00269{width:2.617600pt;}
._a_c00269{width:3.520000pt;}
._3_c00269{width:5.760000pt;}
._8_c00269{width:7.033600pt;}
._9_c00269{width:8.217600pt;}
._2_c00269{width:9.920000pt;}
._e_c00269{width:11.008000pt;}
._7_c00269{width:11.968000pt;}
._6_c00269{width:13.120000pt;}
._c_c00269{width:17.395200pt;}
._d_c00269{width:18.784000pt;}
.fs3_c00269{font-size:42.560000pt;}
.fs2_c00269{font-size:45.440000pt;}
.fs0_c00269{font-size:48.000000pt;}
.fs1_c00269{font-size:64.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y26_c00269{bottom:50.880000pt;}
.y25_c00269{bottom:100.400000pt;}
.y24_c00269{bottom:128.000000pt;}
.y23_c00269{bottom:155.600000pt;}
.y22_c00269{bottom:183.200000pt;}
.y21_c00269{bottom:210.960000pt;}
.y20_c00269{bottom:238.960000pt;}
.y1f_c00269{bottom:266.560000pt;}
.y1e_c00269{bottom:294.320000pt;}
.y1d_c00269{bottom:322.320000pt;}
.y1c_c00269{bottom:349.920000pt;}
.y1b_c00269{bottom:377.520000pt;}
.y1a_c00269{bottom:405.120000pt;}
.y19_c00269{bottom:432.720000pt;}
.y18_c00269{bottom:460.319867pt;}
.y17_c00269{bottom:487.839867pt;}
.y16_c00269{bottom:515.439867pt;}
.y15_c00269{bottom:543.039867pt;}
.y14_c00269{bottom:570.639867pt;}
.y13_c00269{bottom:598.239867pt;}
.y12_c00269{bottom:625.839867pt;}
.y11_c00269{bottom:654.079867pt;}
.y10_c00269{bottom:682.879867pt;}
.yf_c00269{bottom:710.479867pt;}
.ye_c00269{bottom:738.079867pt;}
.yd_c00269{bottom:765.760000pt;}
.yc_c00269{bottom:793.760000pt;}
.yb_c00269{bottom:821.360000pt;}
.ya_c00269{bottom:848.960000pt;}
.y9_c00269{bottom:876.560000pt;}
.y8_c00269{bottom:904.160000pt;}
.y7_c00269{bottom:931.760000pt;}
.y6_c00269{bottom:959.360000pt;}
.y5_c00269{bottom:986.960000pt;}
.y4_c00269{bottom:1005.360000pt;}
.y3_c00269{bottom:1023.036000pt;}
.y2_c00269{bottom:1036.800000pt;}
.y1_c00269{bottom:1064.400000pt;}
.h4_c00269{height:44.468750pt;}
.h2_c00269{height:47.109375pt;}
.h3_c00269{height:62.812500pt;}
.h6_c00269{height:65.770846pt;}
.h7_c00269{height:66.750000pt;}
.h5_c00269{height:127.593750pt;}
.h0_c00269{height:1122.560000pt;}
.h1_c00269{height:1122.666667pt;}
.w0_c00269{width:793.840000pt;}
.w1_c00269{width:794.000000pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:113.440000pt;}
.x3_c00269{left:137.440000pt;}
.x1_c00269{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa3395e01c8bb9161d0abe24.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_ec76820c4faed2a267814211.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;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:ff6_c00270;src:url('chunks/assets/font_9313569d98bfb37c6c40cc55.woff2')format("woff");}.ff6_c00270{font-family:ff6_c00270;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:ff7_c00270;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7_c00270{font-family:ff7_c00270;line-height:1.432129;font-style: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);}
.v1_c00270{vertical-align:-84.600000px;}
.v2_c00270{vertical-align:-14.760000px;}
.v0_c00270{vertical-align:0.000000px;}
.v3_c00270{vertical-align:14.760000px;}
.v4_c00270{vertical-align:27.000000px;}
.ls11_c00270{letter-spacing:-0.360000px;}
.ls10_c00270{letter-spacing:-0.108000px;}
.ls13_c00270{letter-spacing:-0.072000px;}
.lsf_c00270{letter-spacing:0.000000px;}
.ls7_c00270{letter-spacing:0.072000px;}
.ls5_c00270{letter-spacing:0.144000px;}
.ls3_c00270{letter-spacing:0.180000px;}
.ls12_c00270{letter-spacing:0.191520px;}
.ls4_c00270{letter-spacing:0.360000px;}
.ls2_c00270{letter-spacing:6.480000px;}
.lsb_c00270{letter-spacing:7.200000px;}
.lsc_c00270{letter-spacing:13.320000px;}
.lsd_c00270{letter-spacing:16.920000px;}
.ls6_c00270{letter-spacing:19.440000px;}
.lsa_c00270{letter-spacing:20.016000px;}
.lse_c00270{letter-spacing:21.960000px;}
.ls1_c00270{letter-spacing:22.601520px;}
.ls9_c00270{letter-spacing:22.961520px;}
.ls8_c00270{letter-spacing:30.744000px;}
.ls0_c00270{letter-spacing:90.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:-72.000000px;}
.ws4_c00270{word-spacing:-18.144000px;}
.ws2_c00270{word-spacing:-18.000000px;}
.ws3_c00270{word-spacing:-17.928000px;}
.ws18_c00270{word-spacing:-0.191520px;}
.ws16_c00270{word-spacing:-0.072000px;}
.ws5_c00270{word-spacing:0.000000px;}
.ws7_c00270{word-spacing:0.162000px;}
.ws6_c00270{word-spacing:0.270000px;}
.ws11_c00270{word-spacing:0.288000px;}
.wsd_c00270{word-spacing:0.360000px;}
.ws2a_c00270{word-spacing:0.576000px;}
.ws27_c00270{word-spacing:0.648000px;}
.ws28_c00270{word-spacing:0.720000px;}
.ws8_c00270{word-spacing:1.008000px;}
.ws9_c00270{word-spacing:1.080000px;}
.ws14_c00270{word-spacing:1.800000px;}
.ws29_c00270{word-spacing:2.160000px;}
.ws1_c00270{word-spacing:4.176000px;}
.ws1b_c00270{word-spacing:5.040000px;}
.ws13_c00270{word-spacing:5.976000px;}
.ws12_c00270{word-spacing:6.120000px;}
.wsa_c00270{word-spacing:6.336000px;}
.wsb_c00270{word-spacing:6.408000px;}
.wsc_c00270{word-spacing:6.480000px;}
.ws1e_c00270{word-spacing:6.768000px;}
.ws2b_c00270{word-spacing:7.056000px;}
.ws1c_c00270{word-spacing:7.128000px;}
.ws1d_c00270{word-spacing:7.200000px;}
.ws21_c00270{word-spacing:9.360000px;}
.ws24_c00270{word-spacing:11.808000px;}
.ws20_c00270{word-spacing:12.888000px;}
.ws1f_c00270{word-spacing:12.960000px;}
.ws26_c00270{word-spacing:16.488000px;}
.ws25_c00270{word-spacing:16.920000px;}
.ws1a_c00270{word-spacing:19.656000px;}
.ws19_c00270{word-spacing:19.728000px;}
.ws17_c00270{word-spacing:19.800000px;}
.ws10_c00270{word-spacing:20.088000px;}
.ws15_c00270{word-spacing:20.160000px;}
.wsf_c00270{word-spacing:20.736000px;}
.ws2e_c00270{word-spacing:21.888000px;}
.ws2f_c00270{word-spacing:21.960000px;}
.ws23_c00270{word-spacing:22.608000px;}
.ws22_c00270{word-spacing:22.680000px;}
.ws2c_c00270{word-spacing:31.896000px;}
.ws2d_c00270{word-spacing:32.040000px;}
.wse_c00270{word-spacing:38.448000px;}
._8_c00270{margin-left:-6.645600px;}
._2_c00270{margin-left:-4.557600px;}
._1_c00270{margin-left:-1.058400px;}
._0_c00270{width:1.220400px;}
._9_c00270{width:4.240800px;}
._3_c00270{width:5.551200px;}
._4_c00270{width:6.624000px;}
._a_c00270{width:9.360000px;}
._b_c00270{width:16.538400px;}
._7_c00270{width:18.762480px;}
._6_c00270{width:20.304000px;}
._5_c00270{width:38.520000px;}
.fc0_c00270{color:rgb(0,0,0);}
.fs3_c00270{font-size:47.880000px;}
.fs2_c00270{font-size:51.120000px;}
.fs0_c00270{font-size:54.000000px;}
.fs1_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y25_c00270{bottom:57.240000px;}
.y24_c00270{bottom:146.070000px;}
.y23_c00270{bottom:177.120000px;}
.y22_c00270{bottom:208.170000px;}
.y21_c00270{bottom:239.220000px;}
.y20_c00270{bottom:270.270000px;}
.y1f_c00270{bottom:301.320000px;}
.y1e_c00270{bottom:332.370000px;}
.y1d_c00270{bottom:363.420000px;}
.y1c_c00270{bottom:394.470000px;}
.y1b_c00270{bottom:425.520000px;}
.y1a_c00270{bottom:456.570000px;}
.y19_c00270{bottom:487.710000px;}
.y18_c00270{bottom:519.210000px;}
.y17_c00270{bottom:550.260000px;}
.y16_c00270{bottom:581.310000px;}
.y15_c00270{bottom:612.360000px;}
.y14_c00270{bottom:643.590000px;}
.y13_c00270{bottom:675.090000px;}
.y12_c00270{bottom:706.140000px;}
.y11_c00270{bottom:737.190000px;}
.y10_c00270{bottom:768.240000px;}
.yf_c00270{bottom:799.290000px;}
.ye_c00270{bottom:830.340000px;}
.yd_c00270{bottom:861.390000px;}
.yc_c00270{bottom:892.440000px;}
.yb_c00270{bottom:923.490000px;}
.ya_c00270{bottom:954.540000px;}
.y9_c00270{bottom:985.590000px;}
.y8_c00270{bottom:1016.640000px;}
.y7_c00270{bottom:1047.690000px;}
.y6_c00270{bottom:1078.740000px;}
.y5_c00270{bottom:1131.030000px;}
.y4_c00270{bottom:1150.920000px;}
.y3_c00270{bottom:1166.404500px;}
.y2_c00270{bottom:1181.970000px;}
.y1_c00270{bottom:1197.450000px;}
.h3_c00270{height:52.971680px;}
.h2_c00270{height:52.998047px;}
.h4_c00270{height:70.664062px;}
.h5_c00270{height:73.991602px;}
.h6_c00270{height:75.093750px;}
.h7_c00270{height:143.542969px;}
.h0_c00270{height:1262.880000px;}
.h1_c00270{height:1263.000000px;}
.w0_c00270{width:893.070000px;}
.w1_c00270{width:893.250000px;}
.x0_c00270{left:0.000000px;}
.x3_c00270{left:127.620000px;}
.x4_c00270{left:154.620000px;}
.x2_c00270{left:425.160000px;}
.x1_c00270{left:446.580000px;}
.x5_c00270{left:738.540000px;}
@media print{
.v1_c00270{vertical-align:-75.200000pt;}
.v2_c00270{vertical-align:-13.120000pt;}
.v0_c00270{vertical-align:0.000000pt;}
.v3_c00270{vertical-align:13.120000pt;}
.v4_c00270{vertical-align:24.000000pt;}
.ls11_c00270{letter-spacing:-0.320000pt;}
.ls10_c00270{letter-spacing:-0.096000pt;}
.ls13_c00270{letter-spacing:-0.064000pt;}
.lsf_c00270{letter-spacing:0.000000pt;}
.ls7_c00270{letter-spacing:0.064000pt;}
.ls5_c00270{letter-spacing:0.128000pt;}
.ls3_c00270{letter-spacing:0.160000pt;}
.ls12_c00270{letter-spacing:0.170240pt;}
.ls4_c00270{letter-spacing:0.320000pt;}
.ls2_c00270{letter-spacing:5.760000pt;}
.lsb_c00270{letter-spacing:6.400000pt;}
.lsc_c00270{letter-spacing:11.840000pt;}
.lsd_c00270{letter-spacing:15.040000pt;}
.ls6_c00270{letter-spacing:17.280000pt;}
.lsa_c00270{letter-spacing:17.792000pt;}
.lse_c00270{letter-spacing:19.520000pt;}
.ls1_c00270{letter-spacing:20.090240pt;}
.ls9_c00270{letter-spacing:20.410240pt;}
.ls8_c00270{letter-spacing:27.328000pt;}
.ls0_c00270{letter-spacing:80.000000pt;}
.ws0_c00270{word-spacing:-64.000000pt;}
.ws4_c00270{word-spacing:-16.128000pt;}
.ws2_c00270{word-spacing:-16.000000pt;}
.ws3_c00270{word-spacing:-15.936000pt;}
.ws18_c00270{word-spacing:-0.170240pt;}
.ws16_c00270{word-spacing:-0.064000pt;}
.ws5_c00270{word-spacing:0.000000pt;}
.ws7_c00270{word-spacing:0.144000pt;}
.ws6_c00270{word-spacing:0.240000pt;}
.ws11_c00270{word-spacing:0.256000pt;}
.wsd_c00270{word-spacing:0.320000pt;}
.ws2a_c00270{word-spacing:0.512000pt;}
.ws27_c00270{word-spacing:0.576000pt;}
.ws28_c00270{word-spacing:0.640000pt;}
.ws8_c00270{word-spacing:0.896000pt;}
.ws9_c00270{word-spacing:0.960000pt;}
.ws14_c00270{word-spacing:1.600000pt;}
.ws29_c00270{word-spacing:1.920000pt;}
.ws1_c00270{word-spacing:3.712000pt;}
.ws1b_c00270{word-spacing:4.480000pt;}
.ws13_c00270{word-spacing:5.312000pt;}
.ws12_c00270{word-spacing:5.440000pt;}
.wsa_c00270{word-spacing:5.632000pt;}
.wsb_c00270{word-spacing:5.696000pt;}
.wsc_c00270{word-spacing:5.760000pt;}
.ws1e_c00270{word-spacing:6.016000pt;}
.ws2b_c00270{word-spacing:6.272000pt;}
.ws1c_c00270{word-spacing:6.336000pt;}
.ws1d_c00270{word-spacing:6.400000pt;}
.ws21_c00270{word-spacing:8.320000pt;}
.ws24_c00270{word-spacing:10.496000pt;}
.ws20_c00270{word-spacing:11.456000pt;}
.ws1f_c00270{word-spacing:11.520000pt;}
.ws26_c00270{word-spacing:14.656000pt;}
.ws25_c00270{word-spacing:15.040000pt;}
.ws1a_c00270{word-spacing:17.472000pt;}
.ws19_c00270{word-spacing:17.536000pt;}
.ws17_c00270{word-spacing:17.600000pt;}
.ws10_c00270{word-spacing:17.856000pt;}
.ws15_c00270{word-spacing:17.920000pt;}
.wsf_c00270{word-spacing:18.432000pt;}
.ws2e_c00270{word-spacing:19.456000pt;}
.ws2f_c00270{word-spacing:19.520000pt;}
.ws23_c00270{word-spacing:20.096000pt;}
.ws22_c00270{word-spacing:20.160000pt;}
.ws2c_c00270{word-spacing:28.352000pt;}
.ws2d_c00270{word-spacing:28.480000pt;}
.wse_c00270{word-spacing:34.176000pt;}
._8_c00270{margin-left:-5.907200pt;}
._2_c00270{margin-left:-4.051200pt;}
._1_c00270{margin-left:-0.940800pt;}
._0_c00270{width:1.084800pt;}
._9_c00270{width:3.769600pt;}
._3_c00270{width:4.934400pt;}
._4_c00270{width:5.888000pt;}
._a_c00270{width:8.320000pt;}
._b_c00270{width:14.700800pt;}
._7_c00270{width:16.677760pt;}
._6_c00270{width:18.048000pt;}
._5_c00270{width:34.240000pt;}
.fs3_c00270{font-size:42.560000pt;}
.fs2_c00270{font-size:45.440000pt;}
.fs0_c00270{font-size:48.000000pt;}
.fs1_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y25_c00270{bottom:50.880000pt;}
.y24_c00270{bottom:129.840000pt;}
.y23_c00270{bottom:157.440000pt;}
.y22_c00270{bottom:185.040000pt;}
.y21_c00270{bottom:212.640000pt;}
.y20_c00270{bottom:240.240000pt;}
.y1f_c00270{bottom:267.840000pt;}
.y1e_c00270{bottom:295.440000pt;}
.y1d_c00270{bottom:323.040000pt;}
.y1c_c00270{bottom:350.640000pt;}
.y1b_c00270{bottom:378.240000pt;}
.y1a_c00270{bottom:405.840000pt;}
.y19_c00270{bottom:433.520000pt;}
.y18_c00270{bottom:461.520000pt;}
.y17_c00270{bottom:489.120000pt;}
.y16_c00270{bottom:516.720000pt;}
.y15_c00270{bottom:544.320000pt;}
.y14_c00270{bottom:572.080000pt;}
.y13_c00270{bottom:600.080000pt;}
.y12_c00270{bottom:627.680000pt;}
.y11_c00270{bottom:655.280000pt;}
.y10_c00270{bottom:682.880000pt;}
.yf_c00270{bottom:710.480000pt;}
.ye_c00270{bottom:738.080000pt;}
.yd_c00270{bottom:765.680000pt;}
.yc_c00270{bottom:793.280000pt;}
.yb_c00270{bottom:820.880000pt;}
.ya_c00270{bottom:848.480000pt;}
.y9_c00270{bottom:876.080000pt;}
.y8_c00270{bottom:903.680000pt;}
.y7_c00270{bottom:931.280000pt;}
.y6_c00270{bottom:958.880000pt;}
.y5_c00270{bottom:1005.360000pt;}
.y4_c00270{bottom:1023.040000pt;}
.y3_c00270{bottom:1036.804000pt;}
.y2_c00270{bottom:1050.640000pt;}
.y1_c00270{bottom:1064.400000pt;}
.h3_c00270{height:47.085938pt;}
.h2_c00270{height:47.109375pt;}
.h4_c00270{height:62.812500pt;}
.h5_c00270{height:65.770312pt;}
.h6_c00270{height:66.750000pt;}
.h7_c00270{height:127.593750pt;}
.h0_c00270{height:1122.560000pt;}
.h1_c00270{height:1122.666667pt;}
.w0_c00270{width:793.840000pt;}
.w1_c00270{width:794.000000pt;}
.x0_c00270{left:0.000000pt;}
.x3_c00270{left:113.440000pt;}
.x4_c00270{left:137.440000pt;}
.x2_c00270{left:377.920000pt;}
.x1_c00270{left:396.960000pt;}
.x5_c00270{left:656.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_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_4f05fe1b2ef34852692234f8.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_d75c5629e0a4b80458c05df1.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;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_c00271;src:url('chunks/assets/font_dd1ae4d37abcdd3e167403f0.woff2')format("woff");}.ff4_c00271{font-family:ff4_c00271;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:ff5_c00271;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00271{font-family:ff5_c00271;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00271;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff6_c00271{font-family:ff6_c00271;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00271;src:url('chunks/assets/font_f64c04f1f95b17ff010a939c.woff2')format("woff");}.ff7_c00271{font-family:ff7_c00271;line-height:3.333984;font-style:normal;font-weight: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_c00271;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff8_c00271{font-family:ff8_c00271;line-height:1.142090;font-style: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);}
.v2_c00271{vertical-align:-82.800000px;}
.v1_c00271{vertical-align:-61.938000px;}
.v6_c00271{vertical-align:-27.000000px;}
.v3_c00271{vertical-align:-14.760000px;}
.v0_c00271{vertical-align:0.000000px;}
.v4_c00271{vertical-align:14.760000px;}
.v5_c00271{vertical-align:27.000000px;}
.lsd_c00271{letter-spacing:-0.360000px;}
.lse_c00271{letter-spacing:-0.288000px;}
.lsc_c00271{letter-spacing:-0.216000px;}
.lsa_c00271{letter-spacing:0.000000px;}
.ls3_c00271{letter-spacing:0.072000px;}
.ls2_c00271{letter-spacing:0.144000px;}
.ls7_c00271{letter-spacing:0.180000px;}
.lsb_c00271{letter-spacing:0.191520px;}
.ls6_c00271{letter-spacing:1.800000px;}
.ls8_c00271{letter-spacing:5.040000px;}
.ls9_c00271{letter-spacing:5.400000px;}
.ls5_c00271{letter-spacing:22.961520px;}
.ls4_c00271{letter-spacing:30.744000px;}
.ls1_c00271{letter-spacing:90.000000px;}
.ls0_c00271{letter-spacing:319.518000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:-72.000000px;}
.ws16_c00271{word-spacing:-0.191520px;}
.ws3_c00271{word-spacing:-0.162000px;}
.wsa_c00271{word-spacing:-0.144000px;}
.ws7_c00271{word-spacing:-0.072000px;}
.ws2_c00271{word-spacing:0.000000px;}
.ws1f_c00271{word-spacing:0.216000px;}
.ws29_c00271{word-spacing:0.288000px;}
.ws6_c00271{word-spacing:0.720000px;}
.ws13_c00271{word-spacing:0.936000px;}
.ws8_c00271{word-spacing:1.296000px;}
.ws12_c00271{word-spacing:1.440000px;}
.ws9_c00271{word-spacing:1.800000px;}
.ws15_c00271{word-spacing:2.448000px;}
.ws14_c00271{word-spacing:2.520000px;}
.ws5_c00271{word-spacing:3.240000px;}
.ws4_c00271{word-spacing:3.528000px;}
.ws19_c00271{word-spacing:3.600000px;}
.ws18_c00271{word-spacing:3.888000px;}
.ws1_c00271{word-spacing:4.176000px;}
.ws22_c00271{word-spacing:4.320000px;}
.ws1e_c00271{word-spacing:4.968000px;}
.ws20_c00271{word-spacing:5.040000px;}
.wsd_c00271{word-spacing:6.120000px;}
.ws24_c00271{word-spacing:7.848000px;}
.ws25_c00271{word-spacing:10.008000px;}
.wsf_c00271{word-spacing:10.080000px;}
.ws10_c00271{word-spacing:10.368000px;}
.ws11_c00271{word-spacing:10.440000px;}
.ws1a_c00271{word-spacing:10.800000px;}
.wsb_c00271{word-spacing:11.088000px;}
.wsc_c00271{word-spacing:11.160000px;}
.ws28_c00271{word-spacing:12.888000px;}
.ws1c_c00271{word-spacing:14.328000px;}
.ws1d_c00271{word-spacing:14.400000px;}
.ws21_c00271{word-spacing:16.488000px;}
.ws17_c00271{word-spacing:18.360000px;}
.ws27_c00271{word-spacing:19.008000px;}
.ws26_c00271{word-spacing:19.296000px;}
.wse_c00271{word-spacing:19.440000px;}
.ws23_c00271{word-spacing:21.528000px;}
.ws1b_c00271{word-spacing:58.320000px;}
._2_c00271{margin-left:-4.176000px;}
._0_c00271{margin-left:-1.447200px;}
._3_c00271{width:1.605600px;}
._5_c00271{width:2.736000px;}
._4_c00271{width:3.744000px;}
._6_c00271{width:4.831200px;}
._a_c00271{width:8.020800px;}
._9_c00271{width:14.774400px;}
._1_c00271{width:15.976800px;}
._b_c00271{width:19.540800px;}
._8_c00271{width:57.960000px;}
._7_c00271{width:59.112000px;}
.fc0_c00271{color:rgb(0,0,0);}
.fs3_c00271{font-size:47.880000px;}
.fs2_c00271{font-size:51.120000px;}
.fs0_c00271{font-size:54.000000px;}
.fs1_c00271{font-size:72.000000px;}
.y0_c00271{bottom:0.000000px;}
.y24_c00271{bottom:57.240000px;}
.y23_c00271{bottom:144.000000px;}
.y22_c00271{bottom:175.770000px;}
.y21_c00271{bottom:208.170000px;}
.y20_c00271{bottom:239.220000px;}
.y1f_c00271{bottom:270.270000px;}
.y1e_c00271{bottom:301.500000px;}
.y1d_c00271{bottom:333.000000px;}
.y1c_c00271{bottom:363.960000px;}
.y1b_c00271{bottom:395.010000px;}
.y1a_c00271{bottom:426.060000px;}
.y19_c00271{bottom:457.110000px;}
.y18_c00271{bottom:488.160000px;}
.y17_c00271{bottom:519.390000px;}
.y16_c00271{bottom:550.890000px;}
.y15_c00271{bottom:581.940000px;}
.y14_c00271{bottom:612.990000px;}
.y13_c00271{bottom:644.040000px;}
.y12_c00271{bottom:675.090000px;}
.y11_c00271{bottom:706.140000px;}
.y10_c00271{bottom:737.190000px;}
.yf_c00271{bottom:768.240000px;}
.ye_c00271{bottom:799.290000px;}
.yd_c00271{bottom:830.340000px;}
.yc_c00271{bottom:861.390000px;}
.yb_c00271{bottom:892.440000px;}
.ya_c00271{bottom:923.490000px;}
.y9_c00271{bottom:954.540000px;}
.y8_c00271{bottom:985.680000px;}
.y7_c00271{bottom:1017.180000px;}
.y6_c00271{bottom:1048.230000px;}
.y5_c00271{bottom:1079.280000px;}
.y4_c00271{bottom:1131.030000px;}
.y3_c00271{bottom:1150.915500px;}
.y2_c00271{bottom:1166.400000px;}
.y1_c00271{bottom:1197.450000px;}
.h2_c00271{height:52.998047px;}
.h3_c00271{height:70.664062px;}
.h6_c00271{height:73.991602px;}
.h4_c00271{height:75.093750px;}
.h5_c00271{height:143.542969px;}
.h0_c00271{height:1262.880000px;}
.h1_c00271{height:1263.000000px;}
.w0_c00271{width:893.070000px;}
.w1_c00271{width:893.250000px;}
.x0_c00271{left:0.000000px;}
.x2_c00271{left:127.620000px;}
.x3_c00271{left:154.620000px;}
.x1_c00271{left:446.580000px;}
@media print{
.v2_c00271{vertical-align:-73.600000pt;}
.v1_c00271{vertical-align:-55.056000pt;}
.v6_c00271{vertical-align:-24.000000pt;}
.v3_c00271{vertical-align:-13.120000pt;}
.v0_c00271{vertical-align:0.000000pt;}
.v4_c00271{vertical-align:13.120000pt;}
.v5_c00271{vertical-align:24.000000pt;}
.lsd_c00271{letter-spacing:-0.320000pt;}
.lse_c00271{letter-spacing:-0.256000pt;}
.lsc_c00271{letter-spacing:-0.192000pt;}
.lsa_c00271{letter-spacing:0.000000pt;}
.ls3_c00271{letter-spacing:0.064000pt;}
.ls2_c00271{letter-spacing:0.128000pt;}
.ls7_c00271{letter-spacing:0.160000pt;}
.lsb_c00271{letter-spacing:0.170240pt;}
.ls6_c00271{letter-spacing:1.600000pt;}
.ls8_c00271{letter-spacing:4.480000pt;}
.ls9_c00271{letter-spacing:4.800000pt;}
.ls5_c00271{letter-spacing:20.410240pt;}
.ls4_c00271{letter-spacing:27.328000pt;}
.ls1_c00271{letter-spacing:80.000000pt;}
.ls0_c00271{letter-spacing:284.016000pt;}
.ws0_c00271{word-spacing:-64.000000pt;}
.ws16_c00271{word-spacing:-0.170240pt;}
.ws3_c00271{word-spacing:-0.144000pt;}
.wsa_c00271{word-spacing:-0.128000pt;}
.ws7_c00271{word-spacing:-0.064000pt;}
.ws2_c00271{word-spacing:0.000000pt;}
.ws1f_c00271{word-spacing:0.192000pt;}
.ws29_c00271{word-spacing:0.256000pt;}
.ws6_c00271{word-spacing:0.640000pt;}
.ws13_c00271{word-spacing:0.832000pt;}
.ws8_c00271{word-spacing:1.152000pt;}
.ws12_c00271{word-spacing:1.280000pt;}
.ws9_c00271{word-spacing:1.600000pt;}
.ws15_c00271{word-spacing:2.176000pt;}
.ws14_c00271{word-spacing:2.240000pt;}
.ws5_c00271{word-spacing:2.880000pt;}
.ws4_c00271{word-spacing:3.136000pt;}
.ws19_c00271{word-spacing:3.200000pt;}
.ws18_c00271{word-spacing:3.456000pt;}
.ws1_c00271{word-spacing:3.712000pt;}
.ws22_c00271{word-spacing:3.840000pt;}
.ws1e_c00271{word-spacing:4.416000pt;}
.ws20_c00271{word-spacing:4.480000pt;}
.wsd_c00271{word-spacing:5.440000pt;}
.ws24_c00271{word-spacing:6.976000pt;}
.ws25_c00271{word-spacing:8.896000pt;}
.wsf_c00271{word-spacing:8.960000pt;}
.ws10_c00271{word-spacing:9.216000pt;}
.ws11_c00271{word-spacing:9.280000pt;}
.ws1a_c00271{word-spacing:9.600000pt;}
.wsb_c00271{word-spacing:9.856000pt;}
.wsc_c00271{word-spacing:9.920000pt;}
.ws28_c00271{word-spacing:11.456000pt;}
.ws1c_c00271{word-spacing:12.736000pt;}
.ws1d_c00271{word-spacing:12.800000pt;}
.ws21_c00271{word-spacing:14.656000pt;}
.ws17_c00271{word-spacing:16.320000pt;}
.ws27_c00271{word-spacing:16.896000pt;}
.ws26_c00271{word-spacing:17.152000pt;}
.wse_c00271{word-spacing:17.280000pt;}
.ws23_c00271{word-spacing:19.136000pt;}
.ws1b_c00271{word-spacing:51.840000pt;}
._2_c00271{margin-left:-3.712000pt;}
._0_c00271{margin-left:-1.286400pt;}
._3_c00271{width:1.427200pt;}
._5_c00271{width:2.432000pt;}
._4_c00271{width:3.328000pt;}
._6_c00271{width:4.294400pt;}
._a_c00271{width:7.129600pt;}
._9_c00271{width:13.132800pt;}
._1_c00271{width:14.201600pt;}
._b_c00271{width:17.369600pt;}
._8_c00271{width:51.520000pt;}
._7_c00271{width:52.544000pt;}
.fs3_c00271{font-size:42.560000pt;}
.fs2_c00271{font-size:45.440000pt;}
.fs0_c00271{font-size:48.000000pt;}
.fs1_c00271{font-size:64.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y24_c00271{bottom:50.880000pt;}
.y23_c00271{bottom:128.000000pt;}
.y22_c00271{bottom:156.240000pt;}
.y21_c00271{bottom:185.040000pt;}
.y20_c00271{bottom:212.640000pt;}
.y1f_c00271{bottom:240.240000pt;}
.y1e_c00271{bottom:268.000000pt;}
.y1d_c00271{bottom:296.000000pt;}
.y1c_c00271{bottom:323.520000pt;}
.y1b_c00271{bottom:351.120000pt;}
.y1a_c00271{bottom:378.720000pt;}
.y19_c00271{bottom:406.320000pt;}
.y18_c00271{bottom:433.920000pt;}
.y17_c00271{bottom:461.680000pt;}
.y16_c00271{bottom:489.680000pt;}
.y15_c00271{bottom:517.280000pt;}
.y14_c00271{bottom:544.880000pt;}
.y13_c00271{bottom:572.480000pt;}
.y12_c00271{bottom:600.080000pt;}
.y11_c00271{bottom:627.680000pt;}
.y10_c00271{bottom:655.280000pt;}
.yf_c00271{bottom:682.880000pt;}
.ye_c00271{bottom:710.480000pt;}
.yd_c00271{bottom:738.080000pt;}
.yc_c00271{bottom:765.680000pt;}
.yb_c00271{bottom:793.280000pt;}
.ya_c00271{bottom:820.880000pt;}
.y9_c00271{bottom:848.480000pt;}
.y8_c00271{bottom:876.160000pt;}
.y7_c00271{bottom:904.160000pt;}
.y6_c00271{bottom:931.760000pt;}
.y5_c00271{bottom:959.360000pt;}
.y4_c00271{bottom:1005.360000pt;}
.y3_c00271{bottom:1023.036000pt;}
.y2_c00271{bottom:1036.800000pt;}
.y1_c00271{bottom:1064.400000pt;}
.h2_c00271{height:47.109375pt;}
.h3_c00271{height:62.812500pt;}
.h6_c00271{height:65.770312pt;}
.h4_c00271{height:66.750000pt;}
.h5_c00271{height:127.593750pt;}
.h0_c00271{height:1122.560000pt;}
.h1_c00271{height:1122.666667pt;}
.w0_c00271{width:793.840000pt;}
.w1_c00271{width:794.000000pt;}
.x0_c00271{left:0.000000pt;}
.x2_c00271{left:113.440000pt;}
.x3_c00271{left:137.440000pt;}
.x1_c00271{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fefd3de7b8f2aaf7caf52136.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_d7c2e6ebcfbcabb76e11be12.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;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_c00272;src:url('chunks/assets/font_2bb83acf1bc54c8e9da64dc1.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00272;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7_c00272{vertical-align:-20.880000px;}
.v5_c00272{vertical-align:-14.760000px;}
.v2_c00272{vertical-align:-10.440000px;}
.v0_c00272{vertical-align:0.000000px;}
.v6_c00272{vertical-align:14.760000px;}
.v4_c00272{vertical-align:27.000000px;}
.v3_c00272{vertical-align:36.360000px;}
.v1_c00272{vertical-align:42.120000px;}
.ls16_c00272{letter-spacing:-0.180360px;}
.ls15_c00272{letter-spacing:-0.120240px;}
.lsf_c00272{letter-spacing:-0.108000px;}
.ls11_c00272{letter-spacing:-0.102240px;}
.ls12_c00272{letter-spacing:-0.072000px;}
.ls14_c00272{letter-spacing:-0.060120px;}
.lse_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.072000px;}
.ls10_c00272{letter-spacing:0.102240px;}
.ls13_c00272{letter-spacing:0.144000px;}
.ls17_c00272{letter-spacing:0.180360px;}
.ls9_c00272{letter-spacing:0.191520px;}
.ls1_c00272{letter-spacing:0.360000px;}
.ls6_c00272{letter-spacing:0.720000px;}
.ls4_c00272{letter-spacing:1.922040px;}
.ls2_c00272{letter-spacing:2.282040px;}
.lsb_c00272{letter-spacing:2.520000px;}
.ls3_c00272{letter-spacing:6.480000px;}
.ls8_c00272{letter-spacing:10.080000px;}
.lsc_c00272{letter-spacing:12.324600px;}
.lsd_c00272{letter-spacing:12.390732px;}
.ls5_c00272{letter-spacing:20.160000px;}
.lsa_c00272{letter-spacing:22.961520px;}
.ls7_c00272{letter-spacing:33.480000px;}
.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:-72.000000px;}
.ws2_c00272{word-spacing:-51.222240px;}
.ws1_c00272{word-spacing:-51.120000px;}
.ws4_c00272{word-spacing:-51.017760px;}
.ws0_c00272{word-spacing:-18.072000px;}
.ws5_c00272{word-spacing:-18.000000px;}
.wsa_c00272{word-spacing:-15.030000px;}
.ws7_c00272{word-spacing:-12.161520px;}
.ws6_c00272{word-spacing:-11.970000px;}
.ws9_c00272{word-spacing:-9.720000px;}
.ws30_c00272{word-spacing:-0.180360px;}
.wse_c00272{word-spacing:-0.072000px;}
.ws2f_c00272{word-spacing:-0.060120px;}
.wsb_c00272{word-spacing:0.000000px;}
.ws2a_c00272{word-spacing:0.060120px;}
.wsd_c00272{word-spacing:0.162000px;}
.ws2d_c00272{word-spacing:0.180360px;}
.wsc_c00272{word-spacing:0.270000px;}
.wsf_c00272{word-spacing:0.648000px;}
.ws10_c00272{word-spacing:0.720000px;}
.ws13_c00272{word-spacing:1.800000px;}
.ws26_c00272{word-spacing:2.160000px;}
.ws25_c00272{word-spacing:2.448000px;}
.ws1c_c00272{word-spacing:2.736000px;}
.ws1d_c00272{word-spacing:2.880000px;}
.ws16_c00272{word-spacing:3.528000px;}
.ws15_c00272{word-spacing:3.600000px;}
.ws8_c00272{word-spacing:3.816000px;}
.ws22_c00272{word-spacing:3.888000px;}
.ws23_c00272{word-spacing:3.960000px;}
.ws29_c00272{word-spacing:7.128000px;}
.ws28_c00272{word-spacing:7.488000px;}
.ws27_c00272{word-spacing:7.560000px;}
.ws24_c00272{word-spacing:8.280000px;}
.ws1b_c00272{word-spacing:9.720000px;}
.ws1e_c00272{word-spacing:10.008000px;}
.ws1f_c00272{word-spacing:10.080000px;}
.ws11_c00272{word-spacing:11.160000px;}
.ws2b_c00272{word-spacing:12.024000px;}
.ws2e_c00272{word-spacing:12.144240px;}
.ws2c_c00272{word-spacing:12.444840px;}
.ws14_c00272{word-spacing:13.608000px;}
.ws12_c00272{word-spacing:18.288000px;}
.ws21_c00272{word-spacing:19.080000px;}
.ws18_c00272{word-spacing:20.160000px;}
.ws17_c00272{word-spacing:20.232000px;}
.ws20_c00272{word-spacing:20.520000px;}
.ws1a_c00272{word-spacing:33.408000px;}
.ws19_c00272{word-spacing:33.480000px;}
._9_c00272{margin-left:-4.701600px;}
._1_c00272{margin-left:-1.058400px;}
._0_c00272{width:1.220400px;}
._8_c00272{width:2.448000px;}
._4_c00272{width:6.616800px;}
._5_c00272{width:7.855200px;}
._7_c00272{width:10.152000px;}
._a_c00272{width:12.444840px;}
._2_c00272{width:14.040000px;}
._3_c00272{width:19.872000px;}
._6_c00272{width:22.464000px;}
.fc0_c00272{color:rgb(0,0,0);}
.fs5_c00272{font-size:38.880000px;}
.fs3_c00272{font-size:42.120000px;}
.fs4_c00272{font-size:47.880000px;}
.fs2_c00272{font-size:51.120000px;}
.fs0_c00272{font-size:54.000000px;}
.fs6_c00272{font-size:60.120000px;}
.fs1_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y29_c00272{bottom:57.240000px;}
.y28_c00272{bottom:109.795680px;}
.y27_c00272{bottom:132.210000px;}
.y2a_c00272{bottom:144.900000px;}
.y26_c00272{bottom:167.580000px;}
.y25_c00272{bottom:198.630000px;}
.y24_c00272{bottom:229.680000px;}
.y23_c00272{bottom:260.910000px;}
.y22_c00272{bottom:292.410000px;}
.y21_c00272{bottom:323.370000px;}
.y20_c00272{bottom:354.420000px;}
.y1f_c00272{bottom:385.470000px;}
.y1e_c00272{bottom:416.520000px;}
.y1d_c00272{bottom:447.570000px;}
.y1c_c00272{bottom:477.450000px;}
.y1b_c00272{bottom:486.540000px;}
.y1a_c00272{bottom:523.620000px;}
.y19_c00272{bottom:554.670000px;}
.y18_c00272{bottom:584.550000px;}
.y17_c00272{bottom:593.640000px;}
.y16_c00272{bottom:630.720000px;}
.y15_c00272{bottom:660.600000px;}
.y14_c00272{bottom:669.690000px;}
.y13_c00272{bottom:706.770000px;}
.y12_c00272{bottom:737.820000px;}
.y11_c00272{bottom:768.870000px;}
.y10_c00272{bottom:799.920000px;}
.yf_c00272{bottom:830.970000px;}
.ye_c00272{bottom:861.930000px;}
.yd_c00272{bottom:892.980000px;}
.yc_c00272{bottom:924.030000px;}
.yb_c00272{bottom:955.080000px;}
.ya_c00272{bottom:986.130000px;}
.y9_c00272{bottom:1017.180000px;}
.y8_c00272{bottom:1048.230000px;}
.y7_c00272{bottom:1079.280000px;}
.y6_c00272{bottom:1110.330000px;}
.y5_c00272{bottom:1131.030000px;}
.y4_c00272{bottom:1150.920000px;}
.y3_c00272{bottom:1166.404500px;}
.y2_c00272{bottom:1181.970000px;}
.y1_c00272{bottom:1197.450000px;}
.hb_c00272{height:38.158594px;}
.h5_c00272{height:50.027344px;}
.h3_c00272{height:52.971680px;}
.h2_c00272{height:52.998047px;}
.hc_c00272{height:59.004492px;}
.h4_c00272{height:70.664062px;}
.h9_c00272{height:73.991602px;}
.ha_c00272{height:143.542969px;}
.h6_c00272{height:144.035508px;}
.h8_c00272{height:179.902969px;}
.h7_c00272{height:180.395508px;}
.h0_c00272{height:1262.880000px;}
.h1_c00272{height:1263.000000px;}
.w0_c00272{width:893.070000px;}
.w1_c00272{width:893.250000px;}
.x0_c00272{left:0.000000px;}
.x3_c00272{left:127.620000px;}
.x4_c00272{left:307.800000px;}
.x7_c00272{left:315.450000px;}
.x2_c00272{left:425.160000px;}
.x1_c00272{left:446.580000px;}
.x5_c00272{left:561.060000px;}
.x6_c00272{left:602.460000px;}
.x8_c00272{left:738.540000px;}
@media print{
.v7_c00272{vertical-align:-18.560000pt;}
.v5_c00272{vertical-align:-13.120000pt;}
.v2_c00272{vertical-align:-9.280000pt;}
.v0_c00272{vertical-align:0.000000pt;}
.v6_c00272{vertical-align:13.120000pt;}
.v4_c00272{vertical-align:24.000000pt;}
.v3_c00272{vertical-align:32.320000pt;}
.v1_c00272{vertical-align:37.440000pt;}
.ls16_c00272{letter-spacing:-0.160320pt;}
.ls15_c00272{letter-spacing:-0.106880pt;}
.lsf_c00272{letter-spacing:-0.096000pt;}
.ls11_c00272{letter-spacing:-0.090880pt;}
.ls12_c00272{letter-spacing:-0.064000pt;}
.ls14_c00272{letter-spacing:-0.053440pt;}
.lse_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.064000pt;}
.ls10_c00272{letter-spacing:0.090880pt;}
.ls13_c00272{letter-spacing:0.128000pt;}
.ls17_c00272{letter-spacing:0.160320pt;}
.ls9_c00272{letter-spacing:0.170240pt;}
.ls1_c00272{letter-spacing:0.320000pt;}
.ls6_c00272{letter-spacing:0.640000pt;}
.ls4_c00272{letter-spacing:1.708480pt;}
.ls2_c00272{letter-spacing:2.028480pt;}
.lsb_c00272{letter-spacing:2.240000pt;}
.ls3_c00272{letter-spacing:5.760000pt;}
.ls8_c00272{letter-spacing:8.960000pt;}
.lsc_c00272{letter-spacing:10.955200pt;}
.lsd_c00272{letter-spacing:11.013984pt;}
.ls5_c00272{letter-spacing:17.920000pt;}
.lsa_c00272{letter-spacing:20.410240pt;}
.ls7_c00272{letter-spacing:29.760000pt;}
.ws3_c00272{word-spacing:-64.000000pt;}
.ws2_c00272{word-spacing:-45.530880pt;}
.ws1_c00272{word-spacing:-45.440000pt;}
.ws4_c00272{word-spacing:-45.349120pt;}
.ws0_c00272{word-spacing:-16.064000pt;}
.ws5_c00272{word-spacing:-16.000000pt;}
.wsa_c00272{word-spacing:-13.360000pt;}
.ws7_c00272{word-spacing:-10.810240pt;}
.ws6_c00272{word-spacing:-10.640000pt;}
.ws9_c00272{word-spacing:-8.640000pt;}
.ws30_c00272{word-spacing:-0.160320pt;}
.wse_c00272{word-spacing:-0.064000pt;}
.ws2f_c00272{word-spacing:-0.053440pt;}
.wsb_c00272{word-spacing:0.000000pt;}
.ws2a_c00272{word-spacing:0.053440pt;}
.wsd_c00272{word-spacing:0.144000pt;}
.ws2d_c00272{word-spacing:0.160320pt;}
.wsc_c00272{word-spacing:0.240000pt;}
.wsf_c00272{word-spacing:0.576000pt;}
.ws10_c00272{word-spacing:0.640000pt;}
.ws13_c00272{word-spacing:1.600000pt;}
.ws26_c00272{word-spacing:1.920000pt;}
.ws25_c00272{word-spacing:2.176000pt;}
.ws1c_c00272{word-spacing:2.432000pt;}
.ws1d_c00272{word-spacing:2.560000pt;}
.ws16_c00272{word-spacing:3.136000pt;}
.ws15_c00272{word-spacing:3.200000pt;}
.ws8_c00272{word-spacing:3.392000pt;}
.ws22_c00272{word-spacing:3.456000pt;}
.ws23_c00272{word-spacing:3.520000pt;}
.ws29_c00272{word-spacing:6.336000pt;}
.ws28_c00272{word-spacing:6.656000pt;}
.ws27_c00272{word-spacing:6.720000pt;}
.ws24_c00272{word-spacing:7.360000pt;}
.ws1b_c00272{word-spacing:8.640000pt;}
.ws1e_c00272{word-spacing:8.896000pt;}
.ws1f_c00272{word-spacing:8.960000pt;}
.ws11_c00272{word-spacing:9.920000pt;}
.ws2b_c00272{word-spacing:10.688000pt;}
.ws2e_c00272{word-spacing:10.794880pt;}
.ws2c_c00272{word-spacing:11.062080pt;}
.ws14_c00272{word-spacing:12.096000pt;}
.ws12_c00272{word-spacing:16.256000pt;}
.ws21_c00272{word-spacing:16.960000pt;}
.ws18_c00272{word-spacing:17.920000pt;}
.ws17_c00272{word-spacing:17.984000pt;}
.ws20_c00272{word-spacing:18.240000pt;}
.ws1a_c00272{word-spacing:29.696000pt;}
.ws19_c00272{word-spacing:29.760000pt;}
._9_c00272{margin-left:-4.179200pt;}
._1_c00272{margin-left:-0.940800pt;}
._0_c00272{width:1.084800pt;}
._8_c00272{width:2.176000pt;}
._4_c00272{width:5.881600pt;}
._5_c00272{width:6.982400pt;}
._7_c00272{width:9.024000pt;}
._a_c00272{width:11.062080pt;}
._2_c00272{width:12.480000pt;}
._3_c00272{width:17.664000pt;}
._6_c00272{width:19.968000pt;}
.fs5_c00272{font-size:34.560000pt;}
.fs3_c00272{font-size:37.440000pt;}
.fs4_c00272{font-size:42.560000pt;}
.fs2_c00272{font-size:45.440000pt;}
.fs0_c00272{font-size:48.000000pt;}
.fs6_c00272{font-size:53.440000pt;}
.fs1_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y29_c00272{bottom:50.880000pt;}
.y28_c00272{bottom:97.596160pt;}
.y27_c00272{bottom:117.520000pt;}
.y2a_c00272{bottom:128.800000pt;}
.y26_c00272{bottom:148.960000pt;}
.y25_c00272{bottom:176.560000pt;}
.y24_c00272{bottom:204.160000pt;}
.y23_c00272{bottom:231.920000pt;}
.y22_c00272{bottom:259.920000pt;}
.y21_c00272{bottom:287.440000pt;}
.y20_c00272{bottom:315.040000pt;}
.y1f_c00272{bottom:342.640000pt;}
.y1e_c00272{bottom:370.240000pt;}
.y1d_c00272{bottom:397.840000pt;}
.y1c_c00272{bottom:424.400000pt;}
.y1b_c00272{bottom:432.480000pt;}
.y1a_c00272{bottom:465.440000pt;}
.y19_c00272{bottom:493.040000pt;}
.y18_c00272{bottom:519.600000pt;}
.y17_c00272{bottom:527.680000pt;}
.y16_c00272{bottom:560.640000pt;}
.y15_c00272{bottom:587.200000pt;}
.y14_c00272{bottom:595.280000pt;}
.y13_c00272{bottom:628.240000pt;}
.y12_c00272{bottom:655.840000pt;}
.y11_c00272{bottom:683.440000pt;}
.y10_c00272{bottom:711.040000pt;}
.yf_c00272{bottom:738.640000pt;}
.ye_c00272{bottom:766.160000pt;}
.yd_c00272{bottom:793.760000pt;}
.yc_c00272{bottom:821.360000pt;}
.yb_c00272{bottom:848.960000pt;}
.ya_c00272{bottom:876.560000pt;}
.y9_c00272{bottom:904.160000pt;}
.y8_c00272{bottom:931.760000pt;}
.y7_c00272{bottom:959.360000pt;}
.y6_c00272{bottom:986.960000pt;}
.y5_c00272{bottom:1005.360000pt;}
.y4_c00272{bottom:1023.040000pt;}
.y3_c00272{bottom:1036.804000pt;}
.y2_c00272{bottom:1050.640000pt;}
.y1_c00272{bottom:1064.400000pt;}
.hb_c00272{height:33.918750pt;}
.h5_c00272{height:44.468750pt;}
.h3_c00272{height:47.085938pt;}
.h2_c00272{height:47.109375pt;}
.hc_c00272{height:52.448437pt;}
.h4_c00272{height:62.812500pt;}
.h9_c00272{height:65.770312pt;}
.ha_c00272{height:127.593750pt;}
.h6_c00272{height:128.031562pt;}
.h8_c00272{height:159.913750pt;}
.h7_c00272{height:160.351562pt;}
.h0_c00272{height:1122.560000pt;}
.h1_c00272{height:1122.666667pt;}
.w0_c00272{width:793.840000pt;}
.w1_c00272{width:794.000000pt;}
.x0_c00272{left:0.000000pt;}
.x3_c00272{left:113.440000pt;}
.x4_c00272{left:273.600000pt;}
.x7_c00272{left:280.400000pt;}
.x2_c00272{left:377.920000pt;}
.x1_c00272{left:396.960000pt;}
.x5_c00272{left:498.720000pt;}
.x6_c00272{left:535.520000pt;}
.x8_c00272{left:656.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_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_cba0931944926950290c72c7.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_c32f99dd22188e70a2cbb821.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00273;src:url('chunks/assets/font_2ae871662cad63cb0316b2e6.woff2')format("woff");}.ff4_c00273{font-family:ff4_c00273;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00273;src:url('chunks/assets/font_fc60f06766410e467fc7b2d7.woff2')format("woff");}.ff5_c00273{font-family:ff5_c00273;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00273;src:url('chunks/assets/font_ddc16009488ffb9066ef9ed1.woff2')format("woff");}.ff6_c00273{font-family:ff6_c00273;line-height:0.862793;font-style: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);}
.m2_c00273{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);}
.v2_c00273{vertical-align:-83.520000px;}
.v1_c00273{vertical-align:-61.938000px;}
.v4_c00273{vertical-align:-11.969493px;}
.v3_c00273{vertical-align:-3.946800px;}
.v0_c00273{vertical-align:0.000000px;}
.v5_c00273{vertical-align:31.580100px;}
.ls10_c00273{letter-spacing:-2.368464px;}
.ls11_c00273{letter-spacing:-1.598713px;}
.lsf_c00273{letter-spacing:-1.515816px;}
.ls16_c00273{letter-spacing:-1.361867px;}
.ls17_c00273{letter-spacing:-1.302655px;}
.ls14_c00273{letter-spacing:-0.769751px;}
.ls1f_c00273{letter-spacing:-0.750018px;}
.ls13_c00273{letter-spacing:-0.710539px;}
.ls12_c00273{letter-spacing:-0.442113px;}
.lse_c00273{letter-spacing:-0.189477px;}
.ls15_c00273{letter-spacing:-0.177635px;}
.lsd_c00273{letter-spacing:-0.120240px;}
.lsa_c00273{letter-spacing:-0.072000px;}
.ls9_c00273{letter-spacing:0.000000px;}
.lsc_c00273{letter-spacing:0.072000px;}
.lsb_c00273{letter-spacing:0.144000px;}
.ls2_c00273{letter-spacing:0.252636px;}
.ls3_c00273{letter-spacing:0.378954px;}
.ls7_c00273{letter-spacing:0.722711px;}
.ls1c_c00273{letter-spacing:0.738174px;}
.ls1b_c00273{letter-spacing:1.073703px;}
.ls1d_c00273{letter-spacing:1.200021px;}
.ls18_c00273{letter-spacing:1.243444px;}
.ls19_c00273{letter-spacing:1.578975px;}
.ls1a_c00273{letter-spacing:1.642134px;}
.ls8_c00273{letter-spacing:1.693458px;}
.ls1e_c00273{letter-spacing:1.831611px;}
.ls6_c00273{letter-spacing:3.031632px;}
.ls5_c00273{letter-spacing:56.843136px;}
.ls4_c00273{letter-spacing:218.668439px;}
.ls1_c00273{letter-spacing:340.200000px;}
.ls0_c00273{letter-spacing:1144.260000px;}
.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;}
}
.ws2e_c00273{word-spacing:-16.105545px;}
.ws2c_c00273{word-spacing:-15.916068px;}
.ws0_c00273{word-spacing:-14.909760px;}
.ws2b_c00273{word-spacing:-14.652888px;}
.ws2f_c00273{word-spacing:-14.526570px;}
.ws2d_c00273{word-spacing:-14.273934px;}
.ws1_c00273{word-spacing:-12.758118px;}
.ws43_c00273{word-spacing:-3.604026px;}
.ws42_c00273{word-spacing:-2.648742px;}
.ws47_c00273{word-spacing:-1.693458px;}
.ws40_c00273{word-spacing:-1.642134px;}
.ws3d_c00273{word-spacing:-1.515816px;}
.ws44_c00273{word-spacing:-1.200021px;}
.ws41_c00273{word-spacing:-1.073703px;}
.ws3a_c00273{word-spacing:-0.769751px;}
.ws45_c00273{word-spacing:-0.378954px;}
.ws48_c00273{word-spacing:-0.375009px;}
.ws38_c00273{word-spacing:-0.252636px;}
.ws31_c00273{word-spacing:-0.162000px;}
.ws33_c00273{word-spacing:-0.144000px;}
.ws3f_c00273{word-spacing:-0.126318px;}
.ws34_c00273{word-spacing:-0.072000px;}
.ws3b_c00273{word-spacing:-0.063159px;}
.ws30_c00273{word-spacing:0.000000px;}
.ws32_c00273{word-spacing:0.072000px;}
.ws36_c00273{word-spacing:0.189477px;}
.ws3c_c00273{word-spacing:0.442113px;}
.ws37_c00273{word-spacing:1.136862px;}
.ws35_c00273{word-spacing:1.263180px;}
.ws46_c00273{word-spacing:1.515816px;}
.ws3e_c00273{word-spacing:1.957929px;}
.ws39_c00273{word-spacing:2.368464px;}
.ws27_c00273{word-spacing:20.487214px;}
.ws2_c00273{word-spacing:36.296711px;}
.ws6_c00273{word-spacing:59.892533px;}
.ws7_c00273{word-spacing:62.047836px;}
.ws14_c00273{word-spacing:71.723011px;}
.ws1e_c00273{word-spacing:75.281628px;}
.ws10_c00273{word-spacing:77.863254px;}
.ws15_c00273{word-spacing:91.031914px;}
.ws1f_c00273{word-spacing:117.357391px;}
.ws11_c00273{word-spacing:146.335548px;}
.ws1c_c00273{word-spacing:150.693522px;}
.ws4_c00273{word-spacing:158.592349px;}
.ws5_c00273{word-spacing:183.541290px;}
.wsd_c00273{word-spacing:183.541890px;}
.ws18_c00273{word-spacing:191.436128px;}
.ws1d_c00273{word-spacing:191.436727px;}
.wsb_c00273{word-spacing:194.214048px;}
.ws26_c00273{word-spacing:194.723268px;}
.ws19_c00273{word-spacing:198.122014px;}
.ws20_c00273{word-spacing:209.964334px;}
.ws8_c00273{word-spacing:210.023545px;}
.ws22_c00273{word-spacing:244.508381px;}
.ws28_c00273{word-spacing:275.564865px;}
.ws1b_c00273{word-spacing:281.409050px;}
.ws13_c00273{word-spacing:282.753153px;}
.wsc_c00273{word-spacing:283.937385px;}
.ws24_c00273{word-spacing:298.538966px;}
.ws12_c00273{word-spacing:302.488380px;}
.wsf_c00273{word-spacing:310.387207px;}
.ws29_c00273{word-spacing:317.113645px;}
.ws9_c00273{word-spacing:332.929063px;}
.ws23_c00273{word-spacing:333.752105px;}
.ws1a_c00273{word-spacing:339.466024px;}
.ws3_c00273{word-spacing:344.777304px;}
.ws21_c00273{word-spacing:345.120732px;}
.ws2a_c00273{word-spacing:381.441127px;}
.wse_c00273{word-spacing:398.470383px;}
.ws25_c00273{word-spacing:436.549363px;}
.wsa_c00273{word-spacing:439.527707px;}
.ws17_c00273{word-spacing:443.536332px;}
.ws16_c00273{word-spacing:478.447491px;}
._f_c00273{margin-left:-4.831664px;}
._d_c00273{margin-left:-2.445439px;}
._0_c00273{margin-left:-1.152000px;}
._1_c00273{width:1.594113px;}
._2_c00273{width:2.622402px;}
._3_c00273{width:3.888232px;}
._7_c00273{width:83.346920px;}
._6_c00273{width:87.314097px;}
._c_c00273{width:143.100660px;}
._8_c00273{width:146.402662px;}
._9_c00273{width:157.418632px;}
._a_c00273{width:159.050250px;}
._5_c00273{width:165.882621px;}
._4_c00273{width:178.170550px;}
._b_c00273{width:190.222718px;}
._e_c00273{width:240.832666px;}
.fc1_c00273{color:transparent;}
.fc0_c00273{color:rgb(0,0,0);}
.fs5_c00273{font-size:43.422000px;}
.fs0_c00273{font-size:54.000000px;}
.fs4_c00273{font-size:59.211600px;}
.fs2_c00273{font-size:60.120000px;}
.fs3_c00273{font-size:63.159000px;}
.fs1_c00273{font-size:72.000000px;}
.fs6_c00273{font-size:75.001800px;}
.y0_c00273{bottom:0.000000px;}
.y15_c00273{bottom:3.946950px;}
.y1f_c00273{bottom:3.947100px;}
.y13_c00273{bottom:3.947250px;}
.y1d_c00273{bottom:3.947400px;}
.y11_c00273{bottom:3.947550px;}
.y1b_c00273{bottom:3.947700px;}
.y19_c00273{bottom:3.947850px;}
.y2a_c00273{bottom:3.948000px;}
.y17_c00273{bottom:3.948150px;}
.y21_c00273{bottom:3.948300px;}
.y27_c00273{bottom:3.948450px;}
.y3c_c00273{bottom:4.974540px;}
.y33_c00273{bottom:5.929398px;}
.y49_c00273{bottom:6.909000px;}
.yf_c00273{bottom:6.940242px;}
.y46_c00273{bottom:13.816800px;}
.y45_c00273{bottom:13.816950px;}
.y41_c00273{bottom:15.822023px;}
.y3b_c00273{bottom:25.690692px;}
.y32_c00273{bottom:26.645550px;}
.ya_c00273{bottom:27.648396px;}
.ye_c00273{bottom:27.656394px;}
.y36_c00273{bottom:36.530196px;}
.y44_c00273{bottom:36.538175px;}
.y40_c00273{bottom:38.511894px;}
.y42_c00273{bottom:45.396075px;}
.y3a_c00273{bottom:46.406844px;}
.y9_c00273{bottom:48.364548px;}
.yd_c00273{bottom:48.372546px;}
.y43_c00273{bottom:57.238350px;}
.y35_c00273{bottom:57.246348px;}
.y4a_c00273{bottom:57.330000px;}
.y3f_c00273{bottom:59.228046px;}
.y39_c00273{bottom:67.122996px;}
.y8_c00273{bottom:69.080700px;}
.yc_c00273{bottom:69.088698px;}
.y47_c00273{bottom:70.067550px;}
.y34_c00273{bottom:77.962500px;}
.y3e_c00273{bottom:79.944198px;}
.y38_c00273{bottom:87.839148px;}
.yb_c00273{bottom:89.804850px;}
.y3d_c00273{bottom:100.660350px;}
.y37_c00273{bottom:108.555300px;}
.y6_c00273{bottom:134.462520px;}
.y5_c00273{bottom:148.230000px;}
.y30_c00273{bottom:150.183000px;}
.y2f_c00273{bottom:169.920000px;}
.y2e_c00273{bottom:189.657000px;}
.y2d_c00273{bottom:209.395500px;}
.y2c_c00273{bottom:229.132500px;}
.y2b_c00273{bottom:248.869500px;}
.y29_c00273{bottom:268.606500px;}
.y28_c00273{bottom:288.343500px;}
.y26_c00273{bottom:308.080500px;}
.y25_c00273{bottom:327.819000px;}
.y24_c00273{bottom:347.556000px;}
.y23_c00273{bottom:367.293000px;}
.y22_c00273{bottom:387.030000px;}
.y20_c00273{bottom:406.767000px;}
.y1e_c00273{bottom:426.505500px;}
.y1c_c00273{bottom:446.242500px;}
.y1a_c00273{bottom:465.979500px;}
.y18_c00273{bottom:485.716500px;}
.y16_c00273{bottom:505.453500px;}
.y14_c00273{bottom:525.192000px;}
.y12_c00273{bottom:544.929000px;}
.y10_c00273{bottom:564.666000px;}
.y7_c00273{bottom:584.403000px;}
.y31_c00273{bottom:692.958000px;}
.y48_c00273{bottom:709.734000px;}
.y4_c00273{bottom:761.220000px;}
.y3_c00273{bottom:781.105500px;}
.y2_c00273{bottom:796.590000px;}
.y1_c00273{bottom:827.640000px;}
.h7_c00273{height:18.750000px;}
.h9_c00273{height:18.751500px;}
.hf_c00273{height:25.659000px;}
.ha_c00273{height:42.436500px;}
.hc_c00273{height:43.236776px;}
.h8_c00273{height:48.832223px;}
.h6_c00273{height:52.087671px;}
.h2_c00273{height:52.998047px;}
.h4_c00273{height:58.975137px;}
.h10_c00273{height:61.854512px;}
.hd_c00273{height:67.390529px;}
.h3_c00273{height:70.664062px;}
.h5_c00273{height:107.568000px;}
.hb_c00273{height:124.344000px;}
.he_c00273{height:150.990000px;}
.h0_c00273{height:893.070000px;}
.h1_c00273{height:893.250000px;}
.we_c00273{width:30.622500px;}
.w2_c00273{width:63.219000px;}
.wc_c00273{width:69.145500px;}
.wb_c00273{width:71.122500px;}
.wa_c00273{width:73.096500px;}
.w3_c00273{width:73.098000px;}
.wd_c00273{width:75.072000px;}
.w6_c00273{width:83.962500px;}
.w7_c00273{width:90.877500px;}
.w8_c00273{width:98.779500px;}
.w9_c00273{width:99.768000px;}
.wf_c00273{width:133.353000px;}
.w5_c00273{width:137.304000px;}
.w10_c00273{width:742.825500px;}
.w4_c00273{width:1048.054500px;}
.w0_c00273{width:1262.880000px;}
.w1_c00273{width:1263.000000px;}
.x0_c00273{left:0.000000px;}
.x7_c00273{left:2.970918px;}
.xa_c00273{left:4.939556px;}
.xc_c00273{left:7.895045px;}
.x1e_c00273{left:9.877819px;}
.xe_c00273{left:11.852850px;}
.x8_c00273{left:14.824480px;}
.x18_c00273{left:17.779688px;}
.xd_c00273{left:19.748607px;}
.x16_c00273{left:21.731025px;}
.x6_c00273{left:23.706750px;}
.xb_c00273{left:25.675388px;}
.x1b_c00273{left:28.645913px;}
.x1a_c00273{left:32.597100px;}
.x11_c00273{left:37.536600px;}
.xf_c00273{left:39.511406px;}
.x13_c00273{left:41.487750px;}
.x15_c00273{left:45.438150px;}
.x2_c00273{left:106.380000px;}
.x21_c00273{left:138.976500px;}
.x22_c00273{left:225.218700px;}
.x10_c00273{left:273.318000px;}
.x12_c00273{left:358.269000px;}
.x14_c00273{left:450.135000px;}
.x17_c00273{left:549.903000px;}
.x1_c00273{left:631.440000px;}
.x19_c00273{left:650.658000px;}
.x1c_c00273{left:724.741500px;}
.x1d_c00273{left:798.828000px;}
.x1f_c00273{left:870.937500px;}
.x20_c00273{left:941.071500px;}
.x5_c00273{left:1017.132000px;}
.x9_c00273{left:1081.338000px;}
.x4_c00273{left:1089.541170px;}
.x3_c00273{left:1156.590000px;}
@media print{
.v2_c00273{vertical-align:-74.240000pt;}
.v1_c00273{vertical-align:-55.056000pt;}
.v4_c00273{vertical-align:-10.639549pt;}
.v3_c00273{vertical-align:-3.508267pt;}
.v0_c00273{vertical-align:0.000000pt;}
.v5_c00273{vertical-align:28.071200pt;}
.ls10_c00273{letter-spacing:-2.105301pt;}
.ls11_c00273{letter-spacing:-1.421078pt;}
.lsf_c00273{letter-spacing:-1.347392pt;}
.ls16_c00273{letter-spacing:-1.210548pt;}
.ls17_c00273{letter-spacing:-1.157916pt;}
.ls14_c00273{letter-spacing:-0.684223pt;}
.ls1f_c00273{letter-spacing:-0.666683pt;}
.ls13_c00273{letter-spacing:-0.631590pt;}
.ls12_c00273{letter-spacing:-0.392989pt;}
.lse_c00273{letter-spacing:-0.168424pt;}
.ls15_c00273{letter-spacing:-0.157898pt;}
.lsd_c00273{letter-spacing:-0.106880pt;}
.lsa_c00273{letter-spacing:-0.064000pt;}
.ls9_c00273{letter-spacing:0.000000pt;}
.lsc_c00273{letter-spacing:0.064000pt;}
.lsb_c00273{letter-spacing:0.128000pt;}
.ls2_c00273{letter-spacing:0.224565pt;}
.ls3_c00273{letter-spacing:0.336848pt;}
.ls7_c00273{letter-spacing:0.642410pt;}
.ls1c_c00273{letter-spacing:0.656155pt;}
.ls1b_c00273{letter-spacing:0.954403pt;}
.ls1d_c00273{letter-spacing:1.066685pt;}
.ls18_c00273{letter-spacing:1.105283pt;}
.ls19_c00273{letter-spacing:1.403533pt;}
.ls1a_c00273{letter-spacing:1.459675pt;}
.ls8_c00273{letter-spacing:1.505296pt;}
.ls1e_c00273{letter-spacing:1.628099pt;}
.ls6_c00273{letter-spacing:2.694784pt;}
.ls5_c00273{letter-spacing:50.527232pt;}
.ls4_c00273{letter-spacing:194.371946pt;}
.ls1_c00273{letter-spacing:302.400000pt;}
.ls0_c00273{letter-spacing:1017.120000pt;}
.ws2e_c00273{word-spacing:-14.316040pt;}
.ws2c_c00273{word-spacing:-14.147616pt;}
.ws0_c00273{word-spacing:-13.253120pt;}
.ws2b_c00273{word-spacing:-13.024789pt;}
.ws2f_c00273{word-spacing:-12.912507pt;}
.ws2d_c00273{word-spacing:-12.687941pt;}
.ws1_c00273{word-spacing:-11.340549pt;}
.ws43_c00273{word-spacing:-3.203579pt;}
.ws42_c00273{word-spacing:-2.354437pt;}
.ws47_c00273{word-spacing:-1.505296pt;}
.ws40_c00273{word-spacing:-1.459675pt;}
.ws3d_c00273{word-spacing:-1.347392pt;}
.ws44_c00273{word-spacing:-1.066685pt;}
.ws41_c00273{word-spacing:-0.954403pt;}
.ws3a_c00273{word-spacing:-0.684223pt;}
.ws45_c00273{word-spacing:-0.336848pt;}
.ws48_c00273{word-spacing:-0.333341pt;}
.ws38_c00273{word-spacing:-0.224565pt;}
.ws31_c00273{word-spacing:-0.144000pt;}
.ws33_c00273{word-spacing:-0.128000pt;}
.ws3f_c00273{word-spacing:-0.112283pt;}
.ws34_c00273{word-spacing:-0.064000pt;}
.ws3b_c00273{word-spacing:-0.056141pt;}
.ws30_c00273{word-spacing:0.000000pt;}
.ws32_c00273{word-spacing:0.064000pt;}
.ws36_c00273{word-spacing:0.168424pt;}
.ws3c_c00273{word-spacing:0.392989pt;}
.ws37_c00273{word-spacing:1.010544pt;}
.ws35_c00273{word-spacing:1.122827pt;}
.ws46_c00273{word-spacing:1.347392pt;}
.ws3e_c00273{word-spacing:1.740381pt;}
.ws39_c00273{word-spacing:2.105301pt;}
.ws27_c00273{word-spacing:18.210857pt;}
.ws2_c00273{word-spacing:32.263743pt;}
.ws6_c00273{word-spacing:53.237807pt;}
.ws7_c00273{word-spacing:55.153632pt;}
.ws14_c00273{word-spacing:63.753788pt;}
.ws1e_c00273{word-spacing:66.917003pt;}
.ws10_c00273{word-spacing:69.211781pt;}
.ws15_c00273{word-spacing:80.917257pt;}
.ws1f_c00273{word-spacing:104.317681pt;}
.ws11_c00273{word-spacing:130.076043pt;}
.ws1c_c00273{word-spacing:133.949797pt;}
.ws4_c00273{word-spacing:140.970977pt;}
.ws5_c00273{word-spacing:163.147814pt;}
.wsd_c00273{word-spacing:163.148346pt;}
.ws18_c00273{word-spacing:170.165447pt;}
.ws1d_c00273{word-spacing:170.165980pt;}
.wsb_c00273{word-spacing:172.634709pt;}
.ws26_c00273{word-spacing:173.087349pt;}
.ws19_c00273{word-spacing:176.108457pt;}
.ws20_c00273{word-spacing:186.634963pt;}
.ws8_c00273{word-spacing:186.687596pt;}
.ws22_c00273{word-spacing:217.340783pt;}
.ws28_c00273{word-spacing:244.946547pt;}
.ws1b_c00273{word-spacing:250.141378pt;}
.ws13_c00273{word-spacing:251.336136pt;}
.wsc_c00273{word-spacing:252.388787pt;}
.ws24_c00273{word-spacing:265.367970pt;}
.ws12_c00273{word-spacing:268.878560pt;}
.wsf_c00273{word-spacing:275.899740pt;}
.ws29_c00273{word-spacing:281.878796pt;}
.ws9_c00273{word-spacing:295.936945pt;}
.ws23_c00273{word-spacing:296.668537pt;}
.ws1a_c00273{word-spacing:301.747577pt;}
.ws3_c00273{word-spacing:306.468715pt;}
.ws21_c00273{word-spacing:306.773984pt;}
.ws2a_c00273{word-spacing:339.058780pt;}
.wse_c00273{word-spacing:354.195896pt;}
.ws25_c00273{word-spacing:388.043879pt;}
.wsa_c00273{word-spacing:390.691295pt;}
.ws17_c00273{word-spacing:394.254517pt;}
.ws16_c00273{word-spacing:425.286659pt;}
._f_c00273{margin-left:-4.294812pt;}
._d_c00273{margin-left:-2.173724pt;}
._0_c00273{margin-left:-1.024000pt;}
._1_c00273{width:1.416989pt;}
._2_c00273{width:2.331024pt;}
._3_c00273{width:3.456206pt;}
._7_c00273{width:74.086151pt;}
._6_c00273{width:77.612531pt;}
._c_c00273{width:127.200587pt;}
._8_c00273{width:130.135700pt;}
._9_c00273{width:139.927673pt;}
._a_c00273{width:141.378000pt;}
._5_c00273{width:147.451219pt;}
._4_c00273{width:158.373822pt;}
._b_c00273{width:169.086860pt;}
._e_c00273{width:214.073481pt;}
.fs5_c00273{font-size:38.597333pt;}
.fs0_c00273{font-size:48.000000pt;}
.fs4_c00273{font-size:52.632533pt;}
.fs2_c00273{font-size:53.440000pt;}
.fs3_c00273{font-size:56.141333pt;}
.fs1_c00273{font-size:64.000000pt;}
.fs6_c00273{font-size:66.668267pt;}
.y0_c00273{bottom:0.000000pt;}
.y15_c00273{bottom:3.508400pt;}
.y1f_c00273{bottom:3.508533pt;}
.y13_c00273{bottom:3.508667pt;}
.y1d_c00273{bottom:3.508800pt;}
.y11_c00273{bottom:3.508933pt;}
.y1b_c00273{bottom:3.509067pt;}
.y19_c00273{bottom:3.509200pt;}
.y2a_c00273{bottom:3.509333pt;}
.y17_c00273{bottom:3.509467pt;}
.y21_c00273{bottom:3.509600pt;}
.y27_c00273{bottom:3.509733pt;}
.y3c_c00273{bottom:4.421813pt;}
.y33_c00273{bottom:5.270576pt;}
.y49_c00273{bottom:6.141333pt;}
.yf_c00273{bottom:6.169104pt;}
.y46_c00273{bottom:12.281600pt;}
.y45_c00273{bottom:12.281733pt;}
.y41_c00273{bottom:14.064021pt;}
.y3b_c00273{bottom:22.836171pt;}
.y32_c00273{bottom:23.684933pt;}
.ya_c00273{bottom:24.576352pt;}
.ye_c00273{bottom:24.583461pt;}
.y36_c00273{bottom:32.471285pt;}
.y44_c00273{bottom:32.478378pt;}
.y40_c00273{bottom:34.232795pt;}
.y42_c00273{bottom:40.352067pt;}
.y3a_c00273{bottom:41.250528pt;}
.y9_c00273{bottom:42.990709pt;}
.yd_c00273{bottom:42.997819pt;}
.y43_c00273{bottom:50.878533pt;}
.y35_c00273{bottom:50.885643pt;}
.y4a_c00273{bottom:50.960000pt;}
.y3f_c00273{bottom:52.647152pt;}
.y39_c00273{bottom:59.664885pt;}
.y8_c00273{bottom:61.405067pt;}
.yc_c00273{bottom:61.412176pt;}
.y47_c00273{bottom:62.282267pt;}
.y34_c00273{bottom:69.300000pt;}
.y3e_c00273{bottom:71.061509pt;}
.y38_c00273{bottom:78.079243pt;}
.yb_c00273{bottom:79.826533pt;}
.y3d_c00273{bottom:89.475867pt;}
.y37_c00273{bottom:96.493600pt;}
.y6_c00273{bottom:119.522240pt;}
.y5_c00273{bottom:131.760000pt;}
.y30_c00273{bottom:133.496000pt;}
.y2f_c00273{bottom:151.040000pt;}
.y2e_c00273{bottom:168.584000pt;}
.y2d_c00273{bottom:186.129333pt;}
.y2c_c00273{bottom:203.673333pt;}
.y2b_c00273{bottom:221.217333pt;}
.y29_c00273{bottom:238.761333pt;}
.y28_c00273{bottom:256.305333pt;}
.y26_c00273{bottom:273.849333pt;}
.y25_c00273{bottom:291.394667pt;}
.y24_c00273{bottom:308.938667pt;}
.y23_c00273{bottom:326.482667pt;}
.y22_c00273{bottom:344.026667pt;}
.y20_c00273{bottom:361.570667pt;}
.y1e_c00273{bottom:379.116000pt;}
.y1c_c00273{bottom:396.660000pt;}
.y1a_c00273{bottom:414.204000pt;}
.y18_c00273{bottom:431.748000pt;}
.y16_c00273{bottom:449.292000pt;}
.y14_c00273{bottom:466.837333pt;}
.y12_c00273{bottom:484.381333pt;}
.y10_c00273{bottom:501.925333pt;}
.y7_c00273{bottom:519.469333pt;}
.y31_c00273{bottom:615.962667pt;}
.y48_c00273{bottom:630.874667pt;}
.y4_c00273{bottom:676.640000pt;}
.y3_c00273{bottom:694.316000pt;}
.y2_c00273{bottom:708.080000pt;}
.y1_c00273{bottom:735.680000pt;}
.h7_c00273{height:16.666667pt;}
.h9_c00273{height:16.668000pt;}
.hf_c00273{height:22.808000pt;}
.ha_c00273{height:37.721333pt;}
.hc_c00273{height:38.432690pt;}
.h8_c00273{height:43.406420pt;}
.h6_c00273{height:46.300152pt;}
.h2_c00273{height:47.109375pt;}
.h4_c00273{height:52.422344pt;}
.h10_c00273{height:54.981788pt;}
.hd_c00273{height:59.902692pt;}
.h3_c00273{height:62.812500pt;}
.h5_c00273{height:95.616000pt;}
.hb_c00273{height:110.528000pt;}
.he_c00273{height:134.213333pt;}
.h0_c00273{height:793.840000pt;}
.h1_c00273{height:794.000000pt;}
.we_c00273{width:27.220000pt;}
.w2_c00273{width:56.194667pt;}
.wc_c00273{width:61.462667pt;}
.wb_c00273{width:63.220000pt;}
.wa_c00273{width:64.974667pt;}
.w3_c00273{width:64.976000pt;}
.wd_c00273{width:66.730667pt;}
.w6_c00273{width:74.633333pt;}
.w7_c00273{width:80.780000pt;}
.w8_c00273{width:87.804000pt;}
.w9_c00273{width:88.682667pt;}
.wf_c00273{width:118.536000pt;}
.w5_c00273{width:122.048000pt;}
.w10_c00273{width:660.289333pt;}
.w4_c00273{width:931.604000pt;}
.w0_c00273{width:1122.560000pt;}
.w1_c00273{width:1122.666667pt;}
.x0_c00273{left:0.000000pt;}
.x7_c00273{left:2.640816pt;}
.xa_c00273{left:4.390717pt;}
.xc_c00273{left:7.017817pt;}
.x1e_c00273{left:8.780283pt;}
.xe_c00273{left:10.535867pt;}
.x8_c00273{left:13.177316pt;}
.x18_c00273{left:15.804167pt;}
.xd_c00273{left:17.554317pt;}
.x16_c00273{left:19.316467pt;}
.x6_c00273{left:21.072667pt;}
.xb_c00273{left:22.822567pt;}
.x1b_c00273{left:25.463033pt;}
.x1a_c00273{left:28.975200pt;}
.x11_c00273{left:33.365867pt;}
.xf_c00273{left:35.121250pt;}
.x13_c00273{left:36.878000pt;}
.x15_c00273{left:40.389467pt;}
.x2_c00273{left:94.560000pt;}
.x21_c00273{left:123.534667pt;}
.x22_c00273{left:200.194400pt;}
.x10_c00273{left:242.949333pt;}
.x12_c00273{left:318.461333pt;}
.x14_c00273{left:400.120000pt;}
.x17_c00273{left:488.802667pt;}
.x1_c00273{left:561.280000pt;}
.x19_c00273{left:578.362667pt;}
.x1c_c00273{left:644.214667pt;}
.x1d_c00273{left:710.069333pt;}
.x1f_c00273{left:774.166667pt;}
.x20_c00273{left:836.508000pt;}
.x5_c00273{left:904.117333pt;}
.x9_c00273{left:961.189333pt;}
.x4_c00273{left:968.481040pt;}
.x3_c00273{left:1028.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_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_ceba33e3766a6e3a1135d364.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_49adab7140ff6e03e3ab6bdc.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00274;src:url('chunks/assets/font_6eb857294f7fca1039a3af77.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_9090b9fa7586f137f007e75e.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250451,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.v1_c00274{vertical-align:-61.920000px;}
.v2_c00274{vertical-align:-3.944400px;}
.v0_c00274{vertical-align:0.000000px;}
.v3_c00274{vertical-align:3.964122px;}
.ls5_c00274{letter-spacing:-2.366640px;}
.ls11_c00274{letter-spacing:-1.948534px;}
.lsa_c00274{letter-spacing:-1.656648px;}
.lsb_c00274{letter-spacing:-1.597482px;}
.ls9_c00274{letter-spacing:-1.360818px;}
.lse_c00274{letter-spacing:-1.301652px;}
.ls8_c00274{letter-spacing:-0.709992px;}
.ls7_c00274{letter-spacing:-0.441773px;}
.ls6_c00274{letter-spacing:-0.177498px;}
.ls3_c00274{letter-spacing:-0.108000px;}
.ls4_c00274{letter-spacing:0.000000px;}
.lsf_c00274{letter-spacing:0.922990px;}
.lsc_c00274{letter-spacing:1.242486px;}
.lsd_c00274{letter-spacing:1.774980px;}
.ls10_c00274{letter-spacing:1.999811px;}
.ls2_c00274{letter-spacing:56.799360px;}
.ls1_c00274{letter-spacing:218.500038px;}
.ls0_c00274{letter-spacing:725.580000px;}
.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;}
}
.ws21_c00274{word-spacing:-12.661524px;}
.wsc_c00274{word-spacing:-11.004876px;}
.ws2f_c00274{word-spacing:-2.974078px;}
.ws2e_c00274{word-spacing:-1.897256px;}
.ws2b_c00274{word-spacing:-1.360818px;}
.ws2d_c00274{word-spacing:-0.236664px;}
.ws2c_c00274{word-spacing:-0.177498px;}
.ws26_c00274{word-spacing:0.000000px;}
.ws2a_c00274{word-spacing:0.059166px;}
.ws28_c00274{word-spacing:0.162000px;}
.ws27_c00274{word-spacing:0.270000px;}
.ws30_c00274{word-spacing:0.974267px;}
.ws29_c00274{word-spacing:2.366640px;}
.wsf_c00274{word-spacing:20.471436px;}
.ws0_c00274{word-spacing:36.268758px;}
.ws4_c00274{word-spacing:59.846409px;}
.wse_c00274{word-spacing:62.000051px;}
.ws9_c00274{word-spacing:71.667776px;}
.ws19_c00274{word-spacing:75.223652px;}
.ws5_c00274{word-spacing:77.803290px;}
.wsa_c00274{word-spacing:90.961808px;}
.ws1a_c00274{word-spacing:117.267012px;}
.ws6_c00274{word-spacing:146.222852px;}
.ws2_c00274{word-spacing:158.470214px;}
.ws1f_c00274{word-spacing:162.434336px;}
.ws11_c00274{word-spacing:183.399646px;}
.ws3_c00274{word-spacing:183.400245px;}
.wsd_c00274{word-spacing:191.288820px;}
.ws1b_c00274{word-spacing:209.802636px;}
.ws22_c00274{word-spacing:209.844052px;}
.ws7_c00274{word-spacing:209.861802px;}
.ws24_c00274{word-spacing:221.695002px;}
.ws17_c00274{word-spacing:250.289930px;}
.ws16_c00274{word-spacing:283.967217px;}
.ws14_c00274{word-spacing:292.788868px;}
.ws1c_c00274{word-spacing:293.226696px;}
.ws23_c00274{word-spacing:306.201800px;}
.ws18_c00274{word-spacing:311.633239px;}
.ws1e_c00274{word-spacing:316.916762px;}
.ws1d_c00274{word-spacing:325.921828px;}
.ws1_c00274{word-spacing:345.647772px;}
.ws12_c00274{word-spacing:352.191532px;}
.ws20_c00274{word-spacing:378.271904px;}
.ws8_c00274{word-spacing:384.087922px;}
.ws25_c00274{word-spacing:386.016734px;}
.ws13_c00274{word-spacing:390.099188px;}
.wsb_c00274{word-spacing:400.926566px;}
.ws10_c00274{word-spacing:411.617862px;}
.ws15_c00274{word-spacing:418.132039px;}
._18_c00274{margin-left:-6.197599px;}
._17_c00274{margin-left:-4.640587px;}
._b_c00274{margin-left:-3.076632px;}
._19_c00274{margin-left:-2.061618px;}
._1_c00274{margin-left:-1.058400px;}
._0_c00274{width:1.225800px;}
._c_c00274{width:2.474048px;}
._2_c00274{width:3.580059px;}
._1a_c00274{width:5.829089px;}
._6_c00274{width:82.323056px;}
._10_c00274{width:83.429068px;}
._5_c00274{width:86.287178px;}
._f_c00274{width:87.393190px;}
._15_c00274{width:89.358604px;}
._13_c00274{width:111.475649px;}
._9_c00274{width:146.142652px;}
._12_c00274{width:158.408279px;}
._4_c00274{width:165.162281px;}
._e_c00274{width:166.268293px;}
._7_c00274{width:169.940672px;}
._3_c00274{width:177.036061px;}
._d_c00274{width:178.142073px;}
._14_c00274{width:185.742779px;}
._8_c00274{width:188.295983px;}
._11_c00274{width:189.534410px;}
._16_c00274{width:211.151857px;}
._a_c00274{width:331.082795px;}
.fc1_c00274{color:transparent;}
.fc0_c00274{color:rgb(0,0,0);}
.fs5_c00274{font-size:51.277200px;}
.fs0_c00274{font-size:54.000000px;}
.fs3_c00274{font-size:59.166000px;}
.fs2_c00274{font-size:60.120000px;}
.fs4_c00274{font-size:63.110400px;}
.fs1_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y24_c00274{bottom:3.943800px;}
.y18_c00274{bottom:3.943950px;}
.y12_c00274{bottom:3.944100px;}
.yd_c00274{bottom:3.944250px;}
.y9_c00274{bottom:3.944400px;}
.y20_c00274{bottom:3.945300px;}
.y1e_c00274{bottom:3.945450px;}
.y14_c00274{bottom:3.945600px;}
.y26_c00274{bottom:4.930650px;}
.y29_c00274{bottom:5.916900px;}
.y2b_c00274{bottom:57.330000px;}
.y7_c00274{bottom:230.125680px;}
.y6_c00274{bottom:243.983340px;}
.y25_c00274{bottom:245.853000px;}
.y27_c00274{bottom:265.575000px;}
.y2a_c00274{bottom:285.297000px;}
.y28_c00274{bottom:305.019000px;}
.y23_c00274{bottom:325.728000px;}
.y22_c00274{bottom:345.448500px;}
.y21_c00274{bottom:365.170500px;}
.y1f_c00274{bottom:384.892500px;}
.y1d_c00274{bottom:404.614500px;}
.y1c_c00274{bottom:424.338000px;}
.y1b_c00274{bottom:444.060000px;}
.y1a_c00274{bottom:463.782000px;}
.y19_c00274{bottom:483.504000px;}
.y17_c00274{bottom:503.226000px;}
.y16_c00274{bottom:522.948000px;}
.y15_c00274{bottom:542.670000px;}
.y13_c00274{bottom:562.390500px;}
.y11_c00274{bottom:582.114000px;}
.y10_c00274{bottom:601.836000px;}
.yf_c00274{bottom:621.558000px;}
.ye_c00274{bottom:641.280000px;}
.yc_c00274{bottom:661.002000px;}
.yb_c00274{bottom:680.724000px;}
.ya_c00274{bottom:700.446000px;}
.y8_c00274{bottom:720.168000px;}
.y5_c00274{bottom:743.310000px;}
.y4_c00274{bottom:761.220000px;}
.y3_c00274{bottom:781.110000px;}
.y2_c00274{bottom:796.594500px;}
.y1_c00274{bottom:827.640000px;}
.h5_c00274{height:18.735000px;}
.h7_c00274{height:18.736500px;}
.hb_c00274{height:19.722000px;}
.h8_c00274{height:43.998935px;}
.h6_c00274{height:48.794616px;}
.ha_c00274{height:50.325768px;}
.hc_c00274{height:51.677803px;}
.h9_c00274{height:52.758738px;}
.h2_c00274{height:52.998047px;}
.h4_c00274{height:59.004492px;}
.h3_c00274{height:70.664062px;}
.h0_c00274{height:893.070000px;}
.h1_c00274{height:893.250000px;}
.w3_c00274{width:75.079500px;}
.w4_c00274{width:1015.545000px;}
.w2_c00274{width:1048.146000px;}
.w0_c00274{width:1262.880000px;}
.w1_c00274{width:1263.000000px;}
.x0_c00274{left:0.000000px;}
.xb_c00274{left:1.976400px;}
.x5_c00274{left:4.938750px;}
.x4_c00274{left:7.902450px;}
.x6_c00274{left:11.854050px;}
.x8_c00274{left:13.830750px;}
.x2_c00274{left:106.380000px;}
.xa_c00274{left:138.979500px;}
.x1_c00274{left:631.440000px;}
.x9_c00274{left:934.537950px;}
.x7_c00274{left:941.142000px;}
.xc_c00274{left:1129.590000px;}
.x3_c00274{left:1156.586220px;}
@media print{
.v1_c00274{vertical-align:-55.040000pt;}
.v2_c00274{vertical-align:-3.506133pt;}
.v0_c00274{vertical-align:0.000000pt;}
.v3_c00274{vertical-align:3.523664pt;}
.ls5_c00274{letter-spacing:-2.103680pt;}
.ls11_c00274{letter-spacing:-1.732030pt;}
.lsa_c00274{letter-spacing:-1.472576pt;}
.lsb_c00274{letter-spacing:-1.419984pt;}
.ls9_c00274{letter-spacing:-1.209616pt;}
.lse_c00274{letter-spacing:-1.157024pt;}
.ls8_c00274{letter-spacing:-0.631104pt;}
.ls7_c00274{letter-spacing:-0.392687pt;}
.ls6_c00274{letter-spacing:-0.157776pt;}
.ls3_c00274{letter-spacing:-0.096000pt;}
.ls4_c00274{letter-spacing:0.000000pt;}
.lsf_c00274{letter-spacing:0.820435pt;}
.lsc_c00274{letter-spacing:1.104432pt;}
.lsd_c00274{letter-spacing:1.577760pt;}
.ls10_c00274{letter-spacing:1.777610pt;}
.ls2_c00274{letter-spacing:50.488320pt;}
.ls1_c00274{letter-spacing:194.222256pt;}
.ls0_c00274{letter-spacing:644.960000pt;}
.ws21_c00274{word-spacing:-11.254688pt;}
.wsc_c00274{word-spacing:-9.782112pt;}
.ws2f_c00274{word-spacing:-2.643625pt;}
.ws2e_c00274{word-spacing:-1.686450pt;}
.ws2b_c00274{word-spacing:-1.209616pt;}
.ws2d_c00274{word-spacing:-0.210368pt;}
.ws2c_c00274{word-spacing:-0.157776pt;}
.ws26_c00274{word-spacing:0.000000pt;}
.ws2a_c00274{word-spacing:0.052592pt;}
.ws28_c00274{word-spacing:0.144000pt;}
.ws27_c00274{word-spacing:0.240000pt;}
.ws30_c00274{word-spacing:0.866015pt;}
.ws29_c00274{word-spacing:2.103680pt;}
.wsf_c00274{word-spacing:18.196832pt;}
.ws0_c00274{word-spacing:32.238896pt;}
.ws4_c00274{word-spacing:53.196808pt;}
.wse_c00274{word-spacing:55.111157pt;}
.ws9_c00274{word-spacing:63.704690pt;}
.ws19_c00274{word-spacing:66.865469pt;}
.ws5_c00274{word-spacing:69.158480pt;}
.wsa_c00274{word-spacing:80.854941pt;}
.ws1a_c00274{word-spacing:104.237344pt;}
.ws6_c00274{word-spacing:129.975869pt;}
.ws2_c00274{word-spacing:140.862413pt;}
.ws1f_c00274{word-spacing:144.386077pt;}
.ws11_c00274{word-spacing:163.021907pt;}
.ws3_c00274{word-spacing:163.022440pt;}
.wsd_c00274{word-spacing:170.034507pt;}
.ws1b_c00274{word-spacing:186.491232pt;}
.ws22_c00274{word-spacing:186.528046pt;}
.ws7_c00274{word-spacing:186.543824pt;}
.ws24_c00274{word-spacing:197.062224pt;}
.ws17_c00274{word-spacing:222.479938pt;}
.ws16_c00274{word-spacing:252.415304pt;}
.ws14_c00274{word-spacing:260.256771pt;}
.ws1c_c00274{word-spacing:260.645952pt;}
.ws23_c00274{word-spacing:272.179378pt;}
.ws18_c00274{word-spacing:277.007323pt;}
.ws1e_c00274{word-spacing:281.703789pt;}
.ws1d_c00274{word-spacing:289.708291pt;}
.ws1_c00274{word-spacing:307.242464pt;}
.ws12_c00274{word-spacing:313.059139pt;}
.ws20_c00274{word-spacing:336.241693pt;}
.ws8_c00274{word-spacing:341.411486pt;}
.ws25_c00274{word-spacing:343.125986pt;}
.ws13_c00274{word-spacing:346.754834pt;}
.wsb_c00274{word-spacing:356.379170pt;}
.ws10_c00274{word-spacing:365.882544pt;}
.ws15_c00274{word-spacing:371.672923pt;}
._18_c00274{margin-left:-5.508977pt;}
._17_c00274{margin-left:-4.124966pt;}
._b_c00274{margin-left:-2.734784pt;}
._19_c00274{margin-left:-1.832550pt;}
._1_c00274{margin-left:-0.940800pt;}
._0_c00274{width:1.089600pt;}
._c_c00274{width:2.199154pt;}
._2_c00274{width:3.182275pt;}
._1a_c00274{width:5.181412pt;}
._6_c00274{width:73.176050pt;}
._10_c00274{width:74.159171pt;}
._5_c00274{width:76.699714pt;}
._f_c00274{width:77.682835pt;}
._15_c00274{width:79.429870pt;}
._13_c00274{width:99.089466pt;}
._9_c00274{width:129.904579pt;}
._12_c00274{width:140.807359pt;}
._4_c00274{width:146.810916pt;}
._e_c00274{width:147.794038pt;}
._7_c00274{width:151.058375pt;}
._3_c00274{width:157.365388pt;}
._d_c00274{width:158.348509pt;}
._14_c00274{width:165.104692pt;}
._8_c00274{width:167.374207pt;}
._11_c00274{width:168.475031pt;}
._16_c00274{width:187.690539pt;}
._a_c00274{width:294.295818pt;}
.fs5_c00274{font-size:45.579733pt;}
.fs0_c00274{font-size:48.000000pt;}
.fs3_c00274{font-size:52.592000pt;}
.fs2_c00274{font-size:53.440000pt;}
.fs4_c00274{font-size:56.098133pt;}
.fs1_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y24_c00274{bottom:3.505600pt;}
.y18_c00274{bottom:3.505733pt;}
.y12_c00274{bottom:3.505867pt;}
.yd_c00274{bottom:3.506000pt;}
.y9_c00274{bottom:3.506133pt;}
.y20_c00274{bottom:3.506933pt;}
.y1e_c00274{bottom:3.507067pt;}
.y14_c00274{bottom:3.507200pt;}
.y26_c00274{bottom:4.382800pt;}
.y29_c00274{bottom:5.259467pt;}
.y2b_c00274{bottom:50.960000pt;}
.y7_c00274{bottom:204.556160pt;}
.y6_c00274{bottom:216.874080pt;}
.y25_c00274{bottom:218.536000pt;}
.y27_c00274{bottom:236.066667pt;}
.y2a_c00274{bottom:253.597333pt;}
.y28_c00274{bottom:271.128000pt;}
.y23_c00274{bottom:289.536000pt;}
.y22_c00274{bottom:307.065333pt;}
.y21_c00274{bottom:324.596000pt;}
.y1f_c00274{bottom:342.126667pt;}
.y1d_c00274{bottom:359.657333pt;}
.y1c_c00274{bottom:377.189333pt;}
.y1b_c00274{bottom:394.720000pt;}
.y1a_c00274{bottom:412.250667pt;}
.y19_c00274{bottom:429.781333pt;}
.y17_c00274{bottom:447.312000pt;}
.y16_c00274{bottom:464.842667pt;}
.y15_c00274{bottom:482.373333pt;}
.y13_c00274{bottom:499.902667pt;}
.y11_c00274{bottom:517.434667pt;}
.y10_c00274{bottom:534.965333pt;}
.yf_c00274{bottom:552.496000pt;}
.ye_c00274{bottom:570.026667pt;}
.yc_c00274{bottom:587.557333pt;}
.yb_c00274{bottom:605.088000pt;}
.ya_c00274{bottom:622.618667pt;}
.y8_c00274{bottom:640.149333pt;}
.y5_c00274{bottom:660.720000pt;}
.y4_c00274{bottom:676.640000pt;}
.y3_c00274{bottom:694.320000pt;}
.y2_c00274{bottom:708.084000pt;}
.y1_c00274{bottom:735.680000pt;}
.h5_c00274{height:16.653333pt;}
.h7_c00274{height:16.654667pt;}
.hb_c00274{height:17.530667pt;}
.h8_c00274{height:39.110164pt;}
.h6_c00274{height:43.372992pt;}
.ha_c00274{height:44.734016pt;}
.hc_c00274{height:45.935825pt;}
.h9_c00274{height:46.896656pt;}
.h2_c00274{height:47.109375pt;}
.h4_c00274{height:52.448437pt;}
.h3_c00274{height:62.812500pt;}
.h0_c00274{height:793.840000pt;}
.h1_c00274{height:794.000000pt;}
.w3_c00274{width:66.737333pt;}
.w4_c00274{width:902.706667pt;}
.w2_c00274{width:931.685333pt;}
.w0_c00274{width:1122.560000pt;}
.w1_c00274{width:1122.666667pt;}
.x0_c00274{left:0.000000pt;}
.xb_c00274{left:1.756800pt;}
.x5_c00274{left:4.390000pt;}
.x4_c00274{left:7.024400pt;}
.x6_c00274{left:10.536933pt;}
.x8_c00274{left:12.294000pt;}
.x2_c00274{left:94.560000pt;}
.xa_c00274{left:123.537333pt;}
.x1_c00274{left:561.280000pt;}
.x9_c00274{left:830.700400pt;}
.x7_c00274{left:836.570667pt;}
.xc_c00274{left:1004.080000pt;}
.x3_c00274{left:1028.076640pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_818a301af66655f6b9069a2b.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00275;src:url('chunks/assets/font_05f2977d2f74ca151cc30255.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;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_c00275;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_92a027c87f08a83c11a7d972.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00275{vertical-align:-61.938000px;}
.v8_c00275{vertical-align:-20.880000px;}
.v2_c00275{vertical-align:-14.760000px;}
.v6_c00275{vertical-align:-10.440000px;}
.v0_c00275{vertical-align:0.000000px;}
.v3_c00275{vertical-align:14.760000px;}
.v4_c00275{vertical-align:27.000000px;}
.v7_c00275{vertical-align:36.360000px;}
.v5_c00275{vertical-align:42.120000px;}
.ls1a_c00275{letter-spacing:-0.432000px;}
.ls19_c00275{letter-spacing:-0.360000px;}
.ls16_c00275{letter-spacing:-0.216000px;}
.ls17_c00275{letter-spacing:-0.191520px;}
.ls15_c00275{letter-spacing:-0.072000px;}
.ls1b_c00275{letter-spacing:-0.060120px;}
.ls14_c00275{letter-spacing:0.000000px;}
.ls7_c00275{letter-spacing:0.072000px;}
.ls18_c00275{letter-spacing:0.102240px;}
.ls12_c00275{letter-spacing:0.120240px;}
.ls4_c00275{letter-spacing:0.144000px;}
.lsa_c00275{letter-spacing:0.180000px;}
.ls1c_c00275{letter-spacing:0.180360px;}
.ls5_c00275{letter-spacing:0.191520px;}
.lsf_c00275{letter-spacing:0.360000px;}
.lsb_c00275{letter-spacing:0.374400px;}
.lsc_c00275{letter-spacing:2.282040px;}
.ls2_c00275{letter-spacing:2.880000px;}
.ls13_c00275{letter-spacing:3.667320px;}
.ls9_c00275{letter-spacing:5.400000px;}
.ls1_c00275{letter-spacing:8.640000px;}
.lsd_c00275{letter-spacing:10.440000px;}
.ls6_c00275{letter-spacing:11.160000px;}
.lse_c00275{letter-spacing:15.840000px;}
.ls11_c00275{letter-spacing:20.016000px;}
.ls3_c00275{letter-spacing:22.601520px;}
.ls10_c00275{letter-spacing:22.961520px;}
.ls8_c00275{letter-spacing:24.480000px;}
.ls0_c00275{letter-spacing:319.518000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00275{word-spacing:-72.000000px;}
.ws6_c00275{word-spacing:-51.222240px;}
.ws5_c00275{word-spacing:-51.120000px;}
.ws3_c00275{word-spacing:-18.000000px;}
.ws0_c00275{word-spacing:-17.928000px;}
.ws7_c00275{word-spacing:-17.784000px;}
.ws8_c00275{word-spacing:-17.568000px;}
.wsa_c00275{word-spacing:-15.030000px;}
.ws4_c00275{word-spacing:-12.161520px;}
.ws9_c00275{word-spacing:-9.720000px;}
.wse_c00275{word-spacing:-0.432000px;}
.ws3d_c00275{word-spacing:-0.420840px;}
.ws3b_c00275{word-spacing:-0.180360px;}
.wsc_c00275{word-spacing:-0.162000px;}
.ws2d_c00275{word-spacing:-0.144000px;}
.wsd_c00275{word-spacing:-0.072000px;}
.ws3c_c00275{word-spacing:-0.060120px;}
.wsb_c00275{word-spacing:0.000000px;}
.ws38_c00275{word-spacing:0.060120px;}
.ws3e_c00275{word-spacing:0.180360px;}
.ws24_c00275{word-spacing:0.191520px;}
.ws21_c00275{word-spacing:0.216000px;}
.ws37_c00275{word-spacing:0.288000px;}
.ws30_c00275{word-spacing:0.360000px;}
.ws36_c00275{word-spacing:0.648000px;}
.wsf_c00275{word-spacing:0.720000px;}
.ws14_c00275{word-spacing:2.448000px;}
.ws13_c00275{word-spacing:2.808000px;}
.ws12_c00275{word-spacing:2.880000px;}
.ws3a_c00275{word-spacing:3.486960px;}
.ws39_c00275{word-spacing:3.727440px;}
.ws2_c00275{word-spacing:4.176000px;}
.ws20_c00275{word-spacing:5.040000px;}
.ws2a_c00275{word-spacing:5.256000px;}
.ws22_c00275{word-spacing:5.328000px;}
.ws2b_c00275{word-spacing:5.400000px;}
.ws32_c00275{word-spacing:5.760000px;}
.ws33_c00275{word-spacing:7.848000px;}
.ws34_c00275{word-spacing:7.920000px;}
.ws11_c00275{word-spacing:8.280000px;}
.ws10_c00275{word-spacing:8.640000px;}
.ws16_c00275{word-spacing:9.936000px;}
.ws15_c00275{word-spacing:10.008000px;}
.ws17_c00275{word-spacing:10.080000px;}
.ws31_c00275{word-spacing:10.368000px;}
.ws2c_c00275{word-spacing:10.440000px;}
.ws26_c00275{word-spacing:11.088000px;}
.ws25_c00275{word-spacing:11.160000px;}
.ws2e_c00275{word-spacing:12.168000px;}
.ws2f_c00275{word-spacing:12.240000px;}
.ws23_c00275{word-spacing:13.320000px;}
.ws1d_c00275{word-spacing:14.328000px;}
.ws1e_c00275{word-spacing:14.400000px;}
.ws35_c00275{word-spacing:15.840000px;}
.ws1c_c00275{word-spacing:16.200000px;}
.ws1b_c00275{word-spacing:18.288000px;}
.ws1a_c00275{word-spacing:18.360000px;}
.ws19_c00275{word-spacing:19.008000px;}
.ws18_c00275{word-spacing:19.080000px;}
.ws1f_c00275{word-spacing:22.320000px;}
.ws29_c00275{word-spacing:24.336000px;}
.ws28_c00275{word-spacing:24.408000px;}
.ws27_c00275{word-spacing:24.480000px;}
._b_c00275{margin-left:-5.162400px;}
._5_c00275{margin-left:-3.744000px;}
._0_c00275{margin-left:-1.087200px;}
._1_c00275{width:1.080000px;}
._7_c00275{width:2.296800px;}
._8_c00275{width:3.326400px;}
._3_c00275{width:5.184000px;}
._4_c00275{width:6.688800px;}
._2_c00275{width:10.612800px;}
._a_c00275{width:11.959200px;}
._9_c00275{width:13.169520px;}
._c_c00275{width:16.178400px;}
._6_c00275{width:19.224000px;}
.fc0_c00275{color:rgb(0,0,0);}
.fs5_c00275{font-size:38.880000px;}
.fs4_c00275{font-size:42.120000px;}
.fs3_c00275{font-size:47.880000px;}
.fs2_c00275{font-size:51.120000px;}
.fs0_c00275{font-size:54.000000px;}
.fs6_c00275{font-size:60.120000px;}
.fs1_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y27_c00275{bottom:57.240000px;}
.y26_c00275{bottom:109.795680px;}
.y25_c00275{bottom:132.210000px;}
.y24_c00275{bottom:149.490000px;}
.y28_c00275{bottom:162.180000px;}
.y23_c00275{bottom:194.400000px;}
.y22_c00275{bottom:226.080000px;}
.y21_c00275{bottom:257.580000px;}
.y20_c00275{bottom:288.630000px;}
.y1f_c00275{bottom:319.680000px;}
.y1e_c00275{bottom:350.730000px;}
.y1d_c00275{bottom:381.780000px;}
.y1c_c00275{bottom:412.830000px;}
.y1b_c00275{bottom:442.620000px;}
.y1a_c00275{bottom:451.710000px;}
.y19_c00275{bottom:488.790000px;}
.y18_c00275{bottom:519.840000px;}
.y17_c00275{bottom:550.890000px;}
.y16_c00275{bottom:581.940000px;}
.y15_c00275{bottom:612.990000px;}
.y14_c00275{bottom:644.040000px;}
.y13_c00275{bottom:675.090000px;}
.y12_c00275{bottom:706.140000px;}
.y11_c00275{bottom:737.190000px;}
.y10_c00275{bottom:768.240000px;}
.yf_c00275{bottom:799.290000px;}
.ye_c00275{bottom:830.340000px;}
.yd_c00275{bottom:861.390000px;}
.yc_c00275{bottom:892.440000px;}
.yb_c00275{bottom:923.580000px;}
.ya_c00275{bottom:955.080000px;}
.y9_c00275{bottom:986.130000px;}
.y8_c00275{bottom:1017.180000px;}
.y7_c00275{bottom:1048.230000px;}
.y6_c00275{bottom:1079.280000px;}
.y5_c00275{bottom:1110.330000px;}
.y4_c00275{bottom:1131.030000px;}
.y3_c00275{bottom:1150.915500px;}
.y2_c00275{bottom:1166.400000px;}
.y1_c00275{bottom:1197.450000px;}
.h9_c00275{height:38.158594px;}
.h4_c00275{height:50.027344px;}
.h2_c00275{height:52.998047px;}
.ha_c00275{height:59.004492px;}
.h3_c00275{height:70.664062px;}
.h6_c00275{height:73.991602px;}
.h5_c00275{height:143.542969px;}
.h7_c00275{height:144.035508px;}
.h8_c00275{height:179.902969px;}
.h0_c00275{height:1262.880000px;}
.h1_c00275{height:1263.000000px;}
.w0_c00275{width:893.070000px;}
.w1_c00275{width:893.250000px;}
.x0_c00275{left:0.000000px;}
.x2_c00275{left:127.620000px;}
.x1_c00275{left:446.580000px;}
.x3_c00275{left:510.390000px;}
@media print{
.v1_c00275{vertical-align:-55.056000pt;}
.v8_c00275{vertical-align:-18.560000pt;}
.v2_c00275{vertical-align:-13.120000pt;}
.v6_c00275{vertical-align:-9.280000pt;}
.v0_c00275{vertical-align:0.000000pt;}
.v3_c00275{vertical-align:13.120000pt;}
.v4_c00275{vertical-align:24.000000pt;}
.v7_c00275{vertical-align:32.320000pt;}
.v5_c00275{vertical-align:37.440000pt;}
.ls1a_c00275{letter-spacing:-0.384000pt;}
.ls19_c00275{letter-spacing:-0.320000pt;}
.ls16_c00275{letter-spacing:-0.192000pt;}
.ls17_c00275{letter-spacing:-0.170240pt;}
.ls15_c00275{letter-spacing:-0.064000pt;}
.ls1b_c00275{letter-spacing:-0.053440pt;}
.ls14_c00275{letter-spacing:0.000000pt;}
.ls7_c00275{letter-spacing:0.064000pt;}
.ls18_c00275{letter-spacing:0.090880pt;}
.ls12_c00275{letter-spacing:0.106880pt;}
.ls4_c00275{letter-spacing:0.128000pt;}
.lsa_c00275{letter-spacing:0.160000pt;}
.ls1c_c00275{letter-spacing:0.160320pt;}
.ls5_c00275{letter-spacing:0.170240pt;}
.lsf_c00275{letter-spacing:0.320000pt;}
.lsb_c00275{letter-spacing:0.332800pt;}
.lsc_c00275{letter-spacing:2.028480pt;}
.ls2_c00275{letter-spacing:2.560000pt;}
.ls13_c00275{letter-spacing:3.259840pt;}
.ls9_c00275{letter-spacing:4.800000pt;}
.ls1_c00275{letter-spacing:7.680000pt;}
.lsd_c00275{letter-spacing:9.280000pt;}
.ls6_c00275{letter-spacing:9.920000pt;}
.lse_c00275{letter-spacing:14.080000pt;}
.ls11_c00275{letter-spacing:17.792000pt;}
.ls3_c00275{letter-spacing:20.090240pt;}
.ls10_c00275{letter-spacing:20.410240pt;}
.ls8_c00275{letter-spacing:21.760000pt;}
.ls0_c00275{letter-spacing:284.016000pt;}
.ws1_c00275{word-spacing:-64.000000pt;}
.ws6_c00275{word-spacing:-45.530880pt;}
.ws5_c00275{word-spacing:-45.440000pt;}
.ws3_c00275{word-spacing:-16.000000pt;}
.ws0_c00275{word-spacing:-15.936000pt;}
.ws7_c00275{word-spacing:-15.808000pt;}
.ws8_c00275{word-spacing:-15.616000pt;}
.wsa_c00275{word-spacing:-13.360000pt;}
.ws4_c00275{word-spacing:-10.810240pt;}
.ws9_c00275{word-spacing:-8.640000pt;}
.wse_c00275{word-spacing:-0.384000pt;}
.ws3d_c00275{word-spacing:-0.374080pt;}
.ws3b_c00275{word-spacing:-0.160320pt;}
.wsc_c00275{word-spacing:-0.144000pt;}
.ws2d_c00275{word-spacing:-0.128000pt;}
.wsd_c00275{word-spacing:-0.064000pt;}
.ws3c_c00275{word-spacing:-0.053440pt;}
.wsb_c00275{word-spacing:0.000000pt;}
.ws38_c00275{word-spacing:0.053440pt;}
.ws3e_c00275{word-spacing:0.160320pt;}
.ws24_c00275{word-spacing:0.170240pt;}
.ws21_c00275{word-spacing:0.192000pt;}
.ws37_c00275{word-spacing:0.256000pt;}
.ws30_c00275{word-spacing:0.320000pt;}
.ws36_c00275{word-spacing:0.576000pt;}
.wsf_c00275{word-spacing:0.640000pt;}
.ws14_c00275{word-spacing:2.176000pt;}
.ws13_c00275{word-spacing:2.496000pt;}
.ws12_c00275{word-spacing:2.560000pt;}
.ws3a_c00275{word-spacing:3.099520pt;}
.ws39_c00275{word-spacing:3.313280pt;}
.ws2_c00275{word-spacing:3.712000pt;}
.ws20_c00275{word-spacing:4.480000pt;}
.ws2a_c00275{word-spacing:4.672000pt;}
.ws22_c00275{word-spacing:4.736000pt;}
.ws2b_c00275{word-spacing:4.800000pt;}
.ws32_c00275{word-spacing:5.120000pt;}
.ws33_c00275{word-spacing:6.976000pt;}
.ws34_c00275{word-spacing:7.040000pt;}
.ws11_c00275{word-spacing:7.360000pt;}
.ws10_c00275{word-spacing:7.680000pt;}
.ws16_c00275{word-spacing:8.832000pt;}
.ws15_c00275{word-spacing:8.896000pt;}
.ws17_c00275{word-spacing:8.960000pt;}
.ws31_c00275{word-spacing:9.216000pt;}
.ws2c_c00275{word-spacing:9.280000pt;}
.ws26_c00275{word-spacing:9.856000pt;}
.ws25_c00275{word-spacing:9.920000pt;}
.ws2e_c00275{word-spacing:10.816000pt;}
.ws2f_c00275{word-spacing:10.880000pt;}
.ws23_c00275{word-spacing:11.840000pt;}
.ws1d_c00275{word-spacing:12.736000pt;}
.ws1e_c00275{word-spacing:12.800000pt;}
.ws35_c00275{word-spacing:14.080000pt;}
.ws1c_c00275{word-spacing:14.400000pt;}
.ws1b_c00275{word-spacing:16.256000pt;}
.ws1a_c00275{word-spacing:16.320000pt;}
.ws19_c00275{word-spacing:16.896000pt;}
.ws18_c00275{word-spacing:16.960000pt;}
.ws1f_c00275{word-spacing:19.840000pt;}
.ws29_c00275{word-spacing:21.632000pt;}
.ws28_c00275{word-spacing:21.696000pt;}
.ws27_c00275{word-spacing:21.760000pt;}
._b_c00275{margin-left:-4.588800pt;}
._5_c00275{margin-left:-3.328000pt;}
._0_c00275{margin-left:-0.966400pt;}
._1_c00275{width:0.960000pt;}
._7_c00275{width:2.041600pt;}
._8_c00275{width:2.956800pt;}
._3_c00275{width:4.608000pt;}
._4_c00275{width:5.945600pt;}
._2_c00275{width:9.433600pt;}
._a_c00275{width:10.630400pt;}
._9_c00275{width:11.706240pt;}
._c_c00275{width:14.380800pt;}
._6_c00275{width:17.088000pt;}
.fs5_c00275{font-size:34.560000pt;}
.fs4_c00275{font-size:37.440000pt;}
.fs3_c00275{font-size:42.560000pt;}
.fs2_c00275{font-size:45.440000pt;}
.fs0_c00275{font-size:48.000000pt;}
.fs6_c00275{font-size:53.440000pt;}
.fs1_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y27_c00275{bottom:50.880000pt;}
.y26_c00275{bottom:97.596160pt;}
.y25_c00275{bottom:117.520000pt;}
.y24_c00275{bottom:132.880000pt;}
.y28_c00275{bottom:144.160000pt;}
.y23_c00275{bottom:172.800000pt;}
.y22_c00275{bottom:200.960000pt;}
.y21_c00275{bottom:228.960000pt;}
.y20_c00275{bottom:256.560000pt;}
.y1f_c00275{bottom:284.160000pt;}
.y1e_c00275{bottom:311.760000pt;}
.y1d_c00275{bottom:339.360000pt;}
.y1c_c00275{bottom:366.960000pt;}
.y1b_c00275{bottom:393.440000pt;}
.y1a_c00275{bottom:401.520000pt;}
.y19_c00275{bottom:434.480000pt;}
.y18_c00275{bottom:462.080000pt;}
.y17_c00275{bottom:489.680000pt;}
.y16_c00275{bottom:517.280000pt;}
.y15_c00275{bottom:544.880000pt;}
.y14_c00275{bottom:572.480000pt;}
.y13_c00275{bottom:600.080000pt;}
.y12_c00275{bottom:627.680000pt;}
.y11_c00275{bottom:655.280000pt;}
.y10_c00275{bottom:682.880000pt;}
.yf_c00275{bottom:710.480000pt;}
.ye_c00275{bottom:738.080000pt;}
.yd_c00275{bottom:765.680000pt;}
.yc_c00275{bottom:793.280000pt;}
.yb_c00275{bottom:820.960000pt;}
.ya_c00275{bottom:848.960000pt;}
.y9_c00275{bottom:876.560000pt;}
.y8_c00275{bottom:904.160000pt;}
.y7_c00275{bottom:931.760000pt;}
.y6_c00275{bottom:959.360000pt;}
.y5_c00275{bottom:986.960000pt;}
.y4_c00275{bottom:1005.360000pt;}
.y3_c00275{bottom:1023.036000pt;}
.y2_c00275{bottom:1036.800000pt;}
.y1_c00275{bottom:1064.400000pt;}
.h9_c00275{height:33.918750pt;}
.h4_c00275{height:44.468750pt;}
.h2_c00275{height:47.109375pt;}
.ha_c00275{height:52.448437pt;}
.h3_c00275{height:62.812500pt;}
.h6_c00275{height:65.770312pt;}
.h5_c00275{height:127.593750pt;}
.h7_c00275{height:128.031562pt;}
.h8_c00275{height:159.913750pt;}
.h0_c00275{height:1122.560000pt;}
.h1_c00275{height:1122.666667pt;}
.w0_c00275{width:793.840000pt;}
.w1_c00275{width:794.000000pt;}
.x0_c00275{left:0.000000pt;}
.x2_c00275{left:113.440000pt;}
.x1_c00275{left:396.960000pt;}
.x3_c00275{left:453.680000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de5c119471eef14732b6f1d5.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_228113fd452e334df2421d0f.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;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_c00276;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00276;src:url('chunks/assets/font_a96fe1ec7b1279120156636a.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00276;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00276{font-family:ff6_c00276;line-height:1.142090;font-style: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);}
.v1_c00276{vertical-align:-14.760000px;}
.v5_c00276{vertical-align:-10.440000px;}
.v0_c00276{vertical-align:0.000000px;}
.v2_c00276{vertical-align:14.760000px;}
.v3_c00276{vertical-align:27.000000px;}
.v6_c00276{vertical-align:36.360000px;}
.v4_c00276{vertical-align:42.120000px;}
.ls16_c00276{letter-spacing:-0.432000px;}
.ls17_c00276{letter-spacing:-0.288000px;}
.ls18_c00276{letter-spacing:-0.216000px;}
.ls14_c00276{letter-spacing:-0.108000px;}
.ls1a_c00276{letter-spacing:-0.102240px;}
.ls15_c00276{letter-spacing:-0.072000px;}
.ls13_c00276{letter-spacing:0.000000px;}
.ls8_c00276{letter-spacing:0.072000px;}
.ls19_c00276{letter-spacing:0.102240px;}
.ls4_c00276{letter-spacing:0.144000px;}
.lsc_c00276{letter-spacing:0.180000px;}
.ls2_c00276{letter-spacing:0.360000px;}
.ls11_c00276{letter-spacing:0.374400px;}
.lsd_c00276{letter-spacing:0.720000px;}
.lsb_c00276{letter-spacing:1.800000px;}
.lse_c00276{letter-spacing:1.922040px;}
.lsa_c00276{letter-spacing:2.160000px;}
.ls12_c00276{letter-spacing:2.282040px;}
.ls9_c00276{letter-spacing:3.600000px;}
.ls0_c00276{letter-spacing:5.040000px;}
.ls10_c00276{letter-spacing:6.480000px;}
.ls6_c00276{letter-spacing:9.000000px;}
.ls3_c00276{letter-spacing:17.280000px;}
.ls7_c00276{letter-spacing:20.016000px;}
.ls1_c00276{letter-spacing:20.160000px;}
.ls5_c00276{letter-spacing:22.961520px;}
.lsf_c00276{letter-spacing:33.480000px;}
.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;}
}
.ws2_c00276{word-spacing:-72.000000px;}
.ws7_c00276{word-spacing:-51.222240px;}
.ws6_c00276{word-spacing:-51.120000px;}
.ws8_c00276{word-spacing:-51.017760px;}
.ws5_c00276{word-spacing:-18.072000px;}
.ws4_c00276{word-spacing:-18.000000px;}
.ws0_c00276{word-spacing:-17.928000px;}
.ws1_c00276{word-spacing:-17.568000px;}
.ws2b_c00276{word-spacing:-0.360000px;}
.ws23_c00276{word-spacing:-0.144000px;}
.ws11_c00276{word-spacing:-0.072000px;}
.ws9_c00276{word-spacing:0.000000px;}
.wsb_c00276{word-spacing:0.162000px;}
.ws34_c00276{word-spacing:0.216000px;}
.wsa_c00276{word-spacing:0.270000px;}
.ws2f_c00276{word-spacing:0.288000px;}
.ws36_c00276{word-spacing:0.360000px;}
.ws10_c00276{word-spacing:0.720000px;}
.ws25_c00276{word-spacing:1.008000px;}
.ws26_c00276{word-spacing:1.080000px;}
.ws21_c00276{word-spacing:2.016000px;}
.ws20_c00276{word-spacing:2.088000px;}
.ws2a_c00276{word-spacing:2.160000px;}
.ws28_c00276{word-spacing:3.168000px;}
.ws2e_c00276{word-spacing:3.456000px;}
.ws27_c00276{word-spacing:3.528000px;}
.ws29_c00276{word-spacing:3.600000px;}
.ws24_c00276{word-spacing:3.888000px;}
.ws22_c00276{word-spacing:3.960000px;}
.ws3_c00276{word-spacing:4.176000px;}
.ws16_c00276{word-spacing:4.320000px;}
.ws15_c00276{word-spacing:4.608000px;}
.ws14_c00276{word-spacing:4.680000px;}
.ws32_c00276{word-spacing:4.968000px;}
.ws2d_c00276{word-spacing:5.040000px;}
.ws2c_c00276{word-spacing:5.400000px;}
.ws1a_c00276{word-spacing:6.408000px;}
.ws1b_c00276{word-spacing:6.480000px;}
.ws31_c00276{word-spacing:6.840000px;}
.wsd_c00276{word-spacing:7.776000px;}
.wsc_c00276{word-spacing:7.848000px;}
.ws1f_c00276{word-spacing:9.216000px;}
.ws12_c00276{word-spacing:11.088000px;}
.ws13_c00276{word-spacing:11.160000px;}
.wsf_c00276{word-spacing:12.168000px;}
.wse_c00276{word-spacing:12.600000px;}
.ws30_c00276{word-spacing:16.920000px;}
.ws1c_c00276{word-spacing:17.280000px;}
.ws19_c00276{word-spacing:19.800000px;}
.ws18_c00276{word-spacing:20.088000px;}
.ws17_c00276{word-spacing:20.160000px;}
.ws1e_c00276{word-spacing:23.328000px;}
.ws1d_c00276{word-spacing:23.400000px;}
.ws35_c00276{word-spacing:33.408000px;}
.ws33_c00276{word-spacing:33.480000px;}
._9_c00276{margin-left:-5.940000px;}
._8_c00276{margin-left:-4.766400px;}
._1_c00276{margin-left:-1.058400px;}
._0_c00276{width:1.220400px;}
._a_c00276{width:4.248000px;}
._6_c00276{width:5.594400px;}
._2_c00276{width:7.840800px;}
._4_c00276{width:9.806400px;}
._5_c00276{width:11.152800px;}
._3_c00276{width:12.171600px;}
._7_c00276{width:16.200000px;}
._b_c00276{width:34.272000px;}
.fc0_c00276{color:rgb(0,0,0);}
.fs4_c00276{font-size:42.120000px;}
.fs3_c00276{font-size:47.880000px;}
.fs2_c00276{font-size:51.120000px;}
.fs0_c00276{font-size:54.000000px;}
.fs1_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y27_c00276{bottom:57.240000px;}
.y26_c00276{bottom:148.410000px;}
.y25_c00276{bottom:179.460000px;}
.y24_c00276{bottom:209.340000px;}
.y23_c00276{bottom:218.430000px;}
.y22_c00276{bottom:255.510000px;}
.y21_c00276{bottom:285.390000px;}
.y20_c00276{bottom:294.480000px;}
.y1f_c00276{bottom:331.560000px;}
.y1e_c00276{bottom:362.610000px;}
.y1d_c00276{bottom:393.660000px;}
.y1c_c00276{bottom:424.710000px;}
.y1b_c00276{bottom:455.760000px;}
.y1a_c00276{bottom:486.810000px;}
.y19_c00276{bottom:517.860000px;}
.y18_c00276{bottom:548.820000px;}
.y17_c00276{bottom:579.870000px;}
.y16_c00276{bottom:610.920000px;}
.y15_c00276{bottom:642.690000px;}
.y14_c00276{bottom:675.090000px;}
.y13_c00276{bottom:706.140000px;}
.y12_c00276{bottom:737.190000px;}
.y11_c00276{bottom:768.420000px;}
.y10_c00276{bottom:799.920000px;}
.yf_c00276{bottom:830.970000px;}
.ye_c00276{bottom:861.930000px;}
.yd_c00276{bottom:892.980000px;}
.yc_c00276{bottom:924.030000px;}
.yb_c00276{bottom:955.080000px;}
.ya_c00276{bottom:986.130000px;}
.y9_c00276{bottom:1017.180000px;}
.y8_c00276{bottom:1048.230000px;}
.y7_c00276{bottom:1079.280000px;}
.y6_c00276{bottom:1110.330000px;}
.y5_c00276{bottom:1131.030000px;}
.y4_c00276{bottom:1150.920000px;}
.y3_c00276{bottom:1166.404500px;}
.y2_c00276{bottom:1181.970000px;}
.y1_c00276{bottom:1197.450000px;}
.h5_c00276{height:50.027344px;}
.h3_c00276{height:52.971680px;}
.h2_c00276{height:52.998047px;}
.h4_c00276{height:70.664062px;}
.h7_c00276{height:73.991602px;}
.h6_c00276{height:143.542969px;}
.h8_c00276{height:144.035508px;}
.ha_c00276{height:179.902969px;}
.h9_c00276{height:180.395508px;}
.h0_c00276{height:1262.880000px;}
.h1_c00276{height:1263.000000px;}
.w0_c00276{width:893.070000px;}
.w1_c00276{width:893.250000px;}
.x0_c00276{left:0.000000px;}
.x3_c00276{left:127.620000px;}
.x4_c00276{left:307.170000px;}
.x6_c00276{left:418.770000px;}
.x2_c00276{left:425.160000px;}
.x1_c00276{left:446.580000px;}
.x5_c00276{left:602.460000px;}
.x7_c00276{left:738.540000px;}
@media print{
.v1_c00276{vertical-align:-13.120000pt;}
.v5_c00276{vertical-align:-9.280000pt;}
.v0_c00276{vertical-align:0.000000pt;}
.v2_c00276{vertical-align:13.120000pt;}
.v3_c00276{vertical-align:24.000000pt;}
.v6_c00276{vertical-align:32.320000pt;}
.v4_c00276{vertical-align:37.440000pt;}
.ls16_c00276{letter-spacing:-0.384000pt;}
.ls17_c00276{letter-spacing:-0.256000pt;}
.ls18_c00276{letter-spacing:-0.192000pt;}
.ls14_c00276{letter-spacing:-0.096000pt;}
.ls1a_c00276{letter-spacing:-0.090880pt;}
.ls15_c00276{letter-spacing:-0.064000pt;}
.ls13_c00276{letter-spacing:0.000000pt;}
.ls8_c00276{letter-spacing:0.064000pt;}
.ls19_c00276{letter-spacing:0.090880pt;}
.ls4_c00276{letter-spacing:0.128000pt;}
.lsc_c00276{letter-spacing:0.160000pt;}
.ls2_c00276{letter-spacing:0.320000pt;}
.ls11_c00276{letter-spacing:0.332800pt;}
.lsd_c00276{letter-spacing:0.640000pt;}
.lsb_c00276{letter-spacing:1.600000pt;}
.lse_c00276{letter-spacing:1.708480pt;}
.lsa_c00276{letter-spacing:1.920000pt;}
.ls12_c00276{letter-spacing:2.028480pt;}
.ls9_c00276{letter-spacing:3.200000pt;}
.ls0_c00276{letter-spacing:4.480000pt;}
.ls10_c00276{letter-spacing:5.760000pt;}
.ls6_c00276{letter-spacing:8.000000pt;}
.ls3_c00276{letter-spacing:15.360000pt;}
.ls7_c00276{letter-spacing:17.792000pt;}
.ls1_c00276{letter-spacing:17.920000pt;}
.ls5_c00276{letter-spacing:20.410240pt;}
.lsf_c00276{letter-spacing:29.760000pt;}
.ws2_c00276{word-spacing:-64.000000pt;}
.ws7_c00276{word-spacing:-45.530880pt;}
.ws6_c00276{word-spacing:-45.440000pt;}
.ws8_c00276{word-spacing:-45.349120pt;}
.ws5_c00276{word-spacing:-16.064000pt;}
.ws4_c00276{word-spacing:-16.000000pt;}
.ws0_c00276{word-spacing:-15.936000pt;}
.ws1_c00276{word-spacing:-15.616000pt;}
.ws2b_c00276{word-spacing:-0.320000pt;}
.ws23_c00276{word-spacing:-0.128000pt;}
.ws11_c00276{word-spacing:-0.064000pt;}
.ws9_c00276{word-spacing:0.000000pt;}
.wsb_c00276{word-spacing:0.144000pt;}
.ws34_c00276{word-spacing:0.192000pt;}
.wsa_c00276{word-spacing:0.240000pt;}
.ws2f_c00276{word-spacing:0.256000pt;}
.ws36_c00276{word-spacing:0.320000pt;}
.ws10_c00276{word-spacing:0.640000pt;}
.ws25_c00276{word-spacing:0.896000pt;}
.ws26_c00276{word-spacing:0.960000pt;}
.ws21_c00276{word-spacing:1.792000pt;}
.ws20_c00276{word-spacing:1.856000pt;}
.ws2a_c00276{word-spacing:1.920000pt;}
.ws28_c00276{word-spacing:2.816000pt;}
.ws2e_c00276{word-spacing:3.072000pt;}
.ws27_c00276{word-spacing:3.136000pt;}
.ws29_c00276{word-spacing:3.200000pt;}
.ws24_c00276{word-spacing:3.456000pt;}
.ws22_c00276{word-spacing:3.520000pt;}
.ws3_c00276{word-spacing:3.712000pt;}
.ws16_c00276{word-spacing:3.840000pt;}
.ws15_c00276{word-spacing:4.096000pt;}
.ws14_c00276{word-spacing:4.160000pt;}
.ws32_c00276{word-spacing:4.416000pt;}
.ws2d_c00276{word-spacing:4.480000pt;}
.ws2c_c00276{word-spacing:4.800000pt;}
.ws1a_c00276{word-spacing:5.696000pt;}
.ws1b_c00276{word-spacing:5.760000pt;}
.ws31_c00276{word-spacing:6.080000pt;}
.wsd_c00276{word-spacing:6.912000pt;}
.wsc_c00276{word-spacing:6.976000pt;}
.ws1f_c00276{word-spacing:8.192000pt;}
.ws12_c00276{word-spacing:9.856000pt;}
.ws13_c00276{word-spacing:9.920000pt;}
.wsf_c00276{word-spacing:10.816000pt;}
.wse_c00276{word-spacing:11.200000pt;}
.ws30_c00276{word-spacing:15.040000pt;}
.ws1c_c00276{word-spacing:15.360000pt;}
.ws19_c00276{word-spacing:17.600000pt;}
.ws18_c00276{word-spacing:17.856000pt;}
.ws17_c00276{word-spacing:17.920000pt;}
.ws1e_c00276{word-spacing:20.736000pt;}
.ws1d_c00276{word-spacing:20.800000pt;}
.ws35_c00276{word-spacing:29.696000pt;}
.ws33_c00276{word-spacing:29.760000pt;}
._9_c00276{margin-left:-5.280000pt;}
._8_c00276{margin-left:-4.236800pt;}
._1_c00276{margin-left:-0.940800pt;}
._0_c00276{width:1.084800pt;}
._a_c00276{width:3.776000pt;}
._6_c00276{width:4.972800pt;}
._2_c00276{width:6.969600pt;}
._4_c00276{width:8.716800pt;}
._5_c00276{width:9.913600pt;}
._3_c00276{width:10.819200pt;}
._7_c00276{width:14.400000pt;}
._b_c00276{width:30.464000pt;}
.fs4_c00276{font-size:37.440000pt;}
.fs3_c00276{font-size:42.560000pt;}
.fs2_c00276{font-size:45.440000pt;}
.fs0_c00276{font-size:48.000000pt;}
.fs1_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y27_c00276{bottom:50.880000pt;}
.y26_c00276{bottom:131.920000pt;}
.y25_c00276{bottom:159.520000pt;}
.y24_c00276{bottom:186.080000pt;}
.y23_c00276{bottom:194.160000pt;}
.y22_c00276{bottom:227.120000pt;}
.y21_c00276{bottom:253.680000pt;}
.y20_c00276{bottom:261.760000pt;}
.y1f_c00276{bottom:294.720000pt;}
.y1e_c00276{bottom:322.320000pt;}
.y1d_c00276{bottom:349.920000pt;}
.y1c_c00276{bottom:377.520000pt;}
.y1b_c00276{bottom:405.120000pt;}
.y1a_c00276{bottom:432.720000pt;}
.y19_c00276{bottom:460.320000pt;}
.y18_c00276{bottom:487.840000pt;}
.y17_c00276{bottom:515.440000pt;}
.y16_c00276{bottom:543.040000pt;}
.y15_c00276{bottom:571.280000pt;}
.y14_c00276{bottom:600.080000pt;}
.y13_c00276{bottom:627.680000pt;}
.y12_c00276{bottom:655.280000pt;}
.y11_c00276{bottom:683.040000pt;}
.y10_c00276{bottom:711.040000pt;}
.yf_c00276{bottom:738.640000pt;}
.ye_c00276{bottom:766.160000pt;}
.yd_c00276{bottom:793.760000pt;}
.yc_c00276{bottom:821.360000pt;}
.yb_c00276{bottom:848.960000pt;}
.ya_c00276{bottom:876.560000pt;}
.y9_c00276{bottom:904.160000pt;}
.y8_c00276{bottom:931.760000pt;}
.y7_c00276{bottom:959.360000pt;}
.y6_c00276{bottom:986.960000pt;}
.y5_c00276{bottom:1005.360000pt;}
.y4_c00276{bottom:1023.040000pt;}
.y3_c00276{bottom:1036.804000pt;}
.y2_c00276{bottom:1050.640000pt;}
.y1_c00276{bottom:1064.400000pt;}
.h5_c00276{height:44.468750pt;}
.h3_c00276{height:47.085938pt;}
.h2_c00276{height:47.109375pt;}
.h4_c00276{height:62.812500pt;}
.h7_c00276{height:65.770312pt;}
.h6_c00276{height:127.593750pt;}
.h8_c00276{height:128.031563pt;}
.ha_c00276{height:159.913750pt;}
.h9_c00276{height:160.351562pt;}
.h0_c00276{height:1122.560000pt;}
.h1_c00276{height:1122.666667pt;}
.w0_c00276{width:793.840000pt;}
.w1_c00276{width:794.000000pt;}
.x0_c00276{left:0.000000pt;}
.x3_c00276{left:113.440000pt;}
.x4_c00276{left:273.040000pt;}
.x6_c00276{left:372.240000pt;}
.x2_c00276{left:377.920000pt;}
.x1_c00276{left:396.960000pt;}
.x5_c00276{left:535.520000pt;}
.x7_c00276{left:656.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_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_f6a60680f90382d461121515.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_ac31ed4b189b67a38e8db50a.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;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_c00277;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00277;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00277{font-family:ff5_c00277;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00277;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00277{font-family:ff6_c00277;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00277{vertical-align:-61.938000px;}
.v5_c00277{vertical-align:-20.880000px;}
.v3_c00277{vertical-align:-14.760000px;}
.v0_c00277{vertical-align:0.000000px;}
.v4_c00277{vertical-align:14.760000px;}
.v2_c00277{vertical-align:27.000000px;}
.ls13_c00277{letter-spacing:-0.576000px;}
.ls16_c00277{letter-spacing:-0.360000px;}
.ls15_c00277{letter-spacing:-0.288000px;}
.ls19_c00277{letter-spacing:-0.180360px;}
.ls18_c00277{letter-spacing:-0.120240px;}
.ls12_c00277{letter-spacing:-0.072000px;}
.ls17_c00277{letter-spacing:-0.060120px;}
.ls11_c00277{letter-spacing:0.000000px;}
.ls3_c00277{letter-spacing:0.072000px;}
.ls9_c00277{letter-spacing:0.144000px;}
.ls1a_c00277{letter-spacing:0.180360px;}
.ls4_c00277{letter-spacing:0.191520px;}
.ls14_c00277{letter-spacing:0.360000px;}
.ls5_c00277{letter-spacing:2.160000px;}
.lsa_c00277{letter-spacing:2.880000px;}
.lsb_c00277{letter-spacing:3.240000px;}
.lsd_c00277{letter-spacing:4.320000px;}
.lse_c00277{letter-spacing:9.360000px;}
.ls8_c00277{letter-spacing:11.160000px;}
.lsf_c00277{letter-spacing:12.324600px;}
.ls10_c00277{letter-spacing:12.390732px;}
.ls1_c00277{letter-spacing:15.480000px;}
.ls2_c00277{letter-spacing:15.840000px;}
.ls7_c00277{letter-spacing:20.016000px;}
.ls6_c00277{letter-spacing:22.961520px;}
.lsc_c00277{letter-spacing:27.360000px;}
.ls0_c00277{letter-spacing:319.518000px;}
.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;}
}
.ws5_c00277{word-spacing:-72.000000px;}
.ws3_c00277{word-spacing:-18.360000px;}
.ws7_c00277{word-spacing:-18.144000px;}
.ws8_c00277{word-spacing:-18.072000px;}
.ws2_c00277{word-spacing:-18.000000px;}
.ws0_c00277{word-spacing:-17.928000px;}
.ws1_c00277{word-spacing:-17.424000px;}
.wsa_c00277{word-spacing:-15.030000px;}
.ws4_c00277{word-spacing:-12.161520px;}
.ws9_c00277{word-spacing:-9.720000px;}
.ws12_c00277{word-spacing:-0.432000px;}
.ws41_c00277{word-spacing:-0.420840px;}
.ws13_c00277{word-spacing:-0.360000px;}
.wsc_c00277{word-spacing:-0.162000px;}
.ws18_c00277{word-spacing:-0.144000px;}
.wsd_c00277{word-spacing:-0.072000px;}
.ws40_c00277{word-spacing:-0.060120px;}
.wsb_c00277{word-spacing:0.000000px;}
.ws3b_c00277{word-spacing:0.060120px;}
.ws3e_c00277{word-spacing:0.180360px;}
.ws24_c00277{word-spacing:0.360000px;}
.ws15_c00277{word-spacing:1.296000px;}
.ws14_c00277{word-spacing:1.368000px;}
.wse_c00277{word-spacing:1.440000px;}
.ws16_c00277{word-spacing:1.800000px;}
.ws37_c00277{word-spacing:2.808000px;}
.ws38_c00277{word-spacing:2.880000px;}
.ws25_c00277{word-spacing:3.168000px;}
.ws23_c00277{word-spacing:3.240000px;}
.ws36_c00277{word-spacing:3.456000px;}
.ws22_c00277{word-spacing:3.528000px;}
.ws35_c00277{word-spacing:3.600000px;}
.ws2c_c00277{word-spacing:3.888000px;}
.ws2b_c00277{word-spacing:3.960000px;}
.ws6_c00277{word-spacing:4.176000px;}
.ws31_c00277{word-spacing:4.320000px;}
.ws20_c00277{word-spacing:5.400000px;}
.ws21_c00277{word-spacing:5.688000px;}
.ws39_c00277{word-spacing:7.560000px;}
.ws1a_c00277{word-spacing:7.920000px;}
.ws19_c00277{word-spacing:8.208000px;}
.ws17_c00277{word-spacing:8.928000px;}
.ws33_c00277{word-spacing:9.000000px;}
.ws32_c00277{word-spacing:9.360000px;}
.ws1b_c00277{word-spacing:10.656000px;}
.ws3a_c00277{word-spacing:10.800000px;}
.ws1d_c00277{word-spacing:11.088000px;}
.ws1c_c00277{word-spacing:11.160000px;}
.ws29_c00277{word-spacing:11.520000px;}
.ws3c_c00277{word-spacing:12.024000px;}
.ws3f_c00277{word-spacing:12.144240px;}
.ws3d_c00277{word-spacing:12.444840px;}
.ws34_c00277{word-spacing:12.600000px;}
.wsf_c00277{word-spacing:14.040000px;}
.ws11_c00277{word-spacing:15.408000px;}
.ws10_c00277{word-spacing:15.480000px;}
.ws28_c00277{word-spacing:15.768000px;}
.ws26_c00277{word-spacing:16.128000px;}
.ws27_c00277{word-spacing:16.200000px;}
.ws1e_c00277{word-spacing:20.448000px;}
.ws1f_c00277{word-spacing:20.520000px;}
.ws2a_c00277{word-spacing:25.560000px;}
.ws30_c00277{word-spacing:26.928000px;}
.ws2f_c00277{word-spacing:27.000000px;}
.ws2e_c00277{word-spacing:27.216000px;}
.ws2d_c00277{word-spacing:27.288000px;}
._6_c00277{margin-left:-5.976000px;}
._4_c00277{margin-left:-4.392000px;}
._2_c00277{margin-left:-1.080000px;}
._0_c00277{width:1.224000px;}
._1_c00277{width:2.304000px;}
._3_c00277{width:3.744000px;}
._5_c00277{width:6.624000px;}
._7_c00277{width:7.624800px;}
._b_c00277{width:9.864000px;}
._c_c00277{width:11.592000px;}
._d_c00277{width:12.866148px;}
._9_c00277{width:14.904000px;}
._8_c00277{width:24.976800px;}
._a_c00277{width:26.496000px;}
.fc0_c00277{color:rgb(0,0,0);}
.fs4_c00277{font-size:38.880000px;}
.fs2_c00277{font-size:47.880000px;}
.fs3_c00277{font-size:51.120000px;}
.fs0_c00277{font-size:54.000000px;}
.fs5_c00277{font-size:60.120000px;}
.fs1_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y26_c00277{bottom:57.240000px;}
.y25_c00277{bottom:109.795680px;}
.y24_c00277{bottom:132.210000px;}
.y27_c00277{bottom:144.900000px;}
.y23_c00277{bottom:175.050000px;}
.y22_c00277{bottom:206.100000px;}
.y21_c00277{bottom:237.150000px;}
.y20_c00277{bottom:268.200000px;}
.y1f_c00277{bottom:299.250000px;}
.y1e_c00277{bottom:330.300000px;}
.y1d_c00277{bottom:361.350000px;}
.y1c_c00277{bottom:393.120000px;}
.y1b_c00277{bottom:425.520000px;}
.y1a_c00277{bottom:456.570000px;}
.y19_c00277{bottom:487.620000px;}
.y18_c00277{bottom:518.760000px;}
.y17_c00277{bottom:550.260000px;}
.y16_c00277{bottom:581.310000px;}
.y15_c00277{bottom:612.360000px;}
.y14_c00277{bottom:643.410000px;}
.y13_c00277{bottom:674.460000px;}
.y12_c00277{bottom:705.510000px;}
.y11_c00277{bottom:736.560000px;}
.y10_c00277{bottom:767.610000px;}
.yf_c00277{bottom:798.660000px;}
.ye_c00277{bottom:829.710000px;}
.yd_c00277{bottom:860.760000px;}
.yc_c00277{bottom:891.990000px;}
.yb_c00277{bottom:923.580000px;}
.ya_c00277{bottom:955.080000px;}
.y9_c00277{bottom:986.130000px;}
.y8_c00277{bottom:1017.180000px;}
.y7_c00277{bottom:1048.230000px;}
.y6_c00277{bottom:1079.280000px;}
.y5_c00277{bottom:1110.330000px;}
.y4_c00277{bottom:1131.030000px;}
.y3_c00277{bottom:1150.915500px;}
.y2_c00277{bottom:1166.400000px;}
.y1_c00277{bottom:1197.450000px;}
.h6_c00277{height:38.158594px;}
.h2_c00277{height:52.998047px;}
.h7_c00277{height:59.004492px;}
.h3_c00277{height:70.664062px;}
.h4_c00277{height:73.991602px;}
.h5_c00277{height:143.542969px;}
.h0_c00277{height:1262.880000px;}
.h1_c00277{height:1263.000000px;}
.w0_c00277{width:893.070000px;}
.w1_c00277{width:893.250000px;}
.x0_c00277{left:0.000000px;}
.x2_c00277{left:127.620000px;}
.x1_c00277{left:446.580000px;}
@media print{
.v1_c00277{vertical-align:-55.056000pt;}
.v5_c00277{vertical-align:-18.560000pt;}
.v3_c00277{vertical-align:-13.120000pt;}
.v0_c00277{vertical-align:0.000000pt;}
.v4_c00277{vertical-align:13.120000pt;}
.v2_c00277{vertical-align:24.000000pt;}
.ls13_c00277{letter-spacing:-0.512000pt;}
.ls16_c00277{letter-spacing:-0.320000pt;}
.ls15_c00277{letter-spacing:-0.256000pt;}
.ls19_c00277{letter-spacing:-0.160320pt;}
.ls18_c00277{letter-spacing:-0.106880pt;}
.ls12_c00277{letter-spacing:-0.064000pt;}
.ls17_c00277{letter-spacing:-0.053440pt;}
.ls11_c00277{letter-spacing:0.000000pt;}
.ls3_c00277{letter-spacing:0.064000pt;}
.ls9_c00277{letter-spacing:0.128000pt;}
.ls1a_c00277{letter-spacing:0.160320pt;}
.ls4_c00277{letter-spacing:0.170240pt;}
.ls14_c00277{letter-spacing:0.320000pt;}
.ls5_c00277{letter-spacing:1.920000pt;}
.lsa_c00277{letter-spacing:2.560000pt;}
.lsb_c00277{letter-spacing:2.880000pt;}
.lsd_c00277{letter-spacing:3.840000pt;}
.lse_c00277{letter-spacing:8.320000pt;}
.ls8_c00277{letter-spacing:9.920000pt;}
.lsf_c00277{letter-spacing:10.955200pt;}
.ls10_c00277{letter-spacing:11.013984pt;}
.ls1_c00277{letter-spacing:13.760000pt;}
.ls2_c00277{letter-spacing:14.080000pt;}
.ls7_c00277{letter-spacing:17.792000pt;}
.ls6_c00277{letter-spacing:20.410240pt;}
.lsc_c00277{letter-spacing:24.320000pt;}
.ls0_c00277{letter-spacing:284.016000pt;}
.ws5_c00277{word-spacing:-64.000000pt;}
.ws3_c00277{word-spacing:-16.320000pt;}
.ws7_c00277{word-spacing:-16.128000pt;}
.ws8_c00277{word-spacing:-16.064000pt;}
.ws2_c00277{word-spacing:-16.000000pt;}
.ws0_c00277{word-spacing:-15.936000pt;}
.ws1_c00277{word-spacing:-15.488000pt;}
.wsa_c00277{word-spacing:-13.360000pt;}
.ws4_c00277{word-spacing:-10.810240pt;}
.ws9_c00277{word-spacing:-8.640000pt;}
.ws12_c00277{word-spacing:-0.384000pt;}
.ws41_c00277{word-spacing:-0.374080pt;}
.ws13_c00277{word-spacing:-0.320000pt;}
.wsc_c00277{word-spacing:-0.144000pt;}
.ws18_c00277{word-spacing:-0.128000pt;}
.wsd_c00277{word-spacing:-0.064000pt;}
.ws40_c00277{word-spacing:-0.053440pt;}
.wsb_c00277{word-spacing:0.000000pt;}
.ws3b_c00277{word-spacing:0.053440pt;}
.ws3e_c00277{word-spacing:0.160320pt;}
.ws24_c00277{word-spacing:0.320000pt;}
.ws15_c00277{word-spacing:1.152000pt;}
.ws14_c00277{word-spacing:1.216000pt;}
.wse_c00277{word-spacing:1.280000pt;}
.ws16_c00277{word-spacing:1.600000pt;}
.ws37_c00277{word-spacing:2.496000pt;}
.ws38_c00277{word-spacing:2.560000pt;}
.ws25_c00277{word-spacing:2.816000pt;}
.ws23_c00277{word-spacing:2.880000pt;}
.ws36_c00277{word-spacing:3.072000pt;}
.ws22_c00277{word-spacing:3.136000pt;}
.ws35_c00277{word-spacing:3.200000pt;}
.ws2c_c00277{word-spacing:3.456000pt;}
.ws2b_c00277{word-spacing:3.520000pt;}
.ws6_c00277{word-spacing:3.712000pt;}
.ws31_c00277{word-spacing:3.840000pt;}
.ws20_c00277{word-spacing:4.800000pt;}
.ws21_c00277{word-spacing:5.056000pt;}
.ws39_c00277{word-spacing:6.720000pt;}
.ws1a_c00277{word-spacing:7.040000pt;}
.ws19_c00277{word-spacing:7.296000pt;}
.ws17_c00277{word-spacing:7.936000pt;}
.ws33_c00277{word-spacing:8.000000pt;}
.ws32_c00277{word-spacing:8.320000pt;}
.ws1b_c00277{word-spacing:9.472000pt;}
.ws3a_c00277{word-spacing:9.600000pt;}
.ws1d_c00277{word-spacing:9.856000pt;}
.ws1c_c00277{word-spacing:9.920000pt;}
.ws29_c00277{word-spacing:10.240000pt;}
.ws3c_c00277{word-spacing:10.688000pt;}
.ws3f_c00277{word-spacing:10.794880pt;}
.ws3d_c00277{word-spacing:11.062080pt;}
.ws34_c00277{word-spacing:11.200000pt;}
.wsf_c00277{word-spacing:12.480000pt;}
.ws11_c00277{word-spacing:13.696000pt;}
.ws10_c00277{word-spacing:13.760000pt;}
.ws28_c00277{word-spacing:14.016000pt;}
.ws26_c00277{word-spacing:14.336000pt;}
.ws27_c00277{word-spacing:14.400000pt;}
.ws1e_c00277{word-spacing:18.176000pt;}
.ws1f_c00277{word-spacing:18.240000pt;}
.ws2a_c00277{word-spacing:22.720000pt;}
.ws30_c00277{word-spacing:23.936000pt;}
.ws2f_c00277{word-spacing:24.000000pt;}
.ws2e_c00277{word-spacing:24.192000pt;}
.ws2d_c00277{word-spacing:24.256000pt;}
._6_c00277{margin-left:-5.312000pt;}
._4_c00277{margin-left:-3.904000pt;}
._2_c00277{margin-left:-0.960000pt;}
._0_c00277{width:1.088000pt;}
._1_c00277{width:2.048000pt;}
._3_c00277{width:3.328000pt;}
._5_c00277{width:5.888000pt;}
._7_c00277{width:6.777600pt;}
._b_c00277{width:8.768000pt;}
._c_c00277{width:10.304000pt;}
._d_c00277{width:11.436576pt;}
._9_c00277{width:13.248000pt;}
._8_c00277{width:22.201600pt;}
._a_c00277{width:23.552000pt;}
.fs4_c00277{font-size:34.560000pt;}
.fs2_c00277{font-size:42.560000pt;}
.fs3_c00277{font-size:45.440000pt;}
.fs0_c00277{font-size:48.000000pt;}
.fs5_c00277{font-size:53.440000pt;}
.fs1_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y26_c00277{bottom:50.880000pt;}
.y25_c00277{bottom:97.596160pt;}
.y24_c00277{bottom:117.520000pt;}
.y27_c00277{bottom:128.800000pt;}
.y23_c00277{bottom:155.600000pt;}
.y22_c00277{bottom:183.200000pt;}
.y21_c00277{bottom:210.800000pt;}
.y20_c00277{bottom:238.400000pt;}
.y1f_c00277{bottom:266.000000pt;}
.y1e_c00277{bottom:293.600000pt;}
.y1d_c00277{bottom:321.200000pt;}
.y1c_c00277{bottom:349.440000pt;}
.y1b_c00277{bottom:378.240000pt;}
.y1a_c00277{bottom:405.840000pt;}
.y19_c00277{bottom:433.440000pt;}
.y18_c00277{bottom:461.120000pt;}
.y17_c00277{bottom:489.120000pt;}
.y16_c00277{bottom:516.720000pt;}
.y15_c00277{bottom:544.320000pt;}
.y14_c00277{bottom:571.920000pt;}
.y13_c00277{bottom:599.520000pt;}
.y12_c00277{bottom:627.120000pt;}
.y11_c00277{bottom:654.720000pt;}
.y10_c00277{bottom:682.320000pt;}
.yf_c00277{bottom:709.920000pt;}
.ye_c00277{bottom:737.520000pt;}
.yd_c00277{bottom:765.120000pt;}
.yc_c00277{bottom:792.880000pt;}
.yb_c00277{bottom:820.960000pt;}
.ya_c00277{bottom:848.960000pt;}
.y9_c00277{bottom:876.560000pt;}
.y8_c00277{bottom:904.160000pt;}
.y7_c00277{bottom:931.760000pt;}
.y6_c00277{bottom:959.360000pt;}
.y5_c00277{bottom:986.960000pt;}
.y4_c00277{bottom:1005.360000pt;}
.y3_c00277{bottom:1023.036000pt;}
.y2_c00277{bottom:1036.800000pt;}
.y1_c00277{bottom:1064.400000pt;}
.h6_c00277{height:33.918750pt;}
.h2_c00277{height:47.109375pt;}
.h7_c00277{height:52.448437pt;}
.h3_c00277{height:62.812500pt;}
.h4_c00277{height:65.770312pt;}
.h5_c00277{height:127.593750pt;}
.h0_c00277{height:1122.560000pt;}
.h1_c00277{height:1122.666667pt;}
.w0_c00277{width:793.840000pt;}
.w1_c00277{width:794.000000pt;}
.x0_c00277{left:0.000000pt;}
.x2_c00277{left:113.440000pt;}
.x1_c00277{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f99715a7010788712cf6cbf.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_a19278219a25ccc7391b7347.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;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_c00278;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00278;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00278;src:url('chunks/assets/font_7bec7a7dc2fe375bcb9276d2.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;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:ff7_c00278;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:1.432129;font-style: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);}
.v2_c00278{vertical-align:-14.760000px;}
.v0_c00278{vertical-align:0.000000px;}
.v3_c00278{vertical-align:14.760000px;}
.v1_c00278{vertical-align:27.000000px;}
.ls12_c00278{letter-spacing:-0.288000px;}
.ls10_c00278{letter-spacing:-0.108000px;}
.ls13_c00278{letter-spacing:-0.072000px;}
.lsf_c00278{letter-spacing:0.000000px;}
.ls2_c00278{letter-spacing:0.072000px;}
.ls0_c00278{letter-spacing:0.144000px;}
.lsd_c00278{letter-spacing:0.180000px;}
.ls14_c00278{letter-spacing:0.191520px;}
.ls11_c00278{letter-spacing:0.526680px;}
.ls8_c00278{letter-spacing:0.720000px;}
.ls7_c00278{letter-spacing:1.080000px;}
.lsa_c00278{letter-spacing:1.440000px;}
.lse_c00278{letter-spacing:4.320000px;}
.lsc_c00278{letter-spacing:5.400000px;}
.ls9_c00278{letter-spacing:5.760000px;}
.ls1_c00278{letter-spacing:14.760000px;}
.ls6_c00278{letter-spacing:20.016000px;}
.ls3_c00278{letter-spacing:22.961520px;}
.ls5_c00278{letter-spacing:30.240000px;}
.ls4_c00278{letter-spacing:30.744000px;}
.lsb_c00278{letter-spacing:35.640000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00278{word-spacing:-72.000000px;}
.ws4_c00278{word-spacing:-18.072000px;}
.ws0_c00278{word-spacing:-18.000000px;}
.ws5_c00278{word-spacing:-17.928000px;}
.wsa_c00278{word-spacing:-0.526680px;}
.ws29_c00278{word-spacing:-0.432000px;}
.ws2d_c00278{word-spacing:-0.191520px;}
.ws13_c00278{word-spacing:-0.144000px;}
.ws9_c00278{word-spacing:-0.072000px;}
.ws6_c00278{word-spacing:0.000000px;}
.ws8_c00278{word-spacing:0.162000px;}
.ws7_c00278{word-spacing:0.270000px;}
.ws1a_c00278{word-spacing:0.288000px;}
.ws26_c00278{word-spacing:0.360000px;}
.ws1c_c00278{word-spacing:0.936000px;}
.ws1b_c00278{word-spacing:1.008000px;}
.ws11_c00278{word-spacing:1.080000px;}
.ws21_c00278{word-spacing:1.368000px;}
.ws22_c00278{word-spacing:1.440000px;}
.wsd_c00278{word-spacing:2.160000px;}
.ws27_c00278{word-spacing:2.808000px;}
.ws28_c00278{word-spacing:2.880000px;}
.ws2_c00278{word-spacing:3.816000px;}
.ws3_c00278{word-spacing:4.176000px;}
.ws20_c00278{word-spacing:4.248000px;}
.ws1f_c00278{word-spacing:4.320000px;}
.ws2c_c00278{word-spacing:4.536000px;}
.ws2e_c00278{word-spacing:4.608000px;}
.ws12_c00278{word-spacing:4.680000px;}
.ws1e_c00278{word-spacing:5.688000px;}
.ws1d_c00278{word-spacing:5.760000px;}
.ws30_c00278{word-spacing:7.920000px;}
.ws25_c00278{word-spacing:8.208000px;}
.ws31_c00278{word-spacing:10.080000px;}
.ws2a_c00278{word-spacing:10.440000px;}
.wsb_c00278{word-spacing:14.688000px;}
.wsc_c00278{word-spacing:14.760000px;}
.ws2b_c00278{word-spacing:16.920000px;}
.ws18_c00278{word-spacing:18.288000px;}
.ws19_c00278{word-spacing:18.360000px;}
.ws15_c00278{word-spacing:19.008000px;}
.ws16_c00278{word-spacing:19.080000px;}
.ws2f_c00278{word-spacing:26.640000px;}
.ws10_c00278{word-spacing:30.096000px;}
.wse_c00278{word-spacing:30.168000px;}
.wsf_c00278{word-spacing:30.240000px;}
.ws17_c00278{word-spacing:30.600000px;}
.ws23_c00278{word-spacing:35.568000px;}
.ws24_c00278{word-spacing:35.640000px;}
.ws14_c00278{word-spacing:48.960000px;}
._9_c00278{margin-left:-5.947200px;}
._5_c00278{margin-left:-4.219200px;}
._1_c00278{margin-left:-1.058400px;}
._0_c00278{width:1.220400px;}
._4_c00278{width:2.376000px;}
._b_c00278{width:3.772080px;}
._6_c00278{width:4.824000px;}
._c_c00278{width:9.144000px;}
._d_c00278{width:10.584000px;}
._2_c00278{width:19.584000px;}
._3_c00278{width:20.732400px;}
._7_c00278{width:29.952000px;}
._8_c00278{width:30.952800px;}
._a_c00278{width:35.330400px;}
.fc0_c00278{color:rgb(0,0,0);}
.fs2_c00278{font-size:47.880000px;}
.fs3_c00278{font-size:51.120000px;}
.fs0_c00278{font-size:54.000000px;}
.fs1_c00278{font-size:72.000000px;}
.y0_c00278{bottom:0.000000px;}
.y27_c00278{bottom:57.240000px;}
.y26_c00278{bottom:111.960000px;}
.y25_c00278{bottom:143.190000px;}
.y24_c00278{bottom:174.690000px;}
.y23_c00278{bottom:205.740000px;}
.y22_c00278{bottom:236.790000px;}
.y21_c00278{bottom:267.840000px;}
.y20_c00278{bottom:298.890000px;}
.y1f_c00278{bottom:329.940000px;}
.y1e_c00278{bottom:360.990000px;}
.y1d_c00278{bottom:392.040000px;}
.y1c_c00278{bottom:423.090000px;}
.y1b_c00278{bottom:454.140000px;}
.y1a_c00278{bottom:485.190000px;}
.y19_c00278{bottom:516.330000px;}
.y18_c00278{bottom:547.830000px;}
.y17_c00278{bottom:578.880000px;}
.y16_c00278{bottom:609.930000px;}
.y15_c00278{bottom:640.980000px;}
.y14_c00278{bottom:672.210000px;}
.y13_c00278{bottom:703.710000px;}
.y12_c00278{bottom:734.760000px;}
.y11_c00278{bottom:765.990000px;}
.y10_c00278{bottom:797.580000px;}
.yf_c00278{bottom:829.080000px;}
.ye_c00278{bottom:860.310000px;}
.yd_c00278{bottom:891.810000px;}
.yc_c00278{bottom:923.040000px;}
.yb_c00278{bottom:954.630000px;}
.ya_c00278{bottom:986.130000px;}
.y9_c00278{bottom:1017.180000px;}
.y8_c00278{bottom:1048.230000px;}
.y7_c00278{bottom:1079.280000px;}
.y6_c00278{bottom:1110.330000px;}
.y5_c00278{bottom:1131.030000px;}
.y4_c00278{bottom:1150.920000px;}
.y3_c00278{bottom:1166.404500px;}
.y2_c00278{bottom:1181.970000px;}
.y1_c00278{bottom:1197.450000px;}
.h8_c00278{height:50.027344px;}
.h7_c00278{height:50.941406px;}
.h3_c00278{height:52.971680px;}
.h2_c00278{height:52.998047px;}
.h4_c00278{height:70.664062px;}
.h5_c00278{height:73.991602px;}
.h6_c00278{height:143.542969px;}
.h0_c00278{height:1262.880000px;}
.h1_c00278{height:1263.000000px;}
.w0_c00278{width:893.070000px;}
.w1_c00278{width:893.250000px;}
.x0_c00278{left:0.000000px;}
.x3_c00278{left:127.620000px;}
.x4_c00278{left:154.620000px;}
.x2_c00278{left:425.160000px;}
.x1_c00278{left:446.580000px;}
.x5_c00278{left:738.540000px;}
@media print{
.v2_c00278{vertical-align:-13.120000pt;}
.v0_c00278{vertical-align:0.000000pt;}
.v3_c00278{vertical-align:13.120000pt;}
.v1_c00278{vertical-align:24.000000pt;}
.ls12_c00278{letter-spacing:-0.256000pt;}
.ls10_c00278{letter-spacing:-0.096000pt;}
.ls13_c00278{letter-spacing:-0.064000pt;}
.lsf_c00278{letter-spacing:0.000000pt;}
.ls2_c00278{letter-spacing:0.064000pt;}
.ls0_c00278{letter-spacing:0.128000pt;}
.lsd_c00278{letter-spacing:0.160000pt;}
.ls14_c00278{letter-spacing:0.170240pt;}
.ls11_c00278{letter-spacing:0.468160pt;}
.ls8_c00278{letter-spacing:0.640000pt;}
.ls7_c00278{letter-spacing:0.960000pt;}
.lsa_c00278{letter-spacing:1.280000pt;}
.lse_c00278{letter-spacing:3.840000pt;}
.lsc_c00278{letter-spacing:4.800000pt;}
.ls9_c00278{letter-spacing:5.120000pt;}
.ls1_c00278{letter-spacing:13.120000pt;}
.ls6_c00278{letter-spacing:17.792000pt;}
.ls3_c00278{letter-spacing:20.410240pt;}
.ls5_c00278{letter-spacing:26.880000pt;}
.ls4_c00278{letter-spacing:27.328000pt;}
.lsb_c00278{letter-spacing:31.680000pt;}
.ws1_c00278{word-spacing:-64.000000pt;}
.ws4_c00278{word-spacing:-16.064000pt;}
.ws0_c00278{word-spacing:-16.000000pt;}
.ws5_c00278{word-spacing:-15.936000pt;}
.wsa_c00278{word-spacing:-0.468160pt;}
.ws29_c00278{word-spacing:-0.384000pt;}
.ws2d_c00278{word-spacing:-0.170240pt;}
.ws13_c00278{word-spacing:-0.128000pt;}
.ws9_c00278{word-spacing:-0.064000pt;}
.ws6_c00278{word-spacing:0.000000pt;}
.ws8_c00278{word-spacing:0.144000pt;}
.ws7_c00278{word-spacing:0.240000pt;}
.ws1a_c00278{word-spacing:0.256000pt;}
.ws26_c00278{word-spacing:0.320000pt;}
.ws1c_c00278{word-spacing:0.832000pt;}
.ws1b_c00278{word-spacing:0.896000pt;}
.ws11_c00278{word-spacing:0.960000pt;}
.ws21_c00278{word-spacing:1.216000pt;}
.ws22_c00278{word-spacing:1.280000pt;}
.wsd_c00278{word-spacing:1.920000pt;}
.ws27_c00278{word-spacing:2.496000pt;}
.ws28_c00278{word-spacing:2.560000pt;}
.ws2_c00278{word-spacing:3.392000pt;}
.ws3_c00278{word-spacing:3.712000pt;}
.ws20_c00278{word-spacing:3.776000pt;}
.ws1f_c00278{word-spacing:3.840000pt;}
.ws2c_c00278{word-spacing:4.032000pt;}
.ws2e_c00278{word-spacing:4.096000pt;}
.ws12_c00278{word-spacing:4.160000pt;}
.ws1e_c00278{word-spacing:5.056000pt;}
.ws1d_c00278{word-spacing:5.120000pt;}
.ws30_c00278{word-spacing:7.040000pt;}
.ws25_c00278{word-spacing:7.296000pt;}
.ws31_c00278{word-spacing:8.960000pt;}
.ws2a_c00278{word-spacing:9.280000pt;}
.wsb_c00278{word-spacing:13.056000pt;}
.wsc_c00278{word-spacing:13.120000pt;}
.ws2b_c00278{word-spacing:15.040000pt;}
.ws18_c00278{word-spacing:16.256000pt;}
.ws19_c00278{word-spacing:16.320000pt;}
.ws15_c00278{word-spacing:16.896000pt;}
.ws16_c00278{word-spacing:16.960000pt;}
.ws2f_c00278{word-spacing:23.680000pt;}
.ws10_c00278{word-spacing:26.752000pt;}
.wse_c00278{word-spacing:26.816000pt;}
.wsf_c00278{word-spacing:26.880000pt;}
.ws17_c00278{word-spacing:27.200000pt;}
.ws23_c00278{word-spacing:31.616000pt;}
.ws24_c00278{word-spacing:31.680000pt;}
.ws14_c00278{word-spacing:43.520000pt;}
._9_c00278{margin-left:-5.286400pt;}
._5_c00278{margin-left:-3.750400pt;}
._1_c00278{margin-left:-0.940800pt;}
._0_c00278{width:1.084800pt;}
._4_c00278{width:2.112000pt;}
._b_c00278{width:3.352960pt;}
._6_c00278{width:4.288000pt;}
._c_c00278{width:8.128000pt;}
._d_c00278{width:9.408000pt;}
._2_c00278{width:17.408000pt;}
._3_c00278{width:18.428800pt;}
._7_c00278{width:26.624000pt;}
._8_c00278{width:27.513600pt;}
._a_c00278{width:31.404800pt;}
.fs2_c00278{font-size:42.560000pt;}
.fs3_c00278{font-size:45.440000pt;}
.fs0_c00278{font-size:48.000000pt;}
.fs1_c00278{font-size:64.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y27_c00278{bottom:50.880000pt;}
.y26_c00278{bottom:99.520000pt;}
.y25_c00278{bottom:127.280000pt;}
.y24_c00278{bottom:155.280000pt;}
.y23_c00278{bottom:182.880000pt;}
.y22_c00278{bottom:210.480000pt;}
.y21_c00278{bottom:238.080000pt;}
.y20_c00278{bottom:265.680000pt;}
.y1f_c00278{bottom:293.280000pt;}
.y1e_c00278{bottom:320.880000pt;}
.y1d_c00278{bottom:348.480000pt;}
.y1c_c00278{bottom:376.080000pt;}
.y1b_c00278{bottom:403.680000pt;}
.y1a_c00278{bottom:431.280000pt;}
.y19_c00278{bottom:458.960000pt;}
.y18_c00278{bottom:486.960000pt;}
.y17_c00278{bottom:514.560000pt;}
.y16_c00278{bottom:542.160000pt;}
.y15_c00278{bottom:569.760000pt;}
.y14_c00278{bottom:597.520000pt;}
.y13_c00278{bottom:625.520000pt;}
.y12_c00278{bottom:653.120000pt;}
.y11_c00278{bottom:680.880000pt;}
.y10_c00278{bottom:708.960000pt;}
.yf_c00278{bottom:736.960000pt;}
.ye_c00278{bottom:764.720000pt;}
.yd_c00278{bottom:792.720000pt;}
.yc_c00278{bottom:820.480000pt;}
.yb_c00278{bottom:848.560000pt;}
.ya_c00278{bottom:876.560000pt;}
.y9_c00278{bottom:904.160000pt;}
.y8_c00278{bottom:931.760000pt;}
.y7_c00278{bottom:959.360000pt;}
.y6_c00278{bottom:986.960000pt;}
.y5_c00278{bottom:1005.360000pt;}
.y4_c00278{bottom:1023.040000pt;}
.y3_c00278{bottom:1036.804000pt;}
.y2_c00278{bottom:1050.640000pt;}
.y1_c00278{bottom:1064.400000pt;}
.h8_c00278{height:44.468750pt;}
.h7_c00278{height:45.281250pt;}
.h3_c00278{height:47.085938pt;}
.h2_c00278{height:47.109375pt;}
.h4_c00278{height:62.812500pt;}
.h5_c00278{height:65.770312pt;}
.h6_c00278{height:127.593750pt;}
.h0_c00278{height:1122.560000pt;}
.h1_c00278{height:1122.666667pt;}
.w0_c00278{width:793.840000pt;}
.w1_c00278{width:794.000000pt;}
.x0_c00278{left:0.000000pt;}
.x3_c00278{left:113.440000pt;}
.x4_c00278{left:137.440000pt;}
.x2_c00278{left:377.920000pt;}
.x1_c00278{left:396.960000pt;}
.x5_c00278{left:656.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_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_eee5a7d49166ace528e42286.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.284180;font-style:normal;font-weight:normal;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_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_f64c04f1f95b17ff010a939c.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_6554319f56be8dce2eb3628d.woff2')format("woff");}.ff5_c00279{font-family:ff5_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:ff6_c00279;src:url('chunks/assets/font_fbcdfe54dcccc8082c9d9799.woff2')format("woff");}.ff6_c00279{font-family:ff6_c00279;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:ff7_c00279;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7_c00279{font-family:ff7_c00279;line-height:1.432129;font-style: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);}
.v2_c00279{vertical-align:-82.800000px;}
.v1_c00279{vertical-align:-61.938000px;}
.v6_c00279{vertical-align:-27.000000px;}
.v4_c00279{vertical-align:-14.760000px;}
.v0_c00279{vertical-align:0.000000px;}
.v5_c00279{vertical-align:14.760000px;}
.v3_c00279{vertical-align:27.000000px;}
.ls10_c00279{letter-spacing:-0.360000px;}
.ls11_c00279{letter-spacing:-0.288000px;}
.lsf_c00279{letter-spacing:-0.216000px;}
.ls12_c00279{letter-spacing:-0.144000px;}
.ls14_c00279{letter-spacing:-0.072000px;}
.lse_c00279{letter-spacing:0.000000px;}
.ls5_c00279{letter-spacing:0.072000px;}
.ls3_c00279{letter-spacing:0.144000px;}
.ls2_c00279{letter-spacing:0.180000px;}
.ls13_c00279{letter-spacing:0.191520px;}
.ls7_c00279{letter-spacing:3.600000px;}
.ls9_c00279{letter-spacing:7.920000px;}
.ls6_c00279{letter-spacing:9.720000px;}
.ls8_c00279{letter-spacing:10.080000px;}
.lsc_c00279{letter-spacing:14.061600px;}
.lsb_c00279{letter-spacing:22.601520px;}
.ls4_c00279{letter-spacing:22.961520px;}
.lsd_c00279{letter-spacing:26.280000px;}
.lsa_c00279{letter-spacing:30.744000px;}
.ls1_c00279{letter-spacing:90.000000px;}
.ls0_c00279{letter-spacing:319.518000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:-72.000000px;}
.ws4_c00279{word-spacing:-18.144000px;}
.ws3_c00279{word-spacing:-18.000000px;}
.ws5_c00279{word-spacing:-17.928000px;}
.ws2_c00279{word-spacing:-17.784000px;}
.ws29_c00279{word-spacing:-0.191520px;}
.ws7_c00279{word-spacing:-0.162000px;}
.ws2a_c00279{word-spacing:-0.144000px;}
.wsc_c00279{word-spacing:-0.072000px;}
.ws6_c00279{word-spacing:0.000000px;}
.ws24_c00279{word-spacing:0.144000px;}
.ws1a_c00279{word-spacing:0.288000px;}
.ws16_c00279{word-spacing:0.360000px;}
.wse_c00279{word-spacing:0.648000px;}
.wsf_c00279{word-spacing:0.720000px;}
.ws8_c00279{word-spacing:1.008000px;}
.ws9_c00279{word-spacing:1.080000px;}
.ws20_c00279{word-spacing:1.800000px;}
.ws23_c00279{word-spacing:3.096000px;}
.ws22_c00279{word-spacing:3.240000px;}
.ws1d_c00279{word-spacing:3.528000px;}
.ws1e_c00279{word-spacing:3.600000px;}
.ws1_c00279{word-spacing:4.176000px;}
.ws11_c00279{word-spacing:4.248000px;}
.ws10_c00279{word-spacing:4.320000px;}
.ws27_c00279{word-spacing:4.608000px;}
.ws28_c00279{word-spacing:4.680000px;}
.ws1f_c00279{word-spacing:5.688000px;}
.wsa_c00279{word-spacing:5.760000px;}
.wsb_c00279{word-spacing:6.120000px;}
.ws26_c00279{word-spacing:7.920000px;}
.ws12_c00279{word-spacing:9.648000px;}
.ws13_c00279{word-spacing:9.720000px;}
.ws21_c00279{word-spacing:10.008000px;}
.ws17_c00279{word-spacing:10.368000px;}
.ws19_c00279{word-spacing:10.440000px;}
.ws18_c00279{word-spacing:10.728000px;}
.wsd_c00279{word-spacing:11.448000px;}
.ws2b_c00279{word-spacing:13.680000px;}
.ws30_c00279{word-spacing:13.968000px;}
.ws14_c00279{word-spacing:15.480000px;}
.ws2d_c00279{word-spacing:16.128000px;}
.ws2c_c00279{word-spacing:16.200000px;}
.ws15_c00279{word-spacing:20.088000px;}
.ws25_c00279{word-spacing:21.240000px;}
.ws2e_c00279{word-spacing:22.896000px;}
.ws2f_c00279{word-spacing:23.040000px;}
.ws32_c00279{word-spacing:25.848000px;}
.ws31_c00279{word-spacing:25.920000px;}
.ws1b_c00279{word-spacing:38.088000px;}
.ws1c_c00279{word-spacing:38.160000px;}
._2_c00279{margin-left:-4.176000px;}
._0_c00279{margin-left:-1.296000px;}
._3_c00279{width:1.008000px;}
._8_c00279{width:2.448000px;}
._7_c00279{width:3.456000px;}
._6_c00279{width:10.368000px;}
._1_c00279{width:11.376000px;}
._a_c00279{width:12.744000px;}
._9_c00279{width:14.040000px;}
._4_c00279{width:15.688800px;}
._5_c00279{width:20.160000px;}
._b_c00279{width:25.992000px;}
.fc0_c00279{color:rgb(0,0,0);}
.fs2_c00279{font-size:47.880000px;}
.fs3_c00279{font-size:51.120000px;}
.fs0_c00279{font-size:54.000000px;}
.fs1_c00279{font-size:72.000000px;}
.y0_c00279{bottom:0.000000px;}
.y25_c00279{bottom:57.240000px;}
.y24_c00279{bottom:113.760000px;}
.y23_c00279{bottom:144.810000px;}
.y22_c00279{bottom:176.040000px;}
.y21_c00279{bottom:207.720000px;}
.y20_c00279{bottom:239.220000px;}
.y1f_c00279{bottom:270.270000px;}
.y1e_c00279{bottom:301.320000px;}
.y1d_c00279{bottom:332.550000px;}
.y1c_c00279{bottom:363.960000px;}
.y1b_c00279{bottom:395.010000px;}
.y1a_c00279{bottom:426.060000px;}
.y19_c00279{bottom:457.110000px;}
.y18_c00279{bottom:488.160000px;}
.y17_c00279{bottom:519.210000px;}
.y16_c00279{bottom:550.260000px;}
.y15_c00279{bottom:581.310000px;}
.y14_c00279{bottom:612.360000px;}
.y13_c00279{bottom:643.410000px;}
.y12_c00279{bottom:674.460000px;}
.y11_c00279{bottom:705.510000px;}
.y10_c00279{bottom:736.560000px;}
.yf_c00279{bottom:767.610000px;}
.ye_c00279{bottom:798.660000px;}
.yd_c00279{bottom:829.710000px;}
.yc_c00279{bottom:860.940000px;}
.yb_c00279{bottom:892.440000px;}
.ya_c00279{bottom:923.490000px;}
.y9_c00279{bottom:954.540000px;}
.y8_c00279{bottom:985.590000px;}
.y7_c00279{bottom:1016.640000px;}
.y6_c00279{bottom:1047.780000px;}
.y5_c00279{bottom:1079.280000px;}
.y4_c00279{bottom:1131.030000px;}
.y3_c00279{bottom:1150.915500px;}
.y2_c00279{bottom:1166.400000px;}
.y1_c00279{bottom:1197.450000px;}
.h6_c00279{height:50.027344px;}
.h2_c00279{height:52.998047px;}
.h3_c00279{height:70.664062px;}
.h5_c00279{height:73.991602px;}
.h4_c00279{height:143.542969px;}
.h0_c00279{height:1262.880000px;}
.h1_c00279{height:1263.000000px;}
.w0_c00279{width:893.070000px;}
.w1_c00279{width:893.250000px;}
.x0_c00279{left:0.000000px;}
.x2_c00279{left:127.620000px;}
.x3_c00279{left:154.620000px;}
.x1_c00279{left:446.580000px;}
@media print{
.v2_c00279{vertical-align:-73.600000pt;}
.v1_c00279{vertical-align:-55.056000pt;}
.v6_c00279{vertical-align:-24.000000pt;}
.v4_c00279{vertical-align:-13.120000pt;}
.v0_c00279{vertical-align:0.000000pt;}
.v5_c00279{vertical-align:13.120000pt;}
.v3_c00279{vertical-align:24.000000pt;}
.ls10_c00279{letter-spacing:-0.320000pt;}
.ls11_c00279{letter-spacing:-0.256000pt;}
.lsf_c00279{letter-spacing:-0.192000pt;}
.ls12_c00279{letter-spacing:-0.128000pt;}
.ls14_c00279{letter-spacing:-0.064000pt;}
.lse_c00279{letter-spacing:0.000000pt;}
.ls5_c00279{letter-spacing:0.064000pt;}
.ls3_c00279{letter-spacing:0.128000pt;}
.ls2_c00279{letter-spacing:0.160000pt;}
.ls13_c00279{letter-spacing:0.170240pt;}
.ls7_c00279{letter-spacing:3.200000pt;}
.ls9_c00279{letter-spacing:7.040000pt;}
.ls6_c00279{letter-spacing:8.640000pt;}
.ls8_c00279{letter-spacing:8.960000pt;}
.lsc_c00279{letter-spacing:12.499200pt;}
.lsb_c00279{letter-spacing:20.090240pt;}
.ls4_c00279{letter-spacing:20.410240pt;}
.lsd_c00279{letter-spacing:23.360000pt;}
.lsa_c00279{letter-spacing:27.328000pt;}
.ls1_c00279{letter-spacing:80.000000pt;}
.ls0_c00279{letter-spacing:284.016000pt;}
.ws0_c00279{word-spacing:-64.000000pt;}
.ws4_c00279{word-spacing:-16.128000pt;}
.ws3_c00279{word-spacing:-16.000000pt;}
.ws5_c00279{word-spacing:-15.936000pt;}
.ws2_c00279{word-spacing:-15.808000pt;}
.ws29_c00279{word-spacing:-0.170240pt;}
.ws7_c00279{word-spacing:-0.144000pt;}
.ws2a_c00279{word-spacing:-0.128000pt;}
.wsc_c00279{word-spacing:-0.064000pt;}
.ws6_c00279{word-spacing:0.000000pt;}
.ws24_c00279{word-spacing:0.128000pt;}
.ws1a_c00279{word-spacing:0.256000pt;}
.ws16_c00279{word-spacing:0.320000pt;}
.wse_c00279{word-spacing:0.576000pt;}
.wsf_c00279{word-spacing:0.640000pt;}
.ws8_c00279{word-spacing:0.896000pt;}
.ws9_c00279{word-spacing:0.960000pt;}
.ws20_c00279{word-spacing:1.600000pt;}
.ws23_c00279{word-spacing:2.752000pt;}
.ws22_c00279{word-spacing:2.880000pt;}
.ws1d_c00279{word-spacing:3.136000pt;}
.ws1e_c00279{word-spacing:3.200000pt;}
.ws1_c00279{word-spacing:3.712000pt;}
.ws11_c00279{word-spacing:3.776000pt;}
.ws10_c00279{word-spacing:3.840000pt;}
.ws27_c00279{word-spacing:4.096000pt;}
.ws28_c00279{word-spacing:4.160000pt;}
.ws1f_c00279{word-spacing:5.056000pt;}
.wsa_c00279{word-spacing:5.120000pt;}
.wsb_c00279{word-spacing:5.440000pt;}
.ws26_c00279{word-spacing:7.040000pt;}
.ws12_c00279{word-spacing:8.576000pt;}
.ws13_c00279{word-spacing:8.640000pt;}
.ws21_c00279{word-spacing:8.896000pt;}
.ws17_c00279{word-spacing:9.216000pt;}
.ws19_c00279{word-spacing:9.280000pt;}
.ws18_c00279{word-spacing:9.536000pt;}
.wsd_c00279{word-spacing:10.176000pt;}
.ws2b_c00279{word-spacing:12.160000pt;}
.ws30_c00279{word-spacing:12.416000pt;}
.ws14_c00279{word-spacing:13.760000pt;}
.ws2d_c00279{word-spacing:14.336000pt;}
.ws2c_c00279{word-spacing:14.400000pt;}
.ws15_c00279{word-spacing:17.856000pt;}
.ws25_c00279{word-spacing:18.880000pt;}
.ws2e_c00279{word-spacing:20.352000pt;}
.ws2f_c00279{word-spacing:20.480000pt;}
.ws32_c00279{word-spacing:22.976000pt;}
.ws31_c00279{word-spacing:23.040000pt;}
.ws1b_c00279{word-spacing:33.856000pt;}
.ws1c_c00279{word-spacing:33.920000pt;}
._2_c00279{margin-left:-3.712000pt;}
._0_c00279{margin-left:-1.152000pt;}
._3_c00279{width:0.896000pt;}
._8_c00279{width:2.176000pt;}
._7_c00279{width:3.072000pt;}
._6_c00279{width:9.216000pt;}
._1_c00279{width:10.112000pt;}
._a_c00279{width:11.328000pt;}
._9_c00279{width:12.480000pt;}
._4_c00279{width:13.945600pt;}
._5_c00279{width:17.920000pt;}
._b_c00279{width:23.104000pt;}
.fs2_c00279{font-size:42.560000pt;}
.fs3_c00279{font-size:45.440000pt;}
.fs0_c00279{font-size:48.000000pt;}
.fs1_c00279{font-size:64.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y25_c00279{bottom:50.880000pt;}
.y24_c00279{bottom:101.120000pt;}
.y23_c00279{bottom:128.720000pt;}
.y22_c00279{bottom:156.480000pt;}
.y21_c00279{bottom:184.640000pt;}
.y20_c00279{bottom:212.640000pt;}
.y1f_c00279{bottom:240.240000pt;}
.y1e_c00279{bottom:267.840000pt;}
.y1d_c00279{bottom:295.600000pt;}
.y1c_c00279{bottom:323.520000pt;}
.y1b_c00279{bottom:351.120000pt;}
.y1a_c00279{bottom:378.720000pt;}
.y19_c00279{bottom:406.320000pt;}
.y18_c00279{bottom:433.920000pt;}
.y17_c00279{bottom:461.520000pt;}
.y16_c00279{bottom:489.120000pt;}
.y15_c00279{bottom:516.720000pt;}
.y14_c00279{bottom:544.320000pt;}
.y13_c00279{bottom:571.920000pt;}
.y12_c00279{bottom:599.520000pt;}
.y11_c00279{bottom:627.120000pt;}
.y10_c00279{bottom:654.720000pt;}
.yf_c00279{bottom:682.320000pt;}
.ye_c00279{bottom:709.920000pt;}
.yd_c00279{bottom:737.520000pt;}
.yc_c00279{bottom:765.280000pt;}
.yb_c00279{bottom:793.280000pt;}
.ya_c00279{bottom:820.880000pt;}
.y9_c00279{bottom:848.480000pt;}
.y8_c00279{bottom:876.080000pt;}
.y7_c00279{bottom:903.680000pt;}
.y6_c00279{bottom:931.360000pt;}
.y5_c00279{bottom:959.360000pt;}
.y4_c00279{bottom:1005.360000pt;}
.y3_c00279{bottom:1023.036000pt;}
.y2_c00279{bottom:1036.800000pt;}
.y1_c00279{bottom:1064.400000pt;}
.h6_c00279{height:44.468750pt;}
.h2_c00279{height:47.109375pt;}
.h3_c00279{height:62.812500pt;}
.h5_c00279{height:65.770313pt;}
.h4_c00279{height:127.593750pt;}
.h0_c00279{height:1122.560000pt;}
.h1_c00279{height:1122.666667pt;}
.w0_c00279{width:793.840000pt;}
.w1_c00279{width:794.000000pt;}
.x0_c00279{left:0.000000pt;}
.x2_c00279{left:113.440000pt;}
.x3_c00279{left:137.440000pt;}
.x1_c00279{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d9f1542cf333d84a332337d4.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_9ef418c2e4f8a30699c7755f.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;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_c00280;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_f982efa3b5608c561b0922b1.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00280;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00280{font-family:ff6_c00280;line-height:1.142090;font-style: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);}
.v1_c00280{vertical-align:-82.800000px;}
.v8_c00280{vertical-align:-27.000000px;}
.v2_c00280{vertical-align:-14.760000px;}
.v5_c00280{vertical-align:-10.440000px;}
.v0_c00280{vertical-align:0.000000px;}
.v3_c00280{vertical-align:14.760000px;}
.v7_c00280{vertical-align:27.000000px;}
.v6_c00280{vertical-align:36.360000px;}
.v4_c00280{vertical-align:42.120000px;}
.ls10_c00280{letter-spacing:-0.360000px;}
.lsf_c00280{letter-spacing:-0.288000px;}
.lse_c00280{letter-spacing:-0.108000px;}
.ls12_c00280{letter-spacing:-0.102240px;}
.ls14_c00280{letter-spacing:-0.072000px;}
.lsd_c00280{letter-spacing:0.000000px;}
.ls8_c00280{letter-spacing:0.072000px;}
.ls11_c00280{letter-spacing:0.102240px;}
.ls1_c00280{letter-spacing:0.144000px;}
.ls13_c00280{letter-spacing:0.526680px;}
.ls5_c00280{letter-spacing:0.720000px;}
.ls6_c00280{letter-spacing:1.922040px;}
.lsb_c00280{letter-spacing:2.160000px;}
.ls7_c00280{letter-spacing:4.320000px;}
.ls9_c00280{letter-spacing:6.480000px;}
.ls3_c00280{letter-spacing:7.200000px;}
.ls4_c00280{letter-spacing:15.480000px;}
.lsc_c00280{letter-spacing:22.320000px;}
.lsa_c00280{letter-spacing:22.601520px;}
.ls2_c00280{letter-spacing:22.961520px;}
.ls0_c00280{letter-spacing:90.000000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00280{word-spacing:-72.000000px;}
.ws5_c00280{word-spacing:-51.222240px;}
.ws4_c00280{word-spacing:-51.120000px;}
.ws6_c00280{word-spacing:-51.017760px;}
.wsa_c00280{word-spacing:-39.528000px;}
.ws0_c00280{word-spacing:-18.000000px;}
.ws9_c00280{word-spacing:-17.928000px;}
.ws3_c00280{word-spacing:-17.712000px;}
.ws8_c00280{word-spacing:-17.640000px;}
.ws7_c00280{word-spacing:-11.970000px;}
.ws25_c00280{word-spacing:-0.526680px;}
.ws14_c00280{word-spacing:-0.144000px;}
.ws11_c00280{word-spacing:-0.072000px;}
.wsb_c00280{word-spacing:0.000000px;}
.wsd_c00280{word-spacing:0.162000px;}
.wsc_c00280{word-spacing:0.270000px;}
.ws1b_c00280{word-spacing:0.360000px;}
.ws20_c00280{word-spacing:0.576000px;}
.ws1f_c00280{word-spacing:0.720000px;}
.ws19_c00280{word-spacing:1.008000px;}
.ws2a_c00280{word-spacing:1.440000px;}
.wse_c00280{word-spacing:1.728000px;}
.wsf_c00280{word-spacing:1.800000px;}
.ws1d_c00280{word-spacing:2.160000px;}
.ws10_c00280{word-spacing:2.808000px;}
.ws29_c00280{word-spacing:3.168000px;}
.ws18_c00280{word-spacing:3.240000px;}
.ws12_c00280{word-spacing:3.960000px;}
.ws2_c00280{word-spacing:4.176000px;}
.ws1c_c00280{word-spacing:4.248000px;}
.ws1a_c00280{word-spacing:4.320000px;}
.ws26_c00280{word-spacing:6.048000px;}
.ws2b_c00280{word-spacing:6.408000px;}
.ws27_c00280{word-spacing:6.480000px;}
.ws13_c00280{word-spacing:7.200000px;}
.ws22_c00280{word-spacing:9.216000px;}
.ws21_c00280{word-spacing:9.360000px;}
.ws1e_c00280{word-spacing:9.720000px;}
.ws2d_c00280{word-spacing:10.368000px;}
.ws28_c00280{word-spacing:12.600000px;}
.ws17_c00280{word-spacing:15.120000px;}
.ws15_c00280{word-spacing:15.408000px;}
.ws16_c00280{word-spacing:15.480000px;}
.ws2f_c00280{word-spacing:22.248000px;}
.ws2c_c00280{word-spacing:24.840000px;}
.ws2e_c00280{word-spacing:25.848000px;}
.ws24_c00280{word-spacing:27.648000px;}
.ws23_c00280{word-spacing:27.720000px;}
._7_c00280{margin-left:-4.917600px;}
._3_c00280{margin-left:-3.744000px;}
._1_c00280{margin-left:-1.058400px;}
._0_c00280{width:1.220400px;}
._8_c00280{width:2.494800px;}
._2_c00280{width:3.769200px;}
._6_c00280{width:5.043600px;}
._4_c00280{width:6.912000px;}
._a_c00280{width:9.518400px;}
._9_c00280{width:10.584000px;}
._5_c00280{width:15.746400px;}
._b_c00280{width:26.208000px;}
.fc0_c00280{color:rgb(0,0,0);}
.fs3_c00280{font-size:42.120000px;}
.fs4_c00280{font-size:47.880000px;}
.fs2_c00280{font-size:51.120000px;}
.fs0_c00280{font-size:54.000000px;}
.fs1_c00280{font-size:72.000000px;}
.y0_c00280{bottom:0.000000px;}
.y27_c00280{bottom:57.240000px;}
.y26_c00280{bottom:116.190000px;}
.y25_c00280{bottom:147.960000px;}
.y24_c00280{bottom:180.270000px;}
.y23_c00280{bottom:211.320000px;}
.y22_c00280{bottom:242.550000px;}
.y21_c00280{bottom:274.050000px;}
.y20_c00280{bottom:305.100000px;}
.y1f_c00280{bottom:336.150000px;}
.y1e_c00280{bottom:367.200000px;}
.y1d_c00280{bottom:398.250000px;}
.y1c_c00280{bottom:429.300000px;}
.y1b_c00280{bottom:460.350000px;}
.y1a_c00280{bottom:491.580000px;}
.y19_c00280{bottom:523.080000px;}
.y18_c00280{bottom:554.130000px;}
.y17_c00280{bottom:585.180000px;}
.y16_c00280{bottom:616.230000px;}
.y15_c00280{bottom:647.280000px;}
.y14_c00280{bottom:678.240000px;}
.y13_c00280{bottom:709.290000px;}
.y12_c00280{bottom:740.340000px;}
.y11_c00280{bottom:771.390000px;}
.y10_c00280{bottom:802.440000px;}
.yf_c00280{bottom:832.320000px;}
.ye_c00280{bottom:841.410000px;}
.yd_c00280{bottom:877.320000px;}
.yc_c00280{bottom:886.410000px;}
.yb_c00280{bottom:923.490000px;}
.ya_c00280{bottom:954.540000px;}
.y9_c00280{bottom:985.590000px;}
.y8_c00280{bottom:1016.640000px;}
.y7_c00280{bottom:1047.780000px;}
.y6_c00280{bottom:1079.280000px;}
.y5_c00280{bottom:1131.030000px;}
.y4_c00280{bottom:1150.920000px;}
.y3_c00280{bottom:1166.404500px;}
.y2_c00280{bottom:1181.970000px;}
.y1_c00280{bottom:1197.450000px;}
.h3_c00280{height:52.971680px;}
.h2_c00280{height:52.998047px;}
.h4_c00280{height:70.664062px;}
.h8_c00280{height:73.991602px;}
.h5_c00280{height:143.542969px;}
.h6_c00280{height:144.035508px;}
.h7_c00280{height:179.902969px;}
.h0_c00280{height:1262.880000px;}
.h1_c00280{height:1263.000000px;}
.w0_c00280{width:893.070000px;}
.w1_c00280{width:893.250000px;}
.x0_c00280{left:0.000000px;}
.x3_c00280{left:127.620000px;}
.x4_c00280{left:154.620000px;}
.x6_c00280{left:332.550000px;}
.x5_c00280{left:347.130000px;}
.x2_c00280{left:425.160000px;}
.x1_c00280{left:446.580000px;}
.x7_c00280{left:738.540000px;}
@media print{
.v1_c00280{vertical-align:-73.600000pt;}
.v8_c00280{vertical-align:-24.000000pt;}
.v2_c00280{vertical-align:-13.120000pt;}
.v5_c00280{vertical-align:-9.280000pt;}
.v0_c00280{vertical-align:0.000000pt;}
.v3_c00280{vertical-align:13.120000pt;}
.v7_c00280{vertical-align:24.000000pt;}
.v6_c00280{vertical-align:32.320000pt;}
.v4_c00280{vertical-align:37.440000pt;}
.ls10_c00280{letter-spacing:-0.320000pt;}
.lsf_c00280{letter-spacing:-0.256000pt;}
.lse_c00280{letter-spacing:-0.096000pt;}
.ls12_c00280{letter-spacing:-0.090880pt;}
.ls14_c00280{letter-spacing:-0.064000pt;}
.lsd_c00280{letter-spacing:0.000000pt;}
.ls8_c00280{letter-spacing:0.064000pt;}
.ls11_c00280{letter-spacing:0.090880pt;}
.ls1_c00280{letter-spacing:0.128000pt;}
.ls13_c00280{letter-spacing:0.468160pt;}
.ls5_c00280{letter-spacing:0.640000pt;}
.ls6_c00280{letter-spacing:1.708480pt;}
.lsb_c00280{letter-spacing:1.920000pt;}
.ls7_c00280{letter-spacing:3.840000pt;}
.ls9_c00280{letter-spacing:5.760000pt;}
.ls3_c00280{letter-spacing:6.400000pt;}
.ls4_c00280{letter-spacing:13.760000pt;}
.lsc_c00280{letter-spacing:19.840000pt;}
.lsa_c00280{letter-spacing:20.090240pt;}
.ls2_c00280{letter-spacing:20.410240pt;}
.ls0_c00280{letter-spacing:80.000000pt;}
.ws1_c00280{word-spacing:-64.000000pt;}
.ws5_c00280{word-spacing:-45.530880pt;}
.ws4_c00280{word-spacing:-45.440000pt;}
.ws6_c00280{word-spacing:-45.349120pt;}
.wsa_c00280{word-spacing:-35.136000pt;}
.ws0_c00280{word-spacing:-16.000000pt;}
.ws9_c00280{word-spacing:-15.936000pt;}
.ws3_c00280{word-spacing:-15.744000pt;}
.ws8_c00280{word-spacing:-15.680000pt;}
.ws7_c00280{word-spacing:-10.640000pt;}
.ws25_c00280{word-spacing:-0.468160pt;}
.ws14_c00280{word-spacing:-0.128000pt;}
.ws11_c00280{word-spacing:-0.064000pt;}
.wsb_c00280{word-spacing:0.000000pt;}
.wsd_c00280{word-spacing:0.144000pt;}
.wsc_c00280{word-spacing:0.240000pt;}
.ws1b_c00280{word-spacing:0.320000pt;}
.ws20_c00280{word-spacing:0.512000pt;}
.ws1f_c00280{word-spacing:0.640000pt;}
.ws19_c00280{word-spacing:0.896000pt;}
.ws2a_c00280{word-spacing:1.280000pt;}
.wse_c00280{word-spacing:1.536000pt;}
.wsf_c00280{word-spacing:1.600000pt;}
.ws1d_c00280{word-spacing:1.920000pt;}
.ws10_c00280{word-spacing:2.496000pt;}
.ws29_c00280{word-spacing:2.816000pt;}
.ws18_c00280{word-spacing:2.880000pt;}
.ws12_c00280{word-spacing:3.520000pt;}
.ws2_c00280{word-spacing:3.712000pt;}
.ws1c_c00280{word-spacing:3.776000pt;}
.ws1a_c00280{word-spacing:3.840000pt;}
.ws26_c00280{word-spacing:5.376000pt;}
.ws2b_c00280{word-spacing:5.696000pt;}
.ws27_c00280{word-spacing:5.760000pt;}
.ws13_c00280{word-spacing:6.400000pt;}
.ws22_c00280{word-spacing:8.192000pt;}
.ws21_c00280{word-spacing:8.320000pt;}
.ws1e_c00280{word-spacing:8.640000pt;}
.ws2d_c00280{word-spacing:9.216000pt;}
.ws28_c00280{word-spacing:11.200000pt;}
.ws17_c00280{word-spacing:13.440000pt;}
.ws15_c00280{word-spacing:13.696000pt;}
.ws16_c00280{word-spacing:13.760000pt;}
.ws2f_c00280{word-spacing:19.776000pt;}
.ws2c_c00280{word-spacing:22.080000pt;}
.ws2e_c00280{word-spacing:22.976000pt;}
.ws24_c00280{word-spacing:24.576000pt;}
.ws23_c00280{word-spacing:24.640000pt;}
._7_c00280{margin-left:-4.371200pt;}
._3_c00280{margin-left:-3.328000pt;}
._1_c00280{margin-left:-0.940800pt;}
._0_c00280{width:1.084800pt;}
._8_c00280{width:2.217600pt;}
._2_c00280{width:3.350400pt;}
._6_c00280{width:4.483200pt;}
._4_c00280{width:6.144000pt;}
._a_c00280{width:8.460800pt;}
._9_c00280{width:9.408000pt;}
._5_c00280{width:13.996800pt;}
._b_c00280{width:23.296000pt;}
.fs3_c00280{font-size:37.440000pt;}
.fs4_c00280{font-size:42.560000pt;}
.fs2_c00280{font-size:45.440000pt;}
.fs0_c00280{font-size:48.000000pt;}
.fs1_c00280{font-size:64.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y27_c00280{bottom:50.880000pt;}
.y26_c00280{bottom:103.280000pt;}
.y25_c00280{bottom:131.520000pt;}
.y24_c00280{bottom:160.240000pt;}
.y23_c00280{bottom:187.840000pt;}
.y22_c00280{bottom:215.600000pt;}
.y21_c00280{bottom:243.600000pt;}
.y20_c00280{bottom:271.200000pt;}
.y1f_c00280{bottom:298.800000pt;}
.y1e_c00280{bottom:326.400000pt;}
.y1d_c00280{bottom:354.000000pt;}
.y1c_c00280{bottom:381.600000pt;}
.y1b_c00280{bottom:409.200000pt;}
.y1a_c00280{bottom:436.960000pt;}
.y19_c00280{bottom:464.960000pt;}
.y18_c00280{bottom:492.560000pt;}
.y17_c00280{bottom:520.160000pt;}
.y16_c00280{bottom:547.760000pt;}
.y15_c00280{bottom:575.360000pt;}
.y14_c00280{bottom:602.880000pt;}
.y13_c00280{bottom:630.480000pt;}
.y12_c00280{bottom:658.080000pt;}
.y11_c00280{bottom:685.680000pt;}
.y10_c00280{bottom:713.280000pt;}
.yf_c00280{bottom:739.840000pt;}
.ye_c00280{bottom:747.920000pt;}
.yd_c00280{bottom:779.840000pt;}
.yc_c00280{bottom:787.920000pt;}
.yb_c00280{bottom:820.880000pt;}
.ya_c00280{bottom:848.480000pt;}
.y9_c00280{bottom:876.080000pt;}
.y8_c00280{bottom:903.680000pt;}
.y7_c00280{bottom:931.360000pt;}
.y6_c00280{bottom:959.360000pt;}
.y5_c00280{bottom:1005.360000pt;}
.y4_c00280{bottom:1023.040000pt;}
.y3_c00280{bottom:1036.804000pt;}
.y2_c00280{bottom:1050.640000pt;}
.y1_c00280{bottom:1064.400000pt;}
.h3_c00280{height:47.085938pt;}
.h2_c00280{height:47.109375pt;}
.h4_c00280{height:62.812500pt;}
.h8_c00280{height:65.770313pt;}
.h5_c00280{height:127.593750pt;}
.h6_c00280{height:128.031562pt;}
.h7_c00280{height:159.913750pt;}
.h0_c00280{height:1122.560000pt;}
.h1_c00280{height:1122.666667pt;}
.w0_c00280{width:793.840000pt;}
.w1_c00280{width:794.000000pt;}
.x0_c00280{left:0.000000pt;}
.x3_c00280{left:113.440000pt;}
.x4_c00280{left:137.440000pt;}
.x6_c00280{left:295.600000pt;}
.x5_c00280{left:308.560000pt;}
.x2_c00280{left:377.920000pt;}
.x1_c00280{left:396.960000pt;}
.x7_c00280{left:656.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_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_cd744c614fc08ebbaaab235d.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_308136d56745ab8358a11750.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;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_c00281;src:url('chunks/assets/font_2396933cef72dc255e1f82ca.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00281{vertical-align:-61.938000px;}
.v8_c00281{vertical-align:-20.880000px;}
.v6_c00281{vertical-align:-14.760000px;}
.v3_c00281{vertical-align:-10.440000px;}
.v0_c00281{vertical-align:0.000000px;}
.v7_c00281{vertical-align:14.760000px;}
.v5_c00281{vertical-align:27.000000px;}
.v4_c00281{vertical-align:36.360000px;}
.v2_c00281{vertical-align:42.120000px;}
.ls15_c00281{letter-spacing:-0.120240px;}
.ls13_c00281{letter-spacing:-0.102240px;}
.ls14_c00281{letter-spacing:-0.072000px;}
.ls16_c00281{letter-spacing:-0.060120px;}
.ls11_c00281{letter-spacing:0.000000px;}
.lse_c00281{letter-spacing:0.072000px;}
.lsa_c00281{letter-spacing:0.079200px;}
.ls12_c00281{letter-spacing:0.102240px;}
.ls9_c00281{letter-spacing:0.144000px;}
.ls8_c00281{letter-spacing:0.180000px;}
.ls17_c00281{letter-spacing:0.180360px;}
.lsb_c00281{letter-spacing:0.191520px;}
.ls4_c00281{letter-spacing:0.720000px;}
.ls3_c00281{letter-spacing:1.080000px;}
.lsc_c00281{letter-spacing:1.800000px;}
.ls5_c00281{letter-spacing:1.922040px;}
.ls1_c00281{letter-spacing:3.240000px;}
.ls10_c00281{letter-spacing:3.667320px;}
.ls6_c00281{letter-spacing:6.480000px;}
.ls7_c00281{letter-spacing:8.640000px;}
.lsf_c00281{letter-spacing:16.560000px;}
.lsd_c00281{letter-spacing:22.961520px;}
.ls2_c00281{letter-spacing:29.548800px;}
.ls0_c00281{letter-spacing:319.518000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00281{word-spacing:-72.000000px;}
.ws2_c00281{word-spacing:-51.222240px;}
.ws1_c00281{word-spacing:-51.120000px;}
.ws4_c00281{word-spacing:-51.017760px;}
.ws0_c00281{word-spacing:-18.072000px;}
.ws5_c00281{word-spacing:-18.000000px;}
.ws8_c00281{word-spacing:-15.030000px;}
.ws6_c00281{word-spacing:-12.161520px;}
.ws7_c00281{word-spacing:-9.720000px;}
.ws29_c00281{word-spacing:-0.420840px;}
.wsa_c00281{word-spacing:-0.162000px;}
.ws10_c00281{word-spacing:-0.144000px;}
.wsb_c00281{word-spacing:-0.072000px;}
.ws27_c00281{word-spacing:-0.060120px;}
.ws9_c00281{word-spacing:0.000000px;}
.ws28_c00281{word-spacing:0.180360px;}
.ws18_c00281{word-spacing:0.648000px;}
.ws19_c00281{word-spacing:0.720000px;}
.ws12_c00281{word-spacing:1.008000px;}
.ws11_c00281{word-spacing:1.080000px;}
.ws21_c00281{word-spacing:1.800000px;}
.wse_c00281{word-spacing:2.808000px;}
.wsd_c00281{word-spacing:3.240000px;}
.ws26_c00281{word-spacing:3.727440px;}
.ws25_c00281{word-spacing:3.787560px;}
.wsc_c00281{word-spacing:3.888000px;}
.ws24_c00281{word-spacing:3.960000px;}
.ws16_c00281{word-spacing:8.568000px;}
.ws15_c00281{word-spacing:8.640000px;}
.ws1c_c00281{word-spacing:10.440000px;}
.ws1e_c00281{word-spacing:12.168000px;}
.ws1d_c00281{word-spacing:12.240000px;}
.ws17_c00281{word-spacing:13.680000px;}
.ws1a_c00281{word-spacing:14.328000px;}
.ws1b_c00281{word-spacing:14.760000px;}
.ws22_c00281{word-spacing:16.488000px;}
.ws23_c00281{word-spacing:16.920000px;}
.ws14_c00281{word-spacing:25.560000px;}
.ws13_c00281{word-spacing:25.632000px;}
.wsf_c00281{word-spacing:29.160000px;}
.ws1f_c00281{word-spacing:30.168000px;}
.ws20_c00281{word-spacing:30.240000px;}
._9_c00281{margin-left:-4.752000px;}
._0_c00281{margin-left:-1.008000px;}
._5_c00281{width:1.029600px;}
._8_c00281{width:3.024000px;}
._2_c00281{width:8.568000px;}
._6_c00281{width:14.680800px;}
._a_c00281{width:15.840000px;}
._1_c00281{width:16.848000px;}
._4_c00281{width:25.920000px;}
._3_c00281{width:29.152800px;}
._7_c00281{width:30.168000px;}
.fc0_c00281{color:rgb(0,0,0);}
.fs5_c00281{font-size:38.880000px;}
.fs3_c00281{font-size:42.120000px;}
.fs4_c00281{font-size:47.880000px;}
.fs2_c00281{font-size:51.120000px;}
.fs0_c00281{font-size:54.000000px;}
.fs6_c00281{font-size:60.120000px;}
.fs1_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y27_c00281{bottom:57.240000px;}
.y26_c00281{bottom:109.795680px;}
.y25_c00281{bottom:132.210000px;}
.y28_c00281{bottom:144.900000px;}
.y24_c00281{bottom:198.000000px;}
.y23_c00281{bottom:229.050000px;}
.y22_c00281{bottom:260.100000px;}
.y21_c00281{bottom:291.150000px;}
.y20_c00281{bottom:322.380000px;}
.y1f_c00281{bottom:353.970000px;}
.y1e_c00281{bottom:385.470000px;}
.y1d_c00281{bottom:416.520000px;}
.y1c_c00281{bottom:447.570000px;}
.y1b_c00281{bottom:478.620000px;}
.y1a_c00281{bottom:509.670000px;}
.y19_c00281{bottom:540.720000px;}
.y18_c00281{bottom:571.770000px;}
.y17_c00281{bottom:601.650000px;}
.y16_c00281{bottom:610.740000px;}
.y15_c00281{bottom:647.820000px;}
.y14_c00281{bottom:677.700000px;}
.y13_c00281{bottom:686.790000px;}
.y12_c00281{bottom:723.870000px;}
.y11_c00281{bottom:753.750000px;}
.y10_c00281{bottom:762.840000px;}
.yf_c00281{bottom:799.920000px;}
.ye_c00281{bottom:830.970000px;}
.yd_c00281{bottom:861.930000px;}
.yc_c00281{bottom:892.980000px;}
.yb_c00281{bottom:924.030000px;}
.ya_c00281{bottom:955.080000px;}
.y9_c00281{bottom:986.130000px;}
.y8_c00281{bottom:1017.180000px;}
.y7_c00281{bottom:1048.230000px;}
.y6_c00281{bottom:1079.280000px;}
.y5_c00281{bottom:1110.330000px;}
.y4_c00281{bottom:1131.030000px;}
.y3_c00281{bottom:1150.915500px;}
.y2_c00281{bottom:1166.400000px;}
.y1_c00281{bottom:1197.450000px;}
.ha_c00281{height:38.158594px;}
.h4_c00281{height:50.027344px;}
.h2_c00281{height:52.998047px;}
.hb_c00281{height:59.004492px;}
.h3_c00281{height:70.664062px;}
.h8_c00281{height:73.991602px;}
.h9_c00281{height:143.542969px;}
.h5_c00281{height:144.035508px;}
.h7_c00281{height:179.902969px;}
.h6_c00281{height:180.395508px;}
.h0_c00281{height:1262.880000px;}
.h1_c00281{height:1263.000000px;}
.w0_c00281{width:893.070000px;}
.w1_c00281{width:893.250000px;}
.x0_c00281{left:0.000000px;}
.x2_c00281{left:127.620000px;}
.x5_c00281{left:230.040000px;}
.x7_c00281{left:290.790000px;}
.x3_c00281{left:348.300000px;}
.x1_c00281{left:446.580000px;}
.x6_c00281{left:494.100000px;}
.x4_c00281{left:601.650000px;}
@media print{
.v1_c00281{vertical-align:-55.056000pt;}
.v8_c00281{vertical-align:-18.560000pt;}
.v6_c00281{vertical-align:-13.120000pt;}
.v3_c00281{vertical-align:-9.280000pt;}
.v0_c00281{vertical-align:0.000000pt;}
.v7_c00281{vertical-align:13.120000pt;}
.v5_c00281{vertical-align:24.000000pt;}
.v4_c00281{vertical-align:32.320000pt;}
.v2_c00281{vertical-align:37.440000pt;}
.ls15_c00281{letter-spacing:-0.106880pt;}
.ls13_c00281{letter-spacing:-0.090880pt;}
.ls14_c00281{letter-spacing:-0.064000pt;}
.ls16_c00281{letter-spacing:-0.053440pt;}
.ls11_c00281{letter-spacing:0.000000pt;}
.lse_c00281{letter-spacing:0.064000pt;}
.lsa_c00281{letter-spacing:0.070400pt;}
.ls12_c00281{letter-spacing:0.090880pt;}
.ls9_c00281{letter-spacing:0.128000pt;}
.ls8_c00281{letter-spacing:0.160000pt;}
.ls17_c00281{letter-spacing:0.160320pt;}
.lsb_c00281{letter-spacing:0.170240pt;}
.ls4_c00281{letter-spacing:0.640000pt;}
.ls3_c00281{letter-spacing:0.960000pt;}
.lsc_c00281{letter-spacing:1.600000pt;}
.ls5_c00281{letter-spacing:1.708480pt;}
.ls1_c00281{letter-spacing:2.880000pt;}
.ls10_c00281{letter-spacing:3.259840pt;}
.ls6_c00281{letter-spacing:5.760000pt;}
.ls7_c00281{letter-spacing:7.680000pt;}
.lsf_c00281{letter-spacing:14.720000pt;}
.lsd_c00281{letter-spacing:20.410240pt;}
.ls2_c00281{letter-spacing:26.265600pt;}
.ls0_c00281{letter-spacing:284.016000pt;}
.ws3_c00281{word-spacing:-64.000000pt;}
.ws2_c00281{word-spacing:-45.530880pt;}
.ws1_c00281{word-spacing:-45.440000pt;}
.ws4_c00281{word-spacing:-45.349120pt;}
.ws0_c00281{word-spacing:-16.064000pt;}
.ws5_c00281{word-spacing:-16.000000pt;}
.ws8_c00281{word-spacing:-13.360000pt;}
.ws6_c00281{word-spacing:-10.810240pt;}
.ws7_c00281{word-spacing:-8.640000pt;}
.ws29_c00281{word-spacing:-0.374080pt;}
.wsa_c00281{word-spacing:-0.144000pt;}
.ws10_c00281{word-spacing:-0.128000pt;}
.wsb_c00281{word-spacing:-0.064000pt;}
.ws27_c00281{word-spacing:-0.053440pt;}
.ws9_c00281{word-spacing:0.000000pt;}
.ws28_c00281{word-spacing:0.160320pt;}
.ws18_c00281{word-spacing:0.576000pt;}
.ws19_c00281{word-spacing:0.640000pt;}
.ws12_c00281{word-spacing:0.896000pt;}
.ws11_c00281{word-spacing:0.960000pt;}
.ws21_c00281{word-spacing:1.600000pt;}
.wse_c00281{word-spacing:2.496000pt;}
.wsd_c00281{word-spacing:2.880000pt;}
.ws26_c00281{word-spacing:3.313280pt;}
.ws25_c00281{word-spacing:3.366720pt;}
.wsc_c00281{word-spacing:3.456000pt;}
.ws24_c00281{word-spacing:3.520000pt;}
.ws16_c00281{word-spacing:7.616000pt;}
.ws15_c00281{word-spacing:7.680000pt;}
.ws1c_c00281{word-spacing:9.280000pt;}
.ws1e_c00281{word-spacing:10.816000pt;}
.ws1d_c00281{word-spacing:10.880000pt;}
.ws17_c00281{word-spacing:12.160000pt;}
.ws1a_c00281{word-spacing:12.736000pt;}
.ws1b_c00281{word-spacing:13.120000pt;}
.ws22_c00281{word-spacing:14.656000pt;}
.ws23_c00281{word-spacing:15.040000pt;}
.ws14_c00281{word-spacing:22.720000pt;}
.ws13_c00281{word-spacing:22.784000pt;}
.wsf_c00281{word-spacing:25.920000pt;}
.ws1f_c00281{word-spacing:26.816000pt;}
.ws20_c00281{word-spacing:26.880000pt;}
._9_c00281{margin-left:-4.224000pt;}
._0_c00281{margin-left:-0.896000pt;}
._5_c00281{width:0.915200pt;}
._8_c00281{width:2.688000pt;}
._2_c00281{width:7.616000pt;}
._6_c00281{width:13.049600pt;}
._a_c00281{width:14.080000pt;}
._1_c00281{width:14.976000pt;}
._4_c00281{width:23.040000pt;}
._3_c00281{width:25.913600pt;}
._7_c00281{width:26.816000pt;}
.fs5_c00281{font-size:34.560000pt;}
.fs3_c00281{font-size:37.440000pt;}
.fs4_c00281{font-size:42.560000pt;}
.fs2_c00281{font-size:45.440000pt;}
.fs0_c00281{font-size:48.000000pt;}
.fs6_c00281{font-size:53.440000pt;}
.fs1_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y27_c00281{bottom:50.880000pt;}
.y26_c00281{bottom:97.596160pt;}
.y25_c00281{bottom:117.520000pt;}
.y28_c00281{bottom:128.800000pt;}
.y24_c00281{bottom:176.000000pt;}
.y23_c00281{bottom:203.600000pt;}
.y22_c00281{bottom:231.200000pt;}
.y21_c00281{bottom:258.800000pt;}
.y20_c00281{bottom:286.560000pt;}
.y1f_c00281{bottom:314.640000pt;}
.y1e_c00281{bottom:342.640000pt;}
.y1d_c00281{bottom:370.240000pt;}
.y1c_c00281{bottom:397.840000pt;}
.y1b_c00281{bottom:425.440000pt;}
.y1a_c00281{bottom:453.040000pt;}
.y19_c00281{bottom:480.640000pt;}
.y18_c00281{bottom:508.240000pt;}
.y17_c00281{bottom:534.800000pt;}
.y16_c00281{bottom:542.880000pt;}
.y15_c00281{bottom:575.840000pt;}
.y14_c00281{bottom:602.400000pt;}
.y13_c00281{bottom:610.480000pt;}
.y12_c00281{bottom:643.440000pt;}
.y11_c00281{bottom:670.000000pt;}
.y10_c00281{bottom:678.080000pt;}
.yf_c00281{bottom:711.040000pt;}
.ye_c00281{bottom:738.640000pt;}
.yd_c00281{bottom:766.160000pt;}
.yc_c00281{bottom:793.760000pt;}
.yb_c00281{bottom:821.360000pt;}
.ya_c00281{bottom:848.960000pt;}
.y9_c00281{bottom:876.560000pt;}
.y8_c00281{bottom:904.160000pt;}
.y7_c00281{bottom:931.760000pt;}
.y6_c00281{bottom:959.360000pt;}
.y5_c00281{bottom:986.960000pt;}
.y4_c00281{bottom:1005.360000pt;}
.y3_c00281{bottom:1023.036000pt;}
.y2_c00281{bottom:1036.800000pt;}
.y1_c00281{bottom:1064.400000pt;}
.ha_c00281{height:33.918750pt;}
.h4_c00281{height:44.468750pt;}
.h2_c00281{height:47.109375pt;}
.hb_c00281{height:52.448437pt;}
.h3_c00281{height:62.812500pt;}
.h8_c00281{height:65.770312pt;}
.h9_c00281{height:127.593750pt;}
.h5_c00281{height:128.031563pt;}
.h7_c00281{height:159.913750pt;}
.h6_c00281{height:160.351563pt;}
.h0_c00281{height:1122.560000pt;}
.h1_c00281{height:1122.666667pt;}
.w0_c00281{width:793.840000pt;}
.w1_c00281{width:794.000000pt;}
.x0_c00281{left:0.000000pt;}
.x2_c00281{left:113.440000pt;}
.x5_c00281{left:204.480000pt;}
.x7_c00281{left:258.480000pt;}
.x3_c00281{left:309.600000pt;}
.x1_c00281{left:396.960000pt;}
.x6_c00281{left:439.200000pt;}
.x4_c00281{left:534.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_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_c7d78a20af7276637bb03f75.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.284668;font-style:normal;font-weight:normal;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_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.284180;font-style:normal;font-weight:normal;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_a89cfd295a78ff28e4d58132.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_cd6a95310f168303863b50e9.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_1cbed213c987d395a9d510cf.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00282;src:url('chunks/assets/font_77369ec1167348c76a1f8288.woff2')format("woff");}.ff6_c00282{font-family:ff6_c00282;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.v2_c00282{vertical-align:-83.520000px;}
.v1_c00282{vertical-align:-61.920000px;}
.v0_c00282{vertical-align:0.000000px;}
.lse_c00282{letter-spacing:-2.379336px;}
.lsf_c00282{letter-spacing:-1.606052px;}
.lsd_c00282{letter-spacing:-1.522786px;}
.ls12_c00282{letter-spacing:-1.368118px;}
.ls15_c00282{letter-spacing:-0.773284px;}
.ls1c_c00282{letter-spacing:-0.753456px;}
.ls11_c00282{letter-spacing:-0.713801px;}
.ls10_c00282{letter-spacing:-0.444146px;}
.lsc_c00282{letter-spacing:-0.190348px;}
.ls13_c00282{letter-spacing:-0.178450px;}
.ls7_c00282{letter-spacing:-0.108000px;}
.lsa_c00282{letter-spacing:-0.072000px;}
.ls8_c00282{letter-spacing:0.000000px;}
.lsb_c00282{letter-spacing:0.072000px;}
.ls9_c00282{letter-spacing:0.144000px;}
.ls2_c00282{letter-spacing:0.253798px;}
.ls3_c00282{letter-spacing:0.380696px;}
.ls19_c00282{letter-spacing:0.741560px;}
.ls18_c00282{letter-spacing:1.078640px;}
.ls1a_c00282{letter-spacing:1.205539px;}
.ls14_c00282{letter-spacing:1.249151px;}
.ls16_c00282{letter-spacing:1.586235px;}
.ls17_c00282{letter-spacing:1.649684px;}
.ls6_c00282{letter-spacing:1.701227px;}
.ls1b_c00282{letter-spacing:1.840033px;}
.ls5_c00282{letter-spacing:3.045571px;}
.ls4_c00282{letter-spacing:57.104064px;}
.ls1_c00282{letter-spacing:368.640000px;}
.ls0_c00282{letter-spacing:725.580000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f_c00282{word-spacing:-16.179597px;}
.ws1e_c00282{word-spacing:-15.989249px;}
.ws1d_c00282{word-spacing:-14.720261px;}
.ws20_c00282{word-spacing:-14.593362px;}
.ws4_c00282{word-spacing:-13.895419px;}
.ws0_c00282{word-spacing:-12.816779px;}
.ws36_c00282{word-spacing:-3.620560px;}
.ws35_c00282{word-spacing:-2.660893px;}
.ws3a_c00282{word-spacing:-1.701227px;}
.ws33_c00282{word-spacing:-1.649684px;}
.ws30_c00282{word-spacing:-1.522786px;}
.ws2c_c00282{word-spacing:-1.368118px;}
.ws37_c00282{word-spacing:-1.205539px;}
.ws34_c00282{word-spacing:-1.078640px;}
.ws2d_c00282{word-spacing:-0.773284px;}
.ws38_c00282{word-spacing:-0.380696px;}
.ws3b_c00282{word-spacing:-0.376728px;}
.ws2a_c00282{word-spacing:-0.253798px;}
.ws24_c00282{word-spacing:-0.144000px;}
.ws32_c00282{word-spacing:-0.126899px;}
.ws26_c00282{word-spacing:-0.072000px;}
.ws2e_c00282{word-spacing:-0.063449px;}
.ws21_c00282{word-spacing:0.000000px;}
.ws2b_c00282{word-spacing:0.059483px;}
.ws25_c00282{word-spacing:0.072000px;}
.ws23_c00282{word-spacing:0.162000px;}
.ws28_c00282{word-spacing:0.190348px;}
.ws22_c00282{word-spacing:0.270000px;}
.ws2f_c00282{word-spacing:0.444146px;}
.ws29_c00282{word-spacing:1.142089px;}
.ws27_c00282{word-spacing:1.268988px;}
.ws39_c00282{word-spacing:1.522786px;}
.ws31_c00282{word-spacing:1.966931px;}
.ws9_c00282{word-spacing:20.581256px;}
.ws1_c00282{word-spacing:36.463324px;}
.ws5_c00282{word-spacing:60.209097px;}
.wsd_c00282{word-spacing:72.076036px;}
.wse_c00282{word-spacing:75.627195px;}
.ws6_c00282{word-spacing:78.220671px;}
.ws12_c00282{word-spacing:91.467624px;}
.wsf_c00282{word-spacing:133.718683px;}
.ws7_c00282{word-spacing:147.007275px;}
.ws3_c00282{word-spacing:159.320339px;}
.ws11_c00282{word-spacing:163.281933px;}
.wsb_c00282{word-spacing:187.176415px;}
.ws13_c00282{word-spacing:191.120164px;}
.ws8_c00282{word-spacing:203.034689px;}
.ws18_c00282{word-spacing:235.298485px;}
.ws1a_c00282{word-spacing:291.980217px;}
.ws16_c00282{word-spacing:294.359553px;}
.ws17_c00282{word-spacing:303.876897px;}
.ws1c_c00282{word-spacing:312.864839px;}
.wsc_c00282{word-spacing:336.991306px;}
.ws15_c00282{word-spacing:339.566937px;}
.ws19_c00282{word-spacing:378.070542px;}
.ws2_c00282{word-spacing:378.433391px;}
.ws1b_c00282{word-spacing:382.061878px;}
.ws14_c00282{word-spacing:389.979119px;}
.wsa_c00282{word-spacing:400.537422px;}
.ws10_c00282{word-spacing:409.882264px;}
._13_c00282{margin-left:-4.853879px;}
._14_c00282{margin-left:-3.791120px;}
._d_c00282{margin-left:-2.617270px;}
._1_c00282{margin-left:-1.058400px;}
._0_c00282{width:1.225800px;}
._6_c00282{width:2.335930px;}
._2_c00282{width:3.385745px;}
._b_c00282{width:4.394295px;}
._5_c00282{width:83.001997px;}
._a_c00282{width:84.051812px;}
._4_c00282{width:86.963591px;}
._9_c00282{width:88.013406px;}
._e_c00282{width:144.057016px;}
._10_c00282{width:159.939084px;}
._3_c00282{width:166.320395px;}
._8_c00282{width:167.370210px;}
._12_c00282{width:178.015529px;}
._7_c00282{width:204.014584px;}
._f_c00282{width:221.308874px;}
._c_c00282{width:241.450395px;}
._11_c00282{width:325.956251px;}
.fc1_c00282{color:transparent;}
.fc0_c00282{color:rgb(0,0,0);}
.fs4_c00282{font-size:43.621200px;}
.fs0_c00282{font-size:54.000000px;}
.fs3_c00282{font-size:59.483400px;}
.fs2_c00282{font-size:63.449400px;}
.fs1_c00282{font-size:72.000000px;}
.fs5_c00282{font-size:75.345600px;}
.y0_c00282{bottom:0.000000px;}
.y1a_c00282{bottom:2.973150px;}
.y23_c00282{bottom:2.973450px;}
.y32_c00282{bottom:2.973600px;}
.y3a_c00282{bottom:2.973750px;}
.y2e_c00282{bottom:2.973900px;}
.y16_c00282{bottom:2.974050px;}
.y20_c00282{bottom:2.974350px;}
.y30_c00282{bottom:2.974500px;}
.y2b_c00282{bottom:2.974650px;}
.y12_c00282{bottom:2.974800px;}
.y27_c00282{bottom:2.974950px;}
.y1d_c00282{bottom:2.975250px;}
.y19_c00282{bottom:3.964650px;}
.y22_c00282{bottom:3.964950px;}
.y33_c00282{bottom:3.965100px;}
.y2d_c00282{bottom:3.965250px;}
.y15_c00282{bottom:3.965400px;}
.y17_c00282{bottom:3.965550px;}
.y25_c00282{bottom:3.965700px;}
.y1f_c00282{bottom:3.965850px;}
.y38_c00282{bottom:3.966000px;}
.y13_c00282{bottom:3.966150px;}
.y11_c00282{bottom:3.966300px;}
.y28_c00282{bottom:3.966450px;}
.y1c_c00282{bottom:3.966750px;}
.y46_c00282{bottom:4.996134px;}
.y54_c00282{bottom:4.996284px;}
.y3d_c00282{bottom:5.954897px;}
.y65_c00282{bottom:6.939600px;}
.yf_c00282{bottom:6.971137px;}
.y4c_c00282{bottom:12.888000px;}
.y4e_c00282{bottom:12.888150px;}
.y62_c00282{bottom:13.879500px;}
.y60_c00282{bottom:13.879650px;}
.y4d_c00282{bottom:15.862200px;}
.y4b_c00282{bottom:15.893643px;}
.y45_c00282{bottom:25.807537px;}
.y53_c00282{bottom:25.807687px;}
.y3c_c00282{bottom:26.766300px;}
.ya_c00282{bottom:27.774694px;}
.ye_c00282{bottom:27.782540px;}
.y5f_c00282{bottom:33.707400px;}
.y5a_c00282{bottom:36.697144px;}
.y40_c00282{bottom:36.697294px;}
.y61_c00282{bottom:36.705047px;}
.y5e_c00282{bottom:36.705197px;}
.y4a_c00282{bottom:38.687840px;}
.y55_c00282{bottom:45.603975px;}
.y44_c00282{bottom:46.618940px;}
.y52_c00282{bottom:46.619090px;}
.y9_c00282{bottom:48.586097px;}
.yd_c00282{bottom:48.593944px;}
.y56_c00282{bottom:53.535300px;}
.y66_c00282{bottom:57.330000px;}
.y57_c00282{bottom:57.500850px;}
.y59_c00282{bottom:57.508547px;}
.y3f_c00282{bottom:57.508697px;}
.y49_c00282{bottom:59.499244px;}
.y5d_c00282{bottom:59.499394px;}
.y43_c00282{bottom:67.430344px;}
.y51_c00282{bottom:67.430494px;}
.y8_c00282{bottom:69.397500px;}
.yc_c00282{bottom:69.405347px;}
.y63_c00282{bottom:70.388850px;}
.y58_c00282{bottom:78.319950px;}
.y3e_c00282{bottom:78.320100px;}
.y48_c00282{bottom:80.310647px;}
.y5c_c00282{bottom:80.310797px;}
.y42_c00282{bottom:88.241747px;}
.y50_c00282{bottom:88.241897px;}
.yb_c00282{bottom:90.216750px;}
.y47_c00282{bottom:101.122050px;}
.y5b_c00282{bottom:101.122200px;}
.y41_c00282{bottom:109.053150px;}
.y4f_c00282{bottom:109.053300px;}
.y6_c00282{bottom:208.170000px;}
.y5_c00282{bottom:224.820000px;}
.y39_c00282{bottom:226.804500px;}
.y37_c00282{bottom:246.631500px;}
.y36_c00282{bottom:266.460000px;}
.y35_c00282{bottom:286.287000px;}
.y34_c00282{bottom:306.115500px;}
.y31_c00282{bottom:325.944000px;}
.y2f_c00282{bottom:345.771000px;}
.y2c_c00282{bottom:365.599500px;}
.y2a_c00282{bottom:385.426500px;}
.y29_c00282{bottom:405.255000px;}
.y26_c00282{bottom:425.082000px;}
.y24_c00282{bottom:444.910500px;}
.y21_c00282{bottom:464.739000px;}
.y1e_c00282{bottom:484.566000px;}
.y1b_c00282{bottom:504.393000px;}
.y18_c00282{bottom:524.223000px;}
.y14_c00282{bottom:544.050000px;}
.y10_c00282{bottom:563.877000px;}
.y7_c00282{bottom:583.705500px;}
.y3b_c00282{bottom:692.760000px;}
.y64_c00282{bottom:709.612500px;}
.y4_c00282{bottom:761.220000px;}
.y3_c00282{bottom:781.110000px;}
.y2_c00282{bottom:796.594500px;}
.y1_c00282{bottom:827.640000px;}
.hb_c00282{height:18.835500px;}
.h7_c00282{height:18.837000px;}
.h11_c00282{height:25.776000px;}
.hf_c00282{height:35.974710px;}
.hc_c00282{height:42.628500px;}
.he_c00282{height:43.435576px;}
.ha_c00282{height:44.234970px;}
.h9_c00282{height:47.184295px;}
.h8_c00282{height:49.056378px;}
.h6_c00282{height:52.327166px;}
.h2_c00282{height:52.998047px;}
.h12_c00282{height:62.138046px;}
.h4_c00282{height:70.628906px;}
.h3_c00282{height:70.664062px;}
.h5_c00282{height:108.061500px;}
.hd_c00282{height:124.915500px;}
.h10_c00282{height:151.683000px;}
.h0_c00282{height:893.070000px;}
.h1_c00282{height:893.250000px;}
.wd_c00282{width:30.738000px;}
.w2_c00282{width:63.457500px;}
.w3_c00282{width:69.408000px;}
.wb_c00282{width:71.392500px;}
.wa_c00282{width:73.374000px;}
.wc_c00282{width:75.357000px;}
.w6_c00282{width:84.280500px;}
.w7_c00282{width:91.222500px;}
.w8_c00282{width:99.153000px;}
.w9_c00282{width:100.146000px;}
.w5_c00282{width:133.858500px;}
.we_c00282{width:745.638000px;}
.w4_c00282{width:1048.059000px;}
.w0_c00282{width:1262.880000px;}
.w1_c00282{width:1263.000000px;}
.x0_c00282{left:0.000000px;}
.x7_c00282{left:2.967730px;}
.xb_c00282{left:5.942005px;}
.xd_c00282{left:7.932300px;}
.x22_c00282{left:9.916575px;}
.x11_c00282{left:11.898450px;}
.x8_c00282{left:14.866180px;}
.xc_c00282{left:17.840455px;}
.xa_c00282{left:20.823000px;}
.x16_c00282{left:22.797355px;}
.x6_c00282{left:23.797950px;}
.x1f_c00282{left:28.754250px;}
.x1e_c00282{left:32.720400px;}
.x12_c00282{left:37.679475px;}
.x19_c00282{left:39.662100px;}
.x15_c00282{left:41.644500px;}
.x1a_c00282{left:43.628250px;}
.x18_c00282{left:45.611250px;}
.x24_c00282{left:54.534150px;}
.x26_c00282{left:57.508650px;}
.x1b_c00282{left:92.213850px;}
.x2_c00282{left:106.380000px;}
.x27_c00282{left:139.101000px;}
.x28_c00282{left:226.071900px;}
.x13_c00282{left:273.949500px;}
.x14_c00282{left:359.223000px;}
.xe_c00282{left:360.920700px;}
.x10_c00282{left:363.895200px;}
.x17_c00282{left:451.435500px;}
.xf_c00282{left:474.947700px;}
.x1c_c00282{left:551.581500px;}
.x1_c00282{left:631.440000px;}
.x1d_c00282{left:652.719000px;}
.x20_c00282{left:727.084500px;}
.x21_c00282{left:801.448500px;}
.x23_c00282{left:873.832500px;}
.x25_c00282{left:944.232000px;}
.x5_c00282{left:1020.579000px;}
.x4_c00282{left:1073.610000px;}
.x9_c00282{left:1085.029500px;}
.x29_c00282{left:1129.590000px;}
.x3_c00282{left:1156.590000px;}
@media print{
.v2_c00282{vertical-align:-74.240000pt;}
.v1_c00282{vertical-align:-55.040000pt;}
.v0_c00282{vertical-align:0.000000pt;}
.lse_c00282{letter-spacing:-2.114965pt;}
.lsf_c00282{letter-spacing:-1.427602pt;}
.lsd_c00282{letter-spacing:-1.353587pt;}
.ls12_c00282{letter-spacing:-1.216105pt;}
.ls15_c00282{letter-spacing:-0.687364pt;}
.ls1c_c00282{letter-spacing:-0.669739pt;}
.ls11_c00282{letter-spacing:-0.634490pt;}
.ls10_c00282{letter-spacing:-0.394796pt;}
.lsc_c00282{letter-spacing:-0.169198pt;}
.ls13_c00282{letter-spacing:-0.158622pt;}
.ls7_c00282{letter-spacing:-0.096000pt;}
.lsa_c00282{letter-spacing:-0.064000pt;}
.ls8_c00282{letter-spacing:0.000000pt;}
.lsb_c00282{letter-spacing:0.064000pt;}
.ls9_c00282{letter-spacing:0.128000pt;}
.ls2_c00282{letter-spacing:0.225598pt;}
.ls3_c00282{letter-spacing:0.338397pt;}
.ls19_c00282{letter-spacing:0.659165pt;}
.ls18_c00282{letter-spacing:0.958791pt;}
.ls1a_c00282{letter-spacing:1.071590pt;}
.ls14_c00282{letter-spacing:1.110357pt;}
.ls16_c00282{letter-spacing:1.409987pt;}
.ls17_c00282{letter-spacing:1.466386pt;}
.ls6_c00282{letter-spacing:1.512202pt;}
.ls1b_c00282{letter-spacing:1.635585pt;}
.ls5_c00282{letter-spacing:2.707174pt;}
.ls4_c00282{letter-spacing:50.759168pt;}
.ls1_c00282{letter-spacing:327.680000pt;}
.ls0_c00282{letter-spacing:644.960000pt;}
.ws1f_c00282{word-spacing:-14.381864pt;}
.ws1e_c00282{word-spacing:-14.212666pt;}
.ws1d_c00282{word-spacing:-13.084676pt;}
.ws20_c00282{word-spacing:-12.971877pt;}
.ws4_c00282{word-spacing:-12.351483pt;}
.ws0_c00282{word-spacing:-11.392692pt;}
.ws36_c00282{word-spacing:-3.218275pt;}
.ws35_c00282{word-spacing:-2.365238pt;}
.ws3a_c00282{word-spacing:-1.512202pt;}
.ws33_c00282{word-spacing:-1.466386pt;}
.ws30_c00282{word-spacing:-1.353587pt;}
.ws2c_c00282{word-spacing:-1.216105pt;}
.ws37_c00282{word-spacing:-1.071590pt;}
.ws34_c00282{word-spacing:-0.958791pt;}
.ws2d_c00282{word-spacing:-0.687364pt;}
.ws38_c00282{word-spacing:-0.338397pt;}
.ws3b_c00282{word-spacing:-0.334869pt;}
.ws2a_c00282{word-spacing:-0.225598pt;}
.ws24_c00282{word-spacing:-0.128000pt;}
.ws32_c00282{word-spacing:-0.112799pt;}
.ws26_c00282{word-spacing:-0.064000pt;}
.ws2e_c00282{word-spacing:-0.056399pt;}
.ws21_c00282{word-spacing:0.000000pt;}
.ws2b_c00282{word-spacing:0.052874pt;}
.ws25_c00282{word-spacing:0.064000pt;}
.ws23_c00282{word-spacing:0.144000pt;}
.ws28_c00282{word-spacing:0.169198pt;}
.ws22_c00282{word-spacing:0.240000pt;}
.ws2f_c00282{word-spacing:0.394796pt;}
.ws29_c00282{word-spacing:1.015190pt;}
.ws27_c00282{word-spacing:1.127989pt;}
.ws39_c00282{word-spacing:1.353587pt;}
.ws31_c00282{word-spacing:1.748383pt;}
.ws9_c00282{word-spacing:18.294450pt;}
.ws1_c00282{word-spacing:32.411844pt;}
.ws5_c00282{word-spacing:53.519198pt;}
.wsd_c00282{word-spacing:64.067587pt;}
.wse_c00282{word-spacing:67.224173pt;}
.ws6_c00282{word-spacing:69.529485pt;}
.ws12_c00282{word-spacing:81.304555pt;}
.wsf_c00282{word-spacing:118.861052pt;}
.ws7_c00282{word-spacing:130.673133pt;}
.ws3_c00282{word-spacing:141.618079pt;}
.ws11_c00282{word-spacing:145.139496pt;}
.wsb_c00282{word-spacing:166.379035pt;}
.ws13_c00282{word-spacing:169.884590pt;}
.ws8_c00282{word-spacing:180.475279pt;}
.ws18_c00282{word-spacing:209.154209pt;}
.ws1a_c00282{word-spacing:259.537971pt;}
.ws16_c00282{word-spacing:261.652936pt;}
.ws17_c00282{word-spacing:270.112798pt;}
.ws1c_c00282{word-spacing:278.102079pt;}
.wsc_c00282{word-spacing:299.547828pt;}
.ws15_c00282{word-spacing:301.837278pt;}
.ws19_c00282{word-spacing:336.062704pt;}
.ws2_c00282{word-spacing:336.385236pt;}
.ws1b_c00282{word-spacing:339.610558pt;}
.ws14_c00282{word-spacing:346.648106pt;}
.wsa_c00282{word-spacing:356.033264pt;}
.ws10_c00282{word-spacing:364.339791pt;}
._13_c00282{margin-left:-4.314559pt;}
._14_c00282{margin-left:-3.369884pt;}
._d_c00282{margin-left:-2.326462pt;}
._1_c00282{margin-left:-0.940800pt;}
._0_c00282{width:1.089600pt;}
._6_c00282{width:2.076382pt;}
._2_c00282{width:3.009551pt;}
._b_c00282{width:3.906040pt;}
._5_c00282{width:73.779553pt;}
._a_c00282{width:74.712722pt;}
._4_c00282{width:77.300970pt;}
._9_c00282{width:78.234139pt;}
._e_c00282{width:128.050681pt;}
._10_c00282{width:142.168074pt;}
._3_c00282{width:147.840351pt;}
._8_c00282{width:148.773520pt;}
._12_c00282{width:158.236026pt;}
._7_c00282{width:181.346297pt;}
._f_c00282{width:196.718999pt;}
._c_c00282{width:214.622573pt;}
._11_c00282{width:289.738890pt;}
.fs4_c00282{font-size:38.774400pt;}
.fs0_c00282{font-size:48.000000pt;}
.fs3_c00282{font-size:52.874133pt;}
.fs2_c00282{font-size:56.399467pt;}
.fs1_c00282{font-size:64.000000pt;}
.fs5_c00282{font-size:66.973867pt;}
.y0_c00282{bottom:0.000000pt;}
.y1a_c00282{bottom:2.642800pt;}
.y23_c00282{bottom:2.643067pt;}
.y32_c00282{bottom:2.643200pt;}
.y3a_c00282{bottom:2.643333pt;}
.y2e_c00282{bottom:2.643467pt;}
.y16_c00282{bottom:2.643600pt;}
.y20_c00282{bottom:2.643867pt;}
.y30_c00282{bottom:2.644000pt;}
.y2b_c00282{bottom:2.644133pt;}
.y12_c00282{bottom:2.644267pt;}
.y27_c00282{bottom:2.644400pt;}
.y1d_c00282{bottom:2.644667pt;}
.y19_c00282{bottom:3.524133pt;}
.y22_c00282{bottom:3.524400pt;}
.y33_c00282{bottom:3.524533pt;}
.y2d_c00282{bottom:3.524667pt;}
.y15_c00282{bottom:3.524800pt;}
.y17_c00282{bottom:3.524933pt;}
.y25_c00282{bottom:3.525067pt;}
.y1f_c00282{bottom:3.525200pt;}
.y38_c00282{bottom:3.525333pt;}
.y13_c00282{bottom:3.525467pt;}
.y11_c00282{bottom:3.525600pt;}
.y28_c00282{bottom:3.525733pt;}
.y1c_c00282{bottom:3.526000pt;}
.y46_c00282{bottom:4.441008pt;}
.y54_c00282{bottom:4.441141pt;}
.y3d_c00282{bottom:5.293242pt;}
.y65_c00282{bottom:6.168533pt;}
.yf_c00282{bottom:6.196566pt;}
.y4c_c00282{bottom:11.456000pt;}
.y4e_c00282{bottom:11.456133pt;}
.y62_c00282{bottom:12.337333pt;}
.y60_c00282{bottom:12.337467pt;}
.y4d_c00282{bottom:14.099733pt;}
.y4b_c00282{bottom:14.127683pt;}
.y45_c00282{bottom:22.940033pt;}
.y53_c00282{bottom:22.940166pt;}
.y3c_c00282{bottom:23.792267pt;}
.ya_c00282{bottom:24.688617pt;}
.ye_c00282{bottom:24.695591pt;}
.y5f_c00282{bottom:29.962133pt;}
.y5a_c00282{bottom:32.619683pt;}
.y40_c00282{bottom:32.619817pt;}
.y61_c00282{bottom:32.626708pt;}
.y5e_c00282{bottom:32.626841pt;}
.y4a_c00282{bottom:34.389191pt;}
.y55_c00282{bottom:40.536867pt;}
.y44_c00282{bottom:41.439058pt;}
.y52_c00282{bottom:41.439191pt;}
.y9_c00282{bottom:43.187642pt;}
.yd_c00282{bottom:43.194617pt;}
.y56_c00282{bottom:47.586933pt;}
.y66_c00282{bottom:50.960000pt;}
.y57_c00282{bottom:51.111867pt;}
.y59_c00282{bottom:51.118708pt;}
.y3f_c00282{bottom:51.118842pt;}
.y49_c00282{bottom:52.888217pt;}
.y5d_c00282{bottom:52.888350pt;}
.y43_c00282{bottom:59.938083pt;}
.y51_c00282{bottom:59.938217pt;}
.y8_c00282{bottom:61.686667pt;}
.yc_c00282{bottom:61.693642pt;}
.y63_c00282{bottom:62.567867pt;}
.y58_c00282{bottom:69.617733pt;}
.y3e_c00282{bottom:69.617867pt;}
.y48_c00282{bottom:71.387242pt;}
.y5c_c00282{bottom:71.387375pt;}
.y42_c00282{bottom:78.437108pt;}
.y50_c00282{bottom:78.437242pt;}
.yb_c00282{bottom:80.192667pt;}
.y47_c00282{bottom:89.886267pt;}
.y5b_c00282{bottom:89.886400pt;}
.y41_c00282{bottom:96.936133pt;}
.y4f_c00282{bottom:96.936267pt;}
.y6_c00282{bottom:185.040000pt;}
.y5_c00282{bottom:199.840000pt;}
.y39_c00282{bottom:201.604000pt;}
.y37_c00282{bottom:219.228000pt;}
.y36_c00282{bottom:236.853333pt;}
.y35_c00282{bottom:254.477333pt;}
.y34_c00282{bottom:272.102667pt;}
.y31_c00282{bottom:289.728000pt;}
.y2f_c00282{bottom:307.352000pt;}
.y2c_c00282{bottom:324.977333pt;}
.y2a_c00282{bottom:342.601333pt;}
.y29_c00282{bottom:360.226667pt;}
.y26_c00282{bottom:377.850667pt;}
.y24_c00282{bottom:395.476000pt;}
.y21_c00282{bottom:413.101333pt;}
.y1e_c00282{bottom:430.725333pt;}
.y1b_c00282{bottom:448.349333pt;}
.y18_c00282{bottom:465.976000pt;}
.y14_c00282{bottom:483.600000pt;}
.y10_c00282{bottom:501.224000pt;}
.y7_c00282{bottom:518.849333pt;}
.y3b_c00282{bottom:615.786667pt;}
.y64_c00282{bottom:630.766667pt;}
.y4_c00282{bottom:676.640000pt;}
.y3_c00282{bottom:694.320000pt;}
.y2_c00282{bottom:708.084000pt;}
.y1_c00282{bottom:735.680000pt;}
.hb_c00282{height:16.742667pt;}
.h7_c00282{height:16.744000pt;}
.h11_c00282{height:22.912000pt;}
.hf_c00282{height:31.977520pt;}
.hc_c00282{height:37.892000pt;}
.he_c00282{height:38.609401pt;}
.ha_c00282{height:39.319973pt;}
.h9_c00282{height:41.941596pt;}
.h8_c00282{height:43.605670pt;}
.h6_c00282{height:46.513037pt;}
.h2_c00282{height:47.109375pt;}
.h12_c00282{height:55.233819pt;}
.h4_c00282{height:62.781250pt;}
.h3_c00282{height:62.812500pt;}
.h5_c00282{height:96.054667pt;}
.hd_c00282{height:111.036000pt;}
.h10_c00282{height:134.829333pt;}
.h0_c00282{height:793.840000pt;}
.h1_c00282{height:794.000000pt;}
.wd_c00282{width:27.322667pt;}
.w2_c00282{width:56.406667pt;}
.w3_c00282{width:61.696000pt;}
.wb_c00282{width:63.460000pt;}
.wa_c00282{width:65.221333pt;}
.wc_c00282{width:66.984000pt;}
.w6_c00282{width:74.916000pt;}
.w7_c00282{width:81.086667pt;}
.w8_c00282{width:88.136000pt;}
.w9_c00282{width:89.018667pt;}
.w5_c00282{width:118.985333pt;}
.we_c00282{width:662.789333pt;}
.w4_c00282{width:931.608000pt;}
.w0_c00282{width:1122.560000pt;}
.w1_c00282{width:1122.666667pt;}
.x0_c00282{left:0.000000pt;}
.x7_c00282{left:2.637982pt;}
.xb_c00282{left:5.281782pt;}
.xd_c00282{left:7.050933pt;}
.x22_c00282{left:8.814733pt;}
.x11_c00282{left:10.576400pt;}
.x8_c00282{left:13.214382pt;}
.xc_c00282{left:15.858182pt;}
.xa_c00282{left:18.509333pt;}
.x16_c00282{left:20.264316pt;}
.x6_c00282{left:21.153733pt;}
.x1f_c00282{left:25.559333pt;}
.x1e_c00282{left:29.084800pt;}
.x12_c00282{left:33.492867pt;}
.x19_c00282{left:35.255200pt;}
.x15_c00282{left:37.017333pt;}
.x1a_c00282{left:38.780667pt;}
.x18_c00282{left:40.543333pt;}
.x24_c00282{left:48.474800pt;}
.x26_c00282{left:51.118800pt;}
.x1b_c00282{left:81.967867pt;}
.x2_c00282{left:94.560000pt;}
.x27_c00282{left:123.645333pt;}
.x28_c00282{left:200.952800pt;}
.x13_c00282{left:243.510667pt;}
.x14_c00282{left:319.309333pt;}
.xe_c00282{left:320.818400pt;}
.x10_c00282{left:323.462400pt;}
.x17_c00282{left:401.276000pt;}
.xf_c00282{left:422.175733pt;}
.x1c_c00282{left:490.294667pt;}
.x1_c00282{left:561.280000pt;}
.x1d_c00282{left:580.194667pt;}
.x20_c00282{left:646.297333pt;}
.x21_c00282{left:712.398667pt;}
.x23_c00282{left:776.740000pt;}
.x25_c00282{left:839.317333pt;}
.x5_c00282{left:907.181333pt;}
.x4_c00282{left:954.320000pt;}
.x9_c00282{left:964.470667pt;}
.x29_c00282{left:1004.080000pt;}
.x3_c00282{left:1028.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_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_2502e83287949e04a836d2c6.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_1912eb8ccadb210b9be648bd.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.002930;font-style:normal;font-weight:normal;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_3fe5a43bb048f04a714edd19.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00283;src:url('chunks/assets/font_9090b9fa7586f137f007e75e.woff2')format("woff");}.ff5_c00283{font-family:ff5_c00283;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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(0.250242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250242,0.000000,0.000000,0.250000,0,0);}
.v1_c00283{vertical-align:-61.938000px;}
.v2_c00283{vertical-align:-3.963600px;}
.v0_c00283{vertical-align:0.000000px;}
.v3_c00283{vertical-align:3.982493px;}
.ls4_c00283{letter-spacing:-2.377608px;}
.lse_c00283{letter-spacing:-1.957562px;}
.ls9_c00283{letter-spacing:-1.604885px;}
.ls7_c00283{letter-spacing:-1.367125px;}
.lsa_c00283{letter-spacing:-1.307684px;}
.lsb_c00283{letter-spacing:-0.772723px;}
.ls8_c00283{letter-spacing:-0.713282px;}
.ls6_c00283{letter-spacing:-0.443818px;}
.ls5_c00283{letter-spacing:-0.178321px;}
.ls3_c00283{letter-spacing:0.000000px;}
.lsc_c00283{letter-spacing:0.927266px;}
.ls2_c00283{letter-spacing:1.248244px;}
.lsd_c00283{letter-spacing:2.009077px;}
.ls1_c00283{letter-spacing:57.062592px;}
.ls0_c00283{letter-spacing:1144.260000px;}
.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;}
}
.ws1f_c00283{word-spacing:-2.987858px;}
.ws1e_c00283{word-spacing:-1.906048px;}
.ws1c_c00283{word-spacing:-0.162000px;}
.ws1b_c00283{word-spacing:0.000000px;}
.ws1d_c00283{word-spacing:0.059440px;}
.ws20_c00283{word-spacing:0.978781px;}
.ws0_c00283{word-spacing:36.436843px;}
.wsc_c00283{word-spacing:60.123762px;}
.ws4_c00283{word-spacing:71.999914px;}
.ws9_c00283{word-spacing:78.163863px;}
.ws5_c00283{word-spacing:91.383363px;}
.wsd_c00283{word-spacing:131.029977px;}
.wsa_c00283{word-spacing:146.900510px;}
.ws18_c00283{word-spacing:151.269365px;}
.ws2_c00283{word-spacing:159.204632px;}
.ws12_c00283{word-spacing:180.286717px;}
.ws10_c00283{word-spacing:184.248892px;}
.ws3_c00283{word-spacing:184.249492px;}
.wse_c00283{word-spacing:190.981363px;}
.ws8_c00283{word-spacing:192.175079px;}
.ws6_c00283{word-spacing:202.869403px;}
.ws16_c00283{word-spacing:243.074754px;}
.wsf_c00283{word-spacing:314.456490px;}
.ws15_c00283{word-spacing:319.568347px;}
.ws19_c00283{word-spacing:323.473568px;}
.ws17_c00283{word-spacing:330.047655px;}
.wsb_c00283{word-spacing:354.067439px;}
.ws13_c00283{word-spacing:356.361831px;}
.ws1_c00283{word-spacing:373.641097px;}
.ws7_c00283{word-spacing:374.651581px;}
.ws1a_c00283{word-spacing:392.323152px;}
.ws14_c00283{word-spacing:395.990612px;}
.ws11_c00283{word-spacing:432.742488px;}
._13_c00283{margin-left:-5.805718px;}
._11_c00283{margin-left:-4.662089px;}
._12_c00283{margin-left:-3.363916px;}
._0_c00283{margin-left:-1.503837px;}
._1_c00283{width:1.105588px;}
._a_c00283{width:2.145791px;}
._2_c00283{width:3.245435px;}
._f_c00283{width:4.356367px;}
._14_c00283{width:6.405845px;}
._9_c00283{width:71.185584px;}
._b_c00283{width:83.649594px;}
._5_c00283{width:87.038285px;}
._e_c00283{width:143.302720px;}
._10_c00283{width:146.573589px;}
._6_c00283{width:159.056031px;}
._4_c00283{width:166.404816px;}
._8_c00283{width:170.636962px;}
._3_c00283{width:178.238995px;}
._d_c00283{width:183.022493px;}
._7_c00283{width:189.842425px;}
._c_c00283{width:366.543937px;}
.fc0_c00283{color:rgb(0,0,0);}
.fs4_c00283{font-size:51.514800px;}
.fs0_c00283{font-size:54.000000px;}
.fs2_c00283{font-size:59.440200px;}
.fs3_c00283{font-size:63.402600px;}
.fs1_c00283{font-size:72.000000px;}
.y0_c00283{bottom:0.000000px;}
.yd_c00283{bottom:3.961650px;}
.y13_c00283{bottom:3.961950px;}
.y17_c00283{bottom:3.962100px;}
.y19_c00283{bottom:3.962250px;}
.y1b_c00283{bottom:3.962400px;}
.y1d_c00283{bottom:3.962550px;}
.y1f_c00283{bottom:3.962700px;}
.y8_c00283{bottom:3.962850px;}
.yb_c00283{bottom:3.963000px;}
.yf_c00283{bottom:3.963150px;}
.y11_c00283{bottom:3.963300px;}
.y15_c00283{bottom:3.963600px;}
.y29_c00283{bottom:4.953000px;}
.y25_c00283{bottom:4.953150px;}
.y23_c00283{bottom:4.953300px;}
.y27_c00283{bottom:5.943600px;}
.y2a_c00283{bottom:57.330000px;}
.y6_c00283{bottom:361.080000px;}
.y5_c00283{bottom:377.730000px;}
.y22_c00283{bottom:379.635000px;}
.y24_c00283{bottom:399.448500px;}
.y28_c00283{bottom:419.262000px;}
.y26_c00283{bottom:439.075500px;}
.y21_c00283{bottom:459.879000px;}
.y20_c00283{bottom:479.692500px;}
.y1e_c00283{bottom:499.506000px;}
.y1c_c00283{bottom:519.319500px;}
.y1a_c00283{bottom:539.133000px;}
.y18_c00283{bottom:558.946500px;}
.y16_c00283{bottom:578.760000px;}
.y14_c00283{bottom:598.572000px;}
.y12_c00283{bottom:618.387000px;}
.y10_c00283{bottom:638.199000px;}
.ye_c00283{bottom:658.012500px;}
.yc_c00283{bottom:677.827500px;}
.ya_c00283{bottom:697.639500px;}
.y9_c00283{bottom:717.453000px;}
.y7_c00283{bottom:737.266500px;}
.y4_c00283{bottom:761.220000px;}
.y3_c00283{bottom:781.105500px;}
.y2_c00283{bottom:796.590000px;}
.y1_c00283{bottom:827.640000px;}
.h7_c00283{height:18.822000px;}
.h5_c00283{height:18.823500px;}
.ha_c00283{height:19.812000px;}
.h6_c00283{height:49.020751px;}
.h9_c00283{height:50.558959px;}
.hb_c00283{height:51.917259px;}
.h2_c00283{height:52.998047px;}
.h8_c00283{height:53.003244px;}
.h4_c00283{height:70.628906px;}
.h3_c00283{height:70.664062px;}
.h0_c00283{height:893.070000px;}
.h1_c00283{height:893.250000px;}
.w3_c00283{width:1015.423500px;}
.w2_c00283{width:1048.147500px;}
.w0_c00283{width:1262.880000px;}
.w1_c00283{width:1263.000000px;}
.x0_c00283{left:0.000000px;}
.x7_c00283{left:1.982850px;}
.x4_c00283{left:7.933050px;}
.x5_c00283{left:11.899650px;}
.x2_c00283{left:106.380000px;}
.x6_c00283{left:139.104000px;}
.x1_c00283{left:631.440000px;}
.x3_c00283{left:1156.590000px;}
@media print{
.v1_c00283{vertical-align:-55.056000pt;}
.v2_c00283{vertical-align:-3.523200pt;}
.v0_c00283{vertical-align:0.000000pt;}
.v3_c00283{vertical-align:3.539994pt;}
.ls4_c00283{letter-spacing:-2.113429pt;}
.lse_c00283{letter-spacing:-1.740055pt;}
.ls9_c00283{letter-spacing:-1.426565pt;}
.ls7_c00283{letter-spacing:-1.215222pt;}
.lsa_c00283{letter-spacing:-1.162386pt;}
.lsb_c00283{letter-spacing:-0.686865pt;}
.ls8_c00283{letter-spacing:-0.634029pt;}
.ls6_c00283{letter-spacing:-0.394505pt;}
.ls5_c00283{letter-spacing:-0.158507pt;}
.ls3_c00283{letter-spacing:0.000000pt;}
.lsc_c00283{letter-spacing:0.824237pt;}
.ls2_c00283{letter-spacing:1.109550pt;}
.lsd_c00283{letter-spacing:1.785846pt;}
.ls1_c00283{letter-spacing:50.722304pt;}
.ls0_c00283{letter-spacing:1017.120000pt;}
.ws1f_c00283{word-spacing:-2.655874pt;}
.ws1e_c00283{word-spacing:-1.694265pt;}
.ws1c_c00283{word-spacing:-0.144000pt;}
.ws1b_c00283{word-spacing:0.000000pt;}
.ws1d_c00283{word-spacing:0.052836pt;}
.ws20_c00283{word-spacing:0.870028pt;}
.ws0_c00283{word-spacing:32.388305pt;}
.wsc_c00283{word-spacing:53.443344pt;}
.ws4_c00283{word-spacing:63.999924pt;}
.ws9_c00283{word-spacing:69.478989pt;}
.ws5_c00283{word-spacing:81.229656pt;}
.wsd_c00283{word-spacing:116.471091pt;}
.wsa_c00283{word-spacing:130.578231pt;}
.ws18_c00283{word-spacing:134.461658pt;}
.ws2_c00283{word-spacing:141.515228pt;}
.ws12_c00283{word-spacing:160.254859pt;}
.ws10_c00283{word-spacing:163.776793pt;}
.ws3_c00283{word-spacing:163.777326pt;}
.wse_c00283{word-spacing:169.761211pt;}
.ws8_c00283{word-spacing:170.822292pt;}
.ws6_c00283{word-spacing:180.328358pt;}
.ws16_c00283{word-spacing:216.066448pt;}
.wsf_c00283{word-spacing:279.516880pt;}
.ws15_c00283{word-spacing:284.060753pt;}
.ws19_c00283{word-spacing:287.532061pt;}
.ws17_c00283{word-spacing:293.375693pt;}
.wsb_c00283{word-spacing:314.726613pt;}
.ws13_c00283{word-spacing:316.766072pt;}
.ws1_c00283{word-spacing:332.125420pt;}
.ws7_c00283{word-spacing:333.023627pt;}
.ws1a_c00283{word-spacing:348.731691pt;}
.ws14_c00283{word-spacing:351.991655pt;}
.ws11_c00283{word-spacing:384.659989pt;}
._13_c00283{margin-left:-5.160638pt;}
._11_c00283{margin-left:-4.144079pt;}
._12_c00283{margin-left:-2.990148pt;}
._0_c00283{margin-left:-1.336744pt;}
._1_c00283{width:0.982745pt;}
._a_c00283{width:1.907370pt;}
._2_c00283{width:2.884831pt;}
._f_c00283{width:3.872326pt;}
._14_c00283{width:5.694084pt;}
._9_c00283{width:63.276074pt;}
._b_c00283{width:74.355195pt;}
._5_c00283{width:77.367364pt;}
._e_c00283{width:127.380196pt;}
._10_c00283{width:130.287635pt;}
._6_c00283{width:141.383139pt;}
._4_c00283{width:147.915392pt;}
._8_c00283{width:151.677300pt;}
._3_c00283{width:158.434662pt;}
._d_c00283{width:162.686660pt;}
._7_c00283{width:168.748822pt;}
._c_c00283{width:325.816833pt;}
.fs4_c00283{font-size:45.790933pt;}
.fs0_c00283{font-size:48.000000pt;}
.fs2_c00283{font-size:52.835733pt;}
.fs3_c00283{font-size:56.357867pt;}
.fs1_c00283{font-size:64.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.yd_c00283{bottom:3.521467pt;}
.y13_c00283{bottom:3.521733pt;}
.y17_c00283{bottom:3.521867pt;}
.y19_c00283{bottom:3.522000pt;}
.y1b_c00283{bottom:3.522133pt;}
.y1d_c00283{bottom:3.522267pt;}
.y1f_c00283{bottom:3.522400pt;}
.y8_c00283{bottom:3.522533pt;}
.yb_c00283{bottom:3.522667pt;}
.yf_c00283{bottom:3.522800pt;}
.y11_c00283{bottom:3.522933pt;}
.y15_c00283{bottom:3.523200pt;}
.y29_c00283{bottom:4.402667pt;}
.y25_c00283{bottom:4.402800pt;}
.y23_c00283{bottom:4.402933pt;}
.y27_c00283{bottom:5.283200pt;}
.y2a_c00283{bottom:50.960000pt;}
.y6_c00283{bottom:320.960000pt;}
.y5_c00283{bottom:335.760000pt;}
.y22_c00283{bottom:337.453333pt;}
.y24_c00283{bottom:355.065333pt;}
.y28_c00283{bottom:372.677333pt;}
.y26_c00283{bottom:390.289333pt;}
.y21_c00283{bottom:408.781333pt;}
.y20_c00283{bottom:426.393333pt;}
.y1e_c00283{bottom:444.005333pt;}
.y1c_c00283{bottom:461.617333pt;}
.y1a_c00283{bottom:479.229333pt;}
.y18_c00283{bottom:496.841333pt;}
.y16_c00283{bottom:514.453333pt;}
.y14_c00283{bottom:532.064000pt;}
.y12_c00283{bottom:549.677333pt;}
.y10_c00283{bottom:567.288000pt;}
.ye_c00283{bottom:584.900000pt;}
.yc_c00283{bottom:602.513333pt;}
.ya_c00283{bottom:620.124000pt;}
.y9_c00283{bottom:637.736000pt;}
.y7_c00283{bottom:655.348000pt;}
.y4_c00283{bottom:676.640000pt;}
.y3_c00283{bottom:694.316000pt;}
.y2_c00283{bottom:708.080000pt;}
.y1_c00283{bottom:735.680000pt;}
.h7_c00283{height:16.730667pt;}
.h5_c00283{height:16.732000pt;}
.ha_c00283{height:17.610667pt;}
.h6_c00283{height:43.574001pt;}
.h9_c00283{height:44.941297pt;}
.hb_c00283{height:46.148675pt;}
.h2_c00283{height:47.109375pt;}
.h8_c00283{height:47.113995pt;}
.h4_c00283{height:62.781250pt;}
.h3_c00283{height:62.812500pt;}
.h0_c00283{height:793.840000pt;}
.h1_c00283{height:794.000000pt;}
.w3_c00283{width:902.598667pt;}
.w2_c00283{width:931.686667pt;}
.w0_c00283{width:1122.560000pt;}
.w1_c00283{width:1122.666667pt;}
.x0_c00283{left:0.000000pt;}
.x7_c00283{left:1.762533pt;}
.x4_c00283{left:7.051600pt;}
.x5_c00283{left:10.577467pt;}
.x2_c00283{left:94.560000pt;}
.x6_c00283{left:123.648000pt;}
.x1_c00283{left:561.280000pt;}
.x3_c00283{left:1028.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_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_9685796aef7916f5b58d1ef1.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_49258c2e4470b44e087ae83d.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;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_c00284;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_37fdb07b1b6e8bd5bb67a054.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00284;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00284{font-family:ff6_c00284;line-height:1.142090;font-style: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);}
.v7_c00284{vertical-align:-20.880000px;}
.v1_c00284{vertical-align:-14.760000px;}
.v4_c00284{vertical-align:-10.440000px;}
.v0_c00284{vertical-align:0.000000px;}
.v2_c00284{vertical-align:14.760000px;}
.v6_c00284{vertical-align:27.000000px;}
.v5_c00284{vertical-align:36.360000px;}
.v3_c00284{vertical-align:42.120000px;}
.ls17_c00284{letter-spacing:-0.360000px;}
.ls1e_c00284{letter-spacing:-0.300600px;}
.ls1a_c00284{letter-spacing:-0.216000px;}
.ls1d_c00284{letter-spacing:-0.180360px;}
.ls1c_c00284{letter-spacing:-0.120240px;}
.ls15_c00284{letter-spacing:-0.108000px;}
.ls19_c00284{letter-spacing:-0.102240px;}
.ls16_c00284{letter-spacing:-0.072000px;}
.ls1b_c00284{letter-spacing:-0.060120px;}
.ls14_c00284{letter-spacing:0.000000px;}
.ls1_c00284{letter-spacing:0.072000px;}
.ls18_c00284{letter-spacing:0.102240px;}
.ls2_c00284{letter-spacing:0.144000px;}
.lsc_c00284{letter-spacing:0.180000px;}
.ls13_c00284{letter-spacing:0.180360px;}
.lsf_c00284{letter-spacing:0.191520px;}
.ls5_c00284{letter-spacing:0.720000px;}
.ls9_c00284{letter-spacing:0.734400px;}
.ls10_c00284{letter-spacing:1.440000px;}
.ls6_c00284{letter-spacing:1.922040px;}
.lsa_c00284{letter-spacing:2.282040px;}
.ls4_c00284{letter-spacing:3.960000px;}
.lse_c00284{letter-spacing:5.400000px;}
.ls8_c00284{letter-spacing:6.480000px;}
.ls0_c00284{letter-spacing:7.560000px;}
.lsd_c00284{letter-spacing:9.360000px;}
.ls11_c00284{letter-spacing:12.324600px;}
.ls12_c00284{letter-spacing:12.390732px;}
.ls7_c00284{letter-spacing:15.840000px;}
.lsb_c00284{letter-spacing:20.520000px;}
.ls3_c00284{letter-spacing:22.601520px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00284{word-spacing:-72.000000px;}
.ws5_c00284{word-spacing:-51.222240px;}
.ws4_c00284{word-spacing:-51.120000px;}
.ws6_c00284{word-spacing:-51.017760px;}
.ws7_c00284{word-spacing:-18.072000px;}
.ws3_c00284{word-spacing:-18.000000px;}
.ws0_c00284{word-spacing:-17.928000px;}
.ws8_c00284{word-spacing:-17.784000px;}
.wsb_c00284{word-spacing:-15.030000px;}
.ws9_c00284{word-spacing:-12.161520px;}
.wsa_c00284{word-spacing:-9.720000px;}
.ws40_c00284{word-spacing:-0.420840px;}
.ws23_c00284{word-spacing:-0.360000px;}
.ws19_c00284{word-spacing:-0.144000px;}
.ws10_c00284{word-spacing:-0.072000px;}
.ws3f_c00284{word-spacing:-0.060120px;}
.wsc_c00284{word-spacing:0.000000px;}
.ws39_c00284{word-spacing:0.060120px;}
.wse_c00284{word-spacing:0.162000px;}
.ws3c_c00284{word-spacing:0.180360px;}
.wsd_c00284{word-spacing:0.270000px;}
.ws1c_c00284{word-spacing:0.288000px;}
.ws1d_c00284{word-spacing:0.360000px;}
.ws38_c00284{word-spacing:1.368000px;}
.ws37_c00284{word-spacing:1.728000px;}
.ws1a_c00284{word-spacing:1.800000px;}
.ws2e_c00284{word-spacing:2.088000px;}
.ws22_c00284{word-spacing:2.880000px;}
.ws20_c00284{word-spacing:3.816000px;}
.ws1f_c00284{word-spacing:3.888000px;}
.ws1e_c00284{word-spacing:3.960000px;}
.ws2_c00284{word-spacing:4.176000px;}
.ws36_c00284{word-spacing:4.968000px;}
.ws35_c00284{word-spacing:5.040000px;}
.ws12_c00284{word-spacing:6.480000px;}
.ws14_c00284{word-spacing:7.488000px;}
.ws13_c00284{word-spacing:7.560000px;}
.ws11_c00284{word-spacing:7.920000px;}
.wsf_c00284{word-spacing:8.208000px;}
.ws28_c00284{word-spacing:8.568000px;}
.ws29_c00284{word-spacing:8.640000px;}
.ws34_c00284{word-spacing:9.288000px;}
.ws33_c00284{word-spacing:9.360000px;}
.ws3a_c00284{word-spacing:12.024000px;}
.ws3e_c00284{word-spacing:12.144240px;}
.ws3b_c00284{word-spacing:12.444840px;}
.ws3d_c00284{word-spacing:12.625200px;}
.ws17_c00284{word-spacing:12.888000px;}
.ws18_c00284{word-spacing:12.960000px;}
.ws2c_c00284{word-spacing:15.768000px;}
.ws2d_c00284{word-spacing:15.840000px;}
.ws27_c00284{word-spacing:17.208000px;}
.ws26_c00284{word-spacing:17.280000px;}
.ws21_c00284{word-spacing:17.928000px;}
.ws24_c00284{word-spacing:19.008000px;}
.ws25_c00284{word-spacing:19.080000px;}
.ws31_c00284{word-spacing:19.368000px;}
.ws32_c00284{word-spacing:19.440000px;}
.ws2f_c00284{word-spacing:20.448000px;}
.ws30_c00284{word-spacing:20.520000px;}
.ws2b_c00284{word-spacing:26.640000px;}
.ws2a_c00284{word-spacing:27.000000px;}
.ws1b_c00284{word-spacing:27.720000px;}
.ws16_c00284{word-spacing:30.528000px;}
.ws15_c00284{word-spacing:30.600000px;}
._5_c00284{margin-left:-3.960000px;}
._1_c00284{margin-left:-1.058400px;}
._0_c00284{width:1.220400px;}
._4_c00284{width:2.372400px;}
._6_c00284{width:3.819600px;}
._2_c00284{width:7.509600px;}
._3_c00284{width:8.928000px;}
._9_c00284{width:12.444840px;}
._8_c00284{width:19.224000px;}
._7_c00284{width:20.592000px;}
.fc0_c00284{color:rgb(0,0,0);}
.fs5_c00284{font-size:38.880000px;}
.fs3_c00284{font-size:42.120000px;}
.fs4_c00284{font-size:47.880000px;}
.fs2_c00284{font-size:51.120000px;}
.fs0_c00284{font-size:54.000000px;}
.fs6_c00284{font-size:60.120000px;}
.fs1_c00284{font-size:72.000000px;}
.y0_c00284{bottom:0.000000px;}
.y28_c00284{bottom:57.240000px;}
.y27_c00284{bottom:109.795680px;}
.y26_c00284{bottom:132.210000px;}
.y29_c00284{bottom:144.900000px;}
.y25_c00284{bottom:196.650000px;}
.y24_c00284{bottom:227.700000px;}
.y23_c00284{bottom:258.750000px;}
.y22_c00284{bottom:289.800000px;}
.y21_c00284{bottom:320.850000px;}
.y20_c00284{bottom:351.900000px;}
.y1f_c00284{bottom:382.950000px;}
.y1e_c00284{bottom:412.740000px;}
.y1d_c00284{bottom:421.830000px;}
.y1c_c00284{bottom:457.740000px;}
.y1b_c00284{bottom:466.830000px;}
.y1a_c00284{bottom:502.740000px;}
.y19_c00284{bottom:511.830000px;}
.y18_c00284{bottom:548.820000px;}
.y17_c00284{bottom:579.870000px;}
.y16_c00284{bottom:610.920000px;}
.y15_c00284{bottom:641.970000px;}
.y14_c00284{bottom:673.020000px;}
.y13_c00284{bottom:704.070000px;}
.y12_c00284{bottom:735.120000px;}
.y11_c00284{bottom:766.170000px;}
.y10_c00284{bottom:797.940000px;}
.yf_c00284{bottom:830.340000px;}
.ye_c00284{bottom:861.390000px;}
.yd_c00284{bottom:892.440000px;}
.yc_c00284{bottom:923.580000px;}
.yb_c00284{bottom:955.080000px;}
.ya_c00284{bottom:986.130000px;}
.y9_c00284{bottom:1017.180000px;}
.y8_c00284{bottom:1048.230000px;}
.y7_c00284{bottom:1079.280000px;}
.y6_c00284{bottom:1110.330000px;}
.y5_c00284{bottom:1131.030000px;}
.y4_c00284{bottom:1150.920000px;}
.y3_c00284{bottom:1166.404500px;}
.y2_c00284{bottom:1181.970000px;}
.y1_c00284{bottom:1197.450000px;}
.h9_c00284{height:38.158594px;}
.h3_c00284{height:52.971680px;}
.h2_c00284{height:52.998047px;}
.ha_c00284{height:59.004492px;}
.h4_c00284{height:70.664062px;}
.h8_c00284{height:73.991602px;}
.h5_c00284{height:143.542969px;}
.h6_c00284{height:144.035508px;}
.h7_c00284{height:179.902969px;}
.h0_c00284{height:1262.880000px;}
.h1_c00284{height:1263.000000px;}
.w0_c00284{width:893.070000px;}
.w1_c00284{width:893.250000px;}
.x0_c00284{left:0.000000px;}
.x3_c00284{left:127.620000px;}
.x5_c00284{left:220.410000px;}
.x2_c00284{left:425.160000px;}
.x1_c00284{left:446.580000px;}
.x4_c00284{left:597.150000px;}
.x6_c00284{left:644.130000px;}
.x7_c00284{left:738.540000px;}
@media print{
.v7_c00284{vertical-align:-18.560000pt;}
.v1_c00284{vertical-align:-13.120000pt;}
.v4_c00284{vertical-align:-9.280000pt;}
.v0_c00284{vertical-align:0.000000pt;}
.v2_c00284{vertical-align:13.120000pt;}
.v6_c00284{vertical-align:24.000000pt;}
.v5_c00284{vertical-align:32.320000pt;}
.v3_c00284{vertical-align:37.440000pt;}
.ls17_c00284{letter-spacing:-0.320000pt;}
.ls1e_c00284{letter-spacing:-0.267200pt;}
.ls1a_c00284{letter-spacing:-0.192000pt;}
.ls1d_c00284{letter-spacing:-0.160320pt;}
.ls1c_c00284{letter-spacing:-0.106880pt;}
.ls15_c00284{letter-spacing:-0.096000pt;}
.ls19_c00284{letter-spacing:-0.090880pt;}
.ls16_c00284{letter-spacing:-0.064000pt;}
.ls1b_c00284{letter-spacing:-0.053440pt;}
.ls14_c00284{letter-spacing:0.000000pt;}
.ls1_c00284{letter-spacing:0.064000pt;}
.ls18_c00284{letter-spacing:0.090880pt;}
.ls2_c00284{letter-spacing:0.128000pt;}
.lsc_c00284{letter-spacing:0.160000pt;}
.ls13_c00284{letter-spacing:0.160320pt;}
.lsf_c00284{letter-spacing:0.170240pt;}
.ls5_c00284{letter-spacing:0.640000pt;}
.ls9_c00284{letter-spacing:0.652800pt;}
.ls10_c00284{letter-spacing:1.280000pt;}
.ls6_c00284{letter-spacing:1.708480pt;}
.lsa_c00284{letter-spacing:2.028480pt;}
.ls4_c00284{letter-spacing:3.520000pt;}
.lse_c00284{letter-spacing:4.800000pt;}
.ls8_c00284{letter-spacing:5.760000pt;}
.ls0_c00284{letter-spacing:6.720000pt;}
.lsd_c00284{letter-spacing:8.320000pt;}
.ls11_c00284{letter-spacing:10.955200pt;}
.ls12_c00284{letter-spacing:11.013984pt;}
.ls7_c00284{letter-spacing:14.080000pt;}
.lsb_c00284{letter-spacing:18.240000pt;}
.ls3_c00284{letter-spacing:20.090240pt;}
.ws1_c00284{word-spacing:-64.000000pt;}
.ws5_c00284{word-spacing:-45.530880pt;}
.ws4_c00284{word-spacing:-45.440000pt;}
.ws6_c00284{word-spacing:-45.349120pt;}
.ws7_c00284{word-spacing:-16.064000pt;}
.ws3_c00284{word-spacing:-16.000000pt;}
.ws0_c00284{word-spacing:-15.936000pt;}
.ws8_c00284{word-spacing:-15.808000pt;}
.wsb_c00284{word-spacing:-13.360000pt;}
.ws9_c00284{word-spacing:-10.810240pt;}
.wsa_c00284{word-spacing:-8.640000pt;}
.ws40_c00284{word-spacing:-0.374080pt;}
.ws23_c00284{word-spacing:-0.320000pt;}
.ws19_c00284{word-spacing:-0.128000pt;}
.ws10_c00284{word-spacing:-0.064000pt;}
.ws3f_c00284{word-spacing:-0.053440pt;}
.wsc_c00284{word-spacing:0.000000pt;}
.ws39_c00284{word-spacing:0.053440pt;}
.wse_c00284{word-spacing:0.144000pt;}
.ws3c_c00284{word-spacing:0.160320pt;}
.wsd_c00284{word-spacing:0.240000pt;}
.ws1c_c00284{word-spacing:0.256000pt;}
.ws1d_c00284{word-spacing:0.320000pt;}
.ws38_c00284{word-spacing:1.216000pt;}
.ws37_c00284{word-spacing:1.536000pt;}
.ws1a_c00284{word-spacing:1.600000pt;}
.ws2e_c00284{word-spacing:1.856000pt;}
.ws22_c00284{word-spacing:2.560000pt;}
.ws20_c00284{word-spacing:3.392000pt;}
.ws1f_c00284{word-spacing:3.456000pt;}
.ws1e_c00284{word-spacing:3.520000pt;}
.ws2_c00284{word-spacing:3.712000pt;}
.ws36_c00284{word-spacing:4.416000pt;}
.ws35_c00284{word-spacing:4.480000pt;}
.ws12_c00284{word-spacing:5.760000pt;}
.ws14_c00284{word-spacing:6.656000pt;}
.ws13_c00284{word-spacing:6.720000pt;}
.ws11_c00284{word-spacing:7.040000pt;}
.wsf_c00284{word-spacing:7.296000pt;}
.ws28_c00284{word-spacing:7.616000pt;}
.ws29_c00284{word-spacing:7.680000pt;}
.ws34_c00284{word-spacing:8.256000pt;}
.ws33_c00284{word-spacing:8.320000pt;}
.ws3a_c00284{word-spacing:10.688000pt;}
.ws3e_c00284{word-spacing:10.794880pt;}
.ws3b_c00284{word-spacing:11.062080pt;}
.ws3d_c00284{word-spacing:11.222400pt;}
.ws17_c00284{word-spacing:11.456000pt;}
.ws18_c00284{word-spacing:11.520000pt;}
.ws2c_c00284{word-spacing:14.016000pt;}
.ws2d_c00284{word-spacing:14.080000pt;}
.ws27_c00284{word-spacing:15.296000pt;}
.ws26_c00284{word-spacing:15.360000pt;}
.ws21_c00284{word-spacing:15.936000pt;}
.ws24_c00284{word-spacing:16.896000pt;}
.ws25_c00284{word-spacing:16.960000pt;}
.ws31_c00284{word-spacing:17.216000pt;}
.ws32_c00284{word-spacing:17.280000pt;}
.ws2f_c00284{word-spacing:18.176000pt;}
.ws30_c00284{word-spacing:18.240000pt;}
.ws2b_c00284{word-spacing:23.680000pt;}
.ws2a_c00284{word-spacing:24.000000pt;}
.ws1b_c00284{word-spacing:24.640000pt;}
.ws16_c00284{word-spacing:27.136000pt;}
.ws15_c00284{word-spacing:27.200000pt;}
._5_c00284{margin-left:-3.520000pt;}
._1_c00284{margin-left:-0.940800pt;}
._0_c00284{width:1.084800pt;}
._4_c00284{width:2.108800pt;}
._6_c00284{width:3.395200pt;}
._2_c00284{width:6.675200pt;}
._3_c00284{width:7.936000pt;}
._9_c00284{width:11.062080pt;}
._8_c00284{width:17.088000pt;}
._7_c00284{width:18.304000pt;}
.fs5_c00284{font-size:34.560000pt;}
.fs3_c00284{font-size:37.440000pt;}
.fs4_c00284{font-size:42.560000pt;}
.fs2_c00284{font-size:45.440000pt;}
.fs0_c00284{font-size:48.000000pt;}
.fs6_c00284{font-size:53.440000pt;}
.fs1_c00284{font-size:64.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y28_c00284{bottom:50.880000pt;}
.y27_c00284{bottom:97.596160pt;}
.y26_c00284{bottom:117.520000pt;}
.y29_c00284{bottom:128.800000pt;}
.y25_c00284{bottom:174.800000pt;}
.y24_c00284{bottom:202.400000pt;}
.y23_c00284{bottom:230.000000pt;}
.y22_c00284{bottom:257.600000pt;}
.y21_c00284{bottom:285.200000pt;}
.y20_c00284{bottom:312.800000pt;}
.y1f_c00284{bottom:340.400000pt;}
.y1e_c00284{bottom:366.880000pt;}
.y1d_c00284{bottom:374.960000pt;}
.y1c_c00284{bottom:406.880000pt;}
.y1b_c00284{bottom:414.960000pt;}
.y1a_c00284{bottom:446.880000pt;}
.y19_c00284{bottom:454.960000pt;}
.y18_c00284{bottom:487.840000pt;}
.y17_c00284{bottom:515.440000pt;}
.y16_c00284{bottom:543.040000pt;}
.y15_c00284{bottom:570.640000pt;}
.y14_c00284{bottom:598.240000pt;}
.y13_c00284{bottom:625.840000pt;}
.y12_c00284{bottom:653.440000pt;}
.y11_c00284{bottom:681.040000pt;}
.y10_c00284{bottom:709.280000pt;}
.yf_c00284{bottom:738.080000pt;}
.ye_c00284{bottom:765.680000pt;}
.yd_c00284{bottom:793.280000pt;}
.yc_c00284{bottom:820.960000pt;}
.yb_c00284{bottom:848.960000pt;}
.ya_c00284{bottom:876.560000pt;}
.y9_c00284{bottom:904.160000pt;}
.y8_c00284{bottom:931.760000pt;}
.y7_c00284{bottom:959.360000pt;}
.y6_c00284{bottom:986.960000pt;}
.y5_c00284{bottom:1005.360000pt;}
.y4_c00284{bottom:1023.040000pt;}
.y3_c00284{bottom:1036.804000pt;}
.y2_c00284{bottom:1050.640000pt;}
.y1_c00284{bottom:1064.400000pt;}
.h9_c00284{height:33.918750pt;}
.h3_c00284{height:47.085938pt;}
.h2_c00284{height:47.109375pt;}
.ha_c00284{height:52.448437pt;}
.h4_c00284{height:62.812500pt;}
.h8_c00284{height:65.770313pt;}
.h5_c00284{height:127.593750pt;}
.h6_c00284{height:128.031562pt;}
.h7_c00284{height:159.913750pt;}
.h0_c00284{height:1122.560000pt;}
.h1_c00284{height:1122.666667pt;}
.w0_c00284{width:793.840000pt;}
.w1_c00284{width:794.000000pt;}
.x0_c00284{left:0.000000pt;}
.x3_c00284{left:113.440000pt;}
.x5_c00284{left:195.920000pt;}
.x2_c00284{left:377.920000pt;}
.x1_c00284{left:396.960000pt;}
.x4_c00284{left:530.800000pt;}
.x6_c00284{left:572.560000pt;}
.x7_c00284{left:656.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_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_0e455e22e734cdda50b50b69.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_4e707cd775921bd29622cfff.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00285;src:url('chunks/assets/font_1ad9f48099f33ae32736d7db.woff2')format("woff");}.ff5_c00285{font-family:ff5_c00285;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:ff6_c00285;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00285{font-family:ff6_c00285;line-height:1.142090;font-style: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);}
.v1_c00285{vertical-align:-61.938000px;}
.v2_c00285{vertical-align:-14.760000px;}
.v6_c00285{vertical-align:-10.440000px;}
.v0_c00285{vertical-align:0.000000px;}
.v3_c00285{vertical-align:14.760000px;}
.v4_c00285{vertical-align:27.000000px;}
.v7_c00285{vertical-align:36.360000px;}
.v5_c00285{vertical-align:42.120000px;}
.ls11_c00285{letter-spacing:-0.432000px;}
.ls12_c00285{letter-spacing:-0.216000px;}
.ls16_c00285{letter-spacing:-0.102240px;}
.ls10_c00285{letter-spacing:0.000000px;}
.ls3_c00285{letter-spacing:0.072000px;}
.ls15_c00285{letter-spacing:0.102240px;}
.ls7_c00285{letter-spacing:0.144000px;}
.ls14_c00285{letter-spacing:0.191520px;}
.ls13_c00285{letter-spacing:0.504000px;}
.lsa_c00285{letter-spacing:0.720000px;}
.lse_c00285{letter-spacing:0.734400px;}
.lsb_c00285{letter-spacing:1.922040px;}
.ls4_c00285{letter-spacing:4.320000px;}
.ls9_c00285{letter-spacing:5.760000px;}
.lsd_c00285{letter-spacing:6.494400px;}
.ls5_c00285{letter-spacing:12.960000px;}
.ls6_c00285{letter-spacing:13.320000px;}
.lsf_c00285{letter-spacing:18.000000px;}
.ls2_c00285{letter-spacing:20.016000px;}
.ls8_c00285{letter-spacing:22.601520px;}
.ls1_c00285{letter-spacing:22.961520px;}
.lsc_c00285{letter-spacing:26.280000px;}
.ls0_c00285{letter-spacing:319.518000px;}
.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:-72.000000px;}
.ws8_c00285{word-spacing:-51.222240px;}
.ws7_c00285{word-spacing:-51.120000px;}
.ws9_c00285{word-spacing:-51.017760px;}
.ws5_c00285{word-spacing:-39.528000px;}
.ws6_c00285{word-spacing:-18.072000px;}
.ws1_c00285{word-spacing:-18.000000px;}
.ws3_c00285{word-spacing:-17.784000px;}
.ws2_c00285{word-spacing:-17.568000px;}
.ws1e_c00285{word-spacing:-0.504000px;}
.ws24_c00285{word-spacing:-0.360000px;}
.ws27_c00285{word-spacing:-0.191520px;}
.wsb_c00285{word-spacing:-0.162000px;}
.wsd_c00285{word-spacing:-0.072000px;}
.wsa_c00285{word-spacing:0.000000px;}
.ws15_c00285{word-spacing:1.008000px;}
.ws14_c00285{word-spacing:1.080000px;}
.ws1f_c00285{word-spacing:3.168000px;}
.ws4_c00285{word-spacing:4.176000px;}
.ws10_c00285{word-spacing:4.248000px;}
.ws11_c00285{word-spacing:4.320000px;}
.wsc_c00285{word-spacing:4.608000px;}
.ws26_c00285{word-spacing:4.896000px;}
.ws1d_c00285{word-spacing:5.040000px;}
.ws23_c00285{word-spacing:5.688000px;}
.ws16_c00285{word-spacing:5.760000px;}
.ws19_c00285{word-spacing:6.120000px;}
.ws25_c00285{word-spacing:7.920000px;}
.ws28_c00285{word-spacing:8.208000px;}
.ws29_c00285{word-spacing:8.280000px;}
.ws1c_c00285{word-spacing:10.080000px;}
.ws17_c00285{word-spacing:12.888000px;}
.ws18_c00285{word-spacing:12.960000px;}
.ws1a_c00285{word-spacing:17.568000px;}
.ws1b_c00285{word-spacing:17.640000px;}
.ws30_c00285{word-spacing:17.928000px;}
.ws31_c00285{word-spacing:18.000000px;}
.ws2c_c00285{word-spacing:18.288000px;}
.ws2b_c00285{word-spacing:18.360000px;}
.ws2f_c00285{word-spacing:21.240000px;}
.ws2a_c00285{word-spacing:22.320000px;}
.ws2e_c00285{word-spacing:26.208000px;}
.ws2d_c00285{word-spacing:26.280000px;}
.wsf_c00285{word-spacing:27.288000px;}
.wse_c00285{word-spacing:27.360000px;}
.ws20_c00285{word-spacing:27.936000px;}
.ws22_c00285{word-spacing:28.008000px;}
.ws21_c00285{word-spacing:28.080000px;}
.ws13_c00285{word-spacing:57.528000px;}
.ws12_c00285{word-spacing:57.600000px;}
._1_c00285{margin-left:-6.602400px;}
._8_c00285{margin-left:-4.320000px;}
._0_c00285{margin-left:-1.015200px;}
._4_c00285{width:1.008000px;}
._9_c00285{width:2.592000px;}
._3_c00285{width:3.672000px;}
._2_c00285{width:4.752000px;}
._6_c00285{width:6.400800px;}
._7_c00285{width:10.144800px;}
._5_c00285{width:15.336000px;}
._b_c00285{width:22.104000px;}
._c_c00285{width:23.176800px;}
._a_c00285{width:27.871200px;}
.fc0_c00285{color:rgb(0,0,0);}
.fs4_c00285{font-size:42.120000px;}
.fs3_c00285{font-size:47.880000px;}
.fs2_c00285{font-size:51.120000px;}
.fs0_c00285{font-size:54.000000px;}
.fs1_c00285{font-size:72.000000px;}
.y0_c00285{bottom:0.000000px;}
.y27_c00285{bottom:57.240000px;}
.y26_c00285{bottom:115.560000px;}
.y25_c00285{bottom:124.650000px;}
.y24_c00285{bottom:161.730000px;}
.y23_c00285{bottom:191.610000px;}
.y22_c00285{bottom:200.700000px;}
.y21_c00285{bottom:237.780000px;}
.y20_c00285{bottom:268.830000px;}
.y1f_c00285{bottom:299.880000px;}
.y1e_c00285{bottom:330.930000px;}
.y1d_c00285{bottom:361.980000px;}
.y1c_c00285{bottom:393.030000px;}
.y1b_c00285{bottom:424.080000px;}
.y1a_c00285{bottom:455.130000px;}
.y19_c00285{bottom:486.180000px;}
.y18_c00285{bottom:517.230000px;}
.y17_c00285{bottom:548.280000px;}
.y16_c00285{bottom:579.960000px;}
.y15_c00285{bottom:612.360000px;}
.y14_c00285{bottom:643.410000px;}
.y13_c00285{bottom:674.460000px;}
.y12_c00285{bottom:705.690000px;}
.y11_c00285{bottom:737.190000px;}
.y10_c00285{bottom:768.240000px;}
.yf_c00285{bottom:799.290000px;}
.ye_c00285{bottom:830.340000px;}
.yd_c00285{bottom:861.390000px;}
.yc_c00285{bottom:892.440000px;}
.yb_c00285{bottom:923.490000px;}
.ya_c00285{bottom:954.540000px;}
.y9_c00285{bottom:985.590000px;}
.y8_c00285{bottom:1016.640000px;}
.y7_c00285{bottom:1047.690000px;}
.y6_c00285{bottom:1078.740000px;}
.y5_c00285{bottom:1109.880000px;}
.y4_c00285{bottom:1131.030000px;}
.y3_c00285{bottom:1150.915500px;}
.y2_c00285{bottom:1166.400000px;}
.y1_c00285{bottom:1197.450000px;}
.h5_c00285{height:50.027344px;}
.h2_c00285{height:52.998047px;}
.h3_c00285{height:70.664062px;}
.h6_c00285{height:73.991602px;}
.h4_c00285{height:143.542969px;}
.h7_c00285{height:144.035508px;}
.h9_c00285{height:179.902969px;}
.h8_c00285{height:180.395508px;}
.h0_c00285{height:1262.880000px;}
.h1_c00285{height:1263.000000px;}
.w0_c00285{width:893.070000px;}
.w1_c00285{width:893.250000px;}
.x0_c00285{left:0.000000px;}
.x2_c00285{left:127.620000px;}
.x3_c00285{left:303.570000px;}
.x5_c00285{left:423.450000px;}
.x1_c00285{left:446.580000px;}
.x4_c00285{left:589.950000px;}
@media print{
.v1_c00285{vertical-align:-55.056000pt;}
.v2_c00285{vertical-align:-13.120000pt;}
.v6_c00285{vertical-align:-9.280000pt;}
.v0_c00285{vertical-align:0.000000pt;}
.v3_c00285{vertical-align:13.120000pt;}
.v4_c00285{vertical-align:24.000000pt;}
.v7_c00285{vertical-align:32.320000pt;}
.v5_c00285{vertical-align:37.440000pt;}
.ls11_c00285{letter-spacing:-0.384000pt;}
.ls12_c00285{letter-spacing:-0.192000pt;}
.ls16_c00285{letter-spacing:-0.090880pt;}
.ls10_c00285{letter-spacing:0.000000pt;}
.ls3_c00285{letter-spacing:0.064000pt;}
.ls15_c00285{letter-spacing:0.090880pt;}
.ls7_c00285{letter-spacing:0.128000pt;}
.ls14_c00285{letter-spacing:0.170240pt;}
.ls13_c00285{letter-spacing:0.448000pt;}
.lsa_c00285{letter-spacing:0.640000pt;}
.lse_c00285{letter-spacing:0.652800pt;}
.lsb_c00285{letter-spacing:1.708480pt;}
.ls4_c00285{letter-spacing:3.840000pt;}
.ls9_c00285{letter-spacing:5.120000pt;}
.lsd_c00285{letter-spacing:5.772800pt;}
.ls5_c00285{letter-spacing:11.520000pt;}
.ls6_c00285{letter-spacing:11.840000pt;}
.lsf_c00285{letter-spacing:16.000000pt;}
.ls2_c00285{letter-spacing:17.792000pt;}
.ls8_c00285{letter-spacing:20.090240pt;}
.ls1_c00285{letter-spacing:20.410240pt;}
.lsc_c00285{letter-spacing:23.360000pt;}
.ls0_c00285{letter-spacing:284.016000pt;}
.ws0_c00285{word-spacing:-64.000000pt;}
.ws8_c00285{word-spacing:-45.530880pt;}
.ws7_c00285{word-spacing:-45.440000pt;}
.ws9_c00285{word-spacing:-45.349120pt;}
.ws5_c00285{word-spacing:-35.136000pt;}
.ws6_c00285{word-spacing:-16.064000pt;}
.ws1_c00285{word-spacing:-16.000000pt;}
.ws3_c00285{word-spacing:-15.808000pt;}
.ws2_c00285{word-spacing:-15.616000pt;}
.ws1e_c00285{word-spacing:-0.448000pt;}
.ws24_c00285{word-spacing:-0.320000pt;}
.ws27_c00285{word-spacing:-0.170240pt;}
.wsb_c00285{word-spacing:-0.144000pt;}
.wsd_c00285{word-spacing:-0.064000pt;}
.wsa_c00285{word-spacing:0.000000pt;}
.ws15_c00285{word-spacing:0.896000pt;}
.ws14_c00285{word-spacing:0.960000pt;}
.ws1f_c00285{word-spacing:2.816000pt;}
.ws4_c00285{word-spacing:3.712000pt;}
.ws10_c00285{word-spacing:3.776000pt;}
.ws11_c00285{word-spacing:3.840000pt;}
.wsc_c00285{word-spacing:4.096000pt;}
.ws26_c00285{word-spacing:4.352000pt;}
.ws1d_c00285{word-spacing:4.480000pt;}
.ws23_c00285{word-spacing:5.056000pt;}
.ws16_c00285{word-spacing:5.120000pt;}
.ws19_c00285{word-spacing:5.440000pt;}
.ws25_c00285{word-spacing:7.040000pt;}
.ws28_c00285{word-spacing:7.296000pt;}
.ws29_c00285{word-spacing:7.360000pt;}
.ws1c_c00285{word-spacing:8.960000pt;}
.ws17_c00285{word-spacing:11.456000pt;}
.ws18_c00285{word-spacing:11.520000pt;}
.ws1a_c00285{word-spacing:15.616000pt;}
.ws1b_c00285{word-spacing:15.680000pt;}
.ws30_c00285{word-spacing:15.936000pt;}
.ws31_c00285{word-spacing:16.000000pt;}
.ws2c_c00285{word-spacing:16.256000pt;}
.ws2b_c00285{word-spacing:16.320000pt;}
.ws2f_c00285{word-spacing:18.880000pt;}
.ws2a_c00285{word-spacing:19.840000pt;}
.ws2e_c00285{word-spacing:23.296000pt;}
.ws2d_c00285{word-spacing:23.360000pt;}
.wsf_c00285{word-spacing:24.256000pt;}
.wse_c00285{word-spacing:24.320000pt;}
.ws20_c00285{word-spacing:24.832000pt;}
.ws22_c00285{word-spacing:24.896000pt;}
.ws21_c00285{word-spacing:24.960000pt;}
.ws13_c00285{word-spacing:51.136000pt;}
.ws12_c00285{word-spacing:51.200000pt;}
._1_c00285{margin-left:-5.868800pt;}
._8_c00285{margin-left:-3.840000pt;}
._0_c00285{margin-left:-0.902400pt;}
._4_c00285{width:0.896000pt;}
._9_c00285{width:2.304000pt;}
._3_c00285{width:3.264000pt;}
._2_c00285{width:4.224000pt;}
._6_c00285{width:5.689600pt;}
._7_c00285{width:9.017600pt;}
._5_c00285{width:13.632000pt;}
._b_c00285{width:19.648000pt;}
._c_c00285{width:20.601600pt;}
._a_c00285{width:24.774400pt;}
.fs4_c00285{font-size:37.440000pt;}
.fs3_c00285{font-size:42.560000pt;}
.fs2_c00285{font-size:45.440000pt;}
.fs0_c00285{font-size:48.000000pt;}
.fs1_c00285{font-size:64.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y27_c00285{bottom:50.880000pt;}
.y26_c00285{bottom:102.720000pt;}
.y25_c00285{bottom:110.800000pt;}
.y24_c00285{bottom:143.760000pt;}
.y23_c00285{bottom:170.320000pt;}
.y22_c00285{bottom:178.400000pt;}
.y21_c00285{bottom:211.360000pt;}
.y20_c00285{bottom:238.960000pt;}
.y1f_c00285{bottom:266.560000pt;}
.y1e_c00285{bottom:294.160000pt;}
.y1d_c00285{bottom:321.760000pt;}
.y1c_c00285{bottom:349.360000pt;}
.y1b_c00285{bottom:376.960000pt;}
.y1a_c00285{bottom:404.560000pt;}
.y19_c00285{bottom:432.160000pt;}
.y18_c00285{bottom:459.760000pt;}
.y17_c00285{bottom:487.360000pt;}
.y16_c00285{bottom:515.520000pt;}
.y15_c00285{bottom:544.320000pt;}
.y14_c00285{bottom:571.920000pt;}
.y13_c00285{bottom:599.520000pt;}
.y12_c00285{bottom:627.280000pt;}
.y11_c00285{bottom:655.280000pt;}
.y10_c00285{bottom:682.880000pt;}
.yf_c00285{bottom:710.480000pt;}
.ye_c00285{bottom:738.080000pt;}
.yd_c00285{bottom:765.680000pt;}
.yc_c00285{bottom:793.280000pt;}
.yb_c00285{bottom:820.880000pt;}
.ya_c00285{bottom:848.480000pt;}
.y9_c00285{bottom:876.080000pt;}
.y8_c00285{bottom:903.680000pt;}
.y7_c00285{bottom:931.280000pt;}
.y6_c00285{bottom:958.880000pt;}
.y5_c00285{bottom:986.560000pt;}
.y4_c00285{bottom:1005.360000pt;}
.y3_c00285{bottom:1023.036000pt;}
.y2_c00285{bottom:1036.800000pt;}
.y1_c00285{bottom:1064.400000pt;}
.h5_c00285{height:44.468750pt;}
.h2_c00285{height:47.109375pt;}
.h3_c00285{height:62.812500pt;}
.h6_c00285{height:65.770313pt;}
.h4_c00285{height:127.593750pt;}
.h7_c00285{height:128.031563pt;}
.h9_c00285{height:159.913750pt;}
.h8_c00285{height:160.351562pt;}
.h0_c00285{height:1122.560000pt;}
.h1_c00285{height:1122.666667pt;}
.w0_c00285{width:793.840000pt;}
.w1_c00285{width:794.000000pt;}
.x0_c00285{left:0.000000pt;}
.x2_c00285{left:113.440000pt;}
.x3_c00285{left:269.840000pt;}
.x5_c00285{left:376.400000pt;}
.x1_c00285{left:396.960000pt;}
.x4_c00285{left:524.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_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_1ea146cc5908d5f3ec90eedc.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.284180;font-style:normal;font-weight:normal;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_c79ecb8c32835ebaa8002657.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;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_c00286;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00286;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00286{font-family:ff6_c00286;line-height:1.142090;font-style: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);}
.v4_c00286{vertical-align:-20.880000px;}
.v2_c00286{vertical-align:-14.760000px;}
.v0_c00286{vertical-align:0.000000px;}
.v3_c00286{vertical-align:14.759400px;}
.v1_c00286{vertical-align:27.000000px;}
.ls13_c00286{letter-spacing:-0.288000px;}
.ls11_c00286{letter-spacing:-0.216000px;}
.ls14_c00286{letter-spacing:-0.144000px;}
.lse_c00286{letter-spacing:-0.108000px;}
.lsf_c00286{letter-spacing:-0.072000px;}
.ls15_c00286{letter-spacing:-0.060120px;}
.lsd_c00286{letter-spacing:0.000000px;}
.ls3_c00286{letter-spacing:0.072000px;}
.lsa_c00286{letter-spacing:0.144000px;}
.ls0_c00286{letter-spacing:0.180000px;}
.ls16_c00286{letter-spacing:0.180360px;}
.ls4_c00286{letter-spacing:0.191520px;}
.ls12_c00286{letter-spacing:0.432000px;}
.ls10_c00286{letter-spacing:0.504000px;}
.ls9_c00286{letter-spacing:0.720000px;}
.ls5_c00286{letter-spacing:3.240000px;}
.lsc_c00286{letter-spacing:3.667320px;}
.ls2_c00286{letter-spacing:9.360000px;}
.ls1_c00286{letter-spacing:13.680000px;}
.lsb_c00286{letter-spacing:19.080000px;}
.ls8_c00286{letter-spacing:20.016000px;}
.ls6_c00286{letter-spacing:22.601520px;}
.ls7_c00286{letter-spacing:22.961520px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00286{word-spacing:-72.000000px;}
.ws6_c00286{word-spacing:-18.072000px;}
.ws0_c00286{word-spacing:-18.000000px;}
.ws1_c00286{word-spacing:-17.928000px;}
.ws5_c00286{word-spacing:-17.784000px;}
.ws7_c00286{word-spacing:-17.712000px;}
.ws9_c00286{word-spacing:-15.030000px;}
.ws2_c00286{word-spacing:-12.161520px;}
.ws8_c00286{word-spacing:-9.720000px;}
.ws1a_c00286{word-spacing:-0.504000px;}
.ws25_c00286{word-spacing:-0.432000px;}
.ws32_c00286{word-spacing:-0.420840px;}
.ws26_c00286{word-spacing:-0.144000px;}
.wsf_c00286{word-spacing:-0.072000px;}
.ws31_c00286{word-spacing:-0.060120px;}
.wsa_c00286{word-spacing:0.000000px;}
.ws2f_c00286{word-spacing:0.144000px;}
.wsc_c00286{word-spacing:0.162000px;}
.ws33_c00286{word-spacing:0.180360px;}
.wsb_c00286{word-spacing:0.270000px;}
.ws23_c00286{word-spacing:0.576000px;}
.ws21_c00286{word-spacing:0.648000px;}
.ws22_c00286{word-spacing:0.720000px;}
.ws1e_c00286{word-spacing:1.080000px;}
.ws11_c00286{word-spacing:1.656000px;}
.ws10_c00286{word-spacing:1.728000px;}
.ws1f_c00286{word-spacing:1.800000px;}
.ws12_c00286{word-spacing:2.160000px;}
.ws18_c00286{word-spacing:3.168000px;}
.ws17_c00286{word-spacing:3.240000px;}
.ws29_c00286{word-spacing:3.456000px;}
.ws16_c00286{word-spacing:3.528000px;}
.ws15_c00286{word-spacing:3.600000px;}
.ws30_c00286{word-spacing:3.727440px;}
.ws4_c00286{word-spacing:4.176000px;}
.ws19_c00286{word-spacing:6.048000px;}
.ws28_c00286{word-spacing:8.208000px;}
.ws13_c00286{word-spacing:8.928000px;}
.ws24_c00286{word-spacing:9.000000px;}
.ws1b_c00286{word-spacing:9.288000px;}
.ws14_c00286{word-spacing:9.360000px;}
.ws27_c00286{word-spacing:10.080000px;}
.wsd_c00286{word-spacing:13.608000px;}
.wse_c00286{word-spacing:13.680000px;}
.ws2e_c00286{word-spacing:18.936000px;}
.ws2d_c00286{word-spacing:19.080000px;}
.ws2a_c00286{word-spacing:21.528000px;}
.ws2b_c00286{word-spacing:21.600000px;}
.ws20_c00286{word-spacing:24.480000px;}
.ws2c_c00286{word-spacing:27.000000px;}
.ws1d_c00286{word-spacing:56.088000px;}
.ws1c_c00286{word-spacing:56.520000px;}
._8_c00286{margin-left:-6.112800px;}
._7_c00286{margin-left:-4.557600px;}
._1_c00286{margin-left:-1.058400px;}
._0_c00286{width:1.220400px;}
._5_c00286{width:2.426400px;}
._4_c00286{width:3.747600px;}
._3_c00286{width:9.360000px;}
._a_c00286{width:10.576800px;}
._2_c00286{width:13.183200px;}
._c_c00286{width:19.353600px;}
._6_c00286{width:20.592000px;}
._9_c00286{width:24.408000px;}
._b_c00286{width:26.496000px;}
.fc0_c00286{color:rgb(0,0,0);}
.fs4_c00286{font-size:38.880000px;}
.fs2_c00286{font-size:47.880000px;}
.fs3_c00286{font-size:51.120000px;}
.fs0_c00286{font-size:54.000000px;}
.fs5_c00286{font-size:60.120000px;}
.fs1_c00286{font-size:72.000000px;}
.y0_c00286{bottom:0.000000px;}
.y27_c00286{bottom:57.240000px;}
.y26_c00286{bottom:109.795680px;}
.y25_c00286{bottom:132.210000px;}
.y28_c00286{bottom:144.900000px;}
.y24_c00286{bottom:175.680000px;}
.y23_c00286{bottom:206.730000px;}
.y22_c00286{bottom:237.780000px;}
.y21_c00286{bottom:268.830000px;}
.y20_c00286{bottom:299.880000px;}
.y1f_c00286{bottom:331.650000px;}
.y1e_c00286{bottom:363.960000px;}
.y1d_c00286{bottom:395.010000px;}
.y1c_c00286{bottom:426.060000px;}
.y1b_c00286{bottom:457.289850px;}
.y1a_c00286{bottom:488.789850px;}
.y19_c00286{bottom:519.839850px;}
.y18_c00286{bottom:550.889850px;}
.y17_c00286{bottom:581.939850px;}
.y16_c00286{bottom:612.989850px;}
.y15_c00286{bottom:644.039850px;}
.y14_c00286{bottom:675.089850px;}
.y13_c00286{bottom:706.139850px;}
.y12_c00286{bottom:737.189850px;}
.y11_c00286{bottom:768.239850px;}
.y10_c00286{bottom:799.289850px;}
.yf_c00286{bottom:830.339850px;}
.ye_c00286{bottom:861.480000px;}
.yd_c00286{bottom:892.980000px;}
.yc_c00286{bottom:924.030000px;}
.yb_c00286{bottom:955.080000px;}
.ya_c00286{bottom:986.130000px;}
.y9_c00286{bottom:1017.180000px;}
.y8_c00286{bottom:1048.230000px;}
.y7_c00286{bottom:1079.280000px;}
.y6_c00286{bottom:1110.330000px;}
.y5_c00286{bottom:1131.030000px;}
.y4_c00286{bottom:1150.920000px;}
.y3_c00286{bottom:1166.404500px;}
.y2_c00286{bottom:1181.970000px;}
.y1_c00286{bottom:1197.450000px;}
.h9_c00286{height:38.158594px;}
.h7_c00286{height:50.027344px;}
.h3_c00286{height:52.971680px;}
.h2_c00286{height:52.998047px;}
.ha_c00286{height:59.004492px;}
.h4_c00286{height:70.664062px;}
.h5_c00286{height:73.991602px;}
.h6_c00286{height:143.542969px;}
.h8_c00286{height:143.543569px;}
.h0_c00286{height:1262.880000px;}
.h1_c00286{height:1263.000000px;}
.w0_c00286{width:893.070000px;}
.w1_c00286{width:893.250000px;}
.x0_c00286{left:0.000000px;}
.x3_c00286{left:127.620000px;}
.x2_c00286{left:425.160000px;}
.x1_c00286{left:446.580000px;}
.x4_c00286{left:738.540000px;}
@media print{
.v4_c00286{vertical-align:-18.560000pt;}
.v2_c00286{vertical-align:-13.120000pt;}
.v0_c00286{vertical-align:0.000000pt;}
.v3_c00286{vertical-align:13.119467pt;}
.v1_c00286{vertical-align:24.000000pt;}
.ls13_c00286{letter-spacing:-0.256000pt;}
.ls11_c00286{letter-spacing:-0.192000pt;}
.ls14_c00286{letter-spacing:-0.128000pt;}
.lse_c00286{letter-spacing:-0.096000pt;}
.lsf_c00286{letter-spacing:-0.064000pt;}
.ls15_c00286{letter-spacing:-0.053440pt;}
.lsd_c00286{letter-spacing:0.000000pt;}
.ls3_c00286{letter-spacing:0.064000pt;}
.lsa_c00286{letter-spacing:0.128000pt;}
.ls0_c00286{letter-spacing:0.160000pt;}
.ls16_c00286{letter-spacing:0.160320pt;}
.ls4_c00286{letter-spacing:0.170240pt;}
.ls12_c00286{letter-spacing:0.384000pt;}
.ls10_c00286{letter-spacing:0.448000pt;}
.ls9_c00286{letter-spacing:0.640000pt;}
.ls5_c00286{letter-spacing:2.880000pt;}
.lsc_c00286{letter-spacing:3.259840pt;}
.ls2_c00286{letter-spacing:8.320000pt;}
.ls1_c00286{letter-spacing:12.160000pt;}
.lsb_c00286{letter-spacing:16.960000pt;}
.ls8_c00286{letter-spacing:17.792000pt;}
.ls6_c00286{letter-spacing:20.090240pt;}
.ls7_c00286{letter-spacing:20.410240pt;}
.ws3_c00286{word-spacing:-64.000000pt;}
.ws6_c00286{word-spacing:-16.064000pt;}
.ws0_c00286{word-spacing:-16.000000pt;}
.ws1_c00286{word-spacing:-15.936000pt;}
.ws5_c00286{word-spacing:-15.808000pt;}
.ws7_c00286{word-spacing:-15.744000pt;}
.ws9_c00286{word-spacing:-13.360000pt;}
.ws2_c00286{word-spacing:-10.810240pt;}
.ws8_c00286{word-spacing:-8.640000pt;}
.ws1a_c00286{word-spacing:-0.448000pt;}
.ws25_c00286{word-spacing:-0.384000pt;}
.ws32_c00286{word-spacing:-0.374080pt;}
.ws26_c00286{word-spacing:-0.128000pt;}
.wsf_c00286{word-spacing:-0.064000pt;}
.ws31_c00286{word-spacing:-0.053440pt;}
.wsa_c00286{word-spacing:0.000000pt;}
.ws2f_c00286{word-spacing:0.128000pt;}
.wsc_c00286{word-spacing:0.144000pt;}
.ws33_c00286{word-spacing:0.160320pt;}
.wsb_c00286{word-spacing:0.240000pt;}
.ws23_c00286{word-spacing:0.512000pt;}
.ws21_c00286{word-spacing:0.576000pt;}
.ws22_c00286{word-spacing:0.640000pt;}
.ws1e_c00286{word-spacing:0.960000pt;}
.ws11_c00286{word-spacing:1.472000pt;}
.ws10_c00286{word-spacing:1.536000pt;}
.ws1f_c00286{word-spacing:1.600000pt;}
.ws12_c00286{word-spacing:1.920000pt;}
.ws18_c00286{word-spacing:2.816000pt;}
.ws17_c00286{word-spacing:2.880000pt;}
.ws29_c00286{word-spacing:3.072000pt;}
.ws16_c00286{word-spacing:3.136000pt;}
.ws15_c00286{word-spacing:3.200000pt;}
.ws30_c00286{word-spacing:3.313280pt;}
.ws4_c00286{word-spacing:3.712000pt;}
.ws19_c00286{word-spacing:5.376000pt;}
.ws28_c00286{word-spacing:7.296000pt;}
.ws13_c00286{word-spacing:7.936000pt;}
.ws24_c00286{word-spacing:8.000000pt;}
.ws1b_c00286{word-spacing:8.256000pt;}
.ws14_c00286{word-spacing:8.320000pt;}
.ws27_c00286{word-spacing:8.960000pt;}
.wsd_c00286{word-spacing:12.096000pt;}
.wse_c00286{word-spacing:12.160000pt;}
.ws2e_c00286{word-spacing:16.832000pt;}
.ws2d_c00286{word-spacing:16.960000pt;}
.ws2a_c00286{word-spacing:19.136000pt;}
.ws2b_c00286{word-spacing:19.200000pt;}
.ws20_c00286{word-spacing:21.760000pt;}
.ws2c_c00286{word-spacing:24.000000pt;}
.ws1d_c00286{word-spacing:49.856000pt;}
.ws1c_c00286{word-spacing:50.240000pt;}
._8_c00286{margin-left:-5.433600pt;}
._7_c00286{margin-left:-4.051200pt;}
._1_c00286{margin-left:-0.940800pt;}
._0_c00286{width:1.084800pt;}
._5_c00286{width:2.156800pt;}
._4_c00286{width:3.331200pt;}
._3_c00286{width:8.320000pt;}
._a_c00286{width:9.401600pt;}
._2_c00286{width:11.718400pt;}
._c_c00286{width:17.203200pt;}
._6_c00286{width:18.304000pt;}
._9_c00286{width:21.696000pt;}
._b_c00286{width:23.552000pt;}
.fs4_c00286{font-size:34.560000pt;}
.fs2_c00286{font-size:42.560000pt;}
.fs3_c00286{font-size:45.440000pt;}
.fs0_c00286{font-size:48.000000pt;}
.fs5_c00286{font-size:53.440000pt;}
.fs1_c00286{font-size:64.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y27_c00286{bottom:50.880000pt;}
.y26_c00286{bottom:97.596160pt;}
.y25_c00286{bottom:117.520000pt;}
.y28_c00286{bottom:128.800000pt;}
.y24_c00286{bottom:156.160000pt;}
.y23_c00286{bottom:183.760000pt;}
.y22_c00286{bottom:211.360000pt;}
.y21_c00286{bottom:238.960000pt;}
.y20_c00286{bottom:266.560000pt;}
.y1f_c00286{bottom:294.800000pt;}
.y1e_c00286{bottom:323.520000pt;}
.y1d_c00286{bottom:351.120000pt;}
.y1c_c00286{bottom:378.720000pt;}
.y1b_c00286{bottom:406.479867pt;}
.y1a_c00286{bottom:434.479867pt;}
.y19_c00286{bottom:462.079867pt;}
.y18_c00286{bottom:489.679867pt;}
.y17_c00286{bottom:517.279867pt;}
.y16_c00286{bottom:544.879867pt;}
.y15_c00286{bottom:572.479867pt;}
.y14_c00286{bottom:600.079867pt;}
.y13_c00286{bottom:627.679867pt;}
.y12_c00286{bottom:655.279867pt;}
.y11_c00286{bottom:682.879867pt;}
.y10_c00286{bottom:710.479867pt;}
.yf_c00286{bottom:738.079867pt;}
.ye_c00286{bottom:765.760000pt;}
.yd_c00286{bottom:793.760000pt;}
.yc_c00286{bottom:821.360000pt;}
.yb_c00286{bottom:848.960000pt;}
.ya_c00286{bottom:876.560000pt;}
.y9_c00286{bottom:904.160000pt;}
.y8_c00286{bottom:931.760000pt;}
.y7_c00286{bottom:959.360000pt;}
.y6_c00286{bottom:986.960000pt;}
.y5_c00286{bottom:1005.360000pt;}
.y4_c00286{bottom:1023.040000pt;}
.y3_c00286{bottom:1036.804000pt;}
.y2_c00286{bottom:1050.640000pt;}
.y1_c00286{bottom:1064.400000pt;}
.h9_c00286{height:33.918750pt;}
.h7_c00286{height:44.468750pt;}
.h3_c00286{height:47.085938pt;}
.h2_c00286{height:47.109375pt;}
.ha_c00286{height:52.448437pt;}
.h4_c00286{height:62.812500pt;}
.h5_c00286{height:65.770312pt;}
.h6_c00286{height:127.593750pt;}
.h8_c00286{height:127.594283pt;}
.h0_c00286{height:1122.560000pt;}
.h1_c00286{height:1122.666667pt;}
.w0_c00286{width:793.840000pt;}
.w1_c00286{width:794.000000pt;}
.x0_c00286{left:0.000000pt;}
.x3_c00286{left:113.440000pt;}
.x2_c00286{left:377.920000pt;}
.x1_c00286{left:396.960000pt;}
.x4_c00286{left:656.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_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_0e2f0169bc6ae40670233e5a.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_b55dfe174d7ba74de4550821.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;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_c00287;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00287;src:url('chunks/assets/font_f64c04f1f95b17ff010a939c.woff2')format("woff");}.ff5_c00287{font-family:ff5_c00287;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00287;src:url('chunks/assets/font_cdf262dec58ae7ed519d04f2.woff2')format("woff");}.ff6_c00287{font-family:ff6_c00287;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:ff7_c00287;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7_c00287{font-family:ff7_c00287;line-height:1.432129;font-style: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);}
.v1_c00287{vertical-align:-61.938000px;}
.v3_c00287{vertical-align:-14.760000px;}
.v0_c00287{vertical-align:0.000000px;}
.v4_c00287{vertical-align:14.760000px;}
.v2_c00287{vertical-align:27.000000px;}
.ls11_c00287{letter-spacing:-0.288000px;}
.ls10_c00287{letter-spacing:-0.216000px;}
.ls13_c00287{letter-spacing:-0.072000px;}
.lse_c00287{letter-spacing:0.000000px;}
.ls5_c00287{letter-spacing:0.072000px;}
.ls1_c00287{letter-spacing:0.144000px;}
.lsb_c00287{letter-spacing:0.180000px;}
.lsf_c00287{letter-spacing:0.191520px;}
.ls12_c00287{letter-spacing:0.526680px;}
.ls2_c00287{letter-spacing:2.160000px;}
.lsc_c00287{letter-spacing:6.120000px;}
.ls8_c00287{letter-spacing:12.960000px;}
.ls9_c00287{letter-spacing:13.320000px;}
.lsd_c00287{letter-spacing:19.440000px;}
.ls4_c00287{letter-spacing:22.601520px;}
.ls7_c00287{letter-spacing:22.961520px;}
.lsa_c00287{letter-spacing:25.920000px;}
.ls6_c00287{letter-spacing:30.744000px;}
.ls3_c00287{letter-spacing:43.920000px;}
.ls0_c00287{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00287{word-spacing:-72.000000px;}
.ws5_c00287{word-spacing:-18.144000px;}
.ws1_c00287{word-spacing:-18.072000px;}
.ws0_c00287{word-spacing:-18.000000px;}
.ws6_c00287{word-spacing:-17.928000px;}
.ws4_c00287{word-spacing:-17.784000px;}
.ws2f_c00287{word-spacing:-0.526680px;}
.ws30_c00287{word-spacing:-0.432000px;}
.wsa_c00287{word-spacing:-0.191520px;}
.ws8_c00287{word-spacing:-0.162000px;}
.wsc_c00287{word-spacing:-0.072000px;}
.ws7_c00287{word-spacing:0.000000px;}
.ws2d_c00287{word-spacing:0.648000px;}
.ws25_c00287{word-spacing:1.008000px;}
.ws1e_c00287{word-spacing:1.080000px;}
.ws31_c00287{word-spacing:1.440000px;}
.wsb_c00287{word-spacing:1.728000px;}
.ws9_c00287{word-spacing:2.160000px;}
.ws20_c00287{word-spacing:2.448000px;}
.ws1f_c00287{word-spacing:2.880000px;}
.ws3_c00287{word-spacing:4.176000px;}
.ws15_c00287{word-spacing:4.248000px;}
.ws16_c00287{word-spacing:4.320000px;}
.ws29_c00287{word-spacing:5.400000px;}
.ws34_c00287{word-spacing:5.688000px;}
.ws28_c00287{word-spacing:5.976000px;}
.ws33_c00287{word-spacing:6.048000px;}
.ws27_c00287{word-spacing:6.120000px;}
.ws24_c00287{word-spacing:8.208000px;}
.ws1b_c00287{word-spacing:8.280000px;}
.ws13_c00287{word-spacing:9.216000px;}
.ws12_c00287{word-spacing:9.288000px;}
.ws14_c00287{word-spacing:9.360000px;}
.ws18_c00287{word-spacing:9.648000px;}
.ws26_c00287{word-spacing:10.080000px;}
.ws1d_c00287{word-spacing:11.808000px;}
.ws1c_c00287{word-spacing:11.880000px;}
.ws1a_c00287{word-spacing:12.888000px;}
.ws19_c00287{word-spacing:12.960000px;}
.ws2e_c00287{word-spacing:13.320000px;}
.ws36_c00287{word-spacing:13.680000px;}
.ws11_c00287{word-spacing:15.120000px;}
.ws10_c00287{word-spacing:15.480000px;}
.ws2a_c00287{word-spacing:15.696000px;}
.ws2b_c00287{word-spacing:15.840000px;}
.ws35_c00287{word-spacing:19.440000px;}
.wsd_c00287{word-spacing:20.808000px;}
.ws21_c00287{word-spacing:25.776000px;}
.ws22_c00287{word-spacing:25.920000px;}
.ws23_c00287{word-spacing:26.208000px;}
.ws17_c00287{word-spacing:26.640000px;}
.ws2c_c00287{word-spacing:37.440000px;}
.wse_c00287{word-spacing:43.488000px;}
.wsf_c00287{word-spacing:43.920000px;}
.ws32_c00287{word-spacing:58.320000px;}
._5_c00287{margin-left:-4.896000px;}
._9_c00287{margin-left:-3.816000px;}
._2_c00287{margin-left:-1.152000px;}
._3_c00287{width:1.008000px;}
._1_c00287{width:2.850480px;}
._6_c00287{width:8.136000px;}
._0_c00287{width:9.792000px;}
._8_c00287{width:10.944000px;}
._7_c00287{width:12.600000px;}
._c_c00287{width:14.104800px;}
._e_c00287{width:19.512000px;}
._4_c00287{width:21.096000px;}
._a_c00287{width:25.704000px;}
._b_c00287{width:37.440000px;}
._d_c00287{width:58.752000px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs2_c00287{font-size:47.880000px;}
.fs3_c00287{font-size:51.120000px;}
.fs0_c00287{font-size:54.000000px;}
.fs1_c00287{font-size:72.000000px;}
.y0_c00287{bottom:0.000000px;}
.y26_c00287{bottom:57.240000px;}
.y25_c00287{bottom:114.390000px;}
.y24_c00287{bottom:145.440000px;}
.y23_c00287{bottom:176.490000px;}
.y22_c00287{bottom:207.720000px;}
.y21_c00287{bottom:239.220000px;}
.y20_c00287{bottom:270.270000px;}
.y1f_c00287{bottom:301.320000px;}
.y1e_c00287{bottom:332.370000px;}
.y1d_c00287{bottom:363.420000px;}
.y1c_c00287{bottom:394.470000px;}
.y1b_c00287{bottom:425.520000px;}
.y1a_c00287{bottom:456.570000px;}
.y19_c00287{bottom:487.620000px;}
.y18_c00287{bottom:518.670000px;}
.y17_c00287{bottom:549.720000px;}
.y16_c00287{bottom:580.770000px;}
.y15_c00287{bottom:611.730000px;}
.y14_c00287{bottom:642.780000px;}
.y13_c00287{bottom:674.010000px;}
.y12_c00287{bottom:705.510000px;}
.y11_c00287{bottom:736.560000px;}
.y10_c00287{bottom:767.610000px;}
.yf_c00287{bottom:798.660000px;}
.ye_c00287{bottom:829.890000px;}
.yd_c00287{bottom:861.390000px;}
.yc_c00287{bottom:892.440000px;}
.yb_c00287{bottom:923.580000px;}
.ya_c00287{bottom:955.080000px;}
.y9_c00287{bottom:986.130000px;}
.y8_c00287{bottom:1017.180000px;}
.y7_c00287{bottom:1048.230000px;}
.y6_c00287{bottom:1079.280000px;}
.y5_c00287{bottom:1110.330000px;}
.y4_c00287{bottom:1131.030000px;}
.y3_c00287{bottom:1150.915500px;}
.y2_c00287{bottom:1166.400000px;}
.y1_c00287{bottom:1197.450000px;}
.h4_c00287{height:50.027344px;}
.h2_c00287{height:52.998047px;}
.h3_c00287{height:70.664062px;}
.h5_c00287{height:73.991602px;}
.h7_c00287{height:75.093750px;}
.h6_c00287{height:143.542969px;}
.h0_c00287{height:1262.880000px;}
.h1_c00287{height:1263.000000px;}
.w0_c00287{width:893.070000px;}
.w1_c00287{width:893.250000px;}
.x0_c00287{left:0.000000px;}
.x2_c00287{left:127.620000px;}
.x3_c00287{left:154.620000px;}
.x1_c00287{left:446.580000px;}
@media print{
.v1_c00287{vertical-align:-55.056000pt;}
.v3_c00287{vertical-align:-13.120000pt;}
.v0_c00287{vertical-align:0.000000pt;}
.v4_c00287{vertical-align:13.120000pt;}
.v2_c00287{vertical-align:24.000000pt;}
.ls11_c00287{letter-spacing:-0.256000pt;}
.ls10_c00287{letter-spacing:-0.192000pt;}
.ls13_c00287{letter-spacing:-0.064000pt;}
.lse_c00287{letter-spacing:0.000000pt;}
.ls5_c00287{letter-spacing:0.064000pt;}
.ls1_c00287{letter-spacing:0.128000pt;}
.lsb_c00287{letter-spacing:0.160000pt;}
.lsf_c00287{letter-spacing:0.170240pt;}
.ls12_c00287{letter-spacing:0.468160pt;}
.ls2_c00287{letter-spacing:1.920000pt;}
.lsc_c00287{letter-spacing:5.440000pt;}
.ls8_c00287{letter-spacing:11.520000pt;}
.ls9_c00287{letter-spacing:11.840000pt;}
.lsd_c00287{letter-spacing:17.280000pt;}
.ls4_c00287{letter-spacing:20.090240pt;}
.ls7_c00287{letter-spacing:20.410240pt;}
.lsa_c00287{letter-spacing:23.040000pt;}
.ls6_c00287{letter-spacing:27.328000pt;}
.ls3_c00287{letter-spacing:39.040000pt;}
.ls0_c00287{letter-spacing:284.016000pt;}
.ws2_c00287{word-spacing:-64.000000pt;}
.ws5_c00287{word-spacing:-16.128000pt;}
.ws1_c00287{word-spacing:-16.064000pt;}
.ws0_c00287{word-spacing:-16.000000pt;}
.ws6_c00287{word-spacing:-15.936000pt;}
.ws4_c00287{word-spacing:-15.808000pt;}
.ws2f_c00287{word-spacing:-0.468160pt;}
.ws30_c00287{word-spacing:-0.384000pt;}
.wsa_c00287{word-spacing:-0.170240pt;}
.ws8_c00287{word-spacing:-0.144000pt;}
.wsc_c00287{word-spacing:-0.064000pt;}
.ws7_c00287{word-spacing:0.000000pt;}
.ws2d_c00287{word-spacing:0.576000pt;}
.ws25_c00287{word-spacing:0.896000pt;}
.ws1e_c00287{word-spacing:0.960000pt;}
.ws31_c00287{word-spacing:1.280000pt;}
.wsb_c00287{word-spacing:1.536000pt;}
.ws9_c00287{word-spacing:1.920000pt;}
.ws20_c00287{word-spacing:2.176000pt;}
.ws1f_c00287{word-spacing:2.560000pt;}
.ws3_c00287{word-spacing:3.712000pt;}
.ws15_c00287{word-spacing:3.776000pt;}
.ws16_c00287{word-spacing:3.840000pt;}
.ws29_c00287{word-spacing:4.800000pt;}
.ws34_c00287{word-spacing:5.056000pt;}
.ws28_c00287{word-spacing:5.312000pt;}
.ws33_c00287{word-spacing:5.376000pt;}
.ws27_c00287{word-spacing:5.440000pt;}
.ws24_c00287{word-spacing:7.296000pt;}
.ws1b_c00287{word-spacing:7.360000pt;}
.ws13_c00287{word-spacing:8.192000pt;}
.ws12_c00287{word-spacing:8.256000pt;}
.ws14_c00287{word-spacing:8.320000pt;}
.ws18_c00287{word-spacing:8.576000pt;}
.ws26_c00287{word-spacing:8.960000pt;}
.ws1d_c00287{word-spacing:10.496000pt;}
.ws1c_c00287{word-spacing:10.560000pt;}
.ws1a_c00287{word-spacing:11.456000pt;}
.ws19_c00287{word-spacing:11.520000pt;}
.ws2e_c00287{word-spacing:11.840000pt;}
.ws36_c00287{word-spacing:12.160000pt;}
.ws11_c00287{word-spacing:13.440000pt;}
.ws10_c00287{word-spacing:13.760000pt;}
.ws2a_c00287{word-spacing:13.952000pt;}
.ws2b_c00287{word-spacing:14.080000pt;}
.ws35_c00287{word-spacing:17.280000pt;}
.wsd_c00287{word-spacing:18.496000pt;}
.ws21_c00287{word-spacing:22.912000pt;}
.ws22_c00287{word-spacing:23.040000pt;}
.ws23_c00287{word-spacing:23.296000pt;}
.ws17_c00287{word-spacing:23.680000pt;}
.ws2c_c00287{word-spacing:33.280000pt;}
.wse_c00287{word-spacing:38.656000pt;}
.wsf_c00287{word-spacing:39.040000pt;}
.ws32_c00287{word-spacing:51.840000pt;}
._5_c00287{margin-left:-4.352000pt;}
._9_c00287{margin-left:-3.392000pt;}
._2_c00287{margin-left:-1.024000pt;}
._3_c00287{width:0.896000pt;}
._1_c00287{width:2.533760pt;}
._6_c00287{width:7.232000pt;}
._0_c00287{width:8.704000pt;}
._8_c00287{width:9.728000pt;}
._7_c00287{width:11.200000pt;}
._c_c00287{width:12.537600pt;}
._e_c00287{width:17.344000pt;}
._4_c00287{width:18.752000pt;}
._a_c00287{width:22.848000pt;}
._b_c00287{width:33.280000pt;}
._d_c00287{width:52.224000pt;}
.fs2_c00287{font-size:42.560000pt;}
.fs3_c00287{font-size:45.440000pt;}
.fs0_c00287{font-size:48.000000pt;}
.fs1_c00287{font-size:64.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y26_c00287{bottom:50.880000pt;}
.y25_c00287{bottom:101.680000pt;}
.y24_c00287{bottom:129.280000pt;}
.y23_c00287{bottom:156.880000pt;}
.y22_c00287{bottom:184.640000pt;}
.y21_c00287{bottom:212.640000pt;}
.y20_c00287{bottom:240.240000pt;}
.y1f_c00287{bottom:267.840000pt;}
.y1e_c00287{bottom:295.440000pt;}
.y1d_c00287{bottom:323.040000pt;}
.y1c_c00287{bottom:350.640000pt;}
.y1b_c00287{bottom:378.240000pt;}
.y1a_c00287{bottom:405.840000pt;}
.y19_c00287{bottom:433.440000pt;}
.y18_c00287{bottom:461.040000pt;}
.y17_c00287{bottom:488.640000pt;}
.y16_c00287{bottom:516.240000pt;}
.y15_c00287{bottom:543.760000pt;}
.y14_c00287{bottom:571.360000pt;}
.y13_c00287{bottom:599.120000pt;}
.y12_c00287{bottom:627.120000pt;}
.y11_c00287{bottom:654.720000pt;}
.y10_c00287{bottom:682.320000pt;}
.yf_c00287{bottom:709.920000pt;}
.ye_c00287{bottom:737.680000pt;}
.yd_c00287{bottom:765.680000pt;}
.yc_c00287{bottom:793.280000pt;}
.yb_c00287{bottom:820.960000pt;}
.ya_c00287{bottom:848.960000pt;}
.y9_c00287{bottom:876.560000pt;}
.y8_c00287{bottom:904.160000pt;}
.y7_c00287{bottom:931.760000pt;}
.y6_c00287{bottom:959.360000pt;}
.y5_c00287{bottom:986.960000pt;}
.y4_c00287{bottom:1005.360000pt;}
.y3_c00287{bottom:1023.036000pt;}
.y2_c00287{bottom:1036.800000pt;}
.y1_c00287{bottom:1064.400000pt;}
.h4_c00287{height:44.468750pt;}
.h2_c00287{height:47.109375pt;}
.h3_c00287{height:62.812500pt;}
.h5_c00287{height:65.770312pt;}
.h7_c00287{height:66.750000pt;}
.h6_c00287{height:127.593750pt;}
.h0_c00287{height:1122.560000pt;}
.h1_c00287{height:1122.666667pt;}
.w0_c00287{width:793.840000pt;}
.w1_c00287{width:794.000000pt;}
.x0_c00287{left:0.000000pt;}
.x2_c00287{left:113.440000pt;}
.x3_c00287{left:137.440000pt;}
.x1_c00287{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e199be8cb66ca1af4b4e97c.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_ad50190485ef8ea0854a17c6.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00288;src:url('chunks/assets/font_45c98c13965b6ff4eeade095.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;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:ff6_c00288;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00288{font-family:ff6_c00288;line-height:1.142090;font-style: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);}
.v2_c00288{vertical-align:-27.000000px;}
.v3_c00288{vertical-align:-14.760000px;}
.v7_c00288{vertical-align:-10.440000px;}
.v0_c00288{vertical-align:0.000000px;}
.v4_c00288{vertical-align:14.760000px;}
.v1_c00288{vertical-align:27.000000px;}
.v6_c00288{vertical-align:31.680000px;}
.v8_c00288{vertical-align:36.360000px;}
.v5_c00288{vertical-align:42.120000px;}
.ls12_c00288{letter-spacing:-0.216000px;}
.ls11_c00288{letter-spacing:-0.108000px;}
.ls14_c00288{letter-spacing:-0.102240px;}
.ls13_c00288{letter-spacing:-0.072000px;}
.ls10_c00288{letter-spacing:0.000000px;}
.lse_c00288{letter-spacing:0.072000px;}
.ls3_c00288{letter-spacing:0.086400px;}
.ls15_c00288{letter-spacing:0.102240px;}
.lsf_c00288{letter-spacing:0.144000px;}
.ls0_c00288{letter-spacing:0.180000px;}
.ls9_c00288{letter-spacing:0.360000px;}
.lsc_c00288{letter-spacing:0.720000px;}
.ls4_c00288{letter-spacing:1.800000px;}
.ls7_c00288{letter-spacing:1.922040px;}
.lsa_c00288{letter-spacing:2.282040px;}
.lsd_c00288{letter-spacing:5.760000px;}
.ls8_c00288{letter-spacing:6.480000px;}
.ls5_c00288{letter-spacing:10.440000px;}
.ls1_c00288{letter-spacing:19.807200px;}
.ls2_c00288{letter-spacing:22.601520px;}
.ls6_c00288{letter-spacing:23.760000px;}
.lsb_c00288{letter-spacing:25.560000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:-72.000000px;}
.ws4_c00288{word-spacing:-51.222240px;}
.ws5_c00288{word-spacing:-51.120000px;}
.ws3_c00288{word-spacing:-51.017760px;}
.ws2_c00288{word-spacing:-18.072000px;}
.ws6_c00288{word-spacing:-18.000000px;}
.ws7_c00288{word-spacing:-11.970000px;}
.ws13_c00288{word-spacing:-0.144000px;}
.ws11_c00288{word-spacing:-0.072000px;}
.ws8_c00288{word-spacing:0.000000px;}
.wsa_c00288{word-spacing:0.162000px;}
.ws9_c00288{word-spacing:0.270000px;}
.ws14_c00288{word-spacing:0.648000px;}
.ws28_c00288{word-spacing:0.720000px;}
.ws12_c00288{word-spacing:1.008000px;}
.wsc_c00288{word-spacing:1.296000px;}
.wsb_c00288{word-spacing:1.368000px;}
.ws18_c00288{word-spacing:1.800000px;}
.wsd_c00288{word-spacing:2.088000px;}
.wse_c00288{word-spacing:2.160000px;}
.ws20_c00288{word-spacing:2.232000px;}
.ws17_c00288{word-spacing:3.888000px;}
.ws1_c00288{word-spacing:4.176000px;}
.ws27_c00288{word-spacing:5.688000px;}
.ws26_c00288{word-spacing:5.760000px;}
.ws19_c00288{word-spacing:6.840000px;}
.ws1a_c00288{word-spacing:7.200000px;}
.ws1f_c00288{word-spacing:10.440000px;}
.ws1e_c00288{word-spacing:10.512000px;}
.ws1d_c00288{word-spacing:12.528000px;}
.ws1b_c00288{word-spacing:12.816000px;}
.ws1c_c00288{word-spacing:12.960000px;}
.ws24_c00288{word-spacing:13.896000px;}
.ws25_c00288{word-spacing:14.400000px;}
.ws23_c00288{word-spacing:15.120000px;}
.wsf_c00288{word-spacing:19.728000px;}
.ws10_c00288{word-spacing:20.016000px;}
.ws15_c00288{word-spacing:20.088000px;}
.ws16_c00288{word-spacing:20.160000px;}
.ws22_c00288{word-spacing:25.416000px;}
.ws21_c00288{word-spacing:25.560000px;}
._3_c00288{margin-left:-4.104000px;}
._1_c00288{margin-left:-1.058400px;}
._0_c00288{width:1.220400px;}
._6_c00288{width:2.358000px;}
._4_c00288{width:3.744000px;}
._5_c00288{width:5.594400px;}
._2_c00288{width:19.872000px;}
.fc0_c00288{color:rgb(0,0,0);}
.fs4_c00288{font-size:42.120000px;}
.fs2_c00288{font-size:47.880000px;}
.fs3_c00288{font-size:51.120000px;}
.fs0_c00288{font-size:54.000000px;}
.fs1_c00288{font-size:72.000000px;}
.y0_c00288{bottom:0.000000px;}
.y28_c00288{bottom:57.240000px;}
.y27_c00288{bottom:134.460000px;}
.y26_c00288{bottom:165.510000px;}
.y25_c00288{bottom:196.560000px;}
.y24_c00288{bottom:227.610000px;}
.y23_c00288{bottom:258.660000px;}
.y22_c00288{bottom:288.540000px;}
.y21_c00288{bottom:297.630000px;}
.y20_c00288{bottom:334.710000px;}
.y1f_c00288{bottom:365.670000px;}
.y1e_c00288{bottom:395.640000px;}
.y1d_c00288{bottom:404.730000px;}
.y1c_c00288{bottom:441.720000px;}
.y1b_c00288{bottom:471.690000px;}
.y1a_c00288{bottom:480.780000px;}
.y19_c00288{bottom:517.860000px;}
.y18_c00288{bottom:548.820000px;}
.y17_c00288{bottom:579.870000px;}
.y16_c00288{bottom:610.920000px;}
.y15_c00288{bottom:641.970000px;}
.y14_c00288{bottom:673.020000px;}
.y13_c00288{bottom:704.070000px;}
.y12_c00288{bottom:735.120000px;}
.y11_c00288{bottom:766.170000px;}
.y10_c00288{bottom:797.220000px;}
.yf_c00288{bottom:828.270000px;}
.ye_c00288{bottom:859.320000px;}
.yd_c00288{bottom:891.090000px;}
.yc_c00288{bottom:923.490000px;}
.yb_c00288{bottom:954.540000px;}
.ya_c00288{bottom:985.590000px;}
.y9_c00288{bottom:1016.730000px;}
.y8_c00288{bottom:1048.230000px;}
.y7_c00288{bottom:1079.280000px;}
.y6_c00288{bottom:1110.330000px;}
.y5_c00288{bottom:1131.030000px;}
.y4_c00288{bottom:1150.920000px;}
.y3_c00288{bottom:1166.404500px;}
.y2_c00288{bottom:1181.970000px;}
.y1_c00288{bottom:1197.450000px;}
.h7_c00288{height:50.027344px;}
.h3_c00288{height:52.971680px;}
.h2_c00288{height:52.998047px;}
.h4_c00288{height:70.664062px;}
.h5_c00288{height:73.991602px;}
.h6_c00288{height:143.542969px;}
.h8_c00288{height:144.035508px;}
.ha_c00288{height:179.902969px;}
.h9_c00288{height:180.395508px;}
.h0_c00288{height:1262.880000px;}
.h1_c00288{height:1263.000000px;}
.w0_c00288{width:893.070000px;}
.w1_c00288{width:893.250000px;}
.x0_c00288{left:0.000000px;}
.x3_c00288{left:127.620000px;}
.x4_c00288{left:290.340000px;}
.x7_c00288{left:408.150000px;}
.x2_c00288{left:425.160000px;}
.x1_c00288{left:446.580000px;}
.x5_c00288{left:543.780000px;}
.x6_c00288{left:710.190000px;}
.x8_c00288{left:738.540000px;}
@media print{
.v2_c00288{vertical-align:-24.000000pt;}
.v3_c00288{vertical-align:-13.120000pt;}
.v7_c00288{vertical-align:-9.280000pt;}
.v0_c00288{vertical-align:0.000000pt;}
.v4_c00288{vertical-align:13.120000pt;}
.v1_c00288{vertical-align:24.000000pt;}
.v6_c00288{vertical-align:28.160000pt;}
.v8_c00288{vertical-align:32.320000pt;}
.v5_c00288{vertical-align:37.440000pt;}
.ls12_c00288{letter-spacing:-0.192000pt;}
.ls11_c00288{letter-spacing:-0.096000pt;}
.ls14_c00288{letter-spacing:-0.090880pt;}
.ls13_c00288{letter-spacing:-0.064000pt;}
.ls10_c00288{letter-spacing:0.000000pt;}
.lse_c00288{letter-spacing:0.064000pt;}
.ls3_c00288{letter-spacing:0.076800pt;}
.ls15_c00288{letter-spacing:0.090880pt;}
.lsf_c00288{letter-spacing:0.128000pt;}
.ls0_c00288{letter-spacing:0.160000pt;}
.ls9_c00288{letter-spacing:0.320000pt;}
.lsc_c00288{letter-spacing:0.640000pt;}
.ls4_c00288{letter-spacing:1.600000pt;}
.ls7_c00288{letter-spacing:1.708480pt;}
.lsa_c00288{letter-spacing:2.028480pt;}
.lsd_c00288{letter-spacing:5.120000pt;}
.ls8_c00288{letter-spacing:5.760000pt;}
.ls5_c00288{letter-spacing:9.280000pt;}
.ls1_c00288{letter-spacing:17.606400pt;}
.ls2_c00288{letter-spacing:20.090240pt;}
.ls6_c00288{letter-spacing:21.120000pt;}
.lsb_c00288{letter-spacing:22.720000pt;}
.ws0_c00288{word-spacing:-64.000000pt;}
.ws4_c00288{word-spacing:-45.530880pt;}
.ws5_c00288{word-spacing:-45.440000pt;}
.ws3_c00288{word-spacing:-45.349120pt;}
.ws2_c00288{word-spacing:-16.064000pt;}
.ws6_c00288{word-spacing:-16.000000pt;}
.ws7_c00288{word-spacing:-10.640000pt;}
.ws13_c00288{word-spacing:-0.128000pt;}
.ws11_c00288{word-spacing:-0.064000pt;}
.ws8_c00288{word-spacing:0.000000pt;}
.wsa_c00288{word-spacing:0.144000pt;}
.ws9_c00288{word-spacing:0.240000pt;}
.ws14_c00288{word-spacing:0.576000pt;}
.ws28_c00288{word-spacing:0.640000pt;}
.ws12_c00288{word-spacing:0.896000pt;}
.wsc_c00288{word-spacing:1.152000pt;}
.wsb_c00288{word-spacing:1.216000pt;}
.ws18_c00288{word-spacing:1.600000pt;}
.wsd_c00288{word-spacing:1.856000pt;}
.wse_c00288{word-spacing:1.920000pt;}
.ws20_c00288{word-spacing:1.984000pt;}
.ws17_c00288{word-spacing:3.456000pt;}
.ws1_c00288{word-spacing:3.712000pt;}
.ws27_c00288{word-spacing:5.056000pt;}
.ws26_c00288{word-spacing:5.120000pt;}
.ws19_c00288{word-spacing:6.080000pt;}
.ws1a_c00288{word-spacing:6.400000pt;}
.ws1f_c00288{word-spacing:9.280000pt;}
.ws1e_c00288{word-spacing:9.344000pt;}
.ws1d_c00288{word-spacing:11.136000pt;}
.ws1b_c00288{word-spacing:11.392000pt;}
.ws1c_c00288{word-spacing:11.520000pt;}
.ws24_c00288{word-spacing:12.352000pt;}
.ws25_c00288{word-spacing:12.800000pt;}
.ws23_c00288{word-spacing:13.440000pt;}
.wsf_c00288{word-spacing:17.536000pt;}
.ws10_c00288{word-spacing:17.792000pt;}
.ws15_c00288{word-spacing:17.856000pt;}
.ws16_c00288{word-spacing:17.920000pt;}
.ws22_c00288{word-spacing:22.592000pt;}
.ws21_c00288{word-spacing:22.720000pt;}
._3_c00288{margin-left:-3.648000pt;}
._1_c00288{margin-left:-0.940800pt;}
._0_c00288{width:1.084800pt;}
._6_c00288{width:2.096000pt;}
._4_c00288{width:3.328000pt;}
._5_c00288{width:4.972800pt;}
._2_c00288{width:17.664000pt;}
.fs4_c00288{font-size:37.440000pt;}
.fs2_c00288{font-size:42.560000pt;}
.fs3_c00288{font-size:45.440000pt;}
.fs0_c00288{font-size:48.000000pt;}
.fs1_c00288{font-size:64.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y28_c00288{bottom:50.880000pt;}
.y27_c00288{bottom:119.520000pt;}
.y26_c00288{bottom:147.120000pt;}
.y25_c00288{bottom:174.720000pt;}
.y24_c00288{bottom:202.320000pt;}
.y23_c00288{bottom:229.920000pt;}
.y22_c00288{bottom:256.480000pt;}
.y21_c00288{bottom:264.560000pt;}
.y20_c00288{bottom:297.520000pt;}
.y1f_c00288{bottom:325.040000pt;}
.y1e_c00288{bottom:351.680000pt;}
.y1d_c00288{bottom:359.760000pt;}
.y1c_c00288{bottom:392.640000pt;}
.y1b_c00288{bottom:419.280000pt;}
.y1a_c00288{bottom:427.360000pt;}
.y19_c00288{bottom:460.320000pt;}
.y18_c00288{bottom:487.840000pt;}
.y17_c00288{bottom:515.440000pt;}
.y16_c00288{bottom:543.040000pt;}
.y15_c00288{bottom:570.640000pt;}
.y14_c00288{bottom:598.240000pt;}
.y13_c00288{bottom:625.840000pt;}
.y12_c00288{bottom:653.440000pt;}
.y11_c00288{bottom:681.040000pt;}
.y10_c00288{bottom:708.640000pt;}
.yf_c00288{bottom:736.240000pt;}
.ye_c00288{bottom:763.840000pt;}
.yd_c00288{bottom:792.080000pt;}
.yc_c00288{bottom:820.880000pt;}
.yb_c00288{bottom:848.480000pt;}
.ya_c00288{bottom:876.080000pt;}
.y9_c00288{bottom:903.760000pt;}
.y8_c00288{bottom:931.760000pt;}
.y7_c00288{bottom:959.360000pt;}
.y6_c00288{bottom:986.960000pt;}
.y5_c00288{bottom:1005.360000pt;}
.y4_c00288{bottom:1023.040000pt;}
.y3_c00288{bottom:1036.804000pt;}
.y2_c00288{bottom:1050.640000pt;}
.y1_c00288{bottom:1064.400000pt;}
.h7_c00288{height:44.468750pt;}
.h3_c00288{height:47.085938pt;}
.h2_c00288{height:47.109375pt;}
.h4_c00288{height:62.812500pt;}
.h5_c00288{height:65.770312pt;}
.h6_c00288{height:127.593750pt;}
.h8_c00288{height:128.031563pt;}
.ha_c00288{height:159.913750pt;}
.h9_c00288{height:160.351563pt;}
.h0_c00288{height:1122.560000pt;}
.h1_c00288{height:1122.666667pt;}
.w0_c00288{width:793.840000pt;}
.w1_c00288{width:794.000000pt;}
.x0_c00288{left:0.000000pt;}
.x3_c00288{left:113.440000pt;}
.x4_c00288{left:258.080000pt;}
.x7_c00288{left:362.800000pt;}
.x2_c00288{left:377.920000pt;}
.x1_c00288{left:396.960000pt;}
.x5_c00288{left:483.360000pt;}
.x6_c00288{left:631.280000pt;}
.x8_c00288{left:656.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_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_83926ae7625c8b74b15657e7.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_75db121292beefc1b551c2cd.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00289;src:url('chunks/assets/font_d394ffad900d06d9205ce518.woff2')format("woff");}.ff4_c00289{font-family:ff4_c00289;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00289;src:url('chunks/assets/font_4a0d0f1e8f3cdae052ccda3a.woff2')format("woff");}.ff5_c00289{font-family:ff5_c00289;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00289;src:url('chunks/assets/font_39dd99af2399136e762b8814.woff2')format("woff");}.ff6_c00289{font-family:ff6_c00289;line-height:0.862793;font-style: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(0.272123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272123,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.272125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272125,0.000000,0.000000,0.250000,0,0);}
.v2_c00289{vertical-align:-83.520000px;}
.v1_c00289{vertical-align:-61.938000px;}
.v3_c00289{vertical-align:-3.639600px;}
.v0_c00289{vertical-align:0.000000px;}
.v4_c00289{vertical-align:3.658441px;}
.lsc_c00289{letter-spacing:-2.184144px;}
.ls20_c00289{letter-spacing:-1.798259px;}
.lsd_c00289{letter-spacing:-1.474297px;}
.lsb_c00289{letter-spacing:-1.397851px;}
.ls10_c00289{letter-spacing:-1.255883px;}
.ls13_c00289{letter-spacing:-1.201279px;}
.ls1f_c00289{letter-spacing:-0.691644px;}
.lsf_c00289{letter-spacing:-0.655243px;}
.lse_c00289{letter-spacing:-0.407707px;}
.ls16_c00289{letter-spacing:-0.218414px;}
.lsa_c00289{letter-spacing:-0.174731px;}
.ls12_c00289{letter-spacing:-0.163811px;}
.ls9_c00289{letter-spacing:-0.072000px;}
.ls7_c00289{letter-spacing:0.000000px;}
.ls8_c00289{letter-spacing:0.072000px;}
.ls14_c00289{letter-spacing:0.163811px;}
.ls2_c00289{letter-spacing:0.232975px;}
.ls3_c00289{letter-spacing:0.349463px;}
.ls1b_c00289{letter-spacing:0.680717px;}
.ls17_c00289{letter-spacing:0.851807px;}
.ls1a_c00289{letter-spacing:0.990145px;}
.ls1c_c00289{letter-spacing:1.106632px;}
.ls11_c00289{letter-spacing:1.146676px;}
.ls18_c00289{letter-spacing:1.456095px;}
.ls19_c00289{letter-spacing:1.514339px;}
.ls6_c00289{letter-spacing:1.561646px;}
.ls15_c00289{letter-spacing:1.638108px;}
.ls1e_c00289{letter-spacing:1.689070px;}
.ls1d_c00289{letter-spacing:1.845581px;}
.ls5_c00289{letter-spacing:2.795702px;}
.ls4_c00289{letter-spacing:52.419456px;}
.ls1_c00289{letter-spacing:424.440000px;}
.ls0_c00289{letter-spacing:1144.260000px;}
.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;}
}
.ws25_c00289{word-spacing:-14.852169px;}
.ws24_c00289{word-spacing:-14.677438px;}
.ws23_c00289{word-spacing:-13.512562px;}
.ws26_c00289{word-spacing:-13.396074px;}
.ws0_c00289{word-spacing:-11.765248px;}
.ws39_c00289{word-spacing:-3.323503px;}
.ws2f_c00289{word-spacing:-3.057802px;}
.ws3e_c00289{word-spacing:-2.744711px;}
.ws38_c00289{word-spacing:-2.442574px;}
.ws30_c00289{word-spacing:-1.750936px;}
.ws3d_c00289{word-spacing:-1.561646px;}
.ws36_c00289{word-spacing:-1.514339px;}
.ws33_c00289{word-spacing:-1.397851px;}
.ws3a_c00289{word-spacing:-1.106632px;}
.ws37_c00289{word-spacing:-0.990145px;}
.ws3b_c00289{word-spacing:-0.349463px;}
.ws3f_c00289{word-spacing:-0.345822px;}
.ws2e_c00289{word-spacing:-0.232975px;}
.ws28_c00289{word-spacing:-0.162000px;}
.ws35_c00289{word-spacing:-0.116488px;}
.ws29_c00289{word-spacing:-0.072000px;}
.ws31_c00289{word-spacing:-0.058244px;}
.ws27_c00289{word-spacing:0.000000px;}
.ws2a_c00289{word-spacing:0.072000px;}
.ws2c_c00289{word-spacing:0.174731px;}
.ws32_c00289{word-spacing:0.407707px;}
.ws40_c00289{word-spacing:0.899129px;}
.ws2d_c00289{word-spacing:1.048388px;}
.ws2b_c00289{word-spacing:1.164876px;}
.ws3c_c00289{word-spacing:1.397851px;}
.ws34_c00289{word-spacing:1.805558px;}
.ws9_c00289{word-spacing:18.892846px;}
.ws1_c00289{word-spacing:33.472007px;}
.ws5_c00289{word-spacing:55.269764px;}
.wsd_c00289{word-spacing:66.163182px;}
.ws6_c00289{word-spacing:71.803734px;}
.wse_c00289{word-spacing:83.963956px;}
.ws7_c00289{word-spacing:134.947337px;}
.wsb_c00289{word-spacing:142.602762px;}
.ws3_c00289{word-spacing:146.250282px;}
.ws1f_c00289{word-spacing:165.616865px;}
.ws4_c00289{word-spacing:169.256586px;}
.ws12_c00289{word-spacing:175.441367px;}
.wsc_c00289{word-spacing:176.536958px;}
.ws17_c00289{word-spacing:176.537509px;}
.ws8_c00289{word-spacing:186.378468px;}
.wsf_c00289{word-spacing:190.020528px;}
.ws19_c00289{word-spacing:248.320792px;}
.ws15_c00289{word-spacing:249.882455px;}
.ws16_c00289{word-spacing:262.932715px;}
.ws10_c00289{word-spacing:268.027231px;}
.ws21_c00289{word-spacing:285.238286px;}
.ws1a_c00289{word-spacing:287.367826px;}
.ws22_c00289{word-spacing:292.506025px;}
.ws1b_c00289{word-spacing:306.992360px;}
.ws2_c00289{word-spacing:314.287401px;}
.ws18_c00289{word-spacing:328.861102px;}
.ws1c_c00289{word-spacing:328.866562px;}
.wsa_c00289{word-spacing:329.947713px;}
.ws1d_c00289{word-spacing:344.892719px;}
.ws14_c00289{word-spacing:360.569412px;}
.ws1e_c00289{word-spacing:361.694246px;}
.ws20_c00289{word-spacing:365.314465px;}
.ws13_c00289{word-spacing:386.609869px;}
.ws11_c00289{word-spacing:386.921110px;}
._11_c00289{margin-left:-5.901928px;}
._10_c00289{margin-left:-4.726164px;}
._7_c00289{margin-left:-3.292597px;}
._a_c00289{margin-left:-2.096190px;}
._0_c00289{margin-left:-1.087200px;}
._1_c00289{width:1.173600px;}
._2_c00289{width:3.011230px;}
._f_c00289{width:4.075316px;}
._12_c00289{width:6.128333px;}
._6_c00289{width:76.289579px;}
._5_c00289{width:79.926178px;}
._9_c00289{width:131.960095px;}
._c_c00289{width:146.607291px;}
._4_c00289{width:152.676752px;}
._3_c00289{width:164.051475px;}
._e_c00289{width:167.800899px;}
._8_c00289{width:171.523262px;}
._b_c00289{width:174.569534px;}
._d_c00289{width:326.381510px;}
.fc1_c00289{color:transparent;}
.fc0_c00289{color:rgb(0,0,0);}
.fs5_c00289{font-size:40.042200px;}
.fs4_c00289{font-size:47.322600px;}
.fs0_c00289{font-size:54.000000px;}
.fs3_c00289{font-size:54.603600px;}
.fs2_c00289{font-size:58.243800px;}
.fs6_c00289{font-size:69.164400px;}
.fs1_c00289{font-size:72.000000px;}
.y0_c00289{bottom:0.000000px;}
.y16_c00289{bottom:3.639450px;}
.y2d_c00289{bottom:3.639600px;}
.y11_c00289{bottom:3.639750px;}
.y28_c00289{bottom:3.639900px;}
.y26_c00289{bottom:3.640050px;}
.y22_c00289{bottom:3.640200px;}
.y1f_c00289{bottom:3.640350px;}
.y1d_c00289{bottom:3.640500px;}
.y1a_c00289{bottom:3.640650px;}
.y18_c00289{bottom:3.640800px;}
.y30_c00289{bottom:3.640950px;}
.y13_c00289{bottom:3.641100px;}
.y2b_c00289{bottom:3.641250px;}
.y24_c00289{bottom:3.641550px;}
.y33_c00289{bottom:4.549350px;}
.y51_c00289{bottom:4.551000px;}
.y58_c00289{bottom:4.551150px;}
.y3f_c00289{bottom:4.585818px;}
.y56_c00289{bottom:5.459700px;}
.y36_c00289{bottom:5.467684px;}
.y54_c00289{bottom:6.370500px;}
.yf_c00289{bottom:6.398684px;}
.y45_c00289{bottom:11.830350px;}
.y47_c00289{bottom:11.830500px;}
.y4f_c00289{bottom:12.740700px;}
.y46_c00289{bottom:14.560500px;}
.y44_c00289{bottom:14.574705px;}
.y3e_c00289{bottom:23.689784px;}
.y35_c00289{bottom:24.571650px;}
.ya_c00289{bottom:25.495567px;}
.ye_c00289{bottom:25.502651px;}
.y4e_c00289{bottom:30.941700px;}
.y39_c00289{bottom:33.686017px;}
.y4d_c00289{bottom:33.693232px;}
.y43_c00289{bottom:35.498790px;}
.y48_c00289{bottom:41.862075px;}
.y3d_c00289{bottom:42.793751px;}
.y9_c00289{bottom:44.599534px;}
.yd_c00289{bottom:44.606617px;}
.y49_c00289{bottom:49.142550px;}
.y4a_c00289{bottom:52.782750px;}
.y38_c00289{bottom:52.789984px;}
.y42_c00289{bottom:54.602756px;}
.y4c_c00289{bottom:54.617317px;}
.y59_c00289{bottom:57.330000px;}
.y3c_c00289{bottom:61.897717px;}
.y8_c00289{bottom:63.703500px;}
.yc_c00289{bottom:63.710584px;}
.y52_c00289{bottom:64.613550px;}
.y37_c00289{bottom:71.893950px;}
.y41_c00289{bottom:73.706723px;}
.y4b_c00289{bottom:73.721284px;}
.y3b_c00289{bottom:81.001684px;}
.yb_c00289{bottom:82.814550px;}
.y40_c00289{bottom:92.825250px;}
.y3a_c00289{bottom:100.105650px;}
.y6_c00289{bottom:140.130000px;}
.y5_c00289{bottom:156.780000px;}
.y32_c00289{bottom:158.496000px;}
.y50_c00289{bottom:176.695500px;}
.y57_c00289{bottom:194.896500px;}
.y55_c00289{bottom:213.099000px;}
.y31_c00289{bottom:232.209000px;}
.y2f_c00289{bottom:250.410000px;}
.y2e_c00289{bottom:268.612500px;}
.y2c_c00289{bottom:286.813500px;}
.y2a_c00289{bottom:305.013000px;}
.y29_c00289{bottom:323.215500px;}
.y27_c00289{bottom:341.416500px;}
.y25_c00289{bottom:359.617500px;}
.y23_c00289{bottom:377.817000px;}
.y21_c00289{bottom:396.019500px;}
.y20_c00289{bottom:414.220500px;}
.y1e_c00289{bottom:432.421500px;}
.y1c_c00289{bottom:450.622500px;}
.y1b_c00289{bottom:468.823500px;}
.y19_c00289{bottom:487.024500px;}
.y17_c00289{bottom:505.225500px;}
.y15_c00289{bottom:523.428000px;}
.y14_c00289{bottom:541.627500px;}
.y12_c00289{bottom:559.828500px;}
.y10_c00289{bottom:578.031000px;}
.y7_c00289{bottom:596.232000px;}
.y34_c00289{bottom:696.337500px;}
.y53_c00289{bottom:711.808500px;}
.y4_c00289{bottom:761.220000px;}
.y3_c00289{bottom:781.105500px;}
.y2_c00289{bottom:796.590000px;}
.y1_c00289{bottom:827.640000px;}
.h6_c00289{height:17.290500px;}
.h8_c00289{height:17.292000px;}
.h12_c00289{height:18.201000px;}
.h10_c00289{height:23.661000px;}
.he_c00289{height:33.023084px;}
.hb_c00289{height:39.132000px;}
.hd_c00289{height:39.871976px;}
.h7_c00289{height:45.031973px;}
.ha_c00289{height:46.444544px;}
.h13_c00289{height:47.692308px;}
.h5_c00289{height:48.034071px;}
.h9_c00289{height:48.690414px;}
.h2_c00289{height:52.998047px;}
.h11_c00289{height:57.040367px;}
.h3_c00289{height:70.664062px;}
.h4_c00289{height:99.196500px;}
.hc_c00289{height:114.666000px;}
.hf_c00289{height:139.239000px;}
.h0_c00289{height:893.070000px;}
.h1_c00289{height:893.250000px;}
.wf_c00289{width:30.708000px;}
.w2_c00289{width:63.397500px;}
.wd_c00289{width:69.342000px;}
.w3_c00289{width:70.332000px;}
.wc_c00289{width:71.323500px;}
.wb_c00289{width:73.303500px;}
.we_c00289{width:75.285000px;}
.w7_c00289{width:84.201000px;}
.w8_c00289{width:91.134000px;}
.w9_c00289{width:99.058500px;}
.wa_c00289{width:100.050000px;}
.w10_c00289{width:133.731000px;}
.w6_c00289{width:134.721000px;}
.w11_c00289{width:744.925500px;}
.w5_c00289{width:1015.357500px;}
.w4_c00289{width:1048.045500px;}
.w0_c00289{width:1262.880000px;}
.w1_c00289{width:1263.000000px;}
.x0_c00289{left:0.000000px;}
.x6_c00289{left:2.963622px;}
.xc_c00289{left:4.951950px;}
.xa_c00289{left:6.925366px;}
.x1f_c00289{left:7.925400px;}
.x1d_c00289{left:9.905456px;}
.xd_c00289{left:11.886150px;}
.x7_c00289{left:14.850710px;}
.xb_c00289{left:18.812453px;}
.x9_c00289{left:21.792150px;}
.x5_c00289{left:23.773950px;}
.x1a_c00289{left:28.727888px;}
.x19_c00289{left:32.690250px;}
.xf_c00289{left:38.632819px;}
.x12_c00289{left:41.604450px;}
.x15_c00289{left:43.584900px;}
.x14_c00289{left:45.566250px;}
.x20_c00289{left:54.483000px;}
.x22_c00289{left:57.454650px;}
.x16_c00289{left:92.123850px;}
.x2_c00289{left:106.380000px;}
.xe_c00289{left:139.069500px;}
.x23_c00289{left:225.855900px;}
.x10_c00289{left:273.789000px;}
.x11_c00289{left:358.981500px;}
.x13_c00289{left:451.107000px;}
.x17_c00289{left:551.157000px;}
.x1_c00289{left:631.440000px;}
.x18_c00289{left:652.195500px;}
.x1b_c00289{left:726.490500px;}
.x1c_c00289{left:800.785500px;}
.x1e_c00289{left:873.097500px;}
.x21_c00289{left:943.429500px;}
.x4_c00289{left:1019.706000px;}
.x8_c00289{left:1084.095000px;}
.x3_c00289{left:1156.500000px;}
@media print{
.v2_c00289{vertical-align:-74.240000pt;}
.v1_c00289{vertical-align:-55.056000pt;}
.v3_c00289{vertical-align:-3.235200pt;}
.v0_c00289{vertical-align:0.000000pt;}
.v4_c00289{vertical-align:3.251948pt;}
.lsc_c00289{letter-spacing:-1.941461pt;}
.ls20_c00289{letter-spacing:-1.598452pt;}
.lsd_c00289{letter-spacing:-1.310486pt;}
.lsb_c00289{letter-spacing:-1.242534pt;}
.ls10_c00289{letter-spacing:-1.116340pt;}
.ls13_c00289{letter-spacing:-1.067804pt;}
.ls1f_c00289{letter-spacing:-0.614795pt;}
.lsf_c00289{letter-spacing:-0.582438pt;}
.lse_c00289{letter-spacing:-0.362406pt;}
.ls16_c00289{letter-spacing:-0.194146pt;}
.lsa_c00289{letter-spacing:-0.155317pt;}
.ls12_c00289{letter-spacing:-0.145610pt;}
.ls9_c00289{letter-spacing:-0.064000pt;}
.ls7_c00289{letter-spacing:0.000000pt;}
.ls8_c00289{letter-spacing:0.064000pt;}
.ls14_c00289{letter-spacing:0.145610pt;}
.ls2_c00289{letter-spacing:0.207089pt;}
.ls3_c00289{letter-spacing:0.310634pt;}
.ls1b_c00289{letter-spacing:0.605082pt;}
.ls17_c00289{letter-spacing:0.757162pt;}
.ls1a_c00289{letter-spacing:0.880129pt;}
.ls1c_c00289{letter-spacing:0.983673pt;}
.ls11_c00289{letter-spacing:1.019267pt;}
.ls18_c00289{letter-spacing:1.294307pt;}
.ls19_c00289{letter-spacing:1.346079pt;}
.ls6_c00289{letter-spacing:1.388130pt;}
.ls15_c00289{letter-spacing:1.456096pt;}
.ls1e_c00289{letter-spacing:1.501396pt;}
.ls1d_c00289{letter-spacing:1.640517pt;}
.ls5_c00289{letter-spacing:2.485069pt;}
.ls4_c00289{letter-spacing:46.595072pt;}
.ls1_c00289{letter-spacing:377.280000pt;}
.ls0_c00289{letter-spacing:1017.120000pt;}
.ws25_c00289{word-spacing:-13.201928pt;}
.ws24_c00289{word-spacing:-13.046611pt;}
.ws23_c00289{word-spacing:-12.011166pt;}
.ws26_c00289{word-spacing:-11.907621pt;}
.ws0_c00289{word-spacing:-10.457998pt;}
.ws39_c00289{word-spacing:-2.954225pt;}
.ws2f_c00289{word-spacing:-2.718046pt;}
.ws3e_c00289{word-spacing:-2.439743pt;}
.ws38_c00289{word-spacing:-2.171177pt;}
.ws30_c00289{word-spacing:-1.556388pt;}
.ws3d_c00289{word-spacing:-1.388130pt;}
.ws36_c00289{word-spacing:-1.346079pt;}
.ws33_c00289{word-spacing:-1.242534pt;}
.ws3a_c00289{word-spacing:-0.983673pt;}
.ws37_c00289{word-spacing:-0.880129pt;}
.ws3b_c00289{word-spacing:-0.310634pt;}
.ws3f_c00289{word-spacing:-0.307397pt;}
.ws2e_c00289{word-spacing:-0.207089pt;}
.ws28_c00289{word-spacing:-0.144000pt;}
.ws35_c00289{word-spacing:-0.103545pt;}
.ws29_c00289{word-spacing:-0.064000pt;}
.ws31_c00289{word-spacing:-0.051772pt;}
.ws27_c00289{word-spacing:0.000000pt;}
.ws2a_c00289{word-spacing:0.064000pt;}
.ws2c_c00289{word-spacing:0.155317pt;}
.ws32_c00289{word-spacing:0.362406pt;}
.ws40_c00289{word-spacing:0.799226pt;}
.ws2d_c00289{word-spacing:0.931901pt;}
.ws2b_c00289{word-spacing:1.035445pt;}
.ws3c_c00289{word-spacing:1.242534pt;}
.ws34_c00289{word-spacing:1.604940pt;}
.ws9_c00289{word-spacing:16.793641pt;}
.ws1_c00289{word-spacing:29.752895pt;}
.ws5_c00289{word-spacing:49.128679pt;}
.wsd_c00289{word-spacing:58.811717pt;}
.ws6_c00289{word-spacing:63.825541pt;}
.wse_c00289{word-spacing:74.634627pt;}
.ws7_c00289{word-spacing:119.953188pt;}
.wsb_c00289{word-spacing:126.758010pt;}
.ws3_c00289{word-spacing:130.000251pt;}
.ws1f_c00289{word-spacing:147.214991pt;}
.ws4_c00289{word-spacing:150.450299pt;}
.ws12_c00289{word-spacing:155.947882pt;}
.wsc_c00289{word-spacing:156.921740pt;}
.ws17_c00289{word-spacing:156.922230pt;}
.ws8_c00289{word-spacing:165.669749pt;}
.wsf_c00289{word-spacing:168.907136pt;}
.ws19_c00289{word-spacing:220.729593pt;}
.ws15_c00289{word-spacing:222.117737pt;}
.ws16_c00289{word-spacing:233.717969pt;}
.ws10_c00289{word-spacing:238.246428pt;}
.ws21_c00289{word-spacing:253.545143pt;}
.ws1a_c00289{word-spacing:255.438068pt;}
.ws22_c00289{word-spacing:260.005355pt;}
.ws1b_c00289{word-spacing:272.882098pt;}
.ws2_c00289{word-spacing:279.366579pt;}
.ws18_c00289{word-spacing:292.320979pt;}
.ws1c_c00289{word-spacing:292.325833pt;}
.wsa_c00289{word-spacing:293.286856pt;}
.ws1d_c00289{word-spacing:306.571305pt;}
.ws14_c00289{word-spacing:320.506144pt;}
.ws1e_c00289{word-spacing:321.505997pt;}
.ws20_c00289{word-spacing:324.723969pt;}
.ws13_c00289{word-spacing:343.653217pt;}
.ws11_c00289{word-spacing:343.929875pt;}
._11_c00289{margin-left:-5.246159pt;}
._10_c00289{margin-left:-4.201035pt;}
._7_c00289{margin-left:-2.926753pt;}
._a_c00289{margin-left:-1.863280pt;}
._0_c00289{margin-left:-0.966400pt;}
._1_c00289{width:1.043200pt;}
._2_c00289{width:2.676649pt;}
._f_c00289{width:3.622503pt;}
._12_c00289{width:5.447407pt;}
._6_c00289{width:67.812959pt;}
._5_c00289{width:71.045492pt;}
._9_c00289{width:117.297862pt;}
._c_c00289{width:130.317592pt;}
._4_c00289{width:135.712668pt;}
._3_c00289{width:145.823533pt;}
._e_c00289{width:149.156355pt;}
._8_c00289{width:152.465122pt;}
._b_c00289{width:155.172919pt;}
._d_c00289{width:290.116898pt;}
.fs5_c00289{font-size:35.593067pt;}
.fs4_c00289{font-size:42.064533pt;}
.fs0_c00289{font-size:48.000000pt;}
.fs3_c00289{font-size:48.536533pt;}
.fs2_c00289{font-size:51.772267pt;}
.fs6_c00289{font-size:61.479467pt;}
.fs1_c00289{font-size:64.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y16_c00289{bottom:3.235067pt;}
.y2d_c00289{bottom:3.235200pt;}
.y11_c00289{bottom:3.235333pt;}
.y28_c00289{bottom:3.235467pt;}
.y26_c00289{bottom:3.235600pt;}
.y22_c00289{bottom:3.235733pt;}
.y1f_c00289{bottom:3.235867pt;}
.y1d_c00289{bottom:3.236000pt;}
.y1a_c00289{bottom:3.236133pt;}
.y18_c00289{bottom:3.236267pt;}
.y30_c00289{bottom:3.236400pt;}
.y13_c00289{bottom:3.236533pt;}
.y2b_c00289{bottom:3.236667pt;}
.y24_c00289{bottom:3.236933pt;}
.y33_c00289{bottom:4.043867pt;}
.y51_c00289{bottom:4.045333pt;}
.y58_c00289{bottom:4.045467pt;}
.y3f_c00289{bottom:4.076283pt;}
.y56_c00289{bottom:4.853067pt;}
.y36_c00289{bottom:4.860163pt;}
.y54_c00289{bottom:5.662667pt;}
.yf_c00289{bottom:5.687719pt;}
.y45_c00289{bottom:10.515867pt;}
.y47_c00289{bottom:10.516000pt;}
.y4f_c00289{bottom:11.325067pt;}
.y46_c00289{bottom:12.942667pt;}
.y44_c00289{bottom:12.955293pt;}
.y3e_c00289{bottom:21.057586pt;}
.y35_c00289{bottom:21.841467pt;}
.ya_c00289{bottom:22.662726pt;}
.ye_c00289{bottom:22.669023pt;}
.y4e_c00289{bottom:27.503733pt;}
.y39_c00289{bottom:29.943126pt;}
.y4d_c00289{bottom:29.949540pt;}
.y43_c00289{bottom:31.554480pt;}
.y48_c00289{bottom:37.210733pt;}
.y3d_c00289{bottom:38.038890pt;}
.y9_c00289{bottom:39.644030pt;}
.yd_c00289{bottom:39.650326pt;}
.y49_c00289{bottom:43.682267pt;}
.y4a_c00289{bottom:46.918000pt;}
.y38_c00289{bottom:46.924430pt;}
.y42_c00289{bottom:48.535783pt;}
.y4c_c00289{bottom:48.548726pt;}
.y59_c00289{bottom:50.960000pt;}
.y3c_c00289{bottom:55.020193pt;}
.y8_c00289{bottom:56.625333pt;}
.yc_c00289{bottom:56.631630pt;}
.y52_c00289{bottom:57.434267pt;}
.y37_c00289{bottom:63.905733pt;}
.y41_c00289{bottom:65.517087pt;}
.y4b_c00289{bottom:65.530030pt;}
.y3b_c00289{bottom:72.001497pt;}
.yb_c00289{bottom:73.612933pt;}
.y40_c00289{bottom:82.511333pt;}
.y3a_c00289{bottom:88.982800pt;}
.y6_c00289{bottom:124.560000pt;}
.y5_c00289{bottom:139.360000pt;}
.y32_c00289{bottom:140.885333pt;}
.y50_c00289{bottom:157.062667pt;}
.y57_c00289{bottom:173.241333pt;}
.y55_c00289{bottom:189.421333pt;}
.y31_c00289{bottom:206.408000pt;}
.y2f_c00289{bottom:222.586667pt;}
.y2e_c00289{bottom:238.766667pt;}
.y2c_c00289{bottom:254.945333pt;}
.y2a_c00289{bottom:271.122667pt;}
.y29_c00289{bottom:287.302667pt;}
.y27_c00289{bottom:303.481333pt;}
.y25_c00289{bottom:319.660000pt;}
.y23_c00289{bottom:335.837333pt;}
.y21_c00289{bottom:352.017333pt;}
.y20_c00289{bottom:368.196000pt;}
.y1e_c00289{bottom:384.374667pt;}
.y1c_c00289{bottom:400.553333pt;}
.y1b_c00289{bottom:416.732000pt;}
.y19_c00289{bottom:432.910667pt;}
.y17_c00289{bottom:449.089333pt;}
.y15_c00289{bottom:465.269333pt;}
.y14_c00289{bottom:481.446667pt;}
.y12_c00289{bottom:497.625333pt;}
.y10_c00289{bottom:513.805333pt;}
.y7_c00289{bottom:529.984000pt;}
.y34_c00289{bottom:618.966667pt;}
.y53_c00289{bottom:632.718667pt;}
.y4_c00289{bottom:676.640000pt;}
.y3_c00289{bottom:694.316000pt;}
.y2_c00289{bottom:708.080000pt;}
.y1_c00289{bottom:735.680000pt;}
.h6_c00289{height:15.369333pt;}
.h8_c00289{height:15.370667pt;}
.h12_c00289{height:16.178667pt;}
.h10_c00289{height:21.032000pt;}
.he_c00289{height:29.353852pt;}
.hb_c00289{height:34.784000pt;}
.hd_c00289{height:35.441757pt;}
.h7_c00289{height:40.028420pt;}
.ha_c00289{height:41.284039pt;}
.h13_c00289{height:42.393162pt;}
.h5_c00289{height:42.696952pt;}
.h9_c00289{height:43.280368pt;}
.h2_c00289{height:47.109375pt;}
.h11_c00289{height:50.702548pt;}
.h3_c00289{height:62.812500pt;}
.h4_c00289{height:88.174667pt;}
.hc_c00289{height:101.925333pt;}
.hf_c00289{height:123.768000pt;}
.h0_c00289{height:793.840000pt;}
.h1_c00289{height:794.000000pt;}
.wf_c00289{width:27.296000pt;}
.w2_c00289{width:56.353333pt;}
.wd_c00289{width:61.637333pt;}
.w3_c00289{width:62.517333pt;}
.wc_c00289{width:63.398667pt;}
.wb_c00289{width:65.158667pt;}
.we_c00289{width:66.920000pt;}
.w7_c00289{width:74.845333pt;}
.w8_c00289{width:81.008000pt;}
.w9_c00289{width:88.052000pt;}
.wa_c00289{width:88.933333pt;}
.w10_c00289{width:118.872000pt;}
.w6_c00289{width:119.752000pt;}
.w11_c00289{width:662.156000pt;}
.w5_c00289{width:902.540000pt;}
.w4_c00289{width:931.596000pt;}
.w0_c00289{width:1122.560000pt;}
.w1_c00289{width:1122.666667pt;}
.x0_c00289{left:0.000000pt;}
.x6_c00289{left:2.634331pt;}
.xc_c00289{left:4.401733pt;}
.xa_c00289{left:6.155881pt;}
.x1f_c00289{left:7.044800pt;}
.x1d_c00289{left:8.804850pt;}
.xd_c00289{left:10.565467pt;}
.x7_c00289{left:13.200631pt;}
.xb_c00289{left:16.722181pt;}
.x9_c00289{left:19.370800pt;}
.x5_c00289{left:21.132400pt;}
.x1a_c00289{left:25.535900pt;}
.x19_c00289{left:29.058000pt;}
.xf_c00289{left:34.340283pt;}
.x12_c00289{left:36.981733pt;}
.x15_c00289{left:38.742133pt;}
.x14_c00289{left:40.503333pt;}
.x20_c00289{left:48.429333pt;}
.x22_c00289{left:51.070800pt;}
.x16_c00289{left:81.887867pt;}
.x2_c00289{left:94.560000pt;}
.xe_c00289{left:123.617333pt;}
.x23_c00289{left:200.760800pt;}
.x10_c00289{left:243.368000pt;}
.x11_c00289{left:319.094667pt;}
.x13_c00289{left:400.984000pt;}
.x17_c00289{left:489.917333pt;}
.x1_c00289{left:561.280000pt;}
.x18_c00289{left:579.729333pt;}
.x1b_c00289{left:645.769333pt;}
.x1c_c00289{left:711.809333pt;}
.x1e_c00289{left:776.086667pt;}
.x21_c00289{left:838.604000pt;}
.x4_c00289{left:906.405333pt;}
.x8_c00289{left:963.640000pt;}
.x3_c00289{left:1028.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_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_82393ef6033fed75125487ee.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.284180;font-style:normal;font-weight:normal;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_ea9dc9c414c59705d3de0625.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;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_c00290;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_f64c04f1f95b17ff010a939c.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:3.333984;font-style: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);}
.v4_c00290{vertical-align:-20.880000px;}
.v2_c00290{vertical-align:-14.760000px;}
.v0_c00290{vertical-align:0.000000px;}
.v3_c00290{vertical-align:14.760000px;}
.v1_c00290{vertical-align:27.000000px;}
.ls18_c00290{letter-spacing:-0.360000px;}
.ls17_c00290{letter-spacing:-0.288000px;}
.ls15_c00290{letter-spacing:-0.216000px;}
.ls1c_c00290{letter-spacing:-0.180360px;}
.ls19_c00290{letter-spacing:-0.144000px;}
.ls1b_c00290{letter-spacing:-0.120240px;}
.ls14_c00290{letter-spacing:-0.108000px;}
.ls16_c00290{letter-spacing:-0.072000px;}
.ls1a_c00290{letter-spacing:-0.060120px;}
.ls13_c00290{letter-spacing:0.000000px;}
.ls3_c00290{letter-spacing:0.072000px;}
.ls12_c00290{letter-spacing:0.120240px;}
.lsa_c00290{letter-spacing:0.144000px;}
.lsb_c00290{letter-spacing:0.180000px;}
.ls1d_c00290{letter-spacing:0.180360px;}
.ls5_c00290{letter-spacing:0.191520px;}
.ls8_c00290{letter-spacing:1.440000px;}
.ls4_c00290{letter-spacing:3.960000px;}
.ls6_c00290{letter-spacing:5.040000px;}
.ls2_c00290{letter-spacing:5.760000px;}
.lsf_c00290{letter-spacing:7.920000px;}
.lse_c00290{letter-spacing:8.280000px;}
.lsc_c00290{letter-spacing:10.080000px;}
.ls10_c00290{letter-spacing:12.324600px;}
.ls11_c00290{letter-spacing:12.390732px;}
.lsd_c00290{letter-spacing:14.400000px;}
.ls9_c00290{letter-spacing:16.920000px;}
.ls0_c00290{letter-spacing:19.080000px;}
.ls1_c00290{letter-spacing:19.440000px;}
.ls7_c00290{letter-spacing:22.601520px;}
.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;}
}
.ws5_c00290{word-spacing:-72.000000px;}
.ws3_c00290{word-spacing:-18.072000px;}
.ws2_c00290{word-spacing:-18.000000px;}
.ws1_c00290{word-spacing:-17.928000px;}
.ws0_c00290{word-spacing:-17.784000px;}
.ws7_c00290{word-spacing:-17.640000px;}
.ws9_c00290{word-spacing:-15.030000px;}
.ws4_c00290{word-spacing:-12.161520px;}
.ws8_c00290{word-spacing:-9.720000px;}
.ws38_c00290{word-spacing:-0.420840px;}
.wsd_c00290{word-spacing:-0.072000px;}
.ws37_c00290{word-spacing:-0.060120px;}
.wsa_c00290{word-spacing:0.000000px;}
.ws32_c00290{word-spacing:0.060120px;}
.ws2b_c00290{word-spacing:0.144000px;}
.wsc_c00290{word-spacing:0.162000px;}
.ws35_c00290{word-spacing:0.180360px;}
.ws15_c00290{word-spacing:0.216000px;}
.wsb_c00290{word-spacing:0.270000px;}
.ws26_c00290{word-spacing:0.288000px;}
.ws1e_c00290{word-spacing:0.720000px;}
.ws20_c00290{word-spacing:1.080000px;}
.ws1f_c00290{word-spacing:1.368000px;}
.ws21_c00290{word-spacing:1.440000px;}
.ws1c_c00290{word-spacing:2.448000px;}
.ws1d_c00290{word-spacing:2.520000px;}
.ws13_c00290{word-spacing:3.888000px;}
.ws14_c00290{word-spacing:3.960000px;}
.ws6_c00290{word-spacing:4.176000px;}
.ws17_c00290{word-spacing:4.968000px;}
.ws16_c00290{word-spacing:5.040000px;}
.ws12_c00290{word-spacing:6.120000px;}
.ws30_c00290{word-spacing:7.776000px;}
.ws28_c00290{word-spacing:7.848000px;}
.ws31_c00290{word-spacing:8.136000px;}
.ws2d_c00290{word-spacing:8.280000px;}
.ws2c_c00290{word-spacing:10.008000px;}
.ws24_c00290{word-spacing:10.080000px;}
.ws29_c00290{word-spacing:10.440000px;}
.ws33_c00290{word-spacing:12.024000px;}
.ws36_c00290{word-spacing:12.144240px;}
.ws25_c00290{word-spacing:12.168000px;}
.ws27_c00290{word-spacing:12.240000px;}
.ws34_c00290{word-spacing:12.444840px;}
.ws2f_c00290{word-spacing:13.968000px;}
.ws2e_c00290{word-spacing:14.328000px;}
.ws18_c00290{word-spacing:14.400000px;}
.ws19_c00290{word-spacing:14.688000px;}
.ws23_c00290{word-spacing:16.848000px;}
.ws22_c00290{word-spacing:16.920000px;}
.ws10_c00290{word-spacing:18.720000px;}
.ws11_c00290{word-spacing:18.936000px;}
.wsf_c00290{word-spacing:19.080000px;}
.wse_c00290{word-spacing:20.088000px;}
.ws2a_c00290{word-spacing:22.320000px;}
.ws1b_c00290{word-spacing:24.048000px;}
.ws1a_c00290{word-spacing:24.120000px;}
._4_c00290{margin-left:-4.629600px;}
._1_c00290{margin-left:-1.058400px;}
._0_c00290{width:1.220400px;}
._3_c00290{width:2.664000px;}
._8_c00290{width:7.776000px;}
._7_c00290{width:12.168000px;}
._2_c00290{width:19.944000px;}
._5_c00290{width:22.464000px;}
._6_c00290{width:23.612400px;}
.fc0_c00290{color:rgb(0,0,0);}
.fs4_c00290{font-size:38.880000px;}
.fs2_c00290{font-size:47.880000px;}
.fs3_c00290{font-size:51.120000px;}
.fs0_c00290{font-size:54.000000px;}
.fs5_c00290{font-size:60.120000px;}
.fs1_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y27_c00290{bottom:57.240000px;}
.y26_c00290{bottom:115.020000px;}
.y25_c00290{bottom:126.985500px;}
.y24_c00290{bottom:149.490000px;}
.y28_c00290{bottom:162.180000px;}
.y23_c00290{bottom:208.800000px;}
.y22_c00290{bottom:239.850000px;}
.y21_c00290{bottom:270.900000px;}
.y20_c00290{bottom:301.950000px;}
.y1f_c00290{bottom:333.000000px;}
.y1e_c00290{bottom:363.960000px;}
.y1d_c00290{bottom:395.010000px;}
.y1c_c00290{bottom:426.060000px;}
.y1b_c00290{bottom:457.110000px;}
.y1a_c00290{bottom:488.160000px;}
.y19_c00290{bottom:519.210000px;}
.y18_c00290{bottom:550.260000px;}
.y17_c00290{bottom:581.310000px;}
.y16_c00290{bottom:612.540000px;}
.y15_c00290{bottom:644.040000px;}
.y14_c00290{bottom:675.090000px;}
.y13_c00290{bottom:706.140000px;}
.y12_c00290{bottom:737.190000px;}
.y11_c00290{bottom:768.240000px;}
.y10_c00290{bottom:799.290000px;}
.yf_c00290{bottom:830.340000px;}
.ye_c00290{bottom:861.390000px;}
.yd_c00290{bottom:892.440000px;}
.yc_c00290{bottom:923.490000px;}
.yb_c00290{bottom:954.630000px;}
.ya_c00290{bottom:986.130000px;}
.y9_c00290{bottom:1017.180000px;}
.y8_c00290{bottom:1048.230000px;}
.y7_c00290{bottom:1079.280000px;}
.y6_c00290{bottom:1110.330000px;}
.y5_c00290{bottom:1131.030000px;}
.y4_c00290{bottom:1150.920000px;}
.y3_c00290{bottom:1166.404500px;}
.y2_c00290{bottom:1181.970000px;}
.y1_c00290{bottom:1197.450000px;}
.h8_c00290{height:38.158594px;}
.h7_c00290{height:50.027344px;}
.h3_c00290{height:52.971680px;}
.h2_c00290{height:52.998047px;}
.h9_c00290{height:59.004492px;}
.h4_c00290{height:70.664062px;}
.h5_c00290{height:73.991602px;}
.h6_c00290{height:143.542969px;}
.h0_c00290{height:1262.880000px;}
.h1_c00290{height:1263.000000px;}
.w0_c00290{width:893.070000px;}
.w1_c00290{width:893.250000px;}
.x0_c00290{left:0.000000px;}
.x3_c00290{left:127.620000px;}
.x2_c00290{left:425.160000px;}
.x1_c00290{left:446.580000px;}
.x4_c00290{left:738.540000px;}
@media print{
.v4_c00290{vertical-align:-18.560000pt;}
.v2_c00290{vertical-align:-13.120000pt;}
.v0_c00290{vertical-align:0.000000pt;}
.v3_c00290{vertical-align:13.120000pt;}
.v1_c00290{vertical-align:24.000000pt;}
.ls18_c00290{letter-spacing:-0.320000pt;}
.ls17_c00290{letter-spacing:-0.256000pt;}
.ls15_c00290{letter-spacing:-0.192000pt;}
.ls1c_c00290{letter-spacing:-0.160320pt;}
.ls19_c00290{letter-spacing:-0.128000pt;}
.ls1b_c00290{letter-spacing:-0.106880pt;}
.ls14_c00290{letter-spacing:-0.096000pt;}
.ls16_c00290{letter-spacing:-0.064000pt;}
.ls1a_c00290{letter-spacing:-0.053440pt;}
.ls13_c00290{letter-spacing:0.000000pt;}
.ls3_c00290{letter-spacing:0.064000pt;}
.ls12_c00290{letter-spacing:0.106880pt;}
.lsa_c00290{letter-spacing:0.128000pt;}
.lsb_c00290{letter-spacing:0.160000pt;}
.ls1d_c00290{letter-spacing:0.160320pt;}
.ls5_c00290{letter-spacing:0.170240pt;}
.ls8_c00290{letter-spacing:1.280000pt;}
.ls4_c00290{letter-spacing:3.520000pt;}
.ls6_c00290{letter-spacing:4.480000pt;}
.ls2_c00290{letter-spacing:5.120000pt;}
.lsf_c00290{letter-spacing:7.040000pt;}
.lse_c00290{letter-spacing:7.360000pt;}
.lsc_c00290{letter-spacing:8.960000pt;}
.ls10_c00290{letter-spacing:10.955200pt;}
.ls11_c00290{letter-spacing:11.013984pt;}
.lsd_c00290{letter-spacing:12.800000pt;}
.ls9_c00290{letter-spacing:15.040000pt;}
.ls0_c00290{letter-spacing:16.960000pt;}
.ls1_c00290{letter-spacing:17.280000pt;}
.ls7_c00290{letter-spacing:20.090240pt;}
.ws5_c00290{word-spacing:-64.000000pt;}
.ws3_c00290{word-spacing:-16.064000pt;}
.ws2_c00290{word-spacing:-16.000000pt;}
.ws1_c00290{word-spacing:-15.936000pt;}
.ws0_c00290{word-spacing:-15.808000pt;}
.ws7_c00290{word-spacing:-15.680000pt;}
.ws9_c00290{word-spacing:-13.360000pt;}
.ws4_c00290{word-spacing:-10.810240pt;}
.ws8_c00290{word-spacing:-8.640000pt;}
.ws38_c00290{word-spacing:-0.374080pt;}
.wsd_c00290{word-spacing:-0.064000pt;}
.ws37_c00290{word-spacing:-0.053440pt;}
.wsa_c00290{word-spacing:0.000000pt;}
.ws32_c00290{word-spacing:0.053440pt;}
.ws2b_c00290{word-spacing:0.128000pt;}
.wsc_c00290{word-spacing:0.144000pt;}
.ws35_c00290{word-spacing:0.160320pt;}
.ws15_c00290{word-spacing:0.192000pt;}
.wsb_c00290{word-spacing:0.240000pt;}
.ws26_c00290{word-spacing:0.256000pt;}
.ws1e_c00290{word-spacing:0.640000pt;}
.ws20_c00290{word-spacing:0.960000pt;}
.ws1f_c00290{word-spacing:1.216000pt;}
.ws21_c00290{word-spacing:1.280000pt;}
.ws1c_c00290{word-spacing:2.176000pt;}
.ws1d_c00290{word-spacing:2.240000pt;}
.ws13_c00290{word-spacing:3.456000pt;}
.ws14_c00290{word-spacing:3.520000pt;}
.ws6_c00290{word-spacing:3.712000pt;}
.ws17_c00290{word-spacing:4.416000pt;}
.ws16_c00290{word-spacing:4.480000pt;}
.ws12_c00290{word-spacing:5.440000pt;}
.ws30_c00290{word-spacing:6.912000pt;}
.ws28_c00290{word-spacing:6.976000pt;}
.ws31_c00290{word-spacing:7.232000pt;}
.ws2d_c00290{word-spacing:7.360000pt;}
.ws2c_c00290{word-spacing:8.896000pt;}
.ws24_c00290{word-spacing:8.960000pt;}
.ws29_c00290{word-spacing:9.280000pt;}
.ws33_c00290{word-spacing:10.688000pt;}
.ws36_c00290{word-spacing:10.794880pt;}
.ws25_c00290{word-spacing:10.816000pt;}
.ws27_c00290{word-spacing:10.880000pt;}
.ws34_c00290{word-spacing:11.062080pt;}
.ws2f_c00290{word-spacing:12.416000pt;}
.ws2e_c00290{word-spacing:12.736000pt;}
.ws18_c00290{word-spacing:12.800000pt;}
.ws19_c00290{word-spacing:13.056000pt;}
.ws23_c00290{word-spacing:14.976000pt;}
.ws22_c00290{word-spacing:15.040000pt;}
.ws10_c00290{word-spacing:16.640000pt;}
.ws11_c00290{word-spacing:16.832000pt;}
.wsf_c00290{word-spacing:16.960000pt;}
.wse_c00290{word-spacing:17.856000pt;}
.ws2a_c00290{word-spacing:19.840000pt;}
.ws1b_c00290{word-spacing:21.376000pt;}
.ws1a_c00290{word-spacing:21.440000pt;}
._4_c00290{margin-left:-4.115200pt;}
._1_c00290{margin-left:-0.940800pt;}
._0_c00290{width:1.084800pt;}
._3_c00290{width:2.368000pt;}
._8_c00290{width:6.912000pt;}
._7_c00290{width:10.816000pt;}
._2_c00290{width:17.728000pt;}
._5_c00290{width:19.968000pt;}
._6_c00290{width:20.988800pt;}
.fs4_c00290{font-size:34.560000pt;}
.fs2_c00290{font-size:42.560000pt;}
.fs3_c00290{font-size:45.440000pt;}
.fs0_c00290{font-size:48.000000pt;}
.fs5_c00290{font-size:53.440000pt;}
.fs1_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y27_c00290{bottom:50.880000pt;}
.y26_c00290{bottom:102.240000pt;}
.y25_c00290{bottom:112.876000pt;}
.y24_c00290{bottom:132.880000pt;}
.y28_c00290{bottom:144.160000pt;}
.y23_c00290{bottom:185.600000pt;}
.y22_c00290{bottom:213.200000pt;}
.y21_c00290{bottom:240.800000pt;}
.y20_c00290{bottom:268.400000pt;}
.y1f_c00290{bottom:296.000000pt;}
.y1e_c00290{bottom:323.520000pt;}
.y1d_c00290{bottom:351.120000pt;}
.y1c_c00290{bottom:378.720000pt;}
.y1b_c00290{bottom:406.320000pt;}
.y1a_c00290{bottom:433.920000pt;}
.y19_c00290{bottom:461.520000pt;}
.y18_c00290{bottom:489.120000pt;}
.y17_c00290{bottom:516.720000pt;}
.y16_c00290{bottom:544.480000pt;}
.y15_c00290{bottom:572.480000pt;}
.y14_c00290{bottom:600.080000pt;}
.y13_c00290{bottom:627.680000pt;}
.y12_c00290{bottom:655.280000pt;}
.y11_c00290{bottom:682.880000pt;}
.y10_c00290{bottom:710.480000pt;}
.yf_c00290{bottom:738.080000pt;}
.ye_c00290{bottom:765.680000pt;}
.yd_c00290{bottom:793.280000pt;}
.yc_c00290{bottom:820.880000pt;}
.yb_c00290{bottom:848.560000pt;}
.ya_c00290{bottom:876.560000pt;}
.y9_c00290{bottom:904.160000pt;}
.y8_c00290{bottom:931.760000pt;}
.y7_c00290{bottom:959.360000pt;}
.y6_c00290{bottom:986.960000pt;}
.y5_c00290{bottom:1005.360000pt;}
.y4_c00290{bottom:1023.040000pt;}
.y3_c00290{bottom:1036.804000pt;}
.y2_c00290{bottom:1050.640000pt;}
.y1_c00290{bottom:1064.400000pt;}
.h8_c00290{height:33.918750pt;}
.h7_c00290{height:44.468750pt;}
.h3_c00290{height:47.085938pt;}
.h2_c00290{height:47.109375pt;}
.h9_c00290{height:52.448437pt;}
.h4_c00290{height:62.812500pt;}
.h5_c00290{height:65.770312pt;}
.h6_c00290{height:127.593750pt;}
.h0_c00290{height:1122.560000pt;}
.h1_c00290{height:1122.666667pt;}
.w0_c00290{width:793.840000pt;}
.w1_c00290{width:794.000000pt;}
.x0_c00290{left:0.000000pt;}
.x3_c00290{left:113.440000pt;}
.x2_c00290{left:377.920000pt;}
.x1_c00290{left:396.960000pt;}
.x4_c00290{left:656.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_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_67ac72a77a991dcb2635f4c9.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_6aa29427090d0f1695aae066.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:3.333984;font-style:normal;font-weight:normal;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_2ad74b17d7065537f955ef2d.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;}
@font-face{font-family:ff5_c00291;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00291{font-family:ff5_c00291;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00291;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00291{font-family:ff6_c00291;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00291{vertical-align:-61.938000px;}
.v8_c00291{vertical-align:-20.880000px;}
.v6_c00291{vertical-align:-14.760000px;}
.v4_c00291{vertical-align:-10.440000px;}
.v0_c00291{vertical-align:0.000000px;}
.v7_c00291{vertical-align:14.760000px;}
.v2_c00291{vertical-align:27.000000px;}
.v5_c00291{vertical-align:36.360000px;}
.v3_c00291{vertical-align:42.120000px;}
.ls17_c00291{letter-spacing:-0.432000px;}
.ls19_c00291{letter-spacing:-0.360000px;}
.ls15_c00291{letter-spacing:-0.288000px;}
.ls16_c00291{letter-spacing:-0.216000px;}
.ls18_c00291{letter-spacing:-0.072000px;}
.ls1a_c00291{letter-spacing:-0.060120px;}
.ls13_c00291{letter-spacing:0.000000px;}
.ls2_c00291{letter-spacing:0.072000px;}
.ls10_c00291{letter-spacing:0.086400px;}
.ls14_c00291{letter-spacing:0.102240px;}
.lsf_c00291{letter-spacing:0.144000px;}
.ls3_c00291{letter-spacing:0.180000px;}
.ls1b_c00291{letter-spacing:0.180360px;}
.ls9_c00291{letter-spacing:0.191520px;}
.ls11_c00291{letter-spacing:0.360000px;}
.ls4_c00291{letter-spacing:0.720000px;}
.lse_c00291{letter-spacing:2.160000px;}
.ls5_c00291{letter-spacing:2.282040px;}
.ls12_c00291{letter-spacing:3.667320px;}
.ls1_c00291{letter-spacing:5.400000px;}
.ls6_c00291{letter-spacing:11.160000px;}
.ls7_c00291{letter-spacing:13.680000px;}
.ls8_c00291{letter-spacing:14.040000px;}
.lsa_c00291{letter-spacing:15.840000px;}
.lsd_c00291{letter-spacing:20.016000px;}
.lsb_c00291{letter-spacing:22.601520px;}
.lsc_c00291{letter-spacing:22.961520px;}
.ls0_c00291{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00291{word-spacing:-72.000000px;}
.ws2_c00291{word-spacing:-51.222240px;}
.ws1_c00291{word-spacing:-51.120000px;}
.ws8_c00291{word-spacing:-18.072000px;}
.ws0_c00291{word-spacing:-18.000000px;}
.ws9_c00291{word-spacing:-17.928000px;}
.ws4_c00291{word-spacing:-17.784000px;}
.ws5_c00291{word-spacing:-17.568000px;}
.wsc_c00291{word-spacing:-15.210360px;}
.wsb_c00291{word-spacing:-15.030000px;}
.ws6_c00291{word-spacing:-12.161520px;}
.wsa_c00291{word-spacing:-9.720000px;}
.ws36_c00291{word-spacing:-0.180360px;}
.wse_c00291{word-spacing:-0.162000px;}
.ws19_c00291{word-spacing:-0.144000px;}
.ws16_c00291{word-spacing:-0.072000px;}
.ws34_c00291{word-spacing:-0.060120px;}
.wsd_c00291{word-spacing:0.000000px;}
.ws35_c00291{word-spacing:0.180360px;}
.ws1b_c00291{word-spacing:0.288000px;}
.ws30_c00291{word-spacing:0.360000px;}
.ws21_c00291{word-spacing:0.648000px;}
.ws17_c00291{word-spacing:0.720000px;}
.ws28_c00291{word-spacing:1.728000px;}
.ws27_c00291{word-spacing:1.800000px;}
.ws25_c00291{word-spacing:2.088000px;}
.ws24_c00291{word-spacing:2.160000px;}
.ws33_c00291{word-spacing:3.727440px;}
.ws26_c00291{word-spacing:3.888000px;}
.ws7_c00291{word-spacing:4.176000px;}
.ws32_c00291{word-spacing:5.040000px;}
.ws10_c00291{word-spacing:5.256000px;}
.wsf_c00291{word-spacing:5.328000px;}
.ws11_c00291{word-spacing:5.400000px;}
.ws18_c00291{word-spacing:5.688000px;}
.ws1a_c00291{word-spacing:5.760000px;}
.ws2b_c00291{word-spacing:7.128000px;}
.ws2a_c00291{word-spacing:7.200000px;}
.ws1e_c00291{word-spacing:7.848000px;}
.ws1f_c00291{word-spacing:7.920000px;}
.ws29_c00291{word-spacing:10.800000px;}
.ws15_c00291{word-spacing:11.088000px;}
.ws14_c00291{word-spacing:11.160000px;}
.ws1d_c00291{word-spacing:13.608000px;}
.ws1c_c00291{word-spacing:13.680000px;}
.ws20_c00291{word-spacing:15.840000px;}
.ws2c_c00291{word-spacing:16.776000px;}
.ws2d_c00291{word-spacing:19.008000px;}
.ws2e_c00291{word-spacing:19.080000px;}
.ws22_c00291{word-spacing:24.408000px;}
.ws23_c00291{word-spacing:24.480000px;}
.ws31_c00291{word-spacing:25.848000px;}
.ws2f_c00291{word-spacing:25.920000px;}
.ws13_c00291{word-spacing:30.888000px;}
.ws12_c00291{word-spacing:31.320000px;}
._7_c00291{margin-left:-5.976000px;}
._6_c00291{margin-left:-4.824000px;}
._0_c00291{margin-left:-1.080000px;}
._1_c00291{width:1.008000px;}
._8_c00291{width:2.152800px;}
._4_c00291{width:3.168000px;}
._2_c00291{width:5.832000px;}
._9_c00291{width:9.849600px;}
._a_c00291{width:11.109600px;}
._3_c00291{width:13.032000px;}
._5_c00291{width:15.445440px;}
._b_c00291{width:16.659360px;}
._d_c00291{width:25.560000px;}
._c_c00291{width:26.784000px;}
.fc0_c00291{color:rgb(0,0,0);}
.fs5_c00291{font-size:38.880000px;}
.fs4_c00291{font-size:42.120000px;}
.fs2_c00291{font-size:47.880000px;}
.fs3_c00291{font-size:51.120000px;}
.fs0_c00291{font-size:54.000000px;}
.fs6_c00291{font-size:60.120000px;}
.fs1_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y25_c00291{bottom:57.240000px;}
.y24_c00291{bottom:109.795680px;}
.y23_c00291{bottom:132.210000px;}
.y26_c00291{bottom:144.900000px;}
.y22_c00291{bottom:222.660000px;}
.y21_c00291{bottom:254.430000px;}
.y20_c00291{bottom:286.830000px;}
.y1f_c00291{bottom:317.880000px;}
.y1e_c00291{bottom:348.930000px;}
.y1d_c00291{bottom:380.070000px;}
.y1c_c00291{bottom:411.750000px;}
.y1b_c00291{bottom:443.250000px;}
.y1a_c00291{bottom:474.300000px;}
.y19_c00291{bottom:505.350000px;}
.y18_c00291{bottom:536.400000px;}
.y17_c00291{bottom:567.450000px;}
.y16_c00291{bottom:598.500000px;}
.y15_c00291{bottom:629.550000px;}
.y14_c00291{bottom:660.600000px;}
.y13_c00291{bottom:691.650000px;}
.y12_c00291{bottom:722.700000px;}
.y11_c00291{bottom:753.930000px;}
.y10_c00291{bottom:785.520000px;}
.yf_c00291{bottom:817.020000px;}
.ye_c00291{bottom:848.070000px;}
.yd_c00291{bottom:879.120000px;}
.yc_c00291{bottom:910.170000px;}
.yb_c00291{bottom:941.220000px;}
.ya_c00291{bottom:972.270000px;}
.y9_c00291{bottom:1003.320000px;}
.y8_c00291{bottom:1033.110000px;}
.y7_c00291{bottom:1042.200000px;}
.y6_c00291{bottom:1079.280000px;}
.y5_c00291{bottom:1110.330000px;}
.y4_c00291{bottom:1131.030000px;}
.y3_c00291{bottom:1150.915500px;}
.y2_c00291{bottom:1166.400000px;}
.y1_c00291{bottom:1197.450000px;}
.h8_c00291{height:38.158594px;}
.h2_c00291{height:52.998047px;}
.h9_c00291{height:59.004492px;}
.h3_c00291{height:70.664062px;}
.h6_c00291{height:73.991602px;}
.h7_c00291{height:143.542969px;}
.h4_c00291{height:144.035508px;}
.h5_c00291{height:179.902969px;}
.h0_c00291{height:1262.880000px;}
.h1_c00291{height:1263.000000px;}
.w0_c00291{width:893.070000px;}
.w1_c00291{width:893.250000px;}
.x0_c00291{left:0.000000px;}
.x2_c00291{left:127.620000px;}
.x1_c00291{left:446.580000px;}
.x3_c00291{left:680.130000px;}
@media print{
.v1_c00291{vertical-align:-55.056000pt;}
.v8_c00291{vertical-align:-18.560000pt;}
.v6_c00291{vertical-align:-13.120000pt;}
.v4_c00291{vertical-align:-9.280000pt;}
.v0_c00291{vertical-align:0.000000pt;}
.v7_c00291{vertical-align:13.120000pt;}
.v2_c00291{vertical-align:24.000000pt;}
.v5_c00291{vertical-align:32.320000pt;}
.v3_c00291{vertical-align:37.440000pt;}
.ls17_c00291{letter-spacing:-0.384000pt;}
.ls19_c00291{letter-spacing:-0.320000pt;}
.ls15_c00291{letter-spacing:-0.256000pt;}
.ls16_c00291{letter-spacing:-0.192000pt;}
.ls18_c00291{letter-spacing:-0.064000pt;}
.ls1a_c00291{letter-spacing:-0.053440pt;}
.ls13_c00291{letter-spacing:0.000000pt;}
.ls2_c00291{letter-spacing:0.064000pt;}
.ls10_c00291{letter-spacing:0.076800pt;}
.ls14_c00291{letter-spacing:0.090880pt;}
.lsf_c00291{letter-spacing:0.128000pt;}
.ls3_c00291{letter-spacing:0.160000pt;}
.ls1b_c00291{letter-spacing:0.160320pt;}
.ls9_c00291{letter-spacing:0.170240pt;}
.ls11_c00291{letter-spacing:0.320000pt;}
.ls4_c00291{letter-spacing:0.640000pt;}
.lse_c00291{letter-spacing:1.920000pt;}
.ls5_c00291{letter-spacing:2.028480pt;}
.ls12_c00291{letter-spacing:3.259840pt;}
.ls1_c00291{letter-spacing:4.800000pt;}
.ls6_c00291{letter-spacing:9.920000pt;}
.ls7_c00291{letter-spacing:12.160000pt;}
.ls8_c00291{letter-spacing:12.480000pt;}
.lsa_c00291{letter-spacing:14.080000pt;}
.lsd_c00291{letter-spacing:17.792000pt;}
.lsb_c00291{letter-spacing:20.090240pt;}
.lsc_c00291{letter-spacing:20.410240pt;}
.ls0_c00291{letter-spacing:284.016000pt;}
.ws3_c00291{word-spacing:-64.000000pt;}
.ws2_c00291{word-spacing:-45.530880pt;}
.ws1_c00291{word-spacing:-45.440000pt;}
.ws8_c00291{word-spacing:-16.064000pt;}
.ws0_c00291{word-spacing:-16.000000pt;}
.ws9_c00291{word-spacing:-15.936000pt;}
.ws4_c00291{word-spacing:-15.808000pt;}
.ws5_c00291{word-spacing:-15.616000pt;}
.wsc_c00291{word-spacing:-13.520320pt;}
.wsb_c00291{word-spacing:-13.360000pt;}
.ws6_c00291{word-spacing:-10.810240pt;}
.wsa_c00291{word-spacing:-8.640000pt;}
.ws36_c00291{word-spacing:-0.160320pt;}
.wse_c00291{word-spacing:-0.144000pt;}
.ws19_c00291{word-spacing:-0.128000pt;}
.ws16_c00291{word-spacing:-0.064000pt;}
.ws34_c00291{word-spacing:-0.053440pt;}
.wsd_c00291{word-spacing:0.000000pt;}
.ws35_c00291{word-spacing:0.160320pt;}
.ws1b_c00291{word-spacing:0.256000pt;}
.ws30_c00291{word-spacing:0.320000pt;}
.ws21_c00291{word-spacing:0.576000pt;}
.ws17_c00291{word-spacing:0.640000pt;}
.ws28_c00291{word-spacing:1.536000pt;}
.ws27_c00291{word-spacing:1.600000pt;}
.ws25_c00291{word-spacing:1.856000pt;}
.ws24_c00291{word-spacing:1.920000pt;}
.ws33_c00291{word-spacing:3.313280pt;}
.ws26_c00291{word-spacing:3.456000pt;}
.ws7_c00291{word-spacing:3.712000pt;}
.ws32_c00291{word-spacing:4.480000pt;}
.ws10_c00291{word-spacing:4.672000pt;}
.wsf_c00291{word-spacing:4.736000pt;}
.ws11_c00291{word-spacing:4.800000pt;}
.ws18_c00291{word-spacing:5.056000pt;}
.ws1a_c00291{word-spacing:5.120000pt;}
.ws2b_c00291{word-spacing:6.336000pt;}
.ws2a_c00291{word-spacing:6.400000pt;}
.ws1e_c00291{word-spacing:6.976000pt;}
.ws1f_c00291{word-spacing:7.040000pt;}
.ws29_c00291{word-spacing:9.600000pt;}
.ws15_c00291{word-spacing:9.856000pt;}
.ws14_c00291{word-spacing:9.920000pt;}
.ws1d_c00291{word-spacing:12.096000pt;}
.ws1c_c00291{word-spacing:12.160000pt;}
.ws20_c00291{word-spacing:14.080000pt;}
.ws2c_c00291{word-spacing:14.912000pt;}
.ws2d_c00291{word-spacing:16.896000pt;}
.ws2e_c00291{word-spacing:16.960000pt;}
.ws22_c00291{word-spacing:21.696000pt;}
.ws23_c00291{word-spacing:21.760000pt;}
.ws31_c00291{word-spacing:22.976000pt;}
.ws2f_c00291{word-spacing:23.040000pt;}
.ws13_c00291{word-spacing:27.456000pt;}
.ws12_c00291{word-spacing:27.840000pt;}
._7_c00291{margin-left:-5.312000pt;}
._6_c00291{margin-left:-4.288000pt;}
._0_c00291{margin-left:-0.960000pt;}
._1_c00291{width:0.896000pt;}
._8_c00291{width:1.913600pt;}
._4_c00291{width:2.816000pt;}
._2_c00291{width:5.184000pt;}
._9_c00291{width:8.755200pt;}
._a_c00291{width:9.875200pt;}
._3_c00291{width:11.584000pt;}
._5_c00291{width:13.729280pt;}
._b_c00291{width:14.808320pt;}
._d_c00291{width:22.720000pt;}
._c_c00291{width:23.808000pt;}
.fs5_c00291{font-size:34.560000pt;}
.fs4_c00291{font-size:37.440000pt;}
.fs2_c00291{font-size:42.560000pt;}
.fs3_c00291{font-size:45.440000pt;}
.fs0_c00291{font-size:48.000000pt;}
.fs6_c00291{font-size:53.440000pt;}
.fs1_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y25_c00291{bottom:50.880000pt;}
.y24_c00291{bottom:97.596160pt;}
.y23_c00291{bottom:117.520000pt;}
.y26_c00291{bottom:128.800000pt;}
.y22_c00291{bottom:197.920000pt;}
.y21_c00291{bottom:226.160000pt;}
.y20_c00291{bottom:254.960000pt;}
.y1f_c00291{bottom:282.560000pt;}
.y1e_c00291{bottom:310.160000pt;}
.y1d_c00291{bottom:337.840000pt;}
.y1c_c00291{bottom:366.000000pt;}
.y1b_c00291{bottom:394.000000pt;}
.y1a_c00291{bottom:421.600000pt;}
.y19_c00291{bottom:449.200000pt;}
.y18_c00291{bottom:476.800000pt;}
.y17_c00291{bottom:504.400000pt;}
.y16_c00291{bottom:532.000000pt;}
.y15_c00291{bottom:559.600000pt;}
.y14_c00291{bottom:587.200000pt;}
.y13_c00291{bottom:614.800000pt;}
.y12_c00291{bottom:642.400000pt;}
.y11_c00291{bottom:670.160000pt;}
.y10_c00291{bottom:698.240000pt;}
.yf_c00291{bottom:726.240000pt;}
.ye_c00291{bottom:753.840000pt;}
.yd_c00291{bottom:781.440000pt;}
.yc_c00291{bottom:809.040000pt;}
.yb_c00291{bottom:836.640000pt;}
.ya_c00291{bottom:864.240000pt;}
.y9_c00291{bottom:891.840000pt;}
.y8_c00291{bottom:918.320000pt;}
.y7_c00291{bottom:926.400000pt;}
.y6_c00291{bottom:959.360000pt;}
.y5_c00291{bottom:986.960000pt;}
.y4_c00291{bottom:1005.360000pt;}
.y3_c00291{bottom:1023.036000pt;}
.y2_c00291{bottom:1036.800000pt;}
.y1_c00291{bottom:1064.400000pt;}
.h8_c00291{height:33.918750pt;}
.h2_c00291{height:47.109375pt;}
.h9_c00291{height:52.448437pt;}
.h3_c00291{height:62.812500pt;}
.h6_c00291{height:65.770313pt;}
.h7_c00291{height:127.593750pt;}
.h4_c00291{height:128.031563pt;}
.h5_c00291{height:159.913750pt;}
.h0_c00291{height:1122.560000pt;}
.h1_c00291{height:1122.666667pt;}
.w0_c00291{width:793.840000pt;}
.w1_c00291{width:794.000000pt;}
.x0_c00291{left:0.000000pt;}
.x2_c00291{left:113.440000pt;}
.x1_c00291{left:396.960000pt;}
.x3_c00291{left:604.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_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_d785c71f43d12e27e18fb5f1.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_da36cd52c377fa8ab95604e0.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;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_c00292;src:url('chunks/assets/font_fbefb4ec153b0dc4d4cb4630.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7_c00292{vertical-align:-20.880000px;}
.v5_c00292{vertical-align:-14.760000px;}
.v2_c00292{vertical-align:-10.440000px;}
.v0_c00292{vertical-align:0.000000px;}
.v6_c00292{vertical-align:14.760000px;}
.v4_c00292{vertical-align:27.000000px;}
.v3_c00292{vertical-align:36.360000px;}
.v1_c00292{vertical-align:42.120000px;}
.ls14_c00292{letter-spacing:-0.288000px;}
.ls1b_c00292{letter-spacing:-0.180360px;}
.ls13_c00292{letter-spacing:-0.144000px;}
.ls1a_c00292{letter-spacing:-0.120240px;}
.ls12_c00292{letter-spacing:-0.108000px;}
.ls16_c00292{letter-spacing:-0.102240px;}
.ls17_c00292{letter-spacing:-0.072000px;}
.ls19_c00292{letter-spacing:-0.060120px;}
.ls11_c00292{letter-spacing:0.000000px;}
.ls0_c00292{letter-spacing:0.072000px;}
.ls15_c00292{letter-spacing:0.102240px;}
.ls5_c00292{letter-spacing:0.144000px;}
.ls7_c00292{letter-spacing:0.180000px;}
.ls1c_c00292{letter-spacing:0.180360px;}
.lsa_c00292{letter-spacing:0.191520px;}
.ls18_c00292{letter-spacing:0.360000px;}
.ls1_c00292{letter-spacing:0.720000px;}
.ls2_c00292{letter-spacing:1.922040px;}
.ls6_c00292{letter-spacing:2.160000px;}
.lse_c00292{letter-spacing:2.880000px;}
.ls8_c00292{letter-spacing:4.320000px;}
.ls4_c00292{letter-spacing:6.480000px;}
.lsd_c00292{letter-spacing:7.200000px;}
.lsf_c00292{letter-spacing:12.324600px;}
.ls10_c00292{letter-spacing:12.390732px;}
.ls3_c00292{letter-spacing:13.320000px;}
.ls9_c00292{letter-spacing:15.480000px;}
.lsc_c00292{letter-spacing:20.016000px;}
.lsb_c00292{letter-spacing:22.961520px;}
.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;}
}
.ws4_c00292{word-spacing:-72.000000px;}
.ws3_c00292{word-spacing:-51.222240px;}
.ws2_c00292{word-spacing:-51.120000px;}
.ws5_c00292{word-spacing:-51.017760px;}
.ws7_c00292{word-spacing:-18.360000px;}
.wsa_c00292{word-spacing:-18.144000px;}
.ws0_c00292{word-spacing:-18.072000px;}
.ws1_c00292{word-spacing:-18.000000px;}
.ws6_c00292{word-spacing:-17.928000px;}
.wsc_c00292{word-spacing:-15.030000px;}
.ws8_c00292{word-spacing:-12.161520px;}
.wsb_c00292{word-spacing:-9.720000px;}
.ws17_c00292{word-spacing:-0.432000px;}
.ws41_c00292{word-spacing:-0.420840px;}
.ws2d_c00292{word-spacing:-0.144000px;}
.ws1a_c00292{word-spacing:-0.072000px;}
.ws40_c00292{word-spacing:-0.060120px;}
.wsd_c00292{word-spacing:0.000000px;}
.ws3b_c00292{word-spacing:0.060120px;}
.ws14_c00292{word-spacing:0.144000px;}
.wsf_c00292{word-spacing:0.162000px;}
.ws3e_c00292{word-spacing:0.180360px;}
.wse_c00292{word-spacing:0.270000px;}
.ws1d_c00292{word-spacing:0.288000px;}
.ws20_c00292{word-spacing:0.720000px;}
.ws2a_c00292{word-spacing:1.296000px;}
.ws28_c00292{word-spacing:1.368000px;}
.ws29_c00292{word-spacing:1.440000px;}
.ws2b_c00292{word-spacing:1.800000px;}
.ws21_c00292{word-spacing:2.088000px;}
.ws23_c00292{word-spacing:2.808000px;}
.ws24_c00292{word-spacing:2.880000px;}
.ws39_c00292{word-spacing:3.168000px;}
.ws38_c00292{word-spacing:3.240000px;}
.ws35_c00292{word-spacing:3.600000px;}
.ws9_c00292{word-spacing:4.176000px;}
.ws25_c00292{word-spacing:4.248000px;}
.ws34_c00292{word-spacing:4.320000px;}
.ws1b_c00292{word-spacing:5.040000px;}
.ws1c_c00292{word-spacing:5.256000px;}
.ws19_c00292{word-spacing:5.400000px;}
.ws16_c00292{word-spacing:5.688000px;}
.ws2e_c00292{word-spacing:7.128000px;}
.ws30_c00292{word-spacing:8.136000px;}
.ws2f_c00292{word-spacing:8.208000px;}
.ws2c_c00292{word-spacing:8.928000px;}
.ws22_c00292{word-spacing:9.720000px;}
.ws31_c00292{word-spacing:10.656000px;}
.ws36_c00292{word-spacing:10.728000px;}
.ws37_c00292{word-spacing:10.800000px;}
.ws33_c00292{word-spacing:11.088000px;}
.ws32_c00292{word-spacing:11.160000px;}
.ws3c_c00292{word-spacing:12.024000px;}
.ws3f_c00292{word-spacing:12.144240px;}
.ws3d_c00292{word-spacing:12.444840px;}
.ws1e_c00292{word-spacing:13.176000px;}
.ws1f_c00292{word-spacing:13.248000px;}
.ws10_c00292{word-spacing:13.320000px;}
.ws27_c00292{word-spacing:15.408000px;}
.ws26_c00292{word-spacing:15.480000px;}
.ws3a_c00292{word-spacing:16.128000px;}
.ws18_c00292{word-spacing:16.920000px;}
.ws12_c00292{word-spacing:22.248000px;}
.ws11_c00292{word-spacing:22.320000px;}
.ws15_c00292{word-spacing:31.608000px;}
.ws13_c00292{word-spacing:31.680000px;}
._9_c00292{margin-left:-5.493600px;}
._8_c00292{margin-left:-4.456800px;}
._1_c00292{margin-left:-1.058400px;}
._0_c00292{width:1.220400px;}
._7_c00292{width:2.345040px;}
._3_c00292{width:4.608000px;}
._4_c00292{width:6.120000px;}
._a_c00292{width:7.927200px;}
._5_c00292{width:9.432000px;}
._b_c00292{width:10.584000px;}
._2_c00292{width:12.484800px;}
._6_c00292{width:15.580800px;}
.fc0_c00292{color:rgb(0,0,0);}
.fs5_c00292{font-size:38.880000px;}
.fs3_c00292{font-size:42.120000px;}
.fs4_c00292{font-size:47.880000px;}
.fs2_c00292{font-size:51.120000px;}
.fs0_c00292{font-size:54.000000px;}
.fs6_c00292{font-size:60.120000px;}
.fs1_c00292{font-size:72.000000px;}
.y0_c00292{bottom:0.000000px;}
.y28_c00292{bottom:57.240000px;}
.y27_c00292{bottom:109.795680px;}
.y26_c00292{bottom:132.210000px;}
.y29_c00292{bottom:144.900000px;}
.y25_c00292{bottom:180.900000px;}
.y24_c00292{bottom:211.950000px;}
.y23_c00292{bottom:243.000000px;}
.y22_c00292{bottom:274.050000px;}
.y21_c00292{bottom:305.100000px;}
.y20_c00292{bottom:336.150000px;}
.y1f_c00292{bottom:367.200000px;}
.y1e_c00292{bottom:398.250000px;}
.y1d_c00292{bottom:429.480000px;}
.y1c_c00292{bottom:461.070000px;}
.y1b_c00292{bottom:492.570000px;}
.y1a_c00292{bottom:523.620000px;}
.y19_c00292{bottom:554.670000px;}
.y18_c00292{bottom:585.720000px;}
.y17_c00292{bottom:616.770000px;}
.y16_c00292{bottom:647.820000px;}
.y15_c00292{bottom:678.870000px;}
.y14_c00292{bottom:709.920000px;}
.y13_c00292{bottom:739.710000px;}
.y12_c00292{bottom:748.800000px;}
.y11_c00292{bottom:785.880000px;}
.y10_c00292{bottom:815.850000px;}
.yf_c00292{bottom:824.940000px;}
.ye_c00292{bottom:861.930000px;}
.yd_c00292{bottom:892.980000px;}
.yc_c00292{bottom:924.030000px;}
.yb_c00292{bottom:955.080000px;}
.ya_c00292{bottom:986.130000px;}
.y9_c00292{bottom:1017.180000px;}
.y8_c00292{bottom:1048.230000px;}
.y7_c00292{bottom:1079.280000px;}
.y6_c00292{bottom:1110.330000px;}
.y5_c00292{bottom:1131.030000px;}
.y4_c00292{bottom:1150.920000px;}
.y3_c00292{bottom:1166.404500px;}
.y2_c00292{bottom:1181.970000px;}
.y1_c00292{bottom:1197.450000px;}
.ha_c00292{height:38.158594px;}
.h3_c00292{height:52.971680px;}
.h2_c00292{height:52.998047px;}
.hb_c00292{height:59.004492px;}
.h4_c00292{height:70.664062px;}
.h8_c00292{height:73.991602px;}
.h9_c00292{height:143.542969px;}
.h5_c00292{height:144.035508px;}
.h7_c00292{height:179.902969px;}
.h6_c00292{height:180.395508px;}
.h0_c00292{height:1262.880000px;}
.h1_c00292{height:1263.000000px;}
.w0_c00292{width:893.070000px;}
.w1_c00292{width:893.250000px;}
.x0_c00292{left:0.000000px;}
.x3_c00292{left:127.620000px;}
.x4_c00292{left:231.210000px;}
.x6_c00292{left:291.510000px;}
.x2_c00292{left:425.160000px;}
.x1_c00292{left:446.580000px;}
.x5_c00292{left:501.120000px;}
.x7_c00292{left:738.540000px;}
@media print{
.v7_c00292{vertical-align:-18.560000pt;}
.v5_c00292{vertical-align:-13.120000pt;}
.v2_c00292{vertical-align:-9.280000pt;}
.v0_c00292{vertical-align:0.000000pt;}
.v6_c00292{vertical-align:13.120000pt;}
.v4_c00292{vertical-align:24.000000pt;}
.v3_c00292{vertical-align:32.320000pt;}
.v1_c00292{vertical-align:37.440000pt;}
.ls14_c00292{letter-spacing:-0.256000pt;}
.ls1b_c00292{letter-spacing:-0.160320pt;}
.ls13_c00292{letter-spacing:-0.128000pt;}
.ls1a_c00292{letter-spacing:-0.106880pt;}
.ls12_c00292{letter-spacing:-0.096000pt;}
.ls16_c00292{letter-spacing:-0.090880pt;}
.ls17_c00292{letter-spacing:-0.064000pt;}
.ls19_c00292{letter-spacing:-0.053440pt;}
.ls11_c00292{letter-spacing:0.000000pt;}
.ls0_c00292{letter-spacing:0.064000pt;}
.ls15_c00292{letter-spacing:0.090880pt;}
.ls5_c00292{letter-spacing:0.128000pt;}
.ls7_c00292{letter-spacing:0.160000pt;}
.ls1c_c00292{letter-spacing:0.160320pt;}
.lsa_c00292{letter-spacing:0.170240pt;}
.ls18_c00292{letter-spacing:0.320000pt;}
.ls1_c00292{letter-spacing:0.640000pt;}
.ls2_c00292{letter-spacing:1.708480pt;}
.ls6_c00292{letter-spacing:1.920000pt;}
.lse_c00292{letter-spacing:2.560000pt;}
.ls8_c00292{letter-spacing:3.840000pt;}
.ls4_c00292{letter-spacing:5.760000pt;}
.lsd_c00292{letter-spacing:6.400000pt;}
.lsf_c00292{letter-spacing:10.955200pt;}
.ls10_c00292{letter-spacing:11.013984pt;}
.ls3_c00292{letter-spacing:11.840000pt;}
.ls9_c00292{letter-spacing:13.760000pt;}
.lsc_c00292{letter-spacing:17.792000pt;}
.lsb_c00292{letter-spacing:20.410240pt;}
.ws4_c00292{word-spacing:-64.000000pt;}
.ws3_c00292{word-spacing:-45.530880pt;}
.ws2_c00292{word-spacing:-45.440000pt;}
.ws5_c00292{word-spacing:-45.349120pt;}
.ws7_c00292{word-spacing:-16.320000pt;}
.wsa_c00292{word-spacing:-16.128000pt;}
.ws0_c00292{word-spacing:-16.064000pt;}
.ws1_c00292{word-spacing:-16.000000pt;}
.ws6_c00292{word-spacing:-15.936000pt;}
.wsc_c00292{word-spacing:-13.360000pt;}
.ws8_c00292{word-spacing:-10.810240pt;}
.wsb_c00292{word-spacing:-8.640000pt;}
.ws17_c00292{word-spacing:-0.384000pt;}
.ws41_c00292{word-spacing:-0.374080pt;}
.ws2d_c00292{word-spacing:-0.128000pt;}
.ws1a_c00292{word-spacing:-0.064000pt;}
.ws40_c00292{word-spacing:-0.053440pt;}
.wsd_c00292{word-spacing:0.000000pt;}
.ws3b_c00292{word-spacing:0.053440pt;}
.ws14_c00292{word-spacing:0.128000pt;}
.wsf_c00292{word-spacing:0.144000pt;}
.ws3e_c00292{word-spacing:0.160320pt;}
.wse_c00292{word-spacing:0.240000pt;}
.ws1d_c00292{word-spacing:0.256000pt;}
.ws20_c00292{word-spacing:0.640000pt;}
.ws2a_c00292{word-spacing:1.152000pt;}
.ws28_c00292{word-spacing:1.216000pt;}
.ws29_c00292{word-spacing:1.280000pt;}
.ws2b_c00292{word-spacing:1.600000pt;}
.ws21_c00292{word-spacing:1.856000pt;}
.ws23_c00292{word-spacing:2.496000pt;}
.ws24_c00292{word-spacing:2.560000pt;}
.ws39_c00292{word-spacing:2.816000pt;}
.ws38_c00292{word-spacing:2.880000pt;}
.ws35_c00292{word-spacing:3.200000pt;}
.ws9_c00292{word-spacing:3.712000pt;}
.ws25_c00292{word-spacing:3.776000pt;}
.ws34_c00292{word-spacing:3.840000pt;}
.ws1b_c00292{word-spacing:4.480000pt;}
.ws1c_c00292{word-spacing:4.672000pt;}
.ws19_c00292{word-spacing:4.800000pt;}
.ws16_c00292{word-spacing:5.056000pt;}
.ws2e_c00292{word-spacing:6.336000pt;}
.ws30_c00292{word-spacing:7.232000pt;}
.ws2f_c00292{word-spacing:7.296000pt;}
.ws2c_c00292{word-spacing:7.936000pt;}
.ws22_c00292{word-spacing:8.640000pt;}
.ws31_c00292{word-spacing:9.472000pt;}
.ws36_c00292{word-spacing:9.536000pt;}
.ws37_c00292{word-spacing:9.600000pt;}
.ws33_c00292{word-spacing:9.856000pt;}
.ws32_c00292{word-spacing:9.920000pt;}
.ws3c_c00292{word-spacing:10.688000pt;}
.ws3f_c00292{word-spacing:10.794880pt;}
.ws3d_c00292{word-spacing:11.062080pt;}
.ws1e_c00292{word-spacing:11.712000pt;}
.ws1f_c00292{word-spacing:11.776000pt;}
.ws10_c00292{word-spacing:11.840000pt;}
.ws27_c00292{word-spacing:13.696000pt;}
.ws26_c00292{word-spacing:13.760000pt;}
.ws3a_c00292{word-spacing:14.336000pt;}
.ws18_c00292{word-spacing:15.040000pt;}
.ws12_c00292{word-spacing:19.776000pt;}
.ws11_c00292{word-spacing:19.840000pt;}
.ws15_c00292{word-spacing:28.096000pt;}
.ws13_c00292{word-spacing:28.160000pt;}
._9_c00292{margin-left:-4.883200pt;}
._8_c00292{margin-left:-3.961600pt;}
._1_c00292{margin-left:-0.940800pt;}
._0_c00292{width:1.084800pt;}
._7_c00292{width:2.084480pt;}
._3_c00292{width:4.096000pt;}
._4_c00292{width:5.440000pt;}
._a_c00292{width:7.046400pt;}
._5_c00292{width:8.384000pt;}
._b_c00292{width:9.408000pt;}
._2_c00292{width:11.097600pt;}
._6_c00292{width:13.849600pt;}
.fs5_c00292{font-size:34.560000pt;}
.fs3_c00292{font-size:37.440000pt;}
.fs4_c00292{font-size:42.560000pt;}
.fs2_c00292{font-size:45.440000pt;}
.fs0_c00292{font-size:48.000000pt;}
.fs6_c00292{font-size:53.440000pt;}
.fs1_c00292{font-size:64.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y28_c00292{bottom:50.880000pt;}
.y27_c00292{bottom:97.596160pt;}
.y26_c00292{bottom:117.520000pt;}
.y29_c00292{bottom:128.800000pt;}
.y25_c00292{bottom:160.800000pt;}
.y24_c00292{bottom:188.400000pt;}
.y23_c00292{bottom:216.000000pt;}
.y22_c00292{bottom:243.600000pt;}
.y21_c00292{bottom:271.200000pt;}
.y20_c00292{bottom:298.800000pt;}
.y1f_c00292{bottom:326.400000pt;}
.y1e_c00292{bottom:354.000000pt;}
.y1d_c00292{bottom:381.760000pt;}
.y1c_c00292{bottom:409.840000pt;}
.y1b_c00292{bottom:437.840000pt;}
.y1a_c00292{bottom:465.440000pt;}
.y19_c00292{bottom:493.040000pt;}
.y18_c00292{bottom:520.640000pt;}
.y17_c00292{bottom:548.240000pt;}
.y16_c00292{bottom:575.840000pt;}
.y15_c00292{bottom:603.440000pt;}
.y14_c00292{bottom:631.040000pt;}
.y13_c00292{bottom:657.520000pt;}
.y12_c00292{bottom:665.600000pt;}
.y11_c00292{bottom:698.560000pt;}
.y10_c00292{bottom:725.200000pt;}
.yf_c00292{bottom:733.280000pt;}
.ye_c00292{bottom:766.160000pt;}
.yd_c00292{bottom:793.760000pt;}
.yc_c00292{bottom:821.360000pt;}
.yb_c00292{bottom:848.960000pt;}
.ya_c00292{bottom:876.560000pt;}
.y9_c00292{bottom:904.160000pt;}
.y8_c00292{bottom:931.760000pt;}
.y7_c00292{bottom:959.360000pt;}
.y6_c00292{bottom:986.960000pt;}
.y5_c00292{bottom:1005.360000pt;}
.y4_c00292{bottom:1023.040000pt;}
.y3_c00292{bottom:1036.804000pt;}
.y2_c00292{bottom:1050.640000pt;}
.y1_c00292{bottom:1064.400000pt;}
.ha_c00292{height:33.918750pt;}
.h3_c00292{height:47.085938pt;}
.h2_c00292{height:47.109375pt;}
.hb_c00292{height:52.448437pt;}
.h4_c00292{height:62.812500pt;}
.h8_c00292{height:65.770312pt;}
.h9_c00292{height:127.593750pt;}
.h5_c00292{height:128.031563pt;}
.h7_c00292{height:159.913750pt;}
.h6_c00292{height:160.351563pt;}
.h0_c00292{height:1122.560000pt;}
.h1_c00292{height:1122.666667pt;}
.w0_c00292{width:793.840000pt;}
.w1_c00292{width:794.000000pt;}
.x0_c00292{left:0.000000pt;}
.x3_c00292{left:113.440000pt;}
.x4_c00292{left:205.520000pt;}
.x6_c00292{left:259.120000pt;}
.x2_c00292{left:377.920000pt;}
.x1_c00292{left:396.960000pt;}
.x5_c00292{left:445.440000pt;}
.x7_c00292{left:656.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_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_54fbf12378e5a6855da8e948.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.284180;font-style:normal;font-weight:normal;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_8d8a8902b2cd3d47b6057e87.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;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_c00293;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00293{font-family:ff4_c00293;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00293;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00293{font-family:ff5_c00293;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00293;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00293{font-family:ff6_c00293;line-height:1.142090;font-style:normal;font-weight: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_c00293;src:url('chunks/assets/font_2164344dbf808d7e4b0a7ec5.woff2')format("woff");}.ff7_c00293{font-family:ff7_c00293;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:ff8_c00293;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00293{font-family:ff8_c00293;line-height:1.432129;font-style: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);}
.v1_c00293{vertical-align:-61.938000px;}
.v2_c00293{vertical-align:-14.760000px;}
.v0_c00293{vertical-align:0.000000px;}
.v3_c00293{vertical-align:14.760000px;}
.v4_c00293{vertical-align:27.000000px;}
.ls11_c00293{letter-spacing:-0.576000px;}
.lsc_c00293{letter-spacing:-0.216000px;}
.lsd_c00293{letter-spacing:-0.144000px;}
.ls10_c00293{letter-spacing:-0.072000px;}
.lsb_c00293{letter-spacing:0.000000px;}
.ls1_c00293{letter-spacing:0.072000px;}
.ls2_c00293{letter-spacing:0.144000px;}
.lse_c00293{letter-spacing:0.191520px;}
.lsf_c00293{letter-spacing:1.440000px;}
.ls7_c00293{letter-spacing:3.960000px;}
.lsa_c00293{letter-spacing:4.320000px;}
.ls5_c00293{letter-spacing:12.960000px;}
.ls4_c00293{letter-spacing:20.016000px;}
.ls3_c00293{letter-spacing:22.961520px;}
.ls8_c00293{letter-spacing:23.760000px;}
.ls6_c00293{letter-spacing:27.720000px;}
.ls9_c00293{letter-spacing:30.744000px;}
.ls0_c00293{letter-spacing:319.518000px;}
.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:-72.000000px;}
.ws2_c00293{word-spacing:-18.144000px;}
.ws3_c00293{word-spacing:-18.072000px;}
.ws4_c00293{word-spacing:-18.000000px;}
.ws6_c00293{word-spacing:-17.928000px;}
.ws27_c00293{word-spacing:-1.440000px;}
.ws1f_c00293{word-spacing:-0.191520px;}
.ws8_c00293{word-spacing:-0.162000px;}
.ws2b_c00293{word-spacing:-0.144000px;}
.wse_c00293{word-spacing:-0.072000px;}
.ws7_c00293{word-spacing:0.000000px;}
.ws1a_c00293{word-spacing:0.144000px;}
.ws2c_c00293{word-spacing:0.360000px;}
.ws28_c00293{word-spacing:1.080000px;}
.ws10_c00293{word-spacing:1.368000px;}
.ws29_c00293{word-spacing:1.440000px;}
.ws15_c00293{word-spacing:2.880000px;}
.ws25_c00293{word-spacing:3.168000px;}
.ws26_c00293{word-spacing:3.528000px;}
.ws1d_c00293{word-spacing:3.600000px;}
.ws5_c00293{word-spacing:3.816000px;}
.ws20_c00293{word-spacing:3.888000px;}
.ws21_c00293{word-spacing:3.960000px;}
.ws1_c00293{word-spacing:4.176000px;}
.ws2f_c00293{word-spacing:4.248000px;}
.ws17_c00293{word-spacing:4.968000px;}
.ws16_c00293{word-spacing:5.040000px;}
.ws1b_c00293{word-spacing:6.408000px;}
.wsf_c00293{word-spacing:6.480000px;}
.ws18_c00293{word-spacing:6.840000px;}
.ws2e_c00293{word-spacing:7.128000px;}
.ws22_c00293{word-spacing:7.560000px;}
.ws19_c00293{word-spacing:9.000000px;}
.ws9_c00293{word-spacing:11.016000px;}
.wsb_c00293{word-spacing:11.520000px;}
.wsa_c00293{word-spacing:11.736000px;}
.ws12_c00293{word-spacing:12.816000px;}
.ws11_c00293{word-spacing:12.888000px;}
.ws2d_c00293{word-spacing:13.680000px;}
.ws23_c00293{word-spacing:18.936000px;}
.ws1e_c00293{word-spacing:19.368000px;}
.ws24_c00293{word-spacing:19.440000px;}
.ws30_c00293{word-spacing:20.448000px;}
.ws32_c00293{word-spacing:20.520000px;}
.ws31_c00293{word-spacing:21.096000px;}
.ws2a_c00293{word-spacing:23.688000px;}
.wsd_c00293{word-spacing:25.488000px;}
.wsc_c00293{word-spacing:25.560000px;}
.ws14_c00293{word-spacing:27.288000px;}
.ws13_c00293{word-spacing:27.576000px;}
.ws1c_c00293{word-spacing:30.600000px;}
._5_c00293{margin-left:-6.624000px;}
._4_c00293{margin-left:-4.176000px;}
._e_c00293{margin-left:-2.304000px;}
._0_c00293{margin-left:-1.008000px;}
._1_c00293{width:1.152000px;}
._7_c00293{width:5.040000px;}
._d_c00293{width:7.048800px;}
._c_c00293{width:8.064000px;}
._9_c00293{width:11.304000px;}
._a_c00293{width:13.032000px;}
._f_c00293{width:14.040000px;}
._8_c00293{width:15.832800px;}
._b_c00293{width:19.410480px;}
._10_c00293{width:20.520000px;}
._3_c00293{width:24.487200px;}
._2_c00293{width:25.624800px;}
._6_c00293{width:27.864000px;}
.fc0_c00293{color:rgb(0,0,0);}
.fs3_c00293{font-size:47.880000px;}
.fs2_c00293{font-size:51.120000px;}
.fs0_c00293{font-size:54.000000px;}
.fs1_c00293{font-size:72.000000px;}
.y0_c00293{bottom:0.000000px;}
.y26_c00293{bottom:57.240000px;}
.y25_c00293{bottom:111.150000px;}
.y24_c00293{bottom:142.200000px;}
.y23_c00293{bottom:173.250000px;}
.y22_c00293{bottom:204.480000px;}
.y21_c00293{bottom:235.980000px;}
.y20_c00293{bottom:267.030000px;}
.y1f_c00293{bottom:298.170000px;}
.y1e_c00293{bottom:329.670000px;}
.y1d_c00293{bottom:360.720000px;}
.y1c_c00293{bottom:391.770000px;}
.y1b_c00293{bottom:423.000000px;}
.y1a_c00293{bottom:454.500000px;}
.y19_c00293{bottom:485.730000px;}
.y18_c00293{bottom:517.410000px;}
.y17_c00293{bottom:548.820000px;}
.y16_c00293{bottom:579.870000px;}
.y15_c00293{bottom:610.920000px;}
.y14_c00293{bottom:641.970000px;}
.y13_c00293{bottom:673.020000px;}
.y12_c00293{bottom:704.070000px;}
.y11_c00293{bottom:735.120000px;}
.y10_c00293{bottom:766.170000px;}
.yf_c00293{bottom:797.220000px;}
.ye_c00293{bottom:828.270000px;}
.yd_c00293{bottom:859.320000px;}
.yc_c00293{bottom:891.090000px;}
.yb_c00293{bottom:923.490000px;}
.ya_c00293{bottom:954.540000px;}
.y9_c00293{bottom:985.590000px;}
.y8_c00293{bottom:1016.730000px;}
.y7_c00293{bottom:1048.230000px;}
.y6_c00293{bottom:1079.280000px;}
.y5_c00293{bottom:1110.330000px;}
.y4_c00293{bottom:1131.030000px;}
.y3_c00293{bottom:1150.915500px;}
.y2_c00293{bottom:1166.400000px;}
.y1_c00293{bottom:1197.450000px;}
.h5_c00293{height:50.027344px;}
.h2_c00293{height:52.998047px;}
.h3_c00293{height:70.664062px;}
.h6_c00293{height:73.991602px;}
.h4_c00293{height:143.542969px;}
.h0_c00293{height:1262.880000px;}
.h1_c00293{height:1263.000000px;}
.w0_c00293{width:893.070000px;}
.w1_c00293{width:893.250000px;}
.x0_c00293{left:0.000000px;}
.x2_c00293{left:127.620000px;}
.x3_c00293{left:154.620000px;}
.x1_c00293{left:446.580000px;}
@media print{
.v1_c00293{vertical-align:-55.056000pt;}
.v2_c00293{vertical-align:-13.120000pt;}
.v0_c00293{vertical-align:0.000000pt;}
.v3_c00293{vertical-align:13.120000pt;}
.v4_c00293{vertical-align:24.000000pt;}
.ls11_c00293{letter-spacing:-0.512000pt;}
.lsc_c00293{letter-spacing:-0.192000pt;}
.lsd_c00293{letter-spacing:-0.128000pt;}
.ls10_c00293{letter-spacing:-0.064000pt;}
.lsb_c00293{letter-spacing:0.000000pt;}
.ls1_c00293{letter-spacing:0.064000pt;}
.ls2_c00293{letter-spacing:0.128000pt;}
.lse_c00293{letter-spacing:0.170240pt;}
.lsf_c00293{letter-spacing:1.280000pt;}
.ls7_c00293{letter-spacing:3.520000pt;}
.lsa_c00293{letter-spacing:3.840000pt;}
.ls5_c00293{letter-spacing:11.520000pt;}
.ls4_c00293{letter-spacing:17.792000pt;}
.ls3_c00293{letter-spacing:20.410240pt;}
.ls8_c00293{letter-spacing:21.120000pt;}
.ls6_c00293{letter-spacing:24.640000pt;}
.ls9_c00293{letter-spacing:27.328000pt;}
.ls0_c00293{letter-spacing:284.016000pt;}
.ws0_c00293{word-spacing:-64.000000pt;}
.ws2_c00293{word-spacing:-16.128000pt;}
.ws3_c00293{word-spacing:-16.064000pt;}
.ws4_c00293{word-spacing:-16.000000pt;}
.ws6_c00293{word-spacing:-15.936000pt;}
.ws27_c00293{word-spacing:-1.280000pt;}
.ws1f_c00293{word-spacing:-0.170240pt;}
.ws8_c00293{word-spacing:-0.144000pt;}
.ws2b_c00293{word-spacing:-0.128000pt;}
.wse_c00293{word-spacing:-0.064000pt;}
.ws7_c00293{word-spacing:0.000000pt;}
.ws1a_c00293{word-spacing:0.128000pt;}
.ws2c_c00293{word-spacing:0.320000pt;}
.ws28_c00293{word-spacing:0.960000pt;}
.ws10_c00293{word-spacing:1.216000pt;}
.ws29_c00293{word-spacing:1.280000pt;}
.ws15_c00293{word-spacing:2.560000pt;}
.ws25_c00293{word-spacing:2.816000pt;}
.ws26_c00293{word-spacing:3.136000pt;}
.ws1d_c00293{word-spacing:3.200000pt;}
.ws5_c00293{word-spacing:3.392000pt;}
.ws20_c00293{word-spacing:3.456000pt;}
.ws21_c00293{word-spacing:3.520000pt;}
.ws1_c00293{word-spacing:3.712000pt;}
.ws2f_c00293{word-spacing:3.776000pt;}
.ws17_c00293{word-spacing:4.416000pt;}
.ws16_c00293{word-spacing:4.480000pt;}
.ws1b_c00293{word-spacing:5.696000pt;}
.wsf_c00293{word-spacing:5.760000pt;}
.ws18_c00293{word-spacing:6.080000pt;}
.ws2e_c00293{word-spacing:6.336000pt;}
.ws22_c00293{word-spacing:6.720000pt;}
.ws19_c00293{word-spacing:8.000000pt;}
.ws9_c00293{word-spacing:9.792000pt;}
.wsb_c00293{word-spacing:10.240000pt;}
.wsa_c00293{word-spacing:10.432000pt;}
.ws12_c00293{word-spacing:11.392000pt;}
.ws11_c00293{word-spacing:11.456000pt;}
.ws2d_c00293{word-spacing:12.160000pt;}
.ws23_c00293{word-spacing:16.832000pt;}
.ws1e_c00293{word-spacing:17.216000pt;}
.ws24_c00293{word-spacing:17.280000pt;}
.ws30_c00293{word-spacing:18.176000pt;}
.ws32_c00293{word-spacing:18.240000pt;}
.ws31_c00293{word-spacing:18.752000pt;}
.ws2a_c00293{word-spacing:21.056000pt;}
.wsd_c00293{word-spacing:22.656000pt;}
.wsc_c00293{word-spacing:22.720000pt;}
.ws14_c00293{word-spacing:24.256000pt;}
.ws13_c00293{word-spacing:24.512000pt;}
.ws1c_c00293{word-spacing:27.200000pt;}
._5_c00293{margin-left:-5.888000pt;}
._4_c00293{margin-left:-3.712000pt;}
._e_c00293{margin-left:-2.048000pt;}
._0_c00293{margin-left:-0.896000pt;}
._1_c00293{width:1.024000pt;}
._7_c00293{width:4.480000pt;}
._d_c00293{width:6.265600pt;}
._c_c00293{width:7.168000pt;}
._9_c00293{width:10.048000pt;}
._a_c00293{width:11.584000pt;}
._f_c00293{width:12.480000pt;}
._8_c00293{width:14.073600pt;}
._b_c00293{width:17.253760pt;}
._10_c00293{width:18.240000pt;}
._3_c00293{width:21.766400pt;}
._2_c00293{width:22.777600pt;}
._6_c00293{width:24.768000pt;}
.fs3_c00293{font-size:42.560000pt;}
.fs2_c00293{font-size:45.440000pt;}
.fs0_c00293{font-size:48.000000pt;}
.fs1_c00293{font-size:64.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y26_c00293{bottom:50.880000pt;}
.y25_c00293{bottom:98.800000pt;}
.y24_c00293{bottom:126.400000pt;}
.y23_c00293{bottom:154.000000pt;}
.y22_c00293{bottom:181.760000pt;}
.y21_c00293{bottom:209.760000pt;}
.y20_c00293{bottom:237.360000pt;}
.y1f_c00293{bottom:265.040000pt;}
.y1e_c00293{bottom:293.040000pt;}
.y1d_c00293{bottom:320.640000pt;}
.y1c_c00293{bottom:348.240000pt;}
.y1b_c00293{bottom:376.000000pt;}
.y1a_c00293{bottom:404.000000pt;}
.y19_c00293{bottom:431.760000pt;}
.y18_c00293{bottom:459.920000pt;}
.y17_c00293{bottom:487.840000pt;}
.y16_c00293{bottom:515.440000pt;}
.y15_c00293{bottom:543.040000pt;}
.y14_c00293{bottom:570.640000pt;}
.y13_c00293{bottom:598.240000pt;}
.y12_c00293{bottom:625.840000pt;}
.y11_c00293{bottom:653.440000pt;}
.y10_c00293{bottom:681.040000pt;}
.yf_c00293{bottom:708.640000pt;}
.ye_c00293{bottom:736.240000pt;}
.yd_c00293{bottom:763.840000pt;}
.yc_c00293{bottom:792.080000pt;}
.yb_c00293{bottom:820.880000pt;}
.ya_c00293{bottom:848.480000pt;}
.y9_c00293{bottom:876.080000pt;}
.y8_c00293{bottom:903.760000pt;}
.y7_c00293{bottom:931.760000pt;}
.y6_c00293{bottom:959.360000pt;}
.y5_c00293{bottom:986.960000pt;}
.y4_c00293{bottom:1005.360000pt;}
.y3_c00293{bottom:1023.036000pt;}
.y2_c00293{bottom:1036.800000pt;}
.y1_c00293{bottom:1064.400000pt;}
.h5_c00293{height:44.468750pt;}
.h2_c00293{height:47.109375pt;}
.h3_c00293{height:62.812500pt;}
.h6_c00293{height:65.770313pt;}
.h4_c00293{height:127.593750pt;}
.h0_c00293{height:1122.560000pt;}
.h1_c00293{height:1122.666667pt;}
.w0_c00293{width:793.840000pt;}
.w1_c00293{width:794.000000pt;}
.x0_c00293{left:0.000000pt;}
.x2_c00293{left:113.440000pt;}
.x3_c00293{left:137.440000pt;}
.x1_c00293{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8dbcc8ef09e45093f6d39f8a.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.284180;font-style:normal;font-weight:normal;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_7f2332736a8f0f53da22803a.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;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_c00294;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00294;src:url('chunks/assets/font_da4e3e23eb0c5bd72d10d39c.woff2')format("woff");}.ff5_c00294{font-family:ff5_c00294;line-height:3.333984;font-style: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);}
.v1_c00294{vertical-align:-82.800000px;}
.v2_c00294{vertical-align:-14.760000px;}
.v5_c00294{vertical-align:-10.440000px;}
.v0_c00294{vertical-align:0.000000px;}
.v3_c00294{vertical-align:14.760000px;}
.v7_c00294{vertical-align:27.000000px;}
.v6_c00294{vertical-align:36.360000px;}
.v4_c00294{vertical-align:42.120000px;}
.ls11_c00294{letter-spacing:-0.576000px;}
.ls12_c00294{letter-spacing:-0.360000px;}
.ls15_c00294{letter-spacing:-0.144000px;}
.ls10_c00294{letter-spacing:-0.108000px;}
.ls14_c00294{letter-spacing:-0.102240px;}
.ls17_c00294{letter-spacing:-0.072000px;}
.lsf_c00294{letter-spacing:0.000000px;}
.ls6_c00294{letter-spacing:0.072000px;}
.ls13_c00294{letter-spacing:0.102240px;}
.ls1_c00294{letter-spacing:0.144000px;}
.lsc_c00294{letter-spacing:0.180000px;}
.ls16_c00294{letter-spacing:0.526680px;}
.ls7_c00294{letter-spacing:0.727200px;}
.lsb_c00294{letter-spacing:1.922040px;}
.ls8_c00294{letter-spacing:2.282040px;}
.lsd_c00294{letter-spacing:4.320000px;}
.lsa_c00294{letter-spacing:6.480000px;}
.ls5_c00294{letter-spacing:6.840000px;}
.ls3_c00294{letter-spacing:11.880000px;}
.ls4_c00294{letter-spacing:12.240000px;}
.ls9_c00294{letter-spacing:19.440000px;}
.lse_c00294{letter-spacing:22.601520px;}
.ls2_c00294{letter-spacing:22.961520px;}
.ls0_c00294{letter-spacing:90.000000px;}
.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:-72.000000px;}
.ws4_c00294{word-spacing:-51.222240px;}
.ws3_c00294{word-spacing:-51.120000px;}
.ws5_c00294{word-spacing:-51.017760px;}
.ws8_c00294{word-spacing:-18.072000px;}
.ws6_c00294{word-spacing:-18.000000px;}
.ws9_c00294{word-spacing:-17.928000px;}
.ws2_c00294{word-spacing:-17.424000px;}
.ws20_c00294{word-spacing:-0.526680px;}
.ws29_c00294{word-spacing:-0.144000px;}
.ws11_c00294{word-spacing:-0.072000px;}
.wsa_c00294{word-spacing:0.000000px;}
.ws1d_c00294{word-spacing:0.144000px;}
.wsc_c00294{word-spacing:0.162000px;}
.wsb_c00294{word-spacing:0.270000px;}
.ws18_c00294{word-spacing:0.720000px;}
.ws2a_c00294{word-spacing:1.008000px;}
.ws27_c00294{word-spacing:1.440000px;}
.ws23_c00294{word-spacing:2.448000px;}
.ws26_c00294{word-spacing:3.168000px;}
.ws1_c00294{word-spacing:3.816000px;}
.ws7_c00294{word-spacing:4.176000px;}
.ws14_c00294{word-spacing:4.248000px;}
.ws15_c00294{word-spacing:4.320000px;}
.ws21_c00294{word-spacing:6.048000px;}
.ws22_c00294{word-spacing:6.480000px;}
.ws13_c00294{word-spacing:6.840000px;}
.wsd_c00294{word-spacing:7.488000px;}
.wse_c00294{word-spacing:7.920000px;}
.ws19_c00294{word-spacing:8.208000px;}
.ws1a_c00294{word-spacing:8.280000px;}
.wsf_c00294{word-spacing:8.568000px;}
.ws10_c00294{word-spacing:8.640000px;}
.ws24_c00294{word-spacing:9.720000px;}
.ws1b_c00294{word-spacing:10.080000px;}
.ws12_c00294{word-spacing:11.880000px;}
.ws25_c00294{word-spacing:12.600000px;}
.ws1c_c00294{word-spacing:13.680000px;}
.ws28_c00294{word-spacing:18.648000px;}
.ws16_c00294{word-spacing:19.368000px;}
.ws17_c00294{word-spacing:19.440000px;}
.ws1e_c00294{word-spacing:22.608000px;}
.ws2b_c00294{word-spacing:22.968000px;}
.ws1f_c00294{word-spacing:23.040000px;}
._3_c00294{margin-left:-4.363200px;}
._1_c00294{margin-left:-1.058400px;}
._0_c00294{width:1.220400px;}
._8_c00294{width:2.343600px;}
._7_c00294{width:3.510000px;}
._2_c00294{width:7.920000px;}
._a_c00294{width:9.216000px;}
._9_c00294{width:10.296000px;}
._4_c00294{width:12.168000px;}
._6_c00294{width:21.844800px;}
._5_c00294{width:22.968000px;}
.fc0_c00294{color:rgb(0,0,0);}
.fs3_c00294{font-size:42.120000px;}
.fs4_c00294{font-size:47.880000px;}
.fs2_c00294{font-size:51.120000px;}
.fs0_c00294{font-size:54.000000px;}
.fs1_c00294{font-size:72.000000px;}
.y0_c00294{bottom:0.000000px;}
.y27_c00294{bottom:57.240000px;}
.y26_c00294{bottom:118.350000px;}
.y25_c00294{bottom:149.850000px;}
.y24_c00294{bottom:180.900000px;}
.y23_c00294{bottom:211.950000px;}
.y22_c00294{bottom:243.000000px;}
.y21_c00294{bottom:274.050000px;}
.y20_c00294{bottom:305.100000px;}
.y1f_c00294{bottom:336.150000px;}
.y1e_c00294{bottom:367.380000px;}
.y1d_c00294{bottom:398.880000px;}
.y1c_c00294{bottom:429.930000px;}
.y1b_c00294{bottom:460.980000px;}
.y1a_c00294{bottom:492.030000px;}
.y19_c00294{bottom:523.080000px;}
.y18_c00294{bottom:554.130000px;}
.y17_c00294{bottom:585.180000px;}
.y16_c00294{bottom:616.230000px;}
.y15_c00294{bottom:647.280000px;}
.y14_c00294{bottom:678.240000px;}
.y13_c00294{bottom:709.290000px;}
.y12_c00294{bottom:740.340000px;}
.y11_c00294{bottom:771.390000px;}
.y10_c00294{bottom:802.440000px;}
.yf_c00294{bottom:832.320000px;}
.ye_c00294{bottom:841.410000px;}
.yd_c00294{bottom:877.320000px;}
.yc_c00294{bottom:886.410000px;}
.yb_c00294{bottom:923.490000px;}
.ya_c00294{bottom:954.540000px;}
.y9_c00294{bottom:985.590000px;}
.y8_c00294{bottom:1016.640000px;}
.y7_c00294{bottom:1047.780000px;}
.y6_c00294{bottom:1079.280000px;}
.y5_c00294{bottom:1131.030000px;}
.y4_c00294{bottom:1150.920000px;}
.y3_c00294{bottom:1166.404500px;}
.y2_c00294{bottom:1181.970000px;}
.y1_c00294{bottom:1197.450000px;}
.h9_c00294{height:50.027344px;}
.h3_c00294{height:52.971680px;}
.h2_c00294{height:52.998047px;}
.h4_c00294{height:70.664062px;}
.h8_c00294{height:73.991602px;}
.h5_c00294{height:143.542969px;}
.h6_c00294{height:144.035508px;}
.h7_c00294{height:179.902969px;}
.h0_c00294{height:1262.880000px;}
.h1_c00294{height:1263.000000px;}
.w0_c00294{width:893.070000px;}
.w1_c00294{width:893.250000px;}
.x0_c00294{left:0.000000px;}
.x3_c00294{left:127.620000px;}
.x4_c00294{left:154.620000px;}
.x6_c00294{left:163.440000px;}
.x5_c00294{left:256.050000px;}
.x2_c00294{left:425.160000px;}
.x1_c00294{left:446.580000px;}
.x7_c00294{left:738.540000px;}
@media print{
.v1_c00294{vertical-align:-73.600000pt;}
.v2_c00294{vertical-align:-13.120000pt;}
.v5_c00294{vertical-align:-9.280000pt;}
.v0_c00294{vertical-align:0.000000pt;}
.v3_c00294{vertical-align:13.120000pt;}
.v7_c00294{vertical-align:24.000000pt;}
.v6_c00294{vertical-align:32.320000pt;}
.v4_c00294{vertical-align:37.440000pt;}
.ls11_c00294{letter-spacing:-0.512000pt;}
.ls12_c00294{letter-spacing:-0.320000pt;}
.ls15_c00294{letter-spacing:-0.128000pt;}
.ls10_c00294{letter-spacing:-0.096000pt;}
.ls14_c00294{letter-spacing:-0.090880pt;}
.ls17_c00294{letter-spacing:-0.064000pt;}
.lsf_c00294{letter-spacing:0.000000pt;}
.ls6_c00294{letter-spacing:0.064000pt;}
.ls13_c00294{letter-spacing:0.090880pt;}
.ls1_c00294{letter-spacing:0.128000pt;}
.lsc_c00294{letter-spacing:0.160000pt;}
.ls16_c00294{letter-spacing:0.468160pt;}
.ls7_c00294{letter-spacing:0.646400pt;}
.lsb_c00294{letter-spacing:1.708480pt;}
.ls8_c00294{letter-spacing:2.028480pt;}
.lsd_c00294{letter-spacing:3.840000pt;}
.lsa_c00294{letter-spacing:5.760000pt;}
.ls5_c00294{letter-spacing:6.080000pt;}
.ls3_c00294{letter-spacing:10.560000pt;}
.ls4_c00294{letter-spacing:10.880000pt;}
.ls9_c00294{letter-spacing:17.280000pt;}
.lse_c00294{letter-spacing:20.090240pt;}
.ls2_c00294{letter-spacing:20.410240pt;}
.ls0_c00294{letter-spacing:80.000000pt;}
.ws0_c00294{word-spacing:-64.000000pt;}
.ws4_c00294{word-spacing:-45.530880pt;}
.ws3_c00294{word-spacing:-45.440000pt;}
.ws5_c00294{word-spacing:-45.349120pt;}
.ws8_c00294{word-spacing:-16.064000pt;}
.ws6_c00294{word-spacing:-16.000000pt;}
.ws9_c00294{word-spacing:-15.936000pt;}
.ws2_c00294{word-spacing:-15.488000pt;}
.ws20_c00294{word-spacing:-0.468160pt;}
.ws29_c00294{word-spacing:-0.128000pt;}
.ws11_c00294{word-spacing:-0.064000pt;}
.wsa_c00294{word-spacing:0.000000pt;}
.ws1d_c00294{word-spacing:0.128000pt;}
.wsc_c00294{word-spacing:0.144000pt;}
.wsb_c00294{word-spacing:0.240000pt;}
.ws18_c00294{word-spacing:0.640000pt;}
.ws2a_c00294{word-spacing:0.896000pt;}
.ws27_c00294{word-spacing:1.280000pt;}
.ws23_c00294{word-spacing:2.176000pt;}
.ws26_c00294{word-spacing:2.816000pt;}
.ws1_c00294{word-spacing:3.392000pt;}
.ws7_c00294{word-spacing:3.712000pt;}
.ws14_c00294{word-spacing:3.776000pt;}
.ws15_c00294{word-spacing:3.840000pt;}
.ws21_c00294{word-spacing:5.376000pt;}
.ws22_c00294{word-spacing:5.760000pt;}
.ws13_c00294{word-spacing:6.080000pt;}
.wsd_c00294{word-spacing:6.656000pt;}
.wse_c00294{word-spacing:7.040000pt;}
.ws19_c00294{word-spacing:7.296000pt;}
.ws1a_c00294{word-spacing:7.360000pt;}
.wsf_c00294{word-spacing:7.616000pt;}
.ws10_c00294{word-spacing:7.680000pt;}
.ws24_c00294{word-spacing:8.640000pt;}
.ws1b_c00294{word-spacing:8.960000pt;}
.ws12_c00294{word-spacing:10.560000pt;}
.ws25_c00294{word-spacing:11.200000pt;}
.ws1c_c00294{word-spacing:12.160000pt;}
.ws28_c00294{word-spacing:16.576000pt;}
.ws16_c00294{word-spacing:17.216000pt;}
.ws17_c00294{word-spacing:17.280000pt;}
.ws1e_c00294{word-spacing:20.096000pt;}
.ws2b_c00294{word-spacing:20.416000pt;}
.ws1f_c00294{word-spacing:20.480000pt;}
._3_c00294{margin-left:-3.878400pt;}
._1_c00294{margin-left:-0.940800pt;}
._0_c00294{width:1.084800pt;}
._8_c00294{width:2.083200pt;}
._7_c00294{width:3.120000pt;}
._2_c00294{width:7.040000pt;}
._a_c00294{width:8.192000pt;}
._9_c00294{width:9.152000pt;}
._4_c00294{width:10.816000pt;}
._6_c00294{width:19.417600pt;}
._5_c00294{width:20.416000pt;}
.fs3_c00294{font-size:37.440000pt;}
.fs4_c00294{font-size:42.560000pt;}
.fs2_c00294{font-size:45.440000pt;}
.fs0_c00294{font-size:48.000000pt;}
.fs1_c00294{font-size:64.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y27_c00294{bottom:50.880000pt;}
.y26_c00294{bottom:105.200000pt;}
.y25_c00294{bottom:133.200000pt;}
.y24_c00294{bottom:160.800000pt;}
.y23_c00294{bottom:188.400000pt;}
.y22_c00294{bottom:216.000000pt;}
.y21_c00294{bottom:243.600000pt;}
.y20_c00294{bottom:271.200000pt;}
.y1f_c00294{bottom:298.800000pt;}
.y1e_c00294{bottom:326.560000pt;}
.y1d_c00294{bottom:354.560000pt;}
.y1c_c00294{bottom:382.160000pt;}
.y1b_c00294{bottom:409.760000pt;}
.y1a_c00294{bottom:437.360000pt;}
.y19_c00294{bottom:464.960000pt;}
.y18_c00294{bottom:492.560000pt;}
.y17_c00294{bottom:520.160000pt;}
.y16_c00294{bottom:547.760000pt;}
.y15_c00294{bottom:575.360000pt;}
.y14_c00294{bottom:602.880000pt;}
.y13_c00294{bottom:630.480000pt;}
.y12_c00294{bottom:658.080000pt;}
.y11_c00294{bottom:685.680000pt;}
.y10_c00294{bottom:713.280000pt;}
.yf_c00294{bottom:739.840000pt;}
.ye_c00294{bottom:747.920000pt;}
.yd_c00294{bottom:779.840000pt;}
.yc_c00294{bottom:787.920000pt;}
.yb_c00294{bottom:820.880000pt;}
.ya_c00294{bottom:848.480000pt;}
.y9_c00294{bottom:876.080000pt;}
.y8_c00294{bottom:903.680000pt;}
.y7_c00294{bottom:931.360000pt;}
.y6_c00294{bottom:959.360000pt;}
.y5_c00294{bottom:1005.360000pt;}
.y4_c00294{bottom:1023.040000pt;}
.y3_c00294{bottom:1036.804000pt;}
.y2_c00294{bottom:1050.640000pt;}
.y1_c00294{bottom:1064.400000pt;}
.h9_c00294{height:44.468750pt;}
.h3_c00294{height:47.085938pt;}
.h2_c00294{height:47.109375pt;}
.h4_c00294{height:62.812500pt;}
.h8_c00294{height:65.770313pt;}
.h5_c00294{height:127.593750pt;}
.h6_c00294{height:128.031562pt;}
.h7_c00294{height:159.913750pt;}
.h0_c00294{height:1122.560000pt;}
.h1_c00294{height:1122.666667pt;}
.w0_c00294{width:793.840000pt;}
.w1_c00294{width:794.000000pt;}
.x0_c00294{left:0.000000pt;}
.x3_c00294{left:113.440000pt;}
.x4_c00294{left:137.440000pt;}
.x6_c00294{left:145.280000pt;}
.x5_c00294{left:227.600000pt;}
.x2_c00294{left:377.920000pt;}
.x1_c00294{left:396.960000pt;}
.x7_c00294{left:656.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_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_e02f859038c7e24f23ecc979.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.284180;font-style:normal;font-weight:normal;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_1cabbcd556f2db855e8061a2.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00295;src:url('chunks/assets/font_5a3f3f2c93fd08c8013355ba.woff2')format("woff");}.ff4_c00295{font-family:ff4_c00295;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_c00295;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00295{font-family:ff5_c00295;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00295;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff6_c00295{font-family:ff6_c00295;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00295{vertical-align:-61.938000px;}
.v5_c00295{vertical-align:-20.880000px;}
.v3_c00295{vertical-align:-14.760000px;}
.v0_c00295{vertical-align:0.000000px;}
.v4_c00295{vertical-align:14.760000px;}
.v2_c00295{vertical-align:27.000000px;}
.lsd_c00295{letter-spacing:-0.360000px;}
.lsb_c00295{letter-spacing:-0.144000px;}
.lsc_c00295{letter-spacing:-0.072000px;}
.lse_c00295{letter-spacing:-0.060120px;}
.lsa_c00295{letter-spacing:0.000000px;}
.ls2_c00295{letter-spacing:0.072000px;}
.ls4_c00295{letter-spacing:0.144000px;}
.lsf_c00295{letter-spacing:0.180360px;}
.ls6_c00295{letter-spacing:0.191520px;}
.ls1_c00295{letter-spacing:1.440000px;}
.ls9_c00295{letter-spacing:3.667320px;}
.ls5_c00295{letter-spacing:7.200000px;}
.ls3_c00295{letter-spacing:15.840000px;}
.ls8_c00295{letter-spacing:20.016000px;}
.ls7_c00295{letter-spacing:22.961520px;}
.ls0_c00295{letter-spacing:319.518000px;}
.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;}
}
.ws5_c00295{word-spacing:-72.000000px;}
.ws2_c00295{word-spacing:-18.144000px;}
.ws1_c00295{word-spacing:-18.072000px;}
.ws3_c00295{word-spacing:-18.000000px;}
.ws0_c00295{word-spacing:-17.856000px;}
.ws8_c00295{word-spacing:-15.030000px;}
.ws4_c00295{word-spacing:-12.161520px;}
.ws7_c00295{word-spacing:-9.720000px;}
.wse_c00295{word-spacing:-0.504000px;}
.ws2e_c00295{word-spacing:-0.420840px;}
.wsa_c00295{word-spacing:-0.162000px;}
.wsc_c00295{word-spacing:-0.144000px;}
.ws17_c00295{word-spacing:-0.072000px;}
.ws2c_c00295{word-spacing:-0.060120px;}
.ws9_c00295{word-spacing:0.000000px;}
.ws11_c00295{word-spacing:0.072000px;}
.ws2d_c00295{word-spacing:0.180360px;}
.ws19_c00295{word-spacing:0.360000px;}
.wsf_c00295{word-spacing:1.296000px;}
.ws10_c00295{word-spacing:1.368000px;}
.ws26_c00295{word-spacing:1.440000px;}
.ws18_c00295{word-spacing:2.448000px;}
.ws14_c00295{word-spacing:3.600000px;}
.ws2b_c00295{word-spacing:3.727440px;}
.ws12_c00295{word-spacing:3.888000px;}
.ws13_c00295{word-spacing:3.960000px;}
.ws6_c00295{word-spacing:4.176000px;}
.ws1e_c00295{word-spacing:4.968000px;}
.ws27_c00295{word-spacing:6.120000px;}
.wsb_c00295{word-spacing:6.408000px;}
.ws25_c00295{word-spacing:6.696000px;}
.ws23_c00295{word-spacing:6.768000px;}
.ws24_c00295{word-spacing:6.840000px;}
.ws20_c00295{word-spacing:8.136000px;}
.ws21_c00295{word-spacing:8.280000px;}
.ws1c_c00295{word-spacing:12.528000px;}
.ws1d_c00295{word-spacing:12.600000px;}
.ws1b_c00295{word-spacing:15.480000px;}
.ws1a_c00295{word-spacing:15.840000px;}
.ws22_c00295{word-spacing:16.560000px;}
.ws29_c00295{word-spacing:17.208000px;}
.ws2a_c00295{word-spacing:23.040000px;}
.ws1f_c00295{word-spacing:23.400000px;}
.wsd_c00295{word-spacing:25.848000px;}
.ws16_c00295{word-spacing:28.728000px;}
.ws15_c00295{word-spacing:28.800000px;}
.ws28_c00295{word-spacing:30.888000px;}
._e_c00295{margin-left:-6.624000px;}
._d_c00295{margin-left:-4.536000px;}
._0_c00295{margin-left:-1.080000px;}
._3_c00295{width:1.440000px;}
._6_c00295{width:2.808000px;}
._4_c00295{width:3.960000px;}
._1_c00295{width:6.220800px;}
._8_c00295{width:12.024000px;}
._7_c00295{width:15.408000px;}
._b_c00295{width:19.634400px;}
._a_c00295{width:20.664000px;}
._9_c00295{width:23.976000px;}
._2_c00295{width:26.208000px;}
._5_c00295{width:28.872000px;}
._c_c00295{width:30.960000px;}
.fc0_c00295{color:rgb(0,0,0);}
.fs4_c00295{font-size:38.880000px;}
.fs2_c00295{font-size:47.880000px;}
.fs3_c00295{font-size:51.120000px;}
.fs0_c00295{font-size:54.000000px;}
.fs5_c00295{font-size:60.120000px;}
.fs1_c00295{font-size:72.000000px;}
.y0_c00295{bottom:0.000000px;}
.y25_c00295{bottom:57.240000px;}
.y24_c00295{bottom:109.795680px;}
.y23_c00295{bottom:132.210000px;}
.y26_c00295{bottom:144.900000px;}
.y22_c00295{bottom:208.800000px;}
.y21_c00295{bottom:239.940000px;}
.y20_c00295{bottom:271.440000px;}
.y1f_c00295{bottom:302.490000px;}
.y1e_c00295{bottom:333.540000px;}
.y1d_c00295{bottom:364.770000px;}
.y1c_c00295{bottom:396.270000px;}
.y1b_c00295{bottom:427.320000px;}
.y1a_c00295{bottom:458.370000px;}
.y19_c00295{bottom:489.420000px;}
.y18_c00295{bottom:520.470000px;}
.y17_c00295{bottom:551.520000px;}
.y16_c00295{bottom:582.570000px;}
.y15_c00295{bottom:613.620000px;}
.y14_c00295{bottom:644.670000px;}
.y13_c00295{bottom:675.720000px;}
.y12_c00295{bottom:706.770000px;}
.y11_c00295{bottom:737.820000px;}
.y10_c00295{bottom:768.870000px;}
.yf_c00295{bottom:799.920000px;}
.ye_c00295{bottom:830.970000px;}
.yd_c00295{bottom:861.930000px;}
.yc_c00295{bottom:892.980000px;}
.yb_c00295{bottom:924.030000px;}
.ya_c00295{bottom:954.900000px;}
.y9_c00295{bottom:985.950000px;}
.y8_c00295{bottom:1017.180000px;}
.y7_c00295{bottom:1048.230000px;}
.y6_c00295{bottom:1079.280000px;}
.y5_c00295{bottom:1110.330000px;}
.y4_c00295{bottom:1131.030000px;}
.y3_c00295{bottom:1150.915500px;}
.y2_c00295{bottom:1166.400000px;}
.y1_c00295{bottom:1197.450000px;}
.h8_c00295{height:38.158594px;}
.h5_c00295{height:50.027344px;}
.h2_c00295{height:52.998047px;}
.h9_c00295{height:59.004492px;}
.h3_c00295{height:70.664062px;}
.h4_c00295{height:72.562500px;}
.h6_c00295{height:73.991602px;}
.h7_c00295{height:143.542969px;}
.h0_c00295{height:1262.880000px;}
.h1_c00295{height:1263.000000px;}
.w0_c00295{width:893.070000px;}
.w1_c00295{width:893.250000px;}
.x0_c00295{left:0.000000px;}
.x2_c00295{left:127.620000px;}
.x1_c00295{left:446.580000px;}
@media print{
.v1_c00295{vertical-align:-55.056000pt;}
.v5_c00295{vertical-align:-18.560000pt;}
.v3_c00295{vertical-align:-13.120000pt;}
.v0_c00295{vertical-align:0.000000pt;}
.v4_c00295{vertical-align:13.120000pt;}
.v2_c00295{vertical-align:24.000000pt;}
.lsd_c00295{letter-spacing:-0.320000pt;}
.lsb_c00295{letter-spacing:-0.128000pt;}
.lsc_c00295{letter-spacing:-0.064000pt;}
.lse_c00295{letter-spacing:-0.053440pt;}
.lsa_c00295{letter-spacing:0.000000pt;}
.ls2_c00295{letter-spacing:0.064000pt;}
.ls4_c00295{letter-spacing:0.128000pt;}
.lsf_c00295{letter-spacing:0.160320pt;}
.ls6_c00295{letter-spacing:0.170240pt;}
.ls1_c00295{letter-spacing:1.280000pt;}
.ls9_c00295{letter-spacing:3.259840pt;}
.ls5_c00295{letter-spacing:6.400000pt;}
.ls3_c00295{letter-spacing:14.080000pt;}
.ls8_c00295{letter-spacing:17.792000pt;}
.ls7_c00295{letter-spacing:20.410240pt;}
.ls0_c00295{letter-spacing:284.016000pt;}
.ws5_c00295{word-spacing:-64.000000pt;}
.ws2_c00295{word-spacing:-16.128000pt;}
.ws1_c00295{word-spacing:-16.064000pt;}
.ws3_c00295{word-spacing:-16.000000pt;}
.ws0_c00295{word-spacing:-15.872000pt;}
.ws8_c00295{word-spacing:-13.360000pt;}
.ws4_c00295{word-spacing:-10.810240pt;}
.ws7_c00295{word-spacing:-8.640000pt;}
.wse_c00295{word-spacing:-0.448000pt;}
.ws2e_c00295{word-spacing:-0.374080pt;}
.wsa_c00295{word-spacing:-0.144000pt;}
.wsc_c00295{word-spacing:-0.128000pt;}
.ws17_c00295{word-spacing:-0.064000pt;}
.ws2c_c00295{word-spacing:-0.053440pt;}
.ws9_c00295{word-spacing:0.000000pt;}
.ws11_c00295{word-spacing:0.064000pt;}
.ws2d_c00295{word-spacing:0.160320pt;}
.ws19_c00295{word-spacing:0.320000pt;}
.wsf_c00295{word-spacing:1.152000pt;}
.ws10_c00295{word-spacing:1.216000pt;}
.ws26_c00295{word-spacing:1.280000pt;}
.ws18_c00295{word-spacing:2.176000pt;}
.ws14_c00295{word-spacing:3.200000pt;}
.ws2b_c00295{word-spacing:3.313280pt;}
.ws12_c00295{word-spacing:3.456000pt;}
.ws13_c00295{word-spacing:3.520000pt;}
.ws6_c00295{word-spacing:3.712000pt;}
.ws1e_c00295{word-spacing:4.416000pt;}
.ws27_c00295{word-spacing:5.440000pt;}
.wsb_c00295{word-spacing:5.696000pt;}
.ws25_c00295{word-spacing:5.952000pt;}
.ws23_c00295{word-spacing:6.016000pt;}
.ws24_c00295{word-spacing:6.080000pt;}
.ws20_c00295{word-spacing:7.232000pt;}
.ws21_c00295{word-spacing:7.360000pt;}
.ws1c_c00295{word-spacing:11.136000pt;}
.ws1d_c00295{word-spacing:11.200000pt;}
.ws1b_c00295{word-spacing:13.760000pt;}
.ws1a_c00295{word-spacing:14.080000pt;}
.ws22_c00295{word-spacing:14.720000pt;}
.ws29_c00295{word-spacing:15.296000pt;}
.ws2a_c00295{word-spacing:20.480000pt;}
.ws1f_c00295{word-spacing:20.800000pt;}
.wsd_c00295{word-spacing:22.976000pt;}
.ws16_c00295{word-spacing:25.536000pt;}
.ws15_c00295{word-spacing:25.600000pt;}
.ws28_c00295{word-spacing:27.456000pt;}
._e_c00295{margin-left:-5.888000pt;}
._d_c00295{margin-left:-4.032000pt;}
._0_c00295{margin-left:-0.960000pt;}
._3_c00295{width:1.280000pt;}
._6_c00295{width:2.496000pt;}
._4_c00295{width:3.520000pt;}
._1_c00295{width:5.529600pt;}
._8_c00295{width:10.688000pt;}
._7_c00295{width:13.696000pt;}
._b_c00295{width:17.452800pt;}
._a_c00295{width:18.368000pt;}
._9_c00295{width:21.312000pt;}
._2_c00295{width:23.296000pt;}
._5_c00295{width:25.664000pt;}
._c_c00295{width:27.520000pt;}
.fs4_c00295{font-size:34.560000pt;}
.fs2_c00295{font-size:42.560000pt;}
.fs3_c00295{font-size:45.440000pt;}
.fs0_c00295{font-size:48.000000pt;}
.fs5_c00295{font-size:53.440000pt;}
.fs1_c00295{font-size:64.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y25_c00295{bottom:50.880000pt;}
.y24_c00295{bottom:97.596160pt;}
.y23_c00295{bottom:117.520000pt;}
.y26_c00295{bottom:128.800000pt;}
.y22_c00295{bottom:185.600000pt;}
.y21_c00295{bottom:213.280000pt;}
.y20_c00295{bottom:241.280000pt;}
.y1f_c00295{bottom:268.880000pt;}
.y1e_c00295{bottom:296.480000pt;}
.y1d_c00295{bottom:324.240000pt;}
.y1c_c00295{bottom:352.240000pt;}
.y1b_c00295{bottom:379.840000pt;}
.y1a_c00295{bottom:407.440000pt;}
.y19_c00295{bottom:435.040000pt;}
.y18_c00295{bottom:462.640000pt;}
.y17_c00295{bottom:490.240000pt;}
.y16_c00295{bottom:517.840000pt;}
.y15_c00295{bottom:545.440000pt;}
.y14_c00295{bottom:573.040000pt;}
.y13_c00295{bottom:600.640000pt;}
.y12_c00295{bottom:628.240000pt;}
.y11_c00295{bottom:655.840000pt;}
.y10_c00295{bottom:683.440000pt;}
.yf_c00295{bottom:711.040000pt;}
.ye_c00295{bottom:738.640000pt;}
.yd_c00295{bottom:766.160000pt;}
.yc_c00295{bottom:793.760000pt;}
.yb_c00295{bottom:821.360000pt;}
.ya_c00295{bottom:848.800000pt;}
.y9_c00295{bottom:876.400000pt;}
.y8_c00295{bottom:904.160000pt;}
.y7_c00295{bottom:931.760000pt;}
.y6_c00295{bottom:959.360000pt;}
.y5_c00295{bottom:986.960000pt;}
.y4_c00295{bottom:1005.360000pt;}
.y3_c00295{bottom:1023.036000pt;}
.y2_c00295{bottom:1036.800000pt;}
.y1_c00295{bottom:1064.400000pt;}
.h8_c00295{height:33.918750pt;}
.h5_c00295{height:44.468750pt;}
.h2_c00295{height:47.109375pt;}
.h9_c00295{height:52.448437pt;}
.h3_c00295{height:62.812500pt;}
.h4_c00295{height:64.500000pt;}
.h6_c00295{height:65.770313pt;}
.h7_c00295{height:127.593750pt;}
.h0_c00295{height:1122.560000pt;}
.h1_c00295{height:1122.666667pt;}
.w0_c00295{width:793.840000pt;}
.w1_c00295{width:794.000000pt;}
.x0_c00295{left:0.000000pt;}
.x2_c00295{left:113.440000pt;}
.x1_c00295{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c6e22d883ceb34de973cdeda.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.284668;font-style:normal;font-weight:normal;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_f02a0b000d54b9e1205078e1.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_f0b38b5bf59c3d5ce4925abc.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_e6068ae8613edcf2baa74a99.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_039741c2a119a89ded6a2753.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00296;src:url('chunks/assets/font_06fc58e874a854d1cccb45ed.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);}
.v2_c00296{vertical-align:-83.520000px;}
.v1_c00296{vertical-align:-61.920000px;}
.v3_c00296{vertical-align:-3.466446px;}
.v0_c00296{vertical-align:0.000000px;}
.v4_c00296{vertical-align:3.466446px;}
.ls10_c00296{letter-spacing:-2.069520px;}
.ls16_c00296{letter-spacing:-1.396926px;}
.lsf_c00296{letter-spacing:-1.324498px;}
.ls13_c00296{letter-spacing:-1.189974px;}
.ls18_c00296{letter-spacing:-1.138236px;}
.ls17_c00296{letter-spacing:-0.672594px;}
.ls1e_c00296{letter-spacing:-0.655350px;}
.ls14_c00296{letter-spacing:-0.620856px;}
.ls12_c00296{letter-spacing:-0.386312px;}
.ls15_c00296{letter-spacing:-0.206952px;}
.lse_c00296{letter-spacing:-0.165562px;}
.ls11_c00296{letter-spacing:-0.155214px;}
.lsd_c00296{letter-spacing:-0.120240px;}
.lsa_c00296{letter-spacing:-0.108000px;}
.lsb_c00296{letter-spacing:0.000000px;}
.lsc_c00296{letter-spacing:0.072000px;}
.ls3_c00296{letter-spacing:0.220750px;}
.ls4_c00296{letter-spacing:0.331124px;}
.ls1c_c00296{letter-spacing:0.644997px;}
.ls1b_c00296{letter-spacing:0.938186px;}
.ls9_c00296{letter-spacing:0.993373px;}
.ls6_c00296{letter-spacing:1.086498px;}
.ls19_c00296{letter-spacing:1.379685px;}
.ls1a_c00296{letter-spacing:1.434872px;}
.ls8_c00296{letter-spacing:1.479699px;}
.ls1d_c00296{letter-spacing:1.600435px;}
.ls7_c00296{letter-spacing:2.648995px;}
.ls5_c00296{letter-spacing:56.549634px;}
.ls1_c00296{letter-spacing:407.520000px;}
.ls0_c00296{letter-spacing:725.580000px;}
.ls2_c00296{letter-spacing:2401.673760px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-14.909760px;}
.ws29_c00296{word-spacing:-14.072787px;}
.ws28_c00296{word-spacing:-13.907225px;}
.ws27_c00296{word-spacing:-12.803477px;}
.ws2a_c00296{word-spacing:-12.693102px;}
.ws5_c00296{word-spacing:-12.086041px;}
.ws1_c00296{word-spacing:-11.147855px;}
.ws3f_c00296{word-spacing:-3.149103px;}
.ws3e_c00296{word-spacing:-2.314401px;}
.ws41_c00296{word-spacing:-1.479699px;}
.ws3c_c00296{word-spacing:-1.434872px;}
.ws38_c00296{word-spacing:-1.324498px;}
.ws33_c00296{word-spacing:-1.138236px;}
.ws3d_c00296{word-spacing:-0.938186px;}
.ws40_c00296{word-spacing:-0.331124px;}
.ws42_c00296{word-spacing:-0.327675px;}
.ws32_c00296{word-spacing:-0.220750px;}
.ws35_c00296{word-spacing:-0.206952px;}
.ws3a_c00296{word-spacing:-0.110375px;}
.ws2e_c00296{word-spacing:-0.072000px;}
.ws36_c00296{word-spacing:-0.055187px;}
.ws2b_c00296{word-spacing:0.000000px;}
.ws34_c00296{word-spacing:0.051738px;}
.ws2d_c00296{word-spacing:0.162000px;}
.ws30_c00296{word-spacing:0.165562px;}
.ws2c_c00296{word-spacing:0.270000px;}
.ws37_c00296{word-spacing:0.386312px;}
.ws31_c00296{word-spacing:0.993373px;}
.ws2f_c00296{word-spacing:1.103748px;}
.ws3b_c00296{word-spacing:1.490060px;}
.ws39_c00296{word-spacing:1.710809px;}
.wsa_c00296{word-spacing:24.834240px;}
.ws2_c00296{word-spacing:38.648286px;}
.ws26_c00296{word-spacing:76.489459px;}
.ws6_c00296{word-spacing:79.935210px;}
.ws15_c00296{word-spacing:117.947119px;}
.ws18_c00296{word-spacing:117.962640px;}
.ws9_c00296{word-spacing:128.310240px;}
.ws4_c00296{word-spacing:145.466561px;}
.wse_c00296{word-spacing:152.368410px;}
.ws11_c00296{word-spacing:228.806131px;}
.wsd_c00296{word-spacing:237.042821px;}
.ws7_c00296{word-spacing:248.570047px;}
.ws1a_c00296{word-spacing:250.825824px;}
.ws1e_c00296{word-spacing:252.517657px;}
.ws8_c00296{word-spacing:261.173424px;}
.wsc_c00296{word-spacing:262.384093px;}
.ws3_c00296{word-spacing:263.118773px;}
.ws1c_c00296{word-spacing:265.545285px;}
.ws13_c00296{word-spacing:266.362745px;}
.ws21_c00296{word-spacing:272.731693px;}
.ws10_c00296{word-spacing:284.988425px;}
.ws23_c00296{word-spacing:287.497718px;}
.ws19_c00296{word-spacing:289.515500px;}
.ws24_c00296{word-spacing:294.358177px;}
.ws1b_c00296{word-spacing:296.841601px;}
.ws1f_c00296{word-spacing:303.303677px;}
.ws14_c00296{word-spacing:304.509173px;}
.ws16_c00296{word-spacing:328.836380px;}
.wsb_c00296{word-spacing:329.860793px;}
.ws25_c00296{word-spacing:343.333368px;}
.ws22_c00296{word-spacing:344.021483px;}
.wsf_c00296{word-spacing:358.715075px;}
.ws12_c00296{word-spacing:361.907310px;}
.ws17_c00296{word-spacing:367.820963px;}
.ws1d_c00296{word-spacing:373.739791px;}
.ws20_c00296{word-spacing:404.782591px;}
._13_c00296{margin-left:-4.221836px;}
._5_c00296{margin-left:-3.119801px;}
._c_c00296{margin-left:-2.069520px;}
._1_c00296{margin-left:-1.058400px;}
._0_c00296{width:1.225800px;}
._2_c00296{width:2.625641px;}
._6_c00296{width:3.805813px;}
._11_c00296{width:89.956986px;}
._8_c00296{width:103.106917px;}
._b_c00296{width:115.684244px;}
._9_c00296{width:166.035191px;}
._3_c00296{width:169.123824px;}
._10_c00296{width:172.574749px;}
._4_c00296{width:179.849237px;}
._f_c00296{width:182.388611px;}
._12_c00296{width:201.344352px;}
._a_c00296{width:272.427346px;}
._7_c00296{width:283.564529px;}
._e_c00296{width:296.588992px;}
._d_c00296{width:307.674437px;}
.fc1_c00296{color:transparent;}
.fc0_c00296{color:rgb(0,0,0);}
.fs5_c00296{font-size:37.941000px;}
.fs4_c00296{font-size:51.738000px;}
.fs0_c00296{font-size:54.000000px;}
.fs3_c00296{font-size:55.187400px;}
.fs2_c00296{font-size:60.120000px;}
.fs6_c00296{font-size:65.535000px;}
.fs1_c00296{font-size:72.000000px;}
.y0_c00296{bottom:0.000000px;}
.y37_c00296{bottom:2.586000px;}
.y2c_c00296{bottom:2.586450px;}
.y41_c00296{bottom:2.586600px;}
.y3a_c00296{bottom:2.586900px;}
.y31_c00296{bottom:2.587050px;}
.y44_c00296{bottom:2.587200px;}
.y2e_c00296{bottom:2.587500px;}
.y34_c00296{bottom:2.587800px;}
.y47_c00296{bottom:2.587950px;}
.y36_c00296{bottom:3.448200px;}
.y38_c00296{bottom:3.448350px;}
.y2b_c00296{bottom:3.448500px;}
.y3d_c00296{bottom:3.448650px;}
.y1b_c00296{bottom:3.448800px;}
.y28_c00296{bottom:3.449100px;}
.y3b_c00296{bottom:3.449250px;}
.y13_c00296{bottom:3.449400px;}
.y45_c00296{bottom:3.449550px;}
.y22_c00296{bottom:3.449700px;}
.y2f_c00296{bottom:3.449850px;}
.y1f_c00296{bottom:3.450000px;}
.y33_c00296{bottom:3.450150px;}
.y48_c00296{bottom:3.450300px;}
.y17_c00296{bottom:3.450600px;}
.y1a_c00296{bottom:4.311000px;}
.y1c_c00296{bottom:4.311150px;}
.y27_c00296{bottom:4.311300px;}
.y29_c00296{bottom:4.311450px;}
.y12_c00296{bottom:4.311600px;}
.y25_c00296{bottom:4.311750px;}
.y14_c00296{bottom:4.311900px;}
.y23_c00296{bottom:4.312050px;}
.y1e_c00296{bottom:4.312200px;}
.y20_c00296{bottom:4.312350px;}
.y16_c00296{bottom:4.312800px;}
.y18_c00296{bottom:4.312950px;}
.y6c_c00296{bottom:6.037200px;}
.y10_c00296{bottom:6.063781px;}
.y4f_c00296{bottom:6.904433px;}
.y5d_c00296{bottom:12.935100px;}
.y5f_c00296{bottom:12.935250px;}
.y5e_c00296{bottom:15.522150px;}
.y57_c00296{bottom:15.549031px;}
.y5c_c00296{bottom:15.549125px;}
.yb_c00296{bottom:24.158416px;}
.yf_c00296{bottom:24.165248px;}
.y4e_c00296{bottom:25.005900px;}
.y67_c00296{bottom:31.905600px;}
.y52_c00296{bottom:33.643666px;}
.y56_c00296{bottom:33.650498px;}
.y5b_c00296{bottom:35.375198px;}
.y61_c00296{bottom:41.390625px;}
.ya_c00296{bottom:42.259883px;}
.ye_c00296{bottom:42.266716px;}
.y62_c00296{bottom:48.289200px;}
.y66_c00296{bottom:49.151550px;}
.y63_c00296{bottom:51.738300px;}
.y69_c00296{bottom:51.745077px;}
.y51_c00296{bottom:51.745133px;}
.y65_c00296{bottom:51.745227px;}
.y55_c00296{bottom:51.751966px;}
.y5a_c00296{bottom:53.476666px;}
.y6d_c00296{bottom:57.330000px;}
.y9_c00296{bottom:60.361350px;}
.yd_c00296{bottom:60.368183px;}
.y60_c00296{bottom:62.085900px;}
.y6a_c00296{bottom:62.948250px;}
.y50_c00296{bottom:69.846600px;}
.y54_c00296{bottom:69.853433px;}
.y68_c00296{bottom:71.571150px;}
.y64_c00296{bottom:71.571300px;}
.y59_c00296{bottom:71.578133px;}
.yc_c00296{bottom:78.469650px;}
.y53_c00296{bottom:87.954900px;}
.y58_c00296{bottom:89.679600px;}
.y7_c00296{bottom:144.002520px;}
.y6_c00296{bottom:157.770000px;}
.y4c_c00296{bottom:159.496500px;}
.y4b_c00296{bottom:176.743500px;}
.y4a_c00296{bottom:193.989000px;}
.y49_c00296{bottom:211.234500px;}
.y46_c00296{bottom:228.480000px;}
.y43_c00296{bottom:245.727000px;}
.y42_c00296{bottom:262.972500px;}
.y40_c00296{bottom:280.219500px;}
.y3f_c00296{bottom:297.465000px;}
.y3e_c00296{bottom:314.710500px;}
.y3c_c00296{bottom:331.957500px;}
.y39_c00296{bottom:349.203000px;}
.y35_c00296{bottom:366.450000px;}
.y32_c00296{bottom:383.694000px;}
.y30_c00296{bottom:400.941000px;}
.y2d_c00296{bottom:418.186500px;}
.y2a_c00296{bottom:435.433500px;}
.y26_c00296{bottom:452.679000px;}
.y24_c00296{bottom:470.787000px;}
.y21_c00296{bottom:488.895000px;}
.y1d_c00296{bottom:507.003000px;}
.y19_c00296{bottom:525.112500px;}
.y15_c00296{bottom:543.219000px;}
.y11_c00296{bottom:561.328500px;}
.y8_c00296{bottom:579.436500px;}
.y4d_c00296{bottom:674.290500px;}
.y6b_c00296{bottom:692.397000px;}
.y5_c00296{bottom:719.640000px;}
.y4_c00296{bottom:761.220000px;}
.y3_c00296{bottom:781.110000px;}
.y2_c00296{bottom:796.594500px;}
.y1_c00296{bottom:827.640000px;}
.he_c00296{height:16.383000px;}
.h9_c00296{height:17.245500px;}
.hd_c00296{height:17.247000px;}
.h14_c00296{height:22.420500px;}
.h12_c00296{height:31.290209px;}
.h11_c00296{height:37.779656px;}
.hc_c00296{height:38.475085px;}
.hf_c00296{height:40.528500px;}
.hb_c00296{height:41.040239px;}
.ha_c00296{height:42.668692px;}
.h8_c00296{height:45.513437px;}
.h2_c00296{height:52.998047px;}
.h15_c00296{height:54.047175px;}
.h5_c00296{height:58.975137px;}
.h6_c00296{height:59.004492px;}
.h3_c00296{height:70.664062px;}
.h4_c00296{height:72.562500px;}
.h7_c00296{height:93.991500px;}
.h10_c00296{height:112.099500px;}
.h13_c00296{height:135.382500px;}
.h0_c00296{height:893.070000px;}
.h1_c00296{height:893.250000px;}
.we_c00296{width:30.225000px;}
.w2_c00296{width:56.133000px;}
.wc_c00296{width:66.496500px;}
.wa_c00296{width:67.359000px;}
.wb_c00296{width:67.360500px;}
.w3_c00296{width:70.815000px;}
.w6_c00296{width:73.407000px;}
.w7_c00296{width:85.495500px;}
.w8_c00296{width:86.359500px;}
.w9_c00296{width:94.995000px;}
.wd_c00296{width:108.813000px;}
.wf_c00296{width:120.903000px;}
.w5_c00296{width:127.812000px;}
.w10_c00296{width:766.006500px;}
.w4_c00296{width:1048.401000px;}
.w0_c00296{width:1262.880000px;}
.w1_c00296{width:1263.000000px;}
.x0_c00296{left:0.000000px;}
.x19_c00296{left:1.727550px;}
.x8_c00296{left:3.461371px;}
.x11_c00296{left:6.044700px;}
.xc_c00296{left:7.772475px;}
.xe_c00296{left:10.356329px;}
.x12_c00296{left:12.089850px;}
.x9_c00296{left:13.824421px;}
.x18_c00296{left:18.999300px;}
.x7_c00296{left:21.589800px;}
.xb_c00296{left:23.317050px;}
.xd_c00296{left:25.900904px;}
.x1f_c00296{left:30.226200px;}
.x15_c00296{left:32.817450px;}
.x1a_c00296{left:34.543950px;}
.x13_c00296{left:38.861775px;}
.x1d_c00296{left:44.044050px;}
.x1b_c00296{left:80.314200px;}
.x23_c00296{left:100.177050px;}
.x2_c00296{left:106.380000px;}
.x25_c00296{left:138.333000px;}
.x26_c00296{left:254.760600px;}
.x14_c00296{left:260.098500px;}
.xf_c00296{left:330.755400px;}
.x16_c00296{left:334.368000px;}
.x17_c00296{left:420.727500px;}
.x10_c00296{left:430.932150px;}
.x5_c00296{left:485.365230px;}
.x3_c00296{left:495.450000px;}
.x1c_c00296{left:507.949500px;}
.x1e_c00296{left:603.808500px;}
.x1_c00296{left:631.440000px;}
.x20_c00296{left:672.033000px;}
.x21_c00296{left:740.256000px;}
.x22_c00296{left:807.616500px;}
.x24_c00296{left:917.292000px;}
.x6_c00296{left:1026.969000px;}
.xa_c00296{left:1083.966000px;}
.x27_c00296{left:1129.590000px;}
.x4_c00296{left:1156.590000px;}
@media print{
.v2_c00296{vertical-align:-74.240000pt;}
.v1_c00296{vertical-align:-55.040000pt;}
.v3_c00296{vertical-align:-3.081285pt;}
.v0_c00296{vertical-align:0.000000pt;}
.v4_c00296{vertical-align:3.081285pt;}
.ls10_c00296{letter-spacing:-1.839573pt;}
.ls16_c00296{letter-spacing:-1.241712pt;}
.lsf_c00296{letter-spacing:-1.177331pt;}
.ls13_c00296{letter-spacing:-1.057755pt;}
.ls18_c00296{letter-spacing:-1.011765pt;}
.ls17_c00296{letter-spacing:-0.597861pt;}
.ls1e_c00296{letter-spacing:-0.582533pt;}
.ls14_c00296{letter-spacing:-0.551872pt;}
.ls12_c00296{letter-spacing:-0.343388pt;}
.ls15_c00296{letter-spacing:-0.183957pt;}
.lse_c00296{letter-spacing:-0.147166pt;}
.ls11_c00296{letter-spacing:-0.137968pt;}
.lsd_c00296{letter-spacing:-0.106880pt;}
.lsa_c00296{letter-spacing:-0.096000pt;}
.lsb_c00296{letter-spacing:0.000000pt;}
.lsc_c00296{letter-spacing:0.064000pt;}
.ls3_c00296{letter-spacing:0.196222pt;}
.ls4_c00296{letter-spacing:0.294333pt;}
.ls1c_c00296{letter-spacing:0.573331pt;}
.ls1b_c00296{letter-spacing:0.833943pt;}
.ls9_c00296{letter-spacing:0.882998pt;}
.ls6_c00296{letter-spacing:0.965776pt;}
.ls19_c00296{letter-spacing:1.226387pt;}
.ls1a_c00296{letter-spacing:1.275442pt;}
.ls8_c00296{letter-spacing:1.315288pt;}
.ls1d_c00296{letter-spacing:1.422609pt;}
.ls7_c00296{letter-spacing:2.354662pt;}
.ls5_c00296{letter-spacing:50.266341pt;}
.ls1_c00296{letter-spacing:362.240000pt;}
.ls0_c00296{letter-spacing:644.960000pt;}
.ls2_c00296{letter-spacing:2134.821120pt;}
.ws0_c00296{word-spacing:-13.253120pt;}
.ws29_c00296{word-spacing:-12.509144pt;}
.ws28_c00296{word-spacing:-12.361978pt;}
.ws27_c00296{word-spacing:-11.380868pt;}
.ws2a_c00296{word-spacing:-11.282757pt;}
.ws5_c00296{word-spacing:-10.743147pt;}
.ws1_c00296{word-spacing:-9.909204pt;}
.ws3f_c00296{word-spacing:-2.799203pt;}
.ws3e_c00296{word-spacing:-2.057245pt;}
.ws41_c00296{word-spacing:-1.315288pt;}
.ws3c_c00296{word-spacing:-1.275442pt;}
.ws38_c00296{word-spacing:-1.177331pt;}
.ws33_c00296{word-spacing:-1.011765pt;}
.ws3d_c00296{word-spacing:-0.833943pt;}
.ws40_c00296{word-spacing:-0.294333pt;}
.ws42_c00296{word-spacing:-0.291267pt;}
.ws32_c00296{word-spacing:-0.196222pt;}
.ws35_c00296{word-spacing:-0.183957pt;}
.ws3a_c00296{word-spacing:-0.098111pt;}
.ws2e_c00296{word-spacing:-0.064000pt;}
.ws36_c00296{word-spacing:-0.049055pt;}
.ws2b_c00296{word-spacing:0.000000pt;}
.ws34_c00296{word-spacing:0.045989pt;}
.ws2d_c00296{word-spacing:0.144000pt;}
.ws30_c00296{word-spacing:0.147166pt;}
.ws2c_c00296{word-spacing:0.240000pt;}
.ws37_c00296{word-spacing:0.343388pt;}
.ws31_c00296{word-spacing:0.882998pt;}
.ws2f_c00296{word-spacing:0.981109pt;}
.ws3b_c00296{word-spacing:1.324498pt;}
.ws39_c00296{word-spacing:1.520719pt;}
.wsa_c00296{word-spacing:22.074880pt;}
.ws2_c00296{word-spacing:34.354032pt;}
.ws26_c00296{word-spacing:67.990630pt;}
.ws6_c00296{word-spacing:71.053520pt;}
.ws15_c00296{word-spacing:104.841883pt;}
.ws18_c00296{word-spacing:104.855680pt;}
.ws9_c00296{word-spacing:114.053547pt;}
.ws4_c00296{word-spacing:129.303610pt;}
.wse_c00296{word-spacing:135.438587pt;}
.ws11_c00296{word-spacing:203.383228pt;}
.wsd_c00296{word-spacing:210.704730pt;}
.ws7_c00296{word-spacing:220.951153pt;}
.ws1a_c00296{word-spacing:222.956288pt;}
.ws1e_c00296{word-spacing:224.460139pt;}
.ws8_c00296{word-spacing:232.154155pt;}
.wsc_c00296{word-spacing:233.230305pt;}
.ws3_c00296{word-spacing:233.883354pt;}
.ws1c_c00296{word-spacing:236.040253pt;}
.ws13_c00296{word-spacing:236.766885pt;}
.ws21_c00296{word-spacing:242.428172pt;}
.ws10_c00296{word-spacing:253.323045pt;}
.ws23_c00296{word-spacing:255.553527pt;}
.ws19_c00296{word-spacing:257.347111pt;}
.ws24_c00296{word-spacing:261.651713pt;}
.ws1b_c00296{word-spacing:263.859201pt;}
.ws1f_c00296{word-spacing:269.603269pt;}
.ws14_c00296{word-spacing:270.674820pt;}
.ws16_c00296{word-spacing:292.299005pt;}
.wsb_c00296{word-spacing:293.209594pt;}
.ws25_c00296{word-spacing:305.185216pt;}
.ws22_c00296{word-spacing:305.796874pt;}
.wsf_c00296{word-spacing:318.857845pt;}
.ws12_c00296{word-spacing:321.695387pt;}
.ws17_c00296{word-spacing:326.951967pt;}
.ws1d_c00296{word-spacing:332.213147pt;}
.ws20_c00296{word-spacing:359.806747pt;}
._13_c00296{margin-left:-3.752743pt;}
._5_c00296{margin-left:-2.773157pt;}
._c_c00296{margin-left:-1.839573pt;}
._1_c00296{margin-left:-0.940800pt;}
._0_c00296{width:1.089600pt;}
._2_c00296{width:2.333903pt;}
._6_c00296{width:3.382945pt;}
._11_c00296{width:79.961765pt;}
._8_c00296{width:91.650593pt;}
._b_c00296{width:102.830439pt;}
._9_c00296{width:147.586836pt;}
._3_c00296{width:150.332288pt;}
._10_c00296{width:153.399777pt;}
._4_c00296{width:159.865988pt;}
._f_c00296{width:162.123210pt;}
._12_c00296{width:178.972757pt;}
._a_c00296{width:242.157641pt;}
._7_c00296{width:252.057359pt;}
._e_c00296{width:263.634659pt;}
._d_c00296{width:273.488388pt;}
.fs5_c00296{font-size:33.725333pt;}
.fs4_c00296{font-size:45.989333pt;}
.fs0_c00296{font-size:48.000000pt;}
.fs3_c00296{font-size:49.055467pt;}
.fs2_c00296{font-size:53.440000pt;}
.fs6_c00296{font-size:58.253333pt;}
.fs1_c00296{font-size:64.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y37_c00296{bottom:2.298667pt;}
.y2c_c00296{bottom:2.299067pt;}
.y41_c00296{bottom:2.299200pt;}
.y3a_c00296{bottom:2.299467pt;}
.y31_c00296{bottom:2.299600pt;}
.y44_c00296{bottom:2.299733pt;}
.y2e_c00296{bottom:2.300000pt;}
.y34_c00296{bottom:2.300267pt;}
.y47_c00296{bottom:2.300400pt;}
.y36_c00296{bottom:3.065067pt;}
.y38_c00296{bottom:3.065200pt;}
.y2b_c00296{bottom:3.065333pt;}
.y3d_c00296{bottom:3.065467pt;}
.y1b_c00296{bottom:3.065600pt;}
.y28_c00296{bottom:3.065867pt;}
.y3b_c00296{bottom:3.066000pt;}
.y13_c00296{bottom:3.066133pt;}
.y45_c00296{bottom:3.066267pt;}
.y22_c00296{bottom:3.066400pt;}
.y2f_c00296{bottom:3.066533pt;}
.y1f_c00296{bottom:3.066667pt;}
.y33_c00296{bottom:3.066800pt;}
.y48_c00296{bottom:3.066933pt;}
.y17_c00296{bottom:3.067200pt;}
.y1a_c00296{bottom:3.832000pt;}
.y1c_c00296{bottom:3.832133pt;}
.y27_c00296{bottom:3.832267pt;}
.y29_c00296{bottom:3.832400pt;}
.y12_c00296{bottom:3.832533pt;}
.y25_c00296{bottom:3.832667pt;}
.y14_c00296{bottom:3.832800pt;}
.y23_c00296{bottom:3.832933pt;}
.y1e_c00296{bottom:3.833067pt;}
.y20_c00296{bottom:3.833200pt;}
.y16_c00296{bottom:3.833600pt;}
.y18_c00296{bottom:3.833733pt;}
.y6c_c00296{bottom:5.366400pt;}
.y10_c00296{bottom:5.390028pt;}
.y4f_c00296{bottom:6.137274pt;}
.y5d_c00296{bottom:11.497867pt;}
.y5f_c00296{bottom:11.498000pt;}
.y5e_c00296{bottom:13.797467pt;}
.y57_c00296{bottom:13.821361pt;}
.y5c_c00296{bottom:13.821444pt;}
.yb_c00296{bottom:21.474147pt;}
.yf_c00296{bottom:21.480221pt;}
.y4e_c00296{bottom:22.227467pt;}
.y67_c00296{bottom:28.360533pt;}
.y52_c00296{bottom:29.905481pt;}
.y56_c00296{bottom:29.911554pt;}
.y5b_c00296{bottom:31.444621pt;}
.y61_c00296{bottom:36.791667pt;}
.ya_c00296{bottom:37.564340pt;}
.ye_c00296{bottom:37.570414pt;}
.y62_c00296{bottom:42.923733pt;}
.y66_c00296{bottom:43.690267pt;}
.y63_c00296{bottom:45.989600pt;}
.y69_c00296{bottom:45.995624pt;}
.y51_c00296{bottom:45.995674pt;}
.y65_c00296{bottom:45.995757pt;}
.y55_c00296{bottom:46.001747pt;}
.y5a_c00296{bottom:47.534814pt;}
.y6d_c00296{bottom:50.960000pt;}
.y9_c00296{bottom:53.654533pt;}
.yd_c00296{bottom:53.660607pt;}
.y60_c00296{bottom:55.187467pt;}
.y6a_c00296{bottom:55.954000pt;}
.y50_c00296{bottom:62.085867pt;}
.y54_c00296{bottom:62.091940pt;}
.y68_c00296{bottom:63.618800pt;}
.y64_c00296{bottom:63.618933pt;}
.y59_c00296{bottom:63.625007pt;}
.yc_c00296{bottom:69.750800pt;}
.y53_c00296{bottom:78.182133pt;}
.y58_c00296{bottom:79.715200pt;}
.y7_c00296{bottom:128.002240pt;}
.y6_c00296{bottom:140.240000pt;}
.y4c_c00296{bottom:141.774667pt;}
.y4b_c00296{bottom:157.105333pt;}
.y4a_c00296{bottom:172.434667pt;}
.y49_c00296{bottom:187.764000pt;}
.y46_c00296{bottom:203.093333pt;}
.y43_c00296{bottom:218.424000pt;}
.y42_c00296{bottom:233.753333pt;}
.y40_c00296{bottom:249.084000pt;}
.y3f_c00296{bottom:264.413333pt;}
.y3e_c00296{bottom:279.742667pt;}
.y3c_c00296{bottom:295.073333pt;}
.y39_c00296{bottom:310.402667pt;}
.y35_c00296{bottom:325.733333pt;}
.y32_c00296{bottom:341.061333pt;}
.y30_c00296{bottom:356.392000pt;}
.y2d_c00296{bottom:371.721333pt;}
.y2a_c00296{bottom:387.052000pt;}
.y26_c00296{bottom:402.381333pt;}
.y24_c00296{bottom:418.477333pt;}
.y21_c00296{bottom:434.573333pt;}
.y1d_c00296{bottom:450.669333pt;}
.y19_c00296{bottom:466.766667pt;}
.y15_c00296{bottom:482.861333pt;}
.y11_c00296{bottom:498.958667pt;}
.y8_c00296{bottom:515.054667pt;}
.y4d_c00296{bottom:599.369333pt;}
.y6b_c00296{bottom:615.464000pt;}
.y5_c00296{bottom:639.680000pt;}
.y4_c00296{bottom:676.640000pt;}
.y3_c00296{bottom:694.320000pt;}
.y2_c00296{bottom:708.084000pt;}
.y1_c00296{bottom:735.680000pt;}
.he_c00296{height:14.562667pt;}
.h9_c00296{height:15.329333pt;}
.hd_c00296{height:15.330667pt;}
.h14_c00296{height:19.929333pt;}
.h12_c00296{height:27.813520pt;}
.h11_c00296{height:33.581916pt;}
.hc_c00296{height:34.200076pt;}
.hf_c00296{height:36.025333pt;}
.hb_c00296{height:36.480213pt;}
.ha_c00296{height:37.927727pt;}
.h8_c00296{height:40.456388pt;}
.h2_c00296{height:47.109375pt;}
.h15_c00296{height:48.041934pt;}
.h5_c00296{height:52.422344pt;}
.h6_c00296{height:52.448437pt;}
.h3_c00296{height:62.812500pt;}
.h4_c00296{height:64.500000pt;}
.h7_c00296{height:83.548000pt;}
.h10_c00296{height:99.644000pt;}
.h13_c00296{height:120.340000pt;}
.h0_c00296{height:793.840000pt;}
.h1_c00296{height:794.000000pt;}
.we_c00296{width:26.866667pt;}
.w2_c00296{width:49.896000pt;}
.wc_c00296{width:59.108000pt;}
.wa_c00296{width:59.874667pt;}
.wb_c00296{width:59.876000pt;}
.w3_c00296{width:62.946667pt;}
.w6_c00296{width:65.250667pt;}
.w7_c00296{width:75.996000pt;}
.w8_c00296{width:76.764000pt;}
.w9_c00296{width:84.440000pt;}
.wd_c00296{width:96.722667pt;}
.wf_c00296{width:107.469333pt;}
.w5_c00296{width:113.610667pt;}
.w10_c00296{width:680.894667pt;}
.w4_c00296{width:931.912000pt;}
.w0_c00296{width:1122.560000pt;}
.w1_c00296{width:1122.666667pt;}
.x0_c00296{left:0.000000pt;}
.x19_c00296{left:1.535600pt;}
.x8_c00296{left:3.076774pt;}
.x11_c00296{left:5.373067pt;}
.xc_c00296{left:6.908867pt;}
.xe_c00296{left:9.205626pt;}
.x12_c00296{left:10.746533pt;}
.x9_c00296{left:12.288374pt;}
.x18_c00296{left:16.888267pt;}
.x7_c00296{left:19.190933pt;}
.xb_c00296{left:20.726267pt;}
.xd_c00296{left:23.023026pt;}
.x1f_c00296{left:26.867733pt;}
.x15_c00296{left:29.171067pt;}
.x1a_c00296{left:30.705733pt;}
.x13_c00296{left:34.543800pt;}
.x1d_c00296{left:39.150267pt;}
.x1b_c00296{left:71.390400pt;}
.x23_c00296{left:89.046267pt;}
.x2_c00296{left:94.560000pt;}
.x25_c00296{left:122.962667pt;}
.x26_c00296{left:226.453867pt;}
.x14_c00296{left:231.198667pt;}
.xf_c00296{left:294.004800pt;}
.x16_c00296{left:297.216000pt;}
.x17_c00296{left:373.980000pt;}
.x10_c00296{left:383.050800pt;}
.x5_c00296{left:431.435760pt;}
.x3_c00296{left:440.400000pt;}
.x1c_c00296{left:451.510667pt;}
.x1e_c00296{left:536.718667pt;}
.x1_c00296{left:561.280000pt;}
.x20_c00296{left:597.362667pt;}
.x21_c00296{left:658.005333pt;}
.x22_c00296{left:717.881333pt;}
.x24_c00296{left:815.370667pt;}
.x6_c00296{left:912.861333pt;}
.xa_c00296{left:963.525333pt;}
.x27_c00296{left:1004.080000pt;}
.x4_c00296{left:1028.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_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_924f976f05173b260cd29c6c.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_adf705b8ae0ad790a7f04f09.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00297;src:url('chunks/assets/font_3e1c6226b49a2c6c76aa64cd.woff2')format("woff");}.ff4_c00297{font-family:ff4_c00297;line-height:0.921875;font-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_c00297{transform:matrix(0.220014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220014,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.220015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220015,0.000000,0.000000,0.250000,0,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);}
.v1_c00297{vertical-align:-61.938000px;}
.v0_c00297{vertical-align:0.000000px;}
.ls5_c00297{letter-spacing:-2.355096px;}
.ls6_c00297{letter-spacing:-1.589690px;}
.ls9_c00297{letter-spacing:-1.354180px;}
.lsd_c00297{letter-spacing:-0.765406px;}
.ls8_c00297{letter-spacing:-0.706529px;}
.ls7_c00297{letter-spacing:-0.439614px;}
.lsa_c00297{letter-spacing:-0.176632px;}
.ls4_c00297{letter-spacing:-0.120240px;}
.ls3_c00297{letter-spacing:0.000000px;}
.lsc_c00297{letter-spacing:1.236425px;}
.lsb_c00297{letter-spacing:1.766322px;}
.ls2_c00297{letter-spacing:64.352998px;}
.ls0_c00297{letter-spacing:1144.260000px;}
.ls1_c00297{letter-spacing:2531.953800px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:-14.909760px;}
.ws4_c00297{word-spacing:-13.753638px;}
.ws26_c00297{word-spacing:-3.297134px;}
.ws28_c00297{word-spacing:-0.765406px;}
.ws25_c00297{word-spacing:-0.162000px;}
.ws24_c00297{word-spacing:0.000000px;}
.ws27_c00297{word-spacing:0.058877px;}
.wsd_c00297{word-spacing:28.261152px;}
.ws1_c00297{word-spacing:43.981418px;}
.ws5_c00297{word-spacing:90.983246px;}
.ws8_c00297{word-spacing:134.240472px;}
.ws3_c00297{word-spacing:173.417494px;}
.ws21_c00297{word-spacing:252.507505px;}
.ws1e_c00297{word-spacing:269.776247px;}
.ws11_c00297{word-spacing:279.985588px;}
.ws6_c00297{word-spacing:285.437635px;}
.wse_c00297{word-spacing:289.046820px;}
.wsa_c00297{word-spacing:298.590846px;}
.ws12_c00297{word-spacing:300.763422px;}
.ws23_c00297{word-spacing:311.402569px;}
.ws1c_c00297{word-spacing:320.387260px;}
.ws14_c00297{word-spacing:329.283635px;}
.ws1b_c00297{word-spacing:331.091171px;}
.ws9_c00297{word-spacing:335.006518px;}
.ws22_c00297{word-spacing:336.148740px;}
.ws7_c00297{word-spacing:337.803195px;}
.wsf_c00297{word-spacing:350.638468px;}
.ws13_c00297{word-spacing:355.713700px;}
.ws10_c00297{word-spacing:358.492713px;}
.ws1d_c00297{word-spacing:362.072459px;}
.ws20_c00297{word-spacing:362.778988px;}
.ws17_c00297{word-spacing:363.567945px;}
.ws18_c00297{word-spacing:374.207091px;}
.ws19_c00297{word-spacing:389.709511px;}
.ws15_c00297{word-spacing:393.825041px;}
.ws1f_c00297{word-spacing:397.775714px;}
.ws1a_c00297{word-spacing:398.894385px;}
.ws16_c00297{word-spacing:405.612296px;}
.wsc_c00297{word-spacing:409.610072px;}
.ws2_c00297{word-spacing:413.513643px;}
.wsb_c00297{word-spacing:436.811431px;}
._9_c00297{margin-left:-3.120502px;}
._a_c00297{margin-left:-2.043046px;}
._c_c00297{margin-left:-1.000916px;}
._4_c00297{width:1.059793px;}
._2_c00297{width:2.413973px;}
._0_c00297{width:3.615072px;}
._3_c00297{width:188.266374px;}
._1_c00297{width:191.857896px;}
._5_c00297{width:193.058995px;}
._f_c00297{width:196.768271px;}
._6_c00297{width:203.986640px;}
._11_c00297{width:237.805819px;}
._8_c00297{width:323.107396px;}
._10_c00297{width:338.250663px;}
._d_c00297{width:341.194533px;}
._7_c00297{width:350.544264px;}
._b_c00297{width:372.069842px;}
._e_c00297{width:382.526468px;}
.fc0_c00297{color:rgb(0,0,0);}
.fs0_c00297{font-size:54.000000px;}
.fs3_c00297{font-size:58.877400px;}
.fs2_c00297{font-size:60.120000px;}
.fs4_c00297{font-size:62.802000px;}
.fs1_c00297{font-size:72.000000px;}
.y0_c00297{bottom:0.000000px;}
.y32_c00297{bottom:2.942850px;}
.y28_c00297{bottom:2.943000px;}
.y3f_c00297{bottom:2.943150px;}
.y1e_c00297{bottom:2.943300px;}
.y15_c00297{bottom:2.943450px;}
.y35_c00297{bottom:2.943600px;}
.y20_c00297{bottom:2.943750px;}
.y23_c00297{bottom:2.943900px;}
.y9_c00297{bottom:2.944050px;}
.y25_c00297{bottom:2.944200px;}
.yd_c00297{bottom:2.944350px;}
.y11_c00297{bottom:2.944650px;}
.y2c_c00297{bottom:2.945100px;}
.y31_c00297{bottom:3.924150px;}
.y27_c00297{bottom:3.924300px;}
.y1d_c00297{bottom:3.924600px;}
.y14_c00297{bottom:3.924750px;}
.y18_c00297{bottom:3.924900px;}
.y17_c00297{bottom:3.925050px;}
.y22_c00297{bottom:3.925200px;}
.y8_c00297{bottom:3.925350px;}
.ya_c00297{bottom:3.925500px;}
.yc_c00297{bottom:3.925650px;}
.ye_c00297{bottom:3.925800px;}
.y10_c00297{bottom:3.925950px;}
.y12_c00297{bottom:3.926100px;}
.y2b_c00297{bottom:3.926400px;}
.y2d_c00297{bottom:3.926550px;}
.y42_c00297{bottom:57.330000px;}
.y6_c00297{bottom:132.932520px;}
.y5_c00297{bottom:146.700000px;}
.y41_c00297{bottom:148.683000px;}
.y40_c00297{bottom:168.309000px;}
.y3e_c00297{bottom:187.935000px;}
.y3d_c00297{bottom:207.559500px;}
.y3c_c00297{bottom:227.185500px;}
.y3b_c00297{bottom:246.811500px;}
.y3a_c00297{bottom:266.437500px;}
.y39_c00297{bottom:286.062000px;}
.y38_c00297{bottom:305.688000px;}
.y37_c00297{bottom:325.314000px;}
.y36_c00297{bottom:344.940000px;}
.y34_c00297{bottom:364.566000px;}
.y33_c00297{bottom:384.190500px;}
.y30_c00297{bottom:403.818000px;}
.y2f_c00297{bottom:423.442500px;}
.y2e_c00297{bottom:443.068500px;}
.y2a_c00297{bottom:462.693000px;}
.y29_c00297{bottom:482.320500px;}
.y26_c00297{bottom:501.946500px;}
.y24_c00297{bottom:521.571000px;}
.y21_c00297{bottom:541.197000px;}
.y1f_c00297{bottom:560.823000px;}
.y1c_c00297{bottom:580.449000px;}
.y1b_c00297{bottom:600.073500px;}
.y1a_c00297{bottom:619.699500px;}
.y19_c00297{bottom:639.325500px;}
.y16_c00297{bottom:658.951500px;}
.y13_c00297{bottom:678.577500px;}
.yf_c00297{bottom:698.202000px;}
.yb_c00297{bottom:717.828000px;}
.y7_c00297{bottom:737.454000px;}
.y4_c00297{bottom:761.220000px;}
.y3_c00297{bottom:781.105500px;}
.y2_c00297{bottom:796.590000px;}
.y1_c00297{bottom:827.640000px;}
.h9_c00297{height:18.643500px;}
.h5_c00297{height:18.645000px;}
.h8_c00297{height:43.784317px;}
.h7_c00297{height:46.702854px;}
.h6_c00297{height:48.556606px;}
.h2_c00297{height:52.998047px;}
.h4_c00297{height:59.004492px;}
.h3_c00297{height:70.664062px;}
.h0_c00297{height:893.070000px;}
.h1_c00297{height:893.250000px;}
.w2_c00297{width:1048.401000px;}
.w0_c00297{width:1262.880000px;}
.w1_c00297{width:1263.000000px;}
.x0_c00297{left:0.000000px;}
.xa_c00297{left:6.044700px;}
.x5_c00297{left:8.635500px;}
.x8_c00297{left:12.089850px;}
.x2_c00297{left:106.380000px;}
.x9_c00297{left:329.028150px;}
.x6_c00297{left:330.755400px;}
.x7_c00297{left:430.932150px;}
.x4_c00297{left:452.795400px;}
.x1_c00297{left:631.440000px;}
.x3_c00297{left:1156.500000px;}
@media print{
.v1_c00297{vertical-align:-55.056000pt;}
.v0_c00297{vertical-align:0.000000pt;}
.ls5_c00297{letter-spacing:-2.093419pt;}
.ls6_c00297{letter-spacing:-1.413058pt;}
.ls9_c00297{letter-spacing:-1.203716pt;}
.lsd_c00297{letter-spacing:-0.680361pt;}
.ls8_c00297{letter-spacing:-0.628026pt;}
.ls7_c00297{letter-spacing:-0.390768pt;}
.lsa_c00297{letter-spacing:-0.157006pt;}
.ls4_c00297{letter-spacing:-0.106880pt;}
.ls3_c00297{letter-spacing:0.000000pt;}
.lsc_c00297{letter-spacing:1.099045pt;}
.lsb_c00297{letter-spacing:1.570064pt;}
.ls2_c00297{letter-spacing:57.202665pt;}
.ls0_c00297{letter-spacing:1017.120000pt;}
.ls1_c00297{letter-spacing:2250.625600pt;}
.ws0_c00297{word-spacing:-13.253120pt;}
.ws4_c00297{word-spacing:-12.225456pt;}
.ws26_c00297{word-spacing:-2.930786pt;}
.ws28_c00297{word-spacing:-0.680361pt;}
.ws25_c00297{word-spacing:-0.144000pt;}
.ws24_c00297{word-spacing:0.000000pt;}
.ws27_c00297{word-spacing:0.052335pt;}
.wsd_c00297{word-spacing:25.121024pt;}
.ws1_c00297{word-spacing:39.094594pt;}
.ws5_c00297{word-spacing:80.873997pt;}
.ws8_c00297{word-spacing:119.324864pt;}
.ws3_c00297{word-spacing:154.148884pt;}
.ws21_c00297{word-spacing:224.451116pt;}
.ws1e_c00297{word-spacing:239.801108pt;}
.ws11_c00297{word-spacing:248.876078pt;}
.ws6_c00297{word-spacing:253.722342pt;}
.wse_c00297{word-spacing:256.930507pt;}
.wsa_c00297{word-spacing:265.414086pt;}
.ws12_c00297{word-spacing:267.345264pt;}
.ws23_c00297{word-spacing:276.802283pt;}
.ws1c_c00297{word-spacing:284.788675pt;}
.ws14_c00297{word-spacing:292.696564pt;}
.ws1b_c00297{word-spacing:294.303263pt;}
.ws9_c00297{word-spacing:297.783572pt;}
.ws22_c00297{word-spacing:298.798880pt;}
.ws7_c00297{word-spacing:300.269506pt;}
.wsf_c00297{word-spacing:311.678638pt;}
.ws13_c00297{word-spacing:316.189955pt;}
.ws10_c00297{word-spacing:318.660189pt;}
.ws1d_c00297{word-spacing:321.842186pt;}
.ws20_c00297{word-spacing:322.470211pt;}
.ws17_c00297{word-spacing:323.171507pt;}
.ws18_c00297{word-spacing:332.628525pt;}
.ws19_c00297{word-spacing:346.408454pt;}
.ws15_c00297{word-spacing:350.066703pt;}
.ws1f_c00297{word-spacing:353.578413pt;}
.ws1a_c00297{word-spacing:354.572787pt;}
.ws16_c00297{word-spacing:360.544263pt;}
.wsc_c00297{word-spacing:364.097842pt;}
.ws2_c00297{word-spacing:367.567683pt;}
.wsb_c00297{word-spacing:388.276827pt;}
._9_c00297{margin-left:-2.773780pt;}
._a_c00297{margin-left:-1.816041pt;}
._c_c00297{margin-left:-0.889703pt;}
._4_c00297{width:0.942038pt;}
._2_c00297{width:2.145754pt;}
._0_c00297{width:3.213398pt;}
._3_c00297{width:167.347888pt;}
._1_c00297{width:170.540352pt;}
._5_c00297{width:171.607995pt;}
._f_c00297{width:174.905130pt;}
._6_c00297{width:181.321458pt;}
._11_c00297{width:211.382950pt;}
._8_c00297{width:287.206574pt;}
._10_c00297{width:300.667256pt;}
._d_c00297{width:303.284029pt;}
._7_c00297{width:311.594901pt;}
._b_c00297{width:330.728748pt;}
._e_c00297{width:340.023527pt;}
.fs0_c00297{font-size:48.000000pt;}
.fs3_c00297{font-size:52.335467pt;}
.fs2_c00297{font-size:53.440000pt;}
.fs4_c00297{font-size:55.824000pt;}
.fs1_c00297{font-size:64.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y32_c00297{bottom:2.615867pt;}
.y28_c00297{bottom:2.616000pt;}
.y3f_c00297{bottom:2.616133pt;}
.y1e_c00297{bottom:2.616267pt;}
.y15_c00297{bottom:2.616400pt;}
.y35_c00297{bottom:2.616533pt;}
.y20_c00297{bottom:2.616667pt;}
.y23_c00297{bottom:2.616800pt;}
.y9_c00297{bottom:2.616933pt;}
.y25_c00297{bottom:2.617067pt;}
.yd_c00297{bottom:2.617200pt;}
.y11_c00297{bottom:2.617467pt;}
.y2c_c00297{bottom:2.617867pt;}
.y31_c00297{bottom:3.488133pt;}
.y27_c00297{bottom:3.488267pt;}
.y1d_c00297{bottom:3.488533pt;}
.y14_c00297{bottom:3.488667pt;}
.y18_c00297{bottom:3.488800pt;}
.y17_c00297{bottom:3.488933pt;}
.y22_c00297{bottom:3.489067pt;}
.y8_c00297{bottom:3.489200pt;}
.ya_c00297{bottom:3.489333pt;}
.yc_c00297{bottom:3.489467pt;}
.ye_c00297{bottom:3.489600pt;}
.y10_c00297{bottom:3.489733pt;}
.y12_c00297{bottom:3.489867pt;}
.y2b_c00297{bottom:3.490133pt;}
.y2d_c00297{bottom:3.490267pt;}
.y42_c00297{bottom:50.960000pt;}
.y6_c00297{bottom:118.162240pt;}
.y5_c00297{bottom:130.400000pt;}
.y41_c00297{bottom:132.162667pt;}
.y40_c00297{bottom:149.608000pt;}
.y3e_c00297{bottom:167.053333pt;}
.y3d_c00297{bottom:184.497333pt;}
.y3c_c00297{bottom:201.942667pt;}
.y3b_c00297{bottom:219.388000pt;}
.y3a_c00297{bottom:236.833333pt;}
.y39_c00297{bottom:254.277333pt;}
.y38_c00297{bottom:271.722667pt;}
.y37_c00297{bottom:289.168000pt;}
.y36_c00297{bottom:306.613333pt;}
.y34_c00297{bottom:324.058667pt;}
.y33_c00297{bottom:341.502667pt;}
.y30_c00297{bottom:358.949333pt;}
.y2f_c00297{bottom:376.393333pt;}
.y2e_c00297{bottom:393.838667pt;}
.y2a_c00297{bottom:411.282667pt;}
.y29_c00297{bottom:428.729333pt;}
.y26_c00297{bottom:446.174667pt;}
.y24_c00297{bottom:463.618667pt;}
.y21_c00297{bottom:481.064000pt;}
.y1f_c00297{bottom:498.509333pt;}
.y1c_c00297{bottom:515.954667pt;}
.y1b_c00297{bottom:533.398667pt;}
.y1a_c00297{bottom:550.844000pt;}
.y19_c00297{bottom:568.289333pt;}
.y16_c00297{bottom:585.734667pt;}
.y13_c00297{bottom:603.180000pt;}
.yf_c00297{bottom:620.624000pt;}
.yb_c00297{bottom:638.069333pt;}
.y7_c00297{bottom:655.514667pt;}
.y4_c00297{bottom:676.640000pt;}
.y3_c00297{bottom:694.316000pt;}
.y2_c00297{bottom:708.080000pt;}
.y1_c00297{bottom:735.680000pt;}
.h9_c00297{height:16.572000pt;}
.h5_c00297{height:16.573333pt;}
.h8_c00297{height:38.919392pt;}
.h7_c00297{height:41.513648pt;}
.h6_c00297{height:43.161427pt;}
.h2_c00297{height:47.109375pt;}
.h4_c00297{height:52.448437pt;}
.h3_c00297{height:62.812500pt;}
.h0_c00297{height:793.840000pt;}
.h1_c00297{height:794.000000pt;}
.w2_c00297{width:931.912000pt;}
.w0_c00297{width:1122.560000pt;}
.w1_c00297{width:1122.666667pt;}
.x0_c00297{left:0.000000pt;}
.xa_c00297{left:5.373067pt;}
.x5_c00297{left:7.676000pt;}
.x8_c00297{left:10.746533pt;}
.x2_c00297{left:94.560000pt;}
.x9_c00297{left:292.469467pt;}
.x6_c00297{left:294.004800pt;}
.x7_c00297{left:383.050800pt;}
.x4_c00297{left:402.484800pt;}
.x1_c00297{left:561.280000pt;}
.x3_c00297{left:1028.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_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_ea065da2b51fe36894d43e68.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.284668;font-style:normal;font-weight:normal;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_f02a0b000d54b9e1205078e1.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.284180;font-style:normal;font-weight:normal;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_ce152b8cc8aa43a48b17004f.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_aaded1cdf37f940b1fc482eb.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:0.921875;font-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_c00298{transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,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);}
.v1_c00298{vertical-align:-61.920000px;}
.v2_c00298{vertical-align:-4.030800px;}
.v0_c00298{vertical-align:0.000000px;}
.ls5_c00298{letter-spacing:-2.418768px;}
.lsa_c00298{letter-spacing:-1.632668px;}
.ls8_c00298{letter-spacing:-1.390792px;}
.lsd_c00298{letter-spacing:-1.330322px;}
.lsc_c00298{letter-spacing:-0.786100px;}
.ls9_c00298{letter-spacing:-0.725630px;}
.ls7_c00298{letter-spacing:-0.451504px;}
.lse_c00298{letter-spacing:-0.181408px;}
.ls4_c00298{letter-spacing:-0.120240px;}
.ls2_c00298{letter-spacing:-0.108000px;}
.ls3_c00298{letter-spacing:0.000000px;}
.lsf_c00298{letter-spacing:0.181408px;}
.ls6_c00298{letter-spacing:1.269853px;}
.lsb_c00298{letter-spacing:1.814076px;}
.ls1_c00298{letter-spacing:66.092836px;}
.ls0_c00298{letter-spacing:725.580000px;}
.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:-14.909760px;}
.ws2a_c00298{word-spacing:-0.786100px;}
.ws2c_c00298{word-spacing:-0.181408px;}
.ws27_c00298{word-spacing:0.000000px;}
.ws2b_c00298{word-spacing:0.060469px;}
.ws29_c00298{word-spacing:0.162000px;}
.ws28_c00298{word-spacing:0.270000px;}
.wsf_c00298{word-spacing:29.025216px;}
.ws1_c00298{word-spacing:45.170492px;}
.ws5_c00298{word-spacing:93.443055px;}
.ws8_c00298{word-spacing:137.869776px;}
.ws3_c00298{word-spacing:178.105982px;}
.wsd_c00298{word-spacing:203.561311px;}
.ws4_c00298{word-spacing:203.562012px;}
.ws25_c00298{word-spacing:207.592730px;}
.ws24_c00298{word-spacing:218.995255px;}
.ws23_c00298{word-spacing:269.837758px;}
.wsc_c00298{word-spacing:275.939100px;}
.wse_c00298{word-spacing:277.069874px;}
.ws6_c00298{word-spacing:290.518224px;}
.wsa_c00298{word-spacing:293.154682px;}
.ws14_c00298{word-spacing:306.663501px;}
.ws16_c00298{word-spacing:316.955359px;}
.ws18_c00298{word-spacing:319.374127px;}
.ws1d_c00298{word-spacing:329.049199px;}
.ws7_c00298{word-spacing:333.487638px;}
.ws17_c00298{word-spacing:337.115790px;}
.wsb_c00298{word-spacing:346.935988px;}
.ws1a_c00298{word-spacing:349.209630px;}
.ws12_c00298{word-spacing:360.136414px;}
.ws2_c00298{word-spacing:362.712402px;}
.ws21_c00298{word-spacing:372.236301px;}
.ws1f_c00298{word-spacing:380.085204px;}
.ws9_c00298{word-spacing:380.339174px;}
.ws13_c00298{word-spacing:382.667238px;}
.ws1e_c00298{word-spacing:406.740027px;}
.ws26_c00298{word-spacing:409.394625px;}
.ws10_c00298{word-spacing:414.655445px;}
.ws15_c00298{word-spacing:418.827820px;}
.ws19_c00298{word-spacing:419.438559px;}
.ws20_c00298{word-spacing:427.317696px;}
.ws1b_c00298{word-spacing:440.826515px;}
.ws1c_c00298{word-spacing:447.478127px;}
.ws22_c00298{word-spacing:448.276320px;}
.ws11_c00298{word-spacing:508.745520px;}
._7_c00298{margin-left:-3.706762px;}
._2_c00298{margin-left:-2.660645px;}
._1_c00298{margin-left:-1.058400px;}
._0_c00298{width:1.225800px;}
._d_c00298{width:2.226991px;}
._3_c00298{width:3.404416px;}
._11_c00298{width:168.579485px;}
._4_c00298{width:193.278234px;}
._f_c00298{width:194.292714px;}
._5_c00298{width:197.320789px;}
._a_c00298{width:198.348119px;}
._6_c00298{width:209.193197px;}
._e_c00298{width:210.469518px;}
._c_c00298{width:227.593954px;}
._10_c00298{width:250.524838px;}
._9_c00298{width:265.770947px;}
._8_c00298{width:346.774105px;}
._b_c00298{width:359.491971px;}
.fc0_c00298{color:rgb(0,0,0);}
.fs0_c00298{font-size:54.000000px;}
.fs2_c00298{font-size:60.120000px;}
.fs3_c00298{font-size:60.469200px;}
.fs4_c00298{font-size:64.500600px;}
.fs1_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y19_c00298{bottom:4.030350px;}
.y2b_c00298{bottom:4.030500px;}
.y16_c00298{bottom:4.030650px;}
.y1b_c00298{bottom:4.030950px;}
.y9_c00298{bottom:4.031100px;}
.yf_c00298{bottom:4.031250px;}
.y23_c00298{bottom:4.031400px;}
.y14_c00298{bottom:4.031550px;}
.yb_c00298{bottom:4.031700px;}
.y20_c00298{bottom:4.031850px;}
.y7_c00298{bottom:4.032000px;}
.yd_c00298{bottom:4.032300px;}
.y12_c00298{bottom:4.032450px;}
.y26_c00298{bottom:4.032600px;}
.y32_c00298{bottom:57.330000px;}
.y5_c00298{bottom:136.620000px;}
.y31_c00298{bottom:152.388000px;}
.y30_c00298{bottom:172.543500px;}
.y2f_c00298{bottom:192.700500px;}
.y2e_c00298{bottom:212.857500px;}
.y2d_c00298{bottom:233.013000px;}
.y2c_c00298{bottom:253.170000px;}
.y2a_c00298{bottom:273.327000px;}
.y29_c00298{bottom:293.482500px;}
.y28_c00298{bottom:313.638000px;}
.y27_c00298{bottom:333.795000px;}
.y25_c00298{bottom:353.950500px;}
.y24_c00298{bottom:374.107500px;}
.y22_c00298{bottom:394.264500px;}
.y21_c00298{bottom:414.420000px;}
.y1f_c00298{bottom:434.577000px;}
.y1e_c00298{bottom:454.734000px;}
.y1d_c00298{bottom:474.891000px;}
.y1c_c00298{bottom:495.046500px;}
.y1a_c00298{bottom:515.203500px;}
.y18_c00298{bottom:535.360500px;}
.y17_c00298{bottom:555.516000px;}
.y15_c00298{bottom:575.673000px;}
.y13_c00298{bottom:595.828500px;}
.y11_c00298{bottom:615.984000px;}
.y10_c00298{bottom:636.141000px;}
.ye_c00298{bottom:656.298000px;}
.yc_c00298{bottom:676.453500px;}
.ya_c00298{bottom:696.610500px;}
.y8_c00298{bottom:716.767500px;}
.y6_c00298{bottom:736.923000px;}
.y4_c00298{bottom:761.220000px;}
.y3_c00298{bottom:781.110000px;}
.y2_c00298{bottom:796.594500px;}
.y1_c00298{bottom:827.640000px;}
.h5_c00298{height:19.149000px;}
.h7_c00298{height:19.150500px;}
.h6_c00298{height:49.869374px;}
.h2_c00298{height:52.998047px;}
.h4_c00298{height:58.975137px;}
.h3_c00298{height:70.664062px;}
.h0_c00298{height:893.070000px;}
.h1_c00298{height:893.250000px;}
.w2_c00298{width:1048.309500px;}
.w0_c00298{width:1262.880000px;}
.w1_c00298{width:1263.000000px;}
.x0_c00298{left:0.000000px;}
.x6_c00298{left:6.044100px;}
.x5_c00298{left:8.634750px;}
.x7_c00298{left:12.088800px;}
.x2_c00298{left:106.380000px;}
.x4_c00298{left:107.424000px;}
.x1_c00298{left:631.440000px;}
.x3_c00298{left:1089.450000px;}
.x8_c00298{left:1129.590000px;}
@media print{
.v1_c00298{vertical-align:-55.040000pt;}
.v2_c00298{vertical-align:-3.582933pt;}
.v0_c00298{vertical-align:0.000000pt;}
.ls5_c00298{letter-spacing:-2.150016pt;}
.lsa_c00298{letter-spacing:-1.451261pt;}
.ls8_c00298{letter-spacing:-1.236259pt;}
.lsd_c00298{letter-spacing:-1.182509pt;}
.lsc_c00298{letter-spacing:-0.698755pt;}
.ls9_c00298{letter-spacing:-0.645005pt;}
.ls7_c00298{letter-spacing:-0.401337pt;}
.lse_c00298{letter-spacing:-0.161251pt;}
.ls4_c00298{letter-spacing:-0.106880pt;}
.ls2_c00298{letter-spacing:-0.096000pt;}
.ls3_c00298{letter-spacing:0.000000pt;}
.lsf_c00298{letter-spacing:0.161251pt;}
.ls6_c00298{letter-spacing:1.128758pt;}
.lsb_c00298{letter-spacing:1.612512pt;}
.ls1_c00298{letter-spacing:58.749187pt;}
.ls0_c00298{letter-spacing:644.960000pt;}
.ws0_c00298{word-spacing:-13.253120pt;}
.ws2a_c00298{word-spacing:-0.698755pt;}
.ws2c_c00298{word-spacing:-0.161251pt;}
.ws27_c00298{word-spacing:0.000000pt;}
.ws2b_c00298{word-spacing:0.053750pt;}
.ws29_c00298{word-spacing:0.144000pt;}
.ws28_c00298{word-spacing:0.240000pt;}
.wsf_c00298{word-spacing:25.800192pt;}
.ws1_c00298{word-spacing:40.151549pt;}
.ws5_c00298{word-spacing:83.060493pt;}
.ws8_c00298{word-spacing:122.550912pt;}
.ws3_c00298{word-spacing:158.316428pt;}
.wsd_c00298{word-spacing:180.943388pt;}
.ws4_c00298{word-spacing:180.944010pt;}
.ws25_c00298{word-spacing:184.526871pt;}
.ws24_c00298{word-spacing:194.662449pt;}
.ws23_c00298{word-spacing:239.855785pt;}
.wsc_c00298{word-spacing:245.279200pt;}
.wse_c00298{word-spacing:246.284333pt;}
.ws6_c00298{word-spacing:258.238422pt;}
.wsa_c00298{word-spacing:260.581939pt;}
.ws14_c00298{word-spacing:272.589779pt;}
.ws16_c00298{word-spacing:281.738097pt;}
.ws18_c00298{word-spacing:283.888113pt;}
.ws1d_c00298{word-spacing:292.488177pt;}
.ws7_c00298{word-spacing:296.433456pt;}
.ws17_c00298{word-spacing:299.658480pt;}
.wsb_c00298{word-spacing:308.387545pt;}
.ws1a_c00298{word-spacing:310.408560pt;}
.ws12_c00298{word-spacing:320.121257pt;}
.ws2_c00298{word-spacing:322.411024pt;}
.ws21_c00298{word-spacing:330.876712pt;}
.ws1f_c00298{word-spacing:337.853514pt;}
.ws9_c00298{word-spacing:338.079266pt;}
.ws13_c00298{word-spacing:340.148656pt;}
.ws1e_c00298{word-spacing:361.546691pt;}
.ws26_c00298{word-spacing:363.906333pt;}
.ws10_c00298{word-spacing:368.582618pt;}
.ws15_c00298{word-spacing:372.291396pt;}
.ws19_c00298{word-spacing:372.834275pt;}
.ws20_c00298{word-spacing:379.837952pt;}
.ws1b_c00298{word-spacing:391.845791pt;}
.ws1c_c00298{word-spacing:397.758335pt;}
.ws22_c00298{word-spacing:398.467840pt;}
.ws11_c00298{word-spacing:452.218240pt;}
._7_c00298{margin-left:-3.294900pt;}
._2_c00298{margin-left:-2.365018pt;}
._1_c00298{margin-left:-0.940800pt;}
._0_c00298{width:1.089600pt;}
._d_c00298{width:1.979548pt;}
._3_c00298{width:3.026148pt;}
._11_c00298{width:149.848431pt;}
._4_c00298{width:171.802875pt;}
._f_c00298{width:172.704635pt;}
._5_c00298{width:175.396257pt;}
._a_c00298{width:176.309439pt;}
._6_c00298{width:185.949509pt;}
._e_c00298{width:187.084016pt;}
._c_c00298{width:202.305737pt;}
._10_c00298{width:222.688745pt;}
._9_c00298{width:236.240842pt;}
._8_c00298{width:308.243649pt;}
._b_c00298{width:319.548419pt;}
.fs0_c00298{font-size:48.000000pt;}
.fs2_c00298{font-size:53.440000pt;}
.fs3_c00298{font-size:53.750400pt;}
.fs4_c00298{font-size:57.333867pt;}
.fs1_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y19_c00298{bottom:3.582533pt;}
.y2b_c00298{bottom:3.582667pt;}
.y16_c00298{bottom:3.582800pt;}
.y1b_c00298{bottom:3.583067pt;}
.y9_c00298{bottom:3.583200pt;}
.yf_c00298{bottom:3.583333pt;}
.y23_c00298{bottom:3.583467pt;}
.y14_c00298{bottom:3.583600pt;}
.yb_c00298{bottom:3.583733pt;}
.y20_c00298{bottom:3.583867pt;}
.y7_c00298{bottom:3.584000pt;}
.yd_c00298{bottom:3.584267pt;}
.y12_c00298{bottom:3.584400pt;}
.y26_c00298{bottom:3.584533pt;}
.y32_c00298{bottom:50.960000pt;}
.y5_c00298{bottom:121.440000pt;}
.y31_c00298{bottom:135.456000pt;}
.y30_c00298{bottom:153.372000pt;}
.y2f_c00298{bottom:171.289333pt;}
.y2e_c00298{bottom:189.206667pt;}
.y2d_c00298{bottom:207.122667pt;}
.y2c_c00298{bottom:225.040000pt;}
.y2a_c00298{bottom:242.957333pt;}
.y29_c00298{bottom:260.873333pt;}
.y28_c00298{bottom:278.789333pt;}
.y27_c00298{bottom:296.706667pt;}
.y25_c00298{bottom:314.622667pt;}
.y24_c00298{bottom:332.540000pt;}
.y22_c00298{bottom:350.457333pt;}
.y21_c00298{bottom:368.373333pt;}
.y1f_c00298{bottom:386.290667pt;}
.y1e_c00298{bottom:404.208000pt;}
.y1d_c00298{bottom:422.125333pt;}
.y1c_c00298{bottom:440.041333pt;}
.y1a_c00298{bottom:457.958667pt;}
.y18_c00298{bottom:475.876000pt;}
.y17_c00298{bottom:493.792000pt;}
.y15_c00298{bottom:511.709333pt;}
.y13_c00298{bottom:529.625333pt;}
.y11_c00298{bottom:547.541333pt;}
.y10_c00298{bottom:565.458667pt;}
.ye_c00298{bottom:583.376000pt;}
.yc_c00298{bottom:601.292000pt;}
.ya_c00298{bottom:619.209333pt;}
.y8_c00298{bottom:637.126667pt;}
.y6_c00298{bottom:655.042667pt;}
.y4_c00298{bottom:676.640000pt;}
.y3_c00298{bottom:694.320000pt;}
.y2_c00298{bottom:708.084000pt;}
.y1_c00298{bottom:735.680000pt;}
.h5_c00298{height:17.021333pt;}
.h7_c00298{height:17.022667pt;}
.h6_c00298{height:44.328333pt;}
.h2_c00298{height:47.109375pt;}
.h4_c00298{height:52.422344pt;}
.h3_c00298{height:62.812500pt;}
.h0_c00298{height:793.840000pt;}
.h1_c00298{height:794.000000pt;}
.w2_c00298{width:931.830667pt;}
.w0_c00298{width:1122.560000pt;}
.w1_c00298{width:1122.666667pt;}
.x0_c00298{left:0.000000pt;}
.x6_c00298{left:5.372533pt;}
.x5_c00298{left:7.675333pt;}
.x7_c00298{left:10.745600pt;}
.x2_c00298{left:94.560000pt;}
.x4_c00298{left:95.488000pt;}
.x1_c00298{left:561.280000pt;}
.x3_c00298{left:968.400000pt;}
.x8_c00298{left:1004.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_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_6804ace474e55f3f5a1d15f6.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.284180;font-style:normal;font-weight:normal;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_1c0a7aa360747d5c19eb32fc.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.002930;font-style:normal;font-weight:normal;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_6ca71b8fd67a11fc3836fa2f.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:0.921875;font-style:normal;font-weight:normal;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_9090b9fa7586f137f007e75e.woff2')format("woff");}.ff5_c00299{font-family:ff5_c00299;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);}
.v1_c00299{vertical-align:-61.938000px;}
.v3_c00299{vertical-align:-3.468979px;}
.v0_c00299{vertical-align:0.000000px;}
.v2_c00299{vertical-align:3.468979px;}
.ls4_c00299{letter-spacing:-2.071032px;}
.ls12_c00299{letter-spacing:-1.705144px;}
.lsd_c00299{letter-spacing:-1.449722px;}
.ls5_c00299{letter-spacing:-1.397947px;}
.ls9_c00299{letter-spacing:-1.190843px;}
.lsa_c00299{letter-spacing:-1.139068px;}
.lse_c00299{letter-spacing:-0.673085px;}
.ls7_c00299{letter-spacing:-0.621310px;}
.ls6_c00299{letter-spacing:-0.386593px;}
.lsb_c00299{letter-spacing:-0.362431px;}
.ls8_c00299{letter-spacing:-0.155327px;}
.ls3_c00299{letter-spacing:0.000000px;}
.ls10_c00299{letter-spacing:0.807700px;}
.lsf_c00299{letter-spacing:1.087292px;}
.lsc_c00299{letter-spacing:1.553274px;}
.ls11_c00299{letter-spacing:1.750016px;}
.ls1_c00299{letter-spacing:56.590949px;}
.ls2_c00299{letter-spacing:111.835728px;}
.ls0_c00299{letter-spacing:1144.260000px;}
.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;}
}
.ws3_c00299{word-spacing:-12.094844px;}
.ws2a_c00299{word-spacing:-2.602588px;}
.ws29_c00299{word-spacing:-1.660271px;}
.ws26_c00299{word-spacing:-1.190843px;}
.ws25_c00299{word-spacing:-0.162000px;}
.ws24_c00299{word-spacing:0.000000px;}
.ws28_c00299{word-spacing:0.051776px;}
.ws2b_c00299{word-spacing:0.852572px;}
.ws27_c00299{word-spacing:2.071032px;}
.ws11_c00299{word-spacing:24.852384px;}
.ws0_c00299{word-spacing:38.676523px;}
.ws4_c00299{word-spacing:80.009144px;}
.ws17_c00299{word-spacing:104.224685px;}
.ws6_c00299{word-spacing:118.048824px;}
.ws2_c00299{word-spacing:152.479731px;}
.ws10_c00299{word-spacing:231.991827px;}
.ws5_c00299{word-spacing:237.236716px;}
.ws1c_c00299{word-spacing:243.775999px;}
.wsb_c00299{word-spacing:251.009078px;}
.ws1d_c00299{word-spacing:254.131159px;}
.ws16_c00299{word-spacing:258.200737px;}
.ws18_c00299{word-spacing:261.032873px;}
.ws9_c00299{word-spacing:262.575792px;}
.ws22_c00299{word-spacing:265.521835px;}
.ws7_c00299{word-spacing:278.289747px;}
.ws1_c00299{word-spacing:289.949658px;}
.ws13_c00299{word-spacing:294.531816px;}
.wsc_c00299{word-spacing:297.058475px;}
.wse_c00299{word-spacing:302.453513px;}
.ws21_c00299{word-spacing:304.524545px;}
.ws23_c00299{word-spacing:309.075638px;}
.ws8_c00299{word-spacing:314.077180px;}
.ws1e_c00299{word-spacing:325.167557px;}
.ws20_c00299{word-spacing:326.617279px;}
.ws15_c00299{word-spacing:342.931834px;}
.wsa_c00299{word-spacing:346.638981px;}
.ws1a_c00299{word-spacing:353.354302px;}
.ws12_c00299{word-spacing:354.301799px;}
.ws1b_c00299{word-spacing:356.699019px;}
.ws14_c00299{word-spacing:365.671765px;}
.wsf_c00299{word-spacing:367.250927px;}
.wsd_c00299{word-spacing:394.184698px;}
.ws1f_c00299{word-spacing:398.968782px;}
.ws19_c00299{word-spacing:401.573105px;}
._f_c00299{margin-left:-5.629027px;}
._e_c00299{margin-left:-4.060934px;}
._9_c00299{margin-left:-2.516304px;}
._4_c00299{margin-left:-1.175311px;}
._0_c00299{width:1.175311px;}
._1_c00299{width:2.966753px;}
._11_c00299{width:4.602086px;}
._10_c00299{width:5.911670px;}
._8_c00299{width:95.086257px;}
._d_c00299{width:126.296709px;}
._3_c00299{width:165.138914px;}
._2_c00299{width:168.928903px;}
._6_c00299{width:178.963053px;}
._a_c00299{width:227.539108px;}
._5_c00299{width:297.384662px;}
._7_c00299{width:308.148851px;}
._c_c00299{width:321.563961px;}
._b_c00299{width:332.328150px;}
.fc0_c00299{color:rgb(0,0,0);}
.fs5_c00299{font-size:44.872200px;}
.fs3_c00299{font-size:51.775800px;}
.fs0_c00299{font-size:54.000000px;}
.fs4_c00299{font-size:55.227600px;}
.fs2_c00299{font-size:60.120000px;}
.fs1_c00299{font-size:72.000000px;}
.y0_c00299{bottom:0.000000px;}
.y13_c00299{bottom:2.587350px;}
.y27_c00299{bottom:2.587650px;}
.y3b_c00299{bottom:2.587800px;}
.yc_c00299{bottom:2.587950px;}
.y2a_c00299{bottom:2.588100px;}
.y42_c00299{bottom:2.588250px;}
.y22_c00299{bottom:2.588400px;}
.y10_c00299{bottom:2.588550px;}
.y2c_c00299{bottom:2.588700px;}
.y1e_c00299{bottom:2.588850px;}
.y32_c00299{bottom:2.589000px;}
.y9_c00299{bottom:2.589150px;}
.y40_c00299{bottom:2.589300px;}
.y2f_c00299{bottom:2.589600px;}
.y1a_c00299{bottom:2.589750px;}
.y14_c00299{bottom:3.450300px;}
.y12_c00299{bottom:3.450600px;}
.y26_c00299{bottom:3.450750px;}
.yd_c00299{bottom:3.450900px;}
.yb_c00299{bottom:3.451050px;}
.y29_c00299{bottom:3.451200px;}
.y21_c00299{bottom:3.451350px;}
.y35_c00299{bottom:3.451500px;}
.yf_c00299{bottom:3.451650px;}
.y24_c00299{bottom:3.451800px;}
.y1d_c00299{bottom:3.451950px;}
.y8_c00299{bottom:3.452100px;}
.y3f_c00299{bottom:3.452250px;}
.y17_c00299{bottom:3.452400px;}
.y16_c00299{bottom:3.452550px;}
.y1b_c00299{bottom:3.452700px;}
.y19_c00299{bottom:3.453000px;}
.y46_c00299{bottom:4.313550px;}
.y44_c00299{bottom:4.314000px;}
.y4a_c00299{bottom:4.314600px;}
.y48_c00299{bottom:5.177100px;}
.y4b_c00299{bottom:57.330000px;}
.y6_c00299{bottom:188.462340px;}
.y5_c00299{bottom:202.320000px;}
.y43_c00299{bottom:203.944500px;}
.y45_c00299{bottom:221.203500px;}
.y49_c00299{bottom:238.461000px;}
.y47_c00299{bottom:255.720000px;}
.y41_c00299{bottom:273.841500px;}
.y3e_c00299{bottom:291.099000px;}
.y3d_c00299{bottom:308.358000px;}
.y3c_c00299{bottom:325.615500px;}
.y3a_c00299{bottom:342.876000px;}
.y39_c00299{bottom:360.133500px;}
.y38_c00299{bottom:377.392500px;}
.y37_c00299{bottom:394.651500px;}
.y36_c00299{bottom:411.909000px;}
.y34_c00299{bottom:429.168000px;}
.y33_c00299{bottom:446.425500px;}
.y31_c00299{bottom:463.684500px;}
.y30_c00299{bottom:480.943500px;}
.y2e_c00299{bottom:498.201000px;}
.y2d_c00299{bottom:515.461500px;}
.y2b_c00299{bottom:532.719000px;}
.y28_c00299{bottom:549.978000px;}
.y25_c00299{bottom:567.237000px;}
.y23_c00299{bottom:584.494500px;}
.y20_c00299{bottom:601.753500px;}
.y1f_c00299{bottom:619.011000px;}
.y1c_c00299{bottom:636.270000px;}
.y18_c00299{bottom:653.527500px;}
.y15_c00299{bottom:670.786500px;}
.y11_c00299{bottom:688.047000px;}
.ye_c00299{bottom:705.304500px;}
.ya_c00299{bottom:722.563500px;}
.y7_c00299{bottom:739.821000px;}
.y4_c00299{bottom:761.220000px;}
.y3_c00299{bottom:781.105500px;}
.y2_c00299{bottom:796.590000px;}
.y1_c00299{bottom:827.640000px;}
.ha_c00299{height:16.395000px;}
.h6_c00299{height:16.396500px;}
.hd_c00299{height:17.259000px;}
.h9_c00299{height:38.503195px;}
.h8_c00299{height:41.070134px;}
.h7_c00299{height:42.699866px;}
.hc_c00299{height:44.039610px;}
.he_c00299{height:45.222764px;}
.hb_c00299{height:46.168845px;}
.h2_c00299{height:52.998047px;}
.h4_c00299{height:58.975137px;}
.h5_c00299{height:59.004492px;}
.h3_c00299{height:70.664062px;}
.h0_c00299{height:893.070000px;}
.h1_c00299{height:893.250000px;}
.w3_c00299{width:1016.448000px;}
.w2_c00299{width:1048.401000px;}
.w0_c00299{width:1262.880000px;}
.w1_c00299{width:1263.000000px;}
.x0_c00299{left:0.000000px;}
.xa_c00299{left:1.727100px;}
.x8_c00299{left:6.044700px;}
.x4_c00299{left:8.635500px;}
.x7_c00299{left:12.089850px;}
.x2_c00299{left:106.380000px;}
.x9_c00299{left:138.333000px;}
.x5_c00299{left:328.164600px;}
.x6_c00299{left:430.932150px;}
.x1_c00299{left:631.440000px;}
.x3_c00299{left:1156.590000px;}
@media print{
.v1_c00299{vertical-align:-55.056000pt;}
.v3_c00299{vertical-align:-3.083537pt;}
.v0_c00299{vertical-align:0.000000pt;}
.v2_c00299{vertical-align:3.083537pt;}
.ls4_c00299{letter-spacing:-1.840917pt;}
.ls12_c00299{letter-spacing:-1.515683pt;}
.lsd_c00299{letter-spacing:-1.288642pt;}
.ls5_c00299{letter-spacing:-1.242619pt;}
.ls9_c00299{letter-spacing:-1.058527pt;}
.lsa_c00299{letter-spacing:-1.012505pt;}
.lse_c00299{letter-spacing:-0.598298pt;}
.ls7_c00299{letter-spacing:-0.552275pt;}
.ls6_c00299{letter-spacing:-0.343638pt;}
.lsb_c00299{letter-spacing:-0.322161pt;}
.ls8_c00299{letter-spacing:-0.138069pt;}
.ls3_c00299{letter-spacing:0.000000pt;}
.ls10_c00299{letter-spacing:0.717955pt;}
.lsf_c00299{letter-spacing:0.966482pt;}
.lsc_c00299{letter-spacing:1.380688pt;}
.ls11_c00299{letter-spacing:1.555570pt;}
.ls1_c00299{letter-spacing:50.303066pt;}
.ls2_c00299{letter-spacing:99.409536pt;}
.ls0_c00299{letter-spacing:1017.120000pt;}
.ws3_c00299{word-spacing:-10.750973pt;}
.ws2a_c00299{word-spacing:-2.313411pt;}
.ws29_c00299{word-spacing:-1.475797pt;}
.ws26_c00299{word-spacing:-1.058527pt;}
.ws25_c00299{word-spacing:-0.144000pt;}
.ws24_c00299{word-spacing:0.000000pt;}
.ws28_c00299{word-spacing:0.046023pt;}
.ws2b_c00299{word-spacing:0.757842pt;}
.ws27_c00299{word-spacing:1.840917pt;}
.ws11_c00299{word-spacing:22.091008pt;}
.ws0_c00299{word-spacing:34.379131pt;}
.ws4_c00299{word-spacing:71.119239pt;}
.ws17_c00299{word-spacing:92.644165pt;}
.ws6_c00299{word-spacing:104.932288pt;}
.ws2_c00299{word-spacing:135.537539pt;}
.ws10_c00299{word-spacing:206.214957pt;}
.ws5_c00299{word-spacing:210.877081pt;}
.ws1c_c00299{word-spacing:216.689777pt;}
.wsb_c00299{word-spacing:223.119181pt;}
.ws1d_c00299{word-spacing:225.894364pt;}
.ws16_c00299{word-spacing:229.511766pt;}
.ws18_c00299{word-spacing:232.029221pt;}
.ws9_c00299{word-spacing:233.400704pt;}
.ws22_c00299{word-spacing:236.019409pt;}
.ws7_c00299{word-spacing:247.368664pt;}
.ws1_c00299{word-spacing:257.733029pt;}
.ws13_c00299{word-spacing:261.806059pt;}
.wsc_c00299{word-spacing:264.051978pt;}
.wse_c00299{word-spacing:268.847567pt;}
.ws21_c00299{word-spacing:270.688485pt;}
.ws23_c00299{word-spacing:274.733901pt;}
.ws8_c00299{word-spacing:279.179716pt;}
.ws1e_c00299{word-spacing:289.037828pt;}
.ws20_c00299{word-spacing:290.326470pt;}
.ws15_c00299{word-spacing:304.828297pt;}
.wsa_c00299{word-spacing:308.123539pt;}
.ws1a_c00299{word-spacing:314.092713pt;}
.ws12_c00299{word-spacing:314.934933pt;}
.ws1b_c00299{word-spacing:317.065795pt;}
.ws14_c00299{word-spacing:325.041569pt;}
.wsf_c00299{word-spacing:326.445268pt;}
.wsd_c00299{word-spacing:350.386398pt;}
.ws1f_c00299{word-spacing:354.638917pt;}
.ws19_c00299{word-spacing:356.953871pt;}
._f_c00299{margin-left:-5.003580pt;}
._e_c00299{margin-left:-3.609719pt;}
._9_c00299{margin-left:-2.236715pt;}
._4_c00299{margin-left:-1.044721pt;}
._0_c00299{width:1.044721pt;}
._1_c00299{width:2.637114pt;}
._11_c00299{width:4.090743pt;}
._10_c00299{width:5.254818pt;}
._8_c00299{width:84.521117pt;}
._d_c00299{width:112.263741pt;}
._3_c00299{width:146.790146pt;}
._2_c00299{width:150.159025pt;}
._6_c00299{width:159.078269pt;}
._a_c00299{width:202.256985pt;}
._5_c00299{width:264.341922pt;}
._7_c00299{width:273.910090pt;}
._c_c00299{width:285.834632pt;}
._b_c00299{width:295.402800pt;}
.fs5_c00299{font-size:39.886400pt;}
.fs3_c00299{font-size:46.022933pt;}
.fs0_c00299{font-size:48.000000pt;}
.fs4_c00299{font-size:49.091200pt;}
.fs2_c00299{font-size:53.440000pt;}
.fs1_c00299{font-size:64.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y13_c00299{bottom:2.299867pt;}
.y27_c00299{bottom:2.300133pt;}
.y3b_c00299{bottom:2.300267pt;}
.yc_c00299{bottom:2.300400pt;}
.y2a_c00299{bottom:2.300533pt;}
.y42_c00299{bottom:2.300667pt;}
.y22_c00299{bottom:2.300800pt;}
.y10_c00299{bottom:2.300933pt;}
.y2c_c00299{bottom:2.301067pt;}
.y1e_c00299{bottom:2.301200pt;}
.y32_c00299{bottom:2.301333pt;}
.y9_c00299{bottom:2.301467pt;}
.y40_c00299{bottom:2.301600pt;}
.y2f_c00299{bottom:2.301867pt;}
.y1a_c00299{bottom:2.302000pt;}
.y14_c00299{bottom:3.066933pt;}
.y12_c00299{bottom:3.067200pt;}
.y26_c00299{bottom:3.067333pt;}
.yd_c00299{bottom:3.067467pt;}
.yb_c00299{bottom:3.067600pt;}
.y29_c00299{bottom:3.067733pt;}
.y21_c00299{bottom:3.067867pt;}
.y35_c00299{bottom:3.068000pt;}
.yf_c00299{bottom:3.068133pt;}
.y24_c00299{bottom:3.068267pt;}
.y1d_c00299{bottom:3.068400pt;}
.y8_c00299{bottom:3.068533pt;}
.y3f_c00299{bottom:3.068667pt;}
.y17_c00299{bottom:3.068800pt;}
.y16_c00299{bottom:3.068933pt;}
.y1b_c00299{bottom:3.069067pt;}
.y19_c00299{bottom:3.069333pt;}
.y46_c00299{bottom:3.834267pt;}
.y44_c00299{bottom:3.834667pt;}
.y4a_c00299{bottom:3.835200pt;}
.y48_c00299{bottom:4.601867pt;}
.y4b_c00299{bottom:50.960000pt;}
.y6_c00299{bottom:167.522080pt;}
.y5_c00299{bottom:179.840000pt;}
.y43_c00299{bottom:181.284000pt;}
.y45_c00299{bottom:196.625333pt;}
.y49_c00299{bottom:211.965333pt;}
.y47_c00299{bottom:227.306667pt;}
.y41_c00299{bottom:243.414667pt;}
.y3e_c00299{bottom:258.754667pt;}
.y3d_c00299{bottom:274.096000pt;}
.y3c_c00299{bottom:289.436000pt;}
.y3a_c00299{bottom:304.778667pt;}
.y39_c00299{bottom:320.118667pt;}
.y38_c00299{bottom:335.460000pt;}
.y37_c00299{bottom:350.801333pt;}
.y36_c00299{bottom:366.141333pt;}
.y34_c00299{bottom:381.482667pt;}
.y33_c00299{bottom:396.822667pt;}
.y31_c00299{bottom:412.164000pt;}
.y30_c00299{bottom:427.505333pt;}
.y2e_c00299{bottom:442.845333pt;}
.y2d_c00299{bottom:458.188000pt;}
.y2b_c00299{bottom:473.528000pt;}
.y28_c00299{bottom:488.869333pt;}
.y25_c00299{bottom:504.210667pt;}
.y23_c00299{bottom:519.550667pt;}
.y20_c00299{bottom:534.892000pt;}
.y1f_c00299{bottom:550.232000pt;}
.y1c_c00299{bottom:565.573333pt;}
.y18_c00299{bottom:580.913333pt;}
.y15_c00299{bottom:596.254667pt;}
.y11_c00299{bottom:611.597333pt;}
.ye_c00299{bottom:626.937333pt;}
.ya_c00299{bottom:642.278667pt;}
.y7_c00299{bottom:657.618667pt;}
.y4_c00299{bottom:676.640000pt;}
.y3_c00299{bottom:694.316000pt;}
.y2_c00299{bottom:708.080000pt;}
.y1_c00299{bottom:735.680000pt;}
.ha_c00299{height:14.573333pt;}
.h6_c00299{height:14.574667pt;}
.hd_c00299{height:15.341333pt;}
.h9_c00299{height:34.225062pt;}
.h8_c00299{height:36.506786pt;}
.h7_c00299{height:37.955437pt;}
.hc_c00299{height:39.146320pt;}
.he_c00299{height:40.198013pt;}
.hb_c00299{height:41.038973pt;}
.h2_c00299{height:47.109375pt;}
.h4_c00299{height:52.422344pt;}
.h5_c00299{height:52.448437pt;}
.h3_c00299{height:62.812500pt;}
.h0_c00299{height:793.840000pt;}
.h1_c00299{height:794.000000pt;}
.w3_c00299{width:903.509333pt;}
.w2_c00299{width:931.912000pt;}
.w0_c00299{width:1122.560000pt;}
.w1_c00299{width:1122.666667pt;}
.x0_c00299{left:0.000000pt;}
.xa_c00299{left:1.535200pt;}
.x8_c00299{left:5.373067pt;}
.x4_c00299{left:7.676000pt;}
.x7_c00299{left:10.746533pt;}
.x2_c00299{left:94.560000pt;}
.x9_c00299{left:122.962667pt;}
.x5_c00299{left:291.701867pt;}
.x6_c00299{left:383.050800pt;}
.x1_c00299{left:561.280000pt;}
.x3_c00299{left:1028.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_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_eae9bb676129d3e4009ee11f.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_d8da6d699f2692fbd14cc8e6.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;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_c00300;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00300{vertical-align:-20.880000px;}
.v1_c00300{vertical-align:-14.760000px;}
.v0_c00300{vertical-align:0.000000px;}
.v2_c00300{vertical-align:14.760000px;}
.v3_c00300{vertical-align:27.000000px;}
.ls17_c00300{letter-spacing:-0.288000px;}
.ls19_c00300{letter-spacing:-0.120240px;}
.ls15_c00300{letter-spacing:-0.108000px;}
.ls16_c00300{letter-spacing:-0.072000px;}
.ls18_c00300{letter-spacing:-0.060120px;}
.ls14_c00300{letter-spacing:0.000000px;}
.ls4_c00300{letter-spacing:0.072000px;}
.ls5_c00300{letter-spacing:0.144000px;}
.ls1a_c00300{letter-spacing:0.180360px;}
.lsb_c00300{letter-spacing:0.191520px;}
.ls11_c00300{letter-spacing:7.200000px;}
.lsc_c00300{letter-spacing:7.560000px;}
.ls0_c00300{letter-spacing:9.000000px;}
.lse_c00300{letter-spacing:11.160000px;}
.lsd_c00300{letter-spacing:11.520000px;}
.ls12_c00300{letter-spacing:12.324600px;}
.ls13_c00300{letter-spacing:12.390732px;}
.ls8_c00300{letter-spacing:13.680000px;}
.lsa_c00300{letter-spacing:19.080000px;}
.ls9_c00300{letter-spacing:19.087200px;}
.ls7_c00300{letter-spacing:20.016000px;}
.ls3_c00300{letter-spacing:22.601520px;}
.ls6_c00300{letter-spacing:22.961520px;}
.ls2_c00300{letter-spacing:23.760000px;}
.ls1_c00300{letter-spacing:24.120000px;}
.ls10_c00300{letter-spacing:28.800000px;}
.lsf_c00300{letter-spacing:29.520000px;}
.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;}
}
.ws3_c00300{word-spacing:-72.000000px;}
.ws5_c00300{word-spacing:-18.144000px;}
.ws0_c00300{word-spacing:-18.072000px;}
.ws2_c00300{word-spacing:-18.000000px;}
.ws1_c00300{word-spacing:-17.928000px;}
.ws6_c00300{word-spacing:-17.712000px;}
.wsb_c00300{word-spacing:-15.030000px;}
.wsa_c00300{word-spacing:-14.969880px;}
.ws7_c00300{word-spacing:-12.161520px;}
.ws9_c00300{word-spacing:-9.720000px;}
.ws37_c00300{word-spacing:-0.420840px;}
.ws34_c00300{word-spacing:-0.180360px;}
.ws1e_c00300{word-spacing:-0.144000px;}
.ws11_c00300{word-spacing:-0.072000px;}
.ws36_c00300{word-spacing:-0.060120px;}
.wsc_c00300{word-spacing:0.000000px;}
.ws31_c00300{word-spacing:0.060120px;}
.wse_c00300{word-spacing:0.162000px;}
.wsd_c00300{word-spacing:0.270000px;}
.ws25_c00300{word-spacing:0.360000px;}
.ws19_c00300{word-spacing:2.520000px;}
.ws15_c00300{word-spacing:3.240000px;}
.ws16_c00300{word-spacing:3.528000px;}
.ws17_c00300{word-spacing:3.600000px;}
.ws8_c00300{word-spacing:3.816000px;}
.ws30_c00300{word-spacing:3.888000px;}
.ws18_c00300{word-spacing:3.960000px;}
.ws4_c00300{word-spacing:4.176000px;}
.ws26_c00300{word-spacing:4.968000px;}
.ws24_c00300{word-spacing:6.408000px;}
.ws1b_c00300{word-spacing:6.840000px;}
.ws2f_c00300{word-spacing:7.200000px;}
.ws27_c00300{word-spacing:7.848000px;}
.ws28_c00300{word-spacing:8.208000px;}
.ws10_c00300{word-spacing:9.288000px;}
.wsf_c00300{word-spacing:9.360000px;}
.ws20_c00300{word-spacing:10.728000px;}
.ws2a_c00300{word-spacing:11.448000px;}
.ws29_c00300{word-spacing:11.520000px;}
.ws32_c00300{word-spacing:12.024000px;}
.ws35_c00300{word-spacing:12.144240px;}
.ws33_c00300{word-spacing:12.444840px;}
.ws1f_c00300{word-spacing:13.680000px;}
.ws2d_c00300{word-spacing:17.136000px;}
.ws2c_c00300{word-spacing:17.208000px;}
.ws2e_c00300{word-spacing:17.280000px;}
.ws23_c00300{word-spacing:18.720000px;}
.ws21_c00300{word-spacing:19.008000px;}
.ws22_c00300{word-spacing:19.080000px;}
.ws14_c00300{word-spacing:23.760000px;}
.ws13_c00300{word-spacing:24.048000px;}
.ws12_c00300{word-spacing:24.120000px;}
.ws1c_c00300{word-spacing:27.360000px;}
.ws1d_c00300{word-spacing:27.648000px;}
.ws2b_c00300{word-spacing:29.088000px;}
.ws1a_c00300{word-spacing:42.048000px;}
._4_c00300{margin-left:-6.573600px;}
._3_c00300{margin-left:-4.068000px;}
._1_c00300{margin-left:-1.058400px;}
._0_c00300{width:1.220400px;}
._2_c00300{width:3.434400px;}
._9_c00300{width:5.004000px;}
._7_c00300{width:6.899040px;}
._8_c00300{width:8.003520px;}
._a_c00300{width:12.444840px;}
._6_c00300{width:19.296000px;}
._5_c00300{width:29.520000px;}
.fc0_c00300{color:rgb(0,0,0);}
.fs4_c00300{font-size:38.880000px;}
.fs3_c00300{font-size:47.880000px;}
.fs2_c00300{font-size:51.120000px;}
.fs0_c00300{font-size:54.000000px;}
.fs5_c00300{font-size:60.120000px;}
.fs1_c00300{font-size:72.000000px;}
.y0_c00300{bottom:0.000000px;}
.y27_c00300{bottom:57.240000px;}
.y26_c00300{bottom:109.795680px;}
.y25_c00300{bottom:132.210000px;}
.y28_c00300{bottom:144.900000px;}
.y24_c00300{bottom:175.410000px;}
.y23_c00300{bottom:206.910000px;}
.y22_c00300{bottom:237.960000px;}
.y21_c00300{bottom:269.010000px;}
.y20_c00300{bottom:300.060000px;}
.y1f_c00300{bottom:331.110000px;}
.y1e_c00300{bottom:362.160000px;}
.y1d_c00300{bottom:393.390000px;}
.y1c_c00300{bottom:424.890000px;}
.y1b_c00300{bottom:455.940000px;}
.y1a_c00300{bottom:487.170000px;}
.y19_c00300{bottom:518.760000px;}
.y18_c00300{bottom:550.260000px;}
.y17_c00300{bottom:581.310000px;}
.y16_c00300{bottom:612.360000px;}
.y15_c00300{bottom:643.410000px;}
.y14_c00300{bottom:674.460000px;}
.y13_c00300{bottom:705.510000px;}
.y12_c00300{bottom:736.560000px;}
.y11_c00300{bottom:767.610000px;}
.y10_c00300{bottom:798.660000px;}
.yf_c00300{bottom:829.890000px;}
.ye_c00300{bottom:861.390000px;}
.yd_c00300{bottom:892.440000px;}
.yc_c00300{bottom:923.490000px;}
.yb_c00300{bottom:954.630000px;}
.ya_c00300{bottom:986.130000px;}
.y9_c00300{bottom:1017.180000px;}
.y8_c00300{bottom:1048.230000px;}
.y7_c00300{bottom:1079.280000px;}
.y6_c00300{bottom:1110.330000px;}
.y5_c00300{bottom:1131.030000px;}
.y4_c00300{bottom:1150.920000px;}
.y3_c00300{bottom:1166.404500px;}
.y2_c00300{bottom:1181.970000px;}
.y1_c00300{bottom:1197.450000px;}
.h7_c00300{height:38.158594px;}
.h6_c00300{height:50.027344px;}
.h3_c00300{height:52.971680px;}
.h2_c00300{height:52.998047px;}
.h8_c00300{height:59.004492px;}
.h4_c00300{height:70.664062px;}
.h5_c00300{height:143.542969px;}
.h0_c00300{height:1262.880000px;}
.h1_c00300{height:1263.000000px;}
.w0_c00300{width:893.070000px;}
.w1_c00300{width:893.250000px;}
.x0_c00300{left:0.000000px;}
.x3_c00300{left:127.620000px;}
.x2_c00300{left:425.160000px;}
.x1_c00300{left:446.580000px;}
.x4_c00300{left:738.540000px;}
@media print{
.v4_c00300{vertical-align:-18.560000pt;}
.v1_c00300{vertical-align:-13.120000pt;}
.v0_c00300{vertical-align:0.000000pt;}
.v2_c00300{vertical-align:13.120000pt;}
.v3_c00300{vertical-align:24.000000pt;}
.ls17_c00300{letter-spacing:-0.256000pt;}
.ls19_c00300{letter-spacing:-0.106880pt;}
.ls15_c00300{letter-spacing:-0.096000pt;}
.ls16_c00300{letter-spacing:-0.064000pt;}
.ls18_c00300{letter-spacing:-0.053440pt;}
.ls14_c00300{letter-spacing:0.000000pt;}
.ls4_c00300{letter-spacing:0.064000pt;}
.ls5_c00300{letter-spacing:0.128000pt;}
.ls1a_c00300{letter-spacing:0.160320pt;}
.lsb_c00300{letter-spacing:0.170240pt;}
.ls11_c00300{letter-spacing:6.400000pt;}
.lsc_c00300{letter-spacing:6.720000pt;}
.ls0_c00300{letter-spacing:8.000000pt;}
.lse_c00300{letter-spacing:9.920000pt;}
.lsd_c00300{letter-spacing:10.240000pt;}
.ls12_c00300{letter-spacing:10.955200pt;}
.ls13_c00300{letter-spacing:11.013984pt;}
.ls8_c00300{letter-spacing:12.160000pt;}
.lsa_c00300{letter-spacing:16.960000pt;}
.ls9_c00300{letter-spacing:16.966400pt;}
.ls7_c00300{letter-spacing:17.792000pt;}
.ls3_c00300{letter-spacing:20.090240pt;}
.ls6_c00300{letter-spacing:20.410240pt;}
.ls2_c00300{letter-spacing:21.120000pt;}
.ls1_c00300{letter-spacing:21.440000pt;}
.ls10_c00300{letter-spacing:25.600000pt;}
.lsf_c00300{letter-spacing:26.240000pt;}
.ws3_c00300{word-spacing:-64.000000pt;}
.ws5_c00300{word-spacing:-16.128000pt;}
.ws0_c00300{word-spacing:-16.064000pt;}
.ws2_c00300{word-spacing:-16.000000pt;}
.ws1_c00300{word-spacing:-15.936000pt;}
.ws6_c00300{word-spacing:-15.744000pt;}
.wsb_c00300{word-spacing:-13.360000pt;}
.wsa_c00300{word-spacing:-13.306560pt;}
.ws7_c00300{word-spacing:-10.810240pt;}
.ws9_c00300{word-spacing:-8.640000pt;}
.ws37_c00300{word-spacing:-0.374080pt;}
.ws34_c00300{word-spacing:-0.160320pt;}
.ws1e_c00300{word-spacing:-0.128000pt;}
.ws11_c00300{word-spacing:-0.064000pt;}
.ws36_c00300{word-spacing:-0.053440pt;}
.wsc_c00300{word-spacing:0.000000pt;}
.ws31_c00300{word-spacing:0.053440pt;}
.wse_c00300{word-spacing:0.144000pt;}
.wsd_c00300{word-spacing:0.240000pt;}
.ws25_c00300{word-spacing:0.320000pt;}
.ws19_c00300{word-spacing:2.240000pt;}
.ws15_c00300{word-spacing:2.880000pt;}
.ws16_c00300{word-spacing:3.136000pt;}
.ws17_c00300{word-spacing:3.200000pt;}
.ws8_c00300{word-spacing:3.392000pt;}
.ws30_c00300{word-spacing:3.456000pt;}
.ws18_c00300{word-spacing:3.520000pt;}
.ws4_c00300{word-spacing:3.712000pt;}
.ws26_c00300{word-spacing:4.416000pt;}
.ws24_c00300{word-spacing:5.696000pt;}
.ws1b_c00300{word-spacing:6.080000pt;}
.ws2f_c00300{word-spacing:6.400000pt;}
.ws27_c00300{word-spacing:6.976000pt;}
.ws28_c00300{word-spacing:7.296000pt;}
.ws10_c00300{word-spacing:8.256000pt;}
.wsf_c00300{word-spacing:8.320000pt;}
.ws20_c00300{word-spacing:9.536000pt;}
.ws2a_c00300{word-spacing:10.176000pt;}
.ws29_c00300{word-spacing:10.240000pt;}
.ws32_c00300{word-spacing:10.688000pt;}
.ws35_c00300{word-spacing:10.794880pt;}
.ws33_c00300{word-spacing:11.062080pt;}
.ws1f_c00300{word-spacing:12.160000pt;}
.ws2d_c00300{word-spacing:15.232000pt;}
.ws2c_c00300{word-spacing:15.296000pt;}
.ws2e_c00300{word-spacing:15.360000pt;}
.ws23_c00300{word-spacing:16.640000pt;}
.ws21_c00300{word-spacing:16.896000pt;}
.ws22_c00300{word-spacing:16.960000pt;}
.ws14_c00300{word-spacing:21.120000pt;}
.ws13_c00300{word-spacing:21.376000pt;}
.ws12_c00300{word-spacing:21.440000pt;}
.ws1c_c00300{word-spacing:24.320000pt;}
.ws1d_c00300{word-spacing:24.576000pt;}
.ws2b_c00300{word-spacing:25.856000pt;}
.ws1a_c00300{word-spacing:37.376000pt;}
._4_c00300{margin-left:-5.843200pt;}
._3_c00300{margin-left:-3.616000pt;}
._1_c00300{margin-left:-0.940800pt;}
._0_c00300{width:1.084800pt;}
._2_c00300{width:3.052800pt;}
._9_c00300{width:4.448000pt;}
._7_c00300{width:6.132480pt;}
._8_c00300{width:7.114240pt;}
._a_c00300{width:11.062080pt;}
._6_c00300{width:17.152000pt;}
._5_c00300{width:26.240000pt;}
.fs4_c00300{font-size:34.560000pt;}
.fs3_c00300{font-size:42.560000pt;}
.fs2_c00300{font-size:45.440000pt;}
.fs0_c00300{font-size:48.000000pt;}
.fs5_c00300{font-size:53.440000pt;}
.fs1_c00300{font-size:64.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y27_c00300{bottom:50.880000pt;}
.y26_c00300{bottom:97.596160pt;}
.y25_c00300{bottom:117.520000pt;}
.y28_c00300{bottom:128.800000pt;}
.y24_c00300{bottom:155.920000pt;}
.y23_c00300{bottom:183.920000pt;}
.y22_c00300{bottom:211.520000pt;}
.y21_c00300{bottom:239.120000pt;}
.y20_c00300{bottom:266.720000pt;}
.y1f_c00300{bottom:294.320000pt;}
.y1e_c00300{bottom:321.920000pt;}
.y1d_c00300{bottom:349.680000pt;}
.y1c_c00300{bottom:377.680000pt;}
.y1b_c00300{bottom:405.280000pt;}
.y1a_c00300{bottom:433.040000pt;}
.y19_c00300{bottom:461.120000pt;}
.y18_c00300{bottom:489.120000pt;}
.y17_c00300{bottom:516.720000pt;}
.y16_c00300{bottom:544.320000pt;}
.y15_c00300{bottom:571.920000pt;}
.y14_c00300{bottom:599.520000pt;}
.y13_c00300{bottom:627.120000pt;}
.y12_c00300{bottom:654.720000pt;}
.y11_c00300{bottom:682.320000pt;}
.y10_c00300{bottom:709.920000pt;}
.yf_c00300{bottom:737.680000pt;}
.ye_c00300{bottom:765.680000pt;}
.yd_c00300{bottom:793.280000pt;}
.yc_c00300{bottom:820.880000pt;}
.yb_c00300{bottom:848.560000pt;}
.ya_c00300{bottom:876.560000pt;}
.y9_c00300{bottom:904.160000pt;}
.y8_c00300{bottom:931.760000pt;}
.y7_c00300{bottom:959.360000pt;}
.y6_c00300{bottom:986.960000pt;}
.y5_c00300{bottom:1005.360000pt;}
.y4_c00300{bottom:1023.040000pt;}
.y3_c00300{bottom:1036.804000pt;}
.y2_c00300{bottom:1050.640000pt;}
.y1_c00300{bottom:1064.400000pt;}
.h7_c00300{height:33.918750pt;}
.h6_c00300{height:44.468750pt;}
.h3_c00300{height:47.085938pt;}
.h2_c00300{height:47.109375pt;}
.h8_c00300{height:52.448437pt;}
.h4_c00300{height:62.812500pt;}
.h5_c00300{height:127.593750pt;}
.h0_c00300{height:1122.560000pt;}
.h1_c00300{height:1122.666667pt;}
.w0_c00300{width:793.840000pt;}
.w1_c00300{width:794.000000pt;}
.x0_c00300{left:0.000000pt;}
.x3_c00300{left:113.440000pt;}
.x2_c00300{left:377.920000pt;}
.x1_c00300{left:396.960000pt;}
.x4_c00300{left:656.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_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_89fcdfc3998c16954bc8010c.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00301;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00301;src:url('chunks/assets/font_1fe8425bfefc3c7581401374.woff2')format("woff");}.ff5_c00301{font-family:ff5_c00301;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_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);}
.v1_c00301{vertical-align:-61.938000px;}
.v2_c00301{vertical-align:-14.760000px;}
.v0_c00301{vertical-align:0.000000px;}
.v3_c00301{vertical-align:14.760000px;}
.ls8_c00301{letter-spacing:-0.144000px;}
.ls7_c00301{letter-spacing:0.000000px;}
.ls4_c00301{letter-spacing:0.072000px;}
.ls1_c00301{letter-spacing:0.144000px;}
.ls3_c00301{letter-spacing:20.016000px;}
.ls6_c00301{letter-spacing:22.601520px;}
.ls2_c00301{letter-spacing:22.961520px;}
.ls5_c00301{letter-spacing:32.040000px;}
.ls0_c00301{letter-spacing:319.518000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:-72.000000px;}
.ws1_c00301{word-spacing:-18.144000px;}
.ws2_c00301{word-spacing:-18.072000px;}
.ws19_c00301{word-spacing:-0.360000px;}
.ws6_c00301{word-spacing:-0.162000px;}
.ws12_c00301{word-spacing:-0.144000px;}
.wsa_c00301{word-spacing:-0.072000px;}
.ws5_c00301{word-spacing:0.000000px;}
.ws2a_c00301{word-spacing:1.440000px;}
.ws16_c00301{word-spacing:1.728000px;}
.ws17_c00301{word-spacing:1.800000px;}
.wse_c00301{word-spacing:2.808000px;}
.wsd_c00301{word-spacing:2.880000px;}
.ws26_c00301{word-spacing:3.240000px;}
.ws4_c00301{word-spacing:3.816000px;}
.ws3_c00301{word-spacing:4.176000px;}
.wsb_c00301{word-spacing:5.400000px;}
.ws22_c00301{word-spacing:5.760000px;}
.ws1d_c00301{word-spacing:5.976000px;}
.ws1e_c00301{word-spacing:6.048000px;}
.ws21_c00301{word-spacing:6.480000px;}
.ws14_c00301{word-spacing:7.488000px;}
.ws13_c00301{word-spacing:7.560000px;}
.ws15_c00301{word-spacing:8.208000px;}
.ws18_c00301{word-spacing:8.568000px;}
.ws28_c00301{word-spacing:8.856000px;}
.ws29_c00301{word-spacing:9.000000px;}
.ws24_c00301{word-spacing:9.648000px;}
.ws25_c00301{word-spacing:9.720000px;}
.ws11_c00301{word-spacing:10.008000px;}
.ws1f_c00301{word-spacing:10.728000px;}
.ws20_c00301{word-spacing:10.800000px;}
.ws2b_c00301{word-spacing:11.088000px;}
.ws2c_c00301{word-spacing:11.160000px;}
.ws1a_c00301{word-spacing:11.664000px;}
.ws7_c00301{word-spacing:12.240000px;}
.ws9_c00301{word-spacing:12.528000px;}
.ws8_c00301{word-spacing:12.600000px;}
.ws27_c00301{word-spacing:16.200000px;}
.ws1b_c00301{word-spacing:17.928000px;}
.ws1c_c00301{word-spacing:18.000000px;}
.wsf_c00301{word-spacing:21.528000px;}
.ws10_c00301{word-spacing:21.600000px;}
.ws23_c00301{word-spacing:21.960000px;}
.wsc_c00301{word-spacing:32.040000px;}
._1_c00301{margin-left:-5.803200px;}
._7_c00301{margin-left:-3.938400px;}
._0_c00301{margin-left:-1.231200px;}
._5_c00301{width:1.080000px;}
._6_c00301{width:2.808000px;}
._2_c00301{width:5.320800px;}
._8_c00301{width:7.135200px;}
._a_c00301{width:10.231200px;}
._9_c00301{width:11.376000px;}
._3_c00301{width:26.272800px;}
._4_c00301{width:27.374400px;}
.fc0_c00301{color:rgb(0,0,0);}
.fs2_c00301{font-size:51.120000px;}
.fs0_c00301{font-size:54.000000px;}
.fs1_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.y26_c00301{bottom:57.240000px;}
.y25_c00301{bottom:111.960000px;}
.y24_c00301{bottom:143.190000px;}
.y23_c00301{bottom:174.690000px;}
.y22_c00301{bottom:205.920000px;}
.y21_c00301{bottom:237.420000px;}
.y20_c00301{bottom:268.560000px;}
.y1f_c00301{bottom:300.060000px;}
.y1e_c00301{bottom:331.110000px;}
.y1d_c00301{bottom:362.160000px;}
.y1c_c00301{bottom:393.210000px;}
.y1b_c00301{bottom:424.260000px;}
.y1a_c00301{bottom:455.490000px;}
.y19_c00301{bottom:486.990000px;}
.y18_c00301{bottom:518.040000px;}
.y17_c00301{bottom:549.090000px;}
.y16_c00301{bottom:580.140000px;}
.y15_c00301{bottom:611.190000px;}
.y14_c00301{bottom:642.330000px;}
.y13_c00301{bottom:673.830000px;}
.y12_c00301{bottom:704.880000px;}
.y11_c00301{bottom:735.930000px;}
.y10_c00301{bottom:767.160000px;}
.yf_c00301{bottom:798.660000px;}
.ye_c00301{bottom:829.890000px;}
.yd_c00301{bottom:861.390000px;}
.yc_c00301{bottom:892.440000px;}
.yb_c00301{bottom:923.490000px;}
.ya_c00301{bottom:954.540000px;}
.y9_c00301{bottom:985.590000px;}
.y8_c00301{bottom:1016.640000px;}
.y7_c00301{bottom:1047.780000px;}
.y6_c00301{bottom:1079.280000px;}
.y5_c00301{bottom:1110.330000px;}
.y4_c00301{bottom:1131.030000px;}
.y3_c00301{bottom:1150.915500px;}
.y2_c00301{bottom:1166.400000px;}
.y1_c00301{bottom:1197.450000px;}
.h5_c00301{height:50.027344px;}
.h2_c00301{height:52.998047px;}
.h3_c00301{height:70.664062px;}
.h4_c00301{height:143.542969px;}
.h0_c00301{height:1262.880000px;}
.h1_c00301{height:1263.000000px;}
.w0_c00301{width:893.070000px;}
.w1_c00301{width:893.250000px;}
.x0_c00301{left:0.000000px;}
.x2_c00301{left:127.620000px;}
.x1_c00301{left:446.580000px;}
@media print{
.v1_c00301{vertical-align:-55.056000pt;}
.v2_c00301{vertical-align:-13.120000pt;}
.v0_c00301{vertical-align:0.000000pt;}
.v3_c00301{vertical-align:13.120000pt;}
.ls8_c00301{letter-spacing:-0.128000pt;}
.ls7_c00301{letter-spacing:0.000000pt;}
.ls4_c00301{letter-spacing:0.064000pt;}
.ls1_c00301{letter-spacing:0.128000pt;}
.ls3_c00301{letter-spacing:17.792000pt;}
.ls6_c00301{letter-spacing:20.090240pt;}
.ls2_c00301{letter-spacing:20.410240pt;}
.ls5_c00301{letter-spacing:28.480000pt;}
.ls0_c00301{letter-spacing:284.016000pt;}
.ws0_c00301{word-spacing:-64.000000pt;}
.ws1_c00301{word-spacing:-16.128000pt;}
.ws2_c00301{word-spacing:-16.064000pt;}
.ws19_c00301{word-spacing:-0.320000pt;}
.ws6_c00301{word-spacing:-0.144000pt;}
.ws12_c00301{word-spacing:-0.128000pt;}
.wsa_c00301{word-spacing:-0.064000pt;}
.ws5_c00301{word-spacing:0.000000pt;}
.ws2a_c00301{word-spacing:1.280000pt;}
.ws16_c00301{word-spacing:1.536000pt;}
.ws17_c00301{word-spacing:1.600000pt;}
.wse_c00301{word-spacing:2.496000pt;}
.wsd_c00301{word-spacing:2.560000pt;}
.ws26_c00301{word-spacing:2.880000pt;}
.ws4_c00301{word-spacing:3.392000pt;}
.ws3_c00301{word-spacing:3.712000pt;}
.wsb_c00301{word-spacing:4.800000pt;}
.ws22_c00301{word-spacing:5.120000pt;}
.ws1d_c00301{word-spacing:5.312000pt;}
.ws1e_c00301{word-spacing:5.376000pt;}
.ws21_c00301{word-spacing:5.760000pt;}
.ws14_c00301{word-spacing:6.656000pt;}
.ws13_c00301{word-spacing:6.720000pt;}
.ws15_c00301{word-spacing:7.296000pt;}
.ws18_c00301{word-spacing:7.616000pt;}
.ws28_c00301{word-spacing:7.872000pt;}
.ws29_c00301{word-spacing:8.000000pt;}
.ws24_c00301{word-spacing:8.576000pt;}
.ws25_c00301{word-spacing:8.640000pt;}
.ws11_c00301{word-spacing:8.896000pt;}
.ws1f_c00301{word-spacing:9.536000pt;}
.ws20_c00301{word-spacing:9.600000pt;}
.ws2b_c00301{word-spacing:9.856000pt;}
.ws2c_c00301{word-spacing:9.920000pt;}
.ws1a_c00301{word-spacing:10.368000pt;}
.ws7_c00301{word-spacing:10.880000pt;}
.ws9_c00301{word-spacing:11.136000pt;}
.ws8_c00301{word-spacing:11.200000pt;}
.ws27_c00301{word-spacing:14.400000pt;}
.ws1b_c00301{word-spacing:15.936000pt;}
.ws1c_c00301{word-spacing:16.000000pt;}
.wsf_c00301{word-spacing:19.136000pt;}
.ws10_c00301{word-spacing:19.200000pt;}
.ws23_c00301{word-spacing:19.520000pt;}
.wsc_c00301{word-spacing:28.480000pt;}
._1_c00301{margin-left:-5.158400pt;}
._7_c00301{margin-left:-3.500800pt;}
._0_c00301{margin-left:-1.094400pt;}
._5_c00301{width:0.960000pt;}
._6_c00301{width:2.496000pt;}
._2_c00301{width:4.729600pt;}
._8_c00301{width:6.342400pt;}
._a_c00301{width:9.094400pt;}
._9_c00301{width:10.112000pt;}
._3_c00301{width:23.353600pt;}
._4_c00301{width:24.332800pt;}
.fs2_c00301{font-size:45.440000pt;}
.fs0_c00301{font-size:48.000000pt;}
.fs1_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y26_c00301{bottom:50.880000pt;}
.y25_c00301{bottom:99.520000pt;}
.y24_c00301{bottom:127.280000pt;}
.y23_c00301{bottom:155.280000pt;}
.y22_c00301{bottom:183.040000pt;}
.y21_c00301{bottom:211.040000pt;}
.y20_c00301{bottom:238.720000pt;}
.y1f_c00301{bottom:266.720000pt;}
.y1e_c00301{bottom:294.320000pt;}
.y1d_c00301{bottom:321.920000pt;}
.y1c_c00301{bottom:349.520000pt;}
.y1b_c00301{bottom:377.120000pt;}
.y1a_c00301{bottom:404.880000pt;}
.y19_c00301{bottom:432.880000pt;}
.y18_c00301{bottom:460.480000pt;}
.y17_c00301{bottom:488.080000pt;}
.y16_c00301{bottom:515.680000pt;}
.y15_c00301{bottom:543.280000pt;}
.y14_c00301{bottom:570.960000pt;}
.y13_c00301{bottom:598.960000pt;}
.y12_c00301{bottom:626.560000pt;}
.y11_c00301{bottom:654.160000pt;}
.y10_c00301{bottom:681.920000pt;}
.yf_c00301{bottom:709.920000pt;}
.ye_c00301{bottom:737.680000pt;}
.yd_c00301{bottom:765.680000pt;}
.yc_c00301{bottom:793.280000pt;}
.yb_c00301{bottom:820.880000pt;}
.ya_c00301{bottom:848.480000pt;}
.y9_c00301{bottom:876.080000pt;}
.y8_c00301{bottom:903.680000pt;}
.y7_c00301{bottom:931.360000pt;}
.y6_c00301{bottom:959.360000pt;}
.y5_c00301{bottom:986.960000pt;}
.y4_c00301{bottom:1005.360000pt;}
.y3_c00301{bottom:1023.036000pt;}
.y2_c00301{bottom:1036.800000pt;}
.y1_c00301{bottom:1064.400000pt;}
.h5_c00301{height:44.468750pt;}
.h2_c00301{height:47.109375pt;}
.h3_c00301{height:62.812500pt;}
.h4_c00301{height:127.593750pt;}
.h0_c00301{height:1122.560000pt;}
.h1_c00301{height:1122.666667pt;}
.w0_c00301{width:793.840000pt;}
.w1_c00301{width:794.000000pt;}
.x0_c00301{left:0.000000pt;}
.x2_c00301{left:113.440000pt;}
.x1_c00301{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a09daf63f7e1e1df639c0b1c.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.284180;font-style:normal;font-weight:normal;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_0d14ee69ab735c342bb857fc.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00302;src:url('chunks/assets/font_2883a9e11ad9d67794cf6265.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00302;src:url('chunks/assets/font_ffcb3cc88a13693445bc0315.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00302;src:url('chunks/assets/font_313a9d8cb5d5123531e5c68a.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;line-height:0.862793;font-style: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);}
.m4_c00302{transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250442,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.250446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250446,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{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);}
.v2_c00302{vertical-align:-83.520000px;}
.v1_c00302{vertical-align:-61.920000px;}
.v0_c00302{vertical-align:0.000000px;}
.ls9_c00302{letter-spacing:-2.293320px;}
.ls11_c00302{letter-spacing:-1.888159px;}
.ls12_c00302{letter-spacing:-1.834650px;}
.lsb_c00302{letter-spacing:-1.547991px;}
.lse_c00302{letter-spacing:-1.318659px;}
.lsc_c00302{letter-spacing:-0.687996px;}
.ls8_c00302{letter-spacing:-0.432000px;}
.ls10_c00302{letter-spacing:-0.183465px;}
.ls6_c00302{letter-spacing:-0.144000px;}
.ls4_c00302{letter-spacing:-0.108000px;}
.ls5_c00302{letter-spacing:0.000000px;}
.ls7_c00302{letter-spacing:0.072000px;}
.ls13_c00302{letter-spacing:0.244620px;}
.lsa_c00302{letter-spacing:0.366930px;}
.lsd_c00302{letter-spacing:0.458664px;}
.lsf_c00302{letter-spacing:0.894391px;}
.ls14_c00302{letter-spacing:1.590030px;}
.ls15_c00302{letter-spacing:1.639732px;}
.ls3_c00302{letter-spacing:2.935440px;}
.ls2_c00302{letter-spacing:302.044545px;}
.ls0_c00302{letter-spacing:725.580000px;}
.ls1_c00302{letter-spacing:2082.240000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:-17.568000px;}
.wse_c00302{word-spacing:-14.065650px;}
.wsd_c00302{word-spacing:-13.637565px;}
.ws8_c00302{word-spacing:-12.269262px;}
.wsc_c00302{word-spacing:-11.638599px;}
.ws16_c00302{word-spacing:-1.949322px;}
.ws17_c00302{word-spacing:-1.838471px;}
.ws1d_c00302{word-spacing:-1.639732px;}
.ws1e_c00302{word-spacing:-1.467720px;}
.ws15_c00302{word-spacing:-0.366930px;}
.ws1a_c00302{word-spacing:-0.122310px;}
.ws13_c00302{word-spacing:-0.072000px;}
.wsf_c00302{word-spacing:0.000000px;}
.ws12_c00302{word-spacing:0.144000px;}
.ws11_c00302{word-spacing:0.162000px;}
.ws1b_c00302{word-spacing:0.183465px;}
.ws10_c00302{word-spacing:0.270000px;}
.ws18_c00302{word-spacing:0.944080px;}
.ws1c_c00302{word-spacing:1.223100px;}
.ws14_c00302{word-spacing:2.293320px;}
.ws19_c00302{word-spacing:3.302370px;}
.ws2_c00302{word-spacing:136.532806px;}
.ws7_c00302{word-spacing:136.567206px;}
.wsa_c00302{word-spacing:149.318065px;}
.ws5_c00302{word-spacing:262.676873px;}
.ws1_c00302{word-spacing:264.052865px;}
.ws6_c00302{word-spacing:275.450665px;}
.wsb_c00302{word-spacing:277.950384px;}
.ws4_c00302{word-spacing:287.795430px;}
.ws9_c00302{word-spacing:290.758576px;}
.ws3_c00302{word-spacing:292.076280px;}
._6_c00302{margin-left:-4.501769px;}
._7_c00302{margin-left:-3.465602px;}
._4_c00302{margin-left:-2.412523px;}
._1_c00302{margin-left:-1.058400px;}
._0_c00302{width:1.225800px;}
._2_c00302{width:3.136115px;}
._8_c00302{width:4.153070px;}
._9_c00302{width:6.259930px;}
._3_c00302{width:274.941528px;}
._5_c00302{width:303.167690px;}
.fc0_c00302{color:rgb(0,0,0);}
.fs5_c00302{font-size:42.044400px;}
.fs4_c00302{font-size:49.688400px;}
.fs0_c00302{font-size:54.000000px;}
.fs2_c00302{font-size:57.333000px;}
.fs3_c00302{font-size:61.155000px;}
.fs1_c00302{font-size:72.000000px;}
.y0_c00302{bottom:0.000000px;}
.y29_c00302{bottom:3.821250px;}
.y21_c00302{bottom:3.821700px;}
.y37_c00302{bottom:3.821850px;}
.y16_c00302{bottom:3.822000px;}
.y25_c00302{bottom:3.822300px;}
.y1a_c00302{bottom:3.822450px;}
.ye_c00302{bottom:3.822600px;}
.y1d_c00302{bottom:3.822900px;}
.y12_c00302{bottom:3.823050px;}
.y2f_c00302{bottom:3.823500px;}
.y2a_c00302{bottom:4.776900px;}
.y22_c00302{bottom:4.777350px;}
.y17_c00302{bottom:4.777500px;}
.yb_c00302{bottom:4.777650px;}
.y26_c00302{bottom:4.777800px;}
.y3a_c00302{bottom:4.777950px;}
.yf_c00302{bottom:4.778100px;}
.y3d_c00302{bottom:4.778250px;}
.y3e_c00302{bottom:4.778400px;}
.y1e_c00302{bottom:4.778550px;}
.y13_c00302{bottom:4.778700px;}
.y30_c00302{bottom:4.779150px;}
.y43_c00302{bottom:5.732700px;}
.y3f_c00302{bottom:5.733300px;}
.y4d_c00302{bottom:6.688350px;}
.y51_c00302{bottom:6.688650px;}
.y49_c00302{bottom:8.599631px;}
.y48_c00302{bottom:8.614920px;}
.y45_c00302{bottom:18.162660px;}
.y4c_c00302{bottom:25.799400px;}
.y50_c00302{bottom:25.799700px;}
.y41_c00302{bottom:28.666050px;}
.y4b_c00302{bottom:28.673666px;}
.y47_c00302{bottom:28.673760px;}
.y4f_c00302{bottom:28.673816px;}
.y44_c00302{bottom:38.221500px;}
.y3b_c00302{bottom:44.910750px;}
.y46_c00302{bottom:48.732600px;}
.y4a_c00302{bottom:50.643600px;}
.y4e_c00302{bottom:50.643750px;}
.y52_c00302{bottom:57.330000px;}
.y38_c00302{bottom:65.932950px;}
.y35_c00302{bottom:85.999500px;}
.y33_c00302{bottom:106.066050px;}
.y31_c00302{bottom:126.132600px;}
.y2d_c00302{bottom:146.199150px;}
.y2b_c00302{bottom:166.265700px;}
.y27_c00302{bottom:186.332250px;}
.y23_c00302{bottom:206.398800px;}
.y1f_c00302{bottom:226.465350px;}
.y1b_c00302{bottom:246.531900px;}
.y18_c00302{bottom:266.598450px;}
.y7_c00302{bottom:267.030000px;}
.y6_c00302{bottom:283.770000px;}
.y8_c00302{bottom:284.727000px;}
.y14_c00302{bottom:286.665000px;}
.y42_c00302{bottom:304.794000px;}
.y10_c00302{bottom:306.731550px;}
.y3c_c00302{bottom:324.859500px;}
.yc_c00302{bottom:326.798100px;}
.y39_c00302{bottom:345.882000px;}
.y9_c00302{bottom:346.864950px;}
.y36_c00302{bottom:365.949000px;}
.y34_c00302{bottom:386.014500px;}
.y32_c00302{bottom:406.081500px;}
.y2e_c00302{bottom:426.147000px;}
.y2c_c00302{bottom:446.215500px;}
.y28_c00302{bottom:466.282500px;}
.y24_c00302{bottom:486.348000px;}
.y20_c00302{bottom:506.415000px;}
.y1c_c00302{bottom:526.480500px;}
.y19_c00302{bottom:546.547500px;}
.y15_c00302{bottom:566.614500px;}
.y11_c00302{bottom:586.680000px;}
.yd_c00302{bottom:606.747000px;}
.ya_c00302{bottom:626.814000px;}
.y40_c00302{bottom:647.836500px;}
.y5_c00302{bottom:719.640000px;}
.y4_c00302{bottom:761.220000px;}
.y3_c00302{bottom:781.110000px;}
.y2_c00302{bottom:796.594500px;}
.y1_c00302{bottom:827.640000px;}
.hc_c00302{height:19.110000px;}
.ha_c00302{height:19.111500px;}
.h7_c00302{height:20.067000px;}
.h11_c00302{height:34.674312px;}
.h10_c00302{height:41.864897px;}
.h9_c00302{height:42.635820px;}
.hb_c00302{height:45.478059px;}
.h6_c00302{height:47.282928px;}
.hd_c00302{height:48.766447px;}
.hf_c00302{height:50.076591px;}
.h8_c00302{height:50.434958px;}
.h2_c00302{height:52.998047px;}
.he_c00302{height:66.888000px;}
.h3_c00302{height:70.664062px;}
.h4_c00302{height:72.562500px;}
.h5_c00302{height:429.997500px;}
.h0_c00302{height:893.070000px;}
.h1_c00302{height:893.250000px;}
.w5_c00302{width:79.452000px;}
.w6_c00302{width:81.366000px;}
.w7_c00302{width:84.238500px;}
.w9_c00302{width:120.613500px;}
.w8_c00302{width:120.615000px;}
.w3_c00302{width:521.701500px;}
.w4_c00302{width:524.574000px;}
.w2_c00302{width:1048.189500px;}
.w0_c00302{width:1262.880000px;}
.w1_c00302{width:1263.000000px;}
.x0_c00302{left:0.000000px;}
.xa_c00302{left:1.914750px;}
.xf_c00302{left:3.836999px;}
.x15_c00302{left:5.752086px;}
.x11_c00302{left:10.530150px;}
.x14_c00302{left:12.445200px;}
.xe_c00302{left:22.017150px;}
.x12_c00302{left:36.383642px;}
.x16_c00302{left:38.298692px;}
.x19_c00302{left:47.863500px;}
.x5_c00302{left:67.965150px;}
.x8_c00302{left:70.836900px;}
.x2_c00302{left:106.380000px;}
.x18_c00302{left:111.042000px;}
.xd_c00302{left:141.798000px;}
.x6_c00302{left:151.245900px;}
.x3_c00302{left:210.510000px;}
.xc_c00302{left:213.466950px;}
.x10_c00302{left:222.207000px;}
.x13_c00302{left:304.530000px;}
.x7_c00302{left:315.893100px;}
.x9_c00302{left:319.722150px;}
.x17_c00302{left:389.725500px;}
.x1a_c00302{left:511.297500px;}
.x1_c00302{left:631.440000px;}
.xb_c00302{left:632.868000px;}
.x1b_c00302{left:1129.590000px;}
.x4_c00302{left:1156.590000px;}
@media print{
.v2_c00302{vertical-align:-74.240000pt;}
.v1_c00302{vertical-align:-55.040000pt;}
.v0_c00302{vertical-align:0.000000pt;}
.ls9_c00302{letter-spacing:-2.038507pt;}
.ls11_c00302{letter-spacing:-1.678364pt;}
.ls12_c00302{letter-spacing:-1.630800pt;}
.lsb_c00302{letter-spacing:-1.375992pt;}
.lse_c00302{letter-spacing:-1.172141pt;}
.lsc_c00302{letter-spacing:-0.611552pt;}
.ls8_c00302{letter-spacing:-0.384000pt;}
.ls10_c00302{letter-spacing:-0.163080pt;}
.ls6_c00302{letter-spacing:-0.128000pt;}
.ls4_c00302{letter-spacing:-0.096000pt;}
.ls5_c00302{letter-spacing:0.000000pt;}
.ls7_c00302{letter-spacing:0.064000pt;}
.ls13_c00302{letter-spacing:0.217440pt;}
.lsa_c00302{letter-spacing:0.326160pt;}
.lsd_c00302{letter-spacing:0.407701pt;}
.lsf_c00302{letter-spacing:0.795014pt;}
.ls14_c00302{letter-spacing:1.413360pt;}
.ls15_c00302{letter-spacing:1.457539pt;}
.ls3_c00302{letter-spacing:2.609280pt;}
.ls2_c00302{letter-spacing:268.484040pt;}
.ls0_c00302{letter-spacing:644.960000pt;}
.ls1_c00302{letter-spacing:1850.880000pt;}
.ws0_c00302{word-spacing:-15.616000pt;}
.wse_c00302{word-spacing:-12.502800pt;}
.wsd_c00302{word-spacing:-12.122280pt;}
.ws8_c00302{word-spacing:-10.906011pt;}
.wsc_c00302{word-spacing:-10.345421pt;}
.ws16_c00302{word-spacing:-1.732731pt;}
.ws17_c00302{word-spacing:-1.634196pt;}
.ws1d_c00302{word-spacing:-1.457539pt;}
.ws1e_c00302{word-spacing:-1.304640pt;}
.ws15_c00302{word-spacing:-0.326160pt;}
.ws1a_c00302{word-spacing:-0.108720pt;}
.ws13_c00302{word-spacing:-0.064000pt;}
.wsf_c00302{word-spacing:0.000000pt;}
.ws12_c00302{word-spacing:0.128000pt;}
.ws11_c00302{word-spacing:0.144000pt;}
.ws1b_c00302{word-spacing:0.163080pt;}
.ws10_c00302{word-spacing:0.240000pt;}
.ws18_c00302{word-spacing:0.839182pt;}
.ws1c_c00302{word-spacing:1.087200pt;}
.ws14_c00302{word-spacing:2.038507pt;}
.ws19_c00302{word-spacing:2.935440pt;}
.ws2_c00302{word-spacing:121.362494pt;}
.ws7_c00302{word-spacing:121.393072pt;}
.wsa_c00302{word-spacing:132.727169pt;}
.ws5_c00302{word-spacing:233.490554pt;}
.ws1_c00302{word-spacing:234.713658pt;}
.ws6_c00302{word-spacing:244.845036pt;}
.wsb_c00302{word-spacing:247.067008pt;}
.ws4_c00302{word-spacing:255.818160pt;}
.ws9_c00302{word-spacing:258.452068pt;}
.ws3_c00302{word-spacing:259.623360pt;}
._6_c00302{margin-left:-4.001572pt;}
._7_c00302{margin-left:-3.080535pt;}
._4_c00302{margin-left:-2.144465pt;}
._1_c00302{margin-left:-0.940800pt;}
._0_c00302{width:1.089600pt;}
._2_c00302{width:2.787658pt;}
._8_c00302{width:3.691618pt;}
._9_c00302{width:5.564383pt;}
._3_c00302{width:244.392469pt;}
._5_c00302{width:269.482391pt;}
.fs5_c00302{font-size:37.372800pt;}
.fs4_c00302{font-size:44.167467pt;}
.fs0_c00302{font-size:48.000000pt;}
.fs2_c00302{font-size:50.962667pt;}
.fs3_c00302{font-size:54.360000pt;}
.fs1_c00302{font-size:64.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y29_c00302{bottom:3.396667pt;}
.y21_c00302{bottom:3.397067pt;}
.y37_c00302{bottom:3.397200pt;}
.y16_c00302{bottom:3.397333pt;}
.y25_c00302{bottom:3.397600pt;}
.y1a_c00302{bottom:3.397733pt;}
.ye_c00302{bottom:3.397867pt;}
.y1d_c00302{bottom:3.398133pt;}
.y12_c00302{bottom:3.398267pt;}
.y2f_c00302{bottom:3.398667pt;}
.y2a_c00302{bottom:4.246133pt;}
.y22_c00302{bottom:4.246533pt;}
.y17_c00302{bottom:4.246667pt;}
.yb_c00302{bottom:4.246800pt;}
.y26_c00302{bottom:4.246933pt;}
.y3a_c00302{bottom:4.247067pt;}
.yf_c00302{bottom:4.247200pt;}
.y3d_c00302{bottom:4.247333pt;}
.y3e_c00302{bottom:4.247467pt;}
.y1e_c00302{bottom:4.247600pt;}
.y13_c00302{bottom:4.247733pt;}
.y30_c00302{bottom:4.248133pt;}
.y43_c00302{bottom:5.095733pt;}
.y3f_c00302{bottom:5.096267pt;}
.y4d_c00302{bottom:5.945200pt;}
.y51_c00302{bottom:5.945467pt;}
.y49_c00302{bottom:7.644117pt;}
.y48_c00302{bottom:7.657707pt;}
.y45_c00302{bottom:16.144587pt;}
.y4c_c00302{bottom:22.932800pt;}
.y50_c00302{bottom:22.933067pt;}
.y41_c00302{bottom:25.480933pt;}
.y4b_c00302{bottom:25.487703pt;}
.y47_c00302{bottom:25.487787pt;}
.y4f_c00302{bottom:25.487837pt;}
.y44_c00302{bottom:33.974667pt;}
.y3b_c00302{bottom:39.920667pt;}
.y46_c00302{bottom:43.317867pt;}
.y4a_c00302{bottom:45.016533pt;}
.y4e_c00302{bottom:45.016667pt;}
.y52_c00302{bottom:50.960000pt;}
.y38_c00302{bottom:58.607067pt;}
.y35_c00302{bottom:76.444000pt;}
.y33_c00302{bottom:94.280933pt;}
.y31_c00302{bottom:112.117867pt;}
.y2d_c00302{bottom:129.954800pt;}
.y2b_c00302{bottom:147.791733pt;}
.y27_c00302{bottom:165.628667pt;}
.y23_c00302{bottom:183.465600pt;}
.y1f_c00302{bottom:201.302533pt;}
.y1b_c00302{bottom:219.139467pt;}
.y18_c00302{bottom:236.976400pt;}
.y7_c00302{bottom:237.360000pt;}
.y6_c00302{bottom:252.240000pt;}
.y8_c00302{bottom:253.090667pt;}
.y14_c00302{bottom:254.813333pt;}
.y42_c00302{bottom:270.928000pt;}
.y10_c00302{bottom:272.650267pt;}
.y3c_c00302{bottom:288.764000pt;}
.yc_c00302{bottom:290.487200pt;}
.y39_c00302{bottom:307.450667pt;}
.y9_c00302{bottom:308.324400pt;}
.y36_c00302{bottom:325.288000pt;}
.y34_c00302{bottom:343.124000pt;}
.y32_c00302{bottom:360.961333pt;}
.y2e_c00302{bottom:378.797333pt;}
.y2c_c00302{bottom:396.636000pt;}
.y28_c00302{bottom:414.473333pt;}
.y24_c00302{bottom:432.309333pt;}
.y20_c00302{bottom:450.146667pt;}
.y1c_c00302{bottom:467.982667pt;}
.y19_c00302{bottom:485.820000pt;}
.y15_c00302{bottom:503.657333pt;}
.y11_c00302{bottom:521.493333pt;}
.yd_c00302{bottom:539.330667pt;}
.ya_c00302{bottom:557.168000pt;}
.y40_c00302{bottom:575.854667pt;}
.y5_c00302{bottom:639.680000pt;}
.y4_c00302{bottom:676.640000pt;}
.y3_c00302{bottom:694.320000pt;}
.y2_c00302{bottom:708.084000pt;}
.y1_c00302{bottom:735.680000pt;}
.hc_c00302{height:16.986667pt;}
.ha_c00302{height:16.988000pt;}
.h7_c00302{height:17.837333pt;}
.h11_c00302{height:30.821611pt;}
.h10_c00302{height:37.213242pt;}
.h9_c00302{height:37.898507pt;}
.hb_c00302{height:40.424941pt;}
.h6_c00302{height:42.029270pt;}
.hd_c00302{height:43.347953pt;}
.hf_c00302{height:44.512525pt;}
.h8_c00302{height:44.831074pt;}
.h2_c00302{height:47.109375pt;}
.he_c00302{height:59.456000pt;}
.h3_c00302{height:62.812500pt;}
.h4_c00302{height:64.500000pt;}
.h5_c00302{height:382.220000pt;}
.h0_c00302{height:793.840000pt;}
.h1_c00302{height:794.000000pt;}
.w5_c00302{width:70.624000pt;}
.w6_c00302{width:72.325333pt;}
.w7_c00302{width:74.878667pt;}
.w9_c00302{width:107.212000pt;}
.w8_c00302{width:107.213333pt;}
.w3_c00302{width:463.734667pt;}
.w4_c00302{width:466.288000pt;}
.w2_c00302{width:931.724000pt;}
.w0_c00302{width:1122.560000pt;}
.w1_c00302{width:1122.666667pt;}
.x0_c00302{left:0.000000pt;}
.xa_c00302{left:1.702000pt;}
.xf_c00302{left:3.410665pt;}
.x15_c00302{left:5.112965pt;}
.x11_c00302{left:9.360133pt;}
.x14_c00302{left:11.062400pt;}
.xe_c00302{left:19.570800pt;}
.x12_c00302{left:32.341015pt;}
.x16_c00302{left:34.043282pt;}
.x19_c00302{left:42.545333pt;}
.x5_c00302{left:60.413467pt;}
.x8_c00302{left:62.966133pt;}
.x2_c00302{left:94.560000pt;}
.x18_c00302{left:98.704000pt;}
.xd_c00302{left:126.042667pt;}
.x6_c00302{left:134.440800pt;}
.x3_c00302{left:187.120000pt;}
.xc_c00302{left:189.748400pt;}
.x10_c00302{left:197.517333pt;}
.x13_c00302{left:270.693333pt;}
.x7_c00302{left:280.793867pt;}
.x9_c00302{left:284.197467pt;}
.x17_c00302{left:346.422667pt;}
.x1a_c00302{left:454.486667pt;}
.x1_c00302{left:561.280000pt;}
.xb_c00302{left:562.549333pt;}
.x1b_c00302{left:1004.080000pt;}
.x4_c00302{left:1028.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_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_9e11143b9d7d6d9bfa2770d3.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.284180;font-style:normal;font-weight:normal;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_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00303;src:url('chunks/assets/font_98e568e8f37e97823f0bedd5.woff2')format("woff");}.ff4_c00303{font-family:ff4_c00303;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00303;src:url('chunks/assets/font_104e7dea0d0e1894731d30c4.woff2')format("woff");}.ff5_c00303{font-family:ff5_c00303;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:ff6_c00303;src:url('chunks/assets/font_7a35fdd0b22b92c0ce004f22.woff2')format("woff");}.ff6_c00303{font-family:ff6_c00303;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00303;src:url('chunks/assets/font_dd9895c6c3e93298e3753dd1.woff2')format("woff");}.ff7_c00303{font-family:ff7_c00303;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:ff8_c00303;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00303{font-family:ff8_c00303;line-height:1.432129;font-style: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);}
.v1_c00303{vertical-align:-61.938000px;}
.v2_c00303{vertical-align:-14.760000px;}
.v0_c00303{vertical-align:0.000000px;}
.v4_c00303{vertical-align:2.880000px;}
.v3_c00303{vertical-align:14.760000px;}
.ls11_c00303{letter-spacing:-0.360000px;}
.ls13_c00303{letter-spacing:-0.216000px;}
.ls12_c00303{letter-spacing:-0.144000px;}
.ls10_c00303{letter-spacing:0.000000px;}
.lsa_c00303{letter-spacing:0.072000px;}
.ls6_c00303{letter-spacing:0.144000px;}
.ls8_c00303{letter-spacing:0.360000px;}
.ls7_c00303{letter-spacing:1.368000px;}
.ls3_c00303{letter-spacing:5.760000px;}
.ls5_c00303{letter-spacing:6.840000px;}
.ls9_c00303{letter-spacing:8.640000px;}
.ls2_c00303{letter-spacing:20.016000px;}
.lsc_c00303{letter-spacing:20.880000px;}
.lsd_c00303{letter-spacing:22.320000px;}
.ls1_c00303{letter-spacing:22.961520px;}
.ls4_c00303{letter-spacing:23.321520px;}
.lse_c00303{letter-spacing:27.720000px;}
.lsf_c00303{letter-spacing:28.080000px;}
.lsb_c00303{letter-spacing:30.744000px;}
.ls0_c00303{letter-spacing:319.518000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:-72.000000px;}
.ws5_c00303{word-spacing:-18.144000px;}
.ws2_c00303{word-spacing:-18.072000px;}
.ws4_c00303{word-spacing:-17.856000px;}
.ws7_c00303{word-spacing:-17.784000px;}
.ws1_c00303{word-spacing:-15.840000px;}
.ws9_c00303{word-spacing:-0.162000px;}
.ws1b_c00303{word-spacing:-0.144000px;}
.wsc_c00303{word-spacing:-0.072000px;}
.ws8_c00303{word-spacing:0.000000px;}
.ws3_c00303{word-spacing:3.816000px;}
.ws17_c00303{word-spacing:3.888000px;}
.ws6_c00303{word-spacing:4.176000px;}
.wsb_c00303{word-spacing:5.688000px;}
.ws1a_c00303{word-spacing:6.048000px;}
.wsd_c00303{word-spacing:6.768000px;}
.ws16_c00303{word-spacing:8.568000px;}
.ws15_c00303{word-spacing:8.640000px;}
.wsf_c00303{word-spacing:9.288000px;}
.ws10_c00303{word-spacing:10.440000px;}
.ws1d_c00303{word-spacing:10.728000px;}
.ws1e_c00303{word-spacing:10.800000px;}
.wse_c00303{word-spacing:12.600000px;}
.ws24_c00303{word-spacing:14.760000px;}
.wsa_c00303{word-spacing:19.368000px;}
.ws18_c00303{word-spacing:20.520000px;}
.ws19_c00303{word-spacing:20.880000px;}
.ws20_c00303{word-spacing:22.248000px;}
.ws21_c00303{word-spacing:22.320000px;}
.ws11_c00303{word-spacing:22.896000px;}
.ws13_c00303{word-spacing:22.968000px;}
.ws12_c00303{word-spacing:23.040000px;}
.ws14_c00303{word-spacing:23.400000px;}
.ws1c_c00303{word-spacing:23.760000px;}
.ws23_c00303{word-spacing:27.648000px;}
.ws22_c00303{word-spacing:27.720000px;}
.ws25_c00303{word-spacing:30.168000px;}
.ws1f_c00303{word-spacing:58.320000px;}
._1_c00303{margin-left:-6.192000px;}
._7_c00303{margin-left:-3.816000px;}
._0_c00303{margin-left:-1.008000px;}
._4_c00303{width:1.008000px;}
._5_c00303{width:2.736000px;}
._3_c00303{width:6.480000px;}
._2_c00303{width:7.488000px;}
._a_c00303{width:9.072000px;}
._8_c00303{width:10.656000px;}
._6_c00303{width:12.456000px;}
._d_c00303{width:21.096000px;}
._9_c00303{width:22.392000px;}
._e_c00303{width:23.904000px;}
._c_c00303{width:25.632000px;}
._b_c00303{width:26.640000px;}
._f_c00303{width:58.752000px;}
.fc0_c00303{color:rgb(0,0,0);}
.fs2_c00303{font-size:51.120000px;}
.fs0_c00303{font-size:54.000000px;}
.fs1_c00303{font-size:72.000000px;}
.y0_c00303{bottom:0.000000px;}
.y25_c00303{bottom:57.240000px;}
.y24_c00303{bottom:144.270000px;}
.y23_c00303{bottom:175.320000px;}
.y22_c00303{bottom:206.370000px;}
.y21_c00303{bottom:237.420000px;}
.y20_c00303{bottom:268.560000px;}
.y1f_c00303{bottom:300.060000px;}
.y1e_c00303{bottom:331.110000px;}
.y1d_c00303{bottom:362.160000px;}
.y1c_c00303{bottom:393.210000px;}
.y1b_c00303{bottom:424.260000px;}
.y1a_c00303{bottom:455.310000px;}
.y19_c00303{bottom:486.360000px;}
.y18_c00303{bottom:517.410000px;}
.y17_c00303{bottom:548.460000px;}
.y16_c00303{bottom:579.510000px;}
.y15_c00303{bottom:610.560000px;}
.y14_c00303{bottom:641.790000px;}
.y13_c00303{bottom:673.290000px;}
.y12_c00303{bottom:704.250000px;}
.y11_c00303{bottom:735.210000px;}
.y10_c00303{bottom:766.260000px;}
.yf_c00303{bottom:797.490000px;}
.ye_c00303{bottom:828.630000px;}
.yd_c00303{bottom:860.310000px;}
.yc_c00303{bottom:891.810000px;}
.yb_c00303{bottom:922.860000px;}
.ya_c00303{bottom:953.910000px;}
.y9_c00303{bottom:984.960000px;}
.y8_c00303{bottom:1016.190000px;}
.y7_c00303{bottom:1047.690000px;}
.y6_c00303{bottom:1078.830000px;}
.y5_c00303{bottom:1110.330000px;}
.y4_c00303{bottom:1131.030000px;}
.y3_c00303{bottom:1150.915500px;}
.y2_c00303{bottom:1166.400000px;}
.y1_c00303{bottom:1197.450000px;}
.h5_c00303{height:50.027344px;}
.h2_c00303{height:52.998047px;}
.h7_c00303{height:70.628906px;}
.h3_c00303{height:70.664062px;}
.h6_c00303{height:72.562500px;}
.h8_c00303{height:75.093750px;}
.h4_c00303{height:143.542969px;}
.h0_c00303{height:1262.880000px;}
.h1_c00303{height:1263.000000px;}
.w0_c00303{width:893.070000px;}
.w1_c00303{width:893.250000px;}
.x0_c00303{left:0.000000px;}
.x2_c00303{left:127.620000px;}
.x3_c00303{left:154.620000px;}
.x1_c00303{left:446.580000px;}
@media print{
.v1_c00303{vertical-align:-55.056000pt;}
.v2_c00303{vertical-align:-13.120000pt;}
.v0_c00303{vertical-align:0.000000pt;}
.v4_c00303{vertical-align:2.560000pt;}
.v3_c00303{vertical-align:13.120000pt;}
.ls11_c00303{letter-spacing:-0.320000pt;}
.ls13_c00303{letter-spacing:-0.192000pt;}
.ls12_c00303{letter-spacing:-0.128000pt;}
.ls10_c00303{letter-spacing:0.000000pt;}
.lsa_c00303{letter-spacing:0.064000pt;}
.ls6_c00303{letter-spacing:0.128000pt;}
.ls8_c00303{letter-spacing:0.320000pt;}
.ls7_c00303{letter-spacing:1.216000pt;}
.ls3_c00303{letter-spacing:5.120000pt;}
.ls5_c00303{letter-spacing:6.080000pt;}
.ls9_c00303{letter-spacing:7.680000pt;}
.ls2_c00303{letter-spacing:17.792000pt;}
.lsc_c00303{letter-spacing:18.560000pt;}
.lsd_c00303{letter-spacing:19.840000pt;}
.ls1_c00303{letter-spacing:20.410240pt;}
.ls4_c00303{letter-spacing:20.730240pt;}
.lse_c00303{letter-spacing:24.640000pt;}
.lsf_c00303{letter-spacing:24.960000pt;}
.lsb_c00303{letter-spacing:27.328000pt;}
.ls0_c00303{letter-spacing:284.016000pt;}
.ws0_c00303{word-spacing:-64.000000pt;}
.ws5_c00303{word-spacing:-16.128000pt;}
.ws2_c00303{word-spacing:-16.064000pt;}
.ws4_c00303{word-spacing:-15.872000pt;}
.ws7_c00303{word-spacing:-15.808000pt;}
.ws1_c00303{word-spacing:-14.080000pt;}
.ws9_c00303{word-spacing:-0.144000pt;}
.ws1b_c00303{word-spacing:-0.128000pt;}
.wsc_c00303{word-spacing:-0.064000pt;}
.ws8_c00303{word-spacing:0.000000pt;}
.ws3_c00303{word-spacing:3.392000pt;}
.ws17_c00303{word-spacing:3.456000pt;}
.ws6_c00303{word-spacing:3.712000pt;}
.wsb_c00303{word-spacing:5.056000pt;}
.ws1a_c00303{word-spacing:5.376000pt;}
.wsd_c00303{word-spacing:6.016000pt;}
.ws16_c00303{word-spacing:7.616000pt;}
.ws15_c00303{word-spacing:7.680000pt;}
.wsf_c00303{word-spacing:8.256000pt;}
.ws10_c00303{word-spacing:9.280000pt;}
.ws1d_c00303{word-spacing:9.536000pt;}
.ws1e_c00303{word-spacing:9.600000pt;}
.wse_c00303{word-spacing:11.200000pt;}
.ws24_c00303{word-spacing:13.120000pt;}
.wsa_c00303{word-spacing:17.216000pt;}
.ws18_c00303{word-spacing:18.240000pt;}
.ws19_c00303{word-spacing:18.560000pt;}
.ws20_c00303{word-spacing:19.776000pt;}
.ws21_c00303{word-spacing:19.840000pt;}
.ws11_c00303{word-spacing:20.352000pt;}
.ws13_c00303{word-spacing:20.416000pt;}
.ws12_c00303{word-spacing:20.480000pt;}
.ws14_c00303{word-spacing:20.800000pt;}
.ws1c_c00303{word-spacing:21.120000pt;}
.ws23_c00303{word-spacing:24.576000pt;}
.ws22_c00303{word-spacing:24.640000pt;}
.ws25_c00303{word-spacing:26.816000pt;}
.ws1f_c00303{word-spacing:51.840000pt;}
._1_c00303{margin-left:-5.504000pt;}
._7_c00303{margin-left:-3.392000pt;}
._0_c00303{margin-left:-0.896000pt;}
._4_c00303{width:0.896000pt;}
._5_c00303{width:2.432000pt;}
._3_c00303{width:5.760000pt;}
._2_c00303{width:6.656000pt;}
._a_c00303{width:8.064000pt;}
._8_c00303{width:9.472000pt;}
._6_c00303{width:11.072000pt;}
._d_c00303{width:18.752000pt;}
._9_c00303{width:19.904000pt;}
._e_c00303{width:21.248000pt;}
._c_c00303{width:22.784000pt;}
._b_c00303{width:23.680000pt;}
._f_c00303{width:52.224000pt;}
.fs2_c00303{font-size:45.440000pt;}
.fs0_c00303{font-size:48.000000pt;}
.fs1_c00303{font-size:64.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y25_c00303{bottom:50.880000pt;}
.y24_c00303{bottom:128.240000pt;}
.y23_c00303{bottom:155.840000pt;}
.y22_c00303{bottom:183.440000pt;}
.y21_c00303{bottom:211.040000pt;}
.y20_c00303{bottom:238.720000pt;}
.y1f_c00303{bottom:266.720000pt;}
.y1e_c00303{bottom:294.320000pt;}
.y1d_c00303{bottom:321.920000pt;}
.y1c_c00303{bottom:349.520000pt;}
.y1b_c00303{bottom:377.120000pt;}
.y1a_c00303{bottom:404.720000pt;}
.y19_c00303{bottom:432.320000pt;}
.y18_c00303{bottom:459.920000pt;}
.y17_c00303{bottom:487.520000pt;}
.y16_c00303{bottom:515.120000pt;}
.y15_c00303{bottom:542.720000pt;}
.y14_c00303{bottom:570.480000pt;}
.y13_c00303{bottom:598.480000pt;}
.y12_c00303{bottom:626.000000pt;}
.y11_c00303{bottom:653.520000pt;}
.y10_c00303{bottom:681.120000pt;}
.yf_c00303{bottom:708.880000pt;}
.ye_c00303{bottom:736.560000pt;}
.yd_c00303{bottom:764.720000pt;}
.yc_c00303{bottom:792.720000pt;}
.yb_c00303{bottom:820.320000pt;}
.ya_c00303{bottom:847.920000pt;}
.y9_c00303{bottom:875.520000pt;}
.y8_c00303{bottom:903.280000pt;}
.y7_c00303{bottom:931.280000pt;}
.y6_c00303{bottom:958.960000pt;}
.y5_c00303{bottom:986.960000pt;}
.y4_c00303{bottom:1005.360000pt;}
.y3_c00303{bottom:1023.036000pt;}
.y2_c00303{bottom:1036.800000pt;}
.y1_c00303{bottom:1064.400000pt;}
.h5_c00303{height:44.468750pt;}
.h2_c00303{height:47.109375pt;}
.h7_c00303{height:62.781250pt;}
.h3_c00303{height:62.812500pt;}
.h6_c00303{height:64.500000pt;}
.h8_c00303{height:66.750000pt;}
.h4_c00303{height:127.593750pt;}
.h0_c00303{height:1122.560000pt;}
.h1_c00303{height:1122.666667pt;}
.w0_c00303{width:793.840000pt;}
.w1_c00303{width:794.000000pt;}
.x0_c00303{left:0.000000pt;}
.x2_c00303{left:113.440000pt;}
.x3_c00303{left:137.440000pt;}
.x1_c00303{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb9fa00268c7b3b9fba28e2d.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_f64c04f1f95b17ff010a939c.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_b3438c84120e2c2f776a4006.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;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:ff6_c00304;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_af919bd0252680e801005c7a.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;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:ff8_c00304;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00304{font-family:ff8_c00304;line-height:1.432129;font-style: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);}
.v2_c00304{vertical-align:-14.760000px;}
.v0_c00304{vertical-align:0.000000px;}
.v3_c00304{vertical-align:14.760000px;}
.v1_c00304{vertical-align:27.000000px;}
.lsb_c00304{letter-spacing:-0.360000px;}
.ls9_c00304{letter-spacing:-0.108000px;}
.lsc_c00304{letter-spacing:-0.072000px;}
.ls8_c00304{letter-spacing:0.000000px;}
.ls2_c00304{letter-spacing:0.072000px;}
.lsa_c00304{letter-spacing:0.144000px;}
.ls0_c00304{letter-spacing:0.180000px;}
.ls4_c00304{letter-spacing:0.360000px;}
.ls5_c00304{letter-spacing:4.320000px;}
.ls6_c00304{letter-spacing:16.920000px;}
.ls7_c00304{letter-spacing:22.601520px;}
.ls1_c00304{letter-spacing:22.961520px;}
.ls3_c00304{letter-spacing:30.744000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:-72.000000px;}
.ws2_c00304{word-spacing:-18.072000px;}
.ws3_c00304{word-spacing:-17.928000px;}
.ws4_c00304{word-spacing:-11.970000px;}
.ws1c_c00304{word-spacing:-0.432000px;}
.ws19_c00304{word-spacing:-0.360000px;}
.wsc_c00304{word-spacing:-0.072000px;}
.ws5_c00304{word-spacing:0.000000px;}
.ws7_c00304{word-spacing:0.162000px;}
.ws6_c00304{word-spacing:0.270000px;}
.ws13_c00304{word-spacing:0.288000px;}
.ws14_c00304{word-spacing:0.360000px;}
.ws12_c00304{word-spacing:0.648000px;}
.ws25_c00304{word-spacing:1.008000px;}
.ws29_c00304{word-spacing:1.080000px;}
.ws1a_c00304{word-spacing:1.800000px;}
.ws1e_c00304{word-spacing:3.168000px;}
.ws21_c00304{word-spacing:3.600000px;}
.ws9_c00304{word-spacing:3.888000px;}
.ws8_c00304{word-spacing:3.960000px;}
.ws1_c00304{word-spacing:4.176000px;}
.ws1f_c00304{word-spacing:4.248000px;}
.ws20_c00304{word-spacing:4.320000px;}
.ws23_c00304{word-spacing:6.408000px;}
.ws24_c00304{word-spacing:6.480000px;}
.wsb_c00304{word-spacing:7.848000px;}
.ws16_c00304{word-spacing:9.648000px;}
.ws17_c00304{word-spacing:9.720000px;}
.wsd_c00304{word-spacing:10.008000px;}
.wse_c00304{word-spacing:10.080000px;}
.ws28_c00304{word-spacing:10.368000px;}
.ws1d_c00304{word-spacing:12.600000px;}
.ws11_c00304{word-spacing:12.888000px;}
.ws22_c00304{word-spacing:13.248000px;}
.ws1b_c00304{word-spacing:13.608000px;}
.ws26_c00304{word-spacing:16.848000px;}
.ws27_c00304{word-spacing:16.920000px;}
.ws10_c00304{word-spacing:19.008000px;}
.wsf_c00304{word-spacing:19.296000px;}
.ws15_c00304{word-spacing:20.160000px;}
.wsa_c00304{word-spacing:21.528000px;}
.ws18_c00304{word-spacing:22.680000px;}
.ws2a_c00304{word-spacing:25.848000px;}
._2_c00304{margin-left:-5.054400px;}
._1_c00304{margin-left:-1.058400px;}
._0_c00304{width:1.220400px;}
._a_c00304{width:3.160800px;}
._b_c00304{width:4.262400px;}
._8_c00304{width:6.336000px;}
._3_c00304{width:7.344000px;}
._d_c00304{width:9.568800px;}
._c_c00304{width:10.720800px;}
._6_c00304{width:15.912000px;}
._5_c00304{width:16.920000px;}
._4_c00304{width:19.044000px;}
._7_c00304{width:20.124000px;}
._9_c00304{width:22.464000px;}
._e_c00304{width:26.208000px;}
.fc0_c00304{color:rgb(0,0,0);}
.fs2_c00304{font-size:47.880000px;}
.fs3_c00304{font-size:51.120000px;}
.fs0_c00304{font-size:54.000000px;}
.fs1_c00304{font-size:72.000000px;}
.y0_c00304{bottom:0.000000px;}
.y27_c00304{bottom:57.240000px;}
.y26_c00304{bottom:112.950000px;}
.y25_c00304{bottom:144.000000px;}
.y24_c00304{bottom:175.230000px;}
.y23_c00304{bottom:206.730000px;}
.y22_c00304{bottom:237.780000px;}
.y21_c00304{bottom:268.830000px;}
.y20_c00304{bottom:299.880000px;}
.y1f_c00304{bottom:330.930000px;}
.y1e_c00304{bottom:361.980000px;}
.y1d_c00304{bottom:393.030000px;}
.y1c_c00304{bottom:424.260000px;}
.y1b_c00304{bottom:455.760000px;}
.y1a_c00304{bottom:486.810000px;}
.y19_c00304{bottom:517.860000px;}
.y18_c00304{bottom:548.820000px;}
.y17_c00304{bottom:579.870000px;}
.y16_c00304{bottom:610.920000px;}
.y15_c00304{bottom:641.970000px;}
.y14_c00304{bottom:673.020000px;}
.y13_c00304{bottom:704.070000px;}
.y12_c00304{bottom:735.120000px;}
.y11_c00304{bottom:766.170000px;}
.y10_c00304{bottom:797.220000px;}
.yf_c00304{bottom:828.270000px;}
.ye_c00304{bottom:859.320000px;}
.yd_c00304{bottom:891.090000px;}
.yc_c00304{bottom:923.490000px;}
.yb_c00304{bottom:954.540000px;}
.ya_c00304{bottom:985.590000px;}
.y9_c00304{bottom:1016.730000px;}
.y8_c00304{bottom:1048.230000px;}
.y7_c00304{bottom:1079.280000px;}
.y6_c00304{bottom:1110.330000px;}
.y5_c00304{bottom:1131.030000px;}
.y4_c00304{bottom:1150.920000px;}
.y3_c00304{bottom:1166.404500px;}
.y2_c00304{bottom:1181.970000px;}
.y1_c00304{bottom:1197.450000px;}
.h8_c00304{height:50.027344px;}
.h3_c00304{height:52.971680px;}
.h2_c00304{height:52.998047px;}
.h4_c00304{height:70.664062px;}
.h5_c00304{height:73.991602px;}
.h7_c00304{height:75.093750px;}
.h6_c00304{height:143.542969px;}
.h0_c00304{height:1262.880000px;}
.h1_c00304{height:1263.000000px;}
.w0_c00304{width:893.070000px;}
.w1_c00304{width:893.250000px;}
.x0_c00304{left:0.000000px;}
.x3_c00304{left:127.620000px;}
.x4_c00304{left:154.620000px;}
.x2_c00304{left:425.160000px;}
.x1_c00304{left:446.580000px;}
.x5_c00304{left:738.540000px;}
@media print{
.v2_c00304{vertical-align:-13.120000pt;}
.v0_c00304{vertical-align:0.000000pt;}
.v3_c00304{vertical-align:13.120000pt;}
.v1_c00304{vertical-align:24.000000pt;}
.lsb_c00304{letter-spacing:-0.320000pt;}
.ls9_c00304{letter-spacing:-0.096000pt;}
.lsc_c00304{letter-spacing:-0.064000pt;}
.ls8_c00304{letter-spacing:0.000000pt;}
.ls2_c00304{letter-spacing:0.064000pt;}
.lsa_c00304{letter-spacing:0.128000pt;}
.ls0_c00304{letter-spacing:0.160000pt;}
.ls4_c00304{letter-spacing:0.320000pt;}
.ls5_c00304{letter-spacing:3.840000pt;}
.ls6_c00304{letter-spacing:15.040000pt;}
.ls7_c00304{letter-spacing:20.090240pt;}
.ls1_c00304{letter-spacing:20.410240pt;}
.ls3_c00304{letter-spacing:27.328000pt;}
.ws0_c00304{word-spacing:-64.000000pt;}
.ws2_c00304{word-spacing:-16.064000pt;}
.ws3_c00304{word-spacing:-15.936000pt;}
.ws4_c00304{word-spacing:-10.640000pt;}
.ws1c_c00304{word-spacing:-0.384000pt;}
.ws19_c00304{word-spacing:-0.320000pt;}
.wsc_c00304{word-spacing:-0.064000pt;}
.ws5_c00304{word-spacing:0.000000pt;}
.ws7_c00304{word-spacing:0.144000pt;}
.ws6_c00304{word-spacing:0.240000pt;}
.ws13_c00304{word-spacing:0.256000pt;}
.ws14_c00304{word-spacing:0.320000pt;}
.ws12_c00304{word-spacing:0.576000pt;}
.ws25_c00304{word-spacing:0.896000pt;}
.ws29_c00304{word-spacing:0.960000pt;}
.ws1a_c00304{word-spacing:1.600000pt;}
.ws1e_c00304{word-spacing:2.816000pt;}
.ws21_c00304{word-spacing:3.200000pt;}
.ws9_c00304{word-spacing:3.456000pt;}
.ws8_c00304{word-spacing:3.520000pt;}
.ws1_c00304{word-spacing:3.712000pt;}
.ws1f_c00304{word-spacing:3.776000pt;}
.ws20_c00304{word-spacing:3.840000pt;}
.ws23_c00304{word-spacing:5.696000pt;}
.ws24_c00304{word-spacing:5.760000pt;}
.wsb_c00304{word-spacing:6.976000pt;}
.ws16_c00304{word-spacing:8.576000pt;}
.ws17_c00304{word-spacing:8.640000pt;}
.wsd_c00304{word-spacing:8.896000pt;}
.wse_c00304{word-spacing:8.960000pt;}
.ws28_c00304{word-spacing:9.216000pt;}
.ws1d_c00304{word-spacing:11.200000pt;}
.ws11_c00304{word-spacing:11.456000pt;}
.ws22_c00304{word-spacing:11.776000pt;}
.ws1b_c00304{word-spacing:12.096000pt;}
.ws26_c00304{word-spacing:14.976000pt;}
.ws27_c00304{word-spacing:15.040000pt;}
.ws10_c00304{word-spacing:16.896000pt;}
.wsf_c00304{word-spacing:17.152000pt;}
.ws15_c00304{word-spacing:17.920000pt;}
.wsa_c00304{word-spacing:19.136000pt;}
.ws18_c00304{word-spacing:20.160000pt;}
.ws2a_c00304{word-spacing:22.976000pt;}
._2_c00304{margin-left:-4.492800pt;}
._1_c00304{margin-left:-0.940800pt;}
._0_c00304{width:1.084800pt;}
._a_c00304{width:2.809600pt;}
._b_c00304{width:3.788800pt;}
._8_c00304{width:5.632000pt;}
._3_c00304{width:6.528000pt;}
._d_c00304{width:8.505600pt;}
._c_c00304{width:9.529600pt;}
._6_c00304{width:14.144000pt;}
._5_c00304{width:15.040000pt;}
._4_c00304{width:16.928000pt;}
._7_c00304{width:17.888000pt;}
._9_c00304{width:19.968000pt;}
._e_c00304{width:23.296000pt;}
.fs2_c00304{font-size:42.560000pt;}
.fs3_c00304{font-size:45.440000pt;}
.fs0_c00304{font-size:48.000000pt;}
.fs1_c00304{font-size:64.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y27_c00304{bottom:50.880000pt;}
.y26_c00304{bottom:100.400000pt;}
.y25_c00304{bottom:128.000000pt;}
.y24_c00304{bottom:155.760000pt;}
.y23_c00304{bottom:183.760000pt;}
.y22_c00304{bottom:211.360000pt;}
.y21_c00304{bottom:238.960000pt;}
.y20_c00304{bottom:266.560000pt;}
.y1f_c00304{bottom:294.160000pt;}
.y1e_c00304{bottom:321.760000pt;}
.y1d_c00304{bottom:349.360000pt;}
.y1c_c00304{bottom:377.120000pt;}
.y1b_c00304{bottom:405.120000pt;}
.y1a_c00304{bottom:432.720000pt;}
.y19_c00304{bottom:460.320000pt;}
.y18_c00304{bottom:487.840000pt;}
.y17_c00304{bottom:515.440000pt;}
.y16_c00304{bottom:543.040000pt;}
.y15_c00304{bottom:570.640000pt;}
.y14_c00304{bottom:598.240000pt;}
.y13_c00304{bottom:625.840000pt;}
.y12_c00304{bottom:653.440000pt;}
.y11_c00304{bottom:681.040000pt;}
.y10_c00304{bottom:708.640000pt;}
.yf_c00304{bottom:736.240000pt;}
.ye_c00304{bottom:763.840000pt;}
.yd_c00304{bottom:792.080000pt;}
.yc_c00304{bottom:820.880000pt;}
.yb_c00304{bottom:848.480000pt;}
.ya_c00304{bottom:876.080000pt;}
.y9_c00304{bottom:903.760000pt;}
.y8_c00304{bottom:931.760000pt;}
.y7_c00304{bottom:959.360000pt;}
.y6_c00304{bottom:986.960000pt;}
.y5_c00304{bottom:1005.360000pt;}
.y4_c00304{bottom:1023.040000pt;}
.y3_c00304{bottom:1036.804000pt;}
.y2_c00304{bottom:1050.640000pt;}
.y1_c00304{bottom:1064.400000pt;}
.h8_c00304{height:44.468750pt;}
.h3_c00304{height:47.085938pt;}
.h2_c00304{height:47.109375pt;}
.h4_c00304{height:62.812500pt;}
.h5_c00304{height:65.770312pt;}
.h7_c00304{height:66.750000pt;}
.h6_c00304{height:127.593750pt;}
.h0_c00304{height:1122.560000pt;}
.h1_c00304{height:1122.666667pt;}
.w0_c00304{width:793.840000pt;}
.w1_c00304{width:794.000000pt;}
.x0_c00304{left:0.000000pt;}
.x3_c00304{left:113.440000pt;}
.x4_c00304{left:137.440000pt;}
.x2_c00304{left:377.920000pt;}
.x1_c00304{left:396.960000pt;}
.x5_c00304{left:656.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_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_3e89dffa0b9155f35d0142da.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.284180;font-style:normal;font-weight:normal;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_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_f486a34922c16b73e6438b7e.woff2')format("woff");}.ff4_c00305{font-family:ff4_c00305;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:ff5_c00305;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00305{font-family:ff5_c00305;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00305;src:url('chunks/assets/font_bf29efc55260b8237df2b41b.woff2')format("woff");}.ff6_c00305{font-family:ff6_c00305;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:ff7_c00305;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff7_c00305{font-family:ff7_c00305;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00305;src:url('chunks/assets/font_f64c04f1f95b17ff010a939c.woff2')format("woff");}.ff8_c00305{font-family:ff8_c00305;line-height:3.333984;font-style: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);}
.v1_c00305{vertical-align:-61.938000px;}
.v2_c00305{vertical-align:-14.760000px;}
.v0_c00305{vertical-align:0.000000px;}
.v3_c00305{vertical-align:14.760000px;}
.v4_c00305{vertical-align:27.000000px;}
.ls10_c00305{letter-spacing:-0.360000px;}
.ls11_c00305{letter-spacing:-0.288000px;}
.lsf_c00305{letter-spacing:-0.072000px;}
.lsd_c00305{letter-spacing:0.000000px;}
.ls2_c00305{letter-spacing:0.072000px;}
.lsb_c00305{letter-spacing:0.079200px;}
.lse_c00305{letter-spacing:0.144000px;}
.ls9_c00305{letter-spacing:0.180000px;}
.lsc_c00305{letter-spacing:1.440000px;}
.ls4_c00305{letter-spacing:3.240000px;}
.ls7_c00305{letter-spacing:5.760000px;}
.ls6_c00305{letter-spacing:6.120000px;}
.ls8_c00305{letter-spacing:19.440000px;}
.ls1_c00305{letter-spacing:22.320000px;}
.lsa_c00305{letter-spacing:22.601520px;}
.ls5_c00305{letter-spacing:22.961520px;}
.ls3_c00305{letter-spacing:30.744000px;}
.ls0_c00305{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00305{word-spacing:-72.000000px;}
.ws0_c00305{word-spacing:-39.528000px;}
.ws5_c00305{word-spacing:-18.144000px;}
.ws1_c00305{word-spacing:-18.072000px;}
.ws6_c00305{word-spacing:-18.000000px;}
.ws4_c00305{word-spacing:-17.928000px;}
.ws7_c00305{word-spacing:-17.712000px;}
.ws9_c00305{word-spacing:-0.162000px;}
.ws16_c00305{word-spacing:-0.144000px;}
.wsb_c00305{word-spacing:-0.072000px;}
.ws8_c00305{word-spacing:0.000000px;}
.ws1f_c00305{word-spacing:0.360000px;}
.ws21_c00305{word-spacing:0.720000px;}
.ws20_c00305{word-spacing:1.008000px;}
.ws12_c00305{word-spacing:1.440000px;}
.ws24_c00305{word-spacing:1.800000px;}
.ws1b_c00305{word-spacing:2.088000px;}
.wsf_c00305{word-spacing:2.808000px;}
.ws10_c00305{word-spacing:2.880000px;}
.ws1e_c00305{word-spacing:3.168000px;}
.wse_c00305{word-spacing:3.240000px;}
.wsc_c00305{word-spacing:3.888000px;}
.wsd_c00305{word-spacing:3.960000px;}
.ws3_c00305{word-spacing:4.176000px;}
.ws22_c00305{word-spacing:5.400000px;}
.ws15_c00305{word-spacing:5.976000px;}
.ws14_c00305{word-spacing:6.048000px;}
.ws23_c00305{word-spacing:7.200000px;}
.ws11_c00305{word-spacing:7.560000px;}
.ws19_c00305{word-spacing:7.848000px;}
.ws1a_c00305{word-spacing:7.920000px;}
.ws18_c00305{word-spacing:13.680000px;}
.ws1d_c00305{word-spacing:15.120000px;}
.ws17_c00305{word-spacing:19.440000px;}
.wsa_c00305{word-spacing:22.248000px;}
.ws26_c00305{word-spacing:22.680000px;}
.ws1c_c00305{word-spacing:24.048000px;}
.ws25_c00305{word-spacing:24.768000px;}
.ws13_c00305{word-spacing:58.320000px;}
._9_c00305{margin-left:-4.586400px;}
._7_c00305{margin-left:-3.528000px;}
._0_c00305{margin-left:-1.015200px;}
._3_c00305{width:1.058400px;}
._b_c00305{width:2.808000px;}
._c_c00305{width:3.852000px;}
._6_c00305{width:7.192800px;}
._5_c00305{width:8.568000px;}
._4_c00305{width:16.848000px;}
._2_c00305{width:19.749600px;}
._1_c00305{width:20.880000px;}
._a_c00305{width:24.264000px;}
._8_c00305{width:58.464000px;}
.fc0_c00305{color:rgb(0,0,0);}
.fs3_c00305{font-size:47.880000px;}
.fs2_c00305{font-size:51.120000px;}
.fs0_c00305{font-size:54.000000px;}
.fs1_c00305{font-size:72.000000px;}
.y0_c00305{bottom:0.000000px;}
.y25_c00305{bottom:57.240000px;}
.y24_c00305{bottom:142.650000px;}
.y23_c00305{bottom:173.700000px;}
.y22_c00305{bottom:204.750000px;}
.y21_c00305{bottom:235.710000px;}
.y20_c00305{bottom:266.760000px;}
.y1f_c00305{bottom:297.810000px;}
.y1e_c00305{bottom:328.860000px;}
.y1d_c00305{bottom:359.910000px;}
.y1c_c00305{bottom:391.680000px;}
.y1b_c00305{bottom:424.080000px;}
.y1a_c00305{bottom:455.130000px;}
.y19_c00305{bottom:486.180000px;}
.y18_c00305{bottom:517.410000px;}
.y17_c00305{bottom:548.820000px;}
.y16_c00305{bottom:579.870000px;}
.y15_c00305{bottom:610.920000px;}
.y14_c00305{bottom:641.970000px;}
.y13_c00305{bottom:673.020000px;}
.y12_c00305{bottom:704.070000px;}
.y11_c00305{bottom:735.300000px;}
.y10_c00305{bottom:766.800000px;}
.yf_c00305{bottom:797.850000px;}
.ye_c00305{bottom:828.900000px;}
.yd_c00305{bottom:859.950000px;}
.yc_c00305{bottom:891.000000px;}
.yb_c00305{bottom:922.050000px;}
.ya_c00305{bottom:953.100000px;}
.y9_c00305{bottom:984.150000px;}
.y8_c00305{bottom:1015.200000px;}
.y7_c00305{bottom:1046.250000px;}
.y6_c00305{bottom:1077.300000px;}
.y5_c00305{bottom:1108.980000px;}
.y4_c00305{bottom:1131.030000px;}
.y3_c00305{bottom:1150.915500px;}
.y2_c00305{bottom:1166.400000px;}
.y1_c00305{bottom:1197.450000px;}
.h5_c00305{height:50.027344px;}
.h2_c00305{height:52.998047px;}
.h3_c00305{height:70.664062px;}
.h7_c00305{height:73.991602px;}
.h4_c00305{height:75.093750px;}
.h6_c00305{height:143.542969px;}
.h0_c00305{height:1262.880000px;}
.h1_c00305{height:1263.000000px;}
.w0_c00305{width:893.070000px;}
.w1_c00305{width:893.250000px;}
.x0_c00305{left:0.000000px;}
.x2_c00305{left:127.620000px;}
.x3_c00305{left:154.620000px;}
.x1_c00305{left:446.580000px;}
@media print{
.v1_c00305{vertical-align:-55.056000pt;}
.v2_c00305{vertical-align:-13.120000pt;}
.v0_c00305{vertical-align:0.000000pt;}
.v3_c00305{vertical-align:13.120000pt;}
.v4_c00305{vertical-align:24.000000pt;}
.ls10_c00305{letter-spacing:-0.320000pt;}
.ls11_c00305{letter-spacing:-0.256000pt;}
.lsf_c00305{letter-spacing:-0.064000pt;}
.lsd_c00305{letter-spacing:0.000000pt;}
.ls2_c00305{letter-spacing:0.064000pt;}
.lsb_c00305{letter-spacing:0.070400pt;}
.lse_c00305{letter-spacing:0.128000pt;}
.ls9_c00305{letter-spacing:0.160000pt;}
.lsc_c00305{letter-spacing:1.280000pt;}
.ls4_c00305{letter-spacing:2.880000pt;}
.ls7_c00305{letter-spacing:5.120000pt;}
.ls6_c00305{letter-spacing:5.440000pt;}
.ls8_c00305{letter-spacing:17.280000pt;}
.ls1_c00305{letter-spacing:19.840000pt;}
.lsa_c00305{letter-spacing:20.090240pt;}
.ls5_c00305{letter-spacing:20.410240pt;}
.ls3_c00305{letter-spacing:27.328000pt;}
.ls0_c00305{letter-spacing:284.016000pt;}
.ws2_c00305{word-spacing:-64.000000pt;}
.ws0_c00305{word-spacing:-35.136000pt;}
.ws5_c00305{word-spacing:-16.128000pt;}
.ws1_c00305{word-spacing:-16.064000pt;}
.ws6_c00305{word-spacing:-16.000000pt;}
.ws4_c00305{word-spacing:-15.936000pt;}
.ws7_c00305{word-spacing:-15.744000pt;}
.ws9_c00305{word-spacing:-0.144000pt;}
.ws16_c00305{word-spacing:-0.128000pt;}
.wsb_c00305{word-spacing:-0.064000pt;}
.ws8_c00305{word-spacing:0.000000pt;}
.ws1f_c00305{word-spacing:0.320000pt;}
.ws21_c00305{word-spacing:0.640000pt;}
.ws20_c00305{word-spacing:0.896000pt;}
.ws12_c00305{word-spacing:1.280000pt;}
.ws24_c00305{word-spacing:1.600000pt;}
.ws1b_c00305{word-spacing:1.856000pt;}
.wsf_c00305{word-spacing:2.496000pt;}
.ws10_c00305{word-spacing:2.560000pt;}
.ws1e_c00305{word-spacing:2.816000pt;}
.wse_c00305{word-spacing:2.880000pt;}
.wsc_c00305{word-spacing:3.456000pt;}
.wsd_c00305{word-spacing:3.520000pt;}
.ws3_c00305{word-spacing:3.712000pt;}
.ws22_c00305{word-spacing:4.800000pt;}
.ws15_c00305{word-spacing:5.312000pt;}
.ws14_c00305{word-spacing:5.376000pt;}
.ws23_c00305{word-spacing:6.400000pt;}
.ws11_c00305{word-spacing:6.720000pt;}
.ws19_c00305{word-spacing:6.976000pt;}
.ws1a_c00305{word-spacing:7.040000pt;}
.ws18_c00305{word-spacing:12.160000pt;}
.ws1d_c00305{word-spacing:13.440000pt;}
.ws17_c00305{word-spacing:17.280000pt;}
.wsa_c00305{word-spacing:19.776000pt;}
.ws26_c00305{word-spacing:20.160000pt;}
.ws1c_c00305{word-spacing:21.376000pt;}
.ws25_c00305{word-spacing:22.016000pt;}
.ws13_c00305{word-spacing:51.840000pt;}
._9_c00305{margin-left:-4.076800pt;}
._7_c00305{margin-left:-3.136000pt;}
._0_c00305{margin-left:-0.902400pt;}
._3_c00305{width:0.940800pt;}
._b_c00305{width:2.496000pt;}
._c_c00305{width:3.424000pt;}
._6_c00305{width:6.393600pt;}
._5_c00305{width:7.616000pt;}
._4_c00305{width:14.976000pt;}
._2_c00305{width:17.555200pt;}
._1_c00305{width:18.560000pt;}
._a_c00305{width:21.568000pt;}
._8_c00305{width:51.968000pt;}
.fs3_c00305{font-size:42.560000pt;}
.fs2_c00305{font-size:45.440000pt;}
.fs0_c00305{font-size:48.000000pt;}
.fs1_c00305{font-size:64.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y25_c00305{bottom:50.880000pt;}
.y24_c00305{bottom:126.800000pt;}
.y23_c00305{bottom:154.400000pt;}
.y22_c00305{bottom:182.000000pt;}
.y21_c00305{bottom:209.520000pt;}
.y20_c00305{bottom:237.120000pt;}
.y1f_c00305{bottom:264.720000pt;}
.y1e_c00305{bottom:292.320000pt;}
.y1d_c00305{bottom:319.920000pt;}
.y1c_c00305{bottom:348.160000pt;}
.y1b_c00305{bottom:376.960000pt;}
.y1a_c00305{bottom:404.560000pt;}
.y19_c00305{bottom:432.160000pt;}
.y18_c00305{bottom:459.920000pt;}
.y17_c00305{bottom:487.840000pt;}
.y16_c00305{bottom:515.440000pt;}
.y15_c00305{bottom:543.040000pt;}
.y14_c00305{bottom:570.640000pt;}
.y13_c00305{bottom:598.240000pt;}
.y12_c00305{bottom:625.840000pt;}
.y11_c00305{bottom:653.600000pt;}
.y10_c00305{bottom:681.600000pt;}
.yf_c00305{bottom:709.200000pt;}
.ye_c00305{bottom:736.800000pt;}
.yd_c00305{bottom:764.400000pt;}
.yc_c00305{bottom:792.000000pt;}
.yb_c00305{bottom:819.600000pt;}
.ya_c00305{bottom:847.200000pt;}
.y9_c00305{bottom:874.800000pt;}
.y8_c00305{bottom:902.400000pt;}
.y7_c00305{bottom:930.000000pt;}
.y6_c00305{bottom:957.600000pt;}
.y5_c00305{bottom:985.760000pt;}
.y4_c00305{bottom:1005.360000pt;}
.y3_c00305{bottom:1023.036000pt;}
.y2_c00305{bottom:1036.800000pt;}
.y1_c00305{bottom:1064.400000pt;}
.h5_c00305{height:44.468750pt;}
.h2_c00305{height:47.109375pt;}
.h3_c00305{height:62.812500pt;}
.h7_c00305{height:65.770312pt;}
.h4_c00305{height:66.750000pt;}
.h6_c00305{height:127.593750pt;}
.h0_c00305{height:1122.560000pt;}
.h1_c00305{height:1122.666667pt;}
.w0_c00305{width:793.840000pt;}
.w1_c00305{width:794.000000pt;}
.x0_c00305{left:0.000000pt;}
.x2_c00305{left:113.440000pt;}
.x3_c00305{left:137.440000pt;}
.x1_c00305{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0260fc6cc471c56eb310365c.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.284180;font-style:normal;font-weight:normal;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_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_c97df3580a1ba94fb14e5d3d.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;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:ff6_c00306;src:url('chunks/assets/font_752469732fa5a7f9c2b1a28b.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;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:ff7_c00306;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;line-height:1.432129;font-style: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);}
.v1_c00306{vertical-align:-14.760000px;}
.v0_c00306{vertical-align:0.000000px;}
.v2_c00306{vertical-align:14.760000px;}
.v3_c00306{vertical-align:27.000000px;}
.lsc_c00306{letter-spacing:-0.144000px;}
.ls8_c00306{letter-spacing:-0.108000px;}
.lsa_c00306{letter-spacing:-0.072000px;}
.ls7_c00306{letter-spacing:0.000000px;}
.ls4_c00306{letter-spacing:0.072000px;}
.ls9_c00306{letter-spacing:0.144000px;}
.ls2_c00306{letter-spacing:0.180000px;}
.lsb_c00306{letter-spacing:0.504000px;}
.ls1_c00306{letter-spacing:4.320000px;}
.ls6_c00306{letter-spacing:20.016000px;}
.ls3_c00306{letter-spacing:22.601520px;}
.ls0_c00306{letter-spacing:22.961520px;}
.ls5_c00306{letter-spacing:30.744000px;}
.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:-72.000000px;}
.ws3_c00306{word-spacing:-18.072000px;}
.ws2_c00306{word-spacing:-17.928000px;}
.ws18_c00306{word-spacing:-0.504000px;}
.ws16_c00306{word-spacing:-0.144000px;}
.wsb_c00306{word-spacing:-0.072000px;}
.ws4_c00306{word-spacing:0.000000px;}
.ws6_c00306{word-spacing:0.162000px;}
.ws5_c00306{word-spacing:0.270000px;}
.ws19_c00306{word-spacing:0.648000px;}
.ws11_c00306{word-spacing:1.008000px;}
.wse_c00306{word-spacing:1.440000px;}
.ws25_c00306{word-spacing:1.584000px;}
.ws23_c00306{word-spacing:2.448000px;}
.ws22_c00306{word-spacing:2.520000px;}
.wsa_c00306{word-spacing:3.168000px;}
.ws1_c00306{word-spacing:4.176000px;}
.wsc_c00306{word-spacing:4.248000px;}
.wsd_c00306{word-spacing:4.320000px;}
.ws1a_c00306{word-spacing:5.040000px;}
.ws8_c00306{word-spacing:5.256000px;}
.ws7_c00306{word-spacing:5.400000px;}
.ws15_c00306{word-spacing:6.408000px;}
.ws14_c00306{word-spacing:8.208000px;}
.ws10_c00306{word-spacing:8.280000px;}
.ws1c_c00306{word-spacing:8.928000px;}
.ws1d_c00306{word-spacing:12.888000px;}
.ws24_c00306{word-spacing:13.968000px;}
.wsf_c00306{word-spacing:18.648000px;}
.ws9_c00306{word-spacing:20.160000px;}
.ws13_c00306{word-spacing:23.040000px;}
.ws12_c00306{word-spacing:23.400000px;}
.ws17_c00306{word-spacing:25.848000px;}
.ws27_c00306{word-spacing:26.208000px;}
.ws26_c00306{word-spacing:26.280000px;}
.ws1b_c00306{word-spacing:27.000000px;}
.ws21_c00306{word-spacing:27.720000px;}
.ws1f_c00306{word-spacing:47.376000px;}
.ws1e_c00306{word-spacing:47.448000px;}
.ws20_c00306{word-spacing:47.520000px;}
._a_c00306{margin-left:-6.760800px;}
._2_c00306{margin-left:-4.917600px;}
._1_c00306{margin-left:-1.058400px;}
._0_c00306{width:1.220400px;}
._3_c00306{width:3.024000px;}
._4_c00306{width:4.500000px;}
._7_c00306{width:6.091200px;}
._6_c00306{width:7.797600px;}
._5_c00306{width:8.834400px;}
._9_c00306{width:11.952000px;}
._8_c00306{width:26.208000px;}
.fc0_c00306{color:rgb(0,0,0);}
.fs3_c00306{font-size:47.880000px;}
.fs2_c00306{font-size:51.120000px;}
.fs0_c00306{font-size:54.000000px;}
.fs1_c00306{font-size:72.000000px;}
.y0_c00306{bottom:0.000000px;}
.y27_c00306{bottom:57.240000px;}
.y26_c00306{bottom:113.760000px;}
.y25_c00306{bottom:144.810000px;}
.y24_c00306{bottom:175.860000px;}
.y23_c00306{bottom:206.910000px;}
.y22_c00306{bottom:237.960000px;}
.y21_c00306{bottom:269.190000px;}
.y20_c00306{bottom:300.690000px;}
.y1f_c00306{bottom:331.740000px;}
.y1e_c00306{bottom:362.790000px;}
.y1d_c00306{bottom:394.020000px;}
.y1c_c00306{bottom:425.610000px;}
.y1b_c00306{bottom:457.110000px;}
.y1a_c00306{bottom:488.160000px;}
.y19_c00306{bottom:519.210000px;}
.y18_c00306{bottom:550.260000px;}
.y17_c00306{bottom:581.310000px;}
.y16_c00306{bottom:612.360000px;}
.y15_c00306{bottom:643.410000px;}
.y14_c00306{bottom:674.460000px;}
.y13_c00306{bottom:705.510000px;}
.y12_c00306{bottom:736.560000px;}
.y11_c00306{bottom:767.790000px;}
.y10_c00306{bottom:799.290000px;}
.yf_c00306{bottom:830.340000px;}
.ye_c00306{bottom:861.390000px;}
.yd_c00306{bottom:892.440000px;}
.yc_c00306{bottom:923.490000px;}
.yb_c00306{bottom:954.540000px;}
.ya_c00306{bottom:985.590000px;}
.y9_c00306{bottom:1016.730000px;}
.y8_c00306{bottom:1048.230000px;}
.y7_c00306{bottom:1079.280000px;}
.y6_c00306{bottom:1110.330000px;}
.y5_c00306{bottom:1131.030000px;}
.y4_c00306{bottom:1150.920000px;}
.y3_c00306{bottom:1166.404500px;}
.y2_c00306{bottom:1181.970000px;}
.y1_c00306{bottom:1197.450000px;}
.h8_c00306{height:50.027344px;}
.h3_c00306{height:52.971680px;}
.h2_c00306{height:52.998047px;}
.h4_c00306{height:70.664062px;}
.h6_c00306{height:73.991602px;}
.h7_c00306{height:75.093750px;}
.h5_c00306{height:143.542969px;}
.h0_c00306{height:1262.880000px;}
.h1_c00306{height:1263.000000px;}
.w0_c00306{width:893.070000px;}
.w1_c00306{width:893.250000px;}
.x0_c00306{left:0.000000px;}
.x3_c00306{left:127.620000px;}
.x4_c00306{left:154.620000px;}
.x2_c00306{left:425.160000px;}
.x1_c00306{left:446.580000px;}
.x5_c00306{left:738.540000px;}
@media print{
.v1_c00306{vertical-align:-13.120000pt;}
.v0_c00306{vertical-align:0.000000pt;}
.v2_c00306{vertical-align:13.120000pt;}
.v3_c00306{vertical-align:24.000000pt;}
.lsc_c00306{letter-spacing:-0.128000pt;}
.ls8_c00306{letter-spacing:-0.096000pt;}
.lsa_c00306{letter-spacing:-0.064000pt;}
.ls7_c00306{letter-spacing:0.000000pt;}
.ls4_c00306{letter-spacing:0.064000pt;}
.ls9_c00306{letter-spacing:0.128000pt;}
.ls2_c00306{letter-spacing:0.160000pt;}
.lsb_c00306{letter-spacing:0.448000pt;}
.ls1_c00306{letter-spacing:3.840000pt;}
.ls6_c00306{letter-spacing:17.792000pt;}
.ls3_c00306{letter-spacing:20.090240pt;}
.ls0_c00306{letter-spacing:20.410240pt;}
.ls5_c00306{letter-spacing:27.328000pt;}
.ws0_c00306{word-spacing:-64.000000pt;}
.ws3_c00306{word-spacing:-16.064000pt;}
.ws2_c00306{word-spacing:-15.936000pt;}
.ws18_c00306{word-spacing:-0.448000pt;}
.ws16_c00306{word-spacing:-0.128000pt;}
.wsb_c00306{word-spacing:-0.064000pt;}
.ws4_c00306{word-spacing:0.000000pt;}
.ws6_c00306{word-spacing:0.144000pt;}
.ws5_c00306{word-spacing:0.240000pt;}
.ws19_c00306{word-spacing:0.576000pt;}
.ws11_c00306{word-spacing:0.896000pt;}
.wse_c00306{word-spacing:1.280000pt;}
.ws25_c00306{word-spacing:1.408000pt;}
.ws23_c00306{word-spacing:2.176000pt;}
.ws22_c00306{word-spacing:2.240000pt;}
.wsa_c00306{word-spacing:2.816000pt;}
.ws1_c00306{word-spacing:3.712000pt;}
.wsc_c00306{word-spacing:3.776000pt;}
.wsd_c00306{word-spacing:3.840000pt;}
.ws1a_c00306{word-spacing:4.480000pt;}
.ws8_c00306{word-spacing:4.672000pt;}
.ws7_c00306{word-spacing:4.800000pt;}
.ws15_c00306{word-spacing:5.696000pt;}
.ws14_c00306{word-spacing:7.296000pt;}
.ws10_c00306{word-spacing:7.360000pt;}
.ws1c_c00306{word-spacing:7.936000pt;}
.ws1d_c00306{word-spacing:11.456000pt;}
.ws24_c00306{word-spacing:12.416000pt;}
.wsf_c00306{word-spacing:16.576000pt;}
.ws9_c00306{word-spacing:17.920000pt;}
.ws13_c00306{word-spacing:20.480000pt;}
.ws12_c00306{word-spacing:20.800000pt;}
.ws17_c00306{word-spacing:22.976000pt;}
.ws27_c00306{word-spacing:23.296000pt;}
.ws26_c00306{word-spacing:23.360000pt;}
.ws1b_c00306{word-spacing:24.000000pt;}
.ws21_c00306{word-spacing:24.640000pt;}
.ws1f_c00306{word-spacing:42.112000pt;}
.ws1e_c00306{word-spacing:42.176000pt;}
.ws20_c00306{word-spacing:42.240000pt;}
._a_c00306{margin-left:-6.009600pt;}
._2_c00306{margin-left:-4.371200pt;}
._1_c00306{margin-left:-0.940800pt;}
._0_c00306{width:1.084800pt;}
._3_c00306{width:2.688000pt;}
._4_c00306{width:4.000000pt;}
._7_c00306{width:5.414400pt;}
._6_c00306{width:6.931200pt;}
._5_c00306{width:7.852800pt;}
._9_c00306{width:10.624000pt;}
._8_c00306{width:23.296000pt;}
.fs3_c00306{font-size:42.560000pt;}
.fs2_c00306{font-size:45.440000pt;}
.fs0_c00306{font-size:48.000000pt;}
.fs1_c00306{font-size:64.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y27_c00306{bottom:50.880000pt;}
.y26_c00306{bottom:101.120000pt;}
.y25_c00306{bottom:128.720000pt;}
.y24_c00306{bottom:156.320000pt;}
.y23_c00306{bottom:183.920000pt;}
.y22_c00306{bottom:211.520000pt;}
.y21_c00306{bottom:239.280000pt;}
.y20_c00306{bottom:267.280000pt;}
.y1f_c00306{bottom:294.880000pt;}
.y1e_c00306{bottom:322.480000pt;}
.y1d_c00306{bottom:350.240000pt;}
.y1c_c00306{bottom:378.320000pt;}
.y1b_c00306{bottom:406.320000pt;}
.y1a_c00306{bottom:433.920000pt;}
.y19_c00306{bottom:461.520000pt;}
.y18_c00306{bottom:489.120000pt;}
.y17_c00306{bottom:516.720000pt;}
.y16_c00306{bottom:544.320000pt;}
.y15_c00306{bottom:571.920000pt;}
.y14_c00306{bottom:599.520000pt;}
.y13_c00306{bottom:627.120000pt;}
.y12_c00306{bottom:654.720000pt;}
.y11_c00306{bottom:682.480000pt;}
.y10_c00306{bottom:710.480000pt;}
.yf_c00306{bottom:738.080000pt;}
.ye_c00306{bottom:765.680000pt;}
.yd_c00306{bottom:793.280000pt;}
.yc_c00306{bottom:820.880000pt;}
.yb_c00306{bottom:848.480000pt;}
.ya_c00306{bottom:876.080000pt;}
.y9_c00306{bottom:903.760000pt;}
.y8_c00306{bottom:931.760000pt;}
.y7_c00306{bottom:959.360000pt;}
.y6_c00306{bottom:986.960000pt;}
.y5_c00306{bottom:1005.360000pt;}
.y4_c00306{bottom:1023.040000pt;}
.y3_c00306{bottom:1036.804000pt;}
.y2_c00306{bottom:1050.640000pt;}
.y1_c00306{bottom:1064.400000pt;}
.h8_c00306{height:44.468750pt;}
.h3_c00306{height:47.085938pt;}
.h2_c00306{height:47.109375pt;}
.h4_c00306{height:62.812500pt;}
.h6_c00306{height:65.770312pt;}
.h7_c00306{height:66.750000pt;}
.h5_c00306{height:127.593750pt;}
.h0_c00306{height:1122.560000pt;}
.h1_c00306{height:1122.666667pt;}
.w0_c00306{width:793.840000pt;}
.w1_c00306{width:794.000000pt;}
.x0_c00306{left:0.000000pt;}
.x3_c00306{left:113.440000pt;}
.x4_c00306{left:137.440000pt;}
.x2_c00306{left:377.920000pt;}
.x1_c00306{left:396.960000pt;}
.x5_c00306{left:656.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_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_4c99b0053a1ccd07a20acb4c.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_6d59462d0b9208710c8c0f47.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;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_c00307;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00307;src:url('chunks/assets/font_240f1b894e06a50805ebf66f.woff2')format("woff");}.ff5_c00307{font-family:ff5_c00307;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:ff6_c00307;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff6_c00307{font-family:ff6_c00307;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00307;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff7_c00307{font-family:ff7_c00307;line-height:3.333984;font-style: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);}
.v1_c00307{vertical-align:-61.938000px;}
.v2_c00307{vertical-align:-14.760000px;}
.v0_c00307{vertical-align:0.000000px;}
.v3_c00307{vertical-align:14.760000px;}
.lsa_c00307{letter-spacing:0.000000px;}
.ls1_c00307{letter-spacing:0.072000px;}
.ls5_c00307{letter-spacing:0.144000px;}
.lsb_c00307{letter-spacing:0.504000px;}
.ls8_c00307{letter-spacing:2.520000px;}
.ls7_c00307{letter-spacing:9.360000px;}
.ls9_c00307{letter-spacing:16.920000px;}
.ls4_c00307{letter-spacing:20.016000px;}
.ls3_c00307{letter-spacing:22.961520px;}
.ls2_c00307{letter-spacing:30.744000px;}
.ls6_c00307{letter-spacing:31.320000px;}
.ls0_c00307{letter-spacing:319.518000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00307{word-spacing:-72.000000px;}
.ws2_c00307{word-spacing:-15.840000px;}
.ws10_c00307{word-spacing:-0.504000px;}
.ws4_c00307{word-spacing:-0.162000px;}
.ws7_c00307{word-spacing:-0.072000px;}
.ws3_c00307{word-spacing:0.000000px;}
.ws12_c00307{word-spacing:1.440000px;}
.ws6_c00307{word-spacing:1.728000px;}
.ws5_c00307{word-spacing:1.800000px;}
.wsc_c00307{word-spacing:2.160000px;}
.ws17_c00307{word-spacing:2.448000px;}
.ws1b_c00307{word-spacing:2.808000px;}
.ws1a_c00307{word-spacing:2.880000px;}
.ws1_c00307{word-spacing:4.176000px;}
.ws1c_c00307{word-spacing:4.536000px;}
.ws1d_c00307{word-spacing:4.680000px;}
.ws19_c00307{word-spacing:6.408000px;}
.wsf_c00307{word-spacing:6.696000px;}
.wse_c00307{word-spacing:6.768000px;}
.ws8_c00307{word-spacing:8.640000px;}
.ws13_c00307{word-spacing:9.360000px;}
.ws14_c00307{word-spacing:11.160000px;}
.ws9_c00307{word-spacing:14.400000px;}
.ws18_c00307{word-spacing:16.920000px;}
.wsa_c00307{word-spacing:17.280000px;}
.wsb_c00307{word-spacing:17.928000px;}
.wsd_c00307{word-spacing:22.320000px;}
.ws11_c00307{word-spacing:24.840000px;}
.ws15_c00307{word-spacing:30.888000px;}
.ws16_c00307{word-spacing:31.248000px;}
._7_c00307{margin-left:-6.199200px;}
._3_c00307{margin-left:-4.269600px;}
._0_c00307{margin-left:-1.087200px;}
._2_c00307{width:1.036800px;}
._6_c00307{width:2.044800px;}
._5_c00307{width:3.211200px;}
._a_c00307{width:4.392000px;}
._b_c00307{width:5.652000px;}
._1_c00307{width:8.272800px;}
._8_c00307{width:9.360000px;}
._4_c00307{width:15.984000px;}
._9_c00307{width:16.992000px;}
._c_c00307{width:846.000000px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs2_c00307{font-size:51.120000px;}
.fs0_c00307{font-size:54.000000px;}
.fs1_c00307{font-size:72.000000px;}
.y0_c00307{bottom:0.000000px;}
.y20_c00307{bottom:57.240000px;}
.y1f_c00307{bottom:298.260000px;}
.y1e_c00307{bottom:329.310000px;}
.y1d_c00307{bottom:360.540000px;}
.y1c_c00307{bottom:392.130000px;}
.y1b_c00307{bottom:423.630000px;}
.y1a_c00307{bottom:454.680000px;}
.y19_c00307{bottom:485.730000px;}
.y18_c00307{bottom:516.780000px;}
.y17_c00307{bottom:548.010000px;}
.y16_c00307{bottom:579.510000px;}
.y15_c00307{bottom:610.740000px;}
.y14_c00307{bottom:642.240000px;}
.y13_c00307{bottom:673.290000px;}
.y12_c00307{bottom:704.430000px;}
.y11_c00307{bottom:735.930000px;}
.y10_c00307{bottom:766.980000px;}
.yf_c00307{bottom:798.210000px;}
.ye_c00307{bottom:829.710000px;}
.yd_c00307{bottom:860.940000px;}
.yc_c00307{bottom:892.440000px;}
.yb_c00307{bottom:923.490000px;}
.ya_c00307{bottom:954.540000px;}
.y9_c00307{bottom:985.590000px;}
.y8_c00307{bottom:1016.640000px;}
.y7_c00307{bottom:1047.690000px;}
.y6_c00307{bottom:1078.830000px;}
.y5_c00307{bottom:1110.330000px;}
.y4_c00307{bottom:1131.030000px;}
.y3_c00307{bottom:1150.915500px;}
.y2_c00307{bottom:1166.400000px;}
.y1_c00307{bottom:1197.450000px;}
.h6_c00307{height:50.027344px;}
.h2_c00307{height:52.998047px;}
.h3_c00307{height:70.664062px;}
.h4_c00307{height:75.093750px;}
.h5_c00307{height:143.542969px;}
.h0_c00307{height:1262.880000px;}
.h1_c00307{height:1263.000000px;}
.w0_c00307{width:893.070000px;}
.w1_c00307{width:893.250000px;}
.x0_c00307{left:0.000000px;}
.x2_c00307{left:127.620000px;}
.x3_c00307{left:154.620000px;}
.x1_c00307{left:446.580000px;}
@media print{
.v1_c00307{vertical-align:-55.056000pt;}
.v2_c00307{vertical-align:-13.120000pt;}
.v0_c00307{vertical-align:0.000000pt;}
.v3_c00307{vertical-align:13.120000pt;}
.lsa_c00307{letter-spacing:0.000000pt;}
.ls1_c00307{letter-spacing:0.064000pt;}
.ls5_c00307{letter-spacing:0.128000pt;}
.lsb_c00307{letter-spacing:0.448000pt;}
.ls8_c00307{letter-spacing:2.240000pt;}
.ls7_c00307{letter-spacing:8.320000pt;}
.ls9_c00307{letter-spacing:15.040000pt;}
.ls4_c00307{letter-spacing:17.792000pt;}
.ls3_c00307{letter-spacing:20.410240pt;}
.ls2_c00307{letter-spacing:27.328000pt;}
.ls6_c00307{letter-spacing:27.840000pt;}
.ls0_c00307{letter-spacing:284.016000pt;}
.ws0_c00307{word-spacing:-64.000000pt;}
.ws2_c00307{word-spacing:-14.080000pt;}
.ws10_c00307{word-spacing:-0.448000pt;}
.ws4_c00307{word-spacing:-0.144000pt;}
.ws7_c00307{word-spacing:-0.064000pt;}
.ws3_c00307{word-spacing:0.000000pt;}
.ws12_c00307{word-spacing:1.280000pt;}
.ws6_c00307{word-spacing:1.536000pt;}
.ws5_c00307{word-spacing:1.600000pt;}
.wsc_c00307{word-spacing:1.920000pt;}
.ws17_c00307{word-spacing:2.176000pt;}
.ws1b_c00307{word-spacing:2.496000pt;}
.ws1a_c00307{word-spacing:2.560000pt;}
.ws1_c00307{word-spacing:3.712000pt;}
.ws1c_c00307{word-spacing:4.032000pt;}
.ws1d_c00307{word-spacing:4.160000pt;}
.ws19_c00307{word-spacing:5.696000pt;}
.wsf_c00307{word-spacing:5.952000pt;}
.wse_c00307{word-spacing:6.016000pt;}
.ws8_c00307{word-spacing:7.680000pt;}
.ws13_c00307{word-spacing:8.320000pt;}
.ws14_c00307{word-spacing:9.920000pt;}
.ws9_c00307{word-spacing:12.800000pt;}
.ws18_c00307{word-spacing:15.040000pt;}
.wsa_c00307{word-spacing:15.360000pt;}
.wsb_c00307{word-spacing:15.936000pt;}
.wsd_c00307{word-spacing:19.840000pt;}
.ws11_c00307{word-spacing:22.080000pt;}
.ws15_c00307{word-spacing:27.456000pt;}
.ws16_c00307{word-spacing:27.776000pt;}
._7_c00307{margin-left:-5.510400pt;}
._3_c00307{margin-left:-3.795200pt;}
._0_c00307{margin-left:-0.966400pt;}
._2_c00307{width:0.921600pt;}
._6_c00307{width:1.817600pt;}
._5_c00307{width:2.854400pt;}
._a_c00307{width:3.904000pt;}
._b_c00307{width:5.024000pt;}
._1_c00307{width:7.353600pt;}
._8_c00307{width:8.320000pt;}
._4_c00307{width:14.208000pt;}
._9_c00307{width:15.104000pt;}
._c_c00307{width:752.000000pt;}
.fs2_c00307{font-size:45.440000pt;}
.fs0_c00307{font-size:48.000000pt;}
.fs1_c00307{font-size:64.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y20_c00307{bottom:50.880000pt;}
.y1f_c00307{bottom:265.120000pt;}
.y1e_c00307{bottom:292.720000pt;}
.y1d_c00307{bottom:320.480000pt;}
.y1c_c00307{bottom:348.560000pt;}
.y1b_c00307{bottom:376.560000pt;}
.y1a_c00307{bottom:404.160000pt;}
.y19_c00307{bottom:431.760000pt;}
.y18_c00307{bottom:459.360000pt;}
.y17_c00307{bottom:487.120000pt;}
.y16_c00307{bottom:515.120000pt;}
.y15_c00307{bottom:542.880000pt;}
.y14_c00307{bottom:570.880000pt;}
.y13_c00307{bottom:598.480000pt;}
.y12_c00307{bottom:626.160000pt;}
.y11_c00307{bottom:654.160000pt;}
.y10_c00307{bottom:681.760000pt;}
.yf_c00307{bottom:709.520000pt;}
.ye_c00307{bottom:737.520000pt;}
.yd_c00307{bottom:765.280000pt;}
.yc_c00307{bottom:793.280000pt;}
.yb_c00307{bottom:820.880000pt;}
.ya_c00307{bottom:848.480000pt;}
.y9_c00307{bottom:876.080000pt;}
.y8_c00307{bottom:903.680000pt;}
.y7_c00307{bottom:931.280000pt;}
.y6_c00307{bottom:958.960000pt;}
.y5_c00307{bottom:986.960000pt;}
.y4_c00307{bottom:1005.360000pt;}
.y3_c00307{bottom:1023.036000pt;}
.y2_c00307{bottom:1036.800000pt;}
.y1_c00307{bottom:1064.400000pt;}
.h6_c00307{height:44.468750pt;}
.h2_c00307{height:47.109375pt;}
.h3_c00307{height:62.812500pt;}
.h4_c00307{height:66.750000pt;}
.h5_c00307{height:127.593750pt;}
.h0_c00307{height:1122.560000pt;}
.h1_c00307{height:1122.666667pt;}
.w0_c00307{width:793.840000pt;}
.w1_c00307{width:794.000000pt;}
.x0_c00307{left:0.000000pt;}
.x2_c00307{left:113.440000pt;}
.x3_c00307{left:137.440000pt;}
.x1_c00307{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5fc098ff69bd6a41958c1a09.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.284180;font-style:normal;font-weight:normal;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_33d0590858bbcc99d2982d28.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00308{vertical-align:-105.840000px;}
.v0_c00308{vertical-align:0.000000px;}
.ls6_c00308{letter-spacing:-0.288360px;}
.ls7_c00308{letter-spacing:-0.192240px;}
.ls4_c00308{letter-spacing:-0.108000px;}
.ls5_c00308{letter-spacing:-0.096120px;}
.ls3_c00308{letter-spacing:0.000000px;}
.ls8_c00308{letter-spacing:0.072000px;}
.ls1_c00308{letter-spacing:0.096120px;}
.ls9_c00308{letter-spacing:0.144000px;}
.ls2_c00308{letter-spacing:0.192240px;}
.ls0_c00308{letter-spacing:1257.840000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:-23.837760px;}
.ws9_c00308{word-spacing:-0.504000px;}
.ws7_c00308{word-spacing:-0.480600px;}
.ws5_c00308{word-spacing:-0.192240px;}
.ws4_c00308{word-spacing:-0.096120px;}
.ws8_c00308{word-spacing:-0.072000px;}
.ws1_c00308{word-spacing:0.000000px;}
.ws3_c00308{word-spacing:0.162000px;}
.ws2_c00308{word-spacing:0.270000px;}
.ws6_c00308{word-spacing:0.288360px;}
._1_c00308{margin-left:-1.058400px;}
._0_c00308{width:1.220400px;}
._2_c00308{width:846.000000px;}
.fc0_c00308{color:rgb(0,0,0);}
.fs0_c00308{font-size:54.000000px;}
.fs1_c00308{font-size:72.000000px;}
.fs2_c00308{font-size:96.120000px;}
.fs3_c00308{font-size:144.000000px;}
.y0_c00308{bottom:0.000000px;}
.y1b_c00308{bottom:57.240000px;}
.y1a_c00308{bottom:323.640000px;}
.y19_c00308{bottom:344.340000px;}
.y18_c00308{bottom:365.220000px;}
.y17_c00308{bottom:385.920000px;}
.y16_c00308{bottom:406.620000px;}
.y15_c00308{bottom:427.320000px;}
.y14_c00308{bottom:462.937860px;}
.y13_c00308{bottom:504.341550px;}
.y12_c00308{bottom:545.745240px;}
.y11_c00308{bottom:587.148930px;}
.y10_c00308{bottom:628.552620px;}
.yf_c00308{bottom:669.956310px;}
.ye_c00308{bottom:711.360000px;}
.yd_c00308{bottom:762.300000px;}
.yc_c00308{bottom:814.840290px;}
.yb_c00308{bottom:856.147860px;}
.ya_c00308{bottom:897.551550px;}
.y9_c00308{bottom:938.955240px;}
.y8_c00308{bottom:980.358930px;}
.y7_c00308{bottom:1021.762620px;}
.y6_c00308{bottom:1063.166310px;}
.y5_c00308{bottom:1131.030000px;}
.y4_c00308{bottom:1150.920000px;}
.y3_c00308{bottom:1166.404500px;}
.y2_c00308{bottom:1181.970000px;}
.y1_c00308{bottom:1197.450000px;}
.h3_c00308{height:52.971680px;}
.h2_c00308{height:52.998047px;}
.h4_c00308{height:70.664062px;}
.h7_c00308{height:72.562500px;}
.h5_c00308{height:96.870938px;}
.h6_c00308{height:145.125000px;}
.h0_c00308{height:1262.880000px;}
.h1_c00308{height:1263.000000px;}
.w0_c00308{width:893.070000px;}
.w1_c00308{width:893.250000px;}
.x0_c00308{left:0.000000px;}
.x3_c00308{left:127.620000px;}
.x8_c00308{left:140.580000px;}
.x6_c00308{left:147.863070px;}
.x9_c00308{left:150.930000px;}
.xa_c00308{left:153.900000px;}
.x5_c00308{left:169.562160px;}
.xb_c00308{left:282.330000px;}
.x4_c00308{left:343.530000px;}
.x7_c00308{left:419.594310px;}
.x2_c00308{left:425.160000px;}
.x1_c00308{left:446.580000px;}
.xc_c00308{left:738.540000px;}
@media print{
.v1_c00308{vertical-align:-94.080000pt;}
.v0_c00308{vertical-align:0.000000pt;}
.ls6_c00308{letter-spacing:-0.256320pt;}
.ls7_c00308{letter-spacing:-0.170880pt;}
.ls4_c00308{letter-spacing:-0.096000pt;}
.ls5_c00308{letter-spacing:-0.085440pt;}
.ls3_c00308{letter-spacing:0.000000pt;}
.ls8_c00308{letter-spacing:0.064000pt;}
.ls1_c00308{letter-spacing:0.085440pt;}
.ls9_c00308{letter-spacing:0.128000pt;}
.ls2_c00308{letter-spacing:0.170880pt;}
.ls0_c00308{letter-spacing:1118.080000pt;}
.ws0_c00308{word-spacing:-21.189120pt;}
.ws9_c00308{word-spacing:-0.448000pt;}
.ws7_c00308{word-spacing:-0.427200pt;}
.ws5_c00308{word-spacing:-0.170880pt;}
.ws4_c00308{word-spacing:-0.085440pt;}
.ws8_c00308{word-spacing:-0.064000pt;}
.ws1_c00308{word-spacing:0.000000pt;}
.ws3_c00308{word-spacing:0.144000pt;}
.ws2_c00308{word-spacing:0.240000pt;}
.ws6_c00308{word-spacing:0.256320pt;}
._1_c00308{margin-left:-0.940800pt;}
._0_c00308{width:1.084800pt;}
._2_c00308{width:752.000000pt;}
.fs0_c00308{font-size:48.000000pt;}
.fs1_c00308{font-size:64.000000pt;}
.fs2_c00308{font-size:85.440000pt;}
.fs3_c00308{font-size:128.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y1b_c00308{bottom:50.880000pt;}
.y1a_c00308{bottom:287.680000pt;}
.y19_c00308{bottom:306.080000pt;}
.y18_c00308{bottom:324.640000pt;}
.y17_c00308{bottom:343.040000pt;}
.y16_c00308{bottom:361.440000pt;}
.y15_c00308{bottom:379.840000pt;}
.y14_c00308{bottom:411.500320pt;}
.y13_c00308{bottom:448.303600pt;}
.y12_c00308{bottom:485.106880pt;}
.y11_c00308{bottom:521.910160pt;}
.y10_c00308{bottom:558.713440pt;}
.yf_c00308{bottom:595.516720pt;}
.ye_c00308{bottom:632.320000pt;}
.yd_c00308{bottom:677.600000pt;}
.yc_c00308{bottom:724.302480pt;}
.yb_c00308{bottom:761.020320pt;}
.ya_c00308{bottom:797.823600pt;}
.y9_c00308{bottom:834.626880pt;}
.y8_c00308{bottom:871.430160pt;}
.y7_c00308{bottom:908.233440pt;}
.y6_c00308{bottom:945.036720pt;}
.y5_c00308{bottom:1005.360000pt;}
.y4_c00308{bottom:1023.040000pt;}
.y3_c00308{bottom:1036.804000pt;}
.y2_c00308{bottom:1050.640000pt;}
.y1_c00308{bottom:1064.400000pt;}
.h3_c00308{height:47.085938pt;}
.h2_c00308{height:47.109375pt;}
.h4_c00308{height:62.812500pt;}
.h7_c00308{height:64.500000pt;}
.h5_c00308{height:86.107500pt;}
.h6_c00308{height:129.000000pt;}
.h0_c00308{height:1122.560000pt;}
.h1_c00308{height:1122.666667pt;}
.w0_c00308{width:793.840000pt;}
.w1_c00308{width:794.000000pt;}
.x0_c00308{left:0.000000pt;}
.x3_c00308{left:113.440000pt;}
.x8_c00308{left:124.960000pt;}
.x6_c00308{left:131.433840pt;}
.x9_c00308{left:134.160000pt;}
.xa_c00308{left:136.800000pt;}
.x5_c00308{left:150.721920pt;}
.xb_c00308{left:250.960000pt;}
.x4_c00308{left:305.360000pt;}
.x7_c00308{left:372.972720pt;}
.x2_c00308{left:377.920000pt;}
.x1_c00308{left:396.960000pt;}
.xc_c00308{left:656.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_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_88765dbfbc06ca47b266616f.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_4ff42495810aa4c8787ee870.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_65be0e7a78319169bf7a11d2.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_915c614a45c0adfb2a693e9b.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00309;src:url('chunks/assets/font_1dd457e1d4e6e0aa0147c7de.woff2')format("woff");}.ff5_c00309{font-family:ff5_c00309;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00309;src:url('chunks/assets/font_f4c6e35c0cac55bee684898c.woff2')format("woff");}.ff6_c00309{font-family:ff6_c00309;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00309;src:url('chunks/assets/font_0718b94d62e14623f5703e7e.woff2')format("woff");}.ff7_c00309{font-family:ff7_c00309;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:ff8_c00309;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00309{font-family:ff8_c00309;line-height:1.432129;font-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_c00309{transform:matrix(0.090990,0.000000,-0.030330,0.248153,0,0);-ms-transform:matrix(0.090990,0.000000,-0.030330,0.248153,0,0);-webkit-transform:matrix(0.090990,0.000000,-0.030330,0.248153,0,0);}
.m2_c00309{transform:matrix(0.225951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225951,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.225952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225952,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266393,0.000000,0.000000,0.250000,0,0);}
.v1_c00309{vertical-align:-61.938000px;}
.v8_c00309{vertical-align:-14.760000px;}
.v2_c00309{vertical-align:-10.800000px;}
.v7_c00309{vertical-align:-2.880000px;}
.v0_c00309{vertical-align:0.000000px;}
.v6_c00309{vertical-align:14.760000px;}
.v4_c00309{vertical-align:21.600000px;}
.v3_c00309{vertical-align:36.360000px;}
.v5_c00309{vertical-align:78.496560px;}
.ls19_c00309{letter-spacing:-0.360000px;}
.ls20_c00309{letter-spacing:-0.216000px;}
.ls1d_c00309{letter-spacing:-0.144000px;}
.ls1c_c00309{letter-spacing:-0.102240px;}
.ls18_c00309{letter-spacing:-0.072000px;}
.ls1f_c00309{letter-spacing:-0.044471px;}
.ls1a_c00309{letter-spacing:-0.042120px;}
.ls1e_c00309{letter-spacing:-0.040490px;}
.ls17_c00309{letter-spacing:0.000000px;}
.ls9_c00309{letter-spacing:0.009360px;}
.ls2_c00309{letter-spacing:0.072000px;}
.ls1b_c00309{letter-spacing:0.102240px;}
.ls4_c00309{letter-spacing:0.144000px;}
.ls10_c00309{letter-spacing:0.151200px;}
.lsc_c00309{letter-spacing:0.360000px;}
.lsd_c00309{letter-spacing:0.367200px;}
.ls14_c00309{letter-spacing:2.376000px;}
.ls12_c00309{letter-spacing:4.736880px;}
.ls16_c00309{letter-spacing:7.200000px;}
.ls1_c00309{letter-spacing:7.560000px;}
.lsf_c00309{letter-spacing:13.320000px;}
.ls15_c00309{letter-spacing:14.040000px;}
.ls13_c00309{letter-spacing:14.400000px;}
.ls7_c00309{letter-spacing:16.056000px;}
.lse_c00309{letter-spacing:16.214400px;}
.ls6_c00309{letter-spacing:18.717120px;}
.ls5_c00309{letter-spacing:20.016000px;}
.ls8_c00309{letter-spacing:21.572640px;}
.lsb_c00309{letter-spacing:24.854400px;}
.lsa_c00309{letter-spacing:25.200000px;}
.ls3_c00309{letter-spacing:26.640000px;}
.ls11_c00309{letter-spacing:30.744000px;}
.ls0_c00309{letter-spacing:319.518000px;}
.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;}
}
.ws6_c00309{word-spacing:-72.000000px;}
.ws4_c00309{word-spacing:-51.222240px;}
.ws3_c00309{word-spacing:-51.120000px;}
.ws7_c00309{word-spacing:-51.017760px;}
.ws8_c00309{word-spacing:-42.077880px;}
.wse_c00309{word-spacing:-39.528000px;}
.ws5_c00309{word-spacing:-19.954800px;}
.wsf_c00309{word-spacing:-19.058850px;}
.ws9_c00309{word-spacing:-18.144000px;}
.ws1_c00309{word-spacing:-18.072000px;}
.wsa_c00309{word-spacing:-18.000000px;}
.ws0_c00309{word-spacing:-17.928000px;}
.wsc_c00309{word-spacing:-17.856000px;}
.ws10_c00309{word-spacing:-17.784000px;}
.ws2_c00309{word-spacing:-17.640000px;}
.wsd_c00309{word-spacing:-17.353050px;}
.wsb_c00309{word-spacing:-11.970000px;}
.ws20_c00309{word-spacing:-0.504000px;}
.ws1d_c00309{word-spacing:-0.360000px;}
.ws12_c00309{word-spacing:-0.162000px;}
.ws1f_c00309{word-spacing:-0.144000px;}
.ws1a_c00309{word-spacing:-0.072000px;}
.ws11_c00309{word-spacing:0.000000px;}
.ws1e_c00309{word-spacing:0.040490px;}
.ws1c_c00309{word-spacing:0.042120px;}
.ws21_c00309{word-spacing:0.044471px;}
.ws14_c00309{word-spacing:0.072000px;}
.ws24_c00309{word-spacing:0.216000px;}
.ws13_c00309{word-spacing:0.288000px;}
.ws25_c00309{word-spacing:0.360000px;}
.ws2b_c00309{word-spacing:0.648000px;}
.ws29_c00309{word-spacing:3.240000px;}
.ws2e_c00309{word-spacing:4.680000px;}
.ws1b_c00309{word-spacing:5.328000px;}
.ws33_c00309{word-spacing:7.128000px;}
.ws17_c00309{word-spacing:7.200000px;}
.ws15_c00309{word-spacing:7.488000px;}
.ws16_c00309{word-spacing:7.560000px;}
.ws34_c00309{word-spacing:8.640000px;}
.ws2c_c00309{word-spacing:9.288000px;}
.ws2d_c00309{word-spacing:9.360000px;}
.ws2a_c00309{word-spacing:13.248000px;}
.ws32_c00309{word-spacing:13.968000px;}
.ws31_c00309{word-spacing:14.040000px;}
.ws2f_c00309{word-spacing:14.328000px;}
.ws30_c00309{word-spacing:14.400000px;}
.ws28_c00309{word-spacing:16.056000px;}
.ws26_c00309{word-spacing:16.128000px;}
.ws27_c00309{word-spacing:16.200000px;}
.ws22_c00309{word-spacing:25.128000px;}
.ws23_c00309{word-spacing:25.200000px;}
.ws18_c00309{word-spacing:26.208000px;}
.ws19_c00309{word-spacing:26.640000px;}
._0_c00309{margin-left:-1.022400px;}
._1_c00309{width:1.022400px;}
._4_c00309{width:2.689200px;}
._6_c00309{width:7.272000px;}
._5_c00309{width:13.939200px;}
._3_c00309{width:18.177480px;}
._2_c00309{width:26.524800px;}
.fc0_c00309{color:rgb(0,0,0);}
.fs5_c00309{font-size:40.490400px;}
.fs3_c00309{font-size:42.120000px;}
.fs7_c00309{font-size:44.470800px;}
.fs4_c00309{font-size:47.880000px;}
.fs2_c00309{font-size:51.120000px;}
.fs0_c00309{font-size:54.000000px;}
.fs6_c00309{font-size:69.412200px;}
.fs1_c00309{font-size:72.000000px;}
.fs8_c00309{font-size:76.235400px;}
.fs9_c00309{font-size:101.879535px;}
.y0_c00309{bottom:0.000000px;}
.y1d_c00309{bottom:3.921000px;}
.y14_c00309{bottom:4.203000px;}
.y16_c00309{bottom:5.287800px;}
.y29_c00309{bottom:6.320700px;}
.y1f_c00309{bottom:8.983350px;}
.y15_c00309{bottom:25.754015px;}
.y17_c00309{bottom:30.102662px;}
.y1e_c00309{bottom:31.315013px;}
.y20_c00309{bottom:36.085035px;}
.y34_c00309{bottom:57.240000px;}
.y33_c00309{bottom:157.050000px;}
.y32_c00309{bottom:188.280000px;}
.y31_c00309{bottom:219.780000px;}
.y30_c00309{bottom:251.010000px;}
.y2f_c00309{bottom:282.510000px;}
.y2e_c00309{bottom:313.560000px;}
.y2d_c00309{bottom:344.610000px;}
.y2c_c00309{bottom:375.660000px;}
.y2b_c00309{bottom:406.620000px;}
.y28_c00309{bottom:436.935000px;}
.y2a_c00309{bottom:436.950000px;}
.y27_c00309{bottom:464.760000px;}
.y26_c00309{bottom:485.370000px;}
.y25_c00309{bottom:507.510000px;}
.y24_c00309{bottom:528.210000px;}
.y23_c00309{bottom:548.820000px;}
.y22_c00309{bottom:570.960000px;}
.y1c_c00309{bottom:587.460000px;}
.y21_c00309{bottom:610.020000px;}
.y1b_c00309{bottom:645.660000px;}
.y1a_c00309{bottom:666.360000px;}
.y19_c00309{bottom:686.970000px;}
.y13_c00309{bottom:704.985000px;}
.y18_c00309{bottom:724.590000px;}
.y12_c00309{bottom:755.460000px;}
.y11_c00309{bottom:776.160000px;}
.y10_c00309{bottom:796.860000px;}
.yf_c00309{bottom:817.560000px;}
.ye_c00309{bottom:847.530000px;}
.yd_c00309{bottom:867.150000px;}
.yc_c00309{bottom:892.980000px;}
.yb_c00309{bottom:924.030000px;}
.ya_c00309{bottom:955.080000px;}
.y9_c00309{bottom:986.130000px;}
.y8_c00309{bottom:1017.180000px;}
.y7_c00309{bottom:1048.050000px;}
.y6_c00309{bottom:1079.100000px;}
.y5_c00309{bottom:1110.150000px;}
.y4_c00309{bottom:1131.030000px;}
.y3_c00309{bottom:1150.915500px;}
.y2_c00309{bottom:1166.400000px;}
.y1_c00309{bottom:1197.450000px;}
.he_c00309{height:23.173500px;}
.h9_c00309{height:39.719343px;}
.hc_c00309{height:43.623944px;}
.h8_c00309{height:46.275000px;}
.h2_c00309{height:52.998047px;}
.hb_c00309{height:54.000000px;}
.ha_c00309{height:68.090386px;}
.h3_c00309{height:70.664062px;}
.h4_c00309{height:72.562500px;}
.hd_c00309{height:74.783652px;}
.h10_c00309{height:91.544062px;}
.hf_c00309{height:94.367909px;}
.h5_c00309{height:101.915508px;}
.h11_c00309{height:143.542969px;}
.h7_c00309{height:179.902969px;}
.h6_c00309{height:180.412068px;}
.h0_c00309{height:1262.880000px;}
.h1_c00309{height:1263.000000px;}
.w4_c00309{width:7.725000px;}
.w3_c00309{width:61.725000px;}
.w2_c00309{width:84.750000px;}
.w0_c00309{width:893.070000px;}
.w1_c00309{width:893.250000px;}
.x0_c00309{left:0.000000px;}
.x8_c00309{left:3.755595px;}
.xc_c00309{left:6.235350px;}
.x7_c00309{left:8.137950px;}
.xb_c00309{left:41.943538px;}
.xa_c00309{left:52.484100px;}
.x6_c00309{left:62.695365px;}
.x5_c00309{left:74.204400px;}
.x2_c00309{left:127.620000px;}
.xe_c00309{left:135.360000px;}
.xf_c00309{left:154.620000px;}
.xd_c00309{left:189.360000px;}
.x9_c00309{left:212.400000px;}
.x3_c00309{left:314.010000px;}
.x1_c00309{left:446.580000px;}
.x4_c00309{left:449.910000px;}
@media print{
.v1_c00309{vertical-align:-55.056000pt;}
.v8_c00309{vertical-align:-13.120000pt;}
.v2_c00309{vertical-align:-9.600000pt;}
.v7_c00309{vertical-align:-2.560000pt;}
.v0_c00309{vertical-align:0.000000pt;}
.v6_c00309{vertical-align:13.120000pt;}
.v4_c00309{vertical-align:19.200000pt;}
.v3_c00309{vertical-align:32.320000pt;}
.v5_c00309{vertical-align:69.774720pt;}
.ls19_c00309{letter-spacing:-0.320000pt;}
.ls20_c00309{letter-spacing:-0.192000pt;}
.ls1d_c00309{letter-spacing:-0.128000pt;}
.ls1c_c00309{letter-spacing:-0.090880pt;}
.ls18_c00309{letter-spacing:-0.064000pt;}
.ls1f_c00309{letter-spacing:-0.039530pt;}
.ls1a_c00309{letter-spacing:-0.037440pt;}
.ls1e_c00309{letter-spacing:-0.035991pt;}
.ls17_c00309{letter-spacing:0.000000pt;}
.ls9_c00309{letter-spacing:0.008320pt;}
.ls2_c00309{letter-spacing:0.064000pt;}
.ls1b_c00309{letter-spacing:0.090880pt;}
.ls4_c00309{letter-spacing:0.128000pt;}
.ls10_c00309{letter-spacing:0.134400pt;}
.lsc_c00309{letter-spacing:0.320000pt;}
.lsd_c00309{letter-spacing:0.326400pt;}
.ls14_c00309{letter-spacing:2.112000pt;}
.ls12_c00309{letter-spacing:4.210560pt;}
.ls16_c00309{letter-spacing:6.400000pt;}
.ls1_c00309{letter-spacing:6.720000pt;}
.lsf_c00309{letter-spacing:11.840000pt;}
.ls15_c00309{letter-spacing:12.480000pt;}
.ls13_c00309{letter-spacing:12.800000pt;}
.ls7_c00309{letter-spacing:14.272000pt;}
.lse_c00309{letter-spacing:14.412800pt;}
.ls6_c00309{letter-spacing:16.637440pt;}
.ls5_c00309{letter-spacing:17.792000pt;}
.ls8_c00309{letter-spacing:19.175680pt;}
.lsb_c00309{letter-spacing:22.092800pt;}
.lsa_c00309{letter-spacing:22.400000pt;}
.ls3_c00309{letter-spacing:23.680000pt;}
.ls11_c00309{letter-spacing:27.328000pt;}
.ls0_c00309{letter-spacing:284.016000pt;}
.ws6_c00309{word-spacing:-64.000000pt;}
.ws4_c00309{word-spacing:-45.530880pt;}
.ws3_c00309{word-spacing:-45.440000pt;}
.ws7_c00309{word-spacing:-45.349120pt;}
.ws8_c00309{word-spacing:-37.402560pt;}
.wse_c00309{word-spacing:-35.136000pt;}
.ws5_c00309{word-spacing:-17.737600pt;}
.wsf_c00309{word-spacing:-16.941200pt;}
.ws9_c00309{word-spacing:-16.128000pt;}
.ws1_c00309{word-spacing:-16.064000pt;}
.wsa_c00309{word-spacing:-16.000000pt;}
.ws0_c00309{word-spacing:-15.936000pt;}
.wsc_c00309{word-spacing:-15.872000pt;}
.ws10_c00309{word-spacing:-15.808000pt;}
.ws2_c00309{word-spacing:-15.680000pt;}
.wsd_c00309{word-spacing:-15.424933pt;}
.wsb_c00309{word-spacing:-10.640000pt;}
.ws20_c00309{word-spacing:-0.448000pt;}
.ws1d_c00309{word-spacing:-0.320000pt;}
.ws12_c00309{word-spacing:-0.144000pt;}
.ws1f_c00309{word-spacing:-0.128000pt;}
.ws1a_c00309{word-spacing:-0.064000pt;}
.ws11_c00309{word-spacing:0.000000pt;}
.ws1e_c00309{word-spacing:0.035991pt;}
.ws1c_c00309{word-spacing:0.037440pt;}
.ws21_c00309{word-spacing:0.039530pt;}
.ws14_c00309{word-spacing:0.064000pt;}
.ws24_c00309{word-spacing:0.192000pt;}
.ws13_c00309{word-spacing:0.256000pt;}
.ws25_c00309{word-spacing:0.320000pt;}
.ws2b_c00309{word-spacing:0.576000pt;}
.ws29_c00309{word-spacing:2.880000pt;}
.ws2e_c00309{word-spacing:4.160000pt;}
.ws1b_c00309{word-spacing:4.736000pt;}
.ws33_c00309{word-spacing:6.336000pt;}
.ws17_c00309{word-spacing:6.400000pt;}
.ws15_c00309{word-spacing:6.656000pt;}
.ws16_c00309{word-spacing:6.720000pt;}
.ws34_c00309{word-spacing:7.680000pt;}
.ws2c_c00309{word-spacing:8.256000pt;}
.ws2d_c00309{word-spacing:8.320000pt;}
.ws2a_c00309{word-spacing:11.776000pt;}
.ws32_c00309{word-spacing:12.416000pt;}
.ws31_c00309{word-spacing:12.480000pt;}
.ws2f_c00309{word-spacing:12.736000pt;}
.ws30_c00309{word-spacing:12.800000pt;}
.ws28_c00309{word-spacing:14.272000pt;}
.ws26_c00309{word-spacing:14.336000pt;}
.ws27_c00309{word-spacing:14.400000pt;}
.ws22_c00309{word-spacing:22.336000pt;}
.ws23_c00309{word-spacing:22.400000pt;}
.ws18_c00309{word-spacing:23.296000pt;}
.ws19_c00309{word-spacing:23.680000pt;}
._0_c00309{margin-left:-0.908800pt;}
._1_c00309{width:0.908800pt;}
._4_c00309{width:2.390400pt;}
._6_c00309{width:6.464000pt;}
._5_c00309{width:12.390400pt;}
._3_c00309{width:16.157760pt;}
._2_c00309{width:23.577600pt;}
.fs5_c00309{font-size:35.991467pt;}
.fs3_c00309{font-size:37.440000pt;}
.fs7_c00309{font-size:39.529600pt;}
.fs4_c00309{font-size:42.560000pt;}
.fs2_c00309{font-size:45.440000pt;}
.fs0_c00309{font-size:48.000000pt;}
.fs6_c00309{font-size:61.699733pt;}
.fs1_c00309{font-size:64.000000pt;}
.fs8_c00309{font-size:67.764800pt;}
.fs9_c00309{font-size:90.559587pt;}
.y0_c00309{bottom:0.000000pt;}
.y1d_c00309{bottom:3.485333pt;}
.y14_c00309{bottom:3.736000pt;}
.y16_c00309{bottom:4.700267pt;}
.y29_c00309{bottom:5.618400pt;}
.y1f_c00309{bottom:7.985200pt;}
.y15_c00309{bottom:22.892458pt;}
.y17_c00309{bottom:26.757921pt;}
.y1e_c00309{bottom:27.835567pt;}
.y20_c00309{bottom:32.075586pt;}
.y34_c00309{bottom:50.880000pt;}
.y33_c00309{bottom:139.600000pt;}
.y32_c00309{bottom:167.360000pt;}
.y31_c00309{bottom:195.360000pt;}
.y30_c00309{bottom:223.120000pt;}
.y2f_c00309{bottom:251.120000pt;}
.y2e_c00309{bottom:278.720000pt;}
.y2d_c00309{bottom:306.320000pt;}
.y2c_c00309{bottom:333.920000pt;}
.y2b_c00309{bottom:361.440000pt;}
.y28_c00309{bottom:388.386667pt;}
.y2a_c00309{bottom:388.400000pt;}
.y27_c00309{bottom:413.120000pt;}
.y26_c00309{bottom:431.440000pt;}
.y25_c00309{bottom:451.120000pt;}
.y24_c00309{bottom:469.520000pt;}
.y23_c00309{bottom:487.840000pt;}
.y22_c00309{bottom:507.520000pt;}
.y1c_c00309{bottom:522.186667pt;}
.y21_c00309{bottom:542.240000pt;}
.y1b_c00309{bottom:573.920000pt;}
.y1a_c00309{bottom:592.320000pt;}
.y19_c00309{bottom:610.640000pt;}
.y13_c00309{bottom:626.653333pt;}
.y18_c00309{bottom:644.080000pt;}
.y12_c00309{bottom:671.520000pt;}
.y11_c00309{bottom:689.920000pt;}
.y10_c00309{bottom:708.320000pt;}
.yf_c00309{bottom:726.720000pt;}
.ye_c00309{bottom:753.360000pt;}
.yd_c00309{bottom:770.800000pt;}
.yc_c00309{bottom:793.760000pt;}
.yb_c00309{bottom:821.360000pt;}
.ya_c00309{bottom:848.960000pt;}
.y9_c00309{bottom:876.560000pt;}
.y8_c00309{bottom:904.160000pt;}
.y7_c00309{bottom:931.600000pt;}
.y6_c00309{bottom:959.200000pt;}
.y5_c00309{bottom:986.800000pt;}
.y4_c00309{bottom:1005.360000pt;}
.y3_c00309{bottom:1023.036000pt;}
.y2_c00309{bottom:1036.800000pt;}
.y1_c00309{bottom:1064.400000pt;}
.he_c00309{height:20.598667pt;}
.h9_c00309{height:35.306082pt;}
.hc_c00309{height:38.776839pt;}
.h8_c00309{height:41.133333pt;}
.h2_c00309{height:47.109375pt;}
.hb_c00309{height:48.000000pt;}
.ha_c00309{height:60.524787pt;}
.h3_c00309{height:62.812500pt;}
.h4_c00309{height:64.500000pt;}
.hd_c00309{height:66.474357pt;}
.h10_c00309{height:81.372500pt;}
.hf_c00309{height:83.882586pt;}
.h5_c00309{height:90.591562pt;}
.h11_c00309{height:127.593750pt;}
.h7_c00309{height:159.913750pt;}
.h6_c00309{height:160.366283pt;}
.h0_c00309{height:1122.560000pt;}
.h1_c00309{height:1122.666667pt;}
.w4_c00309{width:6.866667pt;}
.w3_c00309{width:54.866667pt;}
.w2_c00309{width:75.333333pt;}
.w0_c00309{width:793.840000pt;}
.w1_c00309{width:794.000000pt;}
.x0_c00309{left:0.000000pt;}
.x8_c00309{left:3.338307pt;}
.xc_c00309{left:5.542533pt;}
.x7_c00309{left:7.233733pt;}
.xb_c00309{left:37.283145pt;}
.xa_c00309{left:46.652533pt;}
.x6_c00309{left:55.729213pt;}
.x5_c00309{left:65.959467pt;}
.x2_c00309{left:113.440000pt;}
.xe_c00309{left:120.320000pt;}
.xf_c00309{left:137.440000pt;}
.xd_c00309{left:168.320000pt;}
.x9_c00309{left:188.800000pt;}
.x3_c00309{left:279.120000pt;}
.x1_c00309{left:396.960000pt;}
.x4_c00309{left:399.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4fdbe52b102b319c998b891a.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_fe0096a20db2daa47c2f3a9e.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_b3f9cd3a00055b52fda96a8f.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_cf7b2501544e056f9b2bebdb.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;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:ff6_c00310;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6_c00310{font-family:ff6_c00310;line-height:1.432129;font-style:normal;font-weight: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_c00310;src:url('chunks/assets/font_0348f459124225fb48bf7b0c.woff2')format("woff");}.ff7_c00310{font-family:ff7_c00310;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00310;src:url('chunks/assets/font_c35402909bef5d6bde7622ab.woff2')format("woff");}.ff8_c00310{font-family:ff8_c00310;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00310;src:url('chunks/assets/font_034dab7bf00cd5a8961505dd.woff2')format("woff");}.ff9_c00310{font-family:ff9_c00310;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.266228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266228,0.000000,0.000000,0.250000,0,0);}
.v1_c00310{vertical-align:-88.560000px;}
.v2_c00310{vertical-align:-14.760000px;}
.v7_c00310{vertical-align:-10.800000px;}
.v0_c00310{vertical-align:0.000000px;}
.v9_c00310{vertical-align:2.880000px;}
.v3_c00310{vertical-align:14.760000px;}
.v4_c00310{vertical-align:26.280600px;}
.v6_c00310{vertical-align:31.320000px;}
.v8_c00310{vertical-align:36.360000px;}
.v5_c00310{vertical-align:42.120600px;}
.ls1d_c00310{letter-spacing:-0.493704px;}
.ls14_c00310{letter-spacing:-0.360000px;}
.ls15_c00310{letter-spacing:-0.288000px;}
.ls12_c00310{letter-spacing:-0.108000px;}
.ls18_c00310{letter-spacing:-0.072000px;}
.ls16_c00310{letter-spacing:-0.042120px;}
.ls11_c00310{letter-spacing:0.000000px;}
.ls2_c00310{letter-spacing:0.072000px;}
.ls17_c00310{letter-spacing:0.102240px;}
.ls13_c00310{letter-spacing:0.144000px;}
.ls1b_c00310{letter-spacing:0.246852px;}
.ls1a_c00310{letter-spacing:0.329136px;}
.ls8_c00310{letter-spacing:0.360000px;}
.ls9_c00310{letter-spacing:0.432000px;}
.lsd_c00310{letter-spacing:0.720000px;}
.ls19_c00310{letter-spacing:1.042260px;}
.ls10_c00310{letter-spacing:1.368000px;}
.ls1c_c00310{letter-spacing:1.522254px;}
.lsb_c00310{letter-spacing:2.016000px;}
.ls4_c00310{letter-spacing:2.376000px;}
.lsf_c00310{letter-spacing:2.880000px;}
.lsc_c00310{letter-spacing:3.161520px;}
.ls1_c00310{letter-spacing:4.736880px;}
.lsa_c00310{letter-spacing:7.207200px;}
.ls7_c00310{letter-spacing:10.440000px;}
.ls6_c00310{letter-spacing:12.600000px;}
.lse_c00310{letter-spacing:14.400000px;}
.ls3_c00310{letter-spacing:23.760000px;}
.ls5_c00310{letter-spacing:30.744000px;}
.ls0_c00310{letter-spacing:90.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:-72.000000px;}
.ws4_c00310{word-spacing:-51.222240px;}
.ws3_c00310{word-spacing:-51.120000px;}
.ws5_c00310{word-spacing:-42.077880px;}
.ws6_c00310{word-spacing:-18.072000px;}
.ws2_c00310{word-spacing:-18.000000px;}
.ws1_c00310{word-spacing:-17.640000px;}
.ws7_c00310{word-spacing:-15.840000px;}
.ws9_c00310{word-spacing:-10.820346px;}
.ws8_c00310{word-spacing:-9.627228px;}
.wsa_c00310{word-spacing:-8.804388px;}
.ws2f_c00310{word-spacing:-1.823955px;}
.ws30_c00310{word-spacing:-1.398828px;}
.ws31_c00310{word-spacing:-1.316544px;}
.ws12_c00310{word-spacing:-0.360000px;}
.ws32_c00310{word-spacing:-0.246852px;}
.ws11_c00310{word-spacing:-0.144000px;}
.ws1b_c00310{word-spacing:-0.072000px;}
.wsb_c00310{word-spacing:0.000000px;}
.ws1e_c00310{word-spacing:0.042120px;}
.ws26_c00310{word-spacing:0.072000px;}
.wsd_c00310{word-spacing:0.162000px;}
.wsc_c00310{word-spacing:0.270000px;}
.ws18_c00310{word-spacing:0.576000px;}
.ws17_c00310{word-spacing:0.648000px;}
.ws1a_c00310{word-spacing:0.720000px;}
.ws19_c00310{word-spacing:1.008000px;}
.ws24_c00310{word-spacing:2.448000px;}
.ws27_c00310{word-spacing:2.520000px;}
.ws2b_c00310{word-spacing:4.248000px;}
.ws2d_c00310{word-spacing:5.328000px;}
.ws2c_c00310{word-spacing:5.400000px;}
.ws1c_c00310{word-spacing:6.120000px;}
.ws1d_c00310{word-spacing:7.128000px;}
.ws2a_c00310{word-spacing:10.008000px;}
.ws14_c00310{word-spacing:10.368000px;}
.ws13_c00310{word-spacing:10.440000px;}
.ws23_c00310{word-spacing:10.800000px;}
.ws29_c00310{word-spacing:11.088000px;}
.ws28_c00310{word-spacing:11.160000px;}
.ws10_c00310{word-spacing:12.528000px;}
.ws20_c00310{word-spacing:12.888000px;}
.ws2e_c00310{word-spacing:14.328000px;}
.ws1f_c00310{word-spacing:14.400000px;}
.ws25_c00310{word-spacing:16.920000px;}
.ws16_c00310{word-spacing:17.928000px;}
.ws15_c00310{word-spacing:18.000000px;}
.wsf_c00310{word-spacing:23.688000px;}
.wse_c00310{word-spacing:23.760000px;}
.ws22_c00310{word-spacing:29.088000px;}
.ws21_c00310{word-spacing:29.160000px;}
._3_c00310{margin-left:-5.061600px;}
._8_c00310{margin-left:-2.110585px;}
._1_c00310{margin-left:-1.058400px;}
._0_c00310{width:1.220400px;}
._9_c00310{width:2.289013px;}
._6_c00310{width:10.368000px;}
._4_c00310{width:11.721600px;}
._7_c00310{width:14.472000px;}
._2_c00310{width:23.572800px;}
._5_c00310{width:28.944000px;}
.fc0_c00310{color:rgb(0,0,0);}
.fs5_c00310{font-size:41.142000px;}
.fs3_c00310{font-size:42.120000px;}
.fs2_c00310{font-size:51.120000px;}
.fs4_c00310{font-size:52.113000px;}
.fs0_c00310{font-size:54.000000px;}
.fs1_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y2a_c00310{bottom:2.745928px;}
.y27_c00310{bottom:2.746378px;}
.y24_c00310{bottom:3.428400px;}
.y2b_c00310{bottom:10.285200px;}
.y29_c00310{bottom:16.456500px;}
.y26_c00310{bottom:16.456950px;}
.y2c_c00310{bottom:57.240000px;}
.y22_c00310{bottom:130.230000px;}
.y21_c00310{bottom:161.370000px;}
.y20_c00310{bottom:192.870000px;}
.y1f_c00310{bottom:223.920000px;}
.y1e_c00310{bottom:254.970000px;}
.y1d_c00310{bottom:286.020000px;}
.y1c_c00310{bottom:317.070000px;}
.y1b_c00310{bottom:348.300000px;}
.y1a_c00310{bottom:379.800000px;}
.y19_c00310{bottom:406.800000px;}
.y23_c00310{bottom:421.798500px;}
.y28_c00310{bottom:467.740500px;}
.y25_c00310{bottom:495.168000px;}
.y18_c00310{bottom:540.270000px;}
.y17_c00310{bottom:560.970000px;}
.y16_c00310{bottom:592.200000px;}
.y15_c00310{bottom:623.250000px;}
.y14_c00310{bottom:654.300000px;}
.y13_c00310{bottom:685.350000px;}
.y12_c00310{bottom:716.400000px;}
.y11_c00310{bottom:747.450000px;}
.y10_c00310{bottom:778.500000px;}
.yf_c00310{bottom:808.560000px;}
.ye_c00310{bottom:817.649850px;}
.yd_c00310{bottom:854.729850px;}
.yc_c00310{bottom:886.590000px;}
.yb_c00310{bottom:918.720000px;}
.ya_c00310{bottom:951.390000px;}
.y9_c00310{bottom:982.890000px;}
.y8_c00310{bottom:1013.940000px;}
.y7_c00310{bottom:1045.170000px;}
.y6_c00310{bottom:1076.760000px;}
.y5_c00310{bottom:1131.030000px;}
.y4_c00310{bottom:1150.920000px;}
.y3_c00310{bottom:1166.404500px;}
.y2_c00310{bottom:1181.970000px;}
.y1_c00310{bottom:1197.450000px;}
.ha_c00310{height:16.456500px;}
.hc_c00310{height:26.742000px;}
.hd_c00310{height:30.595345px;}
.hb_c00310{height:38.753955px;}
.h3_c00310{height:52.971680px;}
.h2_c00310{height:52.998047px;}
.h4_c00310{height:70.664062px;}
.h9_c00310{height:72.562500px;}
.h8_c00310{height:75.093750px;}
.h5_c00310{height:143.542969px;}
.h6_c00310{height:144.036108px;}
.h7_c00310{height:179.902969px;}
.h0_c00310{height:1262.880000px;}
.h1_c00310{height:1263.000000px;}
.w4_c00310{width:57.685500px;}
.w2_c00310{width:116.103000px;}
.w3_c00310{width:174.520500px;}
.w5_c00310{width:232.935000px;}
.w0_c00310{width:893.070000px;}
.w1_c00310{width:893.250000px;}
.x0_c00310{left:0.000000px;}
.x11_c00310{left:5.114671px;}
.x10_c00310{left:10.952700px;}
.x14_c00310{left:21.906450px;}
.xb_c00310{left:38.701650px;}
.x15_c00310{left:40.165351px;}
.x9_c00310{left:54.765150px;}
.x17_c00310{left:62.797800px;}
.x3_c00310{left:127.620000px;}
.x6_c00310{left:130.320000px;}
.x4_c00310{left:154.620000px;}
.x5_c00310{left:163.440000px;}
.x13_c00310{left:186.766500px;}
.xa_c00310{left:245.182500px;}
.xf_c00310{left:303.600000px;}
.x16_c00310{left:362.016000px;}
.x7_c00310{left:371.250000px;}
.xc_c00310{left:420.432000px;}
.x2_c00310{left:425.160000px;}
.x1_c00310{left:446.580000px;}
.xd_c00310{left:537.265500px;}
.x12_c00310{left:595.681500px;}
.x18_c00310{left:654.097500px;}
.xe_c00310{left:712.515000px;}
.x19_c00310{left:738.540000px;}
.x8_c00310{left:830.070000px;}
@media print{
.v1_c00310{vertical-align:-78.720000pt;}
.v2_c00310{vertical-align:-13.120000pt;}
.v7_c00310{vertical-align:-9.600000pt;}
.v0_c00310{vertical-align:0.000000pt;}
.v9_c00310{vertical-align:2.560000pt;}
.v3_c00310{vertical-align:13.120000pt;}
.v4_c00310{vertical-align:23.360533pt;}
.v6_c00310{vertical-align:27.840000pt;}
.v8_c00310{vertical-align:32.320000pt;}
.v5_c00310{vertical-align:37.440533pt;}
.ls1d_c00310{letter-spacing:-0.438848pt;}
.ls14_c00310{letter-spacing:-0.320000pt;}
.ls15_c00310{letter-spacing:-0.256000pt;}
.ls12_c00310{letter-spacing:-0.096000pt;}
.ls18_c00310{letter-spacing:-0.064000pt;}
.ls16_c00310{letter-spacing:-0.037440pt;}
.ls11_c00310{letter-spacing:0.000000pt;}
.ls2_c00310{letter-spacing:0.064000pt;}
.ls17_c00310{letter-spacing:0.090880pt;}
.ls13_c00310{letter-spacing:0.128000pt;}
.ls1b_c00310{letter-spacing:0.219424pt;}
.ls1a_c00310{letter-spacing:0.292565pt;}
.ls8_c00310{letter-spacing:0.320000pt;}
.ls9_c00310{letter-spacing:0.384000pt;}
.lsd_c00310{letter-spacing:0.640000pt;}
.ls19_c00310{letter-spacing:0.926453pt;}
.ls10_c00310{letter-spacing:1.216000pt;}
.ls1c_c00310{letter-spacing:1.353115pt;}
.lsb_c00310{letter-spacing:1.792000pt;}
.ls4_c00310{letter-spacing:2.112000pt;}
.lsf_c00310{letter-spacing:2.560000pt;}
.lsc_c00310{letter-spacing:2.810240pt;}
.ls1_c00310{letter-spacing:4.210560pt;}
.lsa_c00310{letter-spacing:6.406400pt;}
.ls7_c00310{letter-spacing:9.280000pt;}
.ls6_c00310{letter-spacing:11.200000pt;}
.lse_c00310{letter-spacing:12.800000pt;}
.ls3_c00310{letter-spacing:21.120000pt;}
.ls5_c00310{letter-spacing:27.328000pt;}
.ls0_c00310{letter-spacing:80.000000pt;}
.ws0_c00310{word-spacing:-64.000000pt;}
.ws4_c00310{word-spacing:-45.530880pt;}
.ws3_c00310{word-spacing:-45.440000pt;}
.ws5_c00310{word-spacing:-37.402560pt;}
.ws6_c00310{word-spacing:-16.064000pt;}
.ws2_c00310{word-spacing:-16.000000pt;}
.ws1_c00310{word-spacing:-15.680000pt;}
.ws7_c00310{word-spacing:-14.080000pt;}
.ws9_c00310{word-spacing:-9.618085pt;}
.ws8_c00310{word-spacing:-8.557536pt;}
.wsa_c00310{word-spacing:-7.826123pt;}
.ws2f_c00310{word-spacing:-1.621293pt;}
.ws30_c00310{word-spacing:-1.243403pt;}
.ws31_c00310{word-spacing:-1.170261pt;}
.ws12_c00310{word-spacing:-0.320000pt;}
.ws32_c00310{word-spacing:-0.219424pt;}
.ws11_c00310{word-spacing:-0.128000pt;}
.ws1b_c00310{word-spacing:-0.064000pt;}
.wsb_c00310{word-spacing:0.000000pt;}
.ws1e_c00310{word-spacing:0.037440pt;}
.ws26_c00310{word-spacing:0.064000pt;}
.wsd_c00310{word-spacing:0.144000pt;}
.wsc_c00310{word-spacing:0.240000pt;}
.ws18_c00310{word-spacing:0.512000pt;}
.ws17_c00310{word-spacing:0.576000pt;}
.ws1a_c00310{word-spacing:0.640000pt;}
.ws19_c00310{word-spacing:0.896000pt;}
.ws24_c00310{word-spacing:2.176000pt;}
.ws27_c00310{word-spacing:2.240000pt;}
.ws2b_c00310{word-spacing:3.776000pt;}
.ws2d_c00310{word-spacing:4.736000pt;}
.ws2c_c00310{word-spacing:4.800000pt;}
.ws1c_c00310{word-spacing:5.440000pt;}
.ws1d_c00310{word-spacing:6.336000pt;}
.ws2a_c00310{word-spacing:8.896000pt;}
.ws14_c00310{word-spacing:9.216000pt;}
.ws13_c00310{word-spacing:9.280000pt;}
.ws23_c00310{word-spacing:9.600000pt;}
.ws29_c00310{word-spacing:9.856000pt;}
.ws28_c00310{word-spacing:9.920000pt;}
.ws10_c00310{word-spacing:11.136000pt;}
.ws20_c00310{word-spacing:11.456000pt;}
.ws2e_c00310{word-spacing:12.736000pt;}
.ws1f_c00310{word-spacing:12.800000pt;}
.ws25_c00310{word-spacing:15.040000pt;}
.ws16_c00310{word-spacing:15.936000pt;}
.ws15_c00310{word-spacing:16.000000pt;}
.wsf_c00310{word-spacing:21.056000pt;}
.wse_c00310{word-spacing:21.120000pt;}
.ws22_c00310{word-spacing:25.856000pt;}
.ws21_c00310{word-spacing:25.920000pt;}
._3_c00310{margin-left:-4.499200pt;}
._8_c00310{margin-left:-1.876075pt;}
._1_c00310{margin-left:-0.940800pt;}
._0_c00310{width:1.084800pt;}
._9_c00310{width:2.034678pt;}
._6_c00310{width:9.216000pt;}
._4_c00310{width:10.419200pt;}
._7_c00310{width:12.864000pt;}
._2_c00310{width:20.953600pt;}
._5_c00310{width:25.728000pt;}
.fs5_c00310{font-size:36.570667pt;}
.fs3_c00310{font-size:37.440000pt;}
.fs2_c00310{font-size:45.440000pt;}
.fs4_c00310{font-size:46.322667pt;}
.fs0_c00310{font-size:48.000000pt;}
.fs1_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y2a_c00310{bottom:2.440825pt;}
.y27_c00310{bottom:2.441225pt;}
.y24_c00310{bottom:3.047467pt;}
.y2b_c00310{bottom:9.142400pt;}
.y29_c00310{bottom:14.628000pt;}
.y26_c00310{bottom:14.628400pt;}
.y2c_c00310{bottom:50.880000pt;}
.y22_c00310{bottom:115.760000pt;}
.y21_c00310{bottom:143.440000pt;}
.y20_c00310{bottom:171.440000pt;}
.y1f_c00310{bottom:199.040000pt;}
.y1e_c00310{bottom:226.640000pt;}
.y1d_c00310{bottom:254.240000pt;}
.y1c_c00310{bottom:281.840000pt;}
.y1b_c00310{bottom:309.600000pt;}
.y1a_c00310{bottom:337.600000pt;}
.y19_c00310{bottom:361.600000pt;}
.y23_c00310{bottom:374.932000pt;}
.y28_c00310{bottom:415.769333pt;}
.y25_c00310{bottom:440.149333pt;}
.y18_c00310{bottom:480.240000pt;}
.y17_c00310{bottom:498.640000pt;}
.y16_c00310{bottom:526.400000pt;}
.y15_c00310{bottom:554.000000pt;}
.y14_c00310{bottom:581.600000pt;}
.y13_c00310{bottom:609.200000pt;}
.y12_c00310{bottom:636.800000pt;}
.y11_c00310{bottom:664.400000pt;}
.y10_c00310{bottom:692.000000pt;}
.yf_c00310{bottom:718.720000pt;}
.ye_c00310{bottom:726.799867pt;}
.yd_c00310{bottom:759.759867pt;}
.yc_c00310{bottom:788.080000pt;}
.yb_c00310{bottom:816.640000pt;}
.ya_c00310{bottom:845.680000pt;}
.y9_c00310{bottom:873.680000pt;}
.y8_c00310{bottom:901.280000pt;}
.y7_c00310{bottom:929.040000pt;}
.y6_c00310{bottom:957.120000pt;}
.y5_c00310{bottom:1005.360000pt;}
.y4_c00310{bottom:1023.040000pt;}
.y3_c00310{bottom:1036.804000pt;}
.y2_c00310{bottom:1050.640000pt;}
.y1_c00310{bottom:1064.400000pt;}
.ha_c00310{height:14.628000pt;}
.hc_c00310{height:23.770667pt;}
.hd_c00310{height:27.195862pt;}
.hb_c00310{height:34.447960pt;}
.h3_c00310{height:47.085938pt;}
.h2_c00310{height:47.109375pt;}
.h4_c00310{height:62.812500pt;}
.h9_c00310{height:64.500000pt;}
.h8_c00310{height:66.750000pt;}
.h5_c00310{height:127.593750pt;}
.h6_c00310{height:128.032096pt;}
.h7_c00310{height:159.913750pt;}
.h0_c00310{height:1122.560000pt;}
.h1_c00310{height:1122.666667pt;}
.w4_c00310{width:51.276000pt;}
.w2_c00310{width:103.202667pt;}
.w3_c00310{width:155.129333pt;}
.w5_c00310{width:207.053333pt;}
.w0_c00310{width:793.840000pt;}
.w1_c00310{width:794.000000pt;}
.x0_c00310{left:0.000000pt;}
.x11_c00310{left:4.546374pt;}
.x10_c00310{left:9.735733pt;}
.x14_c00310{left:19.472400pt;}
.xb_c00310{left:34.401467pt;}
.x15_c00310{left:35.702534pt;}
.x9_c00310{left:48.680133pt;}
.x17_c00310{left:55.820267pt;}
.x3_c00310{left:113.440000pt;}
.x6_c00310{left:115.840000pt;}
.x4_c00310{left:137.440000pt;}
.x5_c00310{left:145.280000pt;}
.x13_c00310{left:166.014667pt;}
.xa_c00310{left:217.940000pt;}
.xf_c00310{left:269.866667pt;}
.x16_c00310{left:321.792000pt;}
.x7_c00310{left:330.000000pt;}
.xc_c00310{left:373.717333pt;}
.x2_c00310{left:377.920000pt;}
.x1_c00310{left:396.960000pt;}
.xd_c00310{left:477.569333pt;}
.x12_c00310{left:529.494667pt;}
.x18_c00310{left:581.420000pt;}
.xe_c00310{left:633.346667pt;}
.x19_c00310{left:656.480000pt;}
.x8_c00310{left:737.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_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_36013c70285913e2cccfc806.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.284180;font-style:normal;font-weight:normal;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_38d8bd72db405b810ed828d9.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00311;src:url('chunks/assets/font_45023e569c3cf0f29f076381.woff2')format("woff");}.ff4_c00311{font-family:ff4_c00311;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00311;src:url('chunks/assets/font_7cc3cb07cfed47c395c9b46d.woff2')format("woff");}.ff5_c00311{font-family:ff5_c00311;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00311;src:url('chunks/assets/font_601d924a3c083341ce12d065.woff2')format("woff");}.ff6_c00311{font-family:ff6_c00311;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.275303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275303,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275304,0.000000,0.000000,0.250000,0,0);}
.v2_c00311{vertical-align:-83.520000px;}
.v1_c00311{vertical-align:-61.938000px;}
.v3_c00311{vertical-align:-3.413261px;}
.v0_c00311{vertical-align:0.000000px;}
.v4_c00311{vertical-align:3.413261px;}
.lsf_c00311{letter-spacing:-2.037768px;}
.ls14_c00311{letter-spacing:-1.375493px;}
.lse_c00311{letter-spacing:-1.304165px;}
.ls12_c00311{letter-spacing:-1.171717px;}
.ls13_c00311{letter-spacing:-1.120772px;}
.ls17_c00311{letter-spacing:-0.662275px;}
.ls1b_c00311{letter-spacing:-0.645294px;}
.ls11_c00311{letter-spacing:-0.611330px;}
.ls10_c00311{letter-spacing:-0.380381px;}
.lsc_c00311{letter-spacing:-0.240480px;}
.lsd_c00311{letter-spacing:-0.163021px;}
.ls15_c00311{letter-spacing:-0.152833px;}
.lsb_c00311{letter-spacing:-0.120240px;}
.ls9_c00311{letter-spacing:0.000000px;}
.lsa_c00311{letter-spacing:0.072000px;}
.ls2_c00311{letter-spacing:0.217361px;}
.ls3_c00311{letter-spacing:0.326041px;}
.ls1e_c00311{letter-spacing:0.635103px;}
.ls1d_c00311{letter-spacing:0.923783px;}
.ls19_c00311{letter-spacing:1.032464px;}
.ls5_c00311{letter-spacing:1.069828px;}
.ls18_c00311{letter-spacing:1.358505px;}
.ls1c_c00311{letter-spacing:1.412845px;}
.ls8_c00311{letter-spacing:1.457001px;}
.ls16_c00311{letter-spacing:1.528326px;}
.ls1a_c00311{letter-spacing:1.575866px;}
.ls7_c00311{letter-spacing:2.608330px;}
.ls4_c00311{letter-spacing:82.835269px;}
.ls6_c00311{letter-spacing:222.116712px;}
.ls0_c00311{letter-spacing:1144.260000px;}
.ls1_c00311{letter-spacing:2082.240000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:-14.909760px;}
.ws1_c00311{word-spacing:-14.789520px;}
.ws2f_c00311{word-spacing:-13.856751px;}
.ws32_c00311{word-spacing:-13.693730px;}
.ws31_c00311{word-spacing:-12.606926px;}
.ws30_c00311{word-spacing:-12.498246px;}
.ws2_c00311{word-spacing:-10.976720px;}
.ws48_c00311{word-spacing:-3.100797px;}
.ws47_c00311{word-spacing:-2.278899px;}
.ws41_c00311{word-spacing:-1.457001px;}
.ws45_c00311{word-spacing:-1.412845px;}
.ws42_c00311{word-spacing:-1.304165px;}
.ws3e_c00311{word-spacing:-1.032464px;}
.ws46_c00311{word-spacing:-0.923783px;}
.ws3f_c00311{word-spacing:-0.326041px;}
.ws43_c00311{word-spacing:-0.322647px;}
.ws39_c00311{word-spacing:-0.217361px;}
.ws3b_c00311{word-spacing:-0.203777px;}
.ws34_c00311{word-spacing:-0.162000px;}
.ws3a_c00311{word-spacing:-0.152833px;}
.ws44_c00311{word-spacing:-0.108680px;}
.ws35_c00311{word-spacing:-0.072000px;}
.ws3d_c00311{word-spacing:-0.054340px;}
.ws33_c00311{word-spacing:0.000000px;}
.ws37_c00311{word-spacing:0.163021px;}
.ws38_c00311{word-spacing:0.978124px;}
.ws36_c00311{word-spacing:1.086804px;}
.ws40_c00311{word-spacing:1.304165px;}
.ws3c_c00311{word-spacing:2.037768px;}
.ws6_c00311{word-spacing:41.387068px;}
.ws1a_c00311{word-spacing:61.795315px;}
.ws7_c00311{word-spacing:75.321000px;}
.ws19_c00311{word-spacing:77.180463px;}
.ws8_c00311{word-spacing:87.369303px;}
.ws11_c00311{word-spacing:98.699293px;}
.ws1e_c00311{word-spacing:112.748114px;}
.ws4_c00311{word-spacing:112.748223px;}
.ws26_c00311{word-spacing:112.748659px;}
.ws15_c00311{word-spacing:112.748768px;}
.ws22_c00311{word-spacing:129.729514px;}
.wsb_c00311{word-spacing:129.729623px;}
.ws1c_c00311{word-spacing:129.730059px;}
.ws17_c00311{word-spacing:129.730168px;}
.wse_c00311{word-spacing:156.470016px;}
.wsc_c00311{word-spacing:181.688161px;}
.ws5_c00311{word-spacing:181.688229px;}
.ws2a_c00311{word-spacing:201.025813px;}
.ws2d_c00311{word-spacing:204.439075px;}
.ws9_c00311{word-spacing:214.627915px;}
.wsf_c00311{word-spacing:255.862150px;}
.ws21_c00311{word-spacing:292.037627px;}
.ws27_c00311{word-spacing:292.842545px;}
.ws12_c00311{word-spacing:307.784479px;}
.ws13_c00311{word-spacing:313.653251px;}
.ws1f_c00311{word-spacing:315.859134px;}
.ws23_c00311{word-spacing:317.041040px;}
.ws20_c00311{word-spacing:340.755565px;}
.ws25_c00311{word-spacing:344.464303px;}
.ws2e_c00311{word-spacing:350.781384px;}
.ws2b_c00311{word-spacing:350.990255px;}
.wsa_c00311{word-spacing:368.632231px;}
.ws1d_c00311{word-spacing:371.637939px;}
.ws3_c00311{word-spacing:373.232492px;}
.ws24_c00311{word-spacing:379.177681px;}
.ws1b_c00311{word-spacing:383.777942px;}
.ws29_c00311{word-spacing:386.921199px;}
.ws16_c00311{word-spacing:408.521540px;}
.ws14_c00311{word-spacing:418.419998px;}
.ws28_c00311{word-spacing:423.127242px;}
.ws2c_c00311{word-spacing:425.689735px;}
.ws18_c00311{word-spacing:459.175358px;}
.wsd_c00311{word-spacing:842.892167px;}
.ws10_c00311{word-spacing:856.494268px;}
._c_c00311{margin-left:-4.157025px;}
._3_c00311{margin-left:-2.210317px;}
._0_c00311{margin-left:-1.152000px;}
._1_c00311{width:1.052100px;}
._2_c00311{width:2.895098px;}
._6_c00311{width:75.577702px;}
._5_c00311{width:88.864352px;}
._b_c00311{width:152.998778px;}
._8_c00311{width:157.052690px;}
._9_c00311{width:167.005749px;}
._a_c00311{width:185.861884px;}
._4_c00311{width:187.049029px;}
._7_c00311{width:228.776869px;}
.fc1_c00311{color:transparent;}
.fc0_c00311{color:rgb(0,0,0);}
.fs5_c00311{font-size:37.359000px;}
.fs4_c00311{font-size:50.944200px;}
.fs0_c00311{font-size:54.000000px;}
.fs3_c00311{font-size:54.340200px;}
.fs2_c00311{font-size:60.120000px;}
.fs6_c00311{font-size:64.529400px;}
.fs1_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y3c_c00311{bottom:3.396150px;}
.y12_c00311{bottom:4.244850px;}
.y15_c00311{bottom:4.245000px;}
.y1b_c00311{bottom:4.245150px;}
.y1f_c00311{bottom:4.245300px;}
.y25_c00311{bottom:4.245450px;}
.y2a_c00311{bottom:4.245600px;}
.y2f_c00311{bottom:4.245750px;}
.y17_c00311{bottom:4.246500px;}
.y1d_c00311{bottom:4.246650px;}
.y10_c00311{bottom:6.807573px;}
.y32_c00311{bottom:13.585050px;}
.y39_c00311{bottom:14.435250px;}
.y50_c00311{bottom:14.435400px;}
.y4d_c00311{bottom:16.160908px;}
.y47_c00311{bottom:22.925850px;}
.yf_c00311{bottom:24.631158px;}
.yb_c00311{bottom:24.637829px;}
.y48_c00311{bottom:25.473150px;}
.y42_c00311{bottom:25.493743px;}
.y46_c00311{bottom:25.493762px;}
.y38_c00311{bottom:31.416750px;}
.y4c_c00311{bottom:33.984493px;}
.y37_c00311{bottom:33.984512px;}
.ya_c00311{bottom:42.461414px;}
.ye_c00311{bottom:42.468329px;}
.y3e_c00311{bottom:43.310564px;}
.y41_c00311{bottom:43.317329px;}
.y45_c00311{bottom:45.015479px;}
.y4e_c00311{bottom:50.945250px;}
.y33_c00311{bottom:51.794250px;}
.y4b_c00311{bottom:51.808079px;}
.y36_c00311{bottom:53.506229px;}
.y51_c00311{bottom:57.330000px;}
.y4f_c00311{bottom:57.737850px;}
.y9_c00311{bottom:60.285000px;}
.yd_c00311{bottom:60.291914px;}
.y3d_c00311{bottom:61.134150px;}
.y40_c00311{bottom:61.140914px;}
.y3a_c00311{bottom:61.983150px;}
.y44_c00311{bottom:62.839064px;}
.y4a_c00311{bottom:69.631664px;}
.y35_c00311{bottom:71.329814px;}
.yc_c00311{bottom:78.115500px;}
.y3f_c00311{bottom:78.964500px;}
.y43_c00311{bottom:80.662650px;}
.y49_c00311{bottom:87.455250px;}
.y34_c00311{bottom:89.153400px;}
.y7_c00311{bottom:135.270000px;}
.y30_c00311{bottom:150.726000px;}
.y2e_c00311{bottom:168.556500px;}
.y2d_c00311{bottom:186.387000px;}
.y2c_c00311{bottom:204.217500px;}
.y2b_c00311{bottom:222.048000px;}
.y29_c00311{bottom:239.878500px;}
.y28_c00311{bottom:257.709000px;}
.y27_c00311{bottom:275.539500px;}
.y26_c00311{bottom:293.370000px;}
.y24_c00311{bottom:311.200500px;}
.y23_c00311{bottom:329.031000px;}
.y22_c00311{bottom:346.861500px;}
.y21_c00311{bottom:364.692000px;}
.y20_c00311{bottom:382.522500px;}
.y1e_c00311{bottom:400.353000px;}
.y1c_c00311{bottom:418.182000px;}
.y1a_c00311{bottom:436.014000px;}
.y19_c00311{bottom:453.844500px;}
.y18_c00311{bottom:471.675000px;}
.y16_c00311{bottom:489.504000px;}
.y14_c00311{bottom:507.336000px;}
.y13_c00311{bottom:525.166500px;}
.y11_c00311{bottom:542.997000px;}
.y8_c00311{bottom:561.675000px;}
.y31_c00311{bottom:657.621000px;}
.y3b_c00311{bottom:675.451500px;}
.y6_c00311{bottom:698.940000px;}
.y5_c00311{bottom:719.640000px;}
.y4_c00311{bottom:761.220000px;}
.y3_c00311{bottom:781.105500px;}
.y2_c00311{bottom:796.590000px;}
.y1_c00311{bottom:827.640000px;}
.hb_c00311{height:16.980000px;}
.ha_c00311{height:16.981500px;}
.h8_c00311{height:17.829000px;}
.h11_c00311{height:18.679500px;}
.he_c00311{height:30.810230px;}
.hc_c00311{height:36.510000px;}
.hf_c00311{height:37.199688px;}
.h9_c00311{height:42.014040px;}
.h7_c00311{height:44.814745px;}
.h2_c00311{height:52.998047px;}
.h12_c00311{height:53.217850px;}
.h5_c00311{height:58.975137px;}
.h3_c00311{height:70.664062px;}
.h4_c00311{height:72.562500px;}
.h6_c00311{height:95.097000px;}
.hd_c00311{height:112.926000px;}
.h10_c00311{height:132.454500px;}
.h0_c00311{height:893.070000px;}
.h1_c00311{height:893.250000px;}
.w7_c00311{width:46.750500px;}
.wf_c00311{width:71.997000px;}
.we_c00311{width:72.930000px;}
.w5_c00311{width:72.931500px;}
.w6_c00311{width:73.864500px;}
.w2_c00311{width:73.866000px;}
.w10_c00311{width:74.800500px;}
.wa_c00311{width:79.476000px;}
.wb_c00311{width:86.956500px;}
.wd_c00311{width:88.825500px;}
.wc_c00311{width:93.501000px;}
.w8_c00311{width:126.226500px;}
.w4_c00311{width:148.666500px;}
.w9_c00311{width:722.763000px;}
.w3_c00311{width:1048.147500px;}
.w0_c00311{width:1262.880000px;}
.w1_c00311{width:1263.000000px;}
.x0_c00311{left:0.000000px;}
.x1d_c00311{left:1.877849px;}
.x11_c00311{left:4.675200px;}
.xc_c00311{left:7.480538px;}
.x8_c00311{left:10.292849px;}
.x15_c00311{left:12.154950px;}
.x1c_c00311{left:14.025450px;}
.x10_c00311{left:16.830750px;}
.xf_c00311{left:19.635750px;}
.x9_c00311{left:21.512924px;}
.xb_c00311{left:24.310650px;}
.xd_c00311{left:27.123149px;}
.x7_c00311{left:29.920500px;}
.x13_c00311{left:33.660450px;}
.x1a_c00311{left:35.531663px;}
.x20_c00311{left:37.400550px;}
.x23_c00311{left:40.221035px;}
.x1f_c00311{left:42.083024px;}
.x16_c00311{left:56.100450px;}
.x21_c00311{left:86.956200px;}
.x2_c00311{left:106.380000px;}
.xe_c00311{left:107.404500px;}
.x19_c00311{left:128.097750px;}
.x17_c00311{left:155.091000px;}
.x3_c00311{left:227.250000px;}
.x18_c00311{left:282.250500px;}
.x1b_c00311{left:362.662500px;}
.x1e_c00311{left:450.553500px;}
.x4_c00311{left:495.450000px;}
.x22_c00311{left:544.989000px;}
.x1_c00311{left:631.440000px;}
.x24_c00311{left:634.750500px;}
.x12_c00311{left:708.616500px;}
.x25_c00311{left:782.481000px;}
.x26_c00311{left:855.412500px;}
.x14_c00311{left:931.149000px;}
.x6_c00311{left:1005.949500px;}
.xa_c00311{left:1080.750000px;}
.x5_c00311{left:1089.540000px;}
@media print{
.v2_c00311{vertical-align:-74.240000pt;}
.v1_c00311{vertical-align:-55.056000pt;}
.v3_c00311{vertical-align:-3.034010pt;}
.v0_c00311{vertical-align:0.000000pt;}
.v4_c00311{vertical-align:3.034010pt;}
.lsf_c00311{letter-spacing:-1.811349pt;}
.ls14_c00311{letter-spacing:-1.222661pt;}
.lse_c00311{letter-spacing:-1.159258pt;}
.ls12_c00311{letter-spacing:-1.041526pt;}
.ls13_c00311{letter-spacing:-0.996242pt;}
.ls17_c00311{letter-spacing:-0.588689pt;}
.ls1b_c00311{letter-spacing:-0.573595pt;}
.ls11_c00311{letter-spacing:-0.543405pt;}
.ls10_c00311{letter-spacing:-0.338117pt;}
.lsc_c00311{letter-spacing:-0.213760pt;}
.lsd_c00311{letter-spacing:-0.144907pt;}
.ls15_c00311{letter-spacing:-0.135851pt;}
.lsb_c00311{letter-spacing:-0.106880pt;}
.ls9_c00311{letter-spacing:0.000000pt;}
.lsa_c00311{letter-spacing:0.064000pt;}
.ls2_c00311{letter-spacing:0.193210pt;}
.ls3_c00311{letter-spacing:0.289814pt;}
.ls1e_c00311{letter-spacing:0.564536pt;}
.ls1d_c00311{letter-spacing:0.821141pt;}
.ls19_c00311{letter-spacing:0.917746pt;}
.ls5_c00311{letter-spacing:0.950958pt;}
.ls18_c00311{letter-spacing:1.207560pt;}
.ls1c_c00311{letter-spacing:1.255862pt;}
.ls8_c00311{letter-spacing:1.295112pt;}
.ls16_c00311{letter-spacing:1.358512pt;}
.ls1a_c00311{letter-spacing:1.400770pt;}
.ls7_c00311{letter-spacing:2.318515pt;}
.ls4_c00311{letter-spacing:73.631350pt;}
.ls6_c00311{letter-spacing:197.437077pt;}
.ls0_c00311{letter-spacing:1017.120000pt;}
.ls1_c00311{letter-spacing:1850.880000pt;}
.ws0_c00311{word-spacing:-13.253120pt;}
.ws1_c00311{word-spacing:-13.146240pt;}
.ws2f_c00311{word-spacing:-12.317112pt;}
.ws32_c00311{word-spacing:-12.172205pt;}
.ws31_c00311{word-spacing:-11.206157pt;}
.ws30_c00311{word-spacing:-11.109552pt;}
.ws2_c00311{word-spacing:-9.757085pt;}
.ws48_c00311{word-spacing:-2.756264pt;}
.ws47_c00311{word-spacing:-2.025688pt;}
.ws41_c00311{word-spacing:-1.295112pt;}
.ws45_c00311{word-spacing:-1.255862pt;}
.ws42_c00311{word-spacing:-1.159258pt;}
.ws3e_c00311{word-spacing:-0.917746pt;}
.ws46_c00311{word-spacing:-0.821141pt;}
.ws3f_c00311{word-spacing:-0.289814pt;}
.ws43_c00311{word-spacing:-0.286797pt;}
.ws39_c00311{word-spacing:-0.193210pt;}
.ws3b_c00311{word-spacing:-0.181135pt;}
.ws34_c00311{word-spacing:-0.144000pt;}
.ws3a_c00311{word-spacing:-0.135851pt;}
.ws44_c00311{word-spacing:-0.096605pt;}
.ws35_c00311{word-spacing:-0.064000pt;}
.ws3d_c00311{word-spacing:-0.048302pt;}
.ws33_c00311{word-spacing:0.000000pt;}
.ws37_c00311{word-spacing:0.144907pt;}
.ws38_c00311{word-spacing:0.869443pt;}
.ws36_c00311{word-spacing:0.966048pt;}
.ws40_c00311{word-spacing:1.159258pt;}
.ws3c_c00311{word-spacing:1.811349pt;}
.ws6_c00311{word-spacing:36.788505pt;}
.ws1a_c00311{word-spacing:54.929169pt;}
.ws7_c00311{word-spacing:66.952000pt;}
.ws19_c00311{word-spacing:68.604856pt;}
.ws8_c00311{word-spacing:77.661603pt;}
.ws11_c00311{word-spacing:87.732705pt;}
.ws1e_c00311{word-spacing:100.220546pt;}
.ws4_c00311{word-spacing:100.220643pt;}
.ws26_c00311{word-spacing:100.221030pt;}
.ws15_c00311{word-spacing:100.221127pt;}
.ws22_c00311{word-spacing:115.315124pt;}
.wsb_c00311{word-spacing:115.315221pt;}
.ws1c_c00311{word-spacing:115.315608pt;}
.ws17_c00311{word-spacing:115.315705pt;}
.wse_c00311{word-spacing:139.084459pt;}
.wsc_c00311{word-spacing:161.500588pt;}
.ws5_c00311{word-spacing:161.500648pt;}
.ws2a_c00311{word-spacing:178.689612pt;}
.ws2d_c00311{word-spacing:181.723622pt;}
.ws9_c00311{word-spacing:190.780369pt;}
.wsf_c00311{word-spacing:227.433022pt;}
.ws21_c00311{word-spacing:259.589001pt;}
.ws27_c00311{word-spacing:260.304484pt;}
.ws12_c00311{word-spacing:273.586203pt;}
.ws13_c00311{word-spacing:278.802889pt;}
.ws1f_c00311{word-spacing:280.763675pt;}
.ws23_c00311{word-spacing:281.814258pt;}
.ws20_c00311{word-spacing:302.893836pt;}
.ws25_c00311{word-spacing:306.190491pt;}
.ws2e_c00311{word-spacing:311.805674pt;}
.ws2b_c00311{word-spacing:311.991338pt;}
.wsa_c00311{word-spacing:327.673094pt;}
.ws1d_c00311{word-spacing:330.344835pt;}
.ws3_c00311{word-spacing:331.762216pt;}
.ws24_c00311{word-spacing:337.046827pt;}
.ws1b_c00311{word-spacing:341.135948pt;}
.ws29_c00311{word-spacing:343.929955pt;}
.ws16_c00311{word-spacing:363.130258pt;}
.ws14_c00311{word-spacing:371.928887pt;}
.ws28_c00311{word-spacing:376.113104pt;}
.ws2c_c00311{word-spacing:378.390876pt;}
.ws18_c00311{word-spacing:408.155874pt;}
.wsd_c00311{word-spacing:749.237481pt;}
.ws10_c00311{word-spacing:761.328238pt;}
._c_c00311{margin-left:-3.695134pt;}
._3_c00311{margin-left:-1.964726pt;}
._0_c00311{margin-left:-1.024000pt;}
._1_c00311{width:0.935200pt;}
._2_c00311{width:2.573421pt;}
._6_c00311{width:67.180179pt;}
._5_c00311{width:78.990535pt;}
._b_c00311{width:135.998914pt;}
._8_c00311{width:139.602391pt;}
._9_c00311{width:148.449555pt;}
._a_c00311{width:165.210563pt;}
._4_c00311{width:166.265804pt;}
._7_c00311{width:203.357217pt;}
.fs5_c00311{font-size:33.208000pt;}
.fs4_c00311{font-size:45.283733pt;}
.fs0_c00311{font-size:48.000000pt;}
.fs3_c00311{font-size:48.302400pt;}
.fs2_c00311{font-size:53.440000pt;}
.fs6_c00311{font-size:57.359467pt;}
.fs1_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y3c_c00311{bottom:3.018800pt;}
.y12_c00311{bottom:3.773200pt;}
.y15_c00311{bottom:3.773333pt;}
.y1b_c00311{bottom:3.773467pt;}
.y1f_c00311{bottom:3.773600pt;}
.y25_c00311{bottom:3.773733pt;}
.y2a_c00311{bottom:3.773867pt;}
.y2f_c00311{bottom:3.774000pt;}
.y17_c00311{bottom:3.774667pt;}
.y1d_c00311{bottom:3.774800pt;}
.y10_c00311{bottom:6.051176pt;}
.y32_c00311{bottom:12.075600pt;}
.y39_c00311{bottom:12.831333pt;}
.y50_c00311{bottom:12.831467pt;}
.y4d_c00311{bottom:14.365251pt;}
.y47_c00311{bottom:20.378533pt;}
.yf_c00311{bottom:21.894363pt;}
.yb_c00311{bottom:21.900292pt;}
.y48_c00311{bottom:22.642800pt;}
.y42_c00311{bottom:22.661105pt;}
.y46_c00311{bottom:22.661122pt;}
.y38_c00311{bottom:27.926000pt;}
.y4c_c00311{bottom:30.208438pt;}
.y37_c00311{bottom:30.208455pt;}
.ya_c00311{bottom:37.743479pt;}
.ye_c00311{bottom:37.749626pt;}
.y3e_c00311{bottom:38.498279pt;}
.y41_c00311{bottom:38.504292pt;}
.y45_c00311{bottom:40.013759pt;}
.y4e_c00311{bottom:45.284667pt;}
.y33_c00311{bottom:46.039333pt;}
.y4b_c00311{bottom:46.051626pt;}
.y36_c00311{bottom:47.561092pt;}
.y51_c00311{bottom:50.960000pt;}
.y4f_c00311{bottom:51.322533pt;}
.y9_c00311{bottom:53.586667pt;}
.yd_c00311{bottom:53.592813pt;}
.y3d_c00311{bottom:54.341467pt;}
.y40_c00311{bottom:54.347479pt;}
.y3a_c00311{bottom:55.096133pt;}
.y44_c00311{bottom:55.856946pt;}
.y4a_c00311{bottom:61.894813pt;}
.y35_c00311{bottom:63.404279pt;}
.yc_c00311{bottom:69.436000pt;}
.y3f_c00311{bottom:70.190667pt;}
.y43_c00311{bottom:71.700133pt;}
.y49_c00311{bottom:77.738000pt;}
.y34_c00311{bottom:79.247467pt;}
.y7_c00311{bottom:120.240000pt;}
.y30_c00311{bottom:133.978667pt;}
.y2e_c00311{bottom:149.828000pt;}
.y2d_c00311{bottom:165.677333pt;}
.y2c_c00311{bottom:181.526667pt;}
.y2b_c00311{bottom:197.376000pt;}
.y29_c00311{bottom:213.225333pt;}
.y28_c00311{bottom:229.074667pt;}
.y27_c00311{bottom:244.924000pt;}
.y26_c00311{bottom:260.773333pt;}
.y24_c00311{bottom:276.622667pt;}
.y23_c00311{bottom:292.472000pt;}
.y22_c00311{bottom:308.321333pt;}
.y21_c00311{bottom:324.170667pt;}
.y20_c00311{bottom:340.020000pt;}
.y1e_c00311{bottom:355.869333pt;}
.y1c_c00311{bottom:371.717333pt;}
.y1a_c00311{bottom:387.568000pt;}
.y19_c00311{bottom:403.417333pt;}
.y18_c00311{bottom:419.266667pt;}
.y16_c00311{bottom:435.114667pt;}
.y14_c00311{bottom:450.965333pt;}
.y13_c00311{bottom:466.814667pt;}
.y11_c00311{bottom:482.664000pt;}
.y8_c00311{bottom:499.266667pt;}
.y31_c00311{bottom:584.552000pt;}
.y3b_c00311{bottom:600.401333pt;}
.y6_c00311{bottom:621.280000pt;}
.y5_c00311{bottom:639.680000pt;}
.y4_c00311{bottom:676.640000pt;}
.y3_c00311{bottom:694.316000pt;}
.y2_c00311{bottom:708.080000pt;}
.y1_c00311{bottom:735.680000pt;}
.hb_c00311{height:15.093333pt;}
.ha_c00311{height:15.094667pt;}
.h8_c00311{height:15.848000pt;}
.h11_c00311{height:16.604000pt;}
.he_c00311{height:27.386871pt;}
.hc_c00311{height:32.453333pt;}
.hf_c00311{height:33.066389pt;}
.h9_c00311{height:37.345813pt;}
.h7_c00311{height:39.835329pt;}
.h2_c00311{height:47.109375pt;}
.h12_c00311{height:47.304755pt;}
.h5_c00311{height:52.422344pt;}
.h3_c00311{height:62.812500pt;}
.h4_c00311{height:64.500000pt;}
.h6_c00311{height:84.530667pt;}
.hd_c00311{height:100.378667pt;}
.h10_c00311{height:117.737333pt;}
.h0_c00311{height:793.840000pt;}
.h1_c00311{height:794.000000pt;}
.w7_c00311{width:41.556000pt;}
.wf_c00311{width:63.997333pt;}
.we_c00311{width:64.826667pt;}
.w5_c00311{width:64.828000pt;}
.w6_c00311{width:65.657333pt;}
.w2_c00311{width:65.658667pt;}
.w10_c00311{width:66.489333pt;}
.wa_c00311{width:70.645333pt;}
.wb_c00311{width:77.294667pt;}
.wd_c00311{width:78.956000pt;}
.wc_c00311{width:83.112000pt;}
.w8_c00311{width:112.201333pt;}
.w4_c00311{width:132.148000pt;}
.w9_c00311{width:642.456000pt;}
.w3_c00311{width:931.686667pt;}
.w0_c00311{width:1122.560000pt;}
.w1_c00311{width:1122.666667pt;}
.x0_c00311{left:0.000000pt;}
.x1d_c00311{left:1.669199pt;}
.x11_c00311{left:4.155733pt;}
.xc_c00311{left:6.649367pt;}
.x8_c00311{left:9.149199pt;}
.x15_c00311{left:10.804400pt;}
.x1c_c00311{left:12.467067pt;}
.x10_c00311{left:14.960667pt;}
.xf_c00311{left:17.454000pt;}
.x9_c00311{left:19.122599pt;}
.xb_c00311{left:21.609467pt;}
.xd_c00311{left:24.109466pt;}
.x7_c00311{left:26.596000pt;}
.x13_c00311{left:29.920400pt;}
.x1a_c00311{left:31.583700pt;}
.x20_c00311{left:33.244933pt;}
.x23_c00311{left:35.752031pt;}
.x1f_c00311{left:37.407132pt;}
.x16_c00311{left:49.867067pt;}
.x21_c00311{left:77.294400pt;}
.x2_c00311{left:94.560000pt;}
.xe_c00311{left:95.470667pt;}
.x19_c00311{left:113.864667pt;}
.x17_c00311{left:137.858667pt;}
.x3_c00311{left:202.000000pt;}
.x18_c00311{left:250.889333pt;}
.x1b_c00311{left:322.366667pt;}
.x1e_c00311{left:400.492000pt;}
.x4_c00311{left:440.400000pt;}
.x22_c00311{left:484.434667pt;}
.x1_c00311{left:561.280000pt;}
.x24_c00311{left:564.222667pt;}
.x12_c00311{left:629.881333pt;}
.x25_c00311{left:695.538667pt;}
.x26_c00311{left:760.366667pt;}
.x14_c00311{left:827.688000pt;}
.x6_c00311{left:894.177333pt;}
.xa_c00311{left:960.666667pt;}
.x5_c00311{left:968.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_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_0befa2dd78eabf07cf59feb4.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_bb74a7636c252c994c6fb27a.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.002930;font-style:normal;font-weight:normal;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_eae90c80b709fac186ffa85f.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:0.921875;font-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_c00312{transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233491,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.233492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233492,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);}
.v1_c00312{vertical-align:-61.920000px;}
.v2_c00312{vertical-align:-3.757574px;}
.v0_c00312{vertical-align:0.000000px;}
.v3_c00312{vertical-align:3.757574px;}
.ls6_c00312{letter-spacing:-2.243328px;}
.ls7_c00312{letter-spacing:-1.514246px;}
.ls9_c00312{letter-spacing:-1.289914px;}
.lse_c00312{letter-spacing:-1.233830px;}
.lsd_c00312{letter-spacing:-0.729082px;}
.lsb_c00312{letter-spacing:-0.672998px;}
.ls8_c00312{letter-spacing:-0.418757px;}
.ls10_c00312{letter-spacing:-0.224333px;}
.lsa_c00312{letter-spacing:-0.168250px;}
.ls5_c00312{letter-spacing:-0.120240px;}
.ls3_c00312{letter-spacing:-0.108000px;}
.ls4_c00312{letter-spacing:0.000000px;}
.lsc_c00312{letter-spacing:1.177747px;}
.lsf_c00312{letter-spacing:1.682496px;}
.ls2_c00312{letter-spacing:184.681978px;}
.ls1_c00312{letter-spacing:244.522752px;}
.ls0_c00312{letter-spacing:725.580000px;}
.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;}
}
.ws0_c00312{word-spacing:-14.909760px;}
.ws4_c00312{word-spacing:-13.101106px;}
.ws2c_c00312{word-spacing:-10.431475px;}
.ws30_c00312{word-spacing:-0.729082px;}
.ws2d_c00312{word-spacing:0.000000px;}
.ws31_c00312{word-spacing:0.056083px;}
.ws2f_c00312{word-spacing:0.162000px;}
.ws2e_c00312{word-spacing:0.270000px;}
.ws1_c00312{word-spacing:68.028922px;}
.wsa_c00312{word-spacing:84.966048px;}
.wsf_c00312{word-spacing:96.182688px;}
.ws23_c00312{word-spacing:97.438952px;}
.ws6_c00312{word-spacing:108.655592px;}
.ws2a_c00312{word-spacing:144.806822px;}
.wsc_c00312{word-spacing:150.302976px;}
.ws24_c00312{word-spacing:156.023462px;}
.ws7_c00312{word-spacing:165.277190px;}
.ws10_c00312{word-spacing:172.253940px;}
.ws29_c00312{word-spacing:195.051761px;}
.ws19_c00312{word-spacing:195.057370px;}
.ws3_c00312{word-spacing:195.079803px;}
.ws2b_c00312{word-spacing:236.278522px;}
.ws13_c00312{word-spacing:284.941914px;}
.ws15_c00312{word-spacing:300.347969px;}
.ws1a_c00312{word-spacing:308.923091px;}
.ws12_c00312{word-spacing:327.615621px;}
.ws8_c00312{word-spacing:329.858949px;}
.ws11_c00312{word-spacing:335.091512px;}
.wsd_c00312{word-spacing:338.832261px;}
.ws16_c00312{word-spacing:346.313760px;}
.ws18_c00312{word-spacing:356.274136px;}
.wse_c00312{word-spacing:361.265541px;}
.ws1f_c00312{word-spacing:363.508869px;}
.ws26_c00312{word-spacing:367.636593px;}
.wsb_c00312{word-spacing:368.444191px;}
.ws22_c00312{word-spacing:370.053779px;}
.ws1e_c00312{word-spacing:378.539167px;}
.ws21_c00312{word-spacing:379.963680px;}
.ws28_c00312{word-spacing:387.888236px;}
.ws17_c00312{word-spacing:388.561235px;}
.ws27_c00312{word-spacing:413.350009px;}
.ws25_c00312{word-spacing:420.023910px;}
.ws14_c00312{word-spacing:422.104596px;}
.ws20_c00312{word-spacing:429.743128px;}
.ws2_c00312{word-spacing:438.778132px;}
.ws1d_c00312{word-spacing:448.671208px;}
.ws1b_c00312{word-spacing:449.411507px;}
.ws1c_c00312{word-spacing:472.428052px;}
.ws9_c00312{word-spacing:927.918977px;}
.ws5_c00312{word-spacing:942.893192px;}
._6_c00312{margin-left:-2.356259px;}
._1_c00312{margin-left:-1.058400px;}
._0_c00312{width:1.225800px;}
._3_c00312{width:2.586200px;}
._2_c00312{width:3.829718px;}
._7_c00312{width:168.176057px;}
._d_c00312{width:169.387584px;}
._4_c00312{width:172.512053px;}
._9_c00312{width:183.094188px;}
._5_c00312{width:231.735782px;}
._c_c00312{width:235.493357px;}
._e_c00312{width:244.532440px;}
._8_c00312{width:246.709997px;}
._a_c00312{width:260.460069px;}
._b_c00312{width:359.509373px;}
.fc0_c00312{color:rgb(0,0,0);}
.fs0_c00312{font-size:54.000000px;}
.fs3_c00312{font-size:56.083200px;}
.fs4_c00312{font-size:59.822400px;}
.fs2_c00312{font-size:60.120000px;}
.fs1_c00312{font-size:72.000000px;}
.y0_c00312{bottom:0.000000px;}
.yc_c00312{bottom:3.738900px;}
.yf_c00312{bottom:3.739050px;}
.y1c_c00312{bottom:3.739200px;}
.y8_c00312{bottom:3.739350px;}
.y9_c00312{bottom:3.739500px;}
.y19_c00312{bottom:3.739650px;}
.y16_c00312{bottom:3.739800px;}
.y12_c00312{bottom:3.739950px;}
.y13_c00312{bottom:3.740100px;}
.y2a_c00312{bottom:3.740250px;}
.y33_c00312{bottom:3.740400px;}
.y34_c00312{bottom:3.740550px;}
.ye_c00312{bottom:4.673250px;}
.yb_c00312{bottom:4.673400px;}
.y7_c00312{bottom:4.673550px;}
.y1b_c00312{bottom:4.673700px;}
.y25_c00312{bottom:4.673850px;}
.y18_c00312{bottom:4.674000px;}
.y2e_c00312{bottom:4.674150px;}
.y15_c00312{bottom:4.674300px;}
.y11_c00312{bottom:4.674450px;}
.y20_c00312{bottom:4.674600px;}
.y29_c00312{bottom:4.674750px;}
.y32_c00312{bottom:4.675050px;}
.y3d_c00312{bottom:57.330000px;}
.y5_c00312{bottom:132.930000px;}
.y3c_c00312{bottom:148.573500px;}
.y3b_c00312{bottom:168.202500px;}
.y3a_c00312{bottom:187.833000px;}
.y39_c00312{bottom:207.462000px;}
.y38_c00312{bottom:227.091000px;}
.y37_c00312{bottom:246.720000px;}
.y36_c00312{bottom:266.349000px;}
.y35_c00312{bottom:285.978000px;}
.y31_c00312{bottom:305.607000px;}
.y30_c00312{bottom:325.237500px;}
.y2f_c00312{bottom:344.866500px;}
.y2d_c00312{bottom:364.495500px;}
.y2c_c00312{bottom:384.124500px;}
.y2b_c00312{bottom:403.753500px;}
.y28_c00312{bottom:423.382500px;}
.y27_c00312{bottom:443.013000px;}
.y26_c00312{bottom:462.642000px;}
.y24_c00312{bottom:482.271000px;}
.y23_c00312{bottom:501.900000px;}
.y22_c00312{bottom:521.529000px;}
.y21_c00312{bottom:541.158000px;}
.y1f_c00312{bottom:560.787000px;}
.y1e_c00312{bottom:580.417500px;}
.y1d_c00312{bottom:600.046500px;}
.y1a_c00312{bottom:619.675500px;}
.y17_c00312{bottom:639.304500px;}
.y14_c00312{bottom:658.933500px;}
.y10_c00312{bottom:678.562500px;}
.yd_c00312{bottom:698.193000px;}
.ya_c00312{bottom:717.822000px;}
.y6_c00312{bottom:737.451000px;}
.y4_c00312{bottom:761.220000px;}
.y3_c00312{bottom:781.110000px;}
.y2_c00312{bottom:796.594500px;}
.y1_c00312{bottom:827.640000px;}
.h9_c00312{height:18.693000px;}
.h5_c00312{height:18.694500px;}
.h7_c00312{height:44.487068px;}
.h8_c00312{height:45.463978px;}
.h6_c00312{height:46.252209px;}
.h2_c00312{height:52.998047px;}
.h4_c00312{height:58.975137px;}
.h3_c00312{height:70.664062px;}
.h0_c00312{height:893.070000px;}
.h1_c00312{height:893.250000px;}
.w2_c00312{width:1048.470000px;}
.w0_c00312{width:1262.880000px;}
.w1_c00312{width:1263.000000px;}
.x0_c00312{left:0.000000px;}
.x4_c00312{left:15.714000px;}
.x2_c00312{left:106.380000px;}
.x7_c00312{left:349.199400px;}
.x5_c00312{left:353.564400px;}
.x6_c00312{left:455.705250px;}
.x1_c00312{left:631.440000px;}
.x3_c00312{left:1087.380000px;}
.x8_c00312{left:1129.590000px;}
@media print{
.v1_c00312{vertical-align:-55.040000pt;}
.v2_c00312{vertical-align:-3.340066pt;}
.v0_c00312{vertical-align:0.000000pt;}
.v3_c00312{vertical-align:3.340066pt;}
.ls6_c00312{letter-spacing:-1.994069pt;}
.ls7_c00312{letter-spacing:-1.345997pt;}
.ls9_c00312{letter-spacing:-1.146590pt;}
.lse_c00312{letter-spacing:-1.096738pt;}
.lsd_c00312{letter-spacing:-0.648073pt;}
.lsb_c00312{letter-spacing:-0.598221pt;}
.ls8_c00312{letter-spacing:-0.372228pt;}
.ls10_c00312{letter-spacing:-0.199407pt;}
.lsa_c00312{letter-spacing:-0.149555pt;}
.ls5_c00312{letter-spacing:-0.106880pt;}
.ls3_c00312{letter-spacing:-0.096000pt;}
.ls4_c00312{letter-spacing:0.000000pt;}
.lsc_c00312{letter-spacing:1.046886pt;}
.lsf_c00312{letter-spacing:1.495552pt;}
.ls2_c00312{letter-spacing:164.161758pt;}
.ls1_c00312{letter-spacing:217.353557pt;}
.ls0_c00312{letter-spacing:644.960000pt;}
.ws0_c00312{word-spacing:-13.253120pt;}
.ws4_c00312{word-spacing:-11.645427pt;}
.ws2c_c00312{word-spacing:-9.272422pt;}
.ws30_c00312{word-spacing:-0.648073pt;}
.ws2d_c00312{word-spacing:0.000000pt;}
.ws31_c00312{word-spacing:0.049852pt;}
.ws2f_c00312{word-spacing:0.144000pt;}
.ws2e_c00312{word-spacing:0.240000pt;}
.ws1_c00312{word-spacing:60.470153pt;}
.wsa_c00312{word-spacing:75.525376pt;}
.wsf_c00312{word-spacing:85.495723pt;}
.ws23_c00312{word-spacing:86.612401pt;}
.ws6_c00312{word-spacing:96.582748pt;}
.ws2a_c00312{word-spacing:128.717175pt;}
.wsc_c00312{word-spacing:133.602645pt;}
.ws24_c00312{word-spacing:138.687522pt;}
.ws7_c00312{word-spacing:146.913058pt;}
.ws10_c00312{word-spacing:153.114614pt;}
.ws29_c00312{word-spacing:173.379343pt;}
.ws19_c00312{word-spacing:173.384329pt;}
.ws3_c00312{word-spacing:173.404269pt;}
.ws2b_c00312{word-spacing:210.025353pt;}
.ws13_c00312{word-spacing:253.281702pt;}
.ws15_c00312{word-spacing:266.975973pt;}
.ws1a_c00312{word-spacing:274.598303pt;}
.ws12_c00312{word-spacing:291.213885pt;}
.ws8_c00312{word-spacing:293.207955pt;}
.ws11_c00312{word-spacing:297.859121pt;}
.wsd_c00312{word-spacing:301.184232pt;}
.ws16_c00312{word-spacing:307.834453pt;}
.ws18_c00312{word-spacing:316.688121pt;}
.wse_c00312{word-spacing:321.124925pt;}
.ws1f_c00312{word-spacing:323.118995pt;}
.ws26_c00312{word-spacing:326.788082pt;}
.wsb_c00312{word-spacing:327.505947pt;}
.ws22_c00312{word-spacing:328.936692pt;}
.ws1e_c00312{word-spacing:336.479259pt;}
.ws21_c00312{word-spacing:337.745493pt;}
.ws28_c00312{word-spacing:344.789543pt;}
.ws17_c00312{word-spacing:345.387764pt;}
.ws27_c00312{word-spacing:367.422230pt;}
.ws25_c00312{word-spacing:373.354586pt;}
.ws14_c00312{word-spacing:375.204086pt;}
.ws20_c00312{word-spacing:381.993892pt;}
.ws2_c00312{word-spacing:390.025006pt;}
.ws1d_c00312{word-spacing:398.818852pt;}
.ws1b_c00312{word-spacing:399.476895pt;}
.ws1c_c00312{word-spacing:419.936046pt;}
.ws9_c00312{word-spacing:824.816869pt;}
.ws5_c00312{word-spacing:838.127281pt;}
._6_c00312{margin-left:-2.094452pt;}
._1_c00312{margin-left:-0.940800pt;}
._0_c00312{width:1.089600pt;}
._3_c00312{width:2.298844pt;}
._2_c00312{width:3.404194pt;}
._7_c00312{width:149.489829pt;}
._d_c00312{width:150.566741pt;}
._4_c00312{width:153.344047pt;}
._9_c00312{width:162.750390pt;}
._5_c00312{width:205.987362pt;}
._c_c00312{width:209.327428pt;}
._e_c00312{width:217.362169pt;}
._8_c00312{width:219.297775pt;}
._a_c00312{width:231.520061pt;}
._b_c00312{width:319.563887pt;}
.fs0_c00312{font-size:48.000000pt;}
.fs3_c00312{font-size:49.851733pt;}
.fs4_c00312{font-size:53.175467pt;}
.fs2_c00312{font-size:53.440000pt;}
.fs1_c00312{font-size:64.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.yc_c00312{bottom:3.323467pt;}
.yf_c00312{bottom:3.323600pt;}
.y1c_c00312{bottom:3.323733pt;}
.y8_c00312{bottom:3.323867pt;}
.y9_c00312{bottom:3.324000pt;}
.y19_c00312{bottom:3.324133pt;}
.y16_c00312{bottom:3.324267pt;}
.y12_c00312{bottom:3.324400pt;}
.y13_c00312{bottom:3.324533pt;}
.y2a_c00312{bottom:3.324667pt;}
.y33_c00312{bottom:3.324800pt;}
.y34_c00312{bottom:3.324933pt;}
.ye_c00312{bottom:4.154000pt;}
.yb_c00312{bottom:4.154133pt;}
.y7_c00312{bottom:4.154267pt;}
.y1b_c00312{bottom:4.154400pt;}
.y25_c00312{bottom:4.154533pt;}
.y18_c00312{bottom:4.154667pt;}
.y2e_c00312{bottom:4.154800pt;}
.y15_c00312{bottom:4.154933pt;}
.y11_c00312{bottom:4.155067pt;}
.y20_c00312{bottom:4.155200pt;}
.y29_c00312{bottom:4.155333pt;}
.y32_c00312{bottom:4.155600pt;}
.y3d_c00312{bottom:50.960000pt;}
.y5_c00312{bottom:118.160000pt;}
.y3c_c00312{bottom:132.065333pt;}
.y3b_c00312{bottom:149.513333pt;}
.y3a_c00312{bottom:166.962667pt;}
.y39_c00312{bottom:184.410667pt;}
.y38_c00312{bottom:201.858667pt;}
.y37_c00312{bottom:219.306667pt;}
.y36_c00312{bottom:236.754667pt;}
.y35_c00312{bottom:254.202667pt;}
.y31_c00312{bottom:271.650667pt;}
.y30_c00312{bottom:289.100000pt;}
.y2f_c00312{bottom:306.548000pt;}
.y2d_c00312{bottom:323.996000pt;}
.y2c_c00312{bottom:341.444000pt;}
.y2b_c00312{bottom:358.892000pt;}
.y28_c00312{bottom:376.340000pt;}
.y27_c00312{bottom:393.789333pt;}
.y26_c00312{bottom:411.237333pt;}
.y24_c00312{bottom:428.685333pt;}
.y23_c00312{bottom:446.133333pt;}
.y22_c00312{bottom:463.581333pt;}
.y21_c00312{bottom:481.029333pt;}
.y1f_c00312{bottom:498.477333pt;}
.y1e_c00312{bottom:515.926667pt;}
.y1d_c00312{bottom:533.374667pt;}
.y1a_c00312{bottom:550.822667pt;}
.y17_c00312{bottom:568.270667pt;}
.y14_c00312{bottom:585.718667pt;}
.y10_c00312{bottom:603.166667pt;}
.yd_c00312{bottom:620.616000pt;}
.ya_c00312{bottom:638.064000pt;}
.y6_c00312{bottom:655.512000pt;}
.y4_c00312{bottom:676.640000pt;}
.y3_c00312{bottom:694.320000pt;}
.y2_c00312{bottom:708.084000pt;}
.y1_c00312{bottom:735.680000pt;}
.h9_c00312{height:16.616000pt;}
.h5_c00312{height:16.617333pt;}
.h7_c00312{height:39.544060pt;}
.h8_c00312{height:40.412424pt;}
.h6_c00312{height:41.113075pt;}
.h2_c00312{height:47.109375pt;}
.h4_c00312{height:52.422344pt;}
.h3_c00312{height:62.812500pt;}
.h0_c00312{height:793.840000pt;}
.h1_c00312{height:794.000000pt;}
.w2_c00312{width:931.973333pt;}
.w0_c00312{width:1122.560000pt;}
.w1_c00312{width:1122.666667pt;}
.x0_c00312{left:0.000000pt;}
.x4_c00312{left:13.968000pt;}
.x2_c00312{left:94.560000pt;}
.x7_c00312{left:310.399467pt;}
.x5_c00312{left:314.279467pt;}
.x6_c00312{left:405.071333pt;}
.x1_c00312{left:561.280000pt;}
.x3_c00312{left:966.560000pt;}
.x8_c00312{left:1004.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_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_9b035c5938d2df2c7eda96eb.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_982e5a69af5793453c9e99a3.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_153080393b21b807aeab046a.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.002930;font-style:normal;font-weight:normal;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_35f71614e3710ecfbe2329e0.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:0.921875;font-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_c00313{transform:matrix(0.234217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234217,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00313{vertical-align:-61.938000px;}
.v2_c00313{vertical-align:-3.745957px;}
.v0_c00313{vertical-align:0.000000px;}
.v3_c00313{vertical-align:3.745957px;}
.ls5_c00313{letter-spacing:-2.236392px;}
.ls9_c00313{letter-spacing:-1.509565px;}
.lsb_c00313{letter-spacing:-1.285925px;}
.lsd_c00313{letter-spacing:-1.230016px;}
.ls8_c00313{letter-spacing:-0.670918px;}
.ls7_c00313{letter-spacing:-0.417459px;}
.ls6_c00313{letter-spacing:-0.391369px;}
.lsa_c00313{letter-spacing:-0.167729px;}
.ls4_c00313{letter-spacing:-0.120240px;}
.ls3_c00313{letter-spacing:0.000000px;}
.lsc_c00313{letter-spacing:1.174106px;}
.lse_c00313{letter-spacing:1.677294px;}
.ls1_c00313{letter-spacing:184.110971px;}
.ls2_c00313{letter-spacing:243.766728px;}
.ls0_c00313{letter-spacing:1144.260000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:-14.909760px;}
.ws12_c00313{word-spacing:-10.399223px;}
.ws33_c00313{word-spacing:-3.130949px;}
.ws32_c00313{word-spacing:-1.285925px;}
.ws30_c00313{word-spacing:-0.162000px;}
.ws2f_c00313{word-spacing:0.000000px;}
.ws31_c00313{word-spacing:0.055910px;}
.ws1_c00313{word-spacing:67.818587px;}
.ws7_c00313{word-spacing:84.703347px;}
.ws15_c00313{word-spacing:95.885307px;}
.wsf_c00313{word-spacing:97.137687px;}
.wsd_c00313{word-spacing:108.319647px;}
.wsa_c00313{word-spacing:123.671197px;}
.ws4_c00313{word-spacing:123.671837px;}
.wse_c00313{word-spacing:142.307797px;}
.ws19_c00313{word-spacing:142.326433px;}
.ws13_c00313{word-spacing:149.838264px;}
.ws10_c00313{word-spacing:155.541064px;}
.ws8_c00313{word-spacing:164.766181px;}
.ws16_c00313{word-spacing:171.721360px;}
.ws18_c00313{word-spacing:194.448693px;}
.ws3_c00313{word-spacing:194.476648px;}
.ws1f_c00313{word-spacing:199.395029px;}
.ws5_c00313{word-spacing:199.395669px;}
.ws24_c00313{word-spacing:235.547987px;}
.ws2d_c00313{word-spacing:236.028812px;}
.ws11_c00313{word-spacing:250.475904px;}
.ws2e_c00313{word-spacing:273.326239px;}
.ws27_c00313{word-spacing:283.037772px;}
.ws1b_c00313{word-spacing:296.785991px;}
.ws25_c00313{word-spacing:319.149911px;}
.wsb_c00313{word-spacing:326.602688px;}
.ws23_c00313{word-spacing:341.513831px;}
.ws20_c00313{word-spacing:346.232618px;}
.ws2b_c00313{word-spacing:351.594368px;}
.ws1a_c00313{word-spacing:351.639096px;}
.ws9_c00313{word-spacing:351.667051px;}
.ws2a_c00313{word-spacing:356.424975px;}
.ws14_c00313{word-spacing:361.305901px;}
.ws1c_c00313{word-spacing:373.969470px;}
.ws1e_c00313{word-spacing:377.715427px;}
.ws22_c00313{word-spacing:384.676197px;}
.ws2c_c00313{word-spacing:388.891796px;}
.ws17_c00313{word-spacing:392.654525px;}
.ws28_c00313{word-spacing:407.520941px;}
.ws29_c00313{word-spacing:412.334775px;}
.ws26_c00313{word-spacing:416.936152px;}
.ws1d_c00313{word-spacing:418.714083px;}
.ws21_c00313{word-spacing:422.510359px;}
.ws2_c00313{word-spacing:430.119682px;}
.ws6_c00313{word-spacing:925.050005px;}
.wsc_c00313{word-spacing:939.977922px;}
._4_c00313{margin-left:-2.230801px;}
._5_c00313{margin-left:-1.039922px;}
._0_c00313{width:1.727613px;}
._9_c00313{width:2.796186px;}
._1_c00313{width:3.820445px;}
._7_c00313{width:157.188597px;}
._2_c00313{width:167.701501px;}
._b_c00313{width:172.515114px;}
._6_c00313{width:182.805357px;}
._12_c00313{width:183.858814px;}
._11_c00313{width:188.857713px;}
._10_c00313{width:220.530615px;}
._c_c00313{width:231.019294px;}
._a_c00313{width:234.312325px;}
._3_c00313{width:245.947210px;}
._8_c00313{width:279.504272px;}
._d_c00313{width:364.491367px;}
._e_c00313{width:385.246477px;}
._f_c00313{width:395.914067px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs0_c00313{font-size:54.000000px;}
.fs3_c00313{font-size:55.909800px;}
.fs4_c00313{font-size:59.637000px;}
.fs2_c00313{font-size:60.120000px;}
.fs1_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.y1a_c00313{bottom:4.657950px;}
.y25_c00313{bottom:4.658100px;}
.y17_c00313{bottom:4.658400px;}
.yd_c00313{bottom:4.658550px;}
.y13_c00313{bottom:4.658700px;}
.y9_c00313{bottom:4.658850px;}
.y23_c00313{bottom:4.659000px;}
.yf_c00313{bottom:4.659150px;}
.y15_c00313{bottom:4.659300px;}
.yb_c00313{bottom:4.659450px;}
.y11_c00313{bottom:4.659600px;}
.y7_c00313{bottom:4.659750px;}
.y32_c00313{bottom:4.659900px;}
.y1c_c00313{bottom:4.660050px;}
.y27_c00313{bottom:4.660200px;}
.y34_c00313{bottom:57.330000px;}
.y5_c00313{bottom:134.820000px;}
.y33_c00313{bottom:150.459000px;}
.y31_c00313{bottom:170.026500px;}
.y30_c00313{bottom:189.595500px;}
.y2f_c00313{bottom:209.163000px;}
.y2e_c00313{bottom:228.732000px;}
.y2d_c00313{bottom:248.301000px;}
.y2c_c00313{bottom:267.870000px;}
.y2b_c00313{bottom:287.437500px;}
.y2a_c00313{bottom:307.006500px;}
.y29_c00313{bottom:326.574000px;}
.y28_c00313{bottom:346.143000px;}
.y26_c00313{bottom:365.710500px;}
.y24_c00313{bottom:385.281000px;}
.y22_c00313{bottom:404.848500px;}
.y21_c00313{bottom:424.417500px;}
.y20_c00313{bottom:443.985000px;}
.y1f_c00313{bottom:463.554000px;}
.y1e_c00313{bottom:483.121500px;}
.y1d_c00313{bottom:502.690500px;}
.y1b_c00313{bottom:522.258000px;}
.y19_c00313{bottom:541.828500px;}
.y18_c00313{bottom:561.396000px;}
.y16_c00313{bottom:580.965000px;}
.y14_c00313{bottom:600.532500px;}
.y12_c00313{bottom:620.101500px;}
.y10_c00313{bottom:639.669000px;}
.ye_c00313{bottom:659.238000px;}
.yc_c00313{bottom:678.807000px;}
.ya_c00313{bottom:698.374500px;}
.y8_c00313{bottom:717.943500px;}
.y6_c00313{bottom:737.511000px;}
.y4_c00313{bottom:761.220000px;}
.y3_c00313{bottom:781.105500px;}
.y2_c00313{bottom:796.590000px;}
.y1_c00313{bottom:827.640000px;}
.h5_c00313{height:18.636000px;}
.h7_c00313{height:18.637500px;}
.h6_c00313{height:46.109205px;}
.h2_c00313{height:52.998047px;}
.h4_c00313{height:58.975137px;}
.h3_c00313{height:70.664062px;}
.h0_c00313{height:893.070000px;}
.h1_c00313{height:893.250000px;}
.w2_c00313{width:1048.470000px;}
.w0_c00313{width:1262.880000px;}
.w1_c00313{width:1263.000000px;}
.x0_c00313{left:0.000000px;}
.x4_c00313{left:15.714000px;}
.x2_c00313{left:106.380000px;}
.x1_c00313{left:631.440000px;}
.x3_c00313{left:1087.380000px;}
@media print{
.v1_c00313{vertical-align:-55.056000pt;}
.v2_c00313{vertical-align:-3.329739pt;}
.v0_c00313{vertical-align:0.000000pt;}
.v3_c00313{vertical-align:3.329739pt;}
.ls5_c00313{letter-spacing:-1.987904pt;}
.ls9_c00313{letter-spacing:-1.341835pt;}
.lsb_c00313{letter-spacing:-1.143045pt;}
.lsd_c00313{letter-spacing:-1.093347pt;}
.ls8_c00313{letter-spacing:-0.596371pt;}
.ls7_c00313{letter-spacing:-0.371075pt;}
.ls6_c00313{letter-spacing:-0.347883pt;}
.lsa_c00313{letter-spacing:-0.149093pt;}
.ls4_c00313{letter-spacing:-0.106880pt;}
.ls3_c00313{letter-spacing:0.000000pt;}
.lsc_c00313{letter-spacing:1.043650pt;}
.lse_c00313{letter-spacing:1.490928pt;}
.ls1_c00313{letter-spacing:163.654197pt;}
.ls2_c00313{letter-spacing:216.681536pt;}
.ls0_c00313{letter-spacing:1017.120000pt;}
.ws0_c00313{word-spacing:-13.253120pt;}
.ws12_c00313{word-spacing:-9.243754pt;}
.ws33_c00313{word-spacing:-2.783066pt;}
.ws32_c00313{word-spacing:-1.143045pt;}
.ws30_c00313{word-spacing:-0.144000pt;}
.ws2f_c00313{word-spacing:0.000000pt;}
.ws31_c00313{word-spacing:0.049698pt;}
.ws1_c00313{word-spacing:60.283189pt;}
.ws7_c00313{word-spacing:75.291864pt;}
.ws15_c00313{word-spacing:85.231384pt;}
.wsf_c00313{word-spacing:86.344610pt;}
.wsd_c00313{word-spacing:96.284130pt;}
.wsa_c00313{word-spacing:109.929953pt;}
.ws4_c00313{word-spacing:109.930522pt;}
.wse_c00313{word-spacing:126.495819pt;}
.ws19_c00313{word-spacing:126.512385pt;}
.ws13_c00313{word-spacing:133.189568pt;}
.ws10_c00313{word-spacing:138.258723pt;}
.ws8_c00313{word-spacing:146.458827pt;}
.ws16_c00313{word-spacing:152.641209pt;}
.ws18_c00313{word-spacing:172.843283pt;}
.ws3_c00313{word-spacing:172.868132pt;}
.ws1f_c00313{word-spacing:177.240025pt;}
.ws5_c00313{word-spacing:177.240595pt;}
.ws24_c00313{word-spacing:209.375989pt;}
.ws2d_c00313{word-spacing:209.803388pt;}
.ws11_c00313{word-spacing:222.645248pt;}
.ws2e_c00313{word-spacing:242.956657pt;}
.ws27_c00313{word-spacing:251.589130pt;}
.ws1b_c00313{word-spacing:263.809770pt;}
.ws25_c00313{word-spacing:283.688810pt;}
.wsb_c00313{word-spacing:290.313500pt;}
.ws23_c00313{word-spacing:303.567850pt;}
.ws20_c00313{word-spacing:307.762328pt;}
.ws2b_c00313{word-spacing:312.528327pt;}
.ws1a_c00313{word-spacing:312.568085pt;}
.ws9_c00313{word-spacing:312.592934pt;}
.ws2a_c00313{word-spacing:316.822200pt;}
.ws14_c00313{word-spacing:321.160800pt;}
.ws1c_c00313{word-spacing:332.417307pt;}
.ws1e_c00313{word-spacing:335.747046pt;}
.ws22_c00313{word-spacing:341.934397pt;}
.ws2c_c00313{word-spacing:345.681596pt;}
.ws17_c00313{word-spacing:349.026245pt;}
.ws28_c00313{word-spacing:362.240837pt;}
.ws29_c00313{word-spacing:366.519800pt;}
.ws26_c00313{word-spacing:370.609912pt;}
.ws1d_c00313{word-spacing:372.190296pt;}
.ws21_c00313{word-spacing:375.564763pt;}
.ws2_c00313{word-spacing:382.328607pt;}
.ws6_c00313{word-spacing:822.266671pt;}
.wsc_c00313{word-spacing:835.535930pt;}
._4_c00313{margin-left:-1.982934pt;}
._5_c00313{margin-left:-0.924375pt;}
._0_c00313{width:1.535656pt;}
._9_c00313{width:2.485499pt;}
._1_c00313{width:3.395951pt;}
._7_c00313{width:139.723197pt;}
._2_c00313{width:149.068000pt;}
._b_c00313{width:153.346768pt;}
._6_c00313{width:162.493651pt;}
._12_c00313{width:163.430057pt;}
._11_c00313{width:167.873523pt;}
._10_c00313{width:196.027213pt;}
._c_c00313{width:205.350483pt;}
._a_c00313{width:208.277623pt;}
._3_c00313{width:218.619742pt;}
._8_c00313{width:248.448242pt;}
._d_c00313{width:323.992327pt;}
._e_c00313{width:342.441313pt;}
._f_c00313{width:351.923615pt;}
.fs0_c00313{font-size:48.000000pt;}
.fs3_c00313{font-size:49.697600pt;}
.fs4_c00313{font-size:53.010667pt;}
.fs2_c00313{font-size:53.440000pt;}
.fs1_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y1a_c00313{bottom:4.140400pt;}
.y25_c00313{bottom:4.140533pt;}
.y17_c00313{bottom:4.140800pt;}
.yd_c00313{bottom:4.140933pt;}
.y13_c00313{bottom:4.141067pt;}
.y9_c00313{bottom:4.141200pt;}
.y23_c00313{bottom:4.141333pt;}
.yf_c00313{bottom:4.141467pt;}
.y15_c00313{bottom:4.141600pt;}
.yb_c00313{bottom:4.141733pt;}
.y11_c00313{bottom:4.141867pt;}
.y7_c00313{bottom:4.142000pt;}
.y32_c00313{bottom:4.142133pt;}
.y1c_c00313{bottom:4.142267pt;}
.y27_c00313{bottom:4.142400pt;}
.y34_c00313{bottom:50.960000pt;}
.y5_c00313{bottom:119.840000pt;}
.y33_c00313{bottom:133.741333pt;}
.y31_c00313{bottom:151.134667pt;}
.y30_c00313{bottom:168.529333pt;}
.y2f_c00313{bottom:185.922667pt;}
.y2e_c00313{bottom:203.317333pt;}
.y2d_c00313{bottom:220.712000pt;}
.y2c_c00313{bottom:238.106667pt;}
.y2b_c00313{bottom:255.500000pt;}
.y2a_c00313{bottom:272.894667pt;}
.y29_c00313{bottom:290.288000pt;}
.y28_c00313{bottom:307.682667pt;}
.y26_c00313{bottom:325.076000pt;}
.y24_c00313{bottom:342.472000pt;}
.y22_c00313{bottom:359.865333pt;}
.y21_c00313{bottom:377.260000pt;}
.y20_c00313{bottom:394.653333pt;}
.y1f_c00313{bottom:412.048000pt;}
.y1e_c00313{bottom:429.441333pt;}
.y1d_c00313{bottom:446.836000pt;}
.y1b_c00313{bottom:464.229333pt;}
.y19_c00313{bottom:481.625333pt;}
.y18_c00313{bottom:499.018667pt;}
.y16_c00313{bottom:516.413333pt;}
.y14_c00313{bottom:533.806667pt;}
.y12_c00313{bottom:551.201333pt;}
.y10_c00313{bottom:568.594667pt;}
.ye_c00313{bottom:585.989333pt;}
.yc_c00313{bottom:603.384000pt;}
.ya_c00313{bottom:620.777333pt;}
.y8_c00313{bottom:638.172000pt;}
.y6_c00313{bottom:655.565333pt;}
.y4_c00313{bottom:676.640000pt;}
.y3_c00313{bottom:694.316000pt;}
.y2_c00313{bottom:708.080000pt;}
.y1_c00313{bottom:735.680000pt;}
.h5_c00313{height:16.565333pt;}
.h7_c00313{height:16.566667pt;}
.h6_c00313{height:40.985960pt;}
.h2_c00313{height:47.109375pt;}
.h4_c00313{height:52.422344pt;}
.h3_c00313{height:62.812500pt;}
.h0_c00313{height:793.840000pt;}
.h1_c00313{height:794.000000pt;}
.w2_c00313{width:931.973333pt;}
.w0_c00313{width:1122.560000pt;}
.w1_c00313{width:1122.666667pt;}
.x0_c00313{left:0.000000pt;}
.x4_c00313{left:13.968000pt;}
.x2_c00313{left:94.560000pt;}
.x1_c00313{left:561.280000pt;}
.x3_c00313{left:966.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_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_b2b7d16a79e10c191d928e28.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_3e52c1b7a9c05e0de61f56b5.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.002930;font-style:normal;font-weight:normal;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_575f028c69032246567874b0.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:0.921875;font-style:normal;font-weight:normal;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_0d1a4ffb5ed32c7a7e3a2e3e.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m3_c00314{transform:matrix(0.264898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264898,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.264901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264901,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264902,0.000000,0.000000,0.250000,0,0);}
.v1_c00314{vertical-align:-61.920000px;}
.v2_c00314{vertical-align:-3.547007px;}
.v0_c00314{vertical-align:0.000000px;}
.v3_c00314{vertical-align:3.547007px;}
.ls4_c00314{letter-spacing:-2.117616px;}
.ls12_c00314{letter-spacing:-1.743516px;}
.lsc_c00314{letter-spacing:-1.482331px;}
.ls8_c00314{letter-spacing:-1.429391px;}
.ls7_c00314{letter-spacing:-1.217629px;}
.lsf_c00314{letter-spacing:-1.164689px;}
.lsb_c00314{letter-spacing:-0.688225px;}
.ls9_c00314{letter-spacing:-0.635285px;}
.ls6_c00314{letter-spacing:-0.395287px;}
.ls10_c00314{letter-spacing:-0.211762px;}
.ls5_c00314{letter-spacing:-0.158821px;}
.ls2_c00314{letter-spacing:-0.108000px;}
.ls3_c00314{letter-spacing:0.000000px;}
.lsd_c00314{letter-spacing:0.158821px;}
.ls11_c00314{letter-spacing:0.825876px;}
.lse_c00314{letter-spacing:1.111748px;}
.lsa_c00314{letter-spacing:1.588212px;}
.ls13_c00314{letter-spacing:1.789398px;}
.ls1_c00314{letter-spacing:230.820144px;}
.ls0_c00314{letter-spacing:725.580000px;}
.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;}
}
.ws3_c00314{word-spacing:-12.366842px;}
.ws33_c00314{word-spacing:-2.661156px;}
.ws31_c00314{word-spacing:-1.697634px;}
.ws2e_c00314{word-spacing:-1.217629px;}
.ws30_c00314{word-spacing:-1.164689px;}
.ws2f_c00314{word-spacing:-0.688225px;}
.ws2a_c00314{word-spacing:0.000000px;}
.ws2c_c00314{word-spacing:0.162000px;}
.ws2b_c00314{word-spacing:0.270000px;}
.ws32_c00314{word-spacing:0.871758px;}
.ws2d_c00314{word-spacing:2.117616px;}
.ws1b_c00314{word-spacing:53.628625px;}
.ws0_c00314{word-spacing:64.216705px;}
.wsa_c00314{word-spacing:80.204706px;}
.wse_c00314{word-spacing:90.792786px;}
.ws14_c00314{word-spacing:91.978651px;}
.ws5_c00314{word-spacing:102.566731px;}
.ws1e_c00314{word-spacing:136.692113px;}
.ws15_c00314{word-spacing:147.280193px;}
.wsf_c00314{word-spacing:162.601145px;}
.ws12_c00314{word-spacing:184.121417px;}
.ws2_c00314{word-spacing:184.147887px;}
.ws29_c00314{word-spacing:208.902818px;}
.ws26_c00314{word-spacing:212.449825px;}
.ws6_c00314{word-spacing:223.037905px;}
.wsb_c00314{word-spacing:273.347167px;}
.ws27_c00314{word-spacing:290.150450px;}
.ws1c_c00314{word-spacing:291.664546px;}
.ws11_c00314{word-spacing:293.956865px;}
.ws21_c00314{word-spacing:295.772721px;}
.ws25_c00314{word-spacing:298.668561px;}
.ws17_c00314{word-spacing:303.258493px;}
.ws1_c00314{word-spacing:311.374257px;}
.wsc_c00314{word-spacing:311.766016px;}
.ws24_c00314{word-spacing:328.008130px;}
.wsd_c00314{word-spacing:334.016866px;}
.ws8_c00314{word-spacing:347.061380px;}
.ws10_c00314{word-spacing:351.608961px;}
.ws13_c00314{word-spacing:352.906000px;}
.ws20_c00314{word-spacing:362.249981px;}
.ws16_c00314{word-spacing:365.728165px;}
.ws28_c00314{word-spacing:368.242834px;}
.ws1d_c00314{word-spacing:381.350877px;}
.ws1a_c00314{word-spacing:382.176748px;}
.ws1f_c00314{word-spacing:382.409685px;}
.ws18_c00314{word-spacing:393.066588px;}
.ws7_c00314{word-spacing:403.580551px;}
.ws23_c00314{word-spacing:405.872871px;}
.ws19_c00314{word-spacing:408.133426px;}
.ws22_c00314{word-spacing:417.699756px;}
.ws9_c00314{word-spacing:875.920094px;}
.ws4_c00314{word-spacing:890.055181px;}
._e_c00314{margin-left:-5.931909px;}
._c_c00314{margin-left:-4.156909px;}
._6_c00314{margin-left:-3.086425px;}
._1_c00314{margin-left:-1.058400px;}
._0_c00314{width:1.225800px;}
._3_c00314{width:2.633475px;}
._2_c00314{width:3.731213px;}
._d_c00314{width:5.746454px;}
._8_c00314{width:128.815906px;}
._b_c00314{width:129.987193px;}
._7_c00314{width:148.606820px;}
._5_c00314{width:159.194900px;}
._9_c00314{width:162.662196px;}
._4_c00314{width:173.816339px;}
._a_c00314{width:263.813692px;}
.fc0_c00314{color:rgb(0,0,0);}
.fs5_c00314{font-size:45.882000px;}
.fs3_c00314{font-size:52.940400px;}
.fs0_c00314{font-size:54.000000px;}
.fs4_c00314{font-size:56.469600px;}
.fs2_c00314{font-size:60.120000px;}
.fs1_c00314{font-size:72.000000px;}
.y0_c00314{bottom:0.000000px;}
.y27_c00314{bottom:3.528300px;}
.y30_c00314{bottom:3.528450px;}
.y1d_c00314{bottom:3.528600px;}
.y12_c00314{bottom:3.528900px;}
.y23_c00314{bottom:3.529050px;}
.y15_c00314{bottom:3.529200px;}
.y2c_c00314{bottom:3.529350px;}
.y18_c00314{bottom:3.529500px;}
.ya_c00314{bottom:3.529650px;}
.yb_c00314{bottom:3.529800px;}
.ye_c00314{bottom:3.529950px;}
.yf_c00314{bottom:3.530100px;}
.y20_c00314{bottom:3.530250px;}
.y26_c00314{bottom:4.410750px;}
.y1c_c00314{bottom:4.410900px;}
.y43_c00314{bottom:4.411050px;}
.y11_c00314{bottom:4.411200px;}
.y32_c00314{bottom:4.411350px;}
.y14_c00314{bottom:4.411500px;}
.y22_c00314{bottom:4.411650px;}
.y17_c00314{bottom:4.411800px;}
.y9_c00314{bottom:4.411950px;}
.y2e_c00314{bottom:4.412100px;}
.y1a_c00314{bottom:4.412250px;}
.yd_c00314{bottom:4.412400px;}
.y37_c00314{bottom:4.412550px;}
.y29_c00314{bottom:4.412700px;}
.y1f_c00314{bottom:4.412850px;}
.y41_c00314{bottom:5.294250px;}
.y45_c00314{bottom:57.330000px;}
.y7_c00314{bottom:133.108020px;}
.y6_c00314{bottom:150.392520px;}
.y5_c00314{bottom:164.160000px;}
.y3f_c00314{bottom:165.910500px;}
.y44_c00314{bottom:183.558000px;}
.y42_c00314{bottom:201.205500px;}
.y40_c00314{bottom:218.851500px;}
.y3e_c00314{bottom:237.381000px;}
.y3d_c00314{bottom:256.792500px;}
.y3c_c00314{bottom:275.322000px;}
.y3b_c00314{bottom:293.850000px;}
.y3a_c00314{bottom:312.379500px;}
.y39_c00314{bottom:330.909000px;}
.y38_c00314{bottom:349.438500px;}
.y36_c00314{bottom:367.966500px;}
.y35_c00314{bottom:386.497500px;}
.y34_c00314{bottom:405.025500px;}
.y33_c00314{bottom:423.555000px;}
.y31_c00314{bottom:442.084500px;}
.y2f_c00314{bottom:460.614000px;}
.y2d_c00314{bottom:479.142000px;}
.y2b_c00314{bottom:497.671500px;}
.y2a_c00314{bottom:516.201000px;}
.y28_c00314{bottom:534.729000px;}
.y25_c00314{bottom:553.260000px;}
.y24_c00314{bottom:571.788000px;}
.y21_c00314{bottom:590.317500px;}
.y1e_c00314{bottom:608.845500px;}
.y1b_c00314{bottom:627.376500px;}
.y19_c00314{bottom:645.904500px;}
.y16_c00314{bottom:664.434000px;}
.y13_c00314{bottom:682.963500px;}
.y10_c00314{bottom:701.493000px;}
.yc_c00314{bottom:720.021000px;}
.y8_c00314{bottom:738.550500px;}
.y4_c00314{bottom:761.220000px;}
.y3_c00314{bottom:781.110000px;}
.y2_c00314{bottom:796.594500px;}
.y1_c00314{bottom:827.640000px;}
.hc_c00314{height:16.764000px;}
.h5_c00314{height:17.646000px;}
.h9_c00314{height:17.647500px;}
.ha_c00314{height:18.528000px;}
.hb_c00314{height:39.369253px;}
.h7_c00314{height:41.993750px;}
.h8_c00314{height:42.916259px;}
.h6_c00314{height:43.660320px;}
.hd_c00314{height:45.030674px;}
.he_c00314{height:46.240453px;}
.h2_c00314{height:52.998047px;}
.h4_c00314{height:58.975137px;}
.h3_c00314{height:70.664062px;}
.h0_c00314{height:893.070000px;}
.h1_c00314{height:893.250000px;}
.w3_c00314{width:999.439500px;}
.w2_c00314{width:1048.056000px;}
.w0_c00314{width:1262.880000px;}
.w1_c00314{width:1263.000000px;}
.x0_c00314{left:0.000000px;}
.xb_c00314{left:1.869750px;}
.x9_c00314{left:13.087950px;}
.x5_c00314{left:16.827600px;}
.x2_c00314{left:106.380000px;}
.x4_c00314{left:107.586000px;}
.xa_c00314{left:155.266500px;}
.x8_c00314{left:373.971000px;}
.x6_c00314{left:378.645600px;}
.x7_c00314{left:488.032350px;}
.x1_c00314{left:631.440000px;}
.xc_c00314{left:1129.590000px;}
.x3_c00314{left:1156.590000px;}
@media print{
.v1_c00314{vertical-align:-55.040000pt;}
.v2_c00314{vertical-align:-3.152895pt;}
.v0_c00314{vertical-align:0.000000pt;}
.v3_c00314{vertical-align:3.152895pt;}
.ls4_c00314{letter-spacing:-1.882325pt;}
.ls12_c00314{letter-spacing:-1.549792pt;}
.lsc_c00314{letter-spacing:-1.317628pt;}
.ls8_c00314{letter-spacing:-1.270570pt;}
.ls7_c00314{letter-spacing:-1.082337pt;}
.lsf_c00314{letter-spacing:-1.035279pt;}
.lsb_c00314{letter-spacing:-0.611756pt;}
.ls9_c00314{letter-spacing:-0.564698pt;}
.ls6_c00314{letter-spacing:-0.351366pt;}
.ls10_c00314{letter-spacing:-0.188233pt;}
.ls5_c00314{letter-spacing:-0.141174pt;}
.ls2_c00314{letter-spacing:-0.096000pt;}
.ls3_c00314{letter-spacing:0.000000pt;}
.lsd_c00314{letter-spacing:0.141174pt;}
.ls11_c00314{letter-spacing:0.734112pt;}
.lse_c00314{letter-spacing:0.988221pt;}
.lsa_c00314{letter-spacing:1.411744pt;}
.ls13_c00314{letter-spacing:1.590576pt;}
.ls1_c00314{letter-spacing:205.173461pt;}
.ls0_c00314{letter-spacing:644.960000pt;}
.ws3_c00314{word-spacing:-10.992749pt;}
.ws33_c00314{word-spacing:-2.365472pt;}
.ws31_c00314{word-spacing:-1.509008pt;}
.ws2e_c00314{word-spacing:-1.082337pt;}
.ws30_c00314{word-spacing:-1.035279pt;}
.ws2f_c00314{word-spacing:-0.611756pt;}
.ws2a_c00314{word-spacing:0.000000pt;}
.ws2c_c00314{word-spacing:0.144000pt;}
.ws2b_c00314{word-spacing:0.240000pt;}
.ws32_c00314{word-spacing:0.774896pt;}
.ws2d_c00314{word-spacing:1.882325pt;}
.ws1b_c00314{word-spacing:47.669889pt;}
.ws0_c00314{word-spacing:57.081516pt;}
.wsa_c00314{word-spacing:71.293072pt;}
.wse_c00314{word-spacing:80.704699pt;}
.ws14_c00314{word-spacing:81.758801pt;}
.ws5_c00314{word-spacing:91.170428pt;}
.ws1e_c00314{word-spacing:121.504100pt;}
.ws15_c00314{word-spacing:130.915727pt;}
.wsf_c00314{word-spacing:144.534351pt;}
.ws12_c00314{word-spacing:163.663482pt;}
.ws2_c00314{word-spacing:163.687011pt;}
.ws29_c00314{word-spacing:185.691394pt;}
.ws26_c00314{word-spacing:188.844289pt;}
.ws6_c00314{word-spacing:198.255916pt;}
.wsb_c00314{word-spacing:242.975260pt;}
.ws27_c00314{word-spacing:257.911511pt;}
.ws1c_c00314{word-spacing:259.257374pt;}
.ws11_c00314{word-spacing:261.294991pt;}
.ws21_c00314{word-spacing:262.909085pt;}
.ws25_c00314{word-spacing:265.483165pt;}
.ws17_c00314{word-spacing:269.563105pt;}
.ws1_c00314{word-spacing:276.777117pt;}
.wsc_c00314{word-spacing:277.125347pt;}
.ws24_c00314{word-spacing:291.562783pt;}
.wsd_c00314{word-spacing:296.903881pt;}
.ws8_c00314{word-spacing:308.499005pt;}
.ws10_c00314{word-spacing:312.541298pt;}
.ws13_c00314{word-spacing:313.694223pt;}
.ws20_c00314{word-spacing:321.999983pt;}
.ws16_c00314{word-spacing:325.091703pt;}
.ws28_c00314{word-spacing:327.326964pt;}
.ws1d_c00314{word-spacing:338.978558pt;}
.ws1a_c00314{word-spacing:339.712665pt;}
.ws1f_c00314{word-spacing:339.919720pt;}
.ws18_c00314{word-spacing:349.392523pt;}
.ws7_c00314{word-spacing:358.738268pt;}
.ws23_c00314{word-spacing:360.775885pt;}
.ws19_c00314{word-spacing:362.785267pt;}
.ws22_c00314{word-spacing:371.288672pt;}
.ws9_c00314{word-spacing:778.595639pt;}
.ws4_c00314{word-spacing:791.160161pt;}
._e_c00314{margin-left:-5.272808pt;}
._c_c00314{margin-left:-3.695030pt;}
._6_c00314{margin-left:-2.743489pt;}
._1_c00314{margin-left:-0.940800pt;}
._0_c00314{width:1.089600pt;}
._3_c00314{width:2.340867pt;}
._2_c00314{width:3.316634pt;}
._d_c00314{width:5.107959pt;}
._8_c00314{width:114.503028pt;}
._b_c00314{width:115.544172pt;}
._7_c00314{width:132.094951pt;}
._5_c00314{width:141.506577pt;}
._9_c00314{width:144.588619pt;}
._4_c00314{width:154.503412pt;}
._a_c00314{width:234.501059pt;}
.fs5_c00314{font-size:40.784000pt;}
.fs3_c00314{font-size:47.058133pt;}
.fs0_c00314{font-size:48.000000pt;}
.fs4_c00314{font-size:50.195200pt;}
.fs2_c00314{font-size:53.440000pt;}
.fs1_c00314{font-size:64.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y27_c00314{bottom:3.136267pt;}
.y30_c00314{bottom:3.136400pt;}
.y1d_c00314{bottom:3.136533pt;}
.y12_c00314{bottom:3.136800pt;}
.y23_c00314{bottom:3.136933pt;}
.y15_c00314{bottom:3.137067pt;}
.y2c_c00314{bottom:3.137200pt;}
.y18_c00314{bottom:3.137333pt;}
.ya_c00314{bottom:3.137467pt;}
.yb_c00314{bottom:3.137600pt;}
.ye_c00314{bottom:3.137733pt;}
.yf_c00314{bottom:3.137867pt;}
.y20_c00314{bottom:3.138000pt;}
.y26_c00314{bottom:3.920667pt;}
.y1c_c00314{bottom:3.920800pt;}
.y43_c00314{bottom:3.920933pt;}
.y11_c00314{bottom:3.921067pt;}
.y32_c00314{bottom:3.921200pt;}
.y14_c00314{bottom:3.921333pt;}
.y22_c00314{bottom:3.921467pt;}
.y17_c00314{bottom:3.921600pt;}
.y9_c00314{bottom:3.921733pt;}
.y2e_c00314{bottom:3.921867pt;}
.y1a_c00314{bottom:3.922000pt;}
.yd_c00314{bottom:3.922133pt;}
.y37_c00314{bottom:3.922267pt;}
.y29_c00314{bottom:3.922400pt;}
.y1f_c00314{bottom:3.922533pt;}
.y41_c00314{bottom:4.706000pt;}
.y45_c00314{bottom:50.960000pt;}
.y7_c00314{bottom:118.318240pt;}
.y6_c00314{bottom:133.682240pt;}
.y5_c00314{bottom:145.920000pt;}
.y3f_c00314{bottom:147.476000pt;}
.y44_c00314{bottom:163.162667pt;}
.y42_c00314{bottom:178.849333pt;}
.y40_c00314{bottom:194.534667pt;}
.y3e_c00314{bottom:211.005333pt;}
.y3d_c00314{bottom:228.260000pt;}
.y3c_c00314{bottom:244.730667pt;}
.y3b_c00314{bottom:261.200000pt;}
.y3a_c00314{bottom:277.670667pt;}
.y39_c00314{bottom:294.141333pt;}
.y38_c00314{bottom:310.612000pt;}
.y36_c00314{bottom:327.081333pt;}
.y35_c00314{bottom:343.553333pt;}
.y34_c00314{bottom:360.022667pt;}
.y33_c00314{bottom:376.493333pt;}
.y31_c00314{bottom:392.964000pt;}
.y2f_c00314{bottom:409.434667pt;}
.y2d_c00314{bottom:425.904000pt;}
.y2b_c00314{bottom:442.374667pt;}
.y2a_c00314{bottom:458.845333pt;}
.y28_c00314{bottom:475.314667pt;}
.y25_c00314{bottom:491.786667pt;}
.y24_c00314{bottom:508.256000pt;}
.y21_c00314{bottom:524.726667pt;}
.y1e_c00314{bottom:541.196000pt;}
.y1b_c00314{bottom:557.668000pt;}
.y19_c00314{bottom:574.137333pt;}
.y16_c00314{bottom:590.608000pt;}
.y13_c00314{bottom:607.078667pt;}
.y10_c00314{bottom:623.549333pt;}
.yc_c00314{bottom:640.018667pt;}
.y8_c00314{bottom:656.489333pt;}
.y4_c00314{bottom:676.640000pt;}
.y3_c00314{bottom:694.320000pt;}
.y2_c00314{bottom:708.084000pt;}
.y1_c00314{bottom:735.680000pt;}
.hc_c00314{height:14.901333pt;}
.h5_c00314{height:15.685333pt;}
.h9_c00314{height:15.686667pt;}
.ha_c00314{height:16.469333pt;}
.hb_c00314{height:34.994891pt;}
.h7_c00314{height:37.327778pt;}
.h8_c00314{height:38.147786pt;}
.h6_c00314{height:38.809173pt;}
.hd_c00314{height:40.027266pt;}
.he_c00314{height:41.102625pt;}
.h2_c00314{height:47.109375pt;}
.h4_c00314{height:52.422344pt;}
.h3_c00314{height:62.812500pt;}
.h0_c00314{height:793.840000pt;}
.h1_c00314{height:794.000000pt;}
.w3_c00314{width:888.390667pt;}
.w2_c00314{width:931.605333pt;}
.w0_c00314{width:1122.560000pt;}
.w1_c00314{width:1122.666667pt;}
.x0_c00314{left:0.000000pt;}
.xb_c00314{left:1.662000pt;}
.x9_c00314{left:11.633733pt;}
.x5_c00314{left:14.957867pt;}
.x2_c00314{left:94.560000pt;}
.x4_c00314{left:95.632000pt;}
.xa_c00314{left:138.014667pt;}
.x8_c00314{left:332.418667pt;}
.x6_c00314{left:336.573867pt;}
.x7_c00314{left:433.806533pt;}
.x1_c00314{left:561.280000pt;}
.xc_c00314{left:1004.080000pt;}
.x3_c00314{left:1028.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_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_d4dfd604b8d3bbb6ff90988e.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_0ff5229ffc1220d91b13b8cf.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;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_c00315;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00315;src:url('chunks/assets/font_d54f85a29c35f870560df7de.woff2')format("woff");}.ff5_c00315{font-family:ff5_c00315;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00315;src:url('chunks/assets/font_a8e2f0e2a68087e15e61723d.woff2')format("woff");}.ff6_c00315{font-family:ff6_c00315;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00315;src:url('chunks/assets/font_2f044109e88091b10fc28ae6.woff2')format("woff");}.ff7_c00315{font-family:ff7_c00315;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:ff8_c00315;src:url('chunks/assets/font_94d5b87e782509eaeca92df6.woff2')format("woff");}.ff8_c00315{font-family:ff8_c00315;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00315{vertical-align:-61.938000px;}
.v4_c00315{vertical-align:-10.800000px;}
.v0_c00315{vertical-align:0.000000px;}
.v6_c00315{vertical-align:26.280000px;}
.v3_c00315{vertical-align:31.320000px;}
.v5_c00315{vertical-align:36.360000px;}
.v2_c00315{vertical-align:42.120000px;}
.ls14_c00315{letter-spacing:-0.288000px;}
.ls17_c00315{letter-spacing:-0.216000px;}
.ls16_c00315{letter-spacing:-0.144000px;}
.ls12_c00315{letter-spacing:-0.102240px;}
.ls15_c00315{letter-spacing:-0.072000px;}
.lsf_c00315{letter-spacing:-0.042120px;}
.lse_c00315{letter-spacing:0.000000px;}
.ls1_c00315{letter-spacing:0.072000px;}
.ls10_c00315{letter-spacing:0.102240px;}
.ls11_c00315{letter-spacing:0.144000px;}
.ls13_c00315{letter-spacing:0.360000px;}
.ls3_c00315{letter-spacing:0.720000px;}
.lsd_c00315{letter-spacing:1.800000px;}
.ls6_c00315{letter-spacing:2.016000px;}
.ls7_c00315{letter-spacing:3.161520px;}
.ls5_c00315{letter-spacing:6.480000px;}
.ls8_c00315{letter-spacing:8.280000px;}
.lsa_c00315{letter-spacing:9.000000px;}
.lsc_c00315{letter-spacing:10.800000px;}
.ls4_c00315{letter-spacing:18.000000px;}
.lsb_c00315{letter-spacing:23.760000px;}
.ls9_c00315{letter-spacing:23.904000px;}
.ls2_c00315{letter-spacing:30.744000px;}
.ls0_c00315{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00315{word-spacing:-72.000000px;}
.ws1_c00315{word-spacing:-51.222240px;}
.ws0_c00315{word-spacing:-51.120000px;}
.ws4_c00315{word-spacing:-51.017760px;}
.ws2_c00315{word-spacing:-42.077880px;}
.ws9_c00315{word-spacing:-18.144000px;}
.ws5_c00315{word-spacing:-18.072000px;}
.wsa_c00315{word-spacing:-18.000000px;}
.ws7_c00315{word-spacing:-17.856000px;}
.ws8_c00315{word-spacing:-17.784000px;}
.ws6_c00315{word-spacing:-17.712000px;}
.ws1e_c00315{word-spacing:-0.504000px;}
.ws19_c00315{word-spacing:-0.432000px;}
.ws14_c00315{word-spacing:-0.360000px;}
.wsc_c00315{word-spacing:-0.162000px;}
.ws20_c00315{word-spacing:-0.144000px;}
.ws16_c00315{word-spacing:-0.072000px;}
.wsb_c00315{word-spacing:0.000000px;}
.ws11_c00315{word-spacing:0.042120px;}
.ws1f_c00315{word-spacing:0.072000px;}
.ws1a_c00315{word-spacing:0.288000px;}
.ws28_c00315{word-spacing:1.800000px;}
.wse_c00315{word-spacing:3.528000px;}
.wsd_c00315{word-spacing:3.600000px;}
.ws25_c00315{word-spacing:3.960000px;}
.ws23_c00315{word-spacing:7.200000px;}
.ws15_c00315{word-spacing:8.280000px;}
.ws29_c00315{word-spacing:8.928000px;}
.ws1c_c00315{word-spacing:9.000000px;}
.ws1d_c00315{word-spacing:9.288000px;}
.ws26_c00315{word-spacing:10.728000px;}
.ws27_c00315{word-spacing:10.800000px;}
.ws12_c00315{word-spacing:11.016000px;}
.ws13_c00315{word-spacing:11.448000px;}
.ws24_c00315{word-spacing:12.888000px;}
.ws1b_c00315{word-spacing:15.768000px;}
.ws17_c00315{word-spacing:16.848000px;}
.ws18_c00315{word-spacing:16.920000px;}
.wsf_c00315{word-spacing:17.640000px;}
.ws10_c00315{word-spacing:18.000000px;}
.ws22_c00315{word-spacing:19.080000px;}
.ws21_c00315{word-spacing:23.760000px;}
._0_c00315{margin-left:-1.152000px;}
._1_c00315{width:1.008000px;}
._2_c00315{width:3.057480px;}
._5_c00315{width:19.152000px;}
._6_c00315{width:20.160000px;}
._3_c00315{width:23.400000px;}
._4_c00315{width:24.696000px;}
.fc0_c00315{color:rgb(0,0,0);}
.fs3_c00315{font-size:42.120000px;}
.fs2_c00315{font-size:51.120000px;}
.fs0_c00315{font-size:54.000000px;}
.fs1_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y27_c00315{bottom:57.240000px;}
.y26_c00315{bottom:136.800000px;}
.y25_c00315{bottom:167.850000px;}
.y24_c00315{bottom:198.900000px;}
.y23_c00315{bottom:229.950000px;}
.y22_c00315{bottom:261.000000px;}
.y21_c00315{bottom:292.050000px;}
.y20_c00315{bottom:323.100000px;}
.y1f_c00315{bottom:354.150000px;}
.y1e_c00315{bottom:385.200000px;}
.y1d_c00315{bottom:416.250000px;}
.y1c_c00315{bottom:447.300000px;}
.y1b_c00315{bottom:478.350000px;}
.y1a_c00315{bottom:509.400000px;}
.y19_c00315{bottom:540.450000px;}
.y18_c00315{bottom:571.320000px;}
.y17_c00315{bottom:602.370000px;}
.y16_c00315{bottom:633.600000px;}
.y15_c00315{bottom:664.650000px;}
.y14_c00315{bottom:695.700000px;}
.y13_c00315{bottom:726.750000px;}
.y12_c00315{bottom:757.800000px;}
.y11_c00315{bottom:788.850000px;}
.y10_c00315{bottom:819.900000px;}
.yf_c00315{bottom:850.950000px;}
.ye_c00315{bottom:882.000000px;}
.yd_c00315{bottom:913.050000px;}
.yc_c00315{bottom:944.100000px;}
.yb_c00315{bottom:974.160000px;}
.ya_c00315{bottom:983.250000px;}
.y9_c00315{bottom:1019.160000px;}
.y8_c00315{bottom:1028.250000px;}
.y7_c00315{bottom:1064.250000px;}
.y6_c00315{bottom:1073.340000px;}
.y5_c00315{bottom:1110.330000px;}
.y4_c00315{bottom:1131.030000px;}
.y3_c00315{bottom:1150.915500px;}
.y2_c00315{bottom:1166.400000px;}
.y1_c00315{bottom:1197.450000px;}
.h8_c00315{height:50.027344px;}
.h2_c00315{height:52.998047px;}
.h3_c00315{height:70.664062px;}
.h7_c00315{height:72.562500px;}
.h4_c00315{height:75.093750px;}
.h5_c00315{height:144.035508px;}
.h6_c00315{height:179.902969px;}
.h0_c00315{height:1262.880000px;}
.h1_c00315{height:1263.000000px;}
.w0_c00315{width:893.070000px;}
.w1_c00315{width:893.250000px;}
.x0_c00315{left:0.000000px;}
.x2_c00315{left:127.620000px;}
.x3_c00315{left:154.620000px;}
.x7_c00315{left:181.620000px;}
.x5_c00315{left:315.000000px;}
.x1_c00315{left:446.580000px;}
.x4_c00315{left:658.710000px;}
.x6_c00315{left:676.980000px;}
@media print{
.v1_c00315{vertical-align:-55.056000pt;}
.v4_c00315{vertical-align:-9.600000pt;}
.v0_c00315{vertical-align:0.000000pt;}
.v6_c00315{vertical-align:23.360000pt;}
.v3_c00315{vertical-align:27.840000pt;}
.v5_c00315{vertical-align:32.320000pt;}
.v2_c00315{vertical-align:37.440000pt;}
.ls14_c00315{letter-spacing:-0.256000pt;}
.ls17_c00315{letter-spacing:-0.192000pt;}
.ls16_c00315{letter-spacing:-0.128000pt;}
.ls12_c00315{letter-spacing:-0.090880pt;}
.ls15_c00315{letter-spacing:-0.064000pt;}
.lsf_c00315{letter-spacing:-0.037440pt;}
.lse_c00315{letter-spacing:0.000000pt;}
.ls1_c00315{letter-spacing:0.064000pt;}
.ls10_c00315{letter-spacing:0.090880pt;}
.ls11_c00315{letter-spacing:0.128000pt;}
.ls13_c00315{letter-spacing:0.320000pt;}
.ls3_c00315{letter-spacing:0.640000pt;}
.lsd_c00315{letter-spacing:1.600000pt;}
.ls6_c00315{letter-spacing:1.792000pt;}
.ls7_c00315{letter-spacing:2.810240pt;}
.ls5_c00315{letter-spacing:5.760000pt;}
.ls8_c00315{letter-spacing:7.360000pt;}
.lsa_c00315{letter-spacing:8.000000pt;}
.lsc_c00315{letter-spacing:9.600000pt;}
.ls4_c00315{letter-spacing:16.000000pt;}
.lsb_c00315{letter-spacing:21.120000pt;}
.ls9_c00315{letter-spacing:21.248000pt;}
.ls2_c00315{letter-spacing:27.328000pt;}
.ls0_c00315{letter-spacing:284.016000pt;}
.ws3_c00315{word-spacing:-64.000000pt;}
.ws1_c00315{word-spacing:-45.530880pt;}
.ws0_c00315{word-spacing:-45.440000pt;}
.ws4_c00315{word-spacing:-45.349120pt;}
.ws2_c00315{word-spacing:-37.402560pt;}
.ws9_c00315{word-spacing:-16.128000pt;}
.ws5_c00315{word-spacing:-16.064000pt;}
.wsa_c00315{word-spacing:-16.000000pt;}
.ws7_c00315{word-spacing:-15.872000pt;}
.ws8_c00315{word-spacing:-15.808000pt;}
.ws6_c00315{word-spacing:-15.744000pt;}
.ws1e_c00315{word-spacing:-0.448000pt;}
.ws19_c00315{word-spacing:-0.384000pt;}
.ws14_c00315{word-spacing:-0.320000pt;}
.wsc_c00315{word-spacing:-0.144000pt;}
.ws20_c00315{word-spacing:-0.128000pt;}
.ws16_c00315{word-spacing:-0.064000pt;}
.wsb_c00315{word-spacing:0.000000pt;}
.ws11_c00315{word-spacing:0.037440pt;}
.ws1f_c00315{word-spacing:0.064000pt;}
.ws1a_c00315{word-spacing:0.256000pt;}
.ws28_c00315{word-spacing:1.600000pt;}
.wse_c00315{word-spacing:3.136000pt;}
.wsd_c00315{word-spacing:3.200000pt;}
.ws25_c00315{word-spacing:3.520000pt;}
.ws23_c00315{word-spacing:6.400000pt;}
.ws15_c00315{word-spacing:7.360000pt;}
.ws29_c00315{word-spacing:7.936000pt;}
.ws1c_c00315{word-spacing:8.000000pt;}
.ws1d_c00315{word-spacing:8.256000pt;}
.ws26_c00315{word-spacing:9.536000pt;}
.ws27_c00315{word-spacing:9.600000pt;}
.ws12_c00315{word-spacing:9.792000pt;}
.ws13_c00315{word-spacing:10.176000pt;}
.ws24_c00315{word-spacing:11.456000pt;}
.ws1b_c00315{word-spacing:14.016000pt;}
.ws17_c00315{word-spacing:14.976000pt;}
.ws18_c00315{word-spacing:15.040000pt;}
.wsf_c00315{word-spacing:15.680000pt;}
.ws10_c00315{word-spacing:16.000000pt;}
.ws22_c00315{word-spacing:16.960000pt;}
.ws21_c00315{word-spacing:21.120000pt;}
._0_c00315{margin-left:-1.024000pt;}
._1_c00315{width:0.896000pt;}
._2_c00315{width:2.717760pt;}
._5_c00315{width:17.024000pt;}
._6_c00315{width:17.920000pt;}
._3_c00315{width:20.800000pt;}
._4_c00315{width:21.952000pt;}
.fs3_c00315{font-size:37.440000pt;}
.fs2_c00315{font-size:45.440000pt;}
.fs0_c00315{font-size:48.000000pt;}
.fs1_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y27_c00315{bottom:50.880000pt;}
.y26_c00315{bottom:121.600000pt;}
.y25_c00315{bottom:149.200000pt;}
.y24_c00315{bottom:176.800000pt;}
.y23_c00315{bottom:204.400000pt;}
.y22_c00315{bottom:232.000000pt;}
.y21_c00315{bottom:259.600000pt;}
.y20_c00315{bottom:287.200000pt;}
.y1f_c00315{bottom:314.800000pt;}
.y1e_c00315{bottom:342.400000pt;}
.y1d_c00315{bottom:370.000000pt;}
.y1c_c00315{bottom:397.600000pt;}
.y1b_c00315{bottom:425.200000pt;}
.y1a_c00315{bottom:452.800000pt;}
.y19_c00315{bottom:480.400000pt;}
.y18_c00315{bottom:507.840000pt;}
.y17_c00315{bottom:535.440000pt;}
.y16_c00315{bottom:563.200000pt;}
.y15_c00315{bottom:590.800000pt;}
.y14_c00315{bottom:618.400000pt;}
.y13_c00315{bottom:646.000000pt;}
.y12_c00315{bottom:673.600000pt;}
.y11_c00315{bottom:701.200000pt;}
.y10_c00315{bottom:728.800000pt;}
.yf_c00315{bottom:756.400000pt;}
.ye_c00315{bottom:784.000000pt;}
.yd_c00315{bottom:811.600000pt;}
.yc_c00315{bottom:839.200000pt;}
.yb_c00315{bottom:865.920000pt;}
.ya_c00315{bottom:874.000000pt;}
.y9_c00315{bottom:905.920000pt;}
.y8_c00315{bottom:914.000000pt;}
.y7_c00315{bottom:946.000000pt;}
.y6_c00315{bottom:954.080000pt;}
.y5_c00315{bottom:986.960000pt;}
.y4_c00315{bottom:1005.360000pt;}
.y3_c00315{bottom:1023.036000pt;}
.y2_c00315{bottom:1036.800000pt;}
.y1_c00315{bottom:1064.400000pt;}
.h8_c00315{height:44.468750pt;}
.h2_c00315{height:47.109375pt;}
.h3_c00315{height:62.812500pt;}
.h7_c00315{height:64.500000pt;}
.h4_c00315{height:66.750000pt;}
.h5_c00315{height:128.031563pt;}
.h6_c00315{height:159.913750pt;}
.h0_c00315{height:1122.560000pt;}
.h1_c00315{height:1122.666667pt;}
.w0_c00315{width:793.840000pt;}
.w1_c00315{width:794.000000pt;}
.x0_c00315{left:0.000000pt;}
.x2_c00315{left:113.440000pt;}
.x3_c00315{left:137.440000pt;}
.x7_c00315{left:161.440000pt;}
.x5_c00315{left:280.000000pt;}
.x1_c00315{left:396.960000pt;}
.x4_c00315{left:585.520000pt;}
.x6_c00315{left:601.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_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_c77e89528e3c122353cf6bfc.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_887df0ac21dad27f0934faa7.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;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_c00316;src:url('chunks/assets/font_73aa6311faf870ab61caab19.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00316{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8_c00316{vertical-align:-20.880000px;}
.v6_c00316{vertical-align:-14.760000px;}
.v3_c00316{vertical-align:-10.800000px;}
.v0_c00316{vertical-align:0.000000px;}
.v7_c00316{vertical-align:14.760000px;}
.v5_c00316{vertical-align:27.000000px;}
.v2_c00316{vertical-align:31.320000px;}
.v4_c00316{vertical-align:36.360000px;}
.v1_c00316{vertical-align:42.120000px;}
.ls13_c00316{letter-spacing:-0.576000px;}
.ls14_c00316{letter-spacing:-0.288000px;}
.ls17_c00316{letter-spacing:-0.180360px;}
.lse_c00316{letter-spacing:-0.108000px;}
.ls11_c00316{letter-spacing:-0.102240px;}
.ls12_c00316{letter-spacing:-0.072000px;}
.ls15_c00316{letter-spacing:-0.060120px;}
.lsf_c00316{letter-spacing:-0.042120px;}
.lsd_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:0.072000px;}
.ls10_c00316{letter-spacing:0.102240px;}
.ls2_c00316{letter-spacing:0.144000px;}
.ls16_c00316{letter-spacing:0.180360px;}
.ls9_c00316{letter-spacing:0.191520px;}
.ls6_c00316{letter-spacing:0.720000px;}
.lsa_c00316{letter-spacing:1.800000px;}
.lsc_c00316{letter-spacing:3.667320px;}
.ls1_c00316{letter-spacing:4.680000px;}
.ls7_c00316{letter-spacing:6.487200px;}
.ls5_c00316{letter-spacing:8.280000px;}
.ls3_c00316{letter-spacing:14.760000px;}
.ls4_c00316{letter-spacing:15.120000px;}
.lsb_c00316{letter-spacing:22.961520px;}
.ls8_c00316{letter-spacing:30.240000px;}
.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;}
}
.ws5_c00316{word-spacing:-72.000000px;}
.ws3_c00316{word-spacing:-51.222240px;}
.ws2_c00316{word-spacing:-51.120000px;}
.ws6_c00316{word-spacing:-51.017760px;}
.ws4_c00316{word-spacing:-42.077880px;}
.ws1_c00316{word-spacing:-18.072000px;}
.ws0_c00316{word-spacing:-18.000000px;}
.wsa_c00316{word-spacing:-15.030000px;}
.ws9_c00316{word-spacing:-14.849640px;}
.ws7_c00316{word-spacing:-12.161520px;}
.ws8_c00316{word-spacing:-9.720000px;}
.ws30_c00316{word-spacing:-0.420840px;}
.ws13_c00316{word-spacing:-0.144000px;}
.ws11_c00316{word-spacing:-0.072000px;}
.ws2e_c00316{word-spacing:-0.060120px;}
.wsb_c00316{word-spacing:0.000000px;}
.ws1d_c00316{word-spacing:0.042120px;}
.wsd_c00316{word-spacing:0.162000px;}
.ws2f_c00316{word-spacing:0.180360px;}
.wsc_c00316{word-spacing:0.270000px;}
.ws1a_c00316{word-spacing:0.576000px;}
.ws1b_c00316{word-spacing:0.720000px;}
.ws27_c00316{word-spacing:1.800000px;}
.ws14_c00316{word-spacing:2.808000px;}
.ws2d_c00316{word-spacing:3.727440px;}
.ws28_c00316{word-spacing:3.888000px;}
.ws2b_c00316{word-spacing:3.960000px;}
.ws12_c00316{word-spacing:4.608000px;}
.wsf_c00316{word-spacing:6.048000px;}
.ws10_c00316{word-spacing:6.120000px;}
.ws18_c00316{word-spacing:8.136000px;}
.ws19_c00316{word-spacing:8.208000px;}
.ws1f_c00316{word-spacing:9.720000px;}
.ws1e_c00316{word-spacing:9.792000px;}
.ws22_c00316{word-spacing:10.440000px;}
.wse_c00316{word-spacing:11.448000px;}
.ws24_c00316{word-spacing:12.168000px;}
.ws23_c00316{word-spacing:12.240000px;}
.ws21_c00316{word-spacing:13.320000px;}
.ws16_c00316{word-spacing:14.688000px;}
.ws15_c00316{word-spacing:14.760000px;}
.ws17_c00316{word-spacing:15.120000px;}
.ws20_c00316{word-spacing:15.480000px;}
.ws29_c00316{word-spacing:16.488000px;}
.ws2a_c00316{word-spacing:16.920000px;}
.ws2c_c00316{word-spacing:23.400000px;}
.ws26_c00316{word-spacing:30.168000px;}
.ws25_c00316{word-spacing:30.240000px;}
.ws1c_c00316{word-spacing:30.528000px;}
._b_c00316{margin-left:-4.550400px;}
._1_c00316{margin-left:-1.058400px;}
._0_c00316{width:1.220400px;}
._9_c00316{width:2.697480px;}
._3_c00316{width:3.844800px;}
._4_c00316{width:5.486400px;}
._2_c00316{width:6.552000px;}
._a_c00316{width:11.995200px;}
._5_c00316{width:13.968000px;}
._6_c00316{width:15.552000px;}
._c_c00316{width:16.704000px;}
._7_c00316{width:30.168000px;}
._8_c00316{width:31.392000px;}
.fc0_c00316{color:rgb(0,0,0);}
.fs5_c00316{font-size:38.880000px;}
.fs3_c00316{font-size:42.120000px;}
.fs4_c00316{font-size:47.880000px;}
.fs2_c00316{font-size:51.120000px;}
.fs0_c00316{font-size:54.000000px;}
.fs6_c00316{font-size:60.120000px;}
.fs1_c00316{font-size:72.000000px;}
.y0_c00316{bottom:0.000000px;}
.y26_c00316{bottom:57.240000px;}
.y25_c00316{bottom:109.795680px;}
.y24_c00316{bottom:132.210000px;}
.y27_c00316{bottom:144.900000px;}
.y23_c00316{bottom:225.810000px;}
.y22_c00316{bottom:256.860000px;}
.y21_c00316{bottom:287.910000px;}
.y20_c00316{bottom:318.960000px;}
.y1f_c00316{bottom:350.010000px;}
.y1e_c00316{bottom:381.060000px;}
.y1d_c00316{bottom:412.200000px;}
.y1c_c00316{bottom:443.880000px;}
.y1b_c00316{bottom:475.380000px;}
.y1a_c00316{bottom:506.430000px;}
.y19_c00316{bottom:537.480000px;}
.y18_c00316{bottom:568.530000px;}
.y17_c00316{bottom:599.580000px;}
.y16_c00316{bottom:630.630000px;}
.y15_c00316{bottom:661.680000px;}
.y14_c00316{bottom:692.730000px;}
.y13_c00316{bottom:723.780000px;}
.y12_c00316{bottom:753.840000px;}
.y11_c00316{bottom:762.930000px;}
.y10_c00316{bottom:799.920000px;}
.yf_c00316{bottom:830.970000px;}
.ye_c00316{bottom:861.930000px;}
.yd_c00316{bottom:892.980000px;}
.yc_c00316{bottom:924.030000px;}
.yb_c00316{bottom:955.080000px;}
.ya_c00316{bottom:986.130000px;}
.y9_c00316{bottom:1017.180000px;}
.y8_c00316{bottom:1048.230000px;}
.y7_c00316{bottom:1079.280000px;}
.y6_c00316{bottom:1110.330000px;}
.y5_c00316{bottom:1131.030000px;}
.y4_c00316{bottom:1150.920000px;}
.y3_c00316{bottom:1166.404500px;}
.y2_c00316{bottom:1181.970000px;}
.y1_c00316{bottom:1197.450000px;}
.ha_c00316{height:38.158594px;}
.h3_c00316{height:52.971680px;}
.h2_c00316{height:52.998047px;}
.hb_c00316{height:59.004492px;}
.h4_c00316{height:70.664062px;}
.h8_c00316{height:73.991602px;}
.h9_c00316{height:143.542969px;}
.h5_c00316{height:144.035508px;}
.h7_c00316{height:179.902969px;}
.h6_c00316{height:180.395508px;}
.h0_c00316{height:1262.880000px;}
.h1_c00316{height:1263.000000px;}
.w0_c00316{width:893.070000px;}
.w1_c00316{width:893.250000px;}
.x0_c00316{left:0.000000px;}
.x3_c00316{left:127.620000px;}
.x4_c00316{left:136.440000px;}
.x5_c00316{left:393.570000px;}
.x2_c00316{left:425.160000px;}
.x1_c00316{left:446.580000px;}
.x6_c00316{left:738.540000px;}
@media print{
.v8_c00316{vertical-align:-18.560000pt;}
.v6_c00316{vertical-align:-13.120000pt;}
.v3_c00316{vertical-align:-9.600000pt;}
.v0_c00316{vertical-align:0.000000pt;}
.v7_c00316{vertical-align:13.120000pt;}
.v5_c00316{vertical-align:24.000000pt;}
.v2_c00316{vertical-align:27.840000pt;}
.v4_c00316{vertical-align:32.320000pt;}
.v1_c00316{vertical-align:37.440000pt;}
.ls13_c00316{letter-spacing:-0.512000pt;}
.ls14_c00316{letter-spacing:-0.256000pt;}
.ls17_c00316{letter-spacing:-0.160320pt;}
.lse_c00316{letter-spacing:-0.096000pt;}
.ls11_c00316{letter-spacing:-0.090880pt;}
.ls12_c00316{letter-spacing:-0.064000pt;}
.ls15_c00316{letter-spacing:-0.053440pt;}
.lsf_c00316{letter-spacing:-0.037440pt;}
.lsd_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:0.064000pt;}
.ls10_c00316{letter-spacing:0.090880pt;}
.ls2_c00316{letter-spacing:0.128000pt;}
.ls16_c00316{letter-spacing:0.160320pt;}
.ls9_c00316{letter-spacing:0.170240pt;}
.ls6_c00316{letter-spacing:0.640000pt;}
.lsa_c00316{letter-spacing:1.600000pt;}
.lsc_c00316{letter-spacing:3.259840pt;}
.ls1_c00316{letter-spacing:4.160000pt;}
.ls7_c00316{letter-spacing:5.766400pt;}
.ls5_c00316{letter-spacing:7.360000pt;}
.ls3_c00316{letter-spacing:13.120000pt;}
.ls4_c00316{letter-spacing:13.440000pt;}
.lsb_c00316{letter-spacing:20.410240pt;}
.ls8_c00316{letter-spacing:26.880000pt;}
.ws5_c00316{word-spacing:-64.000000pt;}
.ws3_c00316{word-spacing:-45.530880pt;}
.ws2_c00316{word-spacing:-45.440000pt;}
.ws6_c00316{word-spacing:-45.349120pt;}
.ws4_c00316{word-spacing:-37.402560pt;}
.ws1_c00316{word-spacing:-16.064000pt;}
.ws0_c00316{word-spacing:-16.000000pt;}
.wsa_c00316{word-spacing:-13.360000pt;}
.ws9_c00316{word-spacing:-13.199680pt;}
.ws7_c00316{word-spacing:-10.810240pt;}
.ws8_c00316{word-spacing:-8.640000pt;}
.ws30_c00316{word-spacing:-0.374080pt;}
.ws13_c00316{word-spacing:-0.128000pt;}
.ws11_c00316{word-spacing:-0.064000pt;}
.ws2e_c00316{word-spacing:-0.053440pt;}
.wsb_c00316{word-spacing:0.000000pt;}
.ws1d_c00316{word-spacing:0.037440pt;}
.wsd_c00316{word-spacing:0.144000pt;}
.ws2f_c00316{word-spacing:0.160320pt;}
.wsc_c00316{word-spacing:0.240000pt;}
.ws1a_c00316{word-spacing:0.512000pt;}
.ws1b_c00316{word-spacing:0.640000pt;}
.ws27_c00316{word-spacing:1.600000pt;}
.ws14_c00316{word-spacing:2.496000pt;}
.ws2d_c00316{word-spacing:3.313280pt;}
.ws28_c00316{word-spacing:3.456000pt;}
.ws2b_c00316{word-spacing:3.520000pt;}
.ws12_c00316{word-spacing:4.096000pt;}
.wsf_c00316{word-spacing:5.376000pt;}
.ws10_c00316{word-spacing:5.440000pt;}
.ws18_c00316{word-spacing:7.232000pt;}
.ws19_c00316{word-spacing:7.296000pt;}
.ws1f_c00316{word-spacing:8.640000pt;}
.ws1e_c00316{word-spacing:8.704000pt;}
.ws22_c00316{word-spacing:9.280000pt;}
.wse_c00316{word-spacing:10.176000pt;}
.ws24_c00316{word-spacing:10.816000pt;}
.ws23_c00316{word-spacing:10.880000pt;}
.ws21_c00316{word-spacing:11.840000pt;}
.ws16_c00316{word-spacing:13.056000pt;}
.ws15_c00316{word-spacing:13.120000pt;}
.ws17_c00316{word-spacing:13.440000pt;}
.ws20_c00316{word-spacing:13.760000pt;}
.ws29_c00316{word-spacing:14.656000pt;}
.ws2a_c00316{word-spacing:15.040000pt;}
.ws2c_c00316{word-spacing:20.800000pt;}
.ws26_c00316{word-spacing:26.816000pt;}
.ws25_c00316{word-spacing:26.880000pt;}
.ws1c_c00316{word-spacing:27.136000pt;}
._b_c00316{margin-left:-4.044800pt;}
._1_c00316{margin-left:-0.940800pt;}
._0_c00316{width:1.084800pt;}
._9_c00316{width:2.397760pt;}
._3_c00316{width:3.417600pt;}
._4_c00316{width:4.876800pt;}
._2_c00316{width:5.824000pt;}
._a_c00316{width:10.662400pt;}
._5_c00316{width:12.416000pt;}
._6_c00316{width:13.824000pt;}
._c_c00316{width:14.848000pt;}
._7_c00316{width:26.816000pt;}
._8_c00316{width:27.904000pt;}
.fs5_c00316{font-size:34.560000pt;}
.fs3_c00316{font-size:37.440000pt;}
.fs4_c00316{font-size:42.560000pt;}
.fs2_c00316{font-size:45.440000pt;}
.fs0_c00316{font-size:48.000000pt;}
.fs6_c00316{font-size:53.440000pt;}
.fs1_c00316{font-size:64.000000pt;}
.y0_c00316{bottom:0.000000pt;}
.y26_c00316{bottom:50.880000pt;}
.y25_c00316{bottom:97.596160pt;}
.y24_c00316{bottom:117.520000pt;}
.y27_c00316{bottom:128.800000pt;}
.y23_c00316{bottom:200.720000pt;}
.y22_c00316{bottom:228.320000pt;}
.y21_c00316{bottom:255.920000pt;}
.y20_c00316{bottom:283.520000pt;}
.y1f_c00316{bottom:311.120000pt;}
.y1e_c00316{bottom:338.720000pt;}
.y1d_c00316{bottom:366.400000pt;}
.y1c_c00316{bottom:394.560000pt;}
.y1b_c00316{bottom:422.560000pt;}
.y1a_c00316{bottom:450.160000pt;}
.y19_c00316{bottom:477.760000pt;}
.y18_c00316{bottom:505.360000pt;}
.y17_c00316{bottom:532.960000pt;}
.y16_c00316{bottom:560.560000pt;}
.y15_c00316{bottom:588.160000pt;}
.y14_c00316{bottom:615.760000pt;}
.y13_c00316{bottom:643.360000pt;}
.y12_c00316{bottom:670.080000pt;}
.y11_c00316{bottom:678.160000pt;}
.y10_c00316{bottom:711.040000pt;}
.yf_c00316{bottom:738.640000pt;}
.ye_c00316{bottom:766.160000pt;}
.yd_c00316{bottom:793.760000pt;}
.yc_c00316{bottom:821.360000pt;}
.yb_c00316{bottom:848.960000pt;}
.ya_c00316{bottom:876.560000pt;}
.y9_c00316{bottom:904.160000pt;}
.y8_c00316{bottom:931.760000pt;}
.y7_c00316{bottom:959.360000pt;}
.y6_c00316{bottom:986.960000pt;}
.y5_c00316{bottom:1005.360000pt;}
.y4_c00316{bottom:1023.040000pt;}
.y3_c00316{bottom:1036.804000pt;}
.y2_c00316{bottom:1050.640000pt;}
.y1_c00316{bottom:1064.400000pt;}
.ha_c00316{height:33.918750pt;}
.h3_c00316{height:47.085938pt;}
.h2_c00316{height:47.109375pt;}
.hb_c00316{height:52.448437pt;}
.h4_c00316{height:62.812500pt;}
.h8_c00316{height:65.770312pt;}
.h9_c00316{height:127.593750pt;}
.h5_c00316{height:128.031562pt;}
.h7_c00316{height:159.913750pt;}
.h6_c00316{height:160.351562pt;}
.h0_c00316{height:1122.560000pt;}
.h1_c00316{height:1122.666667pt;}
.w0_c00316{width:793.840000pt;}
.w1_c00316{width:794.000000pt;}
.x0_c00316{left:0.000000pt;}
.x3_c00316{left:113.440000pt;}
.x4_c00316{left:121.280000pt;}
.x5_c00316{left:349.840000pt;}
.x2_c00316{left:377.920000pt;}
.x1_c00316{left:396.960000pt;}
.x6_c00316{left:656.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_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_b2b7d16a79e10c191d928e28.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_64e64db10d8fdf170df4e9e2.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00317;src:url('chunks/assets/font_87c4ba3160a7e182bbb825c9.woff2')format("woff");}.ff4_c00317{font-family:ff4_c00317;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00317;src:url('chunks/assets/font_e2e903ef64a2c6e60b8c4637.woff2')format("woff");}.ff5_c00317{font-family:ff5_c00317;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00317;src:url('chunks/assets/font_9a4d92dfd163de4985fa0fe4.woff2')format("woff");}.ff6_c00317{font-family:ff6_c00317;line-height:0.862793;font-style: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);}
.m2_c00317{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250319,0.000000,0.000000,0.250000,0,0);}
.v2_c00317{vertical-align:-83.520000px;}
.v1_c00317{vertical-align:-61.938000px;}
.v3_c00317{vertical-align:-3.754640px;}
.v0_c00317{vertical-align:0.000000px;}
.v4_c00317{vertical-align:3.754640px;}
.lsc_c00317{letter-spacing:-2.241576px;}
.ls1d_c00317{letter-spacing:-1.845569px;}
.lsd_c00317{letter-spacing:-1.513064px;}
.lsb_c00317{letter-spacing:-1.434600px;}
.ls16_c00317{letter-spacing:-1.288906px;}
.ls14_c00317{letter-spacing:-1.232867px;}
.ls1c_c00317{letter-spacing:-0.709830px;}
.lsf_c00317{letter-spacing:-0.672473px;}
.lse_c00317{letter-spacing:-0.418425px;}
.ls15_c00317{letter-spacing:-0.392276px;}
.ls12_c00317{letter-spacing:-0.224158px;}
.lsa_c00317{letter-spacing:-0.179325px;}
.ls10_c00317{letter-spacing:-0.168118px;}
.ls7_c00317{letter-spacing:0.000000px;}
.ls9_c00317{letter-spacing:0.072000px;}
.ls8_c00317{letter-spacing:0.144000px;}
.ls2_c00317{letter-spacing:0.239100px;}
.ls3_c00317{letter-spacing:0.358650px;}
.ls19_c00317{letter-spacing:0.698618px;}
.ls1f_c00317{letter-spacing:0.874217px;}
.ls18_c00317{letter-spacing:1.016175px;}
.ls1a_c00317{letter-spacing:1.135725px;}
.ls13_c00317{letter-spacing:1.176827px;}
.ls20_c00317{letter-spacing:1.494375px;}
.ls17_c00317{letter-spacing:1.554150px;}
.ls6_c00317{letter-spacing:1.602713px;}
.ls11_c00317{letter-spacing:1.681182px;}
.ls1b_c00317{letter-spacing:1.733475px;}
.ls1e_c00317{letter-spacing:1.894136px;}
.ls5_c00317{letter-spacing:2.869200px;}
.ls1_c00317{letter-spacing:26.640000px;}
.ls4_c00317{letter-spacing:244.331784px;}
.ls0_c00317{letter-spacing:1144.260000px;}
.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:-18.144000px;}
.ws21_c00317{word-spacing:-15.242625px;}
.ws20_c00317{word-spacing:-15.063300px;}
.ws1f_c00317{word-spacing:-13.867800px;}
.ws22_c00317{word-spacing:-13.748250px;}
.ws5_c00317{word-spacing:-13.090725px;}
.ws1_c00317{word-spacing:-12.074550px;}
.ws33_c00317{word-spacing:-3.410902px;}
.ws3a_c00317{word-spacing:-2.816921px;}
.ws32_c00317{word-spacing:-2.506807px;}
.ws3b_c00317{word-spacing:-1.797001px;}
.ws37_c00317{word-spacing:-1.602713px;}
.ws30_c00317{word-spacing:-1.554150px;}
.ws2e_c00317{word-spacing:-1.434600px;}
.ws2d_c00317{word-spacing:-1.232867px;}
.ws34_c00317{word-spacing:-1.135725px;}
.ws31_c00317{word-spacing:-1.016175px;}
.ws35_c00317{word-spacing:-0.358650px;}
.ws38_c00317{word-spacing:-0.354915px;}
.ws2a_c00317{word-spacing:-0.239100px;}
.ws24_c00317{word-spacing:-0.162000px;}
.ws25_c00317{word-spacing:-0.144000px;}
.ws2f_c00317{word-spacing:-0.119550px;}
.ws26_c00317{word-spacing:-0.072000px;}
.ws3c_c00317{word-spacing:-0.059775px;}
.ws23_c00317{word-spacing:0.000000px;}
.ws2c_c00317{word-spacing:0.056039px;}
.ws28_c00317{word-spacing:0.179325px;}
.ws39_c00317{word-spacing:0.922784px;}
.ws29_c00317{word-spacing:1.075950px;}
.ws27_c00317{word-spacing:1.195500px;}
.ws36_c00317{word-spacing:1.434600px;}
.ws2b_c00317{word-spacing:2.241576px;}
.ws6_c00317{word-spacing:45.526409px;}
.ws2_c00317{word-spacing:56.767912px;}
.wsa_c00317{word-spacing:67.975792px;}
.ws8_c00317{word-spacing:84.899691px;}
.ws7_c00317{word-spacing:86.580873px;}
.ws18_c00317{word-spacing:96.107571px;}
.ws19_c00317{word-spacing:172.119413px;}
.ws4_c00317{word-spacing:194.921845px;}
.wse_c00317{word-spacing:194.927449px;}
.ws11_c00317{word-spacing:224.902924px;}
.wsf_c00317{word-spacing:236.093992px;}
.ws9_c00317{word-spacing:236.110804px;}
.ws1c_c00317{word-spacing:284.719380px;}
.ws1d_c00317{word-spacing:297.473947px;}
.ws17_c00317{word-spacing:300.113403px;}
.ws1e_c00317{word-spacing:308.681827px;}
.ws15_c00317{word-spacing:316.151879px;}
.ws1b_c00317{word-spacing:362.143415px;}
.ws1a_c00317{word-spacing:363.224975px;}
.ws13_c00317{word-spacing:378.243534px;}
.ws14_c00317{word-spacing:385.567884px;}
.wsb_c00317{word-spacing:387.136987px;}
.ws3_c00317{word-spacing:404.795002px;}
.ws12_c00317{word-spacing:413.027190px;}
.wsd_c00317{word-spacing:417.101254px;}
.ws10_c00317{word-spacing:419.695878px;}
.ws16_c00317{word-spacing:431.116708px;}
.wsc_c00317{word-spacing:927.194289px;}
._e_c00317{margin-left:-6.604110px;}
._b_c00317{margin-left:-4.572788px;}
._c_c00317{margin-left:-3.406061px;}
._8_c00317{margin-left:-2.227176px;}
._0_c00317{margin-left:-1.152000px;}
._1_c00317{width:1.570425px;}
._2_c00317{width:2.581275px;}
._3_c00317{width:4.016201px;}
._d_c00317{width:5.573645px;}
._4_c00317{width:93.739749px;}
._9_c00317{width:138.219085px;}
._a_c00317{width:157.379227px;}
._5_c00317{width:168.108631px;}
._7_c00317{width:169.353525px;}
._6_c00317{width:183.493588px;}
.fc1_c00317{color:transparent;}
.fc0_c00317{color:rgb(0,0,0);}
.fs4_c00317{font-size:41.095200px;}
.fs6_c00317{font-size:48.567600px;}
.fs0_c00317{font-size:54.000000px;}
.fs3_c00317{font-size:56.039400px;}
.fs2_c00317{font-size:59.775000px;}
.fs5_c00317{font-size:70.983000px;}
.fs1_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y34_c00317{bottom:3.735150px;}
.y19_c00317{bottom:3.735300px;}
.y1a_c00317{bottom:3.735450px;}
.y1d_c00317{bottom:3.735600px;}
.y1e_c00317{bottom:3.735750px;}
.y2c_c00317{bottom:3.735900px;}
.y21_c00317{bottom:3.736050px;}
.y12_c00317{bottom:3.736200px;}
.y13_c00317{bottom:3.736350px;}
.y31_c00317{bottom:3.736500px;}
.y16_c00317{bottom:3.736650px;}
.y26_c00317{bottom:3.736800px;}
.y29_c00317{bottom:3.737100px;}
.y38_c00317{bottom:3.737400px;}
.y5f_c00317{bottom:4.669050px;}
.y33_c00317{bottom:4.669200px;}
.y18_c00317{bottom:4.669350px;}
.y1c_c00317{bottom:4.669650px;}
.y2b_c00317{bottom:4.669800px;}
.y20_c00317{bottom:4.669950px;}
.y2e_c00317{bottom:4.670100px;}
.y11_c00317{bottom:4.670250px;}
.y30_c00317{bottom:4.670400px;}
.y15_c00317{bottom:4.670550px;}
.y25_c00317{bottom:4.670700px;}
.y3b_c00317{bottom:4.670850px;}
.y28_c00317{bottom:4.671000px;}
.y37_c00317{bottom:4.671300px;}
.y5c_c00317{bottom:5.605050px;}
.yf_c00317{bottom:7.488056px;}
.y62_c00317{bottom:14.943900px;}
.y58_c00317{bottom:15.879150px;}
.y4d_c00317{bottom:17.762006px;}
.y46_c00317{bottom:25.218750px;}
.y48_c00317{bottom:25.218900px;}
.ye_c00317{bottom:27.094256px;}
.ya_c00317{bottom:27.101700px;}
.y45_c00317{bottom:28.013344px;}
.y47_c00317{bottom:28.020750px;}
.y41_c00317{bottom:28.028306px;}
.y57_c00317{bottom:34.558800px;}
.y4c_c00317{bottom:37.368206px;}
.y56_c00317{bottom:37.383131px;}
.y9_c00317{bottom:46.707900px;}
.yd_c00317{bottom:46.715400px;}
.y52_c00317{bottom:47.641800px;}
.y3d_c00317{bottom:47.641950px;}
.y40_c00317{bottom:47.649450px;}
.y44_c00317{bottom:49.502456px;}
.y4e_c00317{bottom:56.040300px;}
.y50_c00317{bottom:56.974200px;}
.y4b_c00317{bottom:56.989350px;}
.y63_c00317{bottom:57.330000px;}
.y55_c00317{bottom:58.857300px;}
.y4f_c00317{bottom:63.512100px;}
.y8_c00317{bottom:66.314100px;}
.yc_c00317{bottom:66.321600px;}
.y51_c00317{bottom:67.248000px;}
.y3c_c00317{bottom:67.248150px;}
.y3f_c00317{bottom:67.255650px;}
.y59_c00317{bottom:68.182050px;}
.y43_c00317{bottom:69.108656px;}
.y4a_c00317{bottom:76.595550px;}
.y54_c00317{bottom:78.463500px;}
.yb_c00317{bottom:85.927800px;}
.y3e_c00317{bottom:86.861850px;}
.y42_c00317{bottom:88.729800px;}
.y49_c00317{bottom:96.201750px;}
.y53_c00317{bottom:98.069700px;}
.y6_c00317{bottom:150.030000px;}
.y5_c00317{bottom:177.030000px;}
.y60_c00317{bottom:178.789500px;}
.y5e_c00317{bottom:197.470500px;}
.y5d_c00317{bottom:216.150000px;}
.y5b_c00317{bottom:234.828000px;}
.y3a_c00317{bottom:254.442000px;}
.y39_c00317{bottom:274.990500px;}
.y36_c00317{bottom:294.603000px;}
.y35_c00317{bottom:314.218500px;}
.y32_c00317{bottom:333.832500px;}
.y2f_c00317{bottom:353.445000px;}
.y2d_c00317{bottom:373.059000px;}
.y2a_c00317{bottom:392.673000px;}
.y27_c00317{bottom:412.285500px;}
.y24_c00317{bottom:431.899500px;}
.y23_c00317{bottom:451.513500px;}
.y22_c00317{bottom:471.127500px;}
.y1f_c00317{bottom:490.741500px;}
.y1b_c00317{bottom:510.355500px;}
.y17_c00317{bottom:529.969500px;}
.y14_c00317{bottom:549.582000px;}
.y10_c00317{bottom:569.196000px;}
.y7_c00317{bottom:589.743000px;}
.y61_c00317{bottom:695.284500px;}
.y5a_c00317{bottom:714.898500px;}
.y4_c00317{bottom:761.220000px;}
.y3_c00317{bottom:781.105500px;}
.y2_c00317{bottom:796.590000px;}
.y1_c00317{bottom:827.640000px;}
.h14_c00317{height:17.745000px;}
.h16_c00317{height:17.746500px;}
.hb_c00317{height:18.678000px;}
.ha_c00317{height:18.679500px;}
.h6_c00317{height:19.614000px;}
.h11_c00317{height:20.548500px;}
.hf_c00317{height:33.891500px;}
.h17_c00317{height:40.161000px;}
.he_c00317{height:40.920190px;}
.hc_c00317{height:41.673831px;}
.h8_c00317{height:44.451819px;}
.h9_c00317{height:45.428471px;}
.h7_c00317{height:46.216087px;}
.h15_c00317{height:47.666443px;}
.h13_c00317{height:48.947034px;}
.h5_c00317{height:49.296863px;}
.h2_c00317{height:52.998047px;}
.h12_c00317{height:58.540179px;}
.h3_c00317{height:70.664062px;}
.h4_c00317{height:104.607000px;}
.hd_c00317{height:124.221000px;}
.h10_c00317{height:145.702500px;}
.h0_c00317{height:893.070000px;}
.h1_c00317{height:893.250000px;}
.wb_c00317{width:46.758000px;}
.w9_c00317{width:72.007500px;}
.w8_c00317{width:72.943500px;}
.w2_c00317{width:73.879500px;}
.wa_c00317{width:74.812500px;}
.w4_c00317{width:79.489500px;}
.w5_c00317{width:86.971500px;}
.w7_c00317{width:88.840500px;}
.w6_c00317{width:93.516000px;}
.wc_c00317{width:126.247500px;}
.wf_c00317{width:148.693500px;}
.wd_c00317{width:722.887500px;}
.we_c00317{width:999.697500px;}
.w3_c00317{width:1048.324500px;}
.w0_c00317{width:1262.880000px;}
.w1_c00317{width:1263.000000px;}
.x0_c00317{left:0.000000px;}
.x15_c00317{left:1.878506px;}
.x12_c00317{left:3.740700px;}
.x17_c00317{left:5.610150px;}
.xa_c00317{left:7.480650px;}
.x6_c00317{left:10.295606px;}
.xc_c00317{left:13.091550px;}
.xf_c00317{left:16.832250px;}
.x7_c00317{left:21.517706px;}
.x9_c00317{left:24.313800px;}
.xb_c00317{left:27.126806px;}
.x5_c00317{left:29.926800px;}
.x1f_c00317{left:33.665850px;}
.x13_c00317{left:35.536650px;}
.x19_c00317{left:37.406100px;}
.x1c_c00317{left:40.213350px;}
.x18_c00317{left:42.074494px;}
.x22_c00317{left:56.110200px;}
.x1a_c00317{left:86.970150px;}
.x2_c00317{left:106.380000px;}
.x25_c00317{left:128.118450px;}
.x24_c00317{left:155.008500px;}
.x11_c00317{left:282.192000px;}
.x14_c00317{left:362.616000px;}
.xd_c00317{left:374.067450px;}
.x10_c00317{left:378.743250px;}
.x16_c00317{left:450.523500px;}
.xe_c00317{left:488.158050px;}
.x1b_c00317{left:544.974000px;}
.x1_c00317{left:631.440000px;}
.x1d_c00317{left:634.750500px;}
.x1e_c00317{left:708.630000px;}
.x20_c00317{left:782.508000px;}
.x21_c00317{left:855.451500px;}
.x23_c00317{left:931.200000px;}
.x4_c00317{left:1006.012500px;}
.x8_c00317{left:1080.828000px;}
.x3_c00317{left:1156.590000px;}
@media print{
.v2_c00317{vertical-align:-74.240000pt;}
.v1_c00317{vertical-align:-55.056000pt;}
.v3_c00317{vertical-align:-3.337458pt;}
.v0_c00317{vertical-align:0.000000pt;}
.v4_c00317{vertical-align:3.337458pt;}
.lsc_c00317{letter-spacing:-1.992512pt;}
.ls1d_c00317{letter-spacing:-1.640506pt;}
.lsd_c00317{letter-spacing:-1.344946pt;}
.lsb_c00317{letter-spacing:-1.275200pt;}
.ls16_c00317{letter-spacing:-1.145694pt;}
.ls14_c00317{letter-spacing:-1.095882pt;}
.ls1c_c00317{letter-spacing:-0.630960pt;}
.lsf_c00317{letter-spacing:-0.597754pt;}
.lse_c00317{letter-spacing:-0.371933pt;}
.ls15_c00317{letter-spacing:-0.348690pt;}
.ls12_c00317{letter-spacing:-0.199251pt;}
.lsa_c00317{letter-spacing:-0.159400pt;}
.ls10_c00317{letter-spacing:-0.149438pt;}
.ls7_c00317{letter-spacing:0.000000pt;}
.ls9_c00317{letter-spacing:0.064000pt;}
.ls8_c00317{letter-spacing:0.128000pt;}
.ls2_c00317{letter-spacing:0.212533pt;}
.ls3_c00317{letter-spacing:0.318800pt;}
.ls19_c00317{letter-spacing:0.620994pt;}
.ls1f_c00317{letter-spacing:0.777082pt;}
.ls18_c00317{letter-spacing:0.903267pt;}
.ls1a_c00317{letter-spacing:1.009533pt;}
.ls13_c00317{letter-spacing:1.046069pt;}
.ls20_c00317{letter-spacing:1.328333pt;}
.ls17_c00317{letter-spacing:1.381467pt;}
.ls6_c00317{letter-spacing:1.424634pt;}
.ls11_c00317{letter-spacing:1.494384pt;}
.ls1b_c00317{letter-spacing:1.540867pt;}
.ls1e_c00317{letter-spacing:1.683677pt;}
.ls5_c00317{letter-spacing:2.550400pt;}
.ls1_c00317{letter-spacing:23.680000pt;}
.ls4_c00317{letter-spacing:217.183808pt;}
.ls0_c00317{letter-spacing:1017.120000pt;}
.ws0_c00317{word-spacing:-16.128000pt;}
.ws21_c00317{word-spacing:-13.549000pt;}
.ws20_c00317{word-spacing:-13.389600pt;}
.ws1f_c00317{word-spacing:-12.326933pt;}
.ws22_c00317{word-spacing:-12.220667pt;}
.ws5_c00317{word-spacing:-11.636200pt;}
.ws1_c00317{word-spacing:-10.732933pt;}
.ws33_c00317{word-spacing:-3.031913pt;}
.ws3a_c00317{word-spacing:-2.503930pt;}
.ws32_c00317{word-spacing:-2.228273pt;}
.ws3b_c00317{word-spacing:-1.597334pt;}
.ws37_c00317{word-spacing:-1.424634pt;}
.ws30_c00317{word-spacing:-1.381467pt;}
.ws2e_c00317{word-spacing:-1.275200pt;}
.ws2d_c00317{word-spacing:-1.095882pt;}
.ws34_c00317{word-spacing:-1.009533pt;}
.ws31_c00317{word-spacing:-0.903267pt;}
.ws35_c00317{word-spacing:-0.318800pt;}
.ws38_c00317{word-spacing:-0.315480pt;}
.ws2a_c00317{word-spacing:-0.212533pt;}
.ws24_c00317{word-spacing:-0.144000pt;}
.ws25_c00317{word-spacing:-0.128000pt;}
.ws2f_c00317{word-spacing:-0.106267pt;}
.ws26_c00317{word-spacing:-0.064000pt;}
.ws3c_c00317{word-spacing:-0.053133pt;}
.ws23_c00317{word-spacing:0.000000pt;}
.ws2c_c00317{word-spacing:0.049813pt;}
.ws28_c00317{word-spacing:0.159400pt;}
.ws39_c00317{word-spacing:0.820253pt;}
.ws29_c00317{word-spacing:0.956400pt;}
.ws27_c00317{word-spacing:1.062667pt;}
.ws36_c00317{word-spacing:1.275200pt;}
.ws2b_c00317{word-spacing:1.992512pt;}
.ws6_c00317{word-spacing:40.467919pt;}
.ws2_c00317{word-spacing:50.460366pt;}
.wsa_c00317{word-spacing:60.422926pt;}
.ws8_c00317{word-spacing:75.466392pt;}
.ws7_c00317{word-spacing:76.960776pt;}
.ws18_c00317{word-spacing:85.428952pt;}
.ws19_c00317{word-spacing:152.995034pt;}
.ws4_c00317{word-spacing:173.263862pt;}
.wse_c00317{word-spacing:173.268844pt;}
.ws11_c00317{word-spacing:199.913710pt;}
.wsf_c00317{word-spacing:209.861326pt;}
.ws9_c00317{word-spacing:209.876270pt;}
.ws1c_c00317{word-spacing:253.083893pt;}
.ws1d_c00317{word-spacing:264.421286pt;}
.ws17_c00317{word-spacing:266.767469pt;}
.ws1e_c00317{word-spacing:274.383846pt;}
.ws15_c00317{word-spacing:281.023892pt;}
.ws1b_c00317{word-spacing:321.905257pt;}
.ws1a_c00317{word-spacing:322.866644pt;}
.ws13_c00317{word-spacing:336.216475pt;}
.ws14_c00317{word-spacing:342.727008pt;}
.wsb_c00317{word-spacing:344.121766pt;}
.ws3_c00317{word-spacing:359.817780pt;}
.ws12_c00317{word-spacing:367.135280pt;}
.wsd_c00317{word-spacing:370.756670pt;}
.ws10_c00317{word-spacing:373.063003pt;}
.ws16_c00317{word-spacing:383.214852pt;}
.wsc_c00317{word-spacing:824.172701pt;}
._e_c00317{margin-left:-5.870320pt;}
._b_c00317{margin-left:-4.064700pt;}
._c_c00317{margin-left:-3.027610pt;}
._8_c00317{margin-left:-1.979712pt;}
._0_c00317{margin-left:-1.024000pt;}
._1_c00317{width:1.395933pt;}
._2_c00317{width:2.294467pt;}
._3_c00317{width:3.569956pt;}
._d_c00317{width:4.954351pt;}
._4_c00317{width:83.324221pt;}
._9_c00317{width:122.861409pt;}
._a_c00317{width:139.892647pt;}
._5_c00317{width:149.429894pt;}
._7_c00317{width:150.536467pt;}
._6_c00317{width:163.105411pt;}
.fs4_c00317{font-size:36.529067pt;}
.fs6_c00317{font-size:43.171200pt;}
.fs0_c00317{font-size:48.000000pt;}
.fs3_c00317{font-size:49.812800pt;}
.fs2_c00317{font-size:53.133333pt;}
.fs5_c00317{font-size:63.096000pt;}
.fs1_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y34_c00317{bottom:3.320133pt;}
.y19_c00317{bottom:3.320267pt;}
.y1a_c00317{bottom:3.320400pt;}
.y1d_c00317{bottom:3.320533pt;}
.y1e_c00317{bottom:3.320667pt;}
.y2c_c00317{bottom:3.320800pt;}
.y21_c00317{bottom:3.320933pt;}
.y12_c00317{bottom:3.321067pt;}
.y13_c00317{bottom:3.321200pt;}
.y31_c00317{bottom:3.321333pt;}
.y16_c00317{bottom:3.321467pt;}
.y26_c00317{bottom:3.321600pt;}
.y29_c00317{bottom:3.321867pt;}
.y38_c00317{bottom:3.322133pt;}
.y5f_c00317{bottom:4.150267pt;}
.y33_c00317{bottom:4.150400pt;}
.y18_c00317{bottom:4.150533pt;}
.y1c_c00317{bottom:4.150800pt;}
.y2b_c00317{bottom:4.150933pt;}
.y20_c00317{bottom:4.151067pt;}
.y2e_c00317{bottom:4.151200pt;}
.y11_c00317{bottom:4.151333pt;}
.y30_c00317{bottom:4.151467pt;}
.y15_c00317{bottom:4.151600pt;}
.y25_c00317{bottom:4.151733pt;}
.y3b_c00317{bottom:4.151867pt;}
.y28_c00317{bottom:4.152000pt;}
.y37_c00317{bottom:4.152267pt;}
.y5c_c00317{bottom:4.982267pt;}
.yf_c00317{bottom:6.656050pt;}
.y62_c00317{bottom:13.283467pt;}
.y58_c00317{bottom:14.114800pt;}
.y4d_c00317{bottom:15.788450pt;}
.y46_c00317{bottom:22.416667pt;}
.y48_c00317{bottom:22.416800pt;}
.ye_c00317{bottom:24.083783pt;}
.ya_c00317{bottom:24.090400pt;}
.y45_c00317{bottom:24.900750pt;}
.y47_c00317{bottom:24.907333pt;}
.y41_c00317{bottom:24.914050pt;}
.y57_c00317{bottom:30.718933pt;}
.y4c_c00317{bottom:33.216183pt;}
.y56_c00317{bottom:33.229450pt;}
.y9_c00317{bottom:41.518133pt;}
.yd_c00317{bottom:41.524800pt;}
.y52_c00317{bottom:42.348267pt;}
.y3d_c00317{bottom:42.348400pt;}
.y40_c00317{bottom:42.355067pt;}
.y44_c00317{bottom:44.002183pt;}
.y4e_c00317{bottom:49.813600pt;}
.y50_c00317{bottom:50.643733pt;}
.y4b_c00317{bottom:50.657200pt;}
.y63_c00317{bottom:50.960000pt;}
.y55_c00317{bottom:52.317600pt;}
.y4f_c00317{bottom:56.455200pt;}
.y8_c00317{bottom:58.945867pt;}
.yc_c00317{bottom:58.952533pt;}
.y51_c00317{bottom:59.776000pt;}
.y3c_c00317{bottom:59.776133pt;}
.y3f_c00317{bottom:59.782800pt;}
.y59_c00317{bottom:60.606267pt;}
.y43_c00317{bottom:61.429917pt;}
.y4a_c00317{bottom:68.084933pt;}
.y54_c00317{bottom:69.745333pt;}
.yb_c00317{bottom:76.380267pt;}
.y3e_c00317{bottom:77.210533pt;}
.y42_c00317{bottom:78.870933pt;}
.y49_c00317{bottom:85.512667pt;}
.y53_c00317{bottom:87.173067pt;}
.y6_c00317{bottom:133.360000pt;}
.y5_c00317{bottom:157.360000pt;}
.y60_c00317{bottom:158.924000pt;}
.y5e_c00317{bottom:175.529333pt;}
.y5d_c00317{bottom:192.133333pt;}
.y5b_c00317{bottom:208.736000pt;}
.y3a_c00317{bottom:226.170667pt;}
.y39_c00317{bottom:244.436000pt;}
.y36_c00317{bottom:261.869333pt;}
.y35_c00317{bottom:279.305333pt;}
.y32_c00317{bottom:296.740000pt;}
.y2f_c00317{bottom:314.173333pt;}
.y2d_c00317{bottom:331.608000pt;}
.y2a_c00317{bottom:349.042667pt;}
.y27_c00317{bottom:366.476000pt;}
.y24_c00317{bottom:383.910667pt;}
.y23_c00317{bottom:401.345333pt;}
.y22_c00317{bottom:418.780000pt;}
.y1f_c00317{bottom:436.214667pt;}
.y1b_c00317{bottom:453.649333pt;}
.y17_c00317{bottom:471.084000pt;}
.y14_c00317{bottom:488.517333pt;}
.y10_c00317{bottom:505.952000pt;}
.y7_c00317{bottom:524.216000pt;}
.y61_c00317{bottom:618.030667pt;}
.y5a_c00317{bottom:635.465333pt;}
.y4_c00317{bottom:676.640000pt;}
.y3_c00317{bottom:694.316000pt;}
.y2_c00317{bottom:708.080000pt;}
.y1_c00317{bottom:735.680000pt;}
.h14_c00317{height:15.773333pt;}
.h16_c00317{height:15.774667pt;}
.hb_c00317{height:16.602667pt;}
.ha_c00317{height:16.604000pt;}
.h6_c00317{height:17.434667pt;}
.h11_c00317{height:18.265333pt;}
.hf_c00317{height:30.125778pt;}
.h17_c00317{height:35.698667pt;}
.he_c00317{height:36.373503pt;}
.hc_c00317{height:37.043405pt;}
.h8_c00317{height:39.512728pt;}
.h9_c00317{height:40.380863pt;}
.h7_c00317{height:41.080966pt;}
.h15_c00317{height:42.370172pt;}
.h13_c00317{height:43.508475pt;}
.h5_c00317{height:43.819434pt;}
.h2_c00317{height:47.109375pt;}
.h12_c00317{height:52.035715pt;}
.h3_c00317{height:62.812500pt;}
.h4_c00317{height:92.984000pt;}
.hd_c00317{height:110.418667pt;}
.h10_c00317{height:129.513333pt;}
.h0_c00317{height:793.840000pt;}
.h1_c00317{height:794.000000pt;}
.wb_c00317{width:41.562667pt;}
.w9_c00317{width:64.006667pt;}
.w8_c00317{width:64.838667pt;}
.w2_c00317{width:65.670667pt;}
.wa_c00317{width:66.500000pt;}
.w4_c00317{width:70.657333pt;}
.w5_c00317{width:77.308000pt;}
.w7_c00317{width:78.969333pt;}
.w6_c00317{width:83.125333pt;}
.wc_c00317{width:112.220000pt;}
.wf_c00317{width:132.172000pt;}
.wd_c00317{width:642.566667pt;}
.we_c00317{width:888.620000pt;}
.w3_c00317{width:931.844000pt;}
.w0_c00317{width:1122.560000pt;}
.w1_c00317{width:1122.666667pt;}
.x0_c00317{left:0.000000pt;}
.x15_c00317{left:1.669783pt;}
.x12_c00317{left:3.325067pt;}
.x17_c00317{left:4.986800pt;}
.xa_c00317{left:6.649467pt;}
.x6_c00317{left:9.151650pt;}
.xc_c00317{left:11.636933pt;}
.xf_c00317{left:14.962000pt;}
.x7_c00317{left:19.126850pt;}
.x9_c00317{left:21.612267pt;}
.xb_c00317{left:24.112717pt;}
.x5_c00317{left:26.601600pt;}
.x1f_c00317{left:29.925200pt;}
.x13_c00317{left:31.588133pt;}
.x19_c00317{left:33.249867pt;}
.x1c_c00317{left:35.745200pt;}
.x18_c00317{left:37.399550pt;}
.x22_c00317{left:49.875733pt;}
.x1a_c00317{left:77.306800pt;}
.x2_c00317{left:94.560000pt;}
.x25_c00317{left:113.883067pt;}
.x24_c00317{left:137.785333pt;}
.x11_c00317{left:250.837333pt;}
.x14_c00317{left:322.325333pt;}
.xd_c00317{left:332.504400pt;}
.x10_c00317{left:336.660667pt;}
.x16_c00317{left:400.465333pt;}
.xe_c00317{left:433.918267pt;}
.x1b_c00317{left:484.421333pt;}
.x1_c00317{left:561.280000pt;}
.x1d_c00317{left:564.222667pt;}
.x1e_c00317{left:629.893333pt;}
.x20_c00317{left:695.562667pt;}
.x21_c00317{left:760.401333pt;}
.x23_c00317{left:827.733333pt;}
.x4_c00317{left:894.233333pt;}
.x8_c00317{left:960.736000pt;}
.x3_c00317{left:1028.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_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_c3f14ca4322147710b6c15cc.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00318;src:url('chunks/assets/font_fa884237b0a2f22452faeab1.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;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_c00318;src:url('chunks/assets/font_eb1b658be353f249815c3ca1.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00318;src:url('chunks/assets/font_eb2cd82c1703d848a1449e17.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:1.142090;font-style: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:-14.760000px;}
.v5_c00318{vertical-align:-10.800000px;}
.v0_c00318{vertical-align:0.000000px;}
.v2_c00318{vertical-align:14.760000px;}
.v9_c00318{vertical-align:27.000000px;}
.v4_c00318{vertical-align:31.320000px;}
.v6_c00318{vertical-align:36.360000px;}
.v3_c00318{vertical-align:42.120000px;}
.v8_c00318{vertical-align:67.680000px;}
.v7_c00318{vertical-align:78.480000px;}
.ls14_c00318{letter-spacing:-0.432000px;}
.ls10_c00318{letter-spacing:-0.360000px;}
.lsf_c00318{letter-spacing:-0.216000px;}
.lsd_c00318{letter-spacing:-0.108000px;}
.ls13_c00318{letter-spacing:-0.102240px;}
.lse_c00318{letter-spacing:-0.072000px;}
.ls11_c00318{letter-spacing:-0.042120px;}
.lsc_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:0.072000px;}
.ls4_c00318{letter-spacing:0.079200px;}
.ls12_c00318{letter-spacing:0.102240px;}
.ls1_c00318{letter-spacing:0.144000px;}
.lsa_c00318{letter-spacing:0.180000px;}
.ls6_c00318{letter-spacing:0.360000px;}
.ls5_c00318{letter-spacing:0.720000px;}
.ls8_c00318{letter-spacing:6.480000px;}
.ls9_c00318{letter-spacing:9.720000px;}
.lsb_c00318{letter-spacing:10.800000px;}
.ls7_c00318{letter-spacing:14.760000px;}
.ls3_c00318{letter-spacing:20.016000px;}
.ls2_c00318{letter-spacing:22.961520px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00318{word-spacing:-72.000000px;}
.ws3_c00318{word-spacing:-51.222240px;}
.ws2_c00318{word-spacing:-51.120000px;}
.ws5_c00318{word-spacing:-51.017760px;}
.ws4_c00318{word-spacing:-42.077880px;}
.ws6_c00318{word-spacing:-18.000000px;}
.ws0_c00318{word-spacing:-17.928000px;}
.ws7_c00318{word-spacing:-17.784000px;}
.ws8_c00318{word-spacing:-17.568000px;}
.ws20_c00318{word-spacing:-0.144000px;}
.wsd_c00318{word-spacing:-0.072000px;}
.ws9_c00318{word-spacing:0.000000px;}
.ws27_c00318{word-spacing:0.042120px;}
.wsb_c00318{word-spacing:0.162000px;}
.ws23_c00318{word-spacing:0.216000px;}
.wsa_c00318{word-spacing:0.270000px;}
.ws2e_c00318{word-spacing:0.360000px;}
.ws1d_c00318{word-spacing:0.648000px;}
.ws1e_c00318{word-spacing:0.720000px;}
.ws1c_c00318{word-spacing:1.008000px;}
.ws1f_c00318{word-spacing:1.080000px;}
.ws16_c00318{word-spacing:1.800000px;}
.ws19_c00318{word-spacing:4.248000px;}
.ws2f_c00318{word-spacing:4.320000px;}
.ws24_c00318{word-spacing:5.256000px;}
.wsf_c00318{word-spacing:5.400000px;}
.ws35_c00318{word-spacing:6.408000px;}
.ws34_c00318{word-spacing:6.480000px;}
.ws2c_c00318{word-spacing:7.200000px;}
.ws2b_c00318{word-spacing:7.488000px;}
.ws10_c00318{word-spacing:7.560000px;}
.wse_c00318{word-spacing:7.920000px;}
.wsc_c00318{word-spacing:8.208000px;}
.ws2a_c00318{word-spacing:9.720000px;}
.ws32_c00318{word-spacing:10.368000px;}
.ws33_c00318{word-spacing:10.440000px;}
.ws15_c00318{word-spacing:12.816000px;}
.ws14_c00318{word-spacing:12.888000px;}
.ws22_c00318{word-spacing:12.960000px;}
.ws21_c00318{word-spacing:13.176000px;}
.ws26_c00318{word-spacing:14.400000px;}
.ws25_c00318{word-spacing:14.688000px;}
.ws28_c00318{word-spacing:14.760000px;}
.ws29_c00318{word-spacing:19.440000px;}
.ws2d_c00318{word-spacing:19.728000px;}
.ws30_c00318{word-spacing:22.608000px;}
.ws31_c00318{word-spacing:22.680000px;}
.ws1b_c00318{word-spacing:25.128000px;}
.ws1a_c00318{word-spacing:25.200000px;}
.ws11_c00318{word-spacing:27.360000px;}
.ws13_c00318{word-spacing:27.648000px;}
.ws12_c00318{word-spacing:27.720000px;}
.ws17_c00318{word-spacing:30.600000px;}
.ws18_c00318{word-spacing:30.816000px;}
._6_c00318{margin-left:-6.624000px;}
._1_c00318{margin-left:-1.058400px;}
._0_c00318{width:1.220400px;}
._5_c00318{width:2.372400px;}
._7_c00318{width:4.176000px;}
._a_c00318{width:5.234400px;}
._c_c00318{width:6.440400px;}
._2_c00318{width:7.509600px;}
._3_c00318{width:8.928000px;}
._9_c00318{width:11.656800px;}
._b_c00318{width:22.464000px;}
._8_c00318{width:25.272000px;}
._4_c00318{width:28.368000px;}
.fc0_c00318{color:rgb(0,0,0);}
.fs3_c00318{font-size:42.120000px;}
.fs4_c00318{font-size:47.880000px;}
.fs2_c00318{font-size:51.120000px;}
.fs0_c00318{font-size:54.000000px;}
.fs1_c00318{font-size:72.000000px;}
.y0_c00318{bottom:0.000000px;}
.y26_c00318{bottom:57.240000px;}
.y25_c00318{bottom:179.280000px;}
.y24_c00318{bottom:210.330000px;}
.y23_c00318{bottom:241.380000px;}
.y22_c00318{bottom:272.430000px;}
.y21_c00318{bottom:303.480000px;}
.y20_c00318{bottom:334.530000px;}
.y1f_c00318{bottom:365.580000px;}
.y1e_c00318{bottom:396.630000px;}
.y1d_c00318{bottom:427.680000px;}
.y1c_c00318{bottom:458.730000px;}
.y1b_c00318{bottom:489.780000px;}
.y1a_c00318{bottom:520.830000px;}
.y19_c00318{bottom:550.890000px;}
.y18_c00318{bottom:559.980000px;}
.y17_c00318{bottom:596.970000px;}
.y16_c00318{bottom:626.940000px;}
.y15_c00318{bottom:636.030000px;}
.y14_c00318{bottom:673.020000px;}
.y13_c00318{bottom:704.070000px;}
.y12_c00318{bottom:735.120000px;}
.y11_c00318{bottom:766.170000px;}
.y10_c00318{bottom:797.940000px;}
.yf_c00318{bottom:830.340000px;}
.ye_c00318{bottom:861.390000px;}
.yd_c00318{bottom:892.440000px;}
.yc_c00318{bottom:923.580000px;}
.yb_c00318{bottom:955.080000px;}
.ya_c00318{bottom:986.130000px;}
.y9_c00318{bottom:1017.180000px;}
.y8_c00318{bottom:1048.230000px;}
.y7_c00318{bottom:1079.280000px;}
.y6_c00318{bottom:1110.330000px;}
.y5_c00318{bottom:1131.030000px;}
.y4_c00318{bottom:1150.920000px;}
.y3_c00318{bottom:1166.404500px;}
.y2_c00318{bottom:1181.970000px;}
.y1_c00318{bottom:1197.450000px;}
.h3_c00318{height:52.971680px;}
.h2_c00318{height:52.998047px;}
.h4_c00318{height:70.664062px;}
.h9_c00318{height:73.991602px;}
.h5_c00318{height:143.542969px;}
.h6_c00318{height:144.035508px;}
.h8_c00318{height:179.902969px;}
.h7_c00318{height:180.395508px;}
.h0_c00318{height:1262.880000px;}
.h1_c00318{height:1263.000000px;}
.w0_c00318{width:893.070000px;}
.w1_c00318{width:893.250000px;}
.x0_c00318{left:0.000000px;}
.x3_c00318{left:127.620000px;}
.x4_c00318{left:318.960000px;}
.x6_c00318{left:413.010000px;}
.x2_c00318{left:425.160000px;}
.x1_c00318{left:446.580000px;}
.x5_c00318{left:594.810000px;}
.x7_c00318{left:738.540000px;}
@media print{
.v1_c00318{vertical-align:-13.120000pt;}
.v5_c00318{vertical-align:-9.600000pt;}
.v0_c00318{vertical-align:0.000000pt;}
.v2_c00318{vertical-align:13.120000pt;}
.v9_c00318{vertical-align:24.000000pt;}
.v4_c00318{vertical-align:27.840000pt;}
.v6_c00318{vertical-align:32.320000pt;}
.v3_c00318{vertical-align:37.440000pt;}
.v8_c00318{vertical-align:60.160000pt;}
.v7_c00318{vertical-align:69.760000pt;}
.ls14_c00318{letter-spacing:-0.384000pt;}
.ls10_c00318{letter-spacing:-0.320000pt;}
.lsf_c00318{letter-spacing:-0.192000pt;}
.lsd_c00318{letter-spacing:-0.096000pt;}
.ls13_c00318{letter-spacing:-0.090880pt;}
.lse_c00318{letter-spacing:-0.064000pt;}
.ls11_c00318{letter-spacing:-0.037440pt;}
.lsc_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:0.064000pt;}
.ls4_c00318{letter-spacing:0.070400pt;}
.ls12_c00318{letter-spacing:0.090880pt;}
.ls1_c00318{letter-spacing:0.128000pt;}
.lsa_c00318{letter-spacing:0.160000pt;}
.ls6_c00318{letter-spacing:0.320000pt;}
.ls5_c00318{letter-spacing:0.640000pt;}
.ls8_c00318{letter-spacing:5.760000pt;}
.ls9_c00318{letter-spacing:8.640000pt;}
.lsb_c00318{letter-spacing:9.600000pt;}
.ls7_c00318{letter-spacing:13.120000pt;}
.ls3_c00318{letter-spacing:17.792000pt;}
.ls2_c00318{letter-spacing:20.410240pt;}
.ws1_c00318{word-spacing:-64.000000pt;}
.ws3_c00318{word-spacing:-45.530880pt;}
.ws2_c00318{word-spacing:-45.440000pt;}
.ws5_c00318{word-spacing:-45.349120pt;}
.ws4_c00318{word-spacing:-37.402560pt;}
.ws6_c00318{word-spacing:-16.000000pt;}
.ws0_c00318{word-spacing:-15.936000pt;}
.ws7_c00318{word-spacing:-15.808000pt;}
.ws8_c00318{word-spacing:-15.616000pt;}
.ws20_c00318{word-spacing:-0.128000pt;}
.wsd_c00318{word-spacing:-0.064000pt;}
.ws9_c00318{word-spacing:0.000000pt;}
.ws27_c00318{word-spacing:0.037440pt;}
.wsb_c00318{word-spacing:0.144000pt;}
.ws23_c00318{word-spacing:0.192000pt;}
.wsa_c00318{word-spacing:0.240000pt;}
.ws2e_c00318{word-spacing:0.320000pt;}
.ws1d_c00318{word-spacing:0.576000pt;}
.ws1e_c00318{word-spacing:0.640000pt;}
.ws1c_c00318{word-spacing:0.896000pt;}
.ws1f_c00318{word-spacing:0.960000pt;}
.ws16_c00318{word-spacing:1.600000pt;}
.ws19_c00318{word-spacing:3.776000pt;}
.ws2f_c00318{word-spacing:3.840000pt;}
.ws24_c00318{word-spacing:4.672000pt;}
.wsf_c00318{word-spacing:4.800000pt;}
.ws35_c00318{word-spacing:5.696000pt;}
.ws34_c00318{word-spacing:5.760000pt;}
.ws2c_c00318{word-spacing:6.400000pt;}
.ws2b_c00318{word-spacing:6.656000pt;}
.ws10_c00318{word-spacing:6.720000pt;}
.wse_c00318{word-spacing:7.040000pt;}
.wsc_c00318{word-spacing:7.296000pt;}
.ws2a_c00318{word-spacing:8.640000pt;}
.ws32_c00318{word-spacing:9.216000pt;}
.ws33_c00318{word-spacing:9.280000pt;}
.ws15_c00318{word-spacing:11.392000pt;}
.ws14_c00318{word-spacing:11.456000pt;}
.ws22_c00318{word-spacing:11.520000pt;}
.ws21_c00318{word-spacing:11.712000pt;}
.ws26_c00318{word-spacing:12.800000pt;}
.ws25_c00318{word-spacing:13.056000pt;}
.ws28_c00318{word-spacing:13.120000pt;}
.ws29_c00318{word-spacing:17.280000pt;}
.ws2d_c00318{word-spacing:17.536000pt;}
.ws30_c00318{word-spacing:20.096000pt;}
.ws31_c00318{word-spacing:20.160000pt;}
.ws1b_c00318{word-spacing:22.336000pt;}
.ws1a_c00318{word-spacing:22.400000pt;}
.ws11_c00318{word-spacing:24.320000pt;}
.ws13_c00318{word-spacing:24.576000pt;}
.ws12_c00318{word-spacing:24.640000pt;}
.ws17_c00318{word-spacing:27.200000pt;}
.ws18_c00318{word-spacing:27.392000pt;}
._6_c00318{margin-left:-5.888000pt;}
._1_c00318{margin-left:-0.940800pt;}
._0_c00318{width:1.084800pt;}
._5_c00318{width:2.108800pt;}
._7_c00318{width:3.712000pt;}
._a_c00318{width:4.652800pt;}
._c_c00318{width:5.724800pt;}
._2_c00318{width:6.675200pt;}
._3_c00318{width:7.936000pt;}
._9_c00318{width:10.361600pt;}
._b_c00318{width:19.968000pt;}
._8_c00318{width:22.464000pt;}
._4_c00318{width:25.216000pt;}
.fs3_c00318{font-size:37.440000pt;}
.fs4_c00318{font-size:42.560000pt;}
.fs2_c00318{font-size:45.440000pt;}
.fs0_c00318{font-size:48.000000pt;}
.fs1_c00318{font-size:64.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y26_c00318{bottom:50.880000pt;}
.y25_c00318{bottom:159.360000pt;}
.y24_c00318{bottom:186.960000pt;}
.y23_c00318{bottom:214.560000pt;}
.y22_c00318{bottom:242.160000pt;}
.y21_c00318{bottom:269.760000pt;}
.y20_c00318{bottom:297.360000pt;}
.y1f_c00318{bottom:324.960000pt;}
.y1e_c00318{bottom:352.560000pt;}
.y1d_c00318{bottom:380.160000pt;}
.y1c_c00318{bottom:407.760000pt;}
.y1b_c00318{bottom:435.360000pt;}
.y1a_c00318{bottom:462.960000pt;}
.y19_c00318{bottom:489.680000pt;}
.y18_c00318{bottom:497.760000pt;}
.y17_c00318{bottom:530.640000pt;}
.y16_c00318{bottom:557.280000pt;}
.y15_c00318{bottom:565.360000pt;}
.y14_c00318{bottom:598.240000pt;}
.y13_c00318{bottom:625.840000pt;}
.y12_c00318{bottom:653.440000pt;}
.y11_c00318{bottom:681.040000pt;}
.y10_c00318{bottom:709.280000pt;}
.yf_c00318{bottom:738.080000pt;}
.ye_c00318{bottom:765.680000pt;}
.yd_c00318{bottom:793.280000pt;}
.yc_c00318{bottom:820.960000pt;}
.yb_c00318{bottom:848.960000pt;}
.ya_c00318{bottom:876.560000pt;}
.y9_c00318{bottom:904.160000pt;}
.y8_c00318{bottom:931.760000pt;}
.y7_c00318{bottom:959.360000pt;}
.y6_c00318{bottom:986.960000pt;}
.y5_c00318{bottom:1005.360000pt;}
.y4_c00318{bottom:1023.040000pt;}
.y3_c00318{bottom:1036.804000pt;}
.y2_c00318{bottom:1050.640000pt;}
.y1_c00318{bottom:1064.400000pt;}
.h3_c00318{height:47.085938pt;}
.h2_c00318{height:47.109375pt;}
.h4_c00318{height:62.812500pt;}
.h9_c00318{height:65.770312pt;}
.h5_c00318{height:127.593750pt;}
.h6_c00318{height:128.031563pt;}
.h8_c00318{height:159.913750pt;}
.h7_c00318{height:160.351563pt;}
.h0_c00318{height:1122.560000pt;}
.h1_c00318{height:1122.666667pt;}
.w0_c00318{width:793.840000pt;}
.w1_c00318{width:794.000000pt;}
.x0_c00318{left:0.000000pt;}
.x3_c00318{left:113.440000pt;}
.x4_c00318{left:283.520000pt;}
.x6_c00318{left:367.120000pt;}
.x2_c00318{left:377.920000pt;}
.x1_c00318{left:396.960000pt;}
.x5_c00318{left:528.720000pt;}
.x7_c00318{left:656.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_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_6692bf5fe66e467742b0100e.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_0b4044b5ea93d9d48be888f7.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;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_c00319;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00319;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00319{font-family:ff5_c00319;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00319;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00319{font-family:ff6_c00319;line-height:1.142090;font-style:normal;font-weight: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_c00319;src:url('chunks/assets/font_26dd0f7454076bc53db307cb.woff2')format("woff");}.ff7_c00319{font-family:ff7_c00319;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:ff8_c00319;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00319{font-family:ff8_c00319;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00319{vertical-align:-61.938000px;}
.v5_c00319{vertical-align:-20.880000px;}
.v3_c00319{vertical-align:-14.760000px;}
.v0_c00319{vertical-align:0.000000px;}
.v4_c00319{vertical-align:14.760000px;}
.v2_c00319{vertical-align:27.000000px;}
.lsf_c00319{letter-spacing:-0.432000px;}
.ls14_c00319{letter-spacing:-0.180360px;}
.ls13_c00319{letter-spacing:-0.120240px;}
.ls10_c00319{letter-spacing:-0.072000px;}
.ls12_c00319{letter-spacing:-0.060120px;}
.lse_c00319{letter-spacing:0.000000px;}
.ls5_c00319{letter-spacing:0.072000px;}
.ls11_c00319{letter-spacing:0.144000px;}
.ls15_c00319{letter-spacing:0.180360px;}
.ls1_c00319{letter-spacing:0.191520px;}
.ls2_c00319{letter-spacing:0.360000px;}
.ls9_c00319{letter-spacing:2.520000px;}
.lsb_c00319{letter-spacing:3.240000px;}
.ls7_c00319{letter-spacing:3.960000px;}
.ls6_c00319{letter-spacing:4.680000px;}
.lsc_c00319{letter-spacing:12.324600px;}
.lsd_c00319{letter-spacing:12.390732px;}
.ls4_c00319{letter-spacing:20.016000px;}
.ls8_c00319{letter-spacing:22.601520px;}
.ls3_c00319{letter-spacing:22.961520px;}
.lsa_c00319{letter-spacing:30.744000px;}
.ls0_c00319{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00319{word-spacing:-72.000000px;}
.ws0_c00319{word-spacing:-18.000000px;}
.ws4_c00319{word-spacing:-17.928000px;}
.ws3_c00319{word-spacing:-17.568000px;}
.ws7_c00319{word-spacing:-15.030000px;}
.ws1_c00319{word-spacing:-12.161520px;}
.ws6_c00319{word-spacing:-9.720000px;}
.ws13_c00319{word-spacing:-0.432000px;}
.ws34_c00319{word-spacing:-0.420840px;}
.ws25_c00319{word-spacing:-0.360000px;}
.ws9_c00319{word-spacing:-0.162000px;}
.ws22_c00319{word-spacing:-0.144000px;}
.wsa_c00319{word-spacing:-0.072000px;}
.ws33_c00319{word-spacing:-0.060120px;}
.ws8_c00319{word-spacing:0.000000px;}
.ws2e_c00319{word-spacing:0.060120px;}
.ws31_c00319{word-spacing:0.180360px;}
.ws1c_c00319{word-spacing:0.360000px;}
.wsb_c00319{word-spacing:1.008000px;}
.ws1a_c00319{word-spacing:1.080000px;}
.ws21_c00319{word-spacing:2.520000px;}
.ws2a_c00319{word-spacing:3.168000px;}
.ws11_c00319{word-spacing:3.240000px;}
.ws10_c00319{word-spacing:3.528000px;}
.wsf_c00319{word-spacing:3.600000px;}
.wsc_c00319{word-spacing:3.888000px;}
.ws5_c00319{word-spacing:4.176000px;}
.ws16_c00319{word-spacing:4.320000px;}
.wsd_c00319{word-spacing:4.608000px;}
.wse_c00319{word-spacing:4.680000px;}
.ws2d_c00319{word-spacing:5.040000px;}
.ws18_c00319{word-spacing:5.328000px;}
.ws17_c00319{word-spacing:5.400000px;}
.ws23_c00319{word-spacing:6.480000px;}
.ws19_c00319{word-spacing:6.768000px;}
.ws12_c00319{word-spacing:6.840000px;}
.ws14_c00319{word-spacing:8.928000px;}
.ws15_c00319{word-spacing:9.000000px;}
.ws24_c00319{word-spacing:10.080000px;}
.ws29_c00319{word-spacing:11.448000px;}
.ws28_c00319{word-spacing:11.520000px;}
.ws2f_c00319{word-spacing:12.024000px;}
.ws32_c00319{word-spacing:12.144240px;}
.ws30_c00319{word-spacing:12.444840px;}
.ws2c_c00319{word-spacing:12.600000px;}
.ws1d_c00319{word-spacing:12.888000px;}
.ws2b_c00319{word-spacing:12.960000px;}
.ws1b_c00319{word-spacing:15.408000px;}
.ws1f_c00319{word-spacing:18.648000px;}
.ws1e_c00319{word-spacing:19.080000px;}
.ws27_c00319{word-spacing:21.960000px;}
.ws26_c00319{word-spacing:22.248000px;}
.ws20_c00319{word-spacing:24.768000px;}
._3_c00319{margin-left:-6.840000px;}
._8_c00319{margin-left:-3.888000px;}
._2_c00319{margin-left:-1.152000px;}
._1_c00319{width:1.117440px;}
._0_c00319{width:3.168000px;}
._c_c00319{width:5.040000px;}
._a_c00319{width:6.075360px;}
._4_c00319{width:7.128000px;}
._5_c00319{width:8.784000px;}
._d_c00319{width:12.444840px;}
._6_c00319{width:14.313600px;}
._7_c00319{width:15.480000px;}
._9_c00319{width:19.186560px;}
._b_c00319{width:22.536000px;}
.fc0_c00319{color:rgb(0,0,0);}
.fs4_c00319{font-size:38.880000px;}
.fs2_c00319{font-size:47.880000px;}
.fs3_c00319{font-size:51.120000px;}
.fs0_c00319{font-size:54.000000px;}
.fs5_c00319{font-size:60.120000px;}
.fs1_c00319{font-size:72.000000px;}
.y0_c00319{bottom:0.000000px;}
.y26_c00319{bottom:57.240000px;}
.y25_c00319{bottom:109.795680px;}
.y24_c00319{bottom:132.210000px;}
.y27_c00319{bottom:144.900000px;}
.y23_c00319{bottom:174.600000px;}
.y22_c00319{bottom:206.100000px;}
.y21_c00319{bottom:237.150000px;}
.y20_c00319{bottom:268.200000px;}
.y1f_c00319{bottom:299.250000px;}
.y1e_c00319{bottom:330.480000px;}
.y1d_c00319{bottom:361.980000px;}
.y1c_c00319{bottom:393.030000px;}
.y1b_c00319{bottom:424.080000px;}
.y1a_c00319{bottom:455.130000px;}
.y19_c00319{bottom:486.180000px;}
.y18_c00319{bottom:517.230000px;}
.y17_c00319{bottom:548.280000px;}
.y16_c00319{bottom:579.960000px;}
.y15_c00319{bottom:612.360000px;}
.y14_c00319{bottom:643.410000px;}
.y13_c00319{bottom:674.460000px;}
.y12_c00319{bottom:705.690000px;}
.y11_c00319{bottom:737.190000px;}
.y10_c00319{bottom:768.240000px;}
.yf_c00319{bottom:799.290000px;}
.ye_c00319{bottom:830.340000px;}
.yd_c00319{bottom:861.390000px;}
.yc_c00319{bottom:892.440000px;}
.yb_c00319{bottom:923.490000px;}
.ya_c00319{bottom:954.540000px;}
.y9_c00319{bottom:985.590000px;}
.y8_c00319{bottom:1016.640000px;}
.y7_c00319{bottom:1047.690000px;}
.y6_c00319{bottom:1078.830000px;}
.y5_c00319{bottom:1110.330000px;}
.y4_c00319{bottom:1131.030000px;}
.y3_c00319{bottom:1150.915500px;}
.y2_c00319{bottom:1166.400000px;}
.y1_c00319{bottom:1197.450000px;}
.h7_c00319{height:38.158594px;}
.h2_c00319{height:52.998047px;}
.h8_c00319{height:59.004492px;}
.h3_c00319{height:70.664062px;}
.h4_c00319{height:73.991602px;}
.h6_c00319{height:75.093750px;}
.h5_c00319{height:143.542969px;}
.h0_c00319{height:1262.880000px;}
.h1_c00319{height:1263.000000px;}
.w0_c00319{width:893.070000px;}
.w1_c00319{width:893.250000px;}
.x0_c00319{left:0.000000px;}
.x2_c00319{left:127.620000px;}
.x3_c00319{left:154.620000px;}
.x1_c00319{left:446.580000px;}
@media print{
.v1_c00319{vertical-align:-55.056000pt;}
.v5_c00319{vertical-align:-18.560000pt;}
.v3_c00319{vertical-align:-13.120000pt;}
.v0_c00319{vertical-align:0.000000pt;}
.v4_c00319{vertical-align:13.120000pt;}
.v2_c00319{vertical-align:24.000000pt;}
.lsf_c00319{letter-spacing:-0.384000pt;}
.ls14_c00319{letter-spacing:-0.160320pt;}
.ls13_c00319{letter-spacing:-0.106880pt;}
.ls10_c00319{letter-spacing:-0.064000pt;}
.ls12_c00319{letter-spacing:-0.053440pt;}
.lse_c00319{letter-spacing:0.000000pt;}
.ls5_c00319{letter-spacing:0.064000pt;}
.ls11_c00319{letter-spacing:0.128000pt;}
.ls15_c00319{letter-spacing:0.160320pt;}
.ls1_c00319{letter-spacing:0.170240pt;}
.ls2_c00319{letter-spacing:0.320000pt;}
.ls9_c00319{letter-spacing:2.240000pt;}
.lsb_c00319{letter-spacing:2.880000pt;}
.ls7_c00319{letter-spacing:3.520000pt;}
.ls6_c00319{letter-spacing:4.160000pt;}
.lsc_c00319{letter-spacing:10.955200pt;}
.lsd_c00319{letter-spacing:11.013984pt;}
.ls4_c00319{letter-spacing:17.792000pt;}
.ls8_c00319{letter-spacing:20.090240pt;}
.ls3_c00319{letter-spacing:20.410240pt;}
.lsa_c00319{letter-spacing:27.328000pt;}
.ls0_c00319{letter-spacing:284.016000pt;}
.ws2_c00319{word-spacing:-64.000000pt;}
.ws0_c00319{word-spacing:-16.000000pt;}
.ws4_c00319{word-spacing:-15.936000pt;}
.ws3_c00319{word-spacing:-15.616000pt;}
.ws7_c00319{word-spacing:-13.360000pt;}
.ws1_c00319{word-spacing:-10.810240pt;}
.ws6_c00319{word-spacing:-8.640000pt;}
.ws13_c00319{word-spacing:-0.384000pt;}
.ws34_c00319{word-spacing:-0.374080pt;}
.ws25_c00319{word-spacing:-0.320000pt;}
.ws9_c00319{word-spacing:-0.144000pt;}
.ws22_c00319{word-spacing:-0.128000pt;}
.wsa_c00319{word-spacing:-0.064000pt;}
.ws33_c00319{word-spacing:-0.053440pt;}
.ws8_c00319{word-spacing:0.000000pt;}
.ws2e_c00319{word-spacing:0.053440pt;}
.ws31_c00319{word-spacing:0.160320pt;}
.ws1c_c00319{word-spacing:0.320000pt;}
.wsb_c00319{word-spacing:0.896000pt;}
.ws1a_c00319{word-spacing:0.960000pt;}
.ws21_c00319{word-spacing:2.240000pt;}
.ws2a_c00319{word-spacing:2.816000pt;}
.ws11_c00319{word-spacing:2.880000pt;}
.ws10_c00319{word-spacing:3.136000pt;}
.wsf_c00319{word-spacing:3.200000pt;}
.wsc_c00319{word-spacing:3.456000pt;}
.ws5_c00319{word-spacing:3.712000pt;}
.ws16_c00319{word-spacing:3.840000pt;}
.wsd_c00319{word-spacing:4.096000pt;}
.wse_c00319{word-spacing:4.160000pt;}
.ws2d_c00319{word-spacing:4.480000pt;}
.ws18_c00319{word-spacing:4.736000pt;}
.ws17_c00319{word-spacing:4.800000pt;}
.ws23_c00319{word-spacing:5.760000pt;}
.ws19_c00319{word-spacing:6.016000pt;}
.ws12_c00319{word-spacing:6.080000pt;}
.ws14_c00319{word-spacing:7.936000pt;}
.ws15_c00319{word-spacing:8.000000pt;}
.ws24_c00319{word-spacing:8.960000pt;}
.ws29_c00319{word-spacing:10.176000pt;}
.ws28_c00319{word-spacing:10.240000pt;}
.ws2f_c00319{word-spacing:10.688000pt;}
.ws32_c00319{word-spacing:10.794880pt;}
.ws30_c00319{word-spacing:11.062080pt;}
.ws2c_c00319{word-spacing:11.200000pt;}
.ws1d_c00319{word-spacing:11.456000pt;}
.ws2b_c00319{word-spacing:11.520000pt;}
.ws1b_c00319{word-spacing:13.696000pt;}
.ws1f_c00319{word-spacing:16.576000pt;}
.ws1e_c00319{word-spacing:16.960000pt;}
.ws27_c00319{word-spacing:19.520000pt;}
.ws26_c00319{word-spacing:19.776000pt;}
.ws20_c00319{word-spacing:22.016000pt;}
._3_c00319{margin-left:-6.080000pt;}
._8_c00319{margin-left:-3.456000pt;}
._2_c00319{margin-left:-1.024000pt;}
._1_c00319{width:0.993280pt;}
._0_c00319{width:2.816000pt;}
._c_c00319{width:4.480000pt;}
._a_c00319{width:5.400320pt;}
._4_c00319{width:6.336000pt;}
._5_c00319{width:7.808000pt;}
._d_c00319{width:11.062080pt;}
._6_c00319{width:12.723200pt;}
._7_c00319{width:13.760000pt;}
._9_c00319{width:17.054720pt;}
._b_c00319{width:20.032000pt;}
.fs4_c00319{font-size:34.560000pt;}
.fs2_c00319{font-size:42.560000pt;}
.fs3_c00319{font-size:45.440000pt;}
.fs0_c00319{font-size:48.000000pt;}
.fs5_c00319{font-size:53.440000pt;}
.fs1_c00319{font-size:64.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y26_c00319{bottom:50.880000pt;}
.y25_c00319{bottom:97.596160pt;}
.y24_c00319{bottom:117.520000pt;}
.y27_c00319{bottom:128.800000pt;}
.y23_c00319{bottom:155.200000pt;}
.y22_c00319{bottom:183.200000pt;}
.y21_c00319{bottom:210.800000pt;}
.y20_c00319{bottom:238.400000pt;}
.y1f_c00319{bottom:266.000000pt;}
.y1e_c00319{bottom:293.760000pt;}
.y1d_c00319{bottom:321.760000pt;}
.y1c_c00319{bottom:349.360000pt;}
.y1b_c00319{bottom:376.960000pt;}
.y1a_c00319{bottom:404.560000pt;}
.y19_c00319{bottom:432.160000pt;}
.y18_c00319{bottom:459.760000pt;}
.y17_c00319{bottom:487.360000pt;}
.y16_c00319{bottom:515.520000pt;}
.y15_c00319{bottom:544.320000pt;}
.y14_c00319{bottom:571.920000pt;}
.y13_c00319{bottom:599.520000pt;}
.y12_c00319{bottom:627.280000pt;}
.y11_c00319{bottom:655.280000pt;}
.y10_c00319{bottom:682.880000pt;}
.yf_c00319{bottom:710.480000pt;}
.ye_c00319{bottom:738.080000pt;}
.yd_c00319{bottom:765.680000pt;}
.yc_c00319{bottom:793.280000pt;}
.yb_c00319{bottom:820.880000pt;}
.ya_c00319{bottom:848.480000pt;}
.y9_c00319{bottom:876.080000pt;}
.y8_c00319{bottom:903.680000pt;}
.y7_c00319{bottom:931.280000pt;}
.y6_c00319{bottom:958.960000pt;}
.y5_c00319{bottom:986.960000pt;}
.y4_c00319{bottom:1005.360000pt;}
.y3_c00319{bottom:1023.036000pt;}
.y2_c00319{bottom:1036.800000pt;}
.y1_c00319{bottom:1064.400000pt;}
.h7_c00319{height:33.918750pt;}
.h2_c00319{height:47.109375pt;}
.h8_c00319{height:52.448437pt;}
.h3_c00319{height:62.812500pt;}
.h4_c00319{height:65.770312pt;}
.h6_c00319{height:66.750000pt;}
.h5_c00319{height:127.593750pt;}
.h0_c00319{height:1122.560000pt;}
.h1_c00319{height:1122.666667pt;}
.w0_c00319{width:793.840000pt;}
.w1_c00319{width:794.000000pt;}
.x0_c00319{left:0.000000pt;}
.x2_c00319{left:113.440000pt;}
.x3_c00319{left:137.440000pt;}
.x1_c00319{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a41c84ce8be09c0ab297fd41.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_f5732ecd80e86730b0369a67.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;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_c00320;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00320;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:3.333984;font-style:normal;font-weight: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_c00320;src:url('chunks/assets/font_f033faeb3fd1d022459f083b.woff2')format("woff");}.ff7_c00320{font-family:ff7_c00320;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_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);}
.v1_c00320{vertical-align:-82.800000px;}
.v2_c00320{vertical-align:-14.760000px;}
.v0_c00320{vertical-align:0.000000px;}
.v3_c00320{vertical-align:14.760000px;}
.lsf_c00320{letter-spacing:-0.576000px;}
.lse_c00320{letter-spacing:-0.432000px;}
.lsd_c00320{letter-spacing:-0.360000px;}
.lsc_c00320{letter-spacing:-0.108000px;}
.lsb_c00320{letter-spacing:0.000000px;}
.ls2_c00320{letter-spacing:0.072000px;}
.ls4_c00320{letter-spacing:0.144000px;}
.ls8_c00320{letter-spacing:2.160000px;}
.ls7_c00320{letter-spacing:2.520000px;}
.ls9_c00320{letter-spacing:9.720000px;}
.ls6_c00320{letter-spacing:20.016000px;}
.lsa_c00320{letter-spacing:20.160000px;}
.ls5_c00320{letter-spacing:22.961520px;}
.ls3_c00320{letter-spacing:30.744000px;}
.ls1_c00320{letter-spacing:38.520000px;}
.ls0_c00320{letter-spacing:90.000000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00320{word-spacing:-72.000000px;}
.ws4_c00320{word-spacing:-18.144000px;}
.ws5_c00320{word-spacing:-18.072000px;}
.ws2_c00320{word-spacing:-18.000000px;}
.ws1_c00320{word-spacing:-17.568000px;}
.wsd_c00320{word-spacing:-0.144000px;}
.ws11_c00320{word-spacing:-0.072000px;}
.ws6_c00320{word-spacing:0.000000px;}
.ws8_c00320{word-spacing:0.162000px;}
.ws7_c00320{word-spacing:0.270000px;}
.wsa_c00320{word-spacing:0.360000px;}
.ws17_c00320{word-spacing:0.576000px;}
.ws2a_c00320{word-spacing:0.648000px;}
.ws14_c00320{word-spacing:2.016000px;}
.ws22_c00320{word-spacing:2.160000px;}
.ws16_c00320{word-spacing:2.448000px;}
.ws15_c00320{word-spacing:2.520000px;}
.ws3_c00320{word-spacing:4.176000px;}
.ws23_c00320{word-spacing:4.248000px;}
.ws24_c00320{word-spacing:4.320000px;}
.ws2c_c00320{word-spacing:4.968000px;}
.ws10_c00320{word-spacing:5.040000px;}
.ws12_c00320{word-spacing:6.048000px;}
.ws13_c00320{word-spacing:6.120000px;}
.ws21_c00320{word-spacing:7.128000px;}
.ws1a_c00320{word-spacing:7.200000px;}
.ws25_c00320{word-spacing:9.720000px;}
.ws1b_c00320{word-spacing:11.160000px;}
.ws1f_c00320{word-spacing:12.888000px;}
.ws20_c00320{word-spacing:12.960000px;}
.ws2b_c00320{word-spacing:13.968000px;}
.wse_c00320{word-spacing:15.048000px;}
.wsf_c00320{word-spacing:15.120000px;}
.ws29_c00320{word-spacing:18.288000px;}
.ws28_c00320{word-spacing:18.360000px;}
.ws26_c00320{word-spacing:20.160000px;}
.ws27_c00320{word-spacing:20.376000px;}
.ws19_c00320{word-spacing:23.688000px;}
.ws18_c00320{word-spacing:23.760000px;}
.ws1d_c00320{word-spacing:24.336000px;}
.ws1e_c00320{word-spacing:24.480000px;}
.ws9_c00320{word-spacing:25.920000px;}
.ws1c_c00320{word-spacing:35.568000px;}
.wsc_c00320{word-spacing:38.448000px;}
.wsb_c00320{word-spacing:38.520000px;}
._3_c00320{margin-left:-6.645600px;}
._6_c00320{margin-left:-4.604400px;}
._1_c00320{margin-left:-1.058400px;}
._0_c00320{width:1.220400px;}
._a_c00320{width:4.104000px;}
._4_c00320{width:5.112000px;}
._5_c00320{width:7.200000px;}
._8_c00320{width:12.816000px;}
._7_c00320{width:14.040000px;}
._9_c00320{width:20.520000px;}
._2_c00320{width:38.520000px;}
.fc0_c00320{color:rgb(0,0,0);}
.fs2_c00320{font-size:51.120000px;}
.fs0_c00320{font-size:54.000000px;}
.fs1_c00320{font-size:72.000000px;}
.y0_c00320{bottom:0.000000px;}
.y25_c00320{bottom:57.240000px;}
.y24_c00320{bottom:146.700000px;}
.y23_c00320{bottom:177.750000px;}
.y22_c00320{bottom:208.800000px;}
.y21_c00320{bottom:239.850000px;}
.y20_c00320{bottom:270.900000px;}
.y1f_c00320{bottom:301.950000px;}
.y1e_c00320{bottom:333.000000px;}
.y1d_c00320{bottom:363.960000px;}
.y1c_c00320{bottom:395.010000px;}
.y1b_c00320{bottom:426.060000px;}
.y1a_c00320{bottom:457.110000px;}
.y19_c00320{bottom:488.160000px;}
.y18_c00320{bottom:519.210000px;}
.y17_c00320{bottom:550.260000px;}
.y16_c00320{bottom:581.310000px;}
.y15_c00320{bottom:612.360000px;}
.y14_c00320{bottom:643.410000px;}
.y13_c00320{bottom:674.460000px;}
.y12_c00320{bottom:705.510000px;}
.y11_c00320{bottom:736.560000px;}
.y10_c00320{bottom:767.610000px;}
.yf_c00320{bottom:798.660000px;}
.ye_c00320{bottom:829.890000px;}
.yd_c00320{bottom:861.390000px;}
.yc_c00320{bottom:892.440000px;}
.yb_c00320{bottom:923.490000px;}
.ya_c00320{bottom:954.540000px;}
.y9_c00320{bottom:985.680000px;}
.y8_c00320{bottom:1017.180000px;}
.y7_c00320{bottom:1048.230000px;}
.y6_c00320{bottom:1079.280000px;}
.y5_c00320{bottom:1131.030000px;}
.y4_c00320{bottom:1150.920000px;}
.y3_c00320{bottom:1166.404500px;}
.y2_c00320{bottom:1181.970000px;}
.y1_c00320{bottom:1197.450000px;}
.h3_c00320{height:52.971680px;}
.h2_c00320{height:52.998047px;}
.h4_c00320{height:70.664062px;}
.h5_c00320{height:75.093750px;}
.h6_c00320{height:143.542969px;}
.h0_c00320{height:1262.880000px;}
.h1_c00320{height:1263.000000px;}
.w0_c00320{width:893.070000px;}
.w1_c00320{width:893.250000px;}
.x0_c00320{left:0.000000px;}
.x3_c00320{left:127.620000px;}
.x4_c00320{left:154.620000px;}
.x2_c00320{left:425.160000px;}
.x1_c00320{left:446.580000px;}
.x5_c00320{left:738.540000px;}
@media print{
.v1_c00320{vertical-align:-73.600000pt;}
.v2_c00320{vertical-align:-13.120000pt;}
.v0_c00320{vertical-align:0.000000pt;}
.v3_c00320{vertical-align:13.120000pt;}
.lsf_c00320{letter-spacing:-0.512000pt;}
.lse_c00320{letter-spacing:-0.384000pt;}
.lsd_c00320{letter-spacing:-0.320000pt;}
.lsc_c00320{letter-spacing:-0.096000pt;}
.lsb_c00320{letter-spacing:0.000000pt;}
.ls2_c00320{letter-spacing:0.064000pt;}
.ls4_c00320{letter-spacing:0.128000pt;}
.ls8_c00320{letter-spacing:1.920000pt;}
.ls7_c00320{letter-spacing:2.240000pt;}
.ls9_c00320{letter-spacing:8.640000pt;}
.ls6_c00320{letter-spacing:17.792000pt;}
.lsa_c00320{letter-spacing:17.920000pt;}
.ls5_c00320{letter-spacing:20.410240pt;}
.ls3_c00320{letter-spacing:27.328000pt;}
.ls1_c00320{letter-spacing:34.240000pt;}
.ls0_c00320{letter-spacing:80.000000pt;}
.ws0_c00320{word-spacing:-64.000000pt;}
.ws4_c00320{word-spacing:-16.128000pt;}
.ws5_c00320{word-spacing:-16.064000pt;}
.ws2_c00320{word-spacing:-16.000000pt;}
.ws1_c00320{word-spacing:-15.616000pt;}
.wsd_c00320{word-spacing:-0.128000pt;}
.ws11_c00320{word-spacing:-0.064000pt;}
.ws6_c00320{word-spacing:0.000000pt;}
.ws8_c00320{word-spacing:0.144000pt;}
.ws7_c00320{word-spacing:0.240000pt;}
.wsa_c00320{word-spacing:0.320000pt;}
.ws17_c00320{word-spacing:0.512000pt;}
.ws2a_c00320{word-spacing:0.576000pt;}
.ws14_c00320{word-spacing:1.792000pt;}
.ws22_c00320{word-spacing:1.920000pt;}
.ws16_c00320{word-spacing:2.176000pt;}
.ws15_c00320{word-spacing:2.240000pt;}
.ws3_c00320{word-spacing:3.712000pt;}
.ws23_c00320{word-spacing:3.776000pt;}
.ws24_c00320{word-spacing:3.840000pt;}
.ws2c_c00320{word-spacing:4.416000pt;}
.ws10_c00320{word-spacing:4.480000pt;}
.ws12_c00320{word-spacing:5.376000pt;}
.ws13_c00320{word-spacing:5.440000pt;}
.ws21_c00320{word-spacing:6.336000pt;}
.ws1a_c00320{word-spacing:6.400000pt;}
.ws25_c00320{word-spacing:8.640000pt;}
.ws1b_c00320{word-spacing:9.920000pt;}
.ws1f_c00320{word-spacing:11.456000pt;}
.ws20_c00320{word-spacing:11.520000pt;}
.ws2b_c00320{word-spacing:12.416000pt;}
.wse_c00320{word-spacing:13.376000pt;}
.wsf_c00320{word-spacing:13.440000pt;}
.ws29_c00320{word-spacing:16.256000pt;}
.ws28_c00320{word-spacing:16.320000pt;}
.ws26_c00320{word-spacing:17.920000pt;}
.ws27_c00320{word-spacing:18.112000pt;}
.ws19_c00320{word-spacing:21.056000pt;}
.ws18_c00320{word-spacing:21.120000pt;}
.ws1d_c00320{word-spacing:21.632000pt;}
.ws1e_c00320{word-spacing:21.760000pt;}
.ws9_c00320{word-spacing:23.040000pt;}
.ws1c_c00320{word-spacing:31.616000pt;}
.wsc_c00320{word-spacing:34.176000pt;}
.wsb_c00320{word-spacing:34.240000pt;}
._3_c00320{margin-left:-5.907200pt;}
._6_c00320{margin-left:-4.092800pt;}
._1_c00320{margin-left:-0.940800pt;}
._0_c00320{width:1.084800pt;}
._a_c00320{width:3.648000pt;}
._4_c00320{width:4.544000pt;}
._5_c00320{width:6.400000pt;}
._8_c00320{width:11.392000pt;}
._7_c00320{width:12.480000pt;}
._9_c00320{width:18.240000pt;}
._2_c00320{width:34.240000pt;}
.fs2_c00320{font-size:45.440000pt;}
.fs0_c00320{font-size:48.000000pt;}
.fs1_c00320{font-size:64.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.y25_c00320{bottom:50.880000pt;}
.y24_c00320{bottom:130.400000pt;}
.y23_c00320{bottom:158.000000pt;}
.y22_c00320{bottom:185.600000pt;}
.y21_c00320{bottom:213.200000pt;}
.y20_c00320{bottom:240.800000pt;}
.y1f_c00320{bottom:268.400000pt;}
.y1e_c00320{bottom:296.000000pt;}
.y1d_c00320{bottom:323.520000pt;}
.y1c_c00320{bottom:351.120000pt;}
.y1b_c00320{bottom:378.720000pt;}
.y1a_c00320{bottom:406.320000pt;}
.y19_c00320{bottom:433.920000pt;}
.y18_c00320{bottom:461.520000pt;}
.y17_c00320{bottom:489.120000pt;}
.y16_c00320{bottom:516.720000pt;}
.y15_c00320{bottom:544.320000pt;}
.y14_c00320{bottom:571.920000pt;}
.y13_c00320{bottom:599.520000pt;}
.y12_c00320{bottom:627.120000pt;}
.y11_c00320{bottom:654.720000pt;}
.y10_c00320{bottom:682.320000pt;}
.yf_c00320{bottom:709.920000pt;}
.ye_c00320{bottom:737.680000pt;}
.yd_c00320{bottom:765.680000pt;}
.yc_c00320{bottom:793.280000pt;}
.yb_c00320{bottom:820.880000pt;}
.ya_c00320{bottom:848.480000pt;}
.y9_c00320{bottom:876.160000pt;}
.y8_c00320{bottom:904.160000pt;}
.y7_c00320{bottom:931.760000pt;}
.y6_c00320{bottom:959.360000pt;}
.y5_c00320{bottom:1005.360000pt;}
.y4_c00320{bottom:1023.040000pt;}
.y3_c00320{bottom:1036.804000pt;}
.y2_c00320{bottom:1050.640000pt;}
.y1_c00320{bottom:1064.400000pt;}
.h3_c00320{height:47.085938pt;}
.h2_c00320{height:47.109375pt;}
.h4_c00320{height:62.812500pt;}
.h5_c00320{height:66.750000pt;}
.h6_c00320{height:127.593750pt;}
.h0_c00320{height:1122.560000pt;}
.h1_c00320{height:1122.666667pt;}
.w0_c00320{width:793.840000pt;}
.w1_c00320{width:794.000000pt;}
.x0_c00320{left:0.000000pt;}
.x3_c00320{left:113.440000pt;}
.x4_c00320{left:137.440000pt;}
.x2_c00320{left:377.920000pt;}
.x1_c00320{left:396.960000pt;}
.x5_c00320{left:656.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_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_6a07a5635b99114082eace98.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_d491eeaca3413bc5a1e0693b.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;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_c00321;src:url('chunks/assets/font_f355e0acd7b5caeba0cc5e5c.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:3.333984;font-style: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);}
.v1_c00321{vertical-align:-61.938000px;}
.v4_c00321{vertical-align:-10.800000px;}
.v0_c00321{vertical-align:0.000000px;}
.v3_c00321{vertical-align:31.320000px;}
.v5_c00321{vertical-align:36.360000px;}
.v2_c00321{vertical-align:42.120000px;}
.ls7_c00321{letter-spacing:-0.360000px;}
.lsa_c00321{letter-spacing:-0.102240px;}
.ls8_c00321{letter-spacing:-0.042120px;}
.ls6_c00321{letter-spacing:0.000000px;}
.ls1_c00321{letter-spacing:0.072000px;}
.ls9_c00321{letter-spacing:0.102240px;}
.ls2_c00321{letter-spacing:0.144000px;}
.ls4_c00321{letter-spacing:0.720000px;}
.ls3_c00321{letter-spacing:1.440000px;}
.ls5_c00321{letter-spacing:6.480000px;}
.ls0_c00321{letter-spacing:319.518000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00321{word-spacing:-72.000000px;}
.ws2_c00321{word-spacing:-51.222240px;}
.ws1_c00321{word-spacing:-51.120000px;}
.ws5_c00321{word-spacing:-51.017760px;}
.ws3_c00321{word-spacing:-42.077880px;}
.ws0_c00321{word-spacing:-18.000000px;}
.ws1f_c00321{word-spacing:-0.432000px;}
.ws1c_c00321{word-spacing:-0.360000px;}
.ws7_c00321{word-spacing:-0.162000px;}
.ws20_c00321{word-spacing:-0.144000px;}
.wsa_c00321{word-spacing:-0.072000px;}
.ws6_c00321{word-spacing:0.000000px;}
.ws26_c00321{word-spacing:0.042120px;}
.ws1e_c00321{word-spacing:0.360000px;}
.ws25_c00321{word-spacing:1.368000px;}
.ws24_c00321{word-spacing:1.440000px;}
.ws16_c00321{word-spacing:1.800000px;}
.ws23_c00321{word-spacing:2.016000px;}
.ws22_c00321{word-spacing:2.088000px;}
.wsd_c00321{word-spacing:3.168000px;}
.wsc_c00321{word-spacing:3.240000px;}
.wsf_c00321{word-spacing:3.528000px;}
.wse_c00321{word-spacing:3.600000px;}
.ws1d_c00321{word-spacing:4.176000px;}
.ws14_c00321{word-spacing:4.248000px;}
.ws15_c00321{word-spacing:4.608000px;}
.ws13_c00321{word-spacing:4.680000px;}
.ws18_c00321{word-spacing:7.128000px;}
.ws17_c00321{word-spacing:7.200000px;}
.ws8_c00321{word-spacing:7.488000px;}
.ws9_c00321{word-spacing:7.560000px;}
.ws21_c00321{word-spacing:13.608000px;}
.ws12_c00321{word-spacing:16.488000px;}
.ws10_c00321{word-spacing:17.208000px;}
.ws11_c00321{word-spacing:17.280000px;}
.ws19_c00321{word-spacing:18.648000px;}
.ws1b_c00321{word-spacing:21.168000px;}
.ws1a_c00321{word-spacing:23.400000px;}
.wsb_c00321{word-spacing:28.080000px;}
._0_c00321{margin-left:-1.375200px;}
._1_c00321{width:1.080000px;}
._2_c00321{width:2.872800px;}
._4_c00321{width:3.967200px;}
._5_c00321{width:5.270400px;}
._3_c00321{width:7.488000px;}
._6_c00321{width:22.824000px;}
._7_c00321{width:24.040800px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs3_c00321{font-size:42.120000px;}
.fs2_c00321{font-size:51.120000px;}
.fs0_c00321{font-size:54.000000px;}
.fs1_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y27_c00321{bottom:57.240000px;}
.y26_c00321{bottom:118.800000px;}
.y25_c00321{bottom:127.890000px;}
.y24_c00321{bottom:163.890000px;}
.y23_c00321{bottom:172.980000px;}
.y22_c00321{bottom:209.970000px;}
.y21_c00321{bottom:241.020000px;}
.y20_c00321{bottom:272.070000px;}
.y1f_c00321{bottom:303.120000px;}
.y1e_c00321{bottom:334.170000px;}
.y1d_c00321{bottom:365.220000px;}
.y1c_c00321{bottom:396.270000px;}
.y1b_c00321{bottom:427.320000px;}
.y1a_c00321{bottom:458.370000px;}
.y19_c00321{bottom:489.420000px;}
.y18_c00321{bottom:520.470000px;}
.y17_c00321{bottom:551.520000px;}
.y16_c00321{bottom:582.570000px;}
.y15_c00321{bottom:613.620000px;}
.y14_c00321{bottom:644.670000px;}
.y13_c00321{bottom:675.720000px;}
.y12_c00321{bottom:706.770000px;}
.y11_c00321{bottom:737.820000px;}
.y10_c00321{bottom:768.870000px;}
.yf_c00321{bottom:799.920000px;}
.ye_c00321{bottom:830.970000px;}
.yd_c00321{bottom:861.930000px;}
.yc_c00321{bottom:892.980000px;}
.yb_c00321{bottom:924.030000px;}
.ya_c00321{bottom:955.080000px;}
.y9_c00321{bottom:986.130000px;}
.y8_c00321{bottom:1017.180000px;}
.y7_c00321{bottom:1048.230000px;}
.y6_c00321{bottom:1079.280000px;}
.y5_c00321{bottom:1110.330000px;}
.y4_c00321{bottom:1131.030000px;}
.y3_c00321{bottom:1150.915500px;}
.y2_c00321{bottom:1166.400000px;}
.y1_c00321{bottom:1197.450000px;}
.h4_c00321{height:50.027344px;}
.h2_c00321{height:52.998047px;}
.h3_c00321{height:70.664062px;}
.h5_c00321{height:144.035508px;}
.h6_c00321{height:179.902969px;}
.h0_c00321{height:1262.880000px;}
.h1_c00321{height:1263.000000px;}
.w0_c00321{width:893.070000px;}
.w1_c00321{width:893.250000px;}
.x0_c00321{left:0.000000px;}
.x2_c00321{left:127.620000px;}
.x4_c00321{left:299.880000px;}
.x1_c00321{left:446.580000px;}
.x3_c00321{left:684.090000px;}
@media print{
.v1_c00321{vertical-align:-55.056000pt;}
.v4_c00321{vertical-align:-9.600000pt;}
.v0_c00321{vertical-align:0.000000pt;}
.v3_c00321{vertical-align:27.840000pt;}
.v5_c00321{vertical-align:32.320000pt;}
.v2_c00321{vertical-align:37.440000pt;}
.ls7_c00321{letter-spacing:-0.320000pt;}
.lsa_c00321{letter-spacing:-0.090880pt;}
.ls8_c00321{letter-spacing:-0.037440pt;}
.ls6_c00321{letter-spacing:0.000000pt;}
.ls1_c00321{letter-spacing:0.064000pt;}
.ls9_c00321{letter-spacing:0.090880pt;}
.ls2_c00321{letter-spacing:0.128000pt;}
.ls4_c00321{letter-spacing:0.640000pt;}
.ls3_c00321{letter-spacing:1.280000pt;}
.ls5_c00321{letter-spacing:5.760000pt;}
.ls0_c00321{letter-spacing:284.016000pt;}
.ws4_c00321{word-spacing:-64.000000pt;}
.ws2_c00321{word-spacing:-45.530880pt;}
.ws1_c00321{word-spacing:-45.440000pt;}
.ws5_c00321{word-spacing:-45.349120pt;}
.ws3_c00321{word-spacing:-37.402560pt;}
.ws0_c00321{word-spacing:-16.000000pt;}
.ws1f_c00321{word-spacing:-0.384000pt;}
.ws1c_c00321{word-spacing:-0.320000pt;}
.ws7_c00321{word-spacing:-0.144000pt;}
.ws20_c00321{word-spacing:-0.128000pt;}
.wsa_c00321{word-spacing:-0.064000pt;}
.ws6_c00321{word-spacing:0.000000pt;}
.ws26_c00321{word-spacing:0.037440pt;}
.ws1e_c00321{word-spacing:0.320000pt;}
.ws25_c00321{word-spacing:1.216000pt;}
.ws24_c00321{word-spacing:1.280000pt;}
.ws16_c00321{word-spacing:1.600000pt;}
.ws23_c00321{word-spacing:1.792000pt;}
.ws22_c00321{word-spacing:1.856000pt;}
.wsd_c00321{word-spacing:2.816000pt;}
.wsc_c00321{word-spacing:2.880000pt;}
.wsf_c00321{word-spacing:3.136000pt;}
.wse_c00321{word-spacing:3.200000pt;}
.ws1d_c00321{word-spacing:3.712000pt;}
.ws14_c00321{word-spacing:3.776000pt;}
.ws15_c00321{word-spacing:4.096000pt;}
.ws13_c00321{word-spacing:4.160000pt;}
.ws18_c00321{word-spacing:6.336000pt;}
.ws17_c00321{word-spacing:6.400000pt;}
.ws8_c00321{word-spacing:6.656000pt;}
.ws9_c00321{word-spacing:6.720000pt;}
.ws21_c00321{word-spacing:12.096000pt;}
.ws12_c00321{word-spacing:14.656000pt;}
.ws10_c00321{word-spacing:15.296000pt;}
.ws11_c00321{word-spacing:15.360000pt;}
.ws19_c00321{word-spacing:16.576000pt;}
.ws1b_c00321{word-spacing:18.816000pt;}
.ws1a_c00321{word-spacing:20.800000pt;}
.wsb_c00321{word-spacing:24.960000pt;}
._0_c00321{margin-left:-1.222400pt;}
._1_c00321{width:0.960000pt;}
._2_c00321{width:2.553600pt;}
._4_c00321{width:3.526400pt;}
._5_c00321{width:4.684800pt;}
._3_c00321{width:6.656000pt;}
._6_c00321{width:20.288000pt;}
._7_c00321{width:21.369600pt;}
.fs3_c00321{font-size:37.440000pt;}
.fs2_c00321{font-size:45.440000pt;}
.fs0_c00321{font-size:48.000000pt;}
.fs1_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y27_c00321{bottom:50.880000pt;}
.y26_c00321{bottom:105.600000pt;}
.y25_c00321{bottom:113.680000pt;}
.y24_c00321{bottom:145.680000pt;}
.y23_c00321{bottom:153.760000pt;}
.y22_c00321{bottom:186.640000pt;}
.y21_c00321{bottom:214.240000pt;}
.y20_c00321{bottom:241.840000pt;}
.y1f_c00321{bottom:269.440000pt;}
.y1e_c00321{bottom:297.040000pt;}
.y1d_c00321{bottom:324.640000pt;}
.y1c_c00321{bottom:352.240000pt;}
.y1b_c00321{bottom:379.840000pt;}
.y1a_c00321{bottom:407.440000pt;}
.y19_c00321{bottom:435.040000pt;}
.y18_c00321{bottom:462.640000pt;}
.y17_c00321{bottom:490.240000pt;}
.y16_c00321{bottom:517.840000pt;}
.y15_c00321{bottom:545.440000pt;}
.y14_c00321{bottom:573.040000pt;}
.y13_c00321{bottom:600.640000pt;}
.y12_c00321{bottom:628.240000pt;}
.y11_c00321{bottom:655.840000pt;}
.y10_c00321{bottom:683.440000pt;}
.yf_c00321{bottom:711.040000pt;}
.ye_c00321{bottom:738.640000pt;}
.yd_c00321{bottom:766.160000pt;}
.yc_c00321{bottom:793.760000pt;}
.yb_c00321{bottom:821.360000pt;}
.ya_c00321{bottom:848.960000pt;}
.y9_c00321{bottom:876.560000pt;}
.y8_c00321{bottom:904.160000pt;}
.y7_c00321{bottom:931.760000pt;}
.y6_c00321{bottom:959.360000pt;}
.y5_c00321{bottom:986.960000pt;}
.y4_c00321{bottom:1005.360000pt;}
.y3_c00321{bottom:1023.036000pt;}
.y2_c00321{bottom:1036.800000pt;}
.y1_c00321{bottom:1064.400000pt;}
.h4_c00321{height:44.468750pt;}
.h2_c00321{height:47.109375pt;}
.h3_c00321{height:62.812500pt;}
.h5_c00321{height:128.031562pt;}
.h6_c00321{height:159.913750pt;}
.h0_c00321{height:1122.560000pt;}
.h1_c00321{height:1122.666667pt;}
.w0_c00321{width:793.840000pt;}
.w1_c00321{width:794.000000pt;}
.x0_c00321{left:0.000000pt;}
.x2_c00321{left:113.440000pt;}
.x4_c00321{left:266.560000pt;}
.x1_c00321{left:396.960000pt;}
.x3_c00321{left:608.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_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_9b035c5938d2df2c7eda96eb.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.284668;font-style:normal;font-weight:normal;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_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_4a4f7d1112da107596b8c735.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_4d84afd71707b413c11bc1b3.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_b9c68430fde631ebb750a094.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00322;src:url('chunks/assets/font_95d6a2fdcbb5ab40da6b86d2.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00322{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.256317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256317,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.256319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256319,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.v2_c00322{vertical-align:-83.520000px;}
.v1_c00322{vertical-align:-61.920000px;}
.v5_c00322{vertical-align:-10.916167px;}
.v3_c00322{vertical-align:-3.666079px;}
.v0_c00322{vertical-align:0.000000px;}
.v4_c00322{vertical-align:3.666079px;}
.v6_c00322{vertical-align:29.182200px;}
.ls11_c00322{letter-spacing:-2.188704px;}
.ls12_c00322{letter-spacing:-1.477375px;}
.ls10_c00322{letter-spacing:-1.400774px;}
.ls17_c00322{letter-spacing:-1.258505px;}
.ls18_c00322{letter-spacing:-1.203787px;}
.ls15_c00322{letter-spacing:-0.711329px;}
.ls1f_c00322{letter-spacing:-0.693090px;}
.ls14_c00322{letter-spacing:-0.656611px;}
.ls13_c00322{letter-spacing:-0.408559px;}
.lsf_c00322{letter-spacing:-0.175097px;}
.ls16_c00322{letter-spacing:-0.164153px;}
.lse_c00322{letter-spacing:-0.120240px;}
.ls9_c00322{letter-spacing:-0.108000px;}
.lsc_c00322{letter-spacing:-0.072000px;}
.lsa_c00322{letter-spacing:0.000000px;}
.lsd_c00322{letter-spacing:0.072000px;}
.lsb_c00322{letter-spacing:0.144000px;}
.ls2_c00322{letter-spacing:0.233462px;}
.ls3_c00322{letter-spacing:0.350194px;}
.ls7_c00322{letter-spacing:0.667288px;}
.ls1c_c00322{letter-spacing:0.682145px;}
.ls1b_c00322{letter-spacing:0.992215px;}
.ls1d_c00322{letter-spacing:1.108946px;}
.ls19_c00322{letter-spacing:1.149070px;}
.ls20_c00322{letter-spacing:1.459140px;}
.ls1a_c00322{letter-spacing:1.517506px;}
.ls8_c00322{letter-spacing:1.564922px;}
.ls1e_c00322{letter-spacing:1.692602px;}
.ls6_c00322{letter-spacing:2.801549px;}
.ls5_c00322{letter-spacing:88.970818px;}
.ls4_c00322{letter-spacing:238.568736px;}
.ls0_c00322{letter-spacing:725.580000px;}
.ls1_c00322{letter-spacing:2082.240000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-14.909760px;}
.ws2d_c00322{word-spacing:-14.883228px;}
.ws2b_c00322{word-spacing:-14.708131px;}
.ws2a_c00322{word-spacing:-13.540819px;}
.ws2e_c00322{word-spacing:-13.424088px;}
.ws2c_c00322{word-spacing:-13.190626px;}
.ws5_c00322{word-spacing:-12.782066px;}
.ws1_c00322{word-spacing:-11.789851px;}
.ws40_c00322{word-spacing:-3.330475px;}
.ws3f_c00322{word-spacing:-2.447698px;}
.ws44_c00322{word-spacing:-1.564922px;}
.ws3d_c00322{word-spacing:-1.517506px;}
.ws3b_c00322{word-spacing:-1.400774px;}
.ws41_c00322{word-spacing:-1.108946px;}
.ws3e_c00322{word-spacing:-0.992215px;}
.ws3a_c00322{word-spacing:-0.711329px;}
.ws42_c00322{word-spacing:-0.350194px;}
.ws45_c00322{word-spacing:-0.346545px;}
.ws38_c00322{word-spacing:-0.233462px;}
.ws32_c00322{word-spacing:-0.144000px;}
.ws3c_c00322{word-spacing:-0.116731px;}
.ws34_c00322{word-spacing:-0.072000px;}
.ws46_c00322{word-spacing:-0.058366px;}
.ws2f_c00322{word-spacing:0.000000px;}
.ws33_c00322{word-spacing:0.072000px;}
.ws31_c00322{word-spacing:0.162000px;}
.ws36_c00322{word-spacing:0.175097px;}
.ws30_c00322{word-spacing:0.270000px;}
.ws37_c00322{word-spacing:1.050581px;}
.ws35_c00322{word-spacing:1.167312px;}
.ws43_c00322{word-spacing:1.400774px;}
.ws39_c00322{word-spacing:2.188704px;}
.ws6_c00322{word-spacing:44.452578px;}
.ws26_c00322{word-spacing:55.428929px;}
.ws2_c00322{word-spacing:66.372449px;}
.ws20_c00322{word-spacing:82.891692px;}
.ws8_c00322{word-spacing:82.897164px;}
.ws7_c00322{word-spacing:84.538692px;}
.ws11_c00322{word-spacing:93.840684px;}
.ws1a_c00322{word-spacing:95.066358px;}
.ws18_c00322{word-spacing:106.026294px;}
.ws1b_c00322{word-spacing:152.224363px;}
.ws12_c00322{word-spacing:168.059637px;}
.ws1d_c00322{word-spacing:190.324228px;}
.ws4_c00322{word-spacing:190.329700px;}
.ws29_c00322{word-spacing:215.932065px;}
.wsd_c00322{word-spacing:219.598144px;}
.ws1e_c00322{word-spacing:230.525249px;}
.ws9_c00322{word-spacing:230.541664px;}
.ws25_c00322{word-spacing:230.995820px;}
.ws21_c00322{word-spacing:277.002378px;}
.ws1c_c00322{word-spacing:303.824946px;}
.ws27_c00322{word-spacing:305.701759px;}
.ws14_c00322{word-spacing:312.344476px;}
.wse_c00322{word-spacing:313.438828px;}
.ws23_c00322{word-spacing:326.932188px;}
.ws13_c00322{word-spacing:330.581852px;}
.ws10_c00322{word-spacing:337.881180px;}
.ws28_c00322{word-spacing:344.097099px;}
.wsa_c00322{word-spacing:358.712170px;}
.ws22_c00322{word-spacing:359.467273px;}
.ws19_c00322{word-spacing:364.752993px;}
.ws3_c00322{word-spacing:369.661162px;}
.ws1f_c00322{word-spacing:369.978524px;}
.wsf_c00322{word-spacing:419.279082px;}
.ws24_c00322{word-spacing:454.467970px;}
.wsc_c00322{word-spacing:457.220266px;}
.ws16_c00322{word-spacing:460.924647px;}
.ws15_c00322{word-spacing:493.186144px;}
.wsb_c00322{word-spacing:905.324579px;}
.ws17_c00322{word-spacing:919.934178px;}
._b_c00322{margin-left:-4.464968px;}
._7_c00322{margin-left:-2.259837px;}
._1_c00322{margin-left:-1.058400px;}
._0_c00322{width:1.225800px;}
._2_c00322{width:2.918035px;}
._8_c00322{width:3.932231px;}
._3_c00322{width:91.339213px;}
._6_c00322{width:153.089360px;}
._4_c00322{width:163.963334px;}
._a_c00322{width:168.131813px;}
._5_c00322{width:178.587762px;}
._9_c00322{width:273.575092px;}
.fc1_c00322{color:transparent;}
.fc0_c00322{color:rgb(0,0,0);}
.fs5_c00322{font-size:40.126200px;}
.fs0_c00322{font-size:54.000000px;}
.fs4_c00322{font-size:54.717600px;}
.fs3_c00322{font-size:58.365600px;}
.fs2_c00322{font-size:60.120000px;}
.fs6_c00322{font-size:69.309000px;}
.fs1_c00322{font-size:72.000000px;}
.y0_c00322{bottom:0.000000px;}
.y22_c00322{bottom:3.646650px;}
.y33_c00322{bottom:3.646950px;}
.y1d_c00322{bottom:3.647100px;}
.y17_c00322{bottom:3.647250px;}
.y24_c00322{bottom:3.647400px;}
.y27_c00322{bottom:3.647550px;}
.y35_c00322{bottom:3.647700px;}
.y1a_c00322{bottom:3.647850px;}
.y14_c00322{bottom:3.648000px;}
.y2a_c00322{bottom:3.648300px;}
.y3c_c00322{bottom:3.648450px;}
.y3b_c00322{bottom:3.648600px;}
.y21_c00322{bottom:4.558800px;}
.y32_c00322{bottom:4.558950px;}
.y16_c00322{bottom:4.559400px;}
.y1c_c00322{bottom:4.559550px;}
.y2c_c00322{bottom:4.559700px;}
.y38_c00322{bottom:4.559850px;}
.y13_c00322{bottom:4.560150px;}
.y19_c00322{bottom:4.560300px;}
.y29_c00322{bottom:4.560450px;}
.y3a_c00322{bottom:4.560600px;}
.y11_c00322{bottom:7.266217px;}
.y5c_c00322{bottom:14.591400px;}
.y54_c00322{bottom:15.502650px;}
.y4b_c00322{bottom:17.341541px;}
.y10_c00322{bottom:26.424725px;}
.yc_c00322{bottom:26.431984px;}
.y46_c00322{bottom:27.351242px;}
.y42_c00322{bottom:27.351317px;}
.y53_c00322{bottom:36.470942px;}
.y58_c00322{bottom:36.485383px;}
.y4a_c00322{bottom:36.485458px;}
.yf_c00322{bottom:45.583234px;}
.yb_c00322{bottom:45.590492px;}
.y41_c00322{bottom:46.495234px;}
.y4f_c00322{bottom:46.516933px;}
.y3e_c00322{bottom:46.517083px;}
.y45_c00322{bottom:48.319084px;}
.y4c_c00322{bottom:54.717450px;}
.y4d_c00322{bottom:55.629300px;}
.y49_c00322{bottom:55.629375px;}
.y5d_c00322{bottom:57.330000px;}
.y52_c00322{bottom:57.438784px;}
.y57_c00322{bottom:57.453225px;}
.ye_c00322{bottom:64.741742px;}
.ya_c00322{bottom:64.749000px;}
.y40_c00322{bottom:65.653742px;}
.y4e_c00322{bottom:65.660850px;}
.y3d_c00322{bottom:65.661000px;}
.y59_c00322{bottom:66.572850px;}
.y44_c00322{bottom:67.477592px;}
.y48_c00322{bottom:74.787883px;}
.y51_c00322{bottom:76.597292px;}
.y56_c00322{bottom:76.611733px;}
.yd_c00322{bottom:83.900250px;}
.y3f_c00322{bottom:84.812250px;}
.y43_c00322{bottom:86.636100px;}
.y47_c00322{bottom:93.931800px;}
.y55_c00322{bottom:95.755650px;}
.y50_c00322{bottom:95.755800px;}
.y8_c00322{bottom:133.110000px;}
.y7_c00322{bottom:146.970000px;}
.y39_c00322{bottom:148.713000px;}
.y37_c00322{bottom:167.865000px;}
.y36_c00322{bottom:187.017000px;}
.y34_c00322{bottom:206.167500px;}
.y31_c00322{bottom:225.319500px;}
.y30_c00322{bottom:244.470000px;}
.y2f_c00322{bottom:263.620500px;}
.y2e_c00322{bottom:282.772500px;}
.y2d_c00322{bottom:301.923000px;}
.y2b_c00322{bottom:321.075000px;}
.y28_c00322{bottom:340.225500px;}
.y26_c00322{bottom:359.377500px;}
.y25_c00322{bottom:378.529500px;}
.y23_c00322{bottom:397.680000px;}
.y20_c00322{bottom:416.832000px;}
.y1f_c00322{bottom:435.982500px;}
.y1e_c00322{bottom:455.133000px;}
.y1b_c00322{bottom:474.285000px;}
.y18_c00322{bottom:493.435500px;}
.y15_c00322{bottom:512.587500px;}
.y12_c00322{bottom:531.738000px;}
.y9_c00322{bottom:551.802000px;}
.y5b_c00322{bottom:654.853500px;}
.y5a_c00322{bottom:674.005500px;}
.y6_c00322{bottom:698.940000px;}
.y5_c00322{bottom:719.640000px;}
.y4_c00322{bottom:761.220000px;}
.y3_c00322{bottom:781.110000px;}
.y2_c00322{bottom:796.594500px;}
.y1_c00322{bottom:827.640000px;}
.hd_c00322{height:18.238500px;}
.hc_c00322{height:18.240000px;}
.h8_c00322{height:19.150500px;}
.h13_c00322{height:20.062500px;}
.h15_c00322{height:39.213000px;}
.hf_c00322{height:39.955357px;}
.ha_c00322{height:43.403715px;}
.hb_c00322{height:44.356951px;}
.h9_c00322{height:45.125989px;}
.h7_c00322{height:48.134521px;}
.h10_c00322{height:48.161754px;}
.h2_c00322{height:52.998047px;}
.h14_c00322{height:57.159620px;}
.h5_c00322{height:58.975137px;}
.h11_c00322{height:62.274559px;}
.h3_c00322{height:70.664062px;}
.h4_c00322{height:72.562500px;}
.h6_c00322{height:102.139500px;}
.he_c00322{height:121.291500px;}
.h12_c00322{height:142.266000px;}
.h0_c00322{height:893.070000px;}
.h1_c00322{height:893.250000px;}
.wb_c00322{width:46.750500px;}
.w9_c00322{width:71.995500px;}
.w8_c00322{width:72.931500px;}
.w2_c00322{width:73.866000px;}
.wa_c00322{width:74.800500px;}
.w4_c00322{width:79.476000px;}
.w5_c00322{width:86.956500px;}
.w7_c00322{width:88.825500px;}
.w6_c00322{width:93.501000px;}
.wc_c00322{width:126.226500px;}
.we_c00322{width:148.668000px;}
.wd_c00322{width:722.763000px;}
.w3_c00322{width:1048.146000px;}
.w0_c00322{width:1262.880000px;}
.w1_c00322{width:1263.000000px;}
.x0_c00322{left:0.000000px;}
.x19_c00322{left:1.862739px;}
.x16_c00322{left:3.739800px;}
.x1b_c00322{left:5.610300px;}
.xd_c00322{left:7.480388px;}
.x9_c00322{left:10.277889px;}
.x14_c00322{left:13.089150px;}
.xf_c00322{left:16.829100px;}
.x12_c00322{left:19.634250px;}
.xa_c00322{left:21.497964px;}
.xc_c00322{left:24.310500px;}
.xe_c00322{left:27.108039px;}
.x8_c00322{left:29.920500px;}
.x21_c00322{left:33.660300px;}
.x17_c00322{left:35.530012px;}
.x1e_c00322{left:40.205925px;}
.x1c_c00322{left:42.083024px;}
.x2_c00322{left:106.380000px;}
.x26_c00322{left:128.096250px;}
.x25_c00322{left:154.999500px;}
.x3_c00322{left:238.680000px;}
.x15_c00322{left:282.162000px;}
.x18_c00322{left:362.572500px;}
.x10_c00322{left:374.002950px;}
.x13_c00322{left:378.677850px;}
.x1a_c00322{left:450.463500px;}
.x11_c00322{left:488.074050px;}
.x4_c00322{left:495.450000px;}
.x1d_c00322{left:544.899000px;}
.x1_c00322{left:631.440000px;}
.x1f_c00322{left:634.660500px;}
.x20_c00322{left:708.526500px;}
.x22_c00322{left:782.392500px;}
.x23_c00322{left:855.324000px;}
.x24_c00322{left:931.059000px;}
.x7_c00322{left:1005.859500px;}
.xb_c00322{left:1080.660000px;}
.x6_c00322{left:1087.380000px;}
.x27_c00322{left:1129.590000px;}
.x5_c00322{left:1156.500000px;}
@media print{
.v2_c00322{vertical-align:-74.240000pt;}
.v1_c00322{vertical-align:-55.040000pt;}
.v5_c00322{vertical-align:-9.703260pt;}
.v3_c00322{vertical-align:-3.258737pt;}
.v0_c00322{vertical-align:0.000000pt;}
.v4_c00322{vertical-align:3.258737pt;}
.v6_c00322{vertical-align:25.939733pt;}
.ls11_c00322{letter-spacing:-1.945515pt;}
.ls12_c00322{letter-spacing:-1.313222pt;}
.ls10_c00322{letter-spacing:-1.245133pt;}
.ls17_c00322{letter-spacing:-1.118671pt;}
.ls18_c00322{letter-spacing:-1.070033pt;}
.ls15_c00322{letter-spacing:-0.632292pt;}
.ls1f_c00322{letter-spacing:-0.616080pt;}
.ls14_c00322{letter-spacing:-0.583654pt;}
.ls13_c00322{letter-spacing:-0.363164pt;}
.lsf_c00322{letter-spacing:-0.155642pt;}
.ls16_c00322{letter-spacing:-0.145914pt;}
.lse_c00322{letter-spacing:-0.106880pt;}
.ls9_c00322{letter-spacing:-0.096000pt;}
.lsc_c00322{letter-spacing:-0.064000pt;}
.lsa_c00322{letter-spacing:0.000000pt;}
.lsd_c00322{letter-spacing:0.064000pt;}
.lsb_c00322{letter-spacing:0.128000pt;}
.ls2_c00322{letter-spacing:0.207522pt;}
.ls3_c00322{letter-spacing:0.311283pt;}
.ls7_c00322{letter-spacing:0.593145pt;}
.ls1c_c00322{letter-spacing:0.606351pt;}
.ls1b_c00322{letter-spacing:0.881969pt;}
.ls1d_c00322{letter-spacing:0.985730pt;}
.ls19_c00322{letter-spacing:1.021395pt;}
.ls20_c00322{letter-spacing:1.297013pt;}
.ls1a_c00322{letter-spacing:1.348894pt;}
.ls8_c00322{letter-spacing:1.391042pt;}
.ls1e_c00322{letter-spacing:1.504535pt;}
.ls6_c00322{letter-spacing:2.490266pt;}
.ls5_c00322{letter-spacing:79.085171pt;}
.ls4_c00322{letter-spacing:212.061099pt;}
.ls0_c00322{letter-spacing:644.960000pt;}
.ls1_c00322{letter-spacing:1850.880000pt;}
.ws0_c00322{word-spacing:-13.253120pt;}
.ws2d_c00322{word-spacing:-13.229536pt;}
.ws2b_c00322{word-spacing:-13.073894pt;}
.ws2a_c00322{word-spacing:-12.036284pt;}
.ws2e_c00322{word-spacing:-11.932523pt;}
.ws2c_c00322{word-spacing:-11.725001pt;}
.ws5_c00322{word-spacing:-11.361837pt;}
.ws1_c00322{word-spacing:-10.479868pt;}
.ws40_c00322{word-spacing:-2.960422pt;}
.ws3f_c00322{word-spacing:-2.175732pt;}
.ws44_c00322{word-spacing:-1.391042pt;}
.ws3d_c00322{word-spacing:-1.348894pt;}
.ws3b_c00322{word-spacing:-1.245133pt;}
.ws41_c00322{word-spacing:-0.985730pt;}
.ws3e_c00322{word-spacing:-0.881969pt;}
.ws3a_c00322{word-spacing:-0.632292pt;}
.ws42_c00322{word-spacing:-0.311283pt;}
.ws45_c00322{word-spacing:-0.308040pt;}
.ws38_c00322{word-spacing:-0.207522pt;}
.ws32_c00322{word-spacing:-0.128000pt;}
.ws3c_c00322{word-spacing:-0.103761pt;}
.ws34_c00322{word-spacing:-0.064000pt;}
.ws46_c00322{word-spacing:-0.051881pt;}
.ws2f_c00322{word-spacing:0.000000pt;}
.ws33_c00322{word-spacing:0.064000pt;}
.ws31_c00322{word-spacing:0.144000pt;}
.ws36_c00322{word-spacing:0.155642pt;}
.ws30_c00322{word-spacing:0.240000pt;}
.ws37_c00322{word-spacing:0.933850pt;}
.ws35_c00322{word-spacing:1.037611pt;}
.ws43_c00322{word-spacing:1.245133pt;}
.ws39_c00322{word-spacing:1.945515pt;}
.ws6_c00322{word-spacing:39.513403pt;}
.ws26_c00322{word-spacing:49.270159pt;}
.ws2_c00322{word-spacing:58.997732pt;}
.ws20_c00322{word-spacing:73.681504pt;}
.ws8_c00322{word-spacing:73.686368pt;}
.ws7_c00322{word-spacing:75.145504pt;}
.ws11_c00322{word-spacing:83.413941pt;}
.ws1a_c00322{word-spacing:84.503430pt;}
.ws18_c00322{word-spacing:94.245594pt;}
.ws1b_c00322{word-spacing:135.310545pt;}
.ws12_c00322{word-spacing:149.386344pt;}
.ws1d_c00322{word-spacing:169.177092pt;}
.ws4_c00322{word-spacing:169.181955pt;}
.ws29_c00322{word-spacing:191.939613pt;}
.wsd_c00322{word-spacing:195.198350pt;}
.ws1e_c00322{word-spacing:204.911332pt;}
.ws9_c00322{word-spacing:204.925924pt;}
.ws25_c00322{word-spacing:205.329618pt;}
.ws21_c00322{word-spacing:246.224336pt;}
.ws1c_c00322{word-spacing:270.066618pt;}
.ws27_c00322{word-spacing:271.734897pt;}
.ws14_c00322{word-spacing:277.639534pt;}
.wse_c00322{word-spacing:278.612292pt;}
.ws23_c00322{word-spacing:290.606390pt;}
.ws13_c00322{word-spacing:293.850535pt;}
.ws10_c00322{word-spacing:300.338827pt;}
.ws28_c00322{word-spacing:305.864088pt;}
.wsa_c00322{word-spacing:318.855263pt;}
.ws22_c00322{word-spacing:319.526465pt;}
.ws19_c00322{word-spacing:324.224883pt;}
.ws3_c00322{word-spacing:328.587700pt;}
.ws1f_c00322{word-spacing:328.869799pt;}
.wsf_c00322{word-spacing:372.692517pt;}
.ws24_c00322{word-spacing:403.971529pt;}
.wsc_c00322{word-spacing:406.418014pt;}
.ws16_c00322{word-spacing:409.710797pt;}
.ws15_c00322{word-spacing:438.387684pt;}
.wsb_c00322{word-spacing:804.732959pt;}
.ws17_c00322{word-spacing:817.719270pt;}
._b_c00322{margin-left:-3.968861pt;}
._7_c00322{margin-left:-2.008744pt;}
._1_c00322{margin-left:-0.940800pt;}
._0_c00322{width:1.089600pt;}
._2_c00322{width:2.593809pt;}
._8_c00322{width:3.495316pt;}
._3_c00322{width:81.190412pt;}
._6_c00322{width:136.079431pt;}
._4_c00322{width:145.745186pt;}
._a_c00322{width:149.450500pt;}
._5_c00322{width:158.744677pt;}
._9_c00322{width:243.177860pt;}
.fs5_c00322{font-size:35.667733pt;}
.fs0_c00322{font-size:48.000000pt;}
.fs4_c00322{font-size:48.637867pt;}
.fs3_c00322{font-size:51.880533pt;}
.fs2_c00322{font-size:53.440000pt;}
.fs6_c00322{font-size:61.608000pt;}
.fs1_c00322{font-size:64.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y22_c00322{bottom:3.241467pt;}
.y33_c00322{bottom:3.241733pt;}
.y1d_c00322{bottom:3.241867pt;}
.y17_c00322{bottom:3.242000pt;}
.y24_c00322{bottom:3.242133pt;}
.y27_c00322{bottom:3.242267pt;}
.y35_c00322{bottom:3.242400pt;}
.y1a_c00322{bottom:3.242533pt;}
.y14_c00322{bottom:3.242667pt;}
.y2a_c00322{bottom:3.242933pt;}
.y3c_c00322{bottom:3.243067pt;}
.y3b_c00322{bottom:3.243200pt;}
.y21_c00322{bottom:4.052267pt;}
.y32_c00322{bottom:4.052400pt;}
.y16_c00322{bottom:4.052800pt;}
.y1c_c00322{bottom:4.052933pt;}
.y2c_c00322{bottom:4.053067pt;}
.y38_c00322{bottom:4.053200pt;}
.y13_c00322{bottom:4.053467pt;}
.y19_c00322{bottom:4.053600pt;}
.y29_c00322{bottom:4.053733pt;}
.y3a_c00322{bottom:4.053867pt;}
.y11_c00322{bottom:6.458860pt;}
.y5c_c00322{bottom:12.970133pt;}
.y54_c00322{bottom:13.780133pt;}
.y4b_c00322{bottom:15.414703pt;}
.y10_c00322{bottom:23.488645pt;}
.yc_c00322{bottom:23.495097pt;}
.y46_c00322{bottom:24.312215pt;}
.y42_c00322{bottom:24.312282pt;}
.y53_c00322{bottom:32.418615pt;}
.y58_c00322{bottom:32.431452pt;}
.y4a_c00322{bottom:32.431518pt;}
.yf_c00322{bottom:40.518430pt;}
.yb_c00322{bottom:40.524882pt;}
.y41_c00322{bottom:41.329097pt;}
.y4f_c00322{bottom:41.348385pt;}
.y3e_c00322{bottom:41.348518pt;}
.y45_c00322{bottom:42.950297pt;}
.y4c_c00322{bottom:48.637733pt;}
.y4d_c00322{bottom:49.448267pt;}
.y49_c00322{bottom:49.448333pt;}
.y5d_c00322{bottom:50.960000pt;}
.y52_c00322{bottom:51.056697pt;}
.y57_c00322{bottom:51.069533pt;}
.ye_c00322{bottom:57.548215pt;}
.ya_c00322{bottom:57.554667pt;}
.y40_c00322{bottom:58.358882pt;}
.y4e_c00322{bottom:58.365200pt;}
.y3d_c00322{bottom:58.365333pt;}
.y59_c00322{bottom:59.175867pt;}
.y44_c00322{bottom:59.980082pt;}
.y48_c00322{bottom:66.478118pt;}
.y51_c00322{bottom:68.086482pt;}
.y56_c00322{bottom:68.099318pt;}
.yd_c00322{bottom:74.578000pt;}
.y3f_c00322{bottom:75.388667pt;}
.y43_c00322{bottom:77.009867pt;}
.y47_c00322{bottom:83.494933pt;}
.y55_c00322{bottom:85.116133pt;}
.y50_c00322{bottom:85.116267pt;}
.y8_c00322{bottom:118.320000pt;}
.y7_c00322{bottom:130.640000pt;}
.y39_c00322{bottom:132.189333pt;}
.y37_c00322{bottom:149.213333pt;}
.y36_c00322{bottom:166.237333pt;}
.y34_c00322{bottom:183.260000pt;}
.y31_c00322{bottom:200.284000pt;}
.y30_c00322{bottom:217.306667pt;}
.y2f_c00322{bottom:234.329333pt;}
.y2e_c00322{bottom:251.353333pt;}
.y2d_c00322{bottom:268.376000pt;}
.y2b_c00322{bottom:285.400000pt;}
.y28_c00322{bottom:302.422667pt;}
.y26_c00322{bottom:319.446667pt;}
.y25_c00322{bottom:336.470667pt;}
.y23_c00322{bottom:353.493333pt;}
.y20_c00322{bottom:370.517333pt;}
.y1f_c00322{bottom:387.540000pt;}
.y1e_c00322{bottom:404.562667pt;}
.y1b_c00322{bottom:421.586667pt;}
.y18_c00322{bottom:438.609333pt;}
.y15_c00322{bottom:455.633333pt;}
.y12_c00322{bottom:472.656000pt;}
.y9_c00322{bottom:490.490667pt;}
.y5b_c00322{bottom:582.092000pt;}
.y5a_c00322{bottom:599.116000pt;}
.y6_c00322{bottom:621.280000pt;}
.y5_c00322{bottom:639.680000pt;}
.y4_c00322{bottom:676.640000pt;}
.y3_c00322{bottom:694.320000pt;}
.y2_c00322{bottom:708.084000pt;}
.y1_c00322{bottom:735.680000pt;}
.hd_c00322{height:16.212000pt;}
.hc_c00322{height:16.213333pt;}
.h8_c00322{height:17.022667pt;}
.h13_c00322{height:17.833333pt;}
.h15_c00322{height:34.856000pt;}
.hf_c00322{height:35.515873pt;}
.ha_c00322{height:38.581080pt;}
.hb_c00322{height:39.428401pt;}
.h9_c00322{height:40.111991pt;}
.h7_c00322{height:42.786241pt;}
.h10_c00322{height:42.810448pt;}
.h2_c00322{height:47.109375pt;}
.h14_c00322{height:50.808551pt;}
.h5_c00322{height:52.422344pt;}
.h11_c00322{height:55.355164pt;}
.h3_c00322{height:62.812500pt;}
.h4_c00322{height:64.500000pt;}
.h6_c00322{height:90.790667pt;}
.he_c00322{height:107.814667pt;}
.h12_c00322{height:126.458667pt;}
.h0_c00322{height:793.840000pt;}
.h1_c00322{height:794.000000pt;}
.wb_c00322{width:41.556000pt;}
.w9_c00322{width:63.996000pt;}
.w8_c00322{width:64.828000pt;}
.w2_c00322{width:65.658667pt;}
.wa_c00322{width:66.489333pt;}
.w4_c00322{width:70.645333pt;}
.w5_c00322{width:77.294667pt;}
.w7_c00322{width:78.956000pt;}
.w6_c00322{width:83.112000pt;}
.wc_c00322{width:112.201333pt;}
.we_c00322{width:132.149333pt;}
.wd_c00322{width:642.456000pt;}
.w3_c00322{width:931.685333pt;}
.w0_c00322{width:1122.560000pt;}
.w1_c00322{width:1122.666667pt;}
.x0_c00322{left:0.000000pt;}
.x19_c00322{left:1.655768pt;}
.x16_c00322{left:3.324267pt;}
.x1b_c00322{left:4.986933pt;}
.xd_c00322{left:6.649233pt;}
.x9_c00322{left:9.135901pt;}
.x14_c00322{left:11.634800pt;}
.xf_c00322{left:14.959200pt;}
.x12_c00322{left:17.452667pt;}
.xa_c00322{left:19.109301pt;}
.xc_c00322{left:21.609333pt;}
.xe_c00322{left:24.096034pt;}
.x8_c00322{left:26.596000pt;}
.x21_c00322{left:29.920267pt;}
.x17_c00322{left:31.582233pt;}
.x1e_c00322{left:35.738600pt;}
.x1c_c00322{left:37.407132pt;}
.x2_c00322{left:94.560000pt;}
.x26_c00322{left:113.863333pt;}
.x25_c00322{left:137.777333pt;}
.x3_c00322{left:212.160000pt;}
.x15_c00322{left:250.810667pt;}
.x18_c00322{left:322.286667pt;}
.x10_c00322{left:332.447067pt;}
.x13_c00322{left:336.602533pt;}
.x1a_c00322{left:400.412000pt;}
.x11_c00322{left:433.843600pt;}
.x4_c00322{left:440.400000pt;}
.x1d_c00322{left:484.354667pt;}
.x1_c00322{left:561.280000pt;}
.x1f_c00322{left:564.142667pt;}
.x20_c00322{left:629.801333pt;}
.x22_c00322{left:695.460000pt;}
.x23_c00322{left:760.288000pt;}
.x24_c00322{left:827.608000pt;}
.x7_c00322{left:894.097333pt;}
.xb_c00322{left:960.586667pt;}
.x6_c00322{left:966.560000pt;}
.x27_c00322{left:1004.080000pt;}
.x5_c00322{left:1028.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_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_b2b7d16a79e10c191d928e28.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.284180;font-style:normal;font-weight:normal;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_882f11b119bf896a830b3aa3.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.002930;font-style:normal;font-weight:normal;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_06ee891dae504e6367648a9e.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00323;src:url('chunks/assets/font_0d1a4ffb5ed32c7a7e3a2e3e.woff2')format("woff");}.ff5_c00323{font-family:ff5_c00323;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2_c00323{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);}
.m1_c00323{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.v1_c00323{vertical-align:-61.938000px;}
.v2_c00323{vertical-align:-3.756368px;}
.v0_c00323{vertical-align:0.000000px;}
.v3_c00323{vertical-align:3.756368px;}
.ls4_c00323{letter-spacing:-2.242608px;}
.lse_c00323{letter-spacing:-1.846412px;}
.ls9_c00323{letter-spacing:-1.569826px;}
.lsa_c00323{letter-spacing:-1.513760px;}
.ls7_c00323{letter-spacing:-1.289500px;}
.lsd_c00323{letter-spacing:-1.233434px;}
.ls8_c00323{letter-spacing:-0.672782px;}
.ls6_c00323{letter-spacing:-0.418622px;}
.ls5_c00323{letter-spacing:-0.168196px;}
.ls3_c00323{letter-spacing:0.000000px;}
.ls10_c00323{letter-spacing:0.874616px;}
.lsb_c00323{letter-spacing:1.177369px;}
.lsc_c00323{letter-spacing:1.681956px;}
.lsf_c00323{letter-spacing:1.895002px;}
.ls2_c00323{letter-spacing:91.162015px;}
.ls1_c00323{letter-spacing:244.444272px;}
.ls0_c00323{letter-spacing:1144.260000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00323{word-spacing:-13.096901px;}
.ws28_c00323{word-spacing:-2.818208px;}
.ws29_c00323{word-spacing:-1.797823px;}
.ws24_c00323{word-spacing:-1.289500px;}
.ws26_c00323{word-spacing:-0.224261px;}
.ws25_c00323{word-spacing:-0.168196px;}
.ws21_c00323{word-spacing:-0.162000px;}
.ws20_c00323{word-spacing:0.000000px;}
.ws23_c00323{word-spacing:0.056065px;}
.ws27_c00323{word-spacing:0.923206px;}
.ws22_c00323{word-spacing:2.242608px;}
.wse_c00323{word-spacing:56.794048px;}
.ws0_c00323{word-spacing:68.007088px;}
.wsc_c00323{word-spacing:84.938778px;}
.ws9_c00323{word-spacing:96.151818px;}
.ws17_c00323{word-spacing:97.407678px;}
.ws5_c00323{word-spacing:108.620718px;}
.ws18_c00323{word-spacing:155.973386px;}
.wsa_c00323{word-spacing:172.198655px;}
.ws2_c00323{word-spacing:195.017192px;}
.ws6_c00323{word-spacing:236.202688px;}
.ws19_c00323{word-spacing:251.172096px;}
.ws15_c00323{word-spacing:289.475841px;}
.ws14_c00323{word-spacing:321.393759px;}
.ws12_c00323{word-spacing:329.753080px;}
.ws1a_c00323{word-spacing:330.167963px;}
.ws1e_c00323{word-spacing:342.463061px;}
.ws16_c00323{word-spacing:347.609847px;}
.ws1c_c00323{word-spacing:352.616469px;}
.ws1b_c00323{word-spacing:361.149592px;}
.ws7_c00323{word-spacing:379.841730px;}
.ws10_c00323{word-spacing:386.042541px;}
.ws1d_c00323{word-spacing:410.750475px;}
.ws1_c00323{word-spacing:413.480850px;}
.wsb_c00323{word-spacing:416.267290px;}
.ws1f_c00323{word-spacing:418.095016px;}
.ws11_c00323{word-spacing:421.969121px;}
.wsd_c00323{word-spacing:432.223446px;}
.wsf_c00323{word-spacing:442.354428px;}
.ws13_c00323{word-spacing:448.527207px;}
.ws8_c00323{word-spacing:927.621160px;}
.ws4_c00323{word-spacing:942.590568px;}
._11_c00323{margin-left:-6.936395px;}
._f_c00323{margin-left:-5.246954px;}
._10_c00323{margin-left:-3.985108px;}
._7_c00323{margin-left:-2.915390px;}
._3_c00323{margin-left:-1.379204px;}
._0_c00323{width:1.681956px;}
._4_c00323{width:2.758408px;}
._1_c00323{width:3.761975px;}
._e_c00323{width:5.257772px;}
._b_c00323{width:81.580473px;}
._a_c00323{width:136.731810px;}
._9_c00323{width:159.101825px;}
._8_c00323{width:167.915274px;}
._c_c00323{width:171.794986px;}
._5_c00323{width:182.828617px;}
._2_c00323{width:183.832184px;}
._d_c00323{width:252.214909px;}
._6_c00323{width:365.746939px;}
.fc0_c00323{color:rgb(0,0,0);}
.fs4_c00323{font-size:48.589800px;}
.fs0_c00323{font-size:54.000000px;}
.fs2_c00323{font-size:56.065200px;}
.fs3_c00323{font-size:59.803200px;}
.fs1_c00323{font-size:72.000000px;}
.y0_c00323{bottom:0.000000px;}
.y18_c00323{bottom:3.736800px;}
.y21_c00323{bottom:3.737100px;}
.y26_c00323{bottom:3.737250px;}
.y2b_c00323{bottom:3.737400px;}
.y2c_c00323{bottom:3.737550px;}
.ya_c00323{bottom:3.737700px;}
.yb_c00323{bottom:3.737850px;}
.y11_c00323{bottom:3.738000px;}
.y14_c00323{bottom:3.738150px;}
.y15_c00323{bottom:3.738300px;}
.y24_c00323{bottom:3.738600px;}
.y36_c00323{bottom:4.671000px;}
.y17_c00323{bottom:4.671150px;}
.y1c_c00323{bottom:4.671300px;}
.y20_c00323{bottom:4.671600px;}
.y2a_c00323{bottom:4.671900px;}
.y2f_c00323{bottom:4.672050px;}
.y9_c00323{bottom:4.672200px;}
.yd_c00323{bottom:4.672350px;}
.y10_c00323{bottom:4.672500px;}
.y13_c00323{bottom:4.672650px;}
.y1a_c00323{bottom:4.672800px;}
.y1e_c00323{bottom:4.672950px;}
.y23_c00323{bottom:4.673100px;}
.y28_c00323{bottom:4.673250px;}
.y38_c00323{bottom:5.607000px;}
.y3c_c00323{bottom:57.330000px;}
.y7_c00323{bottom:209.610000px;}
.y6_c00323{bottom:226.170000px;}
.y3b_c00323{bottom:228.052500px;}
.y3a_c00323{bottom:246.741000px;}
.y39_c00323{bottom:265.429500px;}
.y37_c00323{bottom:284.118000px;}
.y35_c00323{bottom:303.742500px;}
.y34_c00323{bottom:324.298500px;}
.y33_c00323{bottom:343.921500px;}
.y32_c00323{bottom:363.544500px;}
.y31_c00323{bottom:383.167500px;}
.y30_c00323{bottom:402.790500px;}
.y2e_c00323{bottom:422.413500px;}
.y2d_c00323{bottom:442.036500px;}
.y29_c00323{bottom:461.659500px;}
.y27_c00323{bottom:481.281000px;}
.y25_c00323{bottom:500.905500px;}
.y22_c00323{bottom:520.527000px;}
.y1f_c00323{bottom:540.151500px;}
.y1d_c00323{bottom:559.773000px;}
.y1b_c00323{bottom:579.397500px;}
.y19_c00323{bottom:599.019000px;}
.y16_c00323{bottom:618.643500px;}
.y12_c00323{bottom:638.265000px;}
.yf_c00323{bottom:657.888000px;}
.ye_c00323{bottom:677.511000px;}
.yc_c00323{bottom:697.134000px;}
.y8_c00323{bottom:716.757000px;}
.y5_c00323{bottom:740.520000px;}
.y4_c00323{bottom:761.220000px;}
.y3_c00323{bottom:781.105500px;}
.y2_c00323{bottom:796.590000px;}
.y1_c00323{bottom:827.640000px;}
.hc_c00323{height:17.754000px;}
.he_c00323{height:17.755500px;}
.h4_c00323{height:18.688500px;}
.h8_c00323{height:18.690000px;}
.h9_c00323{height:19.621500px;}
.ha_c00323{height:41.693017px;}
.h6_c00323{height:44.472790px;}
.h7_c00323{height:45.449386px;}
.h5_c00323{height:46.237365px;}
.hd_c00323{height:47.688231px;}
.hb_c00323{height:48.969408px;}
.h2_c00323{height:52.998047px;}
.h3_c00323{height:70.664062px;}
.h0_c00323{height:893.070000px;}
.h1_c00323{height:893.250000px;}
.w3_c00323{width:999.612000px;}
.w2_c00323{width:1048.236000px;}
.w0_c00323{width:1262.880000px;}
.w1_c00323{width:1263.000000px;}
.x0_c00323{left:0.000000px;}
.xb_c00323{left:1.870800px;}
.x7_c00323{left:13.090350px;}
.x4_c00323{left:16.830750px;}
.x9_c00323{left:19.636050px;}
.x2_c00323{left:106.380000px;}
.xa_c00323{left:155.004000px;}
.x5_c00323{left:374.035200px;}
.x8_c00323{left:378.710700px;}
.x6_c00323{left:488.116350px;}
.x1_c00323{left:631.440000px;}
.x3_c00323{left:1156.590000px;}
@media print{
.v1_c00323{vertical-align:-55.056000pt;}
.v2_c00323{vertical-align:-3.338994pt;}
.v0_c00323{vertical-align:0.000000pt;}
.v3_c00323{vertical-align:3.338994pt;}
.ls4_c00323{letter-spacing:-1.993429pt;}
.lse_c00323{letter-spacing:-1.641255pt;}
.ls9_c00323{letter-spacing:-1.395401pt;}
.lsa_c00323{letter-spacing:-1.345565pt;}
.ls7_c00323{letter-spacing:-1.146222pt;}
.lsd_c00323{letter-spacing:-1.096386pt;}
.ls8_c00323{letter-spacing:-0.598029pt;}
.ls6_c00323{letter-spacing:-0.372109pt;}
.ls5_c00323{letter-spacing:-0.149507pt;}
.ls3_c00323{letter-spacing:0.000000pt;}
.ls10_c00323{letter-spacing:0.777437pt;}
.lsb_c00323{letter-spacing:1.046550pt;}
.lsc_c00323{letter-spacing:1.495072pt;}
.lsf_c00323{letter-spacing:1.684446pt;}
.ls2_c00323{letter-spacing:81.032902pt;}
.ls1_c00323{letter-spacing:217.283797pt;}
.ls0_c00323{letter-spacing:1017.120000pt;}
.ws3_c00323{word-spacing:-11.641690pt;}
.ws28_c00323{word-spacing:-2.505074pt;}
.ws29_c00323{word-spacing:-1.598065pt;}
.ws24_c00323{word-spacing:-1.146222pt;}
.ws26_c00323{word-spacing:-0.199343pt;}
.ws25_c00323{word-spacing:-0.149507pt;}
.ws21_c00323{word-spacing:-0.144000pt;}
.ws20_c00323{word-spacing:0.000000pt;}
.ws23_c00323{word-spacing:0.049836pt;}
.ws27_c00323{word-spacing:0.820628pt;}
.ws22_c00323{word-spacing:1.993429pt;}
.wse_c00323{word-spacing:50.483598pt;}
.ws0_c00323{word-spacing:60.450745pt;}
.wsc_c00323{word-spacing:75.501136pt;}
.ws9_c00323{word-spacing:85.468283pt;}
.ws17_c00323{word-spacing:86.584603pt;}
.ws5_c00323{word-spacing:96.551750pt;}
.ws18_c00323{word-spacing:138.643010pt;}
.wsa_c00323{word-spacing:153.065471pt;}
.ws2_c00323{word-spacing:173.348615pt;}
.ws6_c00323{word-spacing:209.957945pt;}
.ws19_c00323{word-spacing:223.264085pt;}
.ws15_c00323{word-spacing:257.311858pt;}
.ws14_c00323{word-spacing:285.683341pt;}
.ws12_c00323{word-spacing:293.113849pt;}
.ws1a_c00323{word-spacing:293.482634pt;}
.ws1e_c00323{word-spacing:304.411610pt;}
.ws16_c00323{word-spacing:308.986530pt;}
.ws1c_c00323{word-spacing:313.436861pt;}
.ws1b_c00323{word-spacing:321.021860pt;}
.ws7_c00323{word-spacing:337.637093pt;}
.ws10_c00323{word-spacing:343.148925pt;}
.ws1d_c00323{word-spacing:365.111533pt;}
.ws1_c00323{word-spacing:367.538533pt;}
.wsb_c00323{word-spacing:370.015369pt;}
.ws1f_c00323{word-spacing:371.640014pt;}
.ws11_c00323{word-spacing:375.083663pt;}
.wsd_c00323{word-spacing:384.198619pt;}
.wsf_c00323{word-spacing:393.203936pt;}
.ws13_c00323{word-spacing:398.690850pt;}
.ws8_c00323{word-spacing:824.552142pt;}
.ws4_c00323{word-spacing:837.858283pt;}
._11_c00323{margin-left:-6.165684pt;}
._f_c00323{margin-left:-4.663959pt;}
._10_c00323{margin-left:-3.542318pt;}
._7_c00323{margin-left:-2.591458pt;}
._3_c00323{margin-left:-1.225959pt;}
._0_c00323{width:1.495072pt;}
._4_c00323{width:2.451918pt;}
._1_c00323{width:3.343978pt;}
._e_c00323{width:4.673575pt;}
._b_c00323{width:72.515976pt;}
._a_c00323{width:121.539386pt;}
._9_c00323{width:141.423844pt;}
._8_c00323{width:149.258021pt;}
._c_c00323{width:152.706654pt;}
._5_c00323{width:162.514326pt;}
._2_c00323{width:163.406386pt;}
._d_c00323{width:224.191030pt;}
._6_c00323{width:325.108390pt;}
.fs4_c00323{font-size:43.190933pt;}
.fs0_c00323{font-size:48.000000pt;}
.fs2_c00323{font-size:49.835733pt;}
.fs3_c00323{font-size:53.158400pt;}
.fs1_c00323{font-size:64.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y18_c00323{bottom:3.321600pt;}
.y21_c00323{bottom:3.321867pt;}
.y26_c00323{bottom:3.322000pt;}
.y2b_c00323{bottom:3.322133pt;}
.y2c_c00323{bottom:3.322267pt;}
.ya_c00323{bottom:3.322400pt;}
.yb_c00323{bottom:3.322533pt;}
.y11_c00323{bottom:3.322667pt;}
.y14_c00323{bottom:3.322800pt;}
.y15_c00323{bottom:3.322933pt;}
.y24_c00323{bottom:3.323200pt;}
.y36_c00323{bottom:4.152000pt;}
.y17_c00323{bottom:4.152133pt;}
.y1c_c00323{bottom:4.152267pt;}
.y20_c00323{bottom:4.152533pt;}
.y2a_c00323{bottom:4.152800pt;}
.y2f_c00323{bottom:4.152933pt;}
.y9_c00323{bottom:4.153067pt;}
.yd_c00323{bottom:4.153200pt;}
.y10_c00323{bottom:4.153333pt;}
.y13_c00323{bottom:4.153467pt;}
.y1a_c00323{bottom:4.153600pt;}
.y1e_c00323{bottom:4.153733pt;}
.y23_c00323{bottom:4.153867pt;}
.y28_c00323{bottom:4.154000pt;}
.y38_c00323{bottom:4.984000pt;}
.y3c_c00323{bottom:50.960000pt;}
.y7_c00323{bottom:186.320000pt;}
.y6_c00323{bottom:201.040000pt;}
.y3b_c00323{bottom:202.713333pt;}
.y3a_c00323{bottom:219.325333pt;}
.y39_c00323{bottom:235.937333pt;}
.y37_c00323{bottom:252.549333pt;}
.y35_c00323{bottom:269.993333pt;}
.y34_c00323{bottom:288.265333pt;}
.y33_c00323{bottom:305.708000pt;}
.y32_c00323{bottom:323.150667pt;}
.y31_c00323{bottom:340.593333pt;}
.y30_c00323{bottom:358.036000pt;}
.y2e_c00323{bottom:375.478667pt;}
.y2d_c00323{bottom:392.921333pt;}
.y29_c00323{bottom:410.364000pt;}
.y27_c00323{bottom:427.805333pt;}
.y25_c00323{bottom:445.249333pt;}
.y22_c00323{bottom:462.690667pt;}
.y1f_c00323{bottom:480.134667pt;}
.y1d_c00323{bottom:497.576000pt;}
.y1b_c00323{bottom:515.020000pt;}
.y19_c00323{bottom:532.461333pt;}
.y16_c00323{bottom:549.905333pt;}
.y12_c00323{bottom:567.346667pt;}
.yf_c00323{bottom:584.789333pt;}
.ye_c00323{bottom:602.232000pt;}
.yc_c00323{bottom:619.674667pt;}
.y8_c00323{bottom:637.117333pt;}
.y5_c00323{bottom:658.240000pt;}
.y4_c00323{bottom:676.640000pt;}
.y3_c00323{bottom:694.316000pt;}
.y2_c00323{bottom:708.080000pt;}
.y1_c00323{bottom:735.680000pt;}
.hc_c00323{height:15.781333pt;}
.he_c00323{height:15.782667pt;}
.h4_c00323{height:16.612000pt;}
.h8_c00323{height:16.613333pt;}
.h9_c00323{height:17.441333pt;}
.ha_c00323{height:37.060460pt;}
.h6_c00323{height:39.531369pt;}
.h7_c00323{height:40.399454pt;}
.h5_c00323{height:41.099880pt;}
.hd_c00323{height:42.389539pt;}
.hb_c00323{height:43.528362pt;}
.h2_c00323{height:47.109375pt;}
.h3_c00323{height:62.812500pt;}
.h0_c00323{height:793.840000pt;}
.h1_c00323{height:794.000000pt;}
.w3_c00323{width:888.544000pt;}
.w2_c00323{width:931.765333pt;}
.w0_c00323{width:1122.560000pt;}
.w1_c00323{width:1122.666667pt;}
.x0_c00323{left:0.000000pt;}
.xb_c00323{left:1.662933pt;}
.x7_c00323{left:11.635867pt;}
.x4_c00323{left:14.960667pt;}
.x9_c00323{left:17.454267pt;}
.x2_c00323{left:94.560000pt;}
.xa_c00323{left:137.781333pt;}
.x5_c00323{left:332.475733pt;}
.x8_c00323{left:336.631733pt;}
.x6_c00323{left:433.881200pt;}
.x1_c00323{left:561.280000pt;}
.x3_c00323{left:1028.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_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_8d9ce6ba01a414cb7870ba60.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.284180;font-style:normal;font-weight:normal;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_3c5db6035fd178406854bd9d.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;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_c00324;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_f64c04f1f95b17ff010a939c.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00324{vertical-align:-20.880000px;}
.v2_c00324{vertical-align:-14.760000px;}
.v0_c00324{vertical-align:0.000000px;}
.v3_c00324{vertical-align:14.760000px;}
.v1_c00324{vertical-align:27.000000px;}
.ls13_c00324{letter-spacing:-0.576000px;}
.ls14_c00324{letter-spacing:-0.288000px;}
.ls12_c00324{letter-spacing:-0.216000px;}
.ls10_c00324{letter-spacing:-0.108000px;}
.ls11_c00324{letter-spacing:-0.072000px;}
.ls15_c00324{letter-spacing:-0.060120px;}
.lsf_c00324{letter-spacing:0.000000px;}
.ls2_c00324{letter-spacing:0.072000px;}
.lse_c00324{letter-spacing:0.120240px;}
.lsc_c00324{letter-spacing:0.144000px;}
.ls16_c00324{letter-spacing:0.180360px;}
.ls4_c00324{letter-spacing:0.191520px;}
.lsa_c00324{letter-spacing:2.880000px;}
.lsd_c00324{letter-spacing:3.667320px;}
.ls0_c00324{letter-spacing:4.680000px;}
.ls7_c00324{letter-spacing:5.400000px;}
.lsb_c00324{letter-spacing:5.760000px;}
.ls1_c00324{letter-spacing:6.120000px;}
.ls3_c00324{letter-spacing:8.640000px;}
.ls8_c00324{letter-spacing:9.000000px;}
.ls5_c00324{letter-spacing:15.480000px;}
.ls6_c00324{letter-spacing:22.601520px;}
.ls9_c00324{letter-spacing:27.720000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00324{word-spacing:-72.000000px;}
.ws7_c00324{word-spacing:-18.072000px;}
.ws2_c00324{word-spacing:-18.000000px;}
.ws0_c00324{word-spacing:-17.928000px;}
.ws1_c00324{word-spacing:-17.784000px;}
.ws6_c00324{word-spacing:-17.424000px;}
.ws9_c00324{word-spacing:-15.030000px;}
.ws3_c00324{word-spacing:-12.161520px;}
.ws8_c00324{word-spacing:-9.720000px;}
.ws37_c00324{word-spacing:-0.420840px;}
.ws2b_c00324{word-spacing:-0.144000px;}
.ws12_c00324{word-spacing:-0.072000px;}
.ws35_c00324{word-spacing:-0.060120px;}
.wsa_c00324{word-spacing:0.000000px;}
.wsc_c00324{word-spacing:0.162000px;}
.ws36_c00324{word-spacing:0.180360px;}
.ws27_c00324{word-spacing:0.216000px;}
.wsb_c00324{word-spacing:0.270000px;}
.ws26_c00324{word-spacing:2.160000px;}
.ws2e_c00324{word-spacing:2.520000px;}
.ws2f_c00324{word-spacing:2.808000px;}
.ws28_c00324{word-spacing:2.880000px;}
.ws29_c00324{word-spacing:3.168000px;}
.wse_c00324{word-spacing:3.240000px;}
.wsd_c00324{word-spacing:3.312000px;}
.ws34_c00324{word-spacing:3.727440px;}
.ws1f_c00324{word-spacing:3.816000px;}
.ws1e_c00324{word-spacing:3.960000px;}
.ws5_c00324{word-spacing:4.176000px;}
.ws1b_c00324{word-spacing:4.248000px;}
.ws1c_c00324{word-spacing:4.320000px;}
.ws13_c00324{word-spacing:4.968000px;}
.ws20_c00324{word-spacing:5.400000px;}
.ws17_c00324{word-spacing:5.688000px;}
.ws18_c00324{word-spacing:5.760000px;}
.ws2a_c00324{word-spacing:5.976000px;}
.ws33_c00324{word-spacing:6.048000px;}
.ws16_c00324{word-spacing:6.120000px;}
.ws1a_c00324{word-spacing:8.928000px;}
.ws19_c00324{word-spacing:9.000000px;}
.ws2c_c00324{word-spacing:12.456000px;}
.ws2d_c00324{word-spacing:12.600000px;}
.ws14_c00324{word-spacing:13.608000px;}
.ws15_c00324{word-spacing:13.680000px;}
.ws1d_c00324{word-spacing:15.480000px;}
.ws22_c00324{word-spacing:16.056000px;}
.ws23_c00324{word-spacing:16.128000px;}
.ws21_c00324{word-spacing:16.200000px;}
.ws11_c00324{word-spacing:17.280000px;}
.ws30_c00324{word-spacing:19.080000px;}
.ws32_c00324{word-spacing:19.368000px;}
.ws31_c00324{word-spacing:19.440000px;}
.ws10_c00324{word-spacing:21.240000px;}
.wsf_c00324{word-spacing:21.600000px;}
.ws24_c00324{word-spacing:27.648000px;}
.ws25_c00324{word-spacing:27.720000px;}
._7_c00324{margin-left:-4.341600px;}
._1_c00324{margin-left:-1.058400px;}
._0_c00324{width:1.220400px;}
._2_c00324{width:3.020400px;}
._8_c00324{width:4.312800px;}
._4_c00324{width:5.904000px;}
._6_c00324{width:8.640000px;}
._5_c00324{width:10.224000px;}
._a_c00324{width:12.124800px;}
._3_c00324{width:13.464000px;}
._b_c00324{width:19.821600px;}
._9_c00324{width:27.043200px;}
.fc0_c00324{color:rgb(0,0,0);}
.fs4_c00324{font-size:38.880000px;}
.fs2_c00324{font-size:47.880000px;}
.fs3_c00324{font-size:51.120000px;}
.fs0_c00324{font-size:54.000000px;}
.fs5_c00324{font-size:60.120000px;}
.fs1_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.y27_c00324{bottom:57.240000px;}
.y26_c00324{bottom:115.020000px;}
.y25_c00324{bottom:126.985500px;}
.y24_c00324{bottom:149.490000px;}
.y28_c00324{bottom:162.180000px;}
.y23_c00324{bottom:219.150000px;}
.y22_c00324{bottom:250.200000px;}
.y21_c00324{bottom:281.250000px;}
.y20_c00324{bottom:312.300000px;}
.y1f_c00324{bottom:343.440000px;}
.y1e_c00324{bottom:374.940000px;}
.y1d_c00324{bottom:405.990000px;}
.y1c_c00324{bottom:437.040000px;}
.y1b_c00324{bottom:468.090000px;}
.y1a_c00324{bottom:499.140000px;}
.y19_c00324{bottom:530.190000px;}
.y18_c00324{bottom:561.240000px;}
.y17_c00324{bottom:592.290000px;}
.y16_c00324{bottom:623.340000px;}
.y15_c00324{bottom:654.390000px;}
.y14_c00324{bottom:685.440000px;}
.y13_c00324{bottom:716.670000px;}
.y12_c00324{bottom:748.170000px;}
.y11_c00324{bottom:779.220000px;}
.y10_c00324{bottom:810.270000px;}
.yf_c00324{bottom:841.230000px;}
.ye_c00324{bottom:872.280000px;}
.yd_c00324{bottom:903.330000px;}
.yc_c00324{bottom:934.380000px;}
.yb_c00324{bottom:965.430000px;}
.ya_c00324{bottom:996.480000px;}
.y9_c00324{bottom:1027.530000px;}
.y8_c00324{bottom:1058.580000px;}
.y7_c00324{bottom:1089.630000px;}
.y6_c00324{bottom:1110.330000px;}
.y5_c00324{bottom:1131.030000px;}
.y4_c00324{bottom:1150.920000px;}
.y3_c00324{bottom:1166.404500px;}
.y2_c00324{bottom:1181.970000px;}
.y1_c00324{bottom:1197.450000px;}
.h8_c00324{height:38.158594px;}
.h5_c00324{height:50.027344px;}
.h3_c00324{height:52.971680px;}
.h2_c00324{height:52.998047px;}
.h9_c00324{height:59.004492px;}
.h4_c00324{height:70.664062px;}
.h6_c00324{height:73.991602px;}
.h7_c00324{height:143.542969px;}
.h0_c00324{height:1262.880000px;}
.h1_c00324{height:1263.000000px;}
.w0_c00324{width:893.070000px;}
.w1_c00324{width:893.250000px;}
.x0_c00324{left:0.000000px;}
.x3_c00324{left:127.620000px;}
.x2_c00324{left:425.160000px;}
.x1_c00324{left:446.580000px;}
.x4_c00324{left:738.540000px;}
@media print{
.v4_c00324{vertical-align:-18.560000pt;}
.v2_c00324{vertical-align:-13.120000pt;}
.v0_c00324{vertical-align:0.000000pt;}
.v3_c00324{vertical-align:13.120000pt;}
.v1_c00324{vertical-align:24.000000pt;}
.ls13_c00324{letter-spacing:-0.512000pt;}
.ls14_c00324{letter-spacing:-0.256000pt;}
.ls12_c00324{letter-spacing:-0.192000pt;}
.ls10_c00324{letter-spacing:-0.096000pt;}
.ls11_c00324{letter-spacing:-0.064000pt;}
.ls15_c00324{letter-spacing:-0.053440pt;}
.lsf_c00324{letter-spacing:0.000000pt;}
.ls2_c00324{letter-spacing:0.064000pt;}
.lse_c00324{letter-spacing:0.106880pt;}
.lsc_c00324{letter-spacing:0.128000pt;}
.ls16_c00324{letter-spacing:0.160320pt;}
.ls4_c00324{letter-spacing:0.170240pt;}
.lsa_c00324{letter-spacing:2.560000pt;}
.lsd_c00324{letter-spacing:3.259840pt;}
.ls0_c00324{letter-spacing:4.160000pt;}
.ls7_c00324{letter-spacing:4.800000pt;}
.lsb_c00324{letter-spacing:5.120000pt;}
.ls1_c00324{letter-spacing:5.440000pt;}
.ls3_c00324{letter-spacing:7.680000pt;}
.ls8_c00324{letter-spacing:8.000000pt;}
.ls5_c00324{letter-spacing:13.760000pt;}
.ls6_c00324{letter-spacing:20.090240pt;}
.ls9_c00324{letter-spacing:24.640000pt;}
.ws4_c00324{word-spacing:-64.000000pt;}
.ws7_c00324{word-spacing:-16.064000pt;}
.ws2_c00324{word-spacing:-16.000000pt;}
.ws0_c00324{word-spacing:-15.936000pt;}
.ws1_c00324{word-spacing:-15.808000pt;}
.ws6_c00324{word-spacing:-15.488000pt;}
.ws9_c00324{word-spacing:-13.360000pt;}
.ws3_c00324{word-spacing:-10.810240pt;}
.ws8_c00324{word-spacing:-8.640000pt;}
.ws37_c00324{word-spacing:-0.374080pt;}
.ws2b_c00324{word-spacing:-0.128000pt;}
.ws12_c00324{word-spacing:-0.064000pt;}
.ws35_c00324{word-spacing:-0.053440pt;}
.wsa_c00324{word-spacing:0.000000pt;}
.wsc_c00324{word-spacing:0.144000pt;}
.ws36_c00324{word-spacing:0.160320pt;}
.ws27_c00324{word-spacing:0.192000pt;}
.wsb_c00324{word-spacing:0.240000pt;}
.ws26_c00324{word-spacing:1.920000pt;}
.ws2e_c00324{word-spacing:2.240000pt;}
.ws2f_c00324{word-spacing:2.496000pt;}
.ws28_c00324{word-spacing:2.560000pt;}
.ws29_c00324{word-spacing:2.816000pt;}
.wse_c00324{word-spacing:2.880000pt;}
.wsd_c00324{word-spacing:2.944000pt;}
.ws34_c00324{word-spacing:3.313280pt;}
.ws1f_c00324{word-spacing:3.392000pt;}
.ws1e_c00324{word-spacing:3.520000pt;}
.ws5_c00324{word-spacing:3.712000pt;}
.ws1b_c00324{word-spacing:3.776000pt;}
.ws1c_c00324{word-spacing:3.840000pt;}
.ws13_c00324{word-spacing:4.416000pt;}
.ws20_c00324{word-spacing:4.800000pt;}
.ws17_c00324{word-spacing:5.056000pt;}
.ws18_c00324{word-spacing:5.120000pt;}
.ws2a_c00324{word-spacing:5.312000pt;}
.ws33_c00324{word-spacing:5.376000pt;}
.ws16_c00324{word-spacing:5.440000pt;}
.ws1a_c00324{word-spacing:7.936000pt;}
.ws19_c00324{word-spacing:8.000000pt;}
.ws2c_c00324{word-spacing:11.072000pt;}
.ws2d_c00324{word-spacing:11.200000pt;}
.ws14_c00324{word-spacing:12.096000pt;}
.ws15_c00324{word-spacing:12.160000pt;}
.ws1d_c00324{word-spacing:13.760000pt;}
.ws22_c00324{word-spacing:14.272000pt;}
.ws23_c00324{word-spacing:14.336000pt;}
.ws21_c00324{word-spacing:14.400000pt;}
.ws11_c00324{word-spacing:15.360000pt;}
.ws30_c00324{word-spacing:16.960000pt;}
.ws32_c00324{word-spacing:17.216000pt;}
.ws31_c00324{word-spacing:17.280000pt;}
.ws10_c00324{word-spacing:18.880000pt;}
.wsf_c00324{word-spacing:19.200000pt;}
.ws24_c00324{word-spacing:24.576000pt;}
.ws25_c00324{word-spacing:24.640000pt;}
._7_c00324{margin-left:-3.859200pt;}
._1_c00324{margin-left:-0.940800pt;}
._0_c00324{width:1.084800pt;}
._2_c00324{width:2.684800pt;}
._8_c00324{width:3.833600pt;}
._4_c00324{width:5.248000pt;}
._6_c00324{width:7.680000pt;}
._5_c00324{width:9.088000pt;}
._a_c00324{width:10.777600pt;}
._3_c00324{width:11.968000pt;}
._b_c00324{width:17.619200pt;}
._9_c00324{width:24.038400pt;}
.fs4_c00324{font-size:34.560000pt;}
.fs2_c00324{font-size:42.560000pt;}
.fs3_c00324{font-size:45.440000pt;}
.fs0_c00324{font-size:48.000000pt;}
.fs5_c00324{font-size:53.440000pt;}
.fs1_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y27_c00324{bottom:50.880000pt;}
.y26_c00324{bottom:102.240000pt;}
.y25_c00324{bottom:112.876000pt;}
.y24_c00324{bottom:132.880000pt;}
.y28_c00324{bottom:144.160000pt;}
.y23_c00324{bottom:194.800000pt;}
.y22_c00324{bottom:222.400000pt;}
.y21_c00324{bottom:250.000000pt;}
.y20_c00324{bottom:277.600000pt;}
.y1f_c00324{bottom:305.280000pt;}
.y1e_c00324{bottom:333.280000pt;}
.y1d_c00324{bottom:360.880000pt;}
.y1c_c00324{bottom:388.480000pt;}
.y1b_c00324{bottom:416.080000pt;}
.y1a_c00324{bottom:443.680000pt;}
.y19_c00324{bottom:471.280000pt;}
.y18_c00324{bottom:498.880000pt;}
.y17_c00324{bottom:526.480000pt;}
.y16_c00324{bottom:554.080000pt;}
.y15_c00324{bottom:581.680000pt;}
.y14_c00324{bottom:609.280000pt;}
.y13_c00324{bottom:637.040000pt;}
.y12_c00324{bottom:665.040000pt;}
.y11_c00324{bottom:692.640000pt;}
.y10_c00324{bottom:720.240000pt;}
.yf_c00324{bottom:747.760000pt;}
.ye_c00324{bottom:775.360000pt;}
.yd_c00324{bottom:802.960000pt;}
.yc_c00324{bottom:830.560000pt;}
.yb_c00324{bottom:858.160000pt;}
.ya_c00324{bottom:885.760000pt;}
.y9_c00324{bottom:913.360000pt;}
.y8_c00324{bottom:940.960000pt;}
.y7_c00324{bottom:968.560000pt;}
.y6_c00324{bottom:986.960000pt;}
.y5_c00324{bottom:1005.360000pt;}
.y4_c00324{bottom:1023.040000pt;}
.y3_c00324{bottom:1036.804000pt;}
.y2_c00324{bottom:1050.640000pt;}
.y1_c00324{bottom:1064.400000pt;}
.h8_c00324{height:33.918750pt;}
.h5_c00324{height:44.468750pt;}
.h3_c00324{height:47.085938pt;}
.h2_c00324{height:47.109375pt;}
.h9_c00324{height:52.448437pt;}
.h4_c00324{height:62.812500pt;}
.h6_c00324{height:65.770312pt;}
.h7_c00324{height:127.593750pt;}
.h0_c00324{height:1122.560000pt;}
.h1_c00324{height:1122.666667pt;}
.w0_c00324{width:793.840000pt;}
.w1_c00324{width:794.000000pt;}
.x0_c00324{left:0.000000pt;}
.x3_c00324{left:113.440000pt;}
.x2_c00324{left:377.920000pt;}
.x1_c00324{left:396.960000pt;}
.x4_c00324{left:656.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_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_b26cd1034efbd52637ca5ee7.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_5b2de2d9b2ad7e18c74f9819.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;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_c00325;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00325{font-family:ff4_c00325;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00325;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00325{font-family:ff5_c00325;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00325{vertical-align:-61.938000px;}
.v5_c00325{vertical-align:-20.880000px;}
.v3_c00325{vertical-align:-14.760000px;}
.v0_c00325{vertical-align:0.000000px;}
.v4_c00325{vertical-align:14.760000px;}
.v2_c00325{vertical-align:27.000000px;}
.ls15_c00325{letter-spacing:-0.576000px;}
.ls14_c00325{letter-spacing:-0.432000px;}
.ls13_c00325{letter-spacing:-0.216000px;}
.ls19_c00325{letter-spacing:-0.180360px;}
.ls18_c00325{letter-spacing:-0.120240px;}
.ls16_c00325{letter-spacing:-0.072000px;}
.ls17_c00325{letter-spacing:-0.060120px;}
.ls12_c00325{letter-spacing:0.000000px;}
.ls3_c00325{letter-spacing:0.072000px;}
.lsf_c00325{letter-spacing:0.120240px;}
.ls5_c00325{letter-spacing:0.144000px;}
.ls1a_c00325{letter-spacing:0.180360px;}
.ls1_c00325{letter-spacing:0.191520px;}
.lsd_c00325{letter-spacing:0.360000px;}
.lse_c00325{letter-spacing:0.367200px;}
.ls2_c00325{letter-spacing:2.520000px;}
.lsc_c00325{letter-spacing:5.400000px;}
.lsb_c00325{letter-spacing:9.000000px;}
.ls7_c00325{letter-spacing:9.720000px;}
.ls10_c00325{letter-spacing:12.324600px;}
.ls11_c00325{letter-spacing:12.390732px;}
.ls4_c00325{letter-spacing:12.960000px;}
.ls8_c00325{letter-spacing:15.120000px;}
.lsa_c00325{letter-spacing:20.016000px;}
.ls6_c00325{letter-spacing:20.160000px;}
.ls9_c00325{letter-spacing:22.961520px;}
.ls0_c00325{letter-spacing:319.518000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00325{word-spacing:-72.000000px;}
.ws8_c00325{word-spacing:-18.144000px;}
.ws7_c00325{word-spacing:-18.072000px;}
.ws1_c00325{word-spacing:-18.000000px;}
.ws9_c00325{word-spacing:-17.928000px;}
.ws2_c00325{word-spacing:-17.784000px;}
.ws3_c00325{word-spacing:-17.568000px;}
.ws4_c00325{word-spacing:-17.424000px;}
.wsa_c00325{word-spacing:-15.840000px;}
.wsc_c00325{word-spacing:-15.030000px;}
.ws0_c00325{word-spacing:-12.161520px;}
.wsb_c00325{word-spacing:-9.720000px;}
.ws3c_c00325{word-spacing:-0.420840px;}
.wse_c00325{word-spacing:-0.162000px;}
.ws36_c00325{word-spacing:-0.120240px;}
.ws14_c00325{word-spacing:-0.072000px;}
.ws3b_c00325{word-spacing:-0.060120px;}
.wsd_c00325{word-spacing:0.000000px;}
.ws37_c00325{word-spacing:0.060120px;}
.ws35_c00325{word-spacing:0.180360px;}
.ws12_c00325{word-spacing:0.648000px;}
.ws13_c00325{word-spacing:0.720000px;}
.ws11_c00325{word-spacing:2.448000px;}
.ws10_c00325{word-spacing:2.520000px;}
.ws33_c00325{word-spacing:3.528000px;}
.ws6_c00325{word-spacing:4.176000px;}
.ws31_c00325{word-spacing:4.248000px;}
.ws2b_c00325{word-spacing:4.968000px;}
.ws2a_c00325{word-spacing:5.040000px;}
.ws1d_c00325{word-spacing:5.256000px;}
.ws34_c00325{word-spacing:5.328000px;}
.ws1c_c00325{word-spacing:5.760000px;}
.ws2f_c00325{word-spacing:6.048000px;}
.ws2e_c00325{word-spacing:6.408000px;}
.ws30_c00325{word-spacing:6.480000px;}
.ws21_c00325{word-spacing:6.840000px;}
.ws18_c00325{word-spacing:8.208000px;}
.ws19_c00325{word-spacing:8.640000px;}
.ws20_c00325{word-spacing:9.288000px;}
.ws1f_c00325{word-spacing:9.720000px;}
.ws27_c00325{word-spacing:10.080000px;}
.ws32_c00325{word-spacing:10.368000px;}
.ws15_c00325{word-spacing:10.728000px;}
.ws29_c00325{word-spacing:11.088000px;}
.ws28_c00325{word-spacing:11.160000px;}
.ws38_c00325{word-spacing:12.024000px;}
.ws3a_c00325{word-spacing:12.144240px;}
.ws39_c00325{word-spacing:12.444840px;}
.ws1a_c00325{word-spacing:12.528000px;}
.ws1b_c00325{word-spacing:12.600000px;}
.wsf_c00325{word-spacing:14.040000px;}
.ws22_c00325{word-spacing:14.976000px;}
.ws23_c00325{word-spacing:15.048000px;}
.ws25_c00325{word-spacing:17.928000px;}
.ws26_c00325{word-spacing:18.000000px;}
.ws17_c00325{word-spacing:18.648000px;}
.ws16_c00325{word-spacing:18.720000px;}
.ws2d_c00325{word-spacing:19.800000px;}
.ws1e_c00325{word-spacing:20.088000px;}
.ws2c_c00325{word-spacing:20.160000px;}
.ws24_c00325{word-spacing:22.896000px;}
._8_c00325{margin-left:-6.624000px;}
._7_c00325{margin-left:-4.176000px;}
._1_c00325{margin-left:-1.008000px;}
._c_c00325{width:1.008000px;}
._2_c00325{width:2.088000px;}
._e_c00325{width:3.952800px;}
._5_c00325{width:6.336000px;}
._4_c00325{width:8.496000px;}
._b_c00325{width:10.497600px;}
._d_c00325{width:12.528000px;}
._0_c00325{width:14.112000px;}
._a_c00325{width:15.112800px;}
._3_c00325{width:19.080000px;}
._6_c00325{width:21.096000px;}
._9_c00325{width:23.184000px;}
.fc0_c00325{color:rgb(0,0,0);}
.fs4_c00325{font-size:38.880000px;}
.fs2_c00325{font-size:47.880000px;}
.fs3_c00325{font-size:51.120000px;}
.fs0_c00325{font-size:54.000000px;}
.fs5_c00325{font-size:60.120000px;}
.fs1_c00325{font-size:72.000000px;}
.y0_c00325{bottom:0.000000px;}
.y26_c00325{bottom:57.240000px;}
.y25_c00325{bottom:109.795680px;}
.y24_c00325{bottom:132.210000px;}
.y23_c00325{bottom:149.490000px;}
.y27_c00325{bottom:162.180000px;}
.y22_c00325{bottom:208.170000px;}
.y21_c00325{bottom:239.400000px;}
.y20_c00325{bottom:270.900000px;}
.y1f_c00325{bottom:301.950000px;}
.y1e_c00325{bottom:333.000000px;}
.y1d_c00325{bottom:363.960000px;}
.y1c_c00325{bottom:395.010000px;}
.y1b_c00325{bottom:426.060000px;}
.y1a_c00325{bottom:457.110000px;}
.y19_c00325{bottom:488.160000px;}
.y18_c00325{bottom:519.210000px;}
.y17_c00325{bottom:550.260000px;}
.y16_c00325{bottom:581.310000px;}
.y15_c00325{bottom:612.360000px;}
.y14_c00325{bottom:643.410000px;}
.y13_c00325{bottom:674.640000px;}
.y12_c00325{bottom:706.320000px;}
.y11_c00325{bottom:737.820000px;}
.y10_c00325{bottom:768.870000px;}
.yf_c00325{bottom:799.920000px;}
.ye_c00325{bottom:830.970000px;}
.yd_c00325{bottom:861.930000px;}
.yc_c00325{bottom:892.980000px;}
.yb_c00325{bottom:924.030000px;}
.ya_c00325{bottom:955.080000px;}
.y9_c00325{bottom:986.130000px;}
.y8_c00325{bottom:1017.180000px;}
.y7_c00325{bottom:1048.230000px;}
.y6_c00325{bottom:1079.280000px;}
.y5_c00325{bottom:1110.330000px;}
.y4_c00325{bottom:1131.030000px;}
.y3_c00325{bottom:1150.915500px;}
.y2_c00325{bottom:1166.400000px;}
.y1_c00325{bottom:1197.450000px;}
.h7_c00325{height:38.158594px;}
.h6_c00325{height:50.027344px;}
.h2_c00325{height:52.998047px;}
.h8_c00325{height:59.004492px;}
.h3_c00325{height:70.664062px;}
.h4_c00325{height:73.991602px;}
.h5_c00325{height:143.542969px;}
.h0_c00325{height:1262.880000px;}
.h1_c00325{height:1263.000000px;}
.w0_c00325{width:893.070000px;}
.w1_c00325{width:893.250000px;}
.x0_c00325{left:0.000000px;}
.x2_c00325{left:127.620000px;}
.x1_c00325{left:446.580000px;}
@media print{
.v1_c00325{vertical-align:-55.056000pt;}
.v5_c00325{vertical-align:-18.560000pt;}
.v3_c00325{vertical-align:-13.120000pt;}
.v0_c00325{vertical-align:0.000000pt;}
.v4_c00325{vertical-align:13.120000pt;}
.v2_c00325{vertical-align:24.000000pt;}
.ls15_c00325{letter-spacing:-0.512000pt;}
.ls14_c00325{letter-spacing:-0.384000pt;}
.ls13_c00325{letter-spacing:-0.192000pt;}
.ls19_c00325{letter-spacing:-0.160320pt;}
.ls18_c00325{letter-spacing:-0.106880pt;}
.ls16_c00325{letter-spacing:-0.064000pt;}
.ls17_c00325{letter-spacing:-0.053440pt;}
.ls12_c00325{letter-spacing:0.000000pt;}
.ls3_c00325{letter-spacing:0.064000pt;}
.lsf_c00325{letter-spacing:0.106880pt;}
.ls5_c00325{letter-spacing:0.128000pt;}
.ls1a_c00325{letter-spacing:0.160320pt;}
.ls1_c00325{letter-spacing:0.170240pt;}
.lsd_c00325{letter-spacing:0.320000pt;}
.lse_c00325{letter-spacing:0.326400pt;}
.ls2_c00325{letter-spacing:2.240000pt;}
.lsc_c00325{letter-spacing:4.800000pt;}
.lsb_c00325{letter-spacing:8.000000pt;}
.ls7_c00325{letter-spacing:8.640000pt;}
.ls10_c00325{letter-spacing:10.955200pt;}
.ls11_c00325{letter-spacing:11.013984pt;}
.ls4_c00325{letter-spacing:11.520000pt;}
.ls8_c00325{letter-spacing:13.440000pt;}
.lsa_c00325{letter-spacing:17.792000pt;}
.ls6_c00325{letter-spacing:17.920000pt;}
.ls9_c00325{letter-spacing:20.410240pt;}
.ls0_c00325{letter-spacing:284.016000pt;}
.ws5_c00325{word-spacing:-64.000000pt;}
.ws8_c00325{word-spacing:-16.128000pt;}
.ws7_c00325{word-spacing:-16.064000pt;}
.ws1_c00325{word-spacing:-16.000000pt;}
.ws9_c00325{word-spacing:-15.936000pt;}
.ws2_c00325{word-spacing:-15.808000pt;}
.ws3_c00325{word-spacing:-15.616000pt;}
.ws4_c00325{word-spacing:-15.488000pt;}
.wsa_c00325{word-spacing:-14.080000pt;}
.wsc_c00325{word-spacing:-13.360000pt;}
.ws0_c00325{word-spacing:-10.810240pt;}
.wsb_c00325{word-spacing:-8.640000pt;}
.ws3c_c00325{word-spacing:-0.374080pt;}
.wse_c00325{word-spacing:-0.144000pt;}
.ws36_c00325{word-spacing:-0.106880pt;}
.ws14_c00325{word-spacing:-0.064000pt;}
.ws3b_c00325{word-spacing:-0.053440pt;}
.wsd_c00325{word-spacing:0.000000pt;}
.ws37_c00325{word-spacing:0.053440pt;}
.ws35_c00325{word-spacing:0.160320pt;}
.ws12_c00325{word-spacing:0.576000pt;}
.ws13_c00325{word-spacing:0.640000pt;}
.ws11_c00325{word-spacing:2.176000pt;}
.ws10_c00325{word-spacing:2.240000pt;}
.ws33_c00325{word-spacing:3.136000pt;}
.ws6_c00325{word-spacing:3.712000pt;}
.ws31_c00325{word-spacing:3.776000pt;}
.ws2b_c00325{word-spacing:4.416000pt;}
.ws2a_c00325{word-spacing:4.480000pt;}
.ws1d_c00325{word-spacing:4.672000pt;}
.ws34_c00325{word-spacing:4.736000pt;}
.ws1c_c00325{word-spacing:5.120000pt;}
.ws2f_c00325{word-spacing:5.376000pt;}
.ws2e_c00325{word-spacing:5.696000pt;}
.ws30_c00325{word-spacing:5.760000pt;}
.ws21_c00325{word-spacing:6.080000pt;}
.ws18_c00325{word-spacing:7.296000pt;}
.ws19_c00325{word-spacing:7.680000pt;}
.ws20_c00325{word-spacing:8.256000pt;}
.ws1f_c00325{word-spacing:8.640000pt;}
.ws27_c00325{word-spacing:8.960000pt;}
.ws32_c00325{word-spacing:9.216000pt;}
.ws15_c00325{word-spacing:9.536000pt;}
.ws29_c00325{word-spacing:9.856000pt;}
.ws28_c00325{word-spacing:9.920000pt;}
.ws38_c00325{word-spacing:10.688000pt;}
.ws3a_c00325{word-spacing:10.794880pt;}
.ws39_c00325{word-spacing:11.062080pt;}
.ws1a_c00325{word-spacing:11.136000pt;}
.ws1b_c00325{word-spacing:11.200000pt;}
.wsf_c00325{word-spacing:12.480000pt;}
.ws22_c00325{word-spacing:13.312000pt;}
.ws23_c00325{word-spacing:13.376000pt;}
.ws25_c00325{word-spacing:15.936000pt;}
.ws26_c00325{word-spacing:16.000000pt;}
.ws17_c00325{word-spacing:16.576000pt;}
.ws16_c00325{word-spacing:16.640000pt;}
.ws2d_c00325{word-spacing:17.600000pt;}
.ws1e_c00325{word-spacing:17.856000pt;}
.ws2c_c00325{word-spacing:17.920000pt;}
.ws24_c00325{word-spacing:20.352000pt;}
._8_c00325{margin-left:-5.888000pt;}
._7_c00325{margin-left:-3.712000pt;}
._1_c00325{margin-left:-0.896000pt;}
._c_c00325{width:0.896000pt;}
._2_c00325{width:1.856000pt;}
._e_c00325{width:3.513600pt;}
._5_c00325{width:5.632000pt;}
._4_c00325{width:7.552000pt;}
._b_c00325{width:9.331200pt;}
._d_c00325{width:11.136000pt;}
._0_c00325{width:12.544000pt;}
._a_c00325{width:13.433600pt;}
._3_c00325{width:16.960000pt;}
._6_c00325{width:18.752000pt;}
._9_c00325{width:20.608000pt;}
.fs4_c00325{font-size:34.560000pt;}
.fs2_c00325{font-size:42.560000pt;}
.fs3_c00325{font-size:45.440000pt;}
.fs0_c00325{font-size:48.000000pt;}
.fs5_c00325{font-size:53.440000pt;}
.fs1_c00325{font-size:64.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y26_c00325{bottom:50.880000pt;}
.y25_c00325{bottom:97.596160pt;}
.y24_c00325{bottom:117.520000pt;}
.y23_c00325{bottom:132.880000pt;}
.y27_c00325{bottom:144.160000pt;}
.y22_c00325{bottom:185.040000pt;}
.y21_c00325{bottom:212.800000pt;}
.y20_c00325{bottom:240.800000pt;}
.y1f_c00325{bottom:268.400000pt;}
.y1e_c00325{bottom:296.000000pt;}
.y1d_c00325{bottom:323.520000pt;}
.y1c_c00325{bottom:351.120000pt;}
.y1b_c00325{bottom:378.720000pt;}
.y1a_c00325{bottom:406.320000pt;}
.y19_c00325{bottom:433.920000pt;}
.y18_c00325{bottom:461.520000pt;}
.y17_c00325{bottom:489.120000pt;}
.y16_c00325{bottom:516.720000pt;}
.y15_c00325{bottom:544.320000pt;}
.y14_c00325{bottom:571.920000pt;}
.y13_c00325{bottom:599.680000pt;}
.y12_c00325{bottom:627.840000pt;}
.y11_c00325{bottom:655.840000pt;}
.y10_c00325{bottom:683.440000pt;}
.yf_c00325{bottom:711.040000pt;}
.ye_c00325{bottom:738.640000pt;}
.yd_c00325{bottom:766.160000pt;}
.yc_c00325{bottom:793.760000pt;}
.yb_c00325{bottom:821.360000pt;}
.ya_c00325{bottom:848.960000pt;}
.y9_c00325{bottom:876.560000pt;}
.y8_c00325{bottom:904.160000pt;}
.y7_c00325{bottom:931.760000pt;}
.y6_c00325{bottom:959.360000pt;}
.y5_c00325{bottom:986.960000pt;}
.y4_c00325{bottom:1005.360000pt;}
.y3_c00325{bottom:1023.036000pt;}
.y2_c00325{bottom:1036.800000pt;}
.y1_c00325{bottom:1064.400000pt;}
.h7_c00325{height:33.918750pt;}
.h6_c00325{height:44.468750pt;}
.h2_c00325{height:47.109375pt;}
.h8_c00325{height:52.448437pt;}
.h3_c00325{height:62.812500pt;}
.h4_c00325{height:65.770312pt;}
.h5_c00325{height:127.593750pt;}
.h0_c00325{height:1122.560000pt;}
.h1_c00325{height:1122.666667pt;}
.w0_c00325{width:793.840000pt;}
.w1_c00325{width:794.000000pt;}
.x0_c00325{left:0.000000pt;}
.x2_c00325{left:113.440000pt;}
.x1_c00325{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68d4fbd64c25c744f828583e.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_cd1156de99efa1aa3ce41ae2.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;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_c00326;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00326;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff6_c00326{font-family:ff6_c00326;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00326{vertical-align:-20.880000px;}
.v2_c00326{vertical-align:-14.760000px;}
.v0_c00326{vertical-align:0.000000px;}
.v3_c00326{vertical-align:14.760000px;}
.v1_c00326{vertical-align:27.000000px;}
.lsf_c00326{letter-spacing:-0.576000px;}
.ls10_c00326{letter-spacing:-0.360000px;}
.ls11_c00326{letter-spacing:-0.288000px;}
.ls12_c00326{letter-spacing:-0.120240px;}
.lsd_c00326{letter-spacing:-0.108000px;}
.lse_c00326{letter-spacing:-0.072000px;}
.ls13_c00326{letter-spacing:-0.060120px;}
.lsc_c00326{letter-spacing:0.000000px;}
.ls4_c00326{letter-spacing:0.072000px;}
.ls0_c00326{letter-spacing:0.086400px;}
.lsa_c00326{letter-spacing:0.144000px;}
.ls14_c00326{letter-spacing:0.180360px;}
.ls5_c00326{letter-spacing:0.191520px;}
.ls9_c00326{letter-spacing:0.360000px;}
.ls1_c00326{letter-spacing:2.520000px;}
.ls3_c00326{letter-spacing:2.880000px;}
.ls6_c00326{letter-spacing:3.600000px;}
.lsb_c00326{letter-spacing:3.667320px;}
.ls8_c00326{letter-spacing:20.016000px;}
.ls2_c00326{letter-spacing:22.320000px;}
.ls7_c00326{letter-spacing:22.961520px;}
.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;}
}
.ws4_c00326{word-spacing:-72.000000px;}
.ws1_c00326{word-spacing:-18.072000px;}
.ws0_c00326{word-spacing:-18.000000px;}
.ws2_c00326{word-spacing:-17.928000px;}
.ws7_c00326{word-spacing:-15.030000px;}
.ws3_c00326{word-spacing:-12.161520px;}
.ws6_c00326{word-spacing:-9.720000px;}
.ws38_c00326{word-spacing:-0.420840px;}
.ws11_c00326{word-spacing:-0.144000px;}
.ws1b_c00326{word-spacing:-0.072000px;}
.ws36_c00326{word-spacing:-0.060120px;}
.ws8_c00326{word-spacing:0.000000px;}
.wsa_c00326{word-spacing:0.162000px;}
.ws37_c00326{word-spacing:0.180360px;}
.ws9_c00326{word-spacing:0.270000px;}
.ws1c_c00326{word-spacing:0.360000px;}
.ws33_c00326{word-spacing:0.720000px;}
.wse_c00326{word-spacing:1.008000px;}
.wsf_c00326{word-spacing:1.080000px;}
.ws15_c00326{word-spacing:1.296000px;}
.ws10_c00326{word-spacing:2.088000px;}
.ws12_c00326{word-spacing:2.520000px;}
.ws23_c00326{word-spacing:2.808000px;}
.ws22_c00326{word-spacing:2.880000px;}
.ws1d_c00326{word-spacing:3.168000px;}
.ws24_c00326{word-spacing:3.240000px;}
.ws2c_c00326{word-spacing:3.600000px;}
.ws35_c00326{word-spacing:3.727440px;}
.ws34_c00326{word-spacing:3.787560px;}
.ws5_c00326{word-spacing:4.176000px;}
.ws14_c00326{word-spacing:4.608000px;}
.ws13_c00326{word-spacing:4.680000px;}
.ws28_c00326{word-spacing:6.408000px;}
.ws1a_c00326{word-spacing:6.768000px;}
.ws19_c00326{word-spacing:7.416000px;}
.ws1e_c00326{word-spacing:8.280000px;}
.ws18_c00326{word-spacing:9.000000px;}
.ws17_c00326{word-spacing:9.072000px;}
.ws26_c00326{word-spacing:10.440000px;}
.ws27_c00326{word-spacing:10.656000px;}
.ws25_c00326{word-spacing:10.800000px;}
.ws30_c00326{word-spacing:11.016000px;}
.ws31_c00326{word-spacing:11.520000px;}
.ws2d_c00326{word-spacing:11.808000px;}
.ws2e_c00326{word-spacing:11.880000px;}
.ws2f_c00326{word-spacing:16.128000px;}
.ws21_c00326{word-spacing:16.920000px;}
.wsc_c00326{word-spacing:20.448000px;}
.wsb_c00326{word-spacing:20.520000px;}
.wsd_c00326{word-spacing:20.880000px;}
.ws1f_c00326{word-spacing:22.248000px;}
.ws20_c00326{word-spacing:22.320000px;}
.ws32_c00326{word-spacing:24.120000px;}
.ws16_c00326{word-spacing:26.568000px;}
.ws2b_c00326{word-spacing:63.288000px;}
.ws2a_c00326{word-spacing:63.360000px;}
.ws29_c00326{word-spacing:63.648000px;}
._9_c00326{margin-left:-5.976000px;}
._8_c00326{margin-left:-4.388400px;}
._1_c00326{margin-left:-1.058400px;}
._0_c00326{width:1.220400px;}
._3_c00326{width:2.325600px;}
._7_c00326{width:4.335840px;}
._a_c00326{width:5.652000px;}
._5_c00326{width:6.926400px;}
._c_c00326{width:11.340000px;}
._2_c00326{width:20.952000px;}
._6_c00326{width:22.204800px;}
._d_c00326{width:24.184800px;}
._4_c00326{width:26.452800px;}
._b_c00326{width:63.504000px;}
.fc0_c00326{color:rgb(0,0,0);}
.fs4_c00326{font-size:38.880000px;}
.fs2_c00326{font-size:47.880000px;}
.fs3_c00326{font-size:51.120000px;}
.fs0_c00326{font-size:54.000000px;}
.fs5_c00326{font-size:60.120000px;}
.fs1_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y27_c00326{bottom:57.240000px;}
.y26_c00326{bottom:109.795680px;}
.y25_c00326{bottom:132.210000px;}
.y28_c00326{bottom:144.900000px;}
.y24_c00326{bottom:175.680000px;}
.y23_c00326{bottom:206.730000px;}
.y22_c00326{bottom:237.780000px;}
.y21_c00326{bottom:268.830000px;}
.y20_c00326{bottom:299.880000px;}
.y1f_c00326{bottom:330.930000px;}
.y1e_c00326{bottom:361.980000px;}
.y1d_c00326{bottom:393.030000px;}
.y1c_c00326{bottom:424.080000px;}
.y1b_c00326{bottom:455.130000px;}
.y1a_c00326{bottom:486.180000px;}
.y19_c00326{bottom:517.410000px;}
.y18_c00326{bottom:549.000000px;}
.y17_c00326{bottom:580.500000px;}
.y16_c00326{bottom:611.550000px;}
.y15_c00326{bottom:642.600000px;}
.y14_c00326{bottom:673.650000px;}
.y13_c00326{bottom:704.700000px;}
.y12_c00326{bottom:735.750000px;}
.y11_c00326{bottom:766.800000px;}
.y10_c00326{bottom:797.850000px;}
.yf_c00326{bottom:828.900000px;}
.ye_c00326{bottom:859.950000px;}
.yd_c00326{bottom:891.000000px;}
.yc_c00326{bottom:922.050000px;}
.yb_c00326{bottom:953.100000px;}
.ya_c00326{bottom:984.150000px;}
.y9_c00326{bottom:1015.200000px;}
.y8_c00326{bottom:1046.880000px;}
.y7_c00326{bottom:1079.280000px;}
.y6_c00326{bottom:1110.330000px;}
.y5_c00326{bottom:1131.030000px;}
.y4_c00326{bottom:1150.920000px;}
.y3_c00326{bottom:1166.404500px;}
.y2_c00326{bottom:1181.970000px;}
.y1_c00326{bottom:1197.450000px;}
.h7_c00326{height:38.158594px;}
.h3_c00326{height:52.971680px;}
.h2_c00326{height:52.998047px;}
.h8_c00326{height:59.004492px;}
.h4_c00326{height:70.664062px;}
.h5_c00326{height:73.991602px;}
.h6_c00326{height:143.542969px;}
.h0_c00326{height:1262.880000px;}
.h1_c00326{height:1263.000000px;}
.w0_c00326{width:893.070000px;}
.w1_c00326{width:893.250000px;}
.x0_c00326{left:0.000000px;}
.x3_c00326{left:127.620000px;}
.x2_c00326{left:425.160000px;}
.x1_c00326{left:446.580000px;}
.x4_c00326{left:738.540000px;}
@media print{
.v4_c00326{vertical-align:-18.560000pt;}
.v2_c00326{vertical-align:-13.120000pt;}
.v0_c00326{vertical-align:0.000000pt;}
.v3_c00326{vertical-align:13.120000pt;}
.v1_c00326{vertical-align:24.000000pt;}
.lsf_c00326{letter-spacing:-0.512000pt;}
.ls10_c00326{letter-spacing:-0.320000pt;}
.ls11_c00326{letter-spacing:-0.256000pt;}
.ls12_c00326{letter-spacing:-0.106880pt;}
.lsd_c00326{letter-spacing:-0.096000pt;}
.lse_c00326{letter-spacing:-0.064000pt;}
.ls13_c00326{letter-spacing:-0.053440pt;}
.lsc_c00326{letter-spacing:0.000000pt;}
.ls4_c00326{letter-spacing:0.064000pt;}
.ls0_c00326{letter-spacing:0.076800pt;}
.lsa_c00326{letter-spacing:0.128000pt;}
.ls14_c00326{letter-spacing:0.160320pt;}
.ls5_c00326{letter-spacing:0.170240pt;}
.ls9_c00326{letter-spacing:0.320000pt;}
.ls1_c00326{letter-spacing:2.240000pt;}
.ls3_c00326{letter-spacing:2.560000pt;}
.ls6_c00326{letter-spacing:3.200000pt;}
.lsb_c00326{letter-spacing:3.259840pt;}
.ls8_c00326{letter-spacing:17.792000pt;}
.ls2_c00326{letter-spacing:19.840000pt;}
.ls7_c00326{letter-spacing:20.410240pt;}
.ws4_c00326{word-spacing:-64.000000pt;}
.ws1_c00326{word-spacing:-16.064000pt;}
.ws0_c00326{word-spacing:-16.000000pt;}
.ws2_c00326{word-spacing:-15.936000pt;}
.ws7_c00326{word-spacing:-13.360000pt;}
.ws3_c00326{word-spacing:-10.810240pt;}
.ws6_c00326{word-spacing:-8.640000pt;}
.ws38_c00326{word-spacing:-0.374080pt;}
.ws11_c00326{word-spacing:-0.128000pt;}
.ws1b_c00326{word-spacing:-0.064000pt;}
.ws36_c00326{word-spacing:-0.053440pt;}
.ws8_c00326{word-spacing:0.000000pt;}
.wsa_c00326{word-spacing:0.144000pt;}
.ws37_c00326{word-spacing:0.160320pt;}
.ws9_c00326{word-spacing:0.240000pt;}
.ws1c_c00326{word-spacing:0.320000pt;}
.ws33_c00326{word-spacing:0.640000pt;}
.wse_c00326{word-spacing:0.896000pt;}
.wsf_c00326{word-spacing:0.960000pt;}
.ws15_c00326{word-spacing:1.152000pt;}
.ws10_c00326{word-spacing:1.856000pt;}
.ws12_c00326{word-spacing:2.240000pt;}
.ws23_c00326{word-spacing:2.496000pt;}
.ws22_c00326{word-spacing:2.560000pt;}
.ws1d_c00326{word-spacing:2.816000pt;}
.ws24_c00326{word-spacing:2.880000pt;}
.ws2c_c00326{word-spacing:3.200000pt;}
.ws35_c00326{word-spacing:3.313280pt;}
.ws34_c00326{word-spacing:3.366720pt;}
.ws5_c00326{word-spacing:3.712000pt;}
.ws14_c00326{word-spacing:4.096000pt;}
.ws13_c00326{word-spacing:4.160000pt;}
.ws28_c00326{word-spacing:5.696000pt;}
.ws1a_c00326{word-spacing:6.016000pt;}
.ws19_c00326{word-spacing:6.592000pt;}
.ws1e_c00326{word-spacing:7.360000pt;}
.ws18_c00326{word-spacing:8.000000pt;}
.ws17_c00326{word-spacing:8.064000pt;}
.ws26_c00326{word-spacing:9.280000pt;}
.ws27_c00326{word-spacing:9.472000pt;}
.ws25_c00326{word-spacing:9.600000pt;}
.ws30_c00326{word-spacing:9.792000pt;}
.ws31_c00326{word-spacing:10.240000pt;}
.ws2d_c00326{word-spacing:10.496000pt;}
.ws2e_c00326{word-spacing:10.560000pt;}
.ws2f_c00326{word-spacing:14.336000pt;}
.ws21_c00326{word-spacing:15.040000pt;}
.wsc_c00326{word-spacing:18.176000pt;}
.wsb_c00326{word-spacing:18.240000pt;}
.wsd_c00326{word-spacing:18.560000pt;}
.ws1f_c00326{word-spacing:19.776000pt;}
.ws20_c00326{word-spacing:19.840000pt;}
.ws32_c00326{word-spacing:21.440000pt;}
.ws16_c00326{word-spacing:23.616000pt;}
.ws2b_c00326{word-spacing:56.256000pt;}
.ws2a_c00326{word-spacing:56.320000pt;}
.ws29_c00326{word-spacing:56.576000pt;}
._9_c00326{margin-left:-5.312000pt;}
._8_c00326{margin-left:-3.900800pt;}
._1_c00326{margin-left:-0.940800pt;}
._0_c00326{width:1.084800pt;}
._3_c00326{width:2.067200pt;}
._7_c00326{width:3.854080pt;}
._a_c00326{width:5.024000pt;}
._5_c00326{width:6.156800pt;}
._c_c00326{width:10.080000pt;}
._2_c00326{width:18.624000pt;}
._6_c00326{width:19.737600pt;}
._d_c00326{width:21.497600pt;}
._4_c00326{width:23.513600pt;}
._b_c00326{width:56.448000pt;}
.fs4_c00326{font-size:34.560000pt;}
.fs2_c00326{font-size:42.560000pt;}
.fs3_c00326{font-size:45.440000pt;}
.fs0_c00326{font-size:48.000000pt;}
.fs5_c00326{font-size:53.440000pt;}
.fs1_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y27_c00326{bottom:50.880000pt;}
.y26_c00326{bottom:97.596160pt;}
.y25_c00326{bottom:117.520000pt;}
.y28_c00326{bottom:128.800000pt;}
.y24_c00326{bottom:156.160000pt;}
.y23_c00326{bottom:183.760000pt;}
.y22_c00326{bottom:211.360000pt;}
.y21_c00326{bottom:238.960000pt;}
.y20_c00326{bottom:266.560000pt;}
.y1f_c00326{bottom:294.160000pt;}
.y1e_c00326{bottom:321.760000pt;}
.y1d_c00326{bottom:349.360000pt;}
.y1c_c00326{bottom:376.960000pt;}
.y1b_c00326{bottom:404.560000pt;}
.y1a_c00326{bottom:432.160000pt;}
.y19_c00326{bottom:459.920000pt;}
.y18_c00326{bottom:488.000000pt;}
.y17_c00326{bottom:516.000000pt;}
.y16_c00326{bottom:543.600000pt;}
.y15_c00326{bottom:571.200000pt;}
.y14_c00326{bottom:598.800000pt;}
.y13_c00326{bottom:626.400000pt;}
.y12_c00326{bottom:654.000000pt;}
.y11_c00326{bottom:681.600000pt;}
.y10_c00326{bottom:709.200000pt;}
.yf_c00326{bottom:736.800000pt;}
.ye_c00326{bottom:764.400000pt;}
.yd_c00326{bottom:792.000000pt;}
.yc_c00326{bottom:819.600000pt;}
.yb_c00326{bottom:847.200000pt;}
.ya_c00326{bottom:874.800000pt;}
.y9_c00326{bottom:902.400000pt;}
.y8_c00326{bottom:930.560000pt;}
.y7_c00326{bottom:959.360000pt;}
.y6_c00326{bottom:986.960000pt;}
.y5_c00326{bottom:1005.360000pt;}
.y4_c00326{bottom:1023.040000pt;}
.y3_c00326{bottom:1036.804000pt;}
.y2_c00326{bottom:1050.640000pt;}
.y1_c00326{bottom:1064.400000pt;}
.h7_c00326{height:33.918750pt;}
.h3_c00326{height:47.085938pt;}
.h2_c00326{height:47.109375pt;}
.h8_c00326{height:52.448437pt;}
.h4_c00326{height:62.812500pt;}
.h5_c00326{height:65.770313pt;}
.h6_c00326{height:127.593750pt;}
.h0_c00326{height:1122.560000pt;}
.h1_c00326{height:1122.666667pt;}
.w0_c00326{width:793.840000pt;}
.w1_c00326{width:794.000000pt;}
.x0_c00326{left:0.000000pt;}
.x3_c00326{left:113.440000pt;}
.x2_c00326{left:377.920000pt;}
.x1_c00326{left:396.960000pt;}
.x4_c00326{left:656.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_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_a547dc8d5b5a96b90fe86f48.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.284180;font-style:normal;font-weight:normal;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_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00327;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff4_c00327{font-family:ff4_c00327;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00327;src:url('chunks/assets/font_a6d8e14629b9ea40e72fa30f.woff2')format("woff");}.ff5_c00327{font-family:ff5_c00327;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:ff6_c00327;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00327{font-family:ff6_c00327;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00327{vertical-align:-61.938000px;}
.v5_c00327{vertical-align:-20.880000px;}
.v2_c00327{vertical-align:-14.760000px;}
.v0_c00327{vertical-align:0.000000px;}
.v3_c00327{vertical-align:14.760000px;}
.v4_c00327{vertical-align:27.000000px;}
.lsf_c00327{letter-spacing:-0.216000px;}
.ls13_c00327{letter-spacing:-0.180360px;}
.ls12_c00327{letter-spacing:-0.120240px;}
.ls10_c00327{letter-spacing:-0.072000px;}
.ls11_c00327{letter-spacing:-0.060120px;}
.lse_c00327{letter-spacing:0.000000px;}
.ls2_c00327{letter-spacing:0.072000px;}
.ls4_c00327{letter-spacing:0.086400px;}
.lsa_c00327{letter-spacing:0.144000px;}
.lsd_c00327{letter-spacing:0.180360px;}
.ls8_c00327{letter-spacing:0.191520px;}
.ls6_c00327{letter-spacing:0.720000px;}
.ls5_c00327{letter-spacing:1.440000px;}
.ls9_c00327{letter-spacing:11.880000px;}
.lsb_c00327{letter-spacing:12.324600px;}
.lsc_c00327{letter-spacing:12.390732px;}
.ls3_c00327{letter-spacing:20.016000px;}
.ls1_c00327{letter-spacing:22.961520px;}
.ls7_c00327{letter-spacing:25.200000px;}
.ls0_c00327{letter-spacing:319.518000px;}
.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:-72.000000px;}
.ws2_c00327{word-spacing:-18.072000px;}
.ws3_c00327{word-spacing:-18.000000px;}
.ws4_c00327{word-spacing:-17.928000px;}
.ws6_c00327{word-spacing:-17.784000px;}
.ws8_c00327{word-spacing:-15.030000px;}
.ws5_c00327{word-spacing:-12.161520px;}
.ws7_c00327{word-spacing:-9.720000px;}
.ws38_c00327{word-spacing:-0.420840px;}
.wsa_c00327{word-spacing:-0.162000px;}
.ws1e_c00327{word-spacing:-0.144000px;}
.wsd_c00327{word-spacing:-0.072000px;}
.ws37_c00327{word-spacing:-0.060120px;}
.ws9_c00327{word-spacing:0.000000px;}
.ws31_c00327{word-spacing:0.060120px;}
.ws34_c00327{word-spacing:0.180360px;}
.ws18_c00327{word-spacing:0.216000px;}
.ws1b_c00327{word-spacing:0.648000px;}
.ws1c_c00327{word-spacing:0.720000px;}
.ws11_c00327{word-spacing:1.008000px;}
.ws28_c00327{word-spacing:1.080000px;}
.ws13_c00327{word-spacing:1.368000px;}
.ws12_c00327{word-spacing:1.440000px;}
.ws14_c00327{word-spacing:1.656000px;}
.ws21_c00327{word-spacing:1.800000px;}
.ws22_c00327{word-spacing:3.888000px;}
.ws1_c00327{word-spacing:4.176000px;}
.ws29_c00327{word-spacing:5.040000px;}
.ws15_c00327{word-spacing:5.400000px;}
.ws19_c00327{word-spacing:5.688000px;}
.ws1a_c00327{word-spacing:5.760000px;}
.ws2d_c00327{word-spacing:6.840000px;}
.ws2e_c00327{word-spacing:7.056000px;}
.ws2c_c00327{word-spacing:7.920000px;}
.ws2b_c00327{word-spacing:8.208000px;}
.ws2a_c00327{word-spacing:8.640000px;}
.ws23_c00327{word-spacing:11.088000px;}
.ws25_c00327{word-spacing:11.448000px;}
.ws24_c00327{word-spacing:11.520000px;}
.ws32_c00327{word-spacing:12.024000px;}
.ws36_c00327{word-spacing:12.144240px;}
.ws35_c00327{word-spacing:12.384720px;}
.ws33_c00327{word-spacing:12.444840px;}
.ws30_c00327{word-spacing:12.888000px;}
.ws16_c00327{word-spacing:16.128000px;}
.ws20_c00327{word-spacing:17.640000px;}
.wsc_c00327{word-spacing:22.176000px;}
.wsb_c00327{word-spacing:22.248000px;}
.ws1f_c00327{word-spacing:24.768000px;}
.ws1d_c00327{word-spacing:24.840000px;}
.wse_c00327{word-spacing:25.848000px;}
.wsf_c00327{word-spacing:25.920000px;}
.ws10_c00327{word-spacing:27.000000px;}
.ws2f_c00327{word-spacing:30.600000px;}
.ws17_c00327{word-spacing:31.680000px;}
.ws27_c00327{word-spacing:62.568000px;}
.ws26_c00327{word-spacing:62.928000px;}
._2_c00327{margin-left:-6.480000px;}
._0_c00327{margin-left:-4.176000px;}
._1_c00327{margin-left:-1.152000px;}
._5_c00327{width:1.144800px;}
._10_c00327{width:2.152800px;}
._9_c00327{width:3.592800px;}
._8_c00327{width:4.680000px;}
._a_c00327{width:5.976000px;}
._f_c00327{width:7.696800px;}
._e_c00327{width:9.000000px;}
._11_c00327{width:12.444840px;}
._6_c00327{width:15.976800px;}
._c_c00327{width:16.999200px;}
._3_c00327{width:22.392000px;}
._b_c00327{width:24.408000px;}
._4_c00327{width:26.496000px;}
._7_c00327{width:31.536000px;}
._d_c00327{width:62.496000px;}
.fc0_c00327{color:rgb(0,0,0);}
.fs4_c00327{font-size:38.880000px;}
.fs3_c00327{font-size:47.880000px;}
.fs2_c00327{font-size:51.120000px;}
.fs0_c00327{font-size:54.000000px;}
.fs5_c00327{font-size:60.120000px;}
.fs1_c00327{font-size:72.000000px;}
.y0_c00327{bottom:0.000000px;}
.y26_c00327{bottom:57.240000px;}
.y25_c00327{bottom:109.795680px;}
.y24_c00327{bottom:132.210000px;}
.y27_c00327{bottom:144.900000px;}
.y23_c00327{bottom:175.050000px;}
.y22_c00327{bottom:206.100000px;}
.y21_c00327{bottom:237.150000px;}
.y20_c00327{bottom:268.200000px;}
.y1f_c00327{bottom:299.250000px;}
.y1e_c00327{bottom:330.300000px;}
.y1d_c00327{bottom:361.350000px;}
.y1c_c00327{bottom:392.400000px;}
.y1b_c00327{bottom:423.450000px;}
.y1a_c00327{bottom:454.500000px;}
.y19_c00327{bottom:485.550000px;}
.y18_c00327{bottom:516.600000px;}
.y17_c00327{bottom:547.830000px;}
.y16_c00327{bottom:579.420000px;}
.y15_c00327{bottom:610.920000px;}
.y14_c00327{bottom:641.970000px;}
.y13_c00327{bottom:673.020000px;}
.y12_c00327{bottom:704.070000px;}
.y11_c00327{bottom:735.120000px;}
.y10_c00327{bottom:766.170000px;}
.yf_c00327{bottom:797.220000px;}
.ye_c00327{bottom:828.270000px;}
.yd_c00327{bottom:859.320000px;}
.yc_c00327{bottom:890.370000px;}
.yb_c00327{bottom:921.420000px;}
.ya_c00327{bottom:952.470000px;}
.y9_c00327{bottom:984.240000px;}
.y8_c00327{bottom:1016.640000px;}
.y7_c00327{bottom:1047.690000px;}
.y6_c00327{bottom:1078.740000px;}
.y5_c00327{bottom:1109.880000px;}
.y4_c00327{bottom:1131.030000px;}
.y3_c00327{bottom:1150.915500px;}
.y2_c00327{bottom:1166.400000px;}
.y1_c00327{bottom:1197.450000px;}
.h7_c00327{height:38.158594px;}
.h6_c00327{height:50.941406px;}
.h2_c00327{height:52.998047px;}
.h8_c00327{height:59.004492px;}
.h3_c00327{height:70.664062px;}
.h5_c00327{height:73.991602px;}
.h4_c00327{height:143.542969px;}
.h0_c00327{height:1262.880000px;}
.h1_c00327{height:1263.000000px;}
.w0_c00327{width:893.070000px;}
.w1_c00327{width:893.250000px;}
.x0_c00327{left:0.000000px;}
.x2_c00327{left:127.620000px;}
.x1_c00327{left:446.580000px;}
@media print{
.v1_c00327{vertical-align:-55.056000pt;}
.v5_c00327{vertical-align:-18.560000pt;}
.v2_c00327{vertical-align:-13.120000pt;}
.v0_c00327{vertical-align:0.000000pt;}
.v3_c00327{vertical-align:13.120000pt;}
.v4_c00327{vertical-align:24.000000pt;}
.lsf_c00327{letter-spacing:-0.192000pt;}
.ls13_c00327{letter-spacing:-0.160320pt;}
.ls12_c00327{letter-spacing:-0.106880pt;}
.ls10_c00327{letter-spacing:-0.064000pt;}
.ls11_c00327{letter-spacing:-0.053440pt;}
.lse_c00327{letter-spacing:0.000000pt;}
.ls2_c00327{letter-spacing:0.064000pt;}
.ls4_c00327{letter-spacing:0.076800pt;}
.lsa_c00327{letter-spacing:0.128000pt;}
.lsd_c00327{letter-spacing:0.160320pt;}
.ls8_c00327{letter-spacing:0.170240pt;}
.ls6_c00327{letter-spacing:0.640000pt;}
.ls5_c00327{letter-spacing:1.280000pt;}
.ls9_c00327{letter-spacing:10.560000pt;}
.lsb_c00327{letter-spacing:10.955200pt;}
.lsc_c00327{letter-spacing:11.013984pt;}
.ls3_c00327{letter-spacing:17.792000pt;}
.ls1_c00327{letter-spacing:20.410240pt;}
.ls7_c00327{letter-spacing:22.400000pt;}
.ls0_c00327{letter-spacing:284.016000pt;}
.ws0_c00327{word-spacing:-64.000000pt;}
.ws2_c00327{word-spacing:-16.064000pt;}
.ws3_c00327{word-spacing:-16.000000pt;}
.ws4_c00327{word-spacing:-15.936000pt;}
.ws6_c00327{word-spacing:-15.808000pt;}
.ws8_c00327{word-spacing:-13.360000pt;}
.ws5_c00327{word-spacing:-10.810240pt;}
.ws7_c00327{word-spacing:-8.640000pt;}
.ws38_c00327{word-spacing:-0.374080pt;}
.wsa_c00327{word-spacing:-0.144000pt;}
.ws1e_c00327{word-spacing:-0.128000pt;}
.wsd_c00327{word-spacing:-0.064000pt;}
.ws37_c00327{word-spacing:-0.053440pt;}
.ws9_c00327{word-spacing:0.000000pt;}
.ws31_c00327{word-spacing:0.053440pt;}
.ws34_c00327{word-spacing:0.160320pt;}
.ws18_c00327{word-spacing:0.192000pt;}
.ws1b_c00327{word-spacing:0.576000pt;}
.ws1c_c00327{word-spacing:0.640000pt;}
.ws11_c00327{word-spacing:0.896000pt;}
.ws28_c00327{word-spacing:0.960000pt;}
.ws13_c00327{word-spacing:1.216000pt;}
.ws12_c00327{word-spacing:1.280000pt;}
.ws14_c00327{word-spacing:1.472000pt;}
.ws21_c00327{word-spacing:1.600000pt;}
.ws22_c00327{word-spacing:3.456000pt;}
.ws1_c00327{word-spacing:3.712000pt;}
.ws29_c00327{word-spacing:4.480000pt;}
.ws15_c00327{word-spacing:4.800000pt;}
.ws19_c00327{word-spacing:5.056000pt;}
.ws1a_c00327{word-spacing:5.120000pt;}
.ws2d_c00327{word-spacing:6.080000pt;}
.ws2e_c00327{word-spacing:6.272000pt;}
.ws2c_c00327{word-spacing:7.040000pt;}
.ws2b_c00327{word-spacing:7.296000pt;}
.ws2a_c00327{word-spacing:7.680000pt;}
.ws23_c00327{word-spacing:9.856000pt;}
.ws25_c00327{word-spacing:10.176000pt;}
.ws24_c00327{word-spacing:10.240000pt;}
.ws32_c00327{word-spacing:10.688000pt;}
.ws36_c00327{word-spacing:10.794880pt;}
.ws35_c00327{word-spacing:11.008640pt;}
.ws33_c00327{word-spacing:11.062080pt;}
.ws30_c00327{word-spacing:11.456000pt;}
.ws16_c00327{word-spacing:14.336000pt;}
.ws20_c00327{word-spacing:15.680000pt;}
.wsc_c00327{word-spacing:19.712000pt;}
.wsb_c00327{word-spacing:19.776000pt;}
.ws1f_c00327{word-spacing:22.016000pt;}
.ws1d_c00327{word-spacing:22.080000pt;}
.wse_c00327{word-spacing:22.976000pt;}
.wsf_c00327{word-spacing:23.040000pt;}
.ws10_c00327{word-spacing:24.000000pt;}
.ws2f_c00327{word-spacing:27.200000pt;}
.ws17_c00327{word-spacing:28.160000pt;}
.ws27_c00327{word-spacing:55.616000pt;}
.ws26_c00327{word-spacing:55.936000pt;}
._2_c00327{margin-left:-5.760000pt;}
._0_c00327{margin-left:-3.712000pt;}
._1_c00327{margin-left:-1.024000pt;}
._5_c00327{width:1.017600pt;}
._10_c00327{width:1.913600pt;}
._9_c00327{width:3.193600pt;}
._8_c00327{width:4.160000pt;}
._a_c00327{width:5.312000pt;}
._f_c00327{width:6.841600pt;}
._e_c00327{width:8.000000pt;}
._11_c00327{width:11.062080pt;}
._6_c00327{width:14.201600pt;}
._c_c00327{width:15.110400pt;}
._3_c00327{width:19.904000pt;}
._b_c00327{width:21.696000pt;}
._4_c00327{width:23.552000pt;}
._7_c00327{width:28.032000pt;}
._d_c00327{width:55.552000pt;}
.fs4_c00327{font-size:34.560000pt;}
.fs3_c00327{font-size:42.560000pt;}
.fs2_c00327{font-size:45.440000pt;}
.fs0_c00327{font-size:48.000000pt;}
.fs5_c00327{font-size:53.440000pt;}
.fs1_c00327{font-size:64.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y26_c00327{bottom:50.880000pt;}
.y25_c00327{bottom:97.596160pt;}
.y24_c00327{bottom:117.520000pt;}
.y27_c00327{bottom:128.800000pt;}
.y23_c00327{bottom:155.600000pt;}
.y22_c00327{bottom:183.200000pt;}
.y21_c00327{bottom:210.800000pt;}
.y20_c00327{bottom:238.400000pt;}
.y1f_c00327{bottom:266.000000pt;}
.y1e_c00327{bottom:293.600000pt;}
.y1d_c00327{bottom:321.200000pt;}
.y1c_c00327{bottom:348.800000pt;}
.y1b_c00327{bottom:376.400000pt;}
.y1a_c00327{bottom:404.000000pt;}
.y19_c00327{bottom:431.600000pt;}
.y18_c00327{bottom:459.200000pt;}
.y17_c00327{bottom:486.960000pt;}
.y16_c00327{bottom:515.040000pt;}
.y15_c00327{bottom:543.040000pt;}
.y14_c00327{bottom:570.640000pt;}
.y13_c00327{bottom:598.240000pt;}
.y12_c00327{bottom:625.840000pt;}
.y11_c00327{bottom:653.440000pt;}
.y10_c00327{bottom:681.040000pt;}
.yf_c00327{bottom:708.640000pt;}
.ye_c00327{bottom:736.240000pt;}
.yd_c00327{bottom:763.840000pt;}
.yc_c00327{bottom:791.440000pt;}
.yb_c00327{bottom:819.040000pt;}
.ya_c00327{bottom:846.640000pt;}
.y9_c00327{bottom:874.880000pt;}
.y8_c00327{bottom:903.680000pt;}
.y7_c00327{bottom:931.280000pt;}
.y6_c00327{bottom:958.880000pt;}
.y5_c00327{bottom:986.560000pt;}
.y4_c00327{bottom:1005.360000pt;}
.y3_c00327{bottom:1023.036000pt;}
.y2_c00327{bottom:1036.800000pt;}
.y1_c00327{bottom:1064.400000pt;}
.h7_c00327{height:33.918750pt;}
.h6_c00327{height:45.281250pt;}
.h2_c00327{height:47.109375pt;}
.h8_c00327{height:52.448437pt;}
.h3_c00327{height:62.812500pt;}
.h5_c00327{height:65.770313pt;}
.h4_c00327{height:127.593750pt;}
.h0_c00327{height:1122.560000pt;}
.h1_c00327{height:1122.666667pt;}
.w0_c00327{width:793.840000pt;}
.w1_c00327{width:794.000000pt;}
.x0_c00327{left:0.000000pt;}
.x2_c00327{left:113.440000pt;}
.x1_c00327{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21463a3b9cc561260c77e539.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00328;src:url('chunks/assets/font_15afa0f1dbe75391df96f353.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;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:ff6_c00328;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00328{font-family:ff6_c00328;line-height:1.142090;font-style: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);}
.v1_c00328{vertical-align:-14.760000px;}
.v0_c00328{vertical-align:0.000000px;}
.v2_c00328{vertical-align:14.760000px;}
.lsb_c00328{letter-spacing:-0.144000px;}
.ls8_c00328{letter-spacing:-0.108000px;}
.lsa_c00328{letter-spacing:-0.072000px;}
.ls7_c00328{letter-spacing:0.000000px;}
.ls2_c00328{letter-spacing:0.072000px;}
.ls3_c00328{letter-spacing:0.079200px;}
.ls5_c00328{letter-spacing:0.144000px;}
.ls9_c00328{letter-spacing:0.504000px;}
.ls4_c00328{letter-spacing:0.720000px;}
.ls6_c00328{letter-spacing:1.080000px;}
.ls1_c00328{letter-spacing:20.016000px;}
.ls0_c00328{letter-spacing:22.961520px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:-72.000000px;}
.ws4_c00328{word-spacing:-18.144000px;}
.ws5_c00328{word-spacing:-18.072000px;}
.ws1_c00328{word-spacing:-18.000000px;}
.ws3_c00328{word-spacing:-17.928000px;}
.ws6_c00328{word-spacing:-17.856000px;}
.ws10_c00328{word-spacing:-0.504000px;}
.ws11_c00328{word-spacing:-0.072000px;}
.ws7_c00328{word-spacing:0.000000px;}
.ws9_c00328{word-spacing:0.162000px;}
.ws8_c00328{word-spacing:0.270000px;}
.ws12_c00328{word-spacing:0.288000px;}
.ws13_c00328{word-spacing:0.360000px;}
.wse_c00328{word-spacing:0.648000px;}
.wsf_c00328{word-spacing:0.720000px;}
.wsd_c00328{word-spacing:1.008000px;}
.ws1d_c00328{word-spacing:1.728000px;}
.ws1e_c00328{word-spacing:1.800000px;}
.ws19_c00328{word-spacing:3.240000px;}
.ws18_c00328{word-spacing:3.672000px;}
.ws2_c00328{word-spacing:4.176000px;}
.ws21_c00328{word-spacing:4.320000px;}
.ws2e_c00328{word-spacing:5.400000px;}
.ws26_c00328{word-spacing:6.336000px;}
.ws27_c00328{word-spacing:6.408000px;}
.ws25_c00328{word-spacing:6.480000px;}
.ws2d_c00328{word-spacing:6.840000px;}
.ws22_c00328{word-spacing:7.200000px;}
.ws14_c00328{word-spacing:7.416000px;}
.ws15_c00328{word-spacing:7.560000px;}
.ws17_c00328{word-spacing:12.888000px;}
.ws28_c00328{word-spacing:13.608000px;}
.ws29_c00328{word-spacing:13.680000px;}
.ws20_c00328{word-spacing:14.328000px;}
.ws1f_c00328{word-spacing:14.400000px;}
.ws16_c00328{word-spacing:14.688000px;}
.ws1b_c00328{word-spacing:15.768000px;}
.ws1a_c00328{word-spacing:15.840000px;}
.ws2c_c00328{word-spacing:19.080000px;}
.ws24_c00328{word-spacing:19.728000px;}
.ws23_c00328{word-spacing:19.800000px;}
.ws2b_c00328{word-spacing:21.168000px;}
.ws2a_c00328{word-spacing:21.240000px;}
.wsc_c00328{word-spacing:25.128000px;}
.wsb_c00328{word-spacing:25.200000px;}
.ws1c_c00328{word-spacing:27.360000px;}
.wsa_c00328{word-spacing:30.600000px;}
._2_c00328{margin-left:-6.624000px;}
._9_c00328{margin-left:-4.510800px;}
._1_c00328{margin-left:-1.058400px;}
._0_c00328{width:1.220400px;}
._b_c00328{width:2.646000px;}
._3_c00328{width:4.896000px;}
._c_c00328{width:6.444000px;}
._5_c00328{width:7.538400px;}
._7_c00328{width:13.665600px;}
._6_c00328{width:14.716800px;}
._8_c00328{width:16.272000px;}
._a_c00328{width:19.224000px;}
._d_c00328{width:21.052800px;}
._4_c00328{width:25.272000px;}
.fc0_c00328{color:rgb(0,0,0);}
.fs2_c00328{font-size:51.120000px;}
.fs0_c00328{font-size:54.000000px;}
.fs1_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y27_c00328{bottom:57.240000px;}
.y26_c00328{bottom:113.580000px;}
.y25_c00328{bottom:144.630000px;}
.y24_c00328{bottom:175.680000px;}
.y23_c00328{bottom:206.730000px;}
.y22_c00328{bottom:237.780000px;}
.y21_c00328{bottom:268.830000px;}
.y20_c00328{bottom:299.880000px;}
.y1f_c00328{bottom:330.930000px;}
.y1e_c00328{bottom:361.980000px;}
.y1d_c00328{bottom:393.030000px;}
.y1c_c00328{bottom:424.080000px;}
.y1b_c00328{bottom:455.130000px;}
.y1a_c00328{bottom:486.180000px;}
.y19_c00328{bottom:517.230000px;}
.y18_c00328{bottom:548.280000px;}
.y17_c00328{bottom:579.330000px;}
.y16_c00328{bottom:610.380000px;}
.y15_c00328{bottom:641.430000px;}
.y14_c00328{bottom:672.480000px;}
.y13_c00328{bottom:703.530000px;}
.y12_c00328{bottom:734.670000px;}
.y11_c00328{bottom:766.170000px;}
.y10_c00328{bottom:797.220000px;}
.yf_c00328{bottom:828.270000px;}
.ye_c00328{bottom:859.320000px;}
.yd_c00328{bottom:890.370000px;}
.yc_c00328{bottom:921.420000px;}
.yb_c00328{bottom:952.470000px;}
.ya_c00328{bottom:984.240000px;}
.y9_c00328{bottom:1016.640000px;}
.y8_c00328{bottom:1047.690000px;}
.y7_c00328{bottom:1078.740000px;}
.y6_c00328{bottom:1109.880000px;}
.y5_c00328{bottom:1131.030000px;}
.y4_c00328{bottom:1150.920000px;}
.y3_c00328{bottom:1166.404500px;}
.y2_c00328{bottom:1181.970000px;}
.y1_c00328{bottom:1197.450000px;}
.h6_c00328{height:50.027344px;}
.h3_c00328{height:52.971680px;}
.h2_c00328{height:52.998047px;}
.h4_c00328{height:70.664062px;}
.h5_c00328{height:143.542969px;}
.h0_c00328{height:1262.880000px;}
.h1_c00328{height:1263.000000px;}
.w0_c00328{width:893.070000px;}
.w1_c00328{width:893.250000px;}
.x0_c00328{left:0.000000px;}
.x3_c00328{left:127.620000px;}
.x2_c00328{left:425.160000px;}
.x1_c00328{left:446.580000px;}
.x4_c00328{left:738.540000px;}
@media print{
.v1_c00328{vertical-align:-13.120000pt;}
.v0_c00328{vertical-align:0.000000pt;}
.v2_c00328{vertical-align:13.120000pt;}
.lsb_c00328{letter-spacing:-0.128000pt;}
.ls8_c00328{letter-spacing:-0.096000pt;}
.lsa_c00328{letter-spacing:-0.064000pt;}
.ls7_c00328{letter-spacing:0.000000pt;}
.ls2_c00328{letter-spacing:0.064000pt;}
.ls3_c00328{letter-spacing:0.070400pt;}
.ls5_c00328{letter-spacing:0.128000pt;}
.ls9_c00328{letter-spacing:0.448000pt;}
.ls4_c00328{letter-spacing:0.640000pt;}
.ls6_c00328{letter-spacing:0.960000pt;}
.ls1_c00328{letter-spacing:17.792000pt;}
.ls0_c00328{letter-spacing:20.410240pt;}
.ws0_c00328{word-spacing:-64.000000pt;}
.ws4_c00328{word-spacing:-16.128000pt;}
.ws5_c00328{word-spacing:-16.064000pt;}
.ws1_c00328{word-spacing:-16.000000pt;}
.ws3_c00328{word-spacing:-15.936000pt;}
.ws6_c00328{word-spacing:-15.872000pt;}
.ws10_c00328{word-spacing:-0.448000pt;}
.ws11_c00328{word-spacing:-0.064000pt;}
.ws7_c00328{word-spacing:0.000000pt;}
.ws9_c00328{word-spacing:0.144000pt;}
.ws8_c00328{word-spacing:0.240000pt;}
.ws12_c00328{word-spacing:0.256000pt;}
.ws13_c00328{word-spacing:0.320000pt;}
.wse_c00328{word-spacing:0.576000pt;}
.wsf_c00328{word-spacing:0.640000pt;}
.wsd_c00328{word-spacing:0.896000pt;}
.ws1d_c00328{word-spacing:1.536000pt;}
.ws1e_c00328{word-spacing:1.600000pt;}
.ws19_c00328{word-spacing:2.880000pt;}
.ws18_c00328{word-spacing:3.264000pt;}
.ws2_c00328{word-spacing:3.712000pt;}
.ws21_c00328{word-spacing:3.840000pt;}
.ws2e_c00328{word-spacing:4.800000pt;}
.ws26_c00328{word-spacing:5.632000pt;}
.ws27_c00328{word-spacing:5.696000pt;}
.ws25_c00328{word-spacing:5.760000pt;}
.ws2d_c00328{word-spacing:6.080000pt;}
.ws22_c00328{word-spacing:6.400000pt;}
.ws14_c00328{word-spacing:6.592000pt;}
.ws15_c00328{word-spacing:6.720000pt;}
.ws17_c00328{word-spacing:11.456000pt;}
.ws28_c00328{word-spacing:12.096000pt;}
.ws29_c00328{word-spacing:12.160000pt;}
.ws20_c00328{word-spacing:12.736000pt;}
.ws1f_c00328{word-spacing:12.800000pt;}
.ws16_c00328{word-spacing:13.056000pt;}
.ws1b_c00328{word-spacing:14.016000pt;}
.ws1a_c00328{word-spacing:14.080000pt;}
.ws2c_c00328{word-spacing:16.960000pt;}
.ws24_c00328{word-spacing:17.536000pt;}
.ws23_c00328{word-spacing:17.600000pt;}
.ws2b_c00328{word-spacing:18.816000pt;}
.ws2a_c00328{word-spacing:18.880000pt;}
.wsc_c00328{word-spacing:22.336000pt;}
.wsb_c00328{word-spacing:22.400000pt;}
.ws1c_c00328{word-spacing:24.320000pt;}
.wsa_c00328{word-spacing:27.200000pt;}
._2_c00328{margin-left:-5.888000pt;}
._9_c00328{margin-left:-4.009600pt;}
._1_c00328{margin-left:-0.940800pt;}
._0_c00328{width:1.084800pt;}
._b_c00328{width:2.352000pt;}
._3_c00328{width:4.352000pt;}
._c_c00328{width:5.728000pt;}
._5_c00328{width:6.700800pt;}
._7_c00328{width:12.147200pt;}
._6_c00328{width:13.081600pt;}
._8_c00328{width:14.464000pt;}
._a_c00328{width:17.088000pt;}
._d_c00328{width:18.713600pt;}
._4_c00328{width:22.464000pt;}
.fs2_c00328{font-size:45.440000pt;}
.fs0_c00328{font-size:48.000000pt;}
.fs1_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y27_c00328{bottom:50.880000pt;}
.y26_c00328{bottom:100.960000pt;}
.y25_c00328{bottom:128.560000pt;}
.y24_c00328{bottom:156.160000pt;}
.y23_c00328{bottom:183.760000pt;}
.y22_c00328{bottom:211.360000pt;}
.y21_c00328{bottom:238.960000pt;}
.y20_c00328{bottom:266.560000pt;}
.y1f_c00328{bottom:294.160000pt;}
.y1e_c00328{bottom:321.760000pt;}
.y1d_c00328{bottom:349.360000pt;}
.y1c_c00328{bottom:376.960000pt;}
.y1b_c00328{bottom:404.560000pt;}
.y1a_c00328{bottom:432.160000pt;}
.y19_c00328{bottom:459.760000pt;}
.y18_c00328{bottom:487.360000pt;}
.y17_c00328{bottom:514.960000pt;}
.y16_c00328{bottom:542.560000pt;}
.y15_c00328{bottom:570.160000pt;}
.y14_c00328{bottom:597.760000pt;}
.y13_c00328{bottom:625.360000pt;}
.y12_c00328{bottom:653.040000pt;}
.y11_c00328{bottom:681.040000pt;}
.y10_c00328{bottom:708.640000pt;}
.yf_c00328{bottom:736.240000pt;}
.ye_c00328{bottom:763.840000pt;}
.yd_c00328{bottom:791.440000pt;}
.yc_c00328{bottom:819.040000pt;}
.yb_c00328{bottom:846.640000pt;}
.ya_c00328{bottom:874.880000pt;}
.y9_c00328{bottom:903.680000pt;}
.y8_c00328{bottom:931.280000pt;}
.y7_c00328{bottom:958.880000pt;}
.y6_c00328{bottom:986.560000pt;}
.y5_c00328{bottom:1005.360000pt;}
.y4_c00328{bottom:1023.040000pt;}
.y3_c00328{bottom:1036.804000pt;}
.y2_c00328{bottom:1050.640000pt;}
.y1_c00328{bottom:1064.400000pt;}
.h6_c00328{height:44.468750pt;}
.h3_c00328{height:47.085938pt;}
.h2_c00328{height:47.109375pt;}
.h4_c00328{height:62.812500pt;}
.h5_c00328{height:127.593750pt;}
.h0_c00328{height:1122.560000pt;}
.h1_c00328{height:1122.666667pt;}
.w0_c00328{width:793.840000pt;}
.w1_c00328{width:794.000000pt;}
.x0_c00328{left:0.000000pt;}
.x3_c00328{left:113.440000pt;}
.x2_c00328{left:377.920000pt;}
.x1_c00328{left:396.960000pt;}
.x4_c00328{left:656.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_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_a4ee36173534864e132f6ef4.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_293d1e224ae0ae78cc664d6c.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;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_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);}
.v1_c00329{vertical-align:-61.938000px;}
.v0_c00329{vertical-align:0.000000px;}
.lsa_c00329{letter-spacing:-0.288000px;}
.ls8_c00329{letter-spacing:-0.144000px;}
.ls9_c00329{letter-spacing:-0.072000px;}
.ls7_c00329{letter-spacing:0.000000px;}
.ls3_c00329{letter-spacing:0.072000px;}
.ls2_c00329{letter-spacing:0.144000px;}
.ls4_c00329{letter-spacing:3.240000px;}
.ls5_c00329{letter-spacing:6.120000px;}
.ls1_c00329{letter-spacing:10.800000px;}
.ls6_c00329{letter-spacing:15.120000px;}
.ls0_c00329{letter-spacing:319.518000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00329{word-spacing:-18.144000px;}
.ws3_c00329{word-spacing:-18.072000px;}
.ws2_c00329{word-spacing:-18.000000px;}
.ws0_c00329{word-spacing:-17.928000px;}
.wsa_c00329{word-spacing:-0.432000px;}
.ws5_c00329{word-spacing:-0.162000px;}
.ws13_c00329{word-spacing:-0.144000px;}
.wse_c00329{word-spacing:-0.072000px;}
.ws4_c00329{word-spacing:0.000000px;}
.wsb_c00329{word-spacing:0.072000px;}
.ws6_c00329{word-spacing:0.144000px;}
.wsd_c00329{word-spacing:0.288000px;}
.wsc_c00329{word-spacing:0.720000px;}
.ws14_c00329{word-spacing:1.080000px;}
.ws24_c00329{word-spacing:1.368000px;}
.ws22_c00329{word-spacing:1.440000px;}
.ws7_c00329{word-spacing:2.520000px;}
.ws1a_c00329{word-spacing:2.880000px;}
.ws1e_c00329{word-spacing:3.240000px;}
.ws15_c00329{word-spacing:3.528000px;}
.ws1f_c00329{word-spacing:3.888000px;}
.ws20_c00329{word-spacing:3.960000px;}
.ws23_c00329{word-spacing:6.120000px;}
.ws17_c00329{word-spacing:6.480000px;}
.ws11_c00329{word-spacing:8.928000px;}
.ws12_c00329{word-spacing:9.000000px;}
.ws19_c00329{word-spacing:9.576000px;}
.ws18_c00329{word-spacing:9.720000px;}
.ws8_c00329{word-spacing:10.728000px;}
.ws9_c00329{word-spacing:10.800000px;}
.ws16_c00329{word-spacing:11.160000px;}
.ws1d_c00329{word-spacing:12.528000px;}
.ws21_c00329{word-spacing:12.600000px;}
.wsf_c00329{word-spacing:14.400000px;}
.ws1b_c00329{word-spacing:14.760000px;}
.ws25_c00329{word-spacing:15.120000px;}
.ws1c_c00329{word-spacing:15.840000px;}
.ws26_c00329{word-spacing:23.040000px;}
.ws10_c00329{word-spacing:38.520000px;}
._2_c00329{margin-left:-1.008000px;}
._1_c00329{width:1.008000px;}
._0_c00329{width:2.664000px;}
._6_c00329{width:3.960000px;}
._b_c00329{width:5.904000px;}
._8_c00329{width:8.568000px;}
._9_c00329{width:9.648000px;}
._3_c00329{width:10.656000px;}
._7_c00329{width:11.736000px;}
._4_c00329{width:14.400000px;}
._a_c00329{width:15.912000px;}
._5_c00329{width:38.304000px;}
.fc0_c00329{color:rgb(0,0,0);}
.fs0_c00329{font-size:54.000000px;}
.fs1_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y24_c00329{bottom:57.240000px;}
.y23_c00329{bottom:178.920000px;}
.y22_c00329{bottom:209.970000px;}
.y21_c00329{bottom:241.020000px;}
.y20_c00329{bottom:272.070000px;}
.y1f_c00329{bottom:303.120000px;}
.y1e_c00329{bottom:334.170000px;}
.y1d_c00329{bottom:365.220000px;}
.y1c_c00329{bottom:396.270000px;}
.y1b_c00329{bottom:427.320000px;}
.y1a_c00329{bottom:458.370000px;}
.y19_c00329{bottom:489.420000px;}
.y18_c00329{bottom:520.470000px;}
.y17_c00329{bottom:551.520000px;}
.y16_c00329{bottom:582.570000px;}
.y15_c00329{bottom:613.620000px;}
.y14_c00329{bottom:644.670000px;}
.y13_c00329{bottom:675.720000px;}
.y12_c00329{bottom:706.770000px;}
.y11_c00329{bottom:737.820000px;}
.y10_c00329{bottom:768.870000px;}
.yf_c00329{bottom:799.920000px;}
.ye_c00329{bottom:830.970000px;}
.yd_c00329{bottom:861.930000px;}
.yc_c00329{bottom:892.980000px;}
.yb_c00329{bottom:924.030000px;}
.ya_c00329{bottom:955.080000px;}
.y9_c00329{bottom:986.130000px;}
.y8_c00329{bottom:1017.180000px;}
.y7_c00329{bottom:1048.230000px;}
.y6_c00329{bottom:1079.280000px;}
.y5_c00329{bottom:1110.330000px;}
.y4_c00329{bottom:1131.030000px;}
.y3_c00329{bottom:1150.915500px;}
.y2_c00329{bottom:1166.400000px;}
.y1_c00329{bottom:1197.450000px;}
.h4_c00329{height:50.027344px;}
.h2_c00329{height:52.998047px;}
.h3_c00329{height:70.664062px;}
.h0_c00329{height:1262.880000px;}
.h1_c00329{height:1263.000000px;}
.w0_c00329{width:893.070000px;}
.w1_c00329{width:893.250000px;}
.x0_c00329{left:0.000000px;}
.x2_c00329{left:127.620000px;}
.x1_c00329{left:446.580000px;}
@media print{
.v1_c00329{vertical-align:-55.056000pt;}
.v0_c00329{vertical-align:0.000000pt;}
.lsa_c00329{letter-spacing:-0.256000pt;}
.ls8_c00329{letter-spacing:-0.128000pt;}
.ls9_c00329{letter-spacing:-0.064000pt;}
.ls7_c00329{letter-spacing:0.000000pt;}
.ls3_c00329{letter-spacing:0.064000pt;}
.ls2_c00329{letter-spacing:0.128000pt;}
.ls4_c00329{letter-spacing:2.880000pt;}
.ls5_c00329{letter-spacing:5.440000pt;}
.ls1_c00329{letter-spacing:9.600000pt;}
.ls6_c00329{letter-spacing:13.440000pt;}
.ls0_c00329{letter-spacing:284.016000pt;}
.ws1_c00329{word-spacing:-16.128000pt;}
.ws3_c00329{word-spacing:-16.064000pt;}
.ws2_c00329{word-spacing:-16.000000pt;}
.ws0_c00329{word-spacing:-15.936000pt;}
.wsa_c00329{word-spacing:-0.384000pt;}
.ws5_c00329{word-spacing:-0.144000pt;}
.ws13_c00329{word-spacing:-0.128000pt;}
.wse_c00329{word-spacing:-0.064000pt;}
.ws4_c00329{word-spacing:0.000000pt;}
.wsb_c00329{word-spacing:0.064000pt;}
.ws6_c00329{word-spacing:0.128000pt;}
.wsd_c00329{word-spacing:0.256000pt;}
.wsc_c00329{word-spacing:0.640000pt;}
.ws14_c00329{word-spacing:0.960000pt;}
.ws24_c00329{word-spacing:1.216000pt;}
.ws22_c00329{word-spacing:1.280000pt;}
.ws7_c00329{word-spacing:2.240000pt;}
.ws1a_c00329{word-spacing:2.560000pt;}
.ws1e_c00329{word-spacing:2.880000pt;}
.ws15_c00329{word-spacing:3.136000pt;}
.ws1f_c00329{word-spacing:3.456000pt;}
.ws20_c00329{word-spacing:3.520000pt;}
.ws23_c00329{word-spacing:5.440000pt;}
.ws17_c00329{word-spacing:5.760000pt;}
.ws11_c00329{word-spacing:7.936000pt;}
.ws12_c00329{word-spacing:8.000000pt;}
.ws19_c00329{word-spacing:8.512000pt;}
.ws18_c00329{word-spacing:8.640000pt;}
.ws8_c00329{word-spacing:9.536000pt;}
.ws9_c00329{word-spacing:9.600000pt;}
.ws16_c00329{word-spacing:9.920000pt;}
.ws1d_c00329{word-spacing:11.136000pt;}
.ws21_c00329{word-spacing:11.200000pt;}
.wsf_c00329{word-spacing:12.800000pt;}
.ws1b_c00329{word-spacing:13.120000pt;}
.ws25_c00329{word-spacing:13.440000pt;}
.ws1c_c00329{word-spacing:14.080000pt;}
.ws26_c00329{word-spacing:20.480000pt;}
.ws10_c00329{word-spacing:34.240000pt;}
._2_c00329{margin-left:-0.896000pt;}
._1_c00329{width:0.896000pt;}
._0_c00329{width:2.368000pt;}
._6_c00329{width:3.520000pt;}
._b_c00329{width:5.248000pt;}
._8_c00329{width:7.616000pt;}
._9_c00329{width:8.576000pt;}
._3_c00329{width:9.472000pt;}
._7_c00329{width:10.432000pt;}
._4_c00329{width:12.800000pt;}
._a_c00329{width:14.144000pt;}
._5_c00329{width:34.048000pt;}
.fs0_c00329{font-size:48.000000pt;}
.fs1_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y24_c00329{bottom:50.880000pt;}
.y23_c00329{bottom:159.040000pt;}
.y22_c00329{bottom:186.640000pt;}
.y21_c00329{bottom:214.240000pt;}
.y20_c00329{bottom:241.840000pt;}
.y1f_c00329{bottom:269.440000pt;}
.y1e_c00329{bottom:297.040000pt;}
.y1d_c00329{bottom:324.640000pt;}
.y1c_c00329{bottom:352.240000pt;}
.y1b_c00329{bottom:379.840000pt;}
.y1a_c00329{bottom:407.440000pt;}
.y19_c00329{bottom:435.040000pt;}
.y18_c00329{bottom:462.640000pt;}
.y17_c00329{bottom:490.240000pt;}
.y16_c00329{bottom:517.840000pt;}
.y15_c00329{bottom:545.440000pt;}
.y14_c00329{bottom:573.040000pt;}
.y13_c00329{bottom:600.640000pt;}
.y12_c00329{bottom:628.240000pt;}
.y11_c00329{bottom:655.840000pt;}
.y10_c00329{bottom:683.440000pt;}
.yf_c00329{bottom:711.040000pt;}
.ye_c00329{bottom:738.640000pt;}
.yd_c00329{bottom:766.160000pt;}
.yc_c00329{bottom:793.760000pt;}
.yb_c00329{bottom:821.360000pt;}
.ya_c00329{bottom:848.960000pt;}
.y9_c00329{bottom:876.560000pt;}
.y8_c00329{bottom:904.160000pt;}
.y7_c00329{bottom:931.760000pt;}
.y6_c00329{bottom:959.360000pt;}
.y5_c00329{bottom:986.960000pt;}
.y4_c00329{bottom:1005.360000pt;}
.y3_c00329{bottom:1023.036000pt;}
.y2_c00329{bottom:1036.800000pt;}
.y1_c00329{bottom:1064.400000pt;}
.h4_c00329{height:44.468750pt;}
.h2_c00329{height:47.109375pt;}
.h3_c00329{height:62.812500pt;}
.h0_c00329{height:1122.560000pt;}
.h1_c00329{height:1122.666667pt;}
.w0_c00329{width:793.840000pt;}
.w1_c00329{width:794.000000pt;}
.x0_c00329{left:0.000000pt;}
.x2_c00329{left:113.440000pt;}
.x1_c00329{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec6bb6fcadfde853273f69e1.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.284180;font-style:normal;font-weight:normal;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_416b2036e6932f15f76973fb.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_0b56ca017ce570ab0a6f76f9.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;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_c00330;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00330{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7_c00330{vertical-align:-20.880000px;}
.v5_c00330{vertical-align:-14.760000px;}
.v2_c00330{vertical-align:-10.440000px;}
.v0_c00330{vertical-align:0.000000px;}
.v6_c00330{vertical-align:14.760000px;}
.v4_c00330{vertical-align:27.000000px;}
.v3_c00330{vertical-align:36.360000px;}
.v1_c00330{vertical-align:42.120000px;}
.ls11_c00330{letter-spacing:-0.576000px;}
.ls13_c00330{letter-spacing:-0.432000px;}
.lsd_c00330{letter-spacing:-0.108000px;}
.lsf_c00330{letter-spacing:-0.102240px;}
.ls10_c00330{letter-spacing:-0.072000px;}
.ls14_c00330{letter-spacing:-0.060120px;}
.lsc_c00330{letter-spacing:0.000000px;}
.ls5_c00330{letter-spacing:0.072000px;}
.lse_c00330{letter-spacing:0.102240px;}
.ls4_c00330{letter-spacing:0.144000px;}
.ls15_c00330{letter-spacing:0.180360px;}
.ls6_c00330{letter-spacing:0.191520px;}
.ls12_c00330{letter-spacing:0.360000px;}
.ls0_c00330{letter-spacing:0.720000px;}
.ls7_c00330{letter-spacing:1.800000px;}
.ls1_c00330{letter-spacing:1.922040px;}
.lsb_c00330{letter-spacing:3.667320px;}
.ls3_c00330{letter-spacing:6.494400px;}
.ls9_c00330{letter-spacing:7.200000px;}
.ls2_c00330{letter-spacing:10.440000px;}
.lsa_c00330{letter-spacing:15.840000px;}
.ls8_c00330{letter-spacing:22.961520px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00330{word-spacing:-72.000000px;}
.ws1_c00330{word-spacing:-51.222240px;}
.ws0_c00330{word-spacing:-51.120000px;}
.ws3_c00330{word-spacing:-51.017760px;}
.ws8_c00330{word-spacing:-18.144000px;}
.ws5_c00330{word-spacing:-18.000000px;}
.ws4_c00330{word-spacing:-17.424000px;}
.wsa_c00330{word-spacing:-15.030000px;}
.ws6_c00330{word-spacing:-12.161520px;}
.ws9_c00330{word-spacing:-9.720000px;}
.ws2f_c00330{word-spacing:-0.420840px;}
.ws1d_c00330{word-spacing:-0.360000px;}
.ws16_c00330{word-spacing:-0.072000px;}
.ws2e_c00330{word-spacing:-0.060120px;}
.wsb_c00330{word-spacing:0.000000px;}
.wsd_c00330{word-spacing:0.162000px;}
.ws30_c00330{word-spacing:0.180360px;}
.wsc_c00330{word-spacing:0.270000px;}
.ws2c_c00330{word-spacing:0.648000px;}
.ws2b_c00330{word-spacing:1.008000px;}
.ws1a_c00330{word-spacing:1.800000px;}
.ws25_c00330{word-spacing:2.160000px;}
.ws2d_c00330{word-spacing:3.727440px;}
.ws22_c00330{word-spacing:3.888000px;}
.ws21_c00330{word-spacing:3.960000px;}
.ws7_c00330{word-spacing:4.176000px;}
.ws15_c00330{word-spacing:4.608000px;}
.ws1b_c00330{word-spacing:5.040000px;}
.ws28_c00330{word-spacing:6.480000px;}
.ws1e_c00330{word-spacing:6.768000px;}
.ws1f_c00330{word-spacing:6.840000px;}
.ws20_c00330{word-spacing:7.272000px;}
.ws24_c00330{word-spacing:7.560000px;}
.ws23_c00330{word-spacing:7.632000px;}
.ws27_c00330{word-spacing:7.920000px;}
.ws26_c00330{word-spacing:8.208000px;}
.wse_c00330{word-spacing:10.368000px;}
.wsf_c00330{word-spacing:10.440000px;}
.ws12_c00330{word-spacing:10.800000px;}
.ws11_c00330{word-spacing:11.880000px;}
.ws10_c00330{word-spacing:11.952000px;}
.ws18_c00330{word-spacing:12.168000px;}
.ws17_c00330{word-spacing:12.240000px;}
.ws13_c00330{word-spacing:14.688000px;}
.ws14_c00330{word-spacing:14.760000px;}
.ws1c_c00330{word-spacing:15.480000px;}
.ws2a_c00330{word-spacing:16.200000px;}
.ws29_c00330{word-spacing:20.160000px;}
.ws19_c00330{word-spacing:30.240000px;}
._6_c00330{margin-left:-4.388400px;}
._1_c00330{margin-left:-1.058400px;}
._0_c00330{width:1.220400px;}
._5_c00330{width:3.074400px;}
._7_c00330{width:5.544000px;}
._8_c00330{width:7.272000px;}
._9_c00330{width:8.366400px;}
._2_c00330{width:10.296000px;}
._3_c00330{width:11.376000px;}
._4_c00330{width:14.544000px;}
._a_c00330{width:16.200000px;}
.fc0_c00330{color:rgb(0,0,0);}
.fs5_c00330{font-size:38.880000px;}
.fs3_c00330{font-size:42.120000px;}
.fs4_c00330{font-size:47.880000px;}
.fs2_c00330{font-size:51.120000px;}
.fs0_c00330{font-size:54.000000px;}
.fs6_c00330{font-size:60.120000px;}
.fs1_c00330{font-size:72.000000px;}
.y0_c00330{bottom:0.000000px;}
.y27_c00330{bottom:57.240000px;}
.y26_c00330{bottom:109.791180px;}
.y25_c00330{bottom:126.985500px;}
.y24_c00330{bottom:149.490000px;}
.y28_c00330{bottom:162.180000px;}
.y23_c00330{bottom:226.440000px;}
.y22_c00330{bottom:257.490000px;}
.y21_c00330{bottom:288.540000px;}
.y20_c00330{bottom:319.590000px;}
.y1f_c00330{bottom:350.640000px;}
.y1e_c00330{bottom:381.690000px;}
.y1d_c00330{bottom:412.740000px;}
.y1c_c00330{bottom:443.790000px;}
.y1b_c00330{bottom:474.840000px;}
.y1a_c00330{bottom:505.890000px;}
.y19_c00330{bottom:536.940000px;}
.y18_c00330{bottom:567.990000px;}
.y17_c00330{bottom:599.040000px;}
.y16_c00330{bottom:630.090000px;}
.y15_c00330{bottom:661.140000px;}
.y14_c00330{bottom:692.370000px;}
.y13_c00330{bottom:723.870000px;}
.y12_c00330{bottom:754.830000px;}
.y11_c00330{bottom:785.880000px;}
.y10_c00330{bottom:816.930000px;}
.yf_c00330{bottom:847.980000px;}
.ye_c00330{bottom:879.030000px;}
.yd_c00330{bottom:910.080000px;}
.yc_c00330{bottom:941.130000px;}
.yb_c00330{bottom:972.180000px;}
.ya_c00330{bottom:1003.230000px;}
.y9_c00330{bottom:1034.280000px;}
.y8_c00330{bottom:1065.330000px;}
.y7_c00330{bottom:1095.210000px;}
.y6_c00330{bottom:1104.300000px;}
.y5_c00330{bottom:1131.030000px;}
.y4_c00330{bottom:1150.920000px;}
.y3_c00330{bottom:1166.404500px;}
.y2_c00330{bottom:1181.970000px;}
.y1_c00330{bottom:1197.450000px;}
.ha_c00330{height:38.158594px;}
.h3_c00330{height:52.971680px;}
.h2_c00330{height:52.998047px;}
.hb_c00330{height:59.004492px;}
.h4_c00330{height:70.664062px;}
.h8_c00330{height:73.991602px;}
.h9_c00330{height:143.542969px;}
.h5_c00330{height:144.035508px;}
.h7_c00330{height:179.902969px;}
.h6_c00330{height:180.395508px;}
.h0_c00330{height:1262.880000px;}
.h1_c00330{height:1263.000000px;}
.w0_c00330{width:893.070000px;}
.w1_c00330{width:893.250000px;}
.x0_c00330{left:0.000000px;}
.x3_c00330{left:127.620000px;}
.x4_c00330{left:230.490000px;}
.x2_c00330{left:425.160000px;}
.x1_c00330{left:446.580000px;}
.x5_c00330{left:496.980000px;}
.x6_c00330{left:738.540000px;}
@media print{
.v7_c00330{vertical-align:-18.560000pt;}
.v5_c00330{vertical-align:-13.120000pt;}
.v2_c00330{vertical-align:-9.280000pt;}
.v0_c00330{vertical-align:0.000000pt;}
.v6_c00330{vertical-align:13.120000pt;}
.v4_c00330{vertical-align:24.000000pt;}
.v3_c00330{vertical-align:32.320000pt;}
.v1_c00330{vertical-align:37.440000pt;}
.ls11_c00330{letter-spacing:-0.512000pt;}
.ls13_c00330{letter-spacing:-0.384000pt;}
.lsd_c00330{letter-spacing:-0.096000pt;}
.lsf_c00330{letter-spacing:-0.090880pt;}
.ls10_c00330{letter-spacing:-0.064000pt;}
.ls14_c00330{letter-spacing:-0.053440pt;}
.lsc_c00330{letter-spacing:0.000000pt;}
.ls5_c00330{letter-spacing:0.064000pt;}
.lse_c00330{letter-spacing:0.090880pt;}
.ls4_c00330{letter-spacing:0.128000pt;}
.ls15_c00330{letter-spacing:0.160320pt;}
.ls6_c00330{letter-spacing:0.170240pt;}
.ls12_c00330{letter-spacing:0.320000pt;}
.ls0_c00330{letter-spacing:0.640000pt;}
.ls7_c00330{letter-spacing:1.600000pt;}
.ls1_c00330{letter-spacing:1.708480pt;}
.lsb_c00330{letter-spacing:3.259840pt;}
.ls3_c00330{letter-spacing:5.772800pt;}
.ls9_c00330{letter-spacing:6.400000pt;}
.ls2_c00330{letter-spacing:9.280000pt;}
.lsa_c00330{letter-spacing:14.080000pt;}
.ls8_c00330{letter-spacing:20.410240pt;}
.ws2_c00330{word-spacing:-64.000000pt;}
.ws1_c00330{word-spacing:-45.530880pt;}
.ws0_c00330{word-spacing:-45.440000pt;}
.ws3_c00330{word-spacing:-45.349120pt;}
.ws8_c00330{word-spacing:-16.128000pt;}
.ws5_c00330{word-spacing:-16.000000pt;}
.ws4_c00330{word-spacing:-15.488000pt;}
.wsa_c00330{word-spacing:-13.360000pt;}
.ws6_c00330{word-spacing:-10.810240pt;}
.ws9_c00330{word-spacing:-8.640000pt;}
.ws2f_c00330{word-spacing:-0.374080pt;}
.ws1d_c00330{word-spacing:-0.320000pt;}
.ws16_c00330{word-spacing:-0.064000pt;}
.ws2e_c00330{word-spacing:-0.053440pt;}
.wsb_c00330{word-spacing:0.000000pt;}
.wsd_c00330{word-spacing:0.144000pt;}
.ws30_c00330{word-spacing:0.160320pt;}
.wsc_c00330{word-spacing:0.240000pt;}
.ws2c_c00330{word-spacing:0.576000pt;}
.ws2b_c00330{word-spacing:0.896000pt;}
.ws1a_c00330{word-spacing:1.600000pt;}
.ws25_c00330{word-spacing:1.920000pt;}
.ws2d_c00330{word-spacing:3.313280pt;}
.ws22_c00330{word-spacing:3.456000pt;}
.ws21_c00330{word-spacing:3.520000pt;}
.ws7_c00330{word-spacing:3.712000pt;}
.ws15_c00330{word-spacing:4.096000pt;}
.ws1b_c00330{word-spacing:4.480000pt;}
.ws28_c00330{word-spacing:5.760000pt;}
.ws1e_c00330{word-spacing:6.016000pt;}
.ws1f_c00330{word-spacing:6.080000pt;}
.ws20_c00330{word-spacing:6.464000pt;}
.ws24_c00330{word-spacing:6.720000pt;}
.ws23_c00330{word-spacing:6.784000pt;}
.ws27_c00330{word-spacing:7.040000pt;}
.ws26_c00330{word-spacing:7.296000pt;}
.wse_c00330{word-spacing:9.216000pt;}
.wsf_c00330{word-spacing:9.280000pt;}
.ws12_c00330{word-spacing:9.600000pt;}
.ws11_c00330{word-spacing:10.560000pt;}
.ws10_c00330{word-spacing:10.624000pt;}
.ws18_c00330{word-spacing:10.816000pt;}
.ws17_c00330{word-spacing:10.880000pt;}
.ws13_c00330{word-spacing:13.056000pt;}
.ws14_c00330{word-spacing:13.120000pt;}
.ws1c_c00330{word-spacing:13.760000pt;}
.ws2a_c00330{word-spacing:14.400000pt;}
.ws29_c00330{word-spacing:17.920000pt;}
.ws19_c00330{word-spacing:26.880000pt;}
._6_c00330{margin-left:-3.900800pt;}
._1_c00330{margin-left:-0.940800pt;}
._0_c00330{width:1.084800pt;}
._5_c00330{width:2.732800pt;}
._7_c00330{width:4.928000pt;}
._8_c00330{width:6.464000pt;}
._9_c00330{width:7.436800pt;}
._2_c00330{width:9.152000pt;}
._3_c00330{width:10.112000pt;}
._4_c00330{width:12.928000pt;}
._a_c00330{width:14.400000pt;}
.fs5_c00330{font-size:34.560000pt;}
.fs3_c00330{font-size:37.440000pt;}
.fs4_c00330{font-size:42.560000pt;}
.fs2_c00330{font-size:45.440000pt;}
.fs0_c00330{font-size:48.000000pt;}
.fs6_c00330{font-size:53.440000pt;}
.fs1_c00330{font-size:64.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y27_c00330{bottom:50.880000pt;}
.y26_c00330{bottom:97.592160pt;}
.y25_c00330{bottom:112.876000pt;}
.y24_c00330{bottom:132.880000pt;}
.y28_c00330{bottom:144.160000pt;}
.y23_c00330{bottom:201.280000pt;}
.y22_c00330{bottom:228.880000pt;}
.y21_c00330{bottom:256.480000pt;}
.y20_c00330{bottom:284.080000pt;}
.y1f_c00330{bottom:311.680000pt;}
.y1e_c00330{bottom:339.280000pt;}
.y1d_c00330{bottom:366.880000pt;}
.y1c_c00330{bottom:394.480000pt;}
.y1b_c00330{bottom:422.080000pt;}
.y1a_c00330{bottom:449.680000pt;}
.y19_c00330{bottom:477.280000pt;}
.y18_c00330{bottom:504.880000pt;}
.y17_c00330{bottom:532.480000pt;}
.y16_c00330{bottom:560.080000pt;}
.y15_c00330{bottom:587.680000pt;}
.y14_c00330{bottom:615.440000pt;}
.y13_c00330{bottom:643.440000pt;}
.y12_c00330{bottom:670.960000pt;}
.y11_c00330{bottom:698.560000pt;}
.y10_c00330{bottom:726.160000pt;}
.yf_c00330{bottom:753.760000pt;}
.ye_c00330{bottom:781.360000pt;}
.yd_c00330{bottom:808.960000pt;}
.yc_c00330{bottom:836.560000pt;}
.yb_c00330{bottom:864.160000pt;}
.ya_c00330{bottom:891.760000pt;}
.y9_c00330{bottom:919.360000pt;}
.y8_c00330{bottom:946.960000pt;}
.y7_c00330{bottom:973.520000pt;}
.y6_c00330{bottom:981.600000pt;}
.y5_c00330{bottom:1005.360000pt;}
.y4_c00330{bottom:1023.040000pt;}
.y3_c00330{bottom:1036.804000pt;}
.y2_c00330{bottom:1050.640000pt;}
.y1_c00330{bottom:1064.400000pt;}
.ha_c00330{height:33.918750pt;}
.h3_c00330{height:47.085938pt;}
.h2_c00330{height:47.109375pt;}
.hb_c00330{height:52.448437pt;}
.h4_c00330{height:62.812500pt;}
.h8_c00330{height:65.770312pt;}
.h9_c00330{height:127.593750pt;}
.h5_c00330{height:128.031562pt;}
.h7_c00330{height:159.913750pt;}
.h6_c00330{height:160.351562pt;}
.h0_c00330{height:1122.560000pt;}
.h1_c00330{height:1122.666667pt;}
.w0_c00330{width:793.840000pt;}
.w1_c00330{width:794.000000pt;}
.x0_c00330{left:0.000000pt;}
.x3_c00330{left:113.440000pt;}
.x4_c00330{left:204.880000pt;}
.x2_c00330{left:377.920000pt;}
.x1_c00330{left:396.960000pt;}
.x5_c00330{left:441.760000pt;}
.x6_c00330{left:656.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_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_70b4a1e7647032c05568a3ea.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_982e5a69af5793453c9e99a3.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_1721e4e952fba2d1d26db7b2.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_3fc8bff7ec5b44ad65f82d92.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00331;src:url('chunks/assets/font_f16a84c5eec215888c0ffadd.woff2')format("woff");}.ff5_c00331{font-family:ff5_c00331;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00331;src:url('chunks/assets/font_a81d95de62444f84dc41da37.woff2')format("woff");}.ff6_c00331{font-family:ff6_c00331;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);}
.v2_c00331{vertical-align:-83.520000px;}
.v1_c00331{vertical-align:-61.938000px;}
.v3_c00331{vertical-align:-3.753353px;}
.v0_c00331{vertical-align:0.000000px;}
.v4_c00331{vertical-align:3.753353px;}
.lsf_c00331{letter-spacing:-2.240808px;}
.ls10_c00331{letter-spacing:-1.512545px;}
.lse_c00331{letter-spacing:-1.434125px;}
.ls13_c00331{letter-spacing:-1.288465px;}
.ls15_c00331{letter-spacing:-0.728263px;}
.ls1b_c00331{letter-spacing:-0.709590px;}
.ls12_c00331{letter-spacing:-0.672242px;}
.ls11_c00331{letter-spacing:-0.418286px;}
.lsd_c00331{letter-spacing:-0.179266px;}
.ls14_c00331{letter-spacing:-0.168061px;}
.lsc_c00331{letter-spacing:-0.120240px;}
.lsb_c00331{letter-spacing:-0.072000px;}
.ls9_c00331{letter-spacing:0.000000px;}
.ls2_c00331{letter-spacing:0.072000px;}
.lsa_c00331{letter-spacing:0.144000px;}
.ls3_c00331{letter-spacing:0.239021px;}
.ls4_c00331{letter-spacing:0.358531px;}
.ls18_c00331{letter-spacing:0.698384px;}
.ls17_c00331{letter-spacing:1.015838px;}
.ls19_c00331{letter-spacing:1.135349px;}
.ls6_c00331{letter-spacing:1.176424px;}
.ls1c_c00331{letter-spacing:1.493880px;}
.ls16_c00331{letter-spacing:1.553635px;}
.ls8_c00331{letter-spacing:1.602175px;}
.ls1a_c00331{letter-spacing:1.732901px;}
.ls7_c00331{letter-spacing:2.868250px;}
.ls5_c00331{letter-spacing:91.088845px;}
.ls0_c00331{letter-spacing:1144.260000px;}
.ls1_c00331{letter-spacing:2082.240000px;}
.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;}
}
.ws25_c00331{word-spacing:-15.237576px;}
.ws24_c00331{word-spacing:-15.058310px;}
.ws0_c00331{word-spacing:-14.909760px;}
.ws23_c00331{word-spacing:-13.863206px;}
.ws26_c00331{word-spacing:-13.743696px;}
.ws5_c00331{word-spacing:-13.086389px;}
.ws1_c00331{word-spacing:-12.070550px;}
.ws38_c00331{word-spacing:-3.409756px;}
.ws37_c00331{word-spacing:-2.505965px;}
.ws3c_c00331{word-spacing:-1.602175px;}
.ws35_c00331{word-spacing:-1.553635px;}
.ws33_c00331{word-spacing:-1.434125px;}
.ws31_c00331{word-spacing:-1.288465px;}
.ws39_c00331{word-spacing:-1.135349px;}
.ws36_c00331{word-spacing:-1.015838px;}
.ws32_c00331{word-spacing:-0.728263px;}
.ws3a_c00331{word-spacing:-0.358531px;}
.ws3d_c00331{word-spacing:-0.354795px;}
.ws2f_c00331{word-spacing:-0.239021px;}
.ws28_c00331{word-spacing:-0.162000px;}
.ws29_c00331{word-spacing:-0.144000px;}
.ws34_c00331{word-spacing:-0.119510px;}
.ws2b_c00331{word-spacing:-0.072000px;}
.ws3e_c00331{word-spacing:-0.059755px;}
.ws27_c00331{word-spacing:0.000000px;}
.ws30_c00331{word-spacing:0.056020px;}
.ws2a_c00331{word-spacing:0.072000px;}
.ws2d_c00331{word-spacing:0.179266px;}
.ws2e_c00331{word-spacing:1.075594px;}
.ws2c_c00331{word-spacing:1.195104px;}
.ws3b_c00331{word-spacing:1.434125px;}
.ws6_c00331{word-spacing:45.510810px;}
.wsb_c00331{word-spacing:56.748463px;}
.ws2_c00331{word-spacing:67.952503px;}
.ws7_c00331{word-spacing:82.825866px;}
.wse_c00331{word-spacing:84.870603px;}
.ws8_c00331{word-spacing:96.074643px;}
.ws12_c00331{word-spacing:97.329495px;}
.ws15_c00331{word-spacing:108.533535px;}
.ws13_c00331{word-spacing:155.848196px;}
.ws9_c00331{word-spacing:172.060442px;}
.ws1f_c00331{word-spacing:194.838256px;}
.ws4_c00331{word-spacing:194.860664px;}
.ws16_c00331{word-spacing:221.055709px;}
.wsf_c00331{word-spacing:224.809063px;}
.wsa_c00331{word-spacing:236.013103px;}
.ws1b_c00331{word-spacing:273.865952px;}
.ws1d_c00331{word-spacing:327.247600px;}
.ws19_c00331{word-spacing:329.488408px;}
.ws1a_c00331{word-spacing:338.451640px;}
.ws20_c00331{word-spacing:346.910691px;}
.ws10_c00331{word-spacing:369.638086px;}
.ws18_c00331{word-spacing:372.063760px;}
.ws1e_c00331{word-spacing:393.429865px;}
.ws21_c00331{word-spacing:404.409824px;}
.ws22_c00331{word-spacing:405.362167px;}
.ws1c_c00331{word-spacing:408.325636px;}
.ws3_c00331{word-spacing:408.667359px;}
.ws17_c00331{word-spacing:419.540880px;}
.wsc_c00331{word-spacing:429.484465px;}
.ws14_c00331{word-spacing:438.285239px;}
.wsd_c00331{word-spacing:926.876617px;}
.ws11_c00331{word-spacing:941.834010px;}
._e_c00331{margin-left:-4.571273px;}
._f_c00331{margin-left:-3.570386px;}
._8_c00331{margin-left:-2.464889px;}
._0_c00331{margin-left:-1.152000px;}
._1_c00331{width:1.008000px;}
._4_c00331{width:2.361428px;}
._2_c00331{width:3.481478px;}
._3_c00331{width:96.147823px;}
._7_c00331{width:168.181957px;}
._9_c00331{width:173.054997px;}
._d_c00331{width:184.259037px;}
._c_c00331{width:220.834174px;}
._5_c00331{width:244.681246px;}
._a_c00331{width:259.814198px;}
._6_c00331{width:279.644622px;}
._b_c00331{width:358.184942px;}
.fc1_c00331{color:transparent;}
.fc0_c00331{color:rgb(0,0,0);}
.fs5_c00331{font-size:41.081400px;}
.fs0_c00331{font-size:54.000000px;}
.fs4_c00331{font-size:56.020200px;}
.fs3_c00331{font-size:59.755200px;}
.fs2_c00331{font-size:60.120000px;}
.fs6_c00331{font-size:70.959000px;}
.fs1_c00331{font-size:72.000000px;}
.y0_c00331{bottom:0.000000px;}
.y39_c00331{bottom:3.733950px;}
.y21_c00331{bottom:3.734100px;}
.y16_c00331{bottom:3.734250px;}
.y17_c00331{bottom:3.734400px;}
.y1e_c00331{bottom:3.734700px;}
.y32_c00331{bottom:3.734850px;}
.y13_c00331{bottom:3.735000px;}
.y1a_c00331{bottom:3.735150px;}
.y1b_c00331{bottom:3.735300px;}
.y28_c00331{bottom:3.735450px;}
.y30_c00331{bottom:3.735600px;}
.y5d_c00331{bottom:3.735900px;}
.y37_c00331{bottom:3.736200px;}
.y20_c00331{bottom:4.667700px;}
.y15_c00331{bottom:4.667850px;}
.y25_c00331{bottom:4.668000px;}
.y2d_c00331{bottom:4.668150px;}
.y1d_c00331{bottom:4.668300px;}
.y12_c00331{bottom:4.668450px;}
.y23_c00331{bottom:4.668600px;}
.y19_c00331{bottom:4.668750px;}
.y27_c00331{bottom:4.668900px;}
.y2f_c00331{bottom:4.669050px;}
.y36_c00331{bottom:4.669650px;}
.y10_c00331{bottom:7.498678px;}
.y5f_c00331{bottom:14.937900px;}
.y5a_c00331{bottom:15.872550px;}
.y54_c00331{bottom:15.872700px;}
.y4c_c00331{bottom:17.769178px;}
.y45_c00331{bottom:25.209000px;}
.y47_c00331{bottom:25.209150px;}
.yb_c00331{bottom:27.090989px;}
.yf_c00331{bottom:27.098383px;}
.y46_c00331{bottom:28.010100px;}
.y41_c00331{bottom:28.032133px;}
.y59_c00331{bottom:34.545900px;}
.y53_c00331{bottom:34.546050px;}
.y58_c00331{bottom:37.368733px;}
.y4b_c00331{bottom:37.368883px;}
.ya_c00331{bottom:46.690694px;}
.ye_c00331{bottom:46.698089px;}
.y3d_c00331{bottom:47.624444px;}
.y40_c00331{bottom:47.631839px;}
.y44_c00331{bottom:49.499189px;}
.y4d_c00331{bottom:56.020050px;}
.y4f_c00331{bottom:56.953800px;}
.y4a_c00331{bottom:56.968589px;}
.y60_c00331{bottom:57.330000px;}
.y57_c00331{bottom:58.835789px;}
.y52_c00331{bottom:58.835939px;}
.y4e_c00331{bottom:63.489450px;}
.y9_c00331{bottom:66.290400px;}
.yd_c00331{bottom:66.297794px;}
.y3c_c00331{bottom:67.224150px;}
.y3f_c00331{bottom:67.231544px;}
.y5b_c00331{bottom:68.157750px;}
.y43_c00331{bottom:69.098894px;}
.y49_c00331{bottom:76.568294px;}
.y56_c00331{bottom:78.435494px;}
.y51_c00331{bottom:78.435644px;}
.yc_c00331{bottom:85.897500px;}
.y3e_c00331{bottom:86.831250px;}
.y42_c00331{bottom:88.698600px;}
.y48_c00331{bottom:96.168000px;}
.y55_c00331{bottom:98.035200px;}
.y50_c00331{bottom:98.035350px;}
.y7_c00331{bottom:160.380000px;}
.y6_c00331{bottom:174.150000px;}
.y3b_c00331{bottom:176.019000px;}
.y3a_c00331{bottom:195.625500px;}
.y38_c00331{bottom:215.233500px;}
.y35_c00331{bottom:234.838500px;}
.y34_c00331{bottom:254.446500px;}
.y33_c00331{bottom:274.054500px;}
.y31_c00331{bottom:293.661000px;}
.y2e_c00331{bottom:313.267500px;}
.y2c_c00331{bottom:332.875500px;}
.y2b_c00331{bottom:352.482000px;}
.y2a_c00331{bottom:372.090000px;}
.y29_c00331{bottom:391.696500px;}
.y26_c00331{bottom:411.303000px;}
.y24_c00331{bottom:430.911000px;}
.y22_c00331{bottom:450.517500px;}
.y1f_c00331{bottom:470.125500px;}
.y1c_c00331{bottom:489.732000px;}
.y18_c00331{bottom:509.338500px;}
.y14_c00331{bottom:528.946500px;}
.y11_c00331{bottom:548.553000px;}
.y8_c00331{bottom:569.094000px;}
.y5e_c00331{bottom:674.599500px;}
.y5c_c00331{bottom:694.204500px;}
.y5_c00331{bottom:719.640000px;}
.y4_c00331{bottom:761.220000px;}
.y3_c00331{bottom:781.105500px;}
.y2_c00331{bottom:796.590000px;}
.y1_c00331{bottom:827.640000px;}
.hc_c00331{height:18.673500px;}
.hd_c00331{height:18.675000px;}
.h8_c00331{height:19.606500px;}
.h12_c00331{height:20.541000px;}
.h10_c00331{height:33.880119px;}
.h14_c00331{height:40.147500px;}
.hf_c00331{height:40.906636px;}
.ha_c00331{height:44.437095px;}
.hb_c00331{height:45.412906px;}
.h9_c00331{height:46.200253px;}
.h7_c00331{height:49.280534px;}
.h2_c00331{height:52.998047px;}
.h13_c00331{height:58.520386px;}
.h5_c00331{height:58.975137px;}
.h3_c00331{height:70.664062px;}
.h4_c00331{height:72.562500px;}
.h6_c00331{height:104.571000px;}
.he_c00331{height:124.179000px;}
.h11_c00331{height:145.653000px;}
.h0_c00331{height:893.070000px;}
.h1_c00331{height:893.250000px;}
.wb_c00331{width:46.750500px;}
.w9_c00331{width:71.995500px;}
.w8_c00331{width:72.931500px;}
.w2_c00331{width:73.866000px;}
.wa_c00331{width:74.800500px;}
.w4_c00331{width:79.476000px;}
.w5_c00331{width:86.956500px;}
.w7_c00331{width:88.825500px;}
.w6_c00331{width:93.501000px;}
.wc_c00331{width:126.226500px;}
.we_c00331{width:148.668000px;}
.wd_c00331{width:722.763000px;}
.w3_c00331{width:1048.146000px;}
.w0_c00331{width:1262.880000px;}
.w1_c00331{width:1263.000000px;}
.x0_c00331{left:0.000000px;}
.x17_c00331{left:1.877849px;}
.x14_c00331{left:3.739950px;}
.x19_c00331{left:5.610300px;}
.xb_c00331{left:7.480538px;}
.x7_c00331{left:10.292849px;}
.x10_c00331{left:13.089150px;}
.xd_c00331{left:16.829250px;}
.x12_c00331{left:19.634250px;}
.x8_c00331{left:21.512924px;}
.xa_c00331{left:24.310650px;}
.xc_c00331{left:27.108189px;}
.x6_c00331{left:29.920500px;}
.x21_c00331{left:33.660300px;}
.x15_c00331{left:35.530162px;}
.x1b_c00331{left:37.400550px;}
.x1e_c00331{left:40.221035px;}
.x1a_c00331{left:42.068064px;}
.x24_c00331{left:56.099550px;}
.x1c_c00331{left:86.956200px;}
.x2_c00331{left:106.380000px;}
.x27_c00331{left:128.096250px;}
.x26_c00331{left:154.999500px;}
.x13_c00331{left:282.162000px;}
.x16_c00331{left:362.572500px;}
.xe_c00331{left:374.003100px;}
.x11_c00331{left:378.678300px;}
.x18_c00331{left:450.463500px;}
.xf_c00331{left:488.074350px;}
.x1d_c00331{left:544.899000px;}
.x1_c00331{left:631.440000px;}
.x1f_c00331{left:634.660500px;}
.x20_c00331{left:708.526500px;}
.x22_c00331{left:782.392500px;}
.x23_c00331{left:855.324000px;}
.x25_c00331{left:931.059000px;}
.x5_c00331{left:1005.859500px;}
.x9_c00331{left:1080.660000px;}
.x4_c00331{left:1087.380000px;}
.x3_c00331{left:1156.590000px;}
@media print{
.v2_c00331{vertical-align:-74.240000pt;}
.v1_c00331{vertical-align:-55.056000pt;}
.v3_c00331{vertical-align:-3.336314pt;}
.v0_c00331{vertical-align:0.000000pt;}
.v4_c00331{vertical-align:3.336314pt;}
.lsf_c00331{letter-spacing:-1.991829pt;}
.ls10_c00331{letter-spacing:-1.344485pt;}
.lse_c00331{letter-spacing:-1.274778pt;}
.ls13_c00331{letter-spacing:-1.145302pt;}
.ls15_c00331{letter-spacing:-0.647345pt;}
.ls1b_c00331{letter-spacing:-0.630747pt;}
.ls12_c00331{letter-spacing:-0.597549pt;}
.ls11_c00331{letter-spacing:-0.371810pt;}
.lsd_c00331{letter-spacing:-0.159347pt;}
.ls14_c00331{letter-spacing:-0.149387pt;}
.lsc_c00331{letter-spacing:-0.106880pt;}
.lsb_c00331{letter-spacing:-0.064000pt;}
.ls9_c00331{letter-spacing:0.000000pt;}
.ls2_c00331{letter-spacing:0.064000pt;}
.lsa_c00331{letter-spacing:0.128000pt;}
.ls3_c00331{letter-spacing:0.212463pt;}
.ls4_c00331{letter-spacing:0.318694pt;}
.ls18_c00331{letter-spacing:0.620786pt;}
.ls17_c00331{letter-spacing:0.902967pt;}
.ls19_c00331{letter-spacing:1.009199pt;}
.ls6_c00331{letter-spacing:1.045710pt;}
.ls1c_c00331{letter-spacing:1.327893pt;}
.ls16_c00331{letter-spacing:1.381009pt;}
.ls8_c00331{letter-spacing:1.424155pt;}
.ls1a_c00331{letter-spacing:1.540356pt;}
.ls7_c00331{letter-spacing:2.549555pt;}
.ls5_c00331{letter-spacing:80.967862pt;}
.ls0_c00331{letter-spacing:1017.120000pt;}
.ls1_c00331{letter-spacing:1850.880000pt;}
.ws25_c00331{word-spacing:-13.544512pt;}
.ws24_c00331{word-spacing:-13.385165pt;}
.ws0_c00331{word-spacing:-13.253120pt;}
.ws23_c00331{word-spacing:-12.322850pt;}
.ws26_c00331{word-spacing:-12.216619pt;}
.ws5_c00331{word-spacing:-11.632346pt;}
.ws1_c00331{word-spacing:-10.729378pt;}
.ws38_c00331{word-spacing:-3.030894pt;}
.ws37_c00331{word-spacing:-2.227525pt;}
.ws3c_c00331{word-spacing:-1.424155pt;}
.ws35_c00331{word-spacing:-1.381009pt;}
.ws33_c00331{word-spacing:-1.274778pt;}
.ws31_c00331{word-spacing:-1.145302pt;}
.ws39_c00331{word-spacing:-1.009199pt;}
.ws36_c00331{word-spacing:-0.902967pt;}
.ws32_c00331{word-spacing:-0.647345pt;}
.ws3a_c00331{word-spacing:-0.318694pt;}
.ws3d_c00331{word-spacing:-0.315373pt;}
.ws2f_c00331{word-spacing:-0.212463pt;}
.ws28_c00331{word-spacing:-0.144000pt;}
.ws29_c00331{word-spacing:-0.128000pt;}
.ws34_c00331{word-spacing:-0.106231pt;}
.ws2b_c00331{word-spacing:-0.064000pt;}
.ws3e_c00331{word-spacing:-0.053116pt;}
.ws27_c00331{word-spacing:0.000000pt;}
.ws30_c00331{word-spacing:0.049796pt;}
.ws2a_c00331{word-spacing:0.064000pt;}
.ws2d_c00331{word-spacing:0.159347pt;}
.ws2e_c00331{word-spacing:0.956083pt;}
.ws2c_c00331{word-spacing:1.062315pt;}
.ws3b_c00331{word-spacing:1.274778pt;}
.ws6_c00331{word-spacing:40.454054pt;}
.wsb_c00331{word-spacing:50.443078pt;}
.ws2_c00331{word-spacing:60.402225pt;}
.ws7_c00331{word-spacing:73.622992pt;}
.wse_c00331{word-spacing:75.440536pt;}
.ws8_c00331{word-spacing:85.399683pt;}
.ws12_c00331{word-spacing:86.515107pt;}
.ws15_c00331{word-spacing:96.474254pt;}
.ws13_c00331{word-spacing:138.531730pt;}
.ws9_c00331{word-spacing:152.942615pt;}
.ws1f_c00331{word-spacing:173.189561pt;}
.ws4_c00331{word-spacing:173.209479pt;}
.ws16_c00331{word-spacing:196.493964pt;}
.wsf_c00331{word-spacing:199.830278pt;}
.wsa_c00331{word-spacing:209.789425pt;}
.ws1b_c00331{word-spacing:243.436402pt;}
.ws1d_c00331{word-spacing:290.886756pt;}
.ws19_c00331{word-spacing:292.878585pt;}
.ws1a_c00331{word-spacing:300.845903pt;}
.ws20_c00331{word-spacing:308.365058pt;}
.ws10_c00331{word-spacing:328.567187pt;}
.ws18_c00331{word-spacing:330.723343pt;}
.ws1e_c00331{word-spacing:349.715435pt;}
.ws21_c00331{word-spacing:359.475399pt;}
.ws22_c00331{word-spacing:360.321926pt;}
.ws1c_c00331{word-spacing:362.956121pt;}
.ws3_c00331{word-spacing:363.259875pt;}
.ws17_c00331{word-spacing:372.925227pt;}
.wsc_c00331{word-spacing:381.763969pt;}
.ws14_c00331{word-spacing:389.586879pt;}
.wsd_c00331{word-spacing:823.890326pt;}
.ws11_c00331{word-spacing:837.185787pt;}
._e_c00331{margin-left:-4.063354pt;}
._f_c00331{margin-left:-3.173677pt;}
._8_c00331{margin-left:-2.191012pt;}
._0_c00331{margin-left:-1.024000pt;}
._1_c00331{width:0.896000pt;}
._4_c00331{width:2.099048pt;}
._2_c00331{width:3.094647pt;}
._3_c00331{width:85.464732pt;}
._7_c00331{width:149.495073pt;}
._9_c00331{width:153.826664pt;}
._d_c00331{width:163.785811pt;}
._c_c00331{width:196.297043pt;}
._5_c00331{width:217.494440pt;}
._a_c00331{width:230.945954pt;}
._6_c00331{width:248.572997pt;}
._b_c00331{width:318.386615pt;}
.fs5_c00331{font-size:36.516800pt;}
.fs0_c00331{font-size:48.000000pt;}
.fs4_c00331{font-size:49.795733pt;}
.fs3_c00331{font-size:53.115733pt;}
.fs2_c00331{font-size:53.440000pt;}
.fs6_c00331{font-size:63.074667pt;}
.fs1_c00331{font-size:64.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y39_c00331{bottom:3.319067pt;}
.y21_c00331{bottom:3.319200pt;}
.y16_c00331{bottom:3.319333pt;}
.y17_c00331{bottom:3.319467pt;}
.y1e_c00331{bottom:3.319733pt;}
.y32_c00331{bottom:3.319867pt;}
.y13_c00331{bottom:3.320000pt;}
.y1a_c00331{bottom:3.320133pt;}
.y1b_c00331{bottom:3.320267pt;}
.y28_c00331{bottom:3.320400pt;}
.y30_c00331{bottom:3.320533pt;}
.y5d_c00331{bottom:3.320800pt;}
.y37_c00331{bottom:3.321067pt;}
.y20_c00331{bottom:4.149067pt;}
.y15_c00331{bottom:4.149200pt;}
.y25_c00331{bottom:4.149333pt;}
.y2d_c00331{bottom:4.149467pt;}
.y1d_c00331{bottom:4.149600pt;}
.y12_c00331{bottom:4.149733pt;}
.y23_c00331{bottom:4.149867pt;}
.y19_c00331{bottom:4.150000pt;}
.y27_c00331{bottom:4.150133pt;}
.y2f_c00331{bottom:4.150267pt;}
.y36_c00331{bottom:4.150800pt;}
.y10_c00331{bottom:6.665491pt;}
.y5f_c00331{bottom:13.278133pt;}
.y5a_c00331{bottom:14.108933pt;}
.y54_c00331{bottom:14.109067pt;}
.y4c_c00331{bottom:15.794825pt;}
.y45_c00331{bottom:22.408000pt;}
.y47_c00331{bottom:22.408133pt;}
.yb_c00331{bottom:24.080879pt;}
.yf_c00331{bottom:24.087452pt;}
.y46_c00331{bottom:24.897867pt;}
.y41_c00331{bottom:24.917452pt;}
.y59_c00331{bottom:30.707467pt;}
.y53_c00331{bottom:30.707600pt;}
.y58_c00331{bottom:33.216652pt;}
.y4b_c00331{bottom:33.216785pt;}
.ya_c00331{bottom:41.502839pt;}
.ye_c00331{bottom:41.509412pt;}
.y3d_c00331{bottom:42.332839pt;}
.y40_c00331{bottom:42.339412pt;}
.y44_c00331{bottom:43.999279pt;}
.y4d_c00331{bottom:49.795600pt;}
.y4f_c00331{bottom:50.625600pt;}
.y4a_c00331{bottom:50.638746pt;}
.y60_c00331{bottom:50.960000pt;}
.y57_c00331{bottom:52.298479pt;}
.y52_c00331{bottom:52.298612pt;}
.y4e_c00331{bottom:56.435067pt;}
.y9_c00331{bottom:58.924800pt;}
.yd_c00331{bottom:58.931373pt;}
.y3c_c00331{bottom:59.754800pt;}
.y3f_c00331{bottom:59.761373pt;}
.y5b_c00331{bottom:60.584667pt;}
.y43_c00331{bottom:61.421239pt;}
.y49_c00331{bottom:68.060706pt;}
.y56_c00331{bottom:69.720439pt;}
.y51_c00331{bottom:69.720573pt;}
.yc_c00331{bottom:76.353333pt;}
.y3e_c00331{bottom:77.183333pt;}
.y42_c00331{bottom:78.843200pt;}
.y48_c00331{bottom:85.482667pt;}
.y55_c00331{bottom:87.142400pt;}
.y50_c00331{bottom:87.142533pt;}
.y7_c00331{bottom:142.560000pt;}
.y6_c00331{bottom:154.800000pt;}
.y3b_c00331{bottom:156.461333pt;}
.y3a_c00331{bottom:173.889333pt;}
.y38_c00331{bottom:191.318667pt;}
.y35_c00331{bottom:208.745333pt;}
.y34_c00331{bottom:226.174667pt;}
.y33_c00331{bottom:243.604000pt;}
.y31_c00331{bottom:261.032000pt;}
.y2e_c00331{bottom:278.460000pt;}
.y2c_c00331{bottom:295.889333pt;}
.y2b_c00331{bottom:313.317333pt;}
.y2a_c00331{bottom:330.746667pt;}
.y29_c00331{bottom:348.174667pt;}
.y26_c00331{bottom:365.602667pt;}
.y24_c00331{bottom:383.032000pt;}
.y22_c00331{bottom:400.460000pt;}
.y1f_c00331{bottom:417.889333pt;}
.y1c_c00331{bottom:435.317333pt;}
.y18_c00331{bottom:452.745333pt;}
.y14_c00331{bottom:470.174667pt;}
.y11_c00331{bottom:487.602667pt;}
.y8_c00331{bottom:505.861333pt;}
.y5e_c00331{bottom:599.644000pt;}
.y5c_c00331{bottom:617.070667pt;}
.y5_c00331{bottom:639.680000pt;}
.y4_c00331{bottom:676.640000pt;}
.y3_c00331{bottom:694.316000pt;}
.y2_c00331{bottom:708.080000pt;}
.y1_c00331{bottom:735.680000pt;}
.hc_c00331{height:16.598667pt;}
.hd_c00331{height:16.600000pt;}
.h8_c00331{height:17.428000pt;}
.h12_c00331{height:18.258667pt;}
.h10_c00331{height:30.115662pt;}
.h14_c00331{height:35.686667pt;}
.hf_c00331{height:36.361454pt;}
.ha_c00331{height:39.499640pt;}
.hb_c00331{height:40.367028pt;}
.h9_c00331{height:41.066891pt;}
.h7_c00331{height:43.804919pt;}
.h2_c00331{height:47.109375pt;}
.h13_c00331{height:52.018121pt;}
.h5_c00331{height:52.422344pt;}
.h3_c00331{height:62.812500pt;}
.h4_c00331{height:64.500000pt;}
.h6_c00331{height:92.952000pt;}
.he_c00331{height:110.381333pt;}
.h11_c00331{height:129.469333pt;}
.h0_c00331{height:793.840000pt;}
.h1_c00331{height:794.000000pt;}
.wb_c00331{width:41.556000pt;}
.w9_c00331{width:63.996000pt;}
.w8_c00331{width:64.828000pt;}
.w2_c00331{width:65.658667pt;}
.wa_c00331{width:66.489333pt;}
.w4_c00331{width:70.645333pt;}
.w5_c00331{width:77.294667pt;}
.w7_c00331{width:78.956000pt;}
.w6_c00331{width:83.112000pt;}
.wc_c00331{width:112.201333pt;}
.we_c00331{width:132.149333pt;}
.wd_c00331{width:642.456000pt;}
.w3_c00331{width:931.685333pt;}
.w0_c00331{width:1122.560000pt;}
.w1_c00331{width:1122.666667pt;}
.x0_c00331{left:0.000000pt;}
.x17_c00331{left:1.669199pt;}
.x14_c00331{left:3.324400pt;}
.x19_c00331{left:4.986933pt;}
.xb_c00331{left:6.649367pt;}
.x7_c00331{left:9.149199pt;}
.x10_c00331{left:11.634800pt;}
.xd_c00331{left:14.959333pt;}
.x12_c00331{left:17.452667pt;}
.x8_c00331{left:19.122599pt;}
.xa_c00331{left:21.609467pt;}
.xc_c00331{left:24.096168pt;}
.x6_c00331{left:26.596000pt;}
.x21_c00331{left:29.920267pt;}
.x15_c00331{left:31.582367pt;}
.x1b_c00331{left:33.244933pt;}
.x1e_c00331{left:35.752031pt;}
.x1a_c00331{left:37.393834pt;}
.x24_c00331{left:49.866267pt;}
.x1c_c00331{left:77.294400pt;}
.x2_c00331{left:94.560000pt;}
.x27_c00331{left:113.863333pt;}
.x26_c00331{left:137.777333pt;}
.x13_c00331{left:250.810667pt;}
.x16_c00331{left:322.286667pt;}
.xe_c00331{left:332.447200pt;}
.x11_c00331{left:336.602933pt;}
.x18_c00331{left:400.412000pt;}
.xf_c00331{left:433.843867pt;}
.x1d_c00331{left:484.354667pt;}
.x1_c00331{left:561.280000pt;}
.x1f_c00331{left:564.142667pt;}
.x20_c00331{left:629.801333pt;}
.x22_c00331{left:695.460000pt;}
.x23_c00331{left:760.288000pt;}
.x25_c00331{left:827.608000pt;}
.x5_c00331{left:894.097333pt;}
.x9_c00331{left:960.586667pt;}
.x4_c00331{left:966.560000pt;}
.x3_c00331{left:1028.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_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_b2b7d16a79e10c191d928e28.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_48724e568f3b4691ace71818.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_27c92a0be1a378a9f401a619.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_0d1a4ffb5ed32c7a7e3a2e3e.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2_c00332{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);}
.v1_c00332{vertical-align:-61.920000px;}
.v2_c00332{vertical-align:-3.750580px;}
.v0_c00332{vertical-align:0.000000px;}
.v3_c00332{vertical-align:3.750580px;}
.ls5_c00332{letter-spacing:-2.239152px;}
.lsd_c00332{letter-spacing:-1.843562px;}
.ls6_c00332{letter-spacing:-1.511428px;}
.ls9_c00332{letter-spacing:-1.287512px;}
.lsa_c00332{letter-spacing:-1.231534px;}
.lsb_c00332{letter-spacing:-0.727724px;}
.ls8_c00332{letter-spacing:-0.671746px;}
.ls7_c00332{letter-spacing:-0.417976px;}
.lsc_c00332{letter-spacing:-0.167936px;}
.ls3_c00332{letter-spacing:-0.108000px;}
.ls4_c00332{letter-spacing:0.000000px;}
.lsf_c00332{letter-spacing:0.873266px;}
.ls2_c00332{letter-spacing:1.530087px;}
.lse_c00332{letter-spacing:1.892077px;}
.ls1_c00332{letter-spacing:91.021529px;}
.ls0_c00332{letter-spacing:725.580000px;}
.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;}
}
.ws4_c00332{word-spacing:-13.076665px;}
.ws2_c00332{word-spacing:-10.412057px;}
.ws1c_c00332{word-spacing:-2.813858px;}
.ws1d_c00332{word-spacing:-1.795048px;}
.ws16_c00332{word-spacing:0.000000px;}
.ws19_c00332{word-spacing:0.055979px;}
.ws18_c00332{word-spacing:0.162000px;}
.ws17_c00332{word-spacing:0.270000px;}
.ws1b_c00332{word-spacing:0.921781px;}
.ws1a_c00332{word-spacing:2.239152px;}
.ws0_c00332{word-spacing:67.902284px;}
.ws6_c00332{word-spacing:96.003642px;}
.wsd_c00332{word-spacing:108.453327px;}
.ws7_c00332{word-spacing:171.933286px;}
.ws13_c00332{word-spacing:194.688669px;}
.ws3_c00332{word-spacing:194.716658px;}
.wsf_c00332{word-spacing:220.892345px;}
.ws8_c00332{word-spacing:235.838684px;}
.ws11_c00332{word-spacing:281.147925px;}
.ws9_c00332{word-spacing:348.372866px;}
.ws10_c00332{word-spacing:353.187043px;}
.ws12_c00332{word-spacing:355.610925px;}
.ws14_c00332{word-spacing:356.864850px;}
.ws1_c00332{word-spacing:385.677138px;}
.wsb_c00332{word-spacing:387.837920px;}
.ws15_c00332{word-spacing:421.705094px;}
.wse_c00332{word-spacing:425.158986px;}
.wsa_c00332{word-spacing:459.770678px;}
.ws5_c00332{word-spacing:926.191638px;}
.wsc_c00332{word-spacing:941.137977px;}
._d_c00332{margin-left:-6.646971px;}
._c_c00332{margin-left:-5.433658px;}
._b_c00332{margin-left:-3.709856px;}
._9_c00332{margin-left:-2.226334px;}
._1_c00332{margin-left:-1.058400px;}
._0_c00332{width:1.225800px;}
._3_c00332{width:3.050845px;}
._2_c00332{width:4.083128px;}
._a_c00332{width:5.635499px;}
._7_c00332{width:172.314621px;}
._6_c00332{width:183.510381px;}
._8_c00332{width:189.976204px;}
._5_c00332{width:231.713454px;}
._4_c00332{width:397.914511px;}
.fc0_c00332{color:rgb(0,0,0);}
.fs4_c00332{font-size:48.514800px;}
.fs0_c00332{font-size:54.000000px;}
.fs2_c00332{font-size:55.978800px;}
.fs3_c00332{font-size:59.710800px;}
.fs1_c00332{font-size:72.000000px;}
.y0_c00332{bottom:0.000000px;}
.yc_c00332{bottom:3.731100px;}
.yd_c00332{bottom:3.731250px;}
.y10_c00332{bottom:3.731550px;}
.y18_c00332{bottom:3.731700px;}
.y13_c00332{bottom:3.731850px;}
.y24_c00332{bottom:3.732000px;}
.y9_c00332{bottom:3.732150px;}
.y15_c00332{bottom:3.732300px;}
.y1d_c00332{bottom:3.732600px;}
.y20_c00332{bottom:3.732900px;}
.y21_c00332{bottom:3.733050px;}
.yb_c00332{bottom:4.664250px;}
.yf_c00332{bottom:4.664550px;}
.y12_c00332{bottom:4.664850px;}
.y23_c00332{bottom:4.665000px;}
.y8_c00332{bottom:4.665300px;}
.y1c_c00332{bottom:4.665600px;}
.y1f_c00332{bottom:4.666050px;}
.y27_c00332{bottom:5.598600px;}
.y2b_c00332{bottom:57.330000px;}
.y6_c00332{bottom:407.340000px;}
.y5_c00332{bottom:424.080000px;}
.y2a_c00332{bottom:425.871000px;}
.y29_c00332{bottom:444.531000px;}
.y28_c00332{bottom:463.191000px;}
.y26_c00332{bottom:481.849500px;}
.y25_c00332{bottom:501.442500px;}
.y22_c00332{bottom:521.968500px;}
.y1e_c00332{bottom:541.560000px;}
.y1b_c00332{bottom:561.153000px;}
.y1a_c00332{bottom:580.746000px;}
.y19_c00332{bottom:600.339000px;}
.y17_c00332{bottom:619.932000px;}
.y16_c00332{bottom:639.525000px;}
.y14_c00332{bottom:659.116500px;}
.y11_c00332{bottom:678.709500px;}
.ye_c00332{bottom:698.302500px;}
.ya_c00332{bottom:717.895500px;}
.y7_c00332{bottom:737.487000px;}
.y4_c00332{bottom:761.220000px;}
.y3_c00332{bottom:781.110000px;}
.y2_c00332{bottom:796.594500px;}
.y1_c00332{bottom:827.640000px;}
.hc_c00332{height:17.727000px;}
.h5_c00332{height:18.660000px;}
.h9_c00332{height:19.593000px;}
.ha_c00332{height:41.628766px;}
.h7_c00332{height:44.404076px;}
.h8_c00332{height:45.379345px;}
.h6_c00332{height:46.166110px;}
.hd_c00332{height:47.614623px;}
.hb_c00332{height:48.893822px;}
.h2_c00332{height:52.998047px;}
.h4_c00332{height:70.628906px;}
.h3_c00332{height:70.664062px;}
.h0_c00332{height:893.070000px;}
.h1_c00332{height:893.250000px;}
.w3_c00332{width:999.526500px;}
.w2_c00332{width:1048.146000px;}
.w0_c00332{width:1262.880000px;}
.w1_c00332{width:1263.000000px;}
.x0_c00332{left:0.000000px;}
.xa_c00332{left:1.870950px;}
.x4_c00332{left:16.829100px;}
.x7_c00332{left:19.634250px;}
.x2_c00332{left:106.380000px;}
.x9_c00332{left:154.999500px;}
.x5_c00332{left:374.002950px;}
.x8_c00332{left:378.678150px;}
.x6_c00332{left:488.074200px;}
.x1_c00332{left:631.440000px;}
.xb_c00332{left:1129.590000px;}
.x3_c00332{left:1156.590000px;}
@media print{
.v1_c00332{vertical-align:-55.040000pt;}
.v2_c00332{vertical-align:-3.333849pt;}
.v0_c00332{vertical-align:0.000000pt;}
.v3_c00332{vertical-align:3.333849pt;}
.ls5_c00332{letter-spacing:-1.990357pt;}
.lsd_c00332{letter-spacing:-1.638722pt;}
.ls6_c00332{letter-spacing:-1.343491pt;}
.ls9_c00332{letter-spacing:-1.144455pt;}
.lsa_c00332{letter-spacing:-1.094697pt;}
.lsb_c00332{letter-spacing:-0.646866pt;}
.ls8_c00332{letter-spacing:-0.597107pt;}
.ls7_c00332{letter-spacing:-0.371534pt;}
.lsc_c00332{letter-spacing:-0.149277pt;}
.ls3_c00332{letter-spacing:-0.096000pt;}
.ls4_c00332{letter-spacing:0.000000pt;}
.lsf_c00332{letter-spacing:0.776237pt;}
.ls2_c00332{letter-spacing:1.360078pt;}
.lse_c00332{letter-spacing:1.681846pt;}
.ls1_c00332{letter-spacing:80.908026pt;}
.ls0_c00332{letter-spacing:644.960000pt;}
.ws4_c00332{word-spacing:-11.623702pt;}
.ws2_c00332{word-spacing:-9.255162pt;}
.ws1c_c00332{word-spacing:-2.501207pt;}
.ws1d_c00332{word-spacing:-1.595598pt;}
.ws16_c00332{word-spacing:0.000000pt;}
.ws19_c00332{word-spacing:0.049759pt;}
.ws18_c00332{word-spacing:0.144000pt;}
.ws17_c00332{word-spacing:0.240000pt;}
.ws1b_c00332{word-spacing:0.819361pt;}
.ws1a_c00332{word-spacing:1.990357pt;}
.ws0_c00332{word-spacing:60.357586pt;}
.ws6_c00332{word-spacing:85.336571pt;}
.wsd_c00332{word-spacing:96.402957pt;}
.ws7_c00332{word-spacing:152.829588pt;}
.ws13_c00332{word-spacing:173.056594pt;}
.ws3_c00332{word-spacing:173.081474pt;}
.wsf_c00332{word-spacing:196.348751pt;}
.ws8_c00332{word-spacing:209.634386pt;}
.ws11_c00332{word-spacing:249.909267pt;}
.ws9_c00332{word-spacing:309.664770pt;}
.ws10_c00332{word-spacing:313.944038pt;}
.ws12_c00332{word-spacing:316.098600pt;}
.ws14_c00332{word-spacing:317.213200pt;}
.ws1_c00332{word-spacing:342.824123pt;}
.wsb_c00332{word-spacing:344.744818pt;}
.ws15_c00332{word-spacing:374.848972pt;}
.wse_c00332{word-spacing:377.919099pt;}
.wsa_c00332{word-spacing:408.685047pt;}
.ws5_c00332{word-spacing:823.281456pt;}
.wsc_c00332{word-spacing:836.567091pt;}
._d_c00332{margin-left:-5.908419pt;}
._c_c00332{margin-left:-4.829918pt;}
._b_c00332{margin-left:-3.297650pt;}
._9_c00332{margin-left:-1.978963pt;}
._1_c00332{margin-left:-0.940800pt;}
._0_c00332{width:1.089600pt;}
._3_c00332{width:2.711862pt;}
._2_c00332{width:3.629447pt;}
._a_c00332{width:5.009333pt;}
._7_c00332{width:153.168552pt;}
._6_c00332{width:163.120338pt;}
._8_c00332{width:168.867737pt;}
._5_c00332{width:205.967515pt;}
._4_c00332{width:353.701788pt;}
.fs4_c00332{font-size:43.124267pt;}
.fs0_c00332{font-size:48.000000pt;}
.fs2_c00332{font-size:49.758933pt;}
.fs3_c00332{font-size:53.076267pt;}
.fs1_c00332{font-size:64.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.yc_c00332{bottom:3.316533pt;}
.yd_c00332{bottom:3.316667pt;}
.y10_c00332{bottom:3.316933pt;}
.y18_c00332{bottom:3.317067pt;}
.y13_c00332{bottom:3.317200pt;}
.y24_c00332{bottom:3.317333pt;}
.y9_c00332{bottom:3.317467pt;}
.y15_c00332{bottom:3.317600pt;}
.y1d_c00332{bottom:3.317867pt;}
.y20_c00332{bottom:3.318133pt;}
.y21_c00332{bottom:3.318267pt;}
.yb_c00332{bottom:4.146000pt;}
.yf_c00332{bottom:4.146267pt;}
.y12_c00332{bottom:4.146533pt;}
.y23_c00332{bottom:4.146667pt;}
.y8_c00332{bottom:4.146933pt;}
.y1c_c00332{bottom:4.147200pt;}
.y1f_c00332{bottom:4.147600pt;}
.y27_c00332{bottom:4.976533pt;}
.y2b_c00332{bottom:50.960000pt;}
.y6_c00332{bottom:362.080000pt;}
.y5_c00332{bottom:376.960000pt;}
.y2a_c00332{bottom:378.552000pt;}
.y29_c00332{bottom:395.138667pt;}
.y28_c00332{bottom:411.725333pt;}
.y26_c00332{bottom:428.310667pt;}
.y25_c00332{bottom:445.726667pt;}
.y22_c00332{bottom:463.972000pt;}
.y1e_c00332{bottom:481.386667pt;}
.y1b_c00332{bottom:498.802667pt;}
.y1a_c00332{bottom:516.218667pt;}
.y19_c00332{bottom:533.634667pt;}
.y17_c00332{bottom:551.050667pt;}
.y16_c00332{bottom:568.466667pt;}
.y14_c00332{bottom:585.881333pt;}
.y11_c00332{bottom:603.297333pt;}
.ye_c00332{bottom:620.713333pt;}
.ya_c00332{bottom:638.129333pt;}
.y7_c00332{bottom:655.544000pt;}
.y4_c00332{bottom:676.640000pt;}
.y3_c00332{bottom:694.320000pt;}
.y2_c00332{bottom:708.084000pt;}
.y1_c00332{bottom:735.680000pt;}
.hc_c00332{height:15.757333pt;}
.h5_c00332{height:16.586667pt;}
.h9_c00332{height:17.416000pt;}
.ha_c00332{height:37.003347pt;}
.h7_c00332{height:39.470290pt;}
.h8_c00332{height:40.337196pt;}
.h6_c00332{height:41.036542pt;}
.hd_c00332{height:42.324109pt;}
.hb_c00332{height:43.461175pt;}
.h2_c00332{height:47.109375pt;}
.h4_c00332{height:62.781250pt;}
.h3_c00332{height:62.812500pt;}
.h0_c00332{height:793.840000pt;}
.h1_c00332{height:794.000000pt;}
.w3_c00332{width:888.468000pt;}
.w2_c00332{width:931.685333pt;}
.w0_c00332{width:1122.560000pt;}
.w1_c00332{width:1122.666667pt;}
.x0_c00332{left:0.000000pt;}
.xa_c00332{left:1.663067pt;}
.x4_c00332{left:14.959200pt;}
.x7_c00332{left:17.452667pt;}
.x2_c00332{left:94.560000pt;}
.x9_c00332{left:137.777333pt;}
.x5_c00332{left:332.447067pt;}
.x8_c00332{left:336.602800pt;}
.x6_c00332{left:433.843733pt;}
.x1_c00332{left:561.280000pt;}
.xb_c00332{left:1004.080000pt;}
.x3_c00332{left:1028.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_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_c767daeb7accfd86bdde6b35.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_0a3175a1295b6ff163aa2dc1.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;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_c00333;src:url('chunks/assets/font_eb1b658be353f249815c3ca1.woff2')format("woff");}.ff4_c00333{font-family:ff4_c00333;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00333;src:url('chunks/assets/font_d8b58f6e838264236e41deee.woff2')format("woff");}.ff5_c00333{font-family:ff5_c00333;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00333;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00333{font-family:ff6_c00333;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00333{vertical-align:-61.938000px;}
.v5_c00333{vertical-align:-20.880000px;}
.v2_c00333{vertical-align:-14.760000px;}
.v0_c00333{vertical-align:0.000000px;}
.v3_c00333{vertical-align:14.760000px;}
.v4_c00333{vertical-align:27.000000px;}
.ls14_c00333{letter-spacing:-0.360000px;}
.ls13_c00333{letter-spacing:-0.216000px;}
.ls18_c00333{letter-spacing:-0.180360px;}
.ls17_c00333{letter-spacing:-0.120240px;}
.ls15_c00333{letter-spacing:-0.072000px;}
.ls16_c00333{letter-spacing:-0.060120px;}
.ls12_c00333{letter-spacing:0.000000px;}
.ls3_c00333{letter-spacing:0.072000px;}
.ls5_c00333{letter-spacing:0.144000px;}
.ls19_c00333{letter-spacing:0.180360px;}
.ls7_c00333{letter-spacing:0.191520px;}
.ls8_c00333{letter-spacing:7.200000px;}
.lsf_c00333{letter-spacing:8.280000px;}
.ls4_c00333{letter-spacing:8.640000px;}
.ls6_c00333{letter-spacing:10.800000px;}
.lsc_c00333{letter-spacing:12.240000px;}
.ls10_c00333{letter-spacing:12.324600px;}
.ls11_c00333{letter-spacing:12.390732px;}
.lsb_c00333{letter-spacing:13.320000px;}
.lsa_c00333{letter-spacing:19.656000px;}
.ls2_c00333{letter-spacing:20.016000px;}
.ls1_c00333{letter-spacing:22.961520px;}
.ls9_c00333{letter-spacing:23.321520px;}
.lse_c00333{letter-spacing:24.120000px;}
.lsd_c00333{letter-spacing:28.440000px;}
.ls0_c00333{letter-spacing:319.518000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00333{word-spacing:-72.000000px;}
.ws0_c00333{word-spacing:-18.000000px;}
.ws3_c00333{word-spacing:-17.928000px;}
.ws2_c00333{word-spacing:-17.784000px;}
.ws6_c00333{word-spacing:-15.030000px;}
.ws4_c00333{word-spacing:-12.161520px;}
.ws5_c00333{word-spacing:-9.720000px;}
.ws32_c00333{word-spacing:-0.420840px;}
.ws15_c00333{word-spacing:-0.360000px;}
.ws8_c00333{word-spacing:-0.162000px;}
.ws24_c00333{word-spacing:-0.144000px;}
.ws13_c00333{word-spacing:-0.072000px;}
.ws31_c00333{word-spacing:-0.060120px;}
.ws7_c00333{word-spacing:0.000000px;}
.ws2c_c00333{word-spacing:0.060120px;}
.ws2f_c00333{word-spacing:0.180360px;}
.wse_c00333{word-spacing:0.216000px;}
.ws9_c00333{word-spacing:0.360000px;}
.ws18_c00333{word-spacing:1.008000px;}
.wsf_c00333{word-spacing:2.448000px;}
.ws23_c00333{word-spacing:2.808000px;}
.ws22_c00333{word-spacing:2.880000px;}
.ws1d_c00333{word-spacing:3.600000px;}
.ws14_c00333{word-spacing:4.320000px;}
.ws2a_c00333{word-spacing:4.680000px;}
.ws20_c00333{word-spacing:6.768000px;}
.ws1f_c00333{word-spacing:7.128000px;}
.ws10_c00333{word-spacing:8.280000px;}
.ws11_c00333{word-spacing:8.568000px;}
.ws1e_c00333{word-spacing:8.640000px;}
.ws1b_c00333{word-spacing:10.368000px;}
.ws1c_c00333{word-spacing:10.440000px;}
.ws16_c00333{word-spacing:11.448000px;}
.ws17_c00333{word-spacing:11.520000px;}
.ws2d_c00333{word-spacing:12.024000px;}
.ws30_c00333{word-spacing:12.144240px;}
.ws21_c00333{word-spacing:12.168000px;}
.ws26_c00333{word-spacing:12.240000px;}
.ws25_c00333{word-spacing:12.312000px;}
.ws2e_c00333{word-spacing:12.444840px;}
.ws1a_c00333{word-spacing:12.600000px;}
.wsb_c00333{word-spacing:12.888000px;}
.ws19_c00333{word-spacing:13.320000px;}
.wsa_c00333{word-spacing:16.128000px;}
.ws12_c00333{word-spacing:16.848000px;}
.wsc_c00333{word-spacing:19.296000px;}
.wsd_c00333{word-spacing:19.440000px;}
.ws28_c00333{word-spacing:24.408000px;}
.ws29_c00333{word-spacing:24.480000px;}
.ws27_c00333{word-spacing:28.440000px;}
.ws2b_c00333{word-spacing:45.288000px;}
._2_c00333{margin-left:-5.976000px;}
._1_c00333{margin-left:-1.087200px;}
._0_c00333{width:1.080000px;}
._5_c00333{width:2.880000px;}
._8_c00333{width:5.832000px;}
._7_c00333{width:9.144000px;}
._4_c00333{width:12.031200px;}
._3_c00333{width:13.104000px;}
._6_c00333{width:16.200000px;}
._9_c00333{width:24.285600px;}
.fc0_c00333{color:rgb(0,0,0);}
.fs4_c00333{font-size:38.880000px;}
.fs3_c00333{font-size:47.880000px;}
.fs2_c00333{font-size:51.120000px;}
.fs0_c00333{font-size:54.000000px;}
.fs5_c00333{font-size:60.120000px;}
.fs1_c00333{font-size:72.000000px;}
.y0_c00333{bottom:0.000000px;}
.y26_c00333{bottom:57.240000px;}
.y25_c00333{bottom:109.795680px;}
.y24_c00333{bottom:132.210000px;}
.y27_c00333{bottom:144.900000px;}
.y23_c00333{bottom:175.680000px;}
.y22_c00333{bottom:206.730000px;}
.y21_c00333{bottom:237.780000px;}
.y20_c00333{bottom:268.830000px;}
.y1f_c00333{bottom:299.880000px;}
.y1e_c00333{bottom:330.930000px;}
.y1d_c00333{bottom:361.980000px;}
.y1c_c00333{bottom:393.030000px;}
.y1b_c00333{bottom:424.080000px;}
.y1a_c00333{bottom:455.130000px;}
.y19_c00333{bottom:486.180000px;}
.y18_c00333{bottom:517.410000px;}
.y17_c00333{bottom:548.820000px;}
.y16_c00333{bottom:579.870000px;}
.y15_c00333{bottom:610.920000px;}
.y14_c00333{bottom:641.970000px;}
.y13_c00333{bottom:673.020000px;}
.y12_c00333{bottom:704.070000px;}
.y11_c00333{bottom:735.120000px;}
.y10_c00333{bottom:766.170000px;}
.yf_c00333{bottom:797.220000px;}
.ye_c00333{bottom:828.270000px;}
.yd_c00333{bottom:859.320000px;}
.yc_c00333{bottom:890.370000px;}
.yb_c00333{bottom:921.420000px;}
.ya_c00333{bottom:953.190000px;}
.y9_c00333{bottom:985.590000px;}
.y8_c00333{bottom:1016.640000px;}
.y7_c00333{bottom:1047.780000px;}
.y6_c00333{bottom:1079.280000px;}
.y5_c00333{bottom:1110.330000px;}
.y4_c00333{bottom:1131.030000px;}
.y3_c00333{bottom:1150.915500px;}
.y2_c00333{bottom:1166.400000px;}
.y1_c00333{bottom:1197.450000px;}
.h7_c00333{height:38.158594px;}
.h6_c00333{height:50.027344px;}
.h2_c00333{height:52.998047px;}
.h8_c00333{height:59.004492px;}
.h3_c00333{height:70.664062px;}
.h5_c00333{height:73.991602px;}
.h4_c00333{height:143.542969px;}
.h0_c00333{height:1262.880000px;}
.h1_c00333{height:1263.000000px;}
.w0_c00333{width:893.070000px;}
.w1_c00333{width:893.250000px;}
.x0_c00333{left:0.000000px;}
.x2_c00333{left:127.620000px;}
.x1_c00333{left:446.580000px;}
@media print{
.v1_c00333{vertical-align:-55.056000pt;}
.v5_c00333{vertical-align:-18.560000pt;}
.v2_c00333{vertical-align:-13.120000pt;}
.v0_c00333{vertical-align:0.000000pt;}
.v3_c00333{vertical-align:13.120000pt;}
.v4_c00333{vertical-align:24.000000pt;}
.ls14_c00333{letter-spacing:-0.320000pt;}
.ls13_c00333{letter-spacing:-0.192000pt;}
.ls18_c00333{letter-spacing:-0.160320pt;}
.ls17_c00333{letter-spacing:-0.106880pt;}
.ls15_c00333{letter-spacing:-0.064000pt;}
.ls16_c00333{letter-spacing:-0.053440pt;}
.ls12_c00333{letter-spacing:0.000000pt;}
.ls3_c00333{letter-spacing:0.064000pt;}
.ls5_c00333{letter-spacing:0.128000pt;}
.ls19_c00333{letter-spacing:0.160320pt;}
.ls7_c00333{letter-spacing:0.170240pt;}
.ls8_c00333{letter-spacing:6.400000pt;}
.lsf_c00333{letter-spacing:7.360000pt;}
.ls4_c00333{letter-spacing:7.680000pt;}
.ls6_c00333{letter-spacing:9.600000pt;}
.lsc_c00333{letter-spacing:10.880000pt;}
.ls10_c00333{letter-spacing:10.955200pt;}
.ls11_c00333{letter-spacing:11.013984pt;}
.lsb_c00333{letter-spacing:11.840000pt;}
.lsa_c00333{letter-spacing:17.472000pt;}
.ls2_c00333{letter-spacing:17.792000pt;}
.ls1_c00333{letter-spacing:20.410240pt;}
.ls9_c00333{letter-spacing:20.730240pt;}
.lse_c00333{letter-spacing:21.440000pt;}
.lsd_c00333{letter-spacing:25.280000pt;}
.ls0_c00333{letter-spacing:284.016000pt;}
.ws1_c00333{word-spacing:-64.000000pt;}
.ws0_c00333{word-spacing:-16.000000pt;}
.ws3_c00333{word-spacing:-15.936000pt;}
.ws2_c00333{word-spacing:-15.808000pt;}
.ws6_c00333{word-spacing:-13.360000pt;}
.ws4_c00333{word-spacing:-10.810240pt;}
.ws5_c00333{word-spacing:-8.640000pt;}
.ws32_c00333{word-spacing:-0.374080pt;}
.ws15_c00333{word-spacing:-0.320000pt;}
.ws8_c00333{word-spacing:-0.144000pt;}
.ws24_c00333{word-spacing:-0.128000pt;}
.ws13_c00333{word-spacing:-0.064000pt;}
.ws31_c00333{word-spacing:-0.053440pt;}
.ws7_c00333{word-spacing:0.000000pt;}
.ws2c_c00333{word-spacing:0.053440pt;}
.ws2f_c00333{word-spacing:0.160320pt;}
.wse_c00333{word-spacing:0.192000pt;}
.ws9_c00333{word-spacing:0.320000pt;}
.ws18_c00333{word-spacing:0.896000pt;}
.wsf_c00333{word-spacing:2.176000pt;}
.ws23_c00333{word-spacing:2.496000pt;}
.ws22_c00333{word-spacing:2.560000pt;}
.ws1d_c00333{word-spacing:3.200000pt;}
.ws14_c00333{word-spacing:3.840000pt;}
.ws2a_c00333{word-spacing:4.160000pt;}
.ws20_c00333{word-spacing:6.016000pt;}
.ws1f_c00333{word-spacing:6.336000pt;}
.ws10_c00333{word-spacing:7.360000pt;}
.ws11_c00333{word-spacing:7.616000pt;}
.ws1e_c00333{word-spacing:7.680000pt;}
.ws1b_c00333{word-spacing:9.216000pt;}
.ws1c_c00333{word-spacing:9.280000pt;}
.ws16_c00333{word-spacing:10.176000pt;}
.ws17_c00333{word-spacing:10.240000pt;}
.ws2d_c00333{word-spacing:10.688000pt;}
.ws30_c00333{word-spacing:10.794880pt;}
.ws21_c00333{word-spacing:10.816000pt;}
.ws26_c00333{word-spacing:10.880000pt;}
.ws25_c00333{word-spacing:10.944000pt;}
.ws2e_c00333{word-spacing:11.062080pt;}
.ws1a_c00333{word-spacing:11.200000pt;}
.wsb_c00333{word-spacing:11.456000pt;}
.ws19_c00333{word-spacing:11.840000pt;}
.wsa_c00333{word-spacing:14.336000pt;}
.ws12_c00333{word-spacing:14.976000pt;}
.wsc_c00333{word-spacing:17.152000pt;}
.wsd_c00333{word-spacing:17.280000pt;}
.ws28_c00333{word-spacing:21.696000pt;}
.ws29_c00333{word-spacing:21.760000pt;}
.ws27_c00333{word-spacing:25.280000pt;}
.ws2b_c00333{word-spacing:40.256000pt;}
._2_c00333{margin-left:-5.312000pt;}
._1_c00333{margin-left:-0.966400pt;}
._0_c00333{width:0.960000pt;}
._5_c00333{width:2.560000pt;}
._8_c00333{width:5.184000pt;}
._7_c00333{width:8.128000pt;}
._4_c00333{width:10.694400pt;}
._3_c00333{width:11.648000pt;}
._6_c00333{width:14.400000pt;}
._9_c00333{width:21.587200pt;}
.fs4_c00333{font-size:34.560000pt;}
.fs3_c00333{font-size:42.560000pt;}
.fs2_c00333{font-size:45.440000pt;}
.fs0_c00333{font-size:48.000000pt;}
.fs5_c00333{font-size:53.440000pt;}
.fs1_c00333{font-size:64.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y26_c00333{bottom:50.880000pt;}
.y25_c00333{bottom:97.596160pt;}
.y24_c00333{bottom:117.520000pt;}
.y27_c00333{bottom:128.800000pt;}
.y23_c00333{bottom:156.160000pt;}
.y22_c00333{bottom:183.760000pt;}
.y21_c00333{bottom:211.360000pt;}
.y20_c00333{bottom:238.960000pt;}
.y1f_c00333{bottom:266.560000pt;}
.y1e_c00333{bottom:294.160000pt;}
.y1d_c00333{bottom:321.760000pt;}
.y1c_c00333{bottom:349.360000pt;}
.y1b_c00333{bottom:376.960000pt;}
.y1a_c00333{bottom:404.560000pt;}
.y19_c00333{bottom:432.160000pt;}
.y18_c00333{bottom:459.920000pt;}
.y17_c00333{bottom:487.840000pt;}
.y16_c00333{bottom:515.440000pt;}
.y15_c00333{bottom:543.040000pt;}
.y14_c00333{bottom:570.640000pt;}
.y13_c00333{bottom:598.240000pt;}
.y12_c00333{bottom:625.840000pt;}
.y11_c00333{bottom:653.440000pt;}
.y10_c00333{bottom:681.040000pt;}
.yf_c00333{bottom:708.640000pt;}
.ye_c00333{bottom:736.240000pt;}
.yd_c00333{bottom:763.840000pt;}
.yc_c00333{bottom:791.440000pt;}
.yb_c00333{bottom:819.040000pt;}
.ya_c00333{bottom:847.280000pt;}
.y9_c00333{bottom:876.080000pt;}
.y8_c00333{bottom:903.680000pt;}
.y7_c00333{bottom:931.360000pt;}
.y6_c00333{bottom:959.360000pt;}
.y5_c00333{bottom:986.960000pt;}
.y4_c00333{bottom:1005.360000pt;}
.y3_c00333{bottom:1023.036000pt;}
.y2_c00333{bottom:1036.800000pt;}
.y1_c00333{bottom:1064.400000pt;}
.h7_c00333{height:33.918750pt;}
.h6_c00333{height:44.468750pt;}
.h2_c00333{height:47.109375pt;}
.h8_c00333{height:52.448437pt;}
.h3_c00333{height:62.812500pt;}
.h5_c00333{height:65.770313pt;}
.h4_c00333{height:127.593750pt;}
.h0_c00333{height:1122.560000pt;}
.h1_c00333{height:1122.666667pt;}
.w0_c00333{width:793.840000pt;}
.w1_c00333{width:794.000000pt;}
.x0_c00333{left:0.000000pt;}
.x2_c00333{left:113.440000pt;}
.x1_c00333{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f80f52d9b4c780d4af90dd7.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_9e869c702f1a35f2e793cda6.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;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_c00334;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00334;src:url('chunks/assets/font_f64c04f1f95b17ff010a939c.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00334;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00334{font-family:ff6_c00334;line-height:1.142090;font-style: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);}
.v1_c00334{vertical-align:-14.760000px;}
.v0_c00334{vertical-align:0.000000px;}
.v2_c00334{vertical-align:14.760000px;}
.lsd_c00334{letter-spacing:-0.576000px;}
.lsc_c00334{letter-spacing:-0.288000px;}
.lsa_c00334{letter-spacing:-0.108000px;}
.lsb_c00334{letter-spacing:-0.072000px;}
.ls9_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:0.072000px;}
.ls1_c00334{letter-spacing:0.144000px;}
.ls7_c00334{letter-spacing:0.360000px;}
.ls5_c00334{letter-spacing:9.000000px;}
.ls8_c00334{letter-spacing:14.040000px;}
.ls4_c00334{letter-spacing:16.560000px;}
.ls6_c00334{letter-spacing:21.240000px;}
.ls3_c00334{letter-spacing:22.601520px;}
.ls2_c00334{letter-spacing:22.961520px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00334{word-spacing:-72.000000px;}
.ws3_c00334{word-spacing:-18.144000px;}
.ws4_c00334{word-spacing:-18.072000px;}
.ws0_c00334{word-spacing:-18.000000px;}
.ws5_c00334{word-spacing:-17.928000px;}
.ws2a_c00334{word-spacing:-0.360000px;}
.ws15_c00334{word-spacing:-0.144000px;}
.wsd_c00334{word-spacing:-0.072000px;}
.ws6_c00334{word-spacing:0.000000px;}
.ws8_c00334{word-spacing:0.162000px;}
.ws7_c00334{word-spacing:0.270000px;}
.ws9_c00334{word-spacing:0.576000px;}
.wsa_c00334{word-spacing:0.720000px;}
.ws26_c00334{word-spacing:1.440000px;}
.ws1d_c00334{word-spacing:1.800000px;}
.ws2e_c00334{word-spacing:2.448000px;}
.ws2f_c00334{word-spacing:2.520000px;}
.ws29_c00334{word-spacing:3.240000px;}
.ws19_c00334{word-spacing:3.600000px;}
.ws2_c00334{word-spacing:4.176000px;}
.ws2d_c00334{word-spacing:5.400000px;}
.ws18_c00334{word-spacing:5.688000px;}
.ws21_c00334{word-spacing:6.840000px;}
.ws17_c00334{word-spacing:7.488000px;}
.ws16_c00334{word-spacing:7.560000px;}
.ws1f_c00334{word-spacing:8.928000px;}
.ws20_c00334{word-spacing:9.000000px;}
.wsc_c00334{word-spacing:11.088000px;}
.wsb_c00334{word-spacing:11.160000px;}
.ws25_c00334{word-spacing:11.880000px;}
.ws14_c00334{word-spacing:12.888000px;}
.ws10_c00334{word-spacing:13.536000px;}
.wsf_c00334{word-spacing:13.608000px;}
.wse_c00334{word-spacing:13.680000px;}
.ws2c_c00334{word-spacing:14.040000px;}
.ws28_c00334{word-spacing:15.120000px;}
.ws27_c00334{word-spacing:15.696000px;}
.ws1e_c00334{word-spacing:16.560000px;}
.ws23_c00334{word-spacing:20.808000px;}
.ws24_c00334{word-spacing:21.240000px;}
.ws22_c00334{word-spacing:21.528000px;}
.ws2b_c00334{word-spacing:21.600000px;}
.ws1b_c00334{word-spacing:21.888000px;}
.ws1a_c00334{word-spacing:21.960000px;}
.ws1c_c00334{word-spacing:22.248000px;}
.ws11_c00334{word-spacing:27.936000px;}
.ws13_c00334{word-spacing:28.008000px;}
.ws12_c00334{word-spacing:28.080000px;}
._3_c00334{margin-left:-4.701600px;}
._1_c00334{margin-left:-1.058400px;}
._0_c00334{width:1.220400px;}
._2_c00334{width:2.808000px;}
._5_c00334{width:7.603200px;}
._8_c00334{width:14.554800px;}
._9_c00334{width:15.656400px;}
._7_c00334{width:21.722400px;}
._6_c00334{width:22.989600px;}
._4_c00334{width:27.702000px;}
.fc0_c00334{color:rgb(0,0,0);}
.fs2_c00334{font-size:51.120000px;}
.fs0_c00334{font-size:54.000000px;}
.fs1_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y27_c00334{bottom:57.240000px;}
.y26_c00334{bottom:112.950000px;}
.y25_c00334{bottom:144.000000px;}
.y24_c00334{bottom:175.050000px;}
.y23_c00334{bottom:206.100000px;}
.y22_c00334{bottom:237.150000px;}
.y21_c00334{bottom:268.200000px;}
.y20_c00334{bottom:299.250000px;}
.y1f_c00334{bottom:330.300000px;}
.y1e_c00334{bottom:361.350000px;}
.y1d_c00334{bottom:392.580000px;}
.y1c_c00334{bottom:424.080000px;}
.y1b_c00334{bottom:455.130000px;}
.y1a_c00334{bottom:486.180000px;}
.y19_c00334{bottom:517.230000px;}
.y18_c00334{bottom:548.280000px;}
.y17_c00334{bottom:579.330000px;}
.y16_c00334{bottom:610.380000px;}
.y15_c00334{bottom:641.430000px;}
.y14_c00334{bottom:672.480000px;}
.y13_c00334{bottom:703.620000px;}
.y12_c00334{bottom:735.120000px;}
.y11_c00334{bottom:766.170000px;}
.y10_c00334{bottom:797.220000px;}
.yf_c00334{bottom:828.270000px;}
.ye_c00334{bottom:859.320000px;}
.yd_c00334{bottom:891.090000px;}
.yc_c00334{bottom:923.490000px;}
.yb_c00334{bottom:954.540000px;}
.ya_c00334{bottom:985.590000px;}
.y9_c00334{bottom:1016.730000px;}
.y8_c00334{bottom:1048.230000px;}
.y7_c00334{bottom:1079.280000px;}
.y6_c00334{bottom:1110.330000px;}
.y5_c00334{bottom:1131.030000px;}
.y4_c00334{bottom:1150.920000px;}
.y3_c00334{bottom:1166.404500px;}
.y2_c00334{bottom:1181.970000px;}
.y1_c00334{bottom:1197.450000px;}
.h6_c00334{height:50.027344px;}
.h3_c00334{height:52.971680px;}
.h2_c00334{height:52.998047px;}
.h4_c00334{height:70.664062px;}
.h5_c00334{height:143.542969px;}
.h0_c00334{height:1262.880000px;}
.h1_c00334{height:1263.000000px;}
.w0_c00334{width:893.070000px;}
.w1_c00334{width:893.250000px;}
.x0_c00334{left:0.000000px;}
.x3_c00334{left:127.620000px;}
.x2_c00334{left:425.160000px;}
.x1_c00334{left:446.580000px;}
.x4_c00334{left:738.540000px;}
@media print{
.v1_c00334{vertical-align:-13.120000pt;}
.v0_c00334{vertical-align:0.000000pt;}
.v2_c00334{vertical-align:13.120000pt;}
.lsd_c00334{letter-spacing:-0.512000pt;}
.lsc_c00334{letter-spacing:-0.256000pt;}
.lsa_c00334{letter-spacing:-0.096000pt;}
.lsb_c00334{letter-spacing:-0.064000pt;}
.ls9_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:0.064000pt;}
.ls1_c00334{letter-spacing:0.128000pt;}
.ls7_c00334{letter-spacing:0.320000pt;}
.ls5_c00334{letter-spacing:8.000000pt;}
.ls8_c00334{letter-spacing:12.480000pt;}
.ls4_c00334{letter-spacing:14.720000pt;}
.ls6_c00334{letter-spacing:18.880000pt;}
.ls3_c00334{letter-spacing:20.090240pt;}
.ls2_c00334{letter-spacing:20.410240pt;}
.ws1_c00334{word-spacing:-64.000000pt;}
.ws3_c00334{word-spacing:-16.128000pt;}
.ws4_c00334{word-spacing:-16.064000pt;}
.ws0_c00334{word-spacing:-16.000000pt;}
.ws5_c00334{word-spacing:-15.936000pt;}
.ws2a_c00334{word-spacing:-0.320000pt;}
.ws15_c00334{word-spacing:-0.128000pt;}
.wsd_c00334{word-spacing:-0.064000pt;}
.ws6_c00334{word-spacing:0.000000pt;}
.ws8_c00334{word-spacing:0.144000pt;}
.ws7_c00334{word-spacing:0.240000pt;}
.ws9_c00334{word-spacing:0.512000pt;}
.wsa_c00334{word-spacing:0.640000pt;}
.ws26_c00334{word-spacing:1.280000pt;}
.ws1d_c00334{word-spacing:1.600000pt;}
.ws2e_c00334{word-spacing:2.176000pt;}
.ws2f_c00334{word-spacing:2.240000pt;}
.ws29_c00334{word-spacing:2.880000pt;}
.ws19_c00334{word-spacing:3.200000pt;}
.ws2_c00334{word-spacing:3.712000pt;}
.ws2d_c00334{word-spacing:4.800000pt;}
.ws18_c00334{word-spacing:5.056000pt;}
.ws21_c00334{word-spacing:6.080000pt;}
.ws17_c00334{word-spacing:6.656000pt;}
.ws16_c00334{word-spacing:6.720000pt;}
.ws1f_c00334{word-spacing:7.936000pt;}
.ws20_c00334{word-spacing:8.000000pt;}
.wsc_c00334{word-spacing:9.856000pt;}
.wsb_c00334{word-spacing:9.920000pt;}
.ws25_c00334{word-spacing:10.560000pt;}
.ws14_c00334{word-spacing:11.456000pt;}
.ws10_c00334{word-spacing:12.032000pt;}
.wsf_c00334{word-spacing:12.096000pt;}
.wse_c00334{word-spacing:12.160000pt;}
.ws2c_c00334{word-spacing:12.480000pt;}
.ws28_c00334{word-spacing:13.440000pt;}
.ws27_c00334{word-spacing:13.952000pt;}
.ws1e_c00334{word-spacing:14.720000pt;}
.ws23_c00334{word-spacing:18.496000pt;}
.ws24_c00334{word-spacing:18.880000pt;}
.ws22_c00334{word-spacing:19.136000pt;}
.ws2b_c00334{word-spacing:19.200000pt;}
.ws1b_c00334{word-spacing:19.456000pt;}
.ws1a_c00334{word-spacing:19.520000pt;}
.ws1c_c00334{word-spacing:19.776000pt;}
.ws11_c00334{word-spacing:24.832000pt;}
.ws13_c00334{word-spacing:24.896000pt;}
.ws12_c00334{word-spacing:24.960000pt;}
._3_c00334{margin-left:-4.179200pt;}
._1_c00334{margin-left:-0.940800pt;}
._0_c00334{width:1.084800pt;}
._2_c00334{width:2.496000pt;}
._5_c00334{width:6.758400pt;}
._8_c00334{width:12.937600pt;}
._9_c00334{width:13.916800pt;}
._7_c00334{width:19.308800pt;}
._6_c00334{width:20.435200pt;}
._4_c00334{width:24.624000pt;}
.fs2_c00334{font-size:45.440000pt;}
.fs0_c00334{font-size:48.000000pt;}
.fs1_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y27_c00334{bottom:50.880000pt;}
.y26_c00334{bottom:100.400000pt;}
.y25_c00334{bottom:128.000000pt;}
.y24_c00334{bottom:155.600000pt;}
.y23_c00334{bottom:183.200000pt;}
.y22_c00334{bottom:210.800000pt;}
.y21_c00334{bottom:238.400000pt;}
.y20_c00334{bottom:266.000000pt;}
.y1f_c00334{bottom:293.600000pt;}
.y1e_c00334{bottom:321.200000pt;}
.y1d_c00334{bottom:348.960000pt;}
.y1c_c00334{bottom:376.960000pt;}
.y1b_c00334{bottom:404.560000pt;}
.y1a_c00334{bottom:432.160000pt;}
.y19_c00334{bottom:459.760000pt;}
.y18_c00334{bottom:487.360000pt;}
.y17_c00334{bottom:514.960000pt;}
.y16_c00334{bottom:542.560000pt;}
.y15_c00334{bottom:570.160000pt;}
.y14_c00334{bottom:597.760000pt;}
.y13_c00334{bottom:625.440000pt;}
.y12_c00334{bottom:653.440000pt;}
.y11_c00334{bottom:681.040000pt;}
.y10_c00334{bottom:708.640000pt;}
.yf_c00334{bottom:736.240000pt;}
.ye_c00334{bottom:763.840000pt;}
.yd_c00334{bottom:792.080000pt;}
.yc_c00334{bottom:820.880000pt;}
.yb_c00334{bottom:848.480000pt;}
.ya_c00334{bottom:876.080000pt;}
.y9_c00334{bottom:903.760000pt;}
.y8_c00334{bottom:931.760000pt;}
.y7_c00334{bottom:959.360000pt;}
.y6_c00334{bottom:986.960000pt;}
.y5_c00334{bottom:1005.360000pt;}
.y4_c00334{bottom:1023.040000pt;}
.y3_c00334{bottom:1036.804000pt;}
.y2_c00334{bottom:1050.640000pt;}
.y1_c00334{bottom:1064.400000pt;}
.h6_c00334{height:44.468750pt;}
.h3_c00334{height:47.085938pt;}
.h2_c00334{height:47.109375pt;}
.h4_c00334{height:62.812500pt;}
.h5_c00334{height:127.593750pt;}
.h0_c00334{height:1122.560000pt;}
.h1_c00334{height:1122.666667pt;}
.w0_c00334{width:793.840000pt;}
.w1_c00334{width:794.000000pt;}
.x0_c00334{left:0.000000pt;}
.x3_c00334{left:113.440000pt;}
.x2_c00334{left:377.920000pt;}
.x1_c00334{left:396.960000pt;}
.x4_c00334{left:656.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_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_5e8987eec22ac541d85a2e0a.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_06f88e7cfca92b79b069126a.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;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_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);}
.v1_c00335{vertical-align:-61.938000px;}
.v0_c00335{vertical-align:0.000000px;}
.ls9_c00335{letter-spacing:-0.360000px;}
.lsa_c00335{letter-spacing:-0.288000px;}
.lsb_c00335{letter-spacing:-0.072000px;}
.ls8_c00335{letter-spacing:0.000000px;}
.ls2_c00335{letter-spacing:0.072000px;}
.ls5_c00335{letter-spacing:0.144000px;}
.ls6_c00335{letter-spacing:1.080000px;}
.ls1_c00335{letter-spacing:3.600000px;}
.ls3_c00335{letter-spacing:9.720000px;}
.ls4_c00335{letter-spacing:10.080000px;}
.ls7_c00335{letter-spacing:19.800000px;}
.ls0_c00335{letter-spacing:319.518000px;}
.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;}
}
.ws0_c00335{word-spacing:-18.144000px;}
.ws2_c00335{word-spacing:-18.072000px;}
.ws3_c00335{word-spacing:-18.000000px;}
.ws4_c00335{word-spacing:-17.928000px;}
.ws1_c00335{word-spacing:-17.712000px;}
.ws21_c00335{word-spacing:-0.360000px;}
.ws6_c00335{word-spacing:-0.162000px;}
.ws14_c00335{word-spacing:-0.072000px;}
.ws5_c00335{word-spacing:0.000000px;}
.ws18_c00335{word-spacing:0.072000px;}
.ws9_c00335{word-spacing:0.360000px;}
.ws24_c00335{word-spacing:0.648000px;}
.ws25_c00335{word-spacing:0.720000px;}
.ws27_c00335{word-spacing:0.936000px;}
.ws26_c00335{word-spacing:1.008000px;}
.ws1a_c00335{word-spacing:1.296000px;}
.ws19_c00335{word-spacing:1.440000px;}
.ws1e_c00335{word-spacing:1.728000px;}
.ws1f_c00335{word-spacing:1.800000px;}
.ws11_c00335{word-spacing:3.528000px;}
.ws10_c00335{word-spacing:3.600000px;}
.ws7_c00335{word-spacing:3.888000px;}
.ws15_c00335{word-spacing:4.248000px;}
.ws16_c00335{word-spacing:4.320000px;}
.ws2c_c00335{word-spacing:4.680000px;}
.ws28_c00335{word-spacing:5.040000px;}
.wsd_c00335{word-spacing:5.688000px;}
.wsc_c00335{word-spacing:5.760000px;}
.ws20_c00335{word-spacing:8.208000px;}
.ws1c_c00335{word-spacing:8.928000px;}
.ws1b_c00335{word-spacing:9.000000px;}
.ws8_c00335{word-spacing:9.216000px;}
.wsb_c00335{word-spacing:9.288000px;}
.wsa_c00335{word-spacing:9.360000px;}
.ws17_c00335{word-spacing:9.720000px;}
.ws23_c00335{word-spacing:10.080000px;}
.wsf_c00335{word-spacing:10.368000px;}
.wse_c00335{word-spacing:10.440000px;}
.ws22_c00335{word-spacing:10.800000px;}
.ws2a_c00335{word-spacing:12.528000px;}
.ws2b_c00335{word-spacing:12.600000px;}
.ws13_c00335{word-spacing:14.400000px;}
.ws29_c00335{word-spacing:14.688000px;}
.ws12_c00335{word-spacing:14.760000px;}
.ws1d_c00335{word-spacing:18.648000px;}
.ws2d_c00335{word-spacing:19.800000px;}
._1_c00335{margin-left:-1.087200px;}
._3_c00335{width:1.008000px;}
._4_c00335{width:2.304000px;}
._0_c00335{width:3.960000px;}
._8_c00335{width:5.925600px;}
._7_c00335{width:7.200000px;}
._2_c00335{width:9.662400px;}
._5_c00335{width:11.304000px;}
._6_c00335{width:13.104000px;}
.fc0_c00335{color:rgb(0,0,0);}
.fs0_c00335{font-size:54.000000px;}
.fs1_c00335{font-size:72.000000px;}
.y0_c00335{bottom:0.000000px;}
.y25_c00335{bottom:57.240000px;}
.y24_c00335{bottom:147.870000px;}
.y23_c00335{bottom:178.920000px;}
.y22_c00335{bottom:209.970000px;}
.y21_c00335{bottom:241.020000px;}
.y20_c00335{bottom:272.070000px;}
.y1f_c00335{bottom:303.120000px;}
.y1e_c00335{bottom:334.170000px;}
.y1d_c00335{bottom:365.220000px;}
.y1c_c00335{bottom:396.270000px;}
.y1b_c00335{bottom:427.320000px;}
.y1a_c00335{bottom:458.370000px;}
.y19_c00335{bottom:489.420000px;}
.y18_c00335{bottom:520.470000px;}
.y17_c00335{bottom:551.520000px;}
.y16_c00335{bottom:582.570000px;}
.y15_c00335{bottom:613.620000px;}
.y14_c00335{bottom:644.670000px;}
.y13_c00335{bottom:675.720000px;}
.y12_c00335{bottom:706.770000px;}
.y11_c00335{bottom:737.820000px;}
.y10_c00335{bottom:768.870000px;}
.yf_c00335{bottom:799.920000px;}
.ye_c00335{bottom:830.970000px;}
.yd_c00335{bottom:861.930000px;}
.yc_c00335{bottom:892.980000px;}
.yb_c00335{bottom:924.030000px;}
.ya_c00335{bottom:955.080000px;}
.y9_c00335{bottom:986.130000px;}
.y8_c00335{bottom:1017.180000px;}
.y7_c00335{bottom:1048.230000px;}
.y6_c00335{bottom:1079.280000px;}
.y5_c00335{bottom:1110.330000px;}
.y4_c00335{bottom:1131.030000px;}
.y3_c00335{bottom:1150.915500px;}
.y2_c00335{bottom:1166.400000px;}
.y1_c00335{bottom:1197.450000px;}
.h4_c00335{height:50.027344px;}
.h2_c00335{height:52.998047px;}
.h3_c00335{height:70.664062px;}
.h0_c00335{height:1262.880000px;}
.h1_c00335{height:1263.000000px;}
.w0_c00335{width:893.070000px;}
.w1_c00335{width:893.250000px;}
.x0_c00335{left:0.000000px;}
.x2_c00335{left:127.620000px;}
.x1_c00335{left:446.580000px;}
@media print{
.v1_c00335{vertical-align:-55.056000pt;}
.v0_c00335{vertical-align:0.000000pt;}
.ls9_c00335{letter-spacing:-0.320000pt;}
.lsa_c00335{letter-spacing:-0.256000pt;}
.lsb_c00335{letter-spacing:-0.064000pt;}
.ls8_c00335{letter-spacing:0.000000pt;}
.ls2_c00335{letter-spacing:0.064000pt;}
.ls5_c00335{letter-spacing:0.128000pt;}
.ls6_c00335{letter-spacing:0.960000pt;}
.ls1_c00335{letter-spacing:3.200000pt;}
.ls3_c00335{letter-spacing:8.640000pt;}
.ls4_c00335{letter-spacing:8.960000pt;}
.ls7_c00335{letter-spacing:17.600000pt;}
.ls0_c00335{letter-spacing:284.016000pt;}
.ws0_c00335{word-spacing:-16.128000pt;}
.ws2_c00335{word-spacing:-16.064000pt;}
.ws3_c00335{word-spacing:-16.000000pt;}
.ws4_c00335{word-spacing:-15.936000pt;}
.ws1_c00335{word-spacing:-15.744000pt;}
.ws21_c00335{word-spacing:-0.320000pt;}
.ws6_c00335{word-spacing:-0.144000pt;}
.ws14_c00335{word-spacing:-0.064000pt;}
.ws5_c00335{word-spacing:0.000000pt;}
.ws18_c00335{word-spacing:0.064000pt;}
.ws9_c00335{word-spacing:0.320000pt;}
.ws24_c00335{word-spacing:0.576000pt;}
.ws25_c00335{word-spacing:0.640000pt;}
.ws27_c00335{word-spacing:0.832000pt;}
.ws26_c00335{word-spacing:0.896000pt;}
.ws1a_c00335{word-spacing:1.152000pt;}
.ws19_c00335{word-spacing:1.280000pt;}
.ws1e_c00335{word-spacing:1.536000pt;}
.ws1f_c00335{word-spacing:1.600000pt;}
.ws11_c00335{word-spacing:3.136000pt;}
.ws10_c00335{word-spacing:3.200000pt;}
.ws7_c00335{word-spacing:3.456000pt;}
.ws15_c00335{word-spacing:3.776000pt;}
.ws16_c00335{word-spacing:3.840000pt;}
.ws2c_c00335{word-spacing:4.160000pt;}
.ws28_c00335{word-spacing:4.480000pt;}
.wsd_c00335{word-spacing:5.056000pt;}
.wsc_c00335{word-spacing:5.120000pt;}
.ws20_c00335{word-spacing:7.296000pt;}
.ws1c_c00335{word-spacing:7.936000pt;}
.ws1b_c00335{word-spacing:8.000000pt;}
.ws8_c00335{word-spacing:8.192000pt;}
.wsb_c00335{word-spacing:8.256000pt;}
.wsa_c00335{word-spacing:8.320000pt;}
.ws17_c00335{word-spacing:8.640000pt;}
.ws23_c00335{word-spacing:8.960000pt;}
.wsf_c00335{word-spacing:9.216000pt;}
.wse_c00335{word-spacing:9.280000pt;}
.ws22_c00335{word-spacing:9.600000pt;}
.ws2a_c00335{word-spacing:11.136000pt;}
.ws2b_c00335{word-spacing:11.200000pt;}
.ws13_c00335{word-spacing:12.800000pt;}
.ws29_c00335{word-spacing:13.056000pt;}
.ws12_c00335{word-spacing:13.120000pt;}
.ws1d_c00335{word-spacing:16.576000pt;}
.ws2d_c00335{word-spacing:17.600000pt;}
._1_c00335{margin-left:-0.966400pt;}
._3_c00335{width:0.896000pt;}
._4_c00335{width:2.048000pt;}
._0_c00335{width:3.520000pt;}
._8_c00335{width:5.267200pt;}
._7_c00335{width:6.400000pt;}
._2_c00335{width:8.588800pt;}
._5_c00335{width:10.048000pt;}
._6_c00335{width:11.648000pt;}
.fs0_c00335{font-size:48.000000pt;}
.fs1_c00335{font-size:64.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y25_c00335{bottom:50.880000pt;}
.y24_c00335{bottom:131.440000pt;}
.y23_c00335{bottom:159.040000pt;}
.y22_c00335{bottom:186.640000pt;}
.y21_c00335{bottom:214.240000pt;}
.y20_c00335{bottom:241.840000pt;}
.y1f_c00335{bottom:269.440000pt;}
.y1e_c00335{bottom:297.040000pt;}
.y1d_c00335{bottom:324.640000pt;}
.y1c_c00335{bottom:352.240000pt;}
.y1b_c00335{bottom:379.840000pt;}
.y1a_c00335{bottom:407.440000pt;}
.y19_c00335{bottom:435.040000pt;}
.y18_c00335{bottom:462.640000pt;}
.y17_c00335{bottom:490.240000pt;}
.y16_c00335{bottom:517.840000pt;}
.y15_c00335{bottom:545.440000pt;}
.y14_c00335{bottom:573.040000pt;}
.y13_c00335{bottom:600.640000pt;}
.y12_c00335{bottom:628.240000pt;}
.y11_c00335{bottom:655.840000pt;}
.y10_c00335{bottom:683.440000pt;}
.yf_c00335{bottom:711.040000pt;}
.ye_c00335{bottom:738.640000pt;}
.yd_c00335{bottom:766.160000pt;}
.yc_c00335{bottom:793.760000pt;}
.yb_c00335{bottom:821.360000pt;}
.ya_c00335{bottom:848.960000pt;}
.y9_c00335{bottom:876.560000pt;}
.y8_c00335{bottom:904.160000pt;}
.y7_c00335{bottom:931.760000pt;}
.y6_c00335{bottom:959.360000pt;}
.y5_c00335{bottom:986.960000pt;}
.y4_c00335{bottom:1005.360000pt;}
.y3_c00335{bottom:1023.036000pt;}
.y2_c00335{bottom:1036.800000pt;}
.y1_c00335{bottom:1064.400000pt;}
.h4_c00335{height:44.468750pt;}
.h2_c00335{height:47.109375pt;}
.h3_c00335{height:62.812500pt;}
.h0_c00335{height:1122.560000pt;}
.h1_c00335{height:1122.666667pt;}
.w0_c00335{width:793.840000pt;}
.w1_c00335{width:794.000000pt;}
.x0_c00335{left:0.000000pt;}
.x2_c00335{left:113.440000pt;}
.x1_c00335{left:396.960000pt;}
}





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

.ir_c00336:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00336;src:url('chunks/assets/font_63d5491b20ce4a18f0171601.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_6d0f69d481b75b5e380fa895.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;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_c00336;src:url('chunks/assets/font_a6908671d3c090a606ef6441.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8_c00336{vertical-align:-20.880000px;}
.v6_c00336{vertical-align:-14.760000px;}
.v3_c00336{vertical-align:-10.800000px;}
.v0_c00336{vertical-align:0.000000px;}
.v7_c00336{vertical-align:14.760000px;}
.v5_c00336{vertical-align:27.000000px;}
.v2_c00336{vertical-align:31.320000px;}
.v4_c00336{vertical-align:36.360000px;}
.v1_c00336{vertical-align:42.120000px;}
.ls12_c00336{letter-spacing:-0.120240px;}
.lsd_c00336{letter-spacing:-0.108000px;}
.ls10_c00336{letter-spacing:-0.102240px;}
.ls11_c00336{letter-spacing:-0.072000px;}
.ls13_c00336{letter-spacing:-0.060120px;}
.lse_c00336{letter-spacing:-0.042120px;}
.lsc_c00336{letter-spacing:0.000000px;}
.ls1_c00336{letter-spacing:0.072000px;}
.lsf_c00336{letter-spacing:0.102240px;}
.lsb_c00336{letter-spacing:0.120240px;}
.ls4_c00336{letter-spacing:0.144000px;}
.ls14_c00336{letter-spacing:0.180360px;}
.ls5_c00336{letter-spacing:0.191520px;}
.ls0_c00336{letter-spacing:0.720000px;}
.ls2_c00336{letter-spacing:1.080000px;}
.ls6_c00336{letter-spacing:1.800000px;}
.ls8_c00336{letter-spacing:2.880000px;}
.ls9_c00336{letter-spacing:3.240000px;}
.lsa_c00336{letter-spacing:3.667320px;}
.ls3_c00336{letter-spacing:6.480000px;}
.ls7_c00336{letter-spacing:22.961520px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00336{word-spacing:-72.000000px;}
.ws1_c00336{word-spacing:-51.222240px;}
.ws0_c00336{word-spacing:-51.120000px;}
.ws4_c00336{word-spacing:-51.017760px;}
.ws2_c00336{word-spacing:-42.077880px;}
.ws8_c00336{word-spacing:-18.144000px;}
.ws5_c00336{word-spacing:-18.000000px;}
.wsa_c00336{word-spacing:-15.030000px;}
.ws6_c00336{word-spacing:-12.161520px;}
.ws9_c00336{word-spacing:-9.720000px;}
.ws1b_c00336{word-spacing:-0.432000px;}
.ws36_c00336{word-spacing:-0.420840px;}
.ws31_c00336{word-spacing:-0.144000px;}
.ws18_c00336{word-spacing:-0.072000px;}
.ws34_c00336{word-spacing:-0.060120px;}
.wsb_c00336{word-spacing:0.000000px;}
.ws13_c00336{word-spacing:0.042120px;}
.wsd_c00336{word-spacing:0.162000px;}
.ws35_c00336{word-spacing:0.180360px;}
.wsc_c00336{word-spacing:0.270000px;}
.ws20_c00336{word-spacing:0.360000px;}
.ws14_c00336{word-spacing:0.576000px;}
.wsf_c00336{word-spacing:0.648000px;}
.wse_c00336{word-spacing:0.720000px;}
.ws12_c00336{word-spacing:1.008000px;}
.ws25_c00336{word-spacing:1.728000px;}
.ws24_c00336{word-spacing:1.800000px;}
.ws1a_c00336{word-spacing:2.088000px;}
.ws19_c00336{word-spacing:2.160000px;}
.ws29_c00336{word-spacing:2.808000px;}
.ws2a_c00336{word-spacing:2.880000px;}
.ws2c_c00336{word-spacing:3.168000px;}
.ws2b_c00336{word-spacing:3.240000px;}
.ws33_c00336{word-spacing:3.727440px;}
.ws32_c00336{word-spacing:3.787560px;}
.ws22_c00336{word-spacing:3.888000px;}
.ws23_c00336{word-spacing:3.960000px;}
.ws7_c00336{word-spacing:4.176000px;}
.ws17_c00336{word-spacing:4.608000px;}
.ws1e_c00336{word-spacing:4.968000px;}
.ws1f_c00336{word-spacing:5.040000px;}
.ws30_c00336{word-spacing:5.400000px;}
.ws21_c00336{word-spacing:6.120000px;}
.ws10_c00336{word-spacing:6.480000px;}
.ws11_c00336{word-spacing:6.840000px;}
.ws1c_c00336{word-spacing:7.128000px;}
.ws1d_c00336{word-spacing:7.200000px;}
.ws2d_c00336{word-spacing:7.848000px;}
.ws2f_c00336{word-spacing:8.640000px;}
.ws2e_c00336{word-spacing:9.720000px;}
.ws27_c00336{word-spacing:10.008000px;}
.ws26_c00336{word-spacing:10.080000px;}
.ws16_c00336{word-spacing:15.120000px;}
.ws15_c00336{word-spacing:15.192000px;}
.ws28_c00336{word-spacing:29.520000px;}
._5_c00336{margin-left:-3.672000px;}
._1_c00336{margin-left:-1.058400px;}
._0_c00336{width:1.220400px;}
._4_c00336{width:2.697480px;}
._3_c00336{width:6.912000px;}
._8_c00336{width:8.640000px;}
._7_c00336{width:9.864000px;}
._2_c00336{width:19.296000px;}
._6_c00336{width:29.304000px;}
.fc0_c00336{color:rgb(0,0,0);}
.fs5_c00336{font-size:38.880000px;}
.fs3_c00336{font-size:42.120000px;}
.fs4_c00336{font-size:47.880000px;}
.fs2_c00336{font-size:51.120000px;}
.fs0_c00336{font-size:54.000000px;}
.fs6_c00336{font-size:60.120000px;}
.fs1_c00336{font-size:72.000000px;}
.y0_c00336{bottom:0.000000px;}
.y28_c00336{bottom:57.240000px;}
.y27_c00336{bottom:115.020000px;}
.y26_c00336{bottom:126.985500px;}
.y25_c00336{bottom:149.490000px;}
.y29_c00336{bottom:162.180000px;}
.y24_c00336{bottom:195.300000px;}
.y23_c00336{bottom:226.350000px;}
.y22_c00336{bottom:257.400000px;}
.y21_c00336{bottom:288.450000px;}
.y20_c00336{bottom:319.500000px;}
.y1f_c00336{bottom:350.550000px;}
.y1e_c00336{bottom:381.600000px;}
.y1d_c00336{bottom:412.650000px;}
.y1c_c00336{bottom:443.700000px;}
.y1b_c00336{bottom:474.750000px;}
.y1a_c00336{bottom:505.980000px;}
.y19_c00336{bottom:537.480000px;}
.y18_c00336{bottom:568.530000px;}
.y17_c00336{bottom:599.580000px;}
.y16_c00336{bottom:630.630000px;}
.y15_c00336{bottom:661.680000px;}
.y14_c00336{bottom:692.730000px;}
.y13_c00336{bottom:723.780000px;}
.y12_c00336{bottom:754.830000px;}
.y11_c00336{bottom:785.880000px;}
.y10_c00336{bottom:816.930000px;}
.yf_c00336{bottom:847.980000px;}
.ye_c00336{bottom:879.030000px;}
.yd_c00336{bottom:910.080000px;}
.yc_c00336{bottom:941.040000px;}
.yb_c00336{bottom:971.100000px;}
.ya_c00336{bottom:980.190000px;}
.y9_c00336{bottom:1017.180000px;}
.y8_c00336{bottom:1048.230000px;}
.y7_c00336{bottom:1079.280000px;}
.y6_c00336{bottom:1110.330000px;}
.y5_c00336{bottom:1131.030000px;}
.y4_c00336{bottom:1150.920000px;}
.y3_c00336{bottom:1166.404500px;}
.y2_c00336{bottom:1181.970000px;}
.y1_c00336{bottom:1197.450000px;}
.hb_c00336{height:38.158594px;}
.h5_c00336{height:50.027344px;}
.h3_c00336{height:52.971680px;}
.h2_c00336{height:52.998047px;}
.hc_c00336{height:59.004492px;}
.h4_c00336{height:70.664062px;}
.h9_c00336{height:73.991602px;}
.ha_c00336{height:143.542969px;}
.h6_c00336{height:144.035508px;}
.h8_c00336{height:179.902969px;}
.h7_c00336{height:180.395508px;}
.h0_c00336{height:1262.880000px;}
.h1_c00336{height:1263.000000px;}
.w0_c00336{width:893.070000px;}
.w1_c00336{width:893.250000px;}
.x0_c00336{left:0.000000px;}
.x3_c00336{left:127.620000px;}
.x2_c00336{left:425.160000px;}
.x1_c00336{left:446.580000px;}
.x4_c00336{left:452.610000px;}
.x5_c00336{left:711.000000px;}
.x6_c00336{left:738.540000px;}
@media print{
.v8_c00336{vertical-align:-18.560000pt;}
.v6_c00336{vertical-align:-13.120000pt;}
.v3_c00336{vertical-align:-9.600000pt;}
.v0_c00336{vertical-align:0.000000pt;}
.v7_c00336{vertical-align:13.120000pt;}
.v5_c00336{vertical-align:24.000000pt;}
.v2_c00336{vertical-align:27.840000pt;}
.v4_c00336{vertical-align:32.320000pt;}
.v1_c00336{vertical-align:37.440000pt;}
.ls12_c00336{letter-spacing:-0.106880pt;}
.lsd_c00336{letter-spacing:-0.096000pt;}
.ls10_c00336{letter-spacing:-0.090880pt;}
.ls11_c00336{letter-spacing:-0.064000pt;}
.ls13_c00336{letter-spacing:-0.053440pt;}
.lse_c00336{letter-spacing:-0.037440pt;}
.lsc_c00336{letter-spacing:0.000000pt;}
.ls1_c00336{letter-spacing:0.064000pt;}
.lsf_c00336{letter-spacing:0.090880pt;}
.lsb_c00336{letter-spacing:0.106880pt;}
.ls4_c00336{letter-spacing:0.128000pt;}
.ls14_c00336{letter-spacing:0.160320pt;}
.ls5_c00336{letter-spacing:0.170240pt;}
.ls0_c00336{letter-spacing:0.640000pt;}
.ls2_c00336{letter-spacing:0.960000pt;}
.ls6_c00336{letter-spacing:1.600000pt;}
.ls8_c00336{letter-spacing:2.560000pt;}
.ls9_c00336{letter-spacing:2.880000pt;}
.lsa_c00336{letter-spacing:3.259840pt;}
.ls3_c00336{letter-spacing:5.760000pt;}
.ls7_c00336{letter-spacing:20.410240pt;}
.ws3_c00336{word-spacing:-64.000000pt;}
.ws1_c00336{word-spacing:-45.530880pt;}
.ws0_c00336{word-spacing:-45.440000pt;}
.ws4_c00336{word-spacing:-45.349120pt;}
.ws2_c00336{word-spacing:-37.402560pt;}
.ws8_c00336{word-spacing:-16.128000pt;}
.ws5_c00336{word-spacing:-16.000000pt;}
.wsa_c00336{word-spacing:-13.360000pt;}
.ws6_c00336{word-spacing:-10.810240pt;}
.ws9_c00336{word-spacing:-8.640000pt;}
.ws1b_c00336{word-spacing:-0.384000pt;}
.ws36_c00336{word-spacing:-0.374080pt;}
.ws31_c00336{word-spacing:-0.128000pt;}
.ws18_c00336{word-spacing:-0.064000pt;}
.ws34_c00336{word-spacing:-0.053440pt;}
.wsb_c00336{word-spacing:0.000000pt;}
.ws13_c00336{word-spacing:0.037440pt;}
.wsd_c00336{word-spacing:0.144000pt;}
.ws35_c00336{word-spacing:0.160320pt;}
.wsc_c00336{word-spacing:0.240000pt;}
.ws20_c00336{word-spacing:0.320000pt;}
.ws14_c00336{word-spacing:0.512000pt;}
.wsf_c00336{word-spacing:0.576000pt;}
.wse_c00336{word-spacing:0.640000pt;}
.ws12_c00336{word-spacing:0.896000pt;}
.ws25_c00336{word-spacing:1.536000pt;}
.ws24_c00336{word-spacing:1.600000pt;}
.ws1a_c00336{word-spacing:1.856000pt;}
.ws19_c00336{word-spacing:1.920000pt;}
.ws29_c00336{word-spacing:2.496000pt;}
.ws2a_c00336{word-spacing:2.560000pt;}
.ws2c_c00336{word-spacing:2.816000pt;}
.ws2b_c00336{word-spacing:2.880000pt;}
.ws33_c00336{word-spacing:3.313280pt;}
.ws32_c00336{word-spacing:3.366720pt;}
.ws22_c00336{word-spacing:3.456000pt;}
.ws23_c00336{word-spacing:3.520000pt;}
.ws7_c00336{word-spacing:3.712000pt;}
.ws17_c00336{word-spacing:4.096000pt;}
.ws1e_c00336{word-spacing:4.416000pt;}
.ws1f_c00336{word-spacing:4.480000pt;}
.ws30_c00336{word-spacing:4.800000pt;}
.ws21_c00336{word-spacing:5.440000pt;}
.ws10_c00336{word-spacing:5.760000pt;}
.ws11_c00336{word-spacing:6.080000pt;}
.ws1c_c00336{word-spacing:6.336000pt;}
.ws1d_c00336{word-spacing:6.400000pt;}
.ws2d_c00336{word-spacing:6.976000pt;}
.ws2f_c00336{word-spacing:7.680000pt;}
.ws2e_c00336{word-spacing:8.640000pt;}
.ws27_c00336{word-spacing:8.896000pt;}
.ws26_c00336{word-spacing:8.960000pt;}
.ws16_c00336{word-spacing:13.440000pt;}
.ws15_c00336{word-spacing:13.504000pt;}
.ws28_c00336{word-spacing:26.240000pt;}
._5_c00336{margin-left:-3.264000pt;}
._1_c00336{margin-left:-0.940800pt;}
._0_c00336{width:1.084800pt;}
._4_c00336{width:2.397760pt;}
._3_c00336{width:6.144000pt;}
._8_c00336{width:7.680000pt;}
._7_c00336{width:8.768000pt;}
._2_c00336{width:17.152000pt;}
._6_c00336{width:26.048000pt;}
.fs5_c00336{font-size:34.560000pt;}
.fs3_c00336{font-size:37.440000pt;}
.fs4_c00336{font-size:42.560000pt;}
.fs2_c00336{font-size:45.440000pt;}
.fs0_c00336{font-size:48.000000pt;}
.fs6_c00336{font-size:53.440000pt;}
.fs1_c00336{font-size:64.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y28_c00336{bottom:50.880000pt;}
.y27_c00336{bottom:102.240000pt;}
.y26_c00336{bottom:112.876000pt;}
.y25_c00336{bottom:132.880000pt;}
.y29_c00336{bottom:144.160000pt;}
.y24_c00336{bottom:173.600000pt;}
.y23_c00336{bottom:201.200000pt;}
.y22_c00336{bottom:228.800000pt;}
.y21_c00336{bottom:256.400000pt;}
.y20_c00336{bottom:284.000000pt;}
.y1f_c00336{bottom:311.600000pt;}
.y1e_c00336{bottom:339.200000pt;}
.y1d_c00336{bottom:366.800000pt;}
.y1c_c00336{bottom:394.400000pt;}
.y1b_c00336{bottom:422.000000pt;}
.y1a_c00336{bottom:449.760000pt;}
.y19_c00336{bottom:477.760000pt;}
.y18_c00336{bottom:505.360000pt;}
.y17_c00336{bottom:532.960000pt;}
.y16_c00336{bottom:560.560000pt;}
.y15_c00336{bottom:588.160000pt;}
.y14_c00336{bottom:615.760000pt;}
.y13_c00336{bottom:643.360000pt;}
.y12_c00336{bottom:670.960000pt;}
.y11_c00336{bottom:698.560000pt;}
.y10_c00336{bottom:726.160000pt;}
.yf_c00336{bottom:753.760000pt;}
.ye_c00336{bottom:781.360000pt;}
.yd_c00336{bottom:808.960000pt;}
.yc_c00336{bottom:836.480000pt;}
.yb_c00336{bottom:863.200000pt;}
.ya_c00336{bottom:871.280000pt;}
.y9_c00336{bottom:904.160000pt;}
.y8_c00336{bottom:931.760000pt;}
.y7_c00336{bottom:959.360000pt;}
.y6_c00336{bottom:986.960000pt;}
.y5_c00336{bottom:1005.360000pt;}
.y4_c00336{bottom:1023.040000pt;}
.y3_c00336{bottom:1036.804000pt;}
.y2_c00336{bottom:1050.640000pt;}
.y1_c00336{bottom:1064.400000pt;}
.hb_c00336{height:33.918750pt;}
.h5_c00336{height:44.468750pt;}
.h3_c00336{height:47.085938pt;}
.h2_c00336{height:47.109375pt;}
.hc_c00336{height:52.448437pt;}
.h4_c00336{height:62.812500pt;}
.h9_c00336{height:65.770312pt;}
.ha_c00336{height:127.593750pt;}
.h6_c00336{height:128.031562pt;}
.h8_c00336{height:159.913750pt;}
.h7_c00336{height:160.351563pt;}
.h0_c00336{height:1122.560000pt;}
.h1_c00336{height:1122.666667pt;}
.w0_c00336{width:793.840000pt;}
.w1_c00336{width:794.000000pt;}
.x0_c00336{left:0.000000pt;}
.x3_c00336{left:113.440000pt;}
.x2_c00336{left:377.920000pt;}
.x1_c00336{left:396.960000pt;}
.x4_c00336{left:402.320000pt;}
.x5_c00336{left:632.000000pt;}
.x6_c00336{left:656.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_c00337 {
    display:none;
  }
  .loading-indicator_c00337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00337 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00337 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00337" -> "#page-container .classname_c00337")
 */
.pf_c00337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00337 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00337 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00337 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00337 {overflow:visible;}
  }
}
.c_c00337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00337 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00337:after { /* webkit #35443 */
  content: '';
}
.t_c00337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00337 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00337 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00337 { /* info for Javascript */
  display:none;
}
.l_c00337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00337:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_c7a0b9b25e2befc99b00a56c.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_c285d59b276e035aa8f351bb.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_848dd9c4d684285bfd8bb957.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00337;src:url('chunks/assets/font_83df55c227705f1347a722ac.woff2')format("woff");}.ff5_c00337{font-family:ff5_c00337;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00337;src:url('chunks/assets/font_7d82f1077b95c7e94a0417be.woff2')format("woff");}.ff6_c00337{font-family:ff6_c00337;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.281179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281179,0.000000,0.000000,0.250000,0,0);}
.v2_c00337{vertical-align:-83.520000px;}
.v1_c00337{vertical-align:-61.938000px;}
.v3_c00337{vertical-align:-3.341424px;}
.v0_c00337{vertical-align:0.000000px;}
.v4_c00337{vertical-align:3.341424px;}
.ls11_c00337{letter-spacing:-1.994880px;}
.ls22_c00337{letter-spacing:-1.642444px;}
.ls12_c00337{letter-spacing:-1.346544px;}
.ls10_c00337{letter-spacing:-1.276718px;}
.ls15_c00337{letter-spacing:-1.147056px;}
.ls18_c00337{letter-spacing:-1.097184px;}
.ls21_c00337{letter-spacing:-0.631710px;}
.ls14_c00337{letter-spacing:-0.598464px;}
.ls13_c00337{letter-spacing:-0.372376px;}
.lsd_c00337{letter-spacing:-0.288000px;}
.ls1b_c00337{letter-spacing:-0.199488px;}
.lsf_c00337{letter-spacing:-0.159590px;}
.ls17_c00337{letter-spacing:-0.149616px;}
.lsc_c00337{letter-spacing:-0.072000px;}
.lsa_c00337{letter-spacing:0.000000px;}
.lse_c00337{letter-spacing:0.072000px;}
.lsb_c00337{letter-spacing:0.144000px;}
.ls19_c00337{letter-spacing:0.149616px;}
.ls2_c00337{letter-spacing:0.212786px;}
.ls3_c00337{letter-spacing:0.319180px;}
.ls1e_c00337{letter-spacing:0.621731px;}
.ls24_c00337{letter-spacing:0.778000px;}
.ls1d_c00337{letter-spacing:0.904342px;}
.ls1f_c00337{letter-spacing:1.010735px;}
.ls16_c00337{letter-spacing:1.047312px;}
.ls25_c00337{letter-spacing:1.329915px;}
.ls1c_c00337{letter-spacing:1.383112px;}
.ls6_c00337{letter-spacing:1.383245px;}
.ls7_c00337{letter-spacing:1.426324px;}
.ls8_c00337{letter-spacing:1.488571px;}
.ls9_c00337{letter-spacing:1.489105px;}
.ls1a_c00337{letter-spacing:1.496160px;}
.ls20_c00337{letter-spacing:1.542701px;}
.ls23_c00337{letter-spacing:1.685666px;}
.ls5_c00337{letter-spacing:2.553437px;}
.ls4_c00337{letter-spacing:81.091872px;}
.ls0_c00337{letter-spacing:1144.260000px;}
.ls1_c00337{letter-spacing:2082.240000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws30_c00337{word-spacing:-13.565133px;}
.ws2f_c00337{word-spacing:-13.405543px;}
.ws2e_c00337{word-spacing:-12.341611px;}
.ws31_c00337{word-spacing:-12.235218px;}
.ws1_c00337{word-spacing:-11.862842px;}
.ws0_c00337{word-spacing:-10.745713px;}
.ws42_c00337{word-spacing:-3.035509px;}
.ws3c_c00337{word-spacing:-2.792832px;}
.ws49_c00337{word-spacing:-2.506888px;}
.ws41_c00337{word-spacing:-2.230916px;}
.ws4a_c00337{word-spacing:-1.599221px;}
.ws46_c00337{word-spacing:-1.426324px;}
.ws3f_c00337{word-spacing:-1.383112px;}
.ws3d_c00337{word-spacing:-1.276718px;}
.ws43_c00337{word-spacing:-1.010735px;}
.ws40_c00337{word-spacing:-0.904342px;}
.ws44_c00337{word-spacing:-0.319180px;}
.ws47_c00337{word-spacing:-0.315855px;}
.ws3b_c00337{word-spacing:-0.212786px;}
.ws33_c00337{word-spacing:-0.162000px;}
.ws34_c00337{word-spacing:-0.144000px;}
.ws3e_c00337{word-spacing:-0.106393px;}
.ws37_c00337{word-spacing:-0.072000px;}
.ws4b_c00337{word-spacing:-0.053197px;}
.ws32_c00337{word-spacing:0.000000px;}
.ws35_c00337{word-spacing:0.072000px;}
.ws39_c00337{word-spacing:0.159590px;}
.ws36_c00337{word-spacing:0.288000px;}
.ws48_c00337{word-spacing:0.821222px;}
.ws3a_c00337{word-spacing:0.957539px;}
.ws38_c00337{word-spacing:1.063932px;}
.ws45_c00337{word-spacing:1.276718px;}
.ws7_c00337{word-spacing:40.516013px;}
.wsc_c00337{word-spacing:50.520336px;}
.ws2_c00337{word-spacing:60.494736px;}
.ws8_c00337{word-spacing:73.735752px;}
.ws2d_c00337{word-spacing:75.556080px;}
.ws9_c00337{word-spacing:85.530480px;}
.ws1b_c00337{word-spacing:86.647613px;}
.ws12_c00337{word-spacing:96.622013px;}
.ws5_c00337{word-spacing:110.316331px;}
.ws25_c00337{word-spacing:110.316864px;}
.ws16_c00337{word-spacing:126.939975px;}
.ws1f_c00337{word-spacing:126.940508px;}
.wsf_c00337{word-spacing:126.956777px;}
.ws19_c00337{word-spacing:126.957310px;}
.ws1c_c00337{word-spacing:128.769504px;}
.wsa_c00337{word-spacing:153.176861px;}
.wse_c00337{word-spacing:173.449829px;}
.ws4_c00337{word-spacing:173.474765px;}
.ws1a_c00337{word-spacing:177.863599px;}
.ws6_c00337{word-spacing:177.863832px;}
.ws10_c00337{word-spacing:177.864132px;}
.ws21_c00337{word-spacing:177.864366px;}
.ws27_c00337{word-spacing:196.794912px;}
.wsb_c00337{word-spacing:210.110736px;}
.ws22_c00337{word-spacing:273.333470px;}
.ws1d_c00337{word-spacing:274.759810px;}
.ws1e_c00337{word-spacing:286.679218px;}
.ws13_c00337{word-spacing:291.332275px;}
.ws2b_c00337{word-spacing:307.051930px;}
.ws23_c00337{word-spacing:308.996938px;}
.ws2c_c00337{word-spacing:313.689893px;}
.ws24_c00337{word-spacing:326.920934px;}
.ws3_c00337{word-spacing:333.583834px;}
.wsd_c00337{word-spacing:341.254147px;}
.ws28_c00337{word-spacing:344.929714px;}
.ws20_c00337{word-spacing:346.894670px;}
.ws26_c00337{word-spacing:346.899658px;}
.ws18_c00337{word-spacing:359.247965px;}
.ws29_c00337{word-spacing:376.882704px;}
.ws2a_c00337{word-spacing:380.189218px;}
.ws17_c00337{word-spacing:399.639298px;}
.ws15_c00337{word-spacing:399.923568px;}
.ws14_c00337{word-spacing:825.152189px;}
.ws11_c00337{word-spacing:838.468013px;}
._d_c00337{margin-left:-6.033843px;}
._b_c00337{margin-left:-4.069540px;}
._4_c00337{margin-left:-3.007282px;}
._0_c00337{margin-left:-1.152000px;}
._1_c00337{width:1.022400px;}
._2_c00337{width:2.849287px;}
._8_c00337{width:4.293888px;}
._c_c00337{width:5.640782px;}
._3_c00337{width:86.341719px;}
._a_c00337{width:150.038286px;}
._5_c00337{width:153.813394px;}
._6_c00337{width:163.578565px;}
._9_c00337{width:183.745085px;}
._7_c00337{width:345.019397px;}
.fc1_c00337{color:transparent;}
.fc0_c00337{color:rgb(0,0,0);}
.fs4_c00337{font-size:36.572400px;}
.fs6_c00337{font-size:43.222200px;}
.fs3_c00337{font-size:49.872000px;}
.fs2_c00337{font-size:53.196600px;}
.fs0_c00337{font-size:54.000000px;}
.fs5_c00337{font-size:63.171000px;}
.fs1_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y4e_c00337{bottom:3.324750px;}
.y53_c00337{bottom:4.154850px;}
.y18_c00337{bottom:4.155000px;}
.y12_c00337{bottom:4.155300px;}
.y1a_c00337{bottom:4.155450px;}
.y14_c00337{bottom:4.155750px;}
.y16_c00337{bottom:4.156200px;}
.y2d_c00337{bottom:4.156350px;}
.y1e_c00337{bottom:4.156500px;}
.y20_c00337{bottom:4.156950px;}
.y22_c00337{bottom:4.157250px;}
.y50_c00337{bottom:4.986450px;}
.y10_c00337{bottom:6.663680px;}
.y56_c00337{bottom:13.299600px;}
.y4b_c00337{bottom:14.131200px;}
.y47_c00337{bottom:14.131350px;}
.y3e_c00337{bottom:15.806930px;}
.y38_c00337{bottom:22.443150px;}
.yb_c00337{bottom:24.105431px;}
.yf_c00337{bottom:24.125296px;}
.y39_c00337{bottom:24.936750px;}
.y37_c00337{bottom:24.956502px;}
.y33_c00337{bottom:24.956596px;}
.y4a_c00337{bottom:30.755100px;}
.y46_c00337{bottom:30.755250px;}
.y49_c00337{bottom:33.255153px;}
.y45_c00337{bottom:33.268452px;}
.y3d_c00337{bottom:33.268546px;}
.ya_c00337{bottom:41.567215px;}
.ye_c00337{bottom:41.573780px;}
.y2f_c00337{bottom:42.398365px;}
.y32_c00337{bottom:42.405080px;}
.y36_c00337{bottom:44.067380px;}
.y3f_c00337{bottom:49.872600px;}
.y41_c00337{bottom:50.703750px;}
.y3c_c00337{bottom:50.717030px;}
.y48_c00337{bottom:52.366031px;}
.y44_c00337{bottom:52.379330px;}
.y40_c00337{bottom:56.522100px;}
.y57_c00337{bottom:57.330000px;}
.y9_c00337{bottom:59.015700px;}
.yd_c00337{bottom:59.022265px;}
.y2e_c00337{bottom:59.846850px;}
.y31_c00337{bottom:59.853565px;}
.y4c_c00337{bottom:60.678150px;}
.y35_c00337{bottom:61.515865px;}
.y3b_c00337{bottom:68.165515px;}
.y43_c00337{bottom:69.827815px;}
.yc_c00337{bottom:76.470750px;}
.y30_c00337{bottom:77.302050px;}
.y34_c00337{bottom:78.964350px;}
.y3a_c00337{bottom:85.614000px;}
.y42_c00337{bottom:87.276300px;}
.y7_c00337{bottom:138.510000px;}
.y6_c00337{bottom:165.420000px;}
.y54_c00337{bottom:167.091000px;}
.y52_c00337{bottom:183.715500px;}
.y51_c00337{bottom:200.338500px;}
.y4f_c00337{bottom:216.963000px;}
.y2c_c00337{bottom:234.417000px;}
.y2b_c00337{bottom:252.703500px;}
.y2a_c00337{bottom:270.159000px;}
.y29_c00337{bottom:287.613000px;}
.y28_c00337{bottom:305.068500px;}
.y27_c00337{bottom:322.524000px;}
.y26_c00337{bottom:339.978000px;}
.y25_c00337{bottom:357.433500px;}
.y24_c00337{bottom:374.889000px;}
.y23_c00337{bottom:392.344500px;}
.y21_c00337{bottom:409.798500px;}
.y1f_c00337{bottom:427.254000px;}
.y1d_c00337{bottom:444.709500px;}
.y1c_c00337{bottom:462.165000px;}
.y1b_c00337{bottom:479.620500px;}
.y19_c00337{bottom:497.076000px;}
.y17_c00337{bottom:514.531500px;}
.y15_c00337{bottom:531.985500px;}
.y13_c00337{bottom:549.441000px;}
.y11_c00337{bottom:566.896500px;}
.y8_c00337{bottom:585.181500px;}
.y55_c00337{bottom:679.107000px;}
.y4d_c00337{bottom:696.562500px;}
.y5_c00337{bottom:719.640000px;}
.y4_c00337{bottom:761.220000px;}
.y3_c00337{bottom:781.105500px;}
.y2_c00337{bottom:796.590000px;}
.y1_c00337{bottom:827.640000px;}
.h12_c00337{height:15.792000px;}
.h9_c00337{height:16.624500px;}
.h7_c00337{height:17.455500px;}
.hf_c00337{height:18.286500px;}
.hc_c00337{height:30.161515px;}
.h14_c00337{height:35.742000px;}
.hb_c00337{height:36.416813px;}
.h8_c00337{height:41.129789px;}
.h13_c00337{height:42.420226px;}
.h11_c00337{height:43.559873px;}
.h6_c00337{height:43.871610px;}
.hd_c00337{height:43.871685px;}
.h10_c00337{height:52.097568px;}
.h2_c00337{height:52.998047px;}
.h3_c00337{height:70.664062px;}
.h4_c00337{height:72.562500px;}
.h5_c00337{height:93.094500px;}
.ha_c00337{height:110.548500px;}
.he_c00337{height:129.667500px;}
.h0_c00337{height:893.070000px;}
.h1_c00337{height:893.250000px;}
.wb_c00337{width:46.744500px;}
.w9_c00337{width:71.983500px;}
.w8_c00337{width:72.919500px;}
.w2_c00337{width:73.852500px;}
.wa_c00337{width:74.787000px;}
.w4_c00337{width:79.462500px;}
.w5_c00337{width:86.941500px;}
.w7_c00337{width:88.810500px;}
.w6_c00337{width:93.484500px;}
.wc_c00337{width:126.205500px;}
.wf_c00337{width:148.641000px;}
.wd_c00337{width:722.640000px;}
.we_c00337{width:999.355500px;}
.w3_c00337{width:1047.967500px;}
.w0_c00337{width:1262.880000px;}
.w1_c00337{width:1263.000000px;}
.x0_c00337{left:0.000000px;}
.x14_c00337{left:1.876919px;}
.x11_c00337{left:3.740700px;}
.x16_c00337{left:5.608800px;}
.xb_c00337{left:7.478756px;}
.x7_c00337{left:10.291244px;}
.xe_c00337{left:13.088250px;}
.xd_c00337{left:16.827600px;}
.xf_c00337{left:19.632150px;}
.x8_c00337{left:21.509407px;}
.xa_c00337{left:24.306000px;}
.xc_c00337{left:27.103062px;}
.x6_c00337{left:29.915550px;}
.x1e_c00337{left:33.654750px;}
.x12_c00337{left:35.525494px;}
.x18_c00337{left:37.393650px;}
.x1b_c00337{left:40.212408px;}
.x17_c00337{left:42.075307px;}
.x21_c00337{left:56.090250px;}
.x19_c00337{left:86.940600px;}
.x2_c00337{left:106.380000px;}
.x3_c00337{left:121.500000px;}
.x24_c00337{left:128.075700px;}
.x23_c00337{left:154.992000px;}
.x10_c00337{left:282.130500px;}
.x13_c00337{left:362.529000px;}
.x15_c00337{left:450.405000px;}
.x1a_c00337{left:544.825500px;}
.x1_c00337{left:631.440000px;}
.x1c_c00337{left:634.570500px;}
.x1d_c00337{left:708.423000px;}
.x1f_c00337{left:782.277000px;}
.x20_c00337{left:855.195000px;}
.x22_c00337{left:930.918000px;}
.x5_c00337{left:1005.705000px;}
.x9_c00337{left:1080.493500px;}
.x4_c00337{left:1156.230000px;}
@media print{
.v2_c00337{vertical-align:-74.240000pt;}
.v1_c00337{vertical-align:-55.056000pt;}
.v3_c00337{vertical-align:-2.970155pt;}
.v0_c00337{vertical-align:0.000000pt;}
.v4_c00337{vertical-align:2.970155pt;}
.ls11_c00337{letter-spacing:-1.773227pt;}
.ls22_c00337{letter-spacing:-1.459950pt;}
.ls12_c00337{letter-spacing:-1.196928pt;}
.ls10_c00337{letter-spacing:-1.134861pt;}
.ls15_c00337{letter-spacing:-1.019605pt;}
.ls18_c00337{letter-spacing:-0.975275pt;}
.ls21_c00337{letter-spacing:-0.561520pt;}
.ls14_c00337{letter-spacing:-0.531968pt;}
.ls13_c00337{letter-spacing:-0.331001pt;}
.lsd_c00337{letter-spacing:-0.256000pt;}
.ls1b_c00337{letter-spacing:-0.177323pt;}
.lsf_c00337{letter-spacing:-0.141858pt;}
.ls17_c00337{letter-spacing:-0.132992pt;}
.lsc_c00337{letter-spacing:-0.064000pt;}
.lsa_c00337{letter-spacing:0.000000pt;}
.lse_c00337{letter-spacing:0.064000pt;}
.lsb_c00337{letter-spacing:0.128000pt;}
.ls19_c00337{letter-spacing:0.132992pt;}
.ls2_c00337{letter-spacing:0.189143pt;}
.ls3_c00337{letter-spacing:0.283715pt;}
.ls1e_c00337{letter-spacing:0.552650pt;}
.ls24_c00337{letter-spacing:0.691555pt;}
.ls1d_c00337{letter-spacing:0.803860pt;}
.ls1f_c00337{letter-spacing:0.898431pt;}
.ls16_c00337{letter-spacing:0.930944pt;}
.ls25_c00337{letter-spacing:1.182147pt;}
.ls1c_c00337{letter-spacing:1.229433pt;}
.ls6_c00337{letter-spacing:1.229551pt;}
.ls7_c00337{letter-spacing:1.267843pt;}
.ls8_c00337{letter-spacing:1.323174pt;}
.ls9_c00337{letter-spacing:1.323649pt;}
.ls1a_c00337{letter-spacing:1.329920pt;}
.ls20_c00337{letter-spacing:1.371290pt;}
.ls23_c00337{letter-spacing:1.498370pt;}
.ls5_c00337{letter-spacing:2.269722pt;}
.ls4_c00337{letter-spacing:72.081664pt;}
.ls0_c00337{letter-spacing:1017.120000pt;}
.ls1_c00337{letter-spacing:1850.880000pt;}
.ws30_c00337{word-spacing:-12.057896pt;}
.ws2f_c00337{word-spacing:-11.916038pt;}
.ws2e_c00337{word-spacing:-10.970321pt;}
.ws31_c00337{word-spacing:-10.875749pt;}
.ws1_c00337{word-spacing:-10.544748pt;}
.ws0_c00337{word-spacing:-9.551745pt;}
.ws42_c00337{word-spacing:-2.698230pt;}
.ws3c_c00337{word-spacing:-2.482517pt;}
.ws49_c00337{word-spacing:-2.228345pt;}
.ws41_c00337{word-spacing:-1.983037pt;}
.ws4a_c00337{word-spacing:-1.421530pt;}
.ws46_c00337{word-spacing:-1.267843pt;}
.ws3f_c00337{word-spacing:-1.229433pt;}
.ws3d_c00337{word-spacing:-1.134861pt;}
.ws43_c00337{word-spacing:-0.898431pt;}
.ws40_c00337{word-spacing:-0.803860pt;}
.ws44_c00337{word-spacing:-0.283715pt;}
.ws47_c00337{word-spacing:-0.280760pt;}
.ws3b_c00337{word-spacing:-0.189143pt;}
.ws33_c00337{word-spacing:-0.144000pt;}
.ws34_c00337{word-spacing:-0.128000pt;}
.ws3e_c00337{word-spacing:-0.094572pt;}
.ws37_c00337{word-spacing:-0.064000pt;}
.ws4b_c00337{word-spacing:-0.047286pt;}
.ws32_c00337{word-spacing:0.000000pt;}
.ws35_c00337{word-spacing:0.064000pt;}
.ws39_c00337{word-spacing:0.141858pt;}
.ws36_c00337{word-spacing:0.256000pt;}
.ws48_c00337{word-spacing:0.729975pt;}
.ws3a_c00337{word-spacing:0.851146pt;}
.ws38_c00337{word-spacing:0.945717pt;}
.ws45_c00337{word-spacing:1.134861pt;}
.ws7_c00337{word-spacing:36.014234pt;}
.wsc_c00337{word-spacing:44.906965pt;}
.ws2_c00337{word-spacing:53.773099pt;}
.ws8_c00337{word-spacing:65.542891pt;}
.ws2d_c00337{word-spacing:67.160960pt;}
.ws9_c00337{word-spacing:76.027093pt;}
.ws1b_c00337{word-spacing:77.020100pt;}
.ws12_c00337{word-spacing:85.886234pt;}
.ws5_c00337{word-spacing:98.058960pt;}
.ws25_c00337{word-spacing:98.059435pt;}
.ws16_c00337{word-spacing:112.835533pt;}
.ws1f_c00337{word-spacing:112.836007pt;}
.wsf_c00337{word-spacing:112.850468pt;}
.ws19_c00337{word-spacing:112.850942pt;}
.ws1c_c00337{word-spacing:114.461781pt;}
.wsa_c00337{word-spacing:136.157210pt;}
.wse_c00337{word-spacing:154.177626pt;}
.ws4_c00337{word-spacing:154.199791pt;}
.ws1a_c00337{word-spacing:158.100977pt;}
.ws6_c00337{word-spacing:158.101184pt;}
.ws10_c00337{word-spacing:158.101451pt;}
.ws21_c00337{word-spacing:158.101659pt;}
.ws27_c00337{word-spacing:174.928811pt;}
.wsb_c00337{word-spacing:186.765099pt;}
.ws22_c00337{word-spacing:242.963085pt;}
.ws1d_c00337{word-spacing:244.230942pt;}
.ws1e_c00337{word-spacing:254.825971pt;}
.ws13_c00337{word-spacing:258.962022pt;}
.ws2b_c00337{word-spacing:272.935049pt;}
.ws23_c00337{word-spacing:274.663945pt;}
.ws2c_c00337{word-spacing:278.835460pt;}
.ws24_c00337{word-spacing:290.596386pt;}
.ws3_c00337{word-spacing:296.518963pt;}
.wsd_c00337{word-spacing:303.337020pt;}
.ws28_c00337{word-spacing:306.604190pt;}
.ws20_c00337{word-spacing:308.350818pt;}
.ws26_c00337{word-spacing:308.355251pt;}
.ws18_c00337{word-spacing:319.331524pt;}
.ws29_c00337{word-spacing:335.006848pt;}
.ws2a_c00337{word-spacing:337.945971pt;}
.ws17_c00337{word-spacing:355.234931pt;}
.ws15_c00337{word-spacing:355.487616pt;}
.ws14_c00337{word-spacing:733.468612pt;}
.ws11_c00337{word-spacing:745.304900pt;}
._d_c00337{margin-left:-5.363416pt;}
._b_c00337{margin-left:-3.617369pt;}
._4_c00337{margin-left:-2.673139pt;}
._0_c00337{margin-left:-1.024000pt;}
._1_c00337{width:0.908800pt;}
._2_c00337{width:2.532700pt;}
._8_c00337{width:3.816789pt;}
._c_c00337{width:5.014028pt;}
._3_c00337{width:76.748195pt;}
._a_c00337{width:133.367365pt;}
._5_c00337{width:136.723016pt;}
._6_c00337{width:145.403169pt;}
._9_c00337{width:163.328964pt;}
._7_c00337{width:306.683908pt;}
.fs4_c00337{font-size:32.508800pt;}
.fs6_c00337{font-size:38.419733pt;}
.fs3_c00337{font-size:44.330667pt;}
.fs2_c00337{font-size:47.285867pt;}
.fs0_c00337{font-size:48.000000pt;}
.fs5_c00337{font-size:56.152000pt;}
.fs1_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y4e_c00337{bottom:2.955333pt;}
.y53_c00337{bottom:3.693200pt;}
.y18_c00337{bottom:3.693333pt;}
.y12_c00337{bottom:3.693600pt;}
.y1a_c00337{bottom:3.693733pt;}
.y14_c00337{bottom:3.694000pt;}
.y16_c00337{bottom:3.694400pt;}
.y2d_c00337{bottom:3.694533pt;}
.y1e_c00337{bottom:3.694667pt;}
.y20_c00337{bottom:3.695067pt;}
.y22_c00337{bottom:3.695333pt;}
.y50_c00337{bottom:4.432400pt;}
.y10_c00337{bottom:5.923271pt;}
.y56_c00337{bottom:11.821867pt;}
.y4b_c00337{bottom:12.561067pt;}
.y47_c00337{bottom:12.561200pt;}
.y3e_c00337{bottom:14.050605pt;}
.y38_c00337{bottom:19.949467pt;}
.yb_c00337{bottom:21.427050pt;}
.yf_c00337{bottom:21.444707pt;}
.y39_c00337{bottom:22.166000pt;}
.y37_c00337{bottom:22.183557pt;}
.y33_c00337{bottom:22.183641pt;}
.y4a_c00337{bottom:27.337867pt;}
.y46_c00337{bottom:27.338000pt;}
.y49_c00337{bottom:29.560136pt;}
.y45_c00337{bottom:29.571957pt;}
.y3d_c00337{bottom:29.572041pt;}
.ya_c00337{bottom:36.948636pt;}
.ye_c00337{bottom:36.954471pt;}
.y2f_c00337{bottom:37.687436pt;}
.y32_c00337{bottom:37.693405pt;}
.y36_c00337{bottom:39.171005pt;}
.y3f_c00337{bottom:44.331200pt;}
.y41_c00337{bottom:45.070000pt;}
.y3c_c00337{bottom:45.081805pt;}
.y48_c00337{bottom:46.547583pt;}
.y44_c00337{bottom:46.559405pt;}
.y40_c00337{bottom:50.241867pt;}
.y57_c00337{bottom:50.960000pt;}
.y9_c00337{bottom:52.458400pt;}
.yd_c00337{bottom:52.464236pt;}
.y2e_c00337{bottom:53.197200pt;}
.y31_c00337{bottom:53.203169pt;}
.y4c_c00337{bottom:53.936133pt;}
.y35_c00337{bottom:54.680769pt;}
.y3b_c00337{bottom:60.591569pt;}
.y43_c00337{bottom:62.069169pt;}
.yc_c00337{bottom:67.974000pt;}
.y30_c00337{bottom:68.712933pt;}
.y34_c00337{bottom:70.190533pt;}
.y3a_c00337{bottom:76.101333pt;}
.y42_c00337{bottom:77.578933pt;}
.y7_c00337{bottom:123.120000pt;}
.y6_c00337{bottom:147.040000pt;}
.y54_c00337{bottom:148.525333pt;}
.y52_c00337{bottom:163.302667pt;}
.y51_c00337{bottom:178.078667pt;}
.y4f_c00337{bottom:192.856000pt;}
.y2c_c00337{bottom:208.370667pt;}
.y2b_c00337{bottom:224.625333pt;}
.y2a_c00337{bottom:240.141333pt;}
.y29_c00337{bottom:255.656000pt;}
.y28_c00337{bottom:271.172000pt;}
.y27_c00337{bottom:286.688000pt;}
.y26_c00337{bottom:302.202667pt;}
.y25_c00337{bottom:317.718667pt;}
.y24_c00337{bottom:333.234667pt;}
.y23_c00337{bottom:348.750667pt;}
.y21_c00337{bottom:364.265333pt;}
.y1f_c00337{bottom:379.781333pt;}
.y1d_c00337{bottom:395.297333pt;}
.y1c_c00337{bottom:410.813333pt;}
.y1b_c00337{bottom:426.329333pt;}
.y19_c00337{bottom:441.845333pt;}
.y17_c00337{bottom:457.361333pt;}
.y15_c00337{bottom:472.876000pt;}
.y13_c00337{bottom:488.392000pt;}
.y11_c00337{bottom:503.908000pt;}
.y8_c00337{bottom:520.161333pt;}
.y55_c00337{bottom:603.650667pt;}
.y4d_c00337{bottom:619.166667pt;}
.y5_c00337{bottom:639.680000pt;}
.y4_c00337{bottom:676.640000pt;}
.y3_c00337{bottom:694.316000pt;}
.y2_c00337{bottom:708.080000pt;}
.y1_c00337{bottom:735.680000pt;}
.h12_c00337{height:14.037333pt;}
.h9_c00337{height:14.777333pt;}
.h7_c00337{height:15.516000pt;}
.hf_c00337{height:16.254667pt;}
.hc_c00337{height:26.810236pt;}
.h14_c00337{height:31.770667pt;}
.hb_c00337{height:32.370501pt;}
.h8_c00337{height:36.559812pt;}
.h13_c00337{height:37.706867pt;}
.h11_c00337{height:38.719887pt;}
.h6_c00337{height:38.996987pt;}
.hd_c00337{height:38.997053pt;}
.h10_c00337{height:46.308949pt;}
.h2_c00337{height:47.109375pt;}
.h3_c00337{height:62.812500pt;}
.h4_c00337{height:64.500000pt;}
.h5_c00337{height:82.750667pt;}
.ha_c00337{height:98.265333pt;}
.he_c00337{height:115.260000pt;}
.h0_c00337{height:793.840000pt;}
.h1_c00337{height:794.000000pt;}
.wb_c00337{width:41.550667pt;}
.w9_c00337{width:63.985333pt;}
.w8_c00337{width:64.817333pt;}
.w2_c00337{width:65.646667pt;}
.wa_c00337{width:66.477333pt;}
.w4_c00337{width:70.633333pt;}
.w5_c00337{width:77.281333pt;}
.w7_c00337{width:78.942667pt;}
.w6_c00337{width:83.097333pt;}
.wc_c00337{width:112.182667pt;}
.wf_c00337{width:132.125333pt;}
.wd_c00337{width:642.346667pt;}
.we_c00337{width:888.316000pt;}
.w3_c00337{width:931.526667pt;}
.w0_c00337{width:1122.560000pt;}
.w1_c00337{width:1122.666667pt;}
.x0_c00337{left:0.000000pt;}
.x14_c00337{left:1.668373pt;}
.x11_c00337{left:3.325067pt;}
.x16_c00337{left:4.985600pt;}
.xb_c00337{left:6.647783pt;}
.x7_c00337{left:9.147773pt;}
.xe_c00337{left:11.634000pt;}
.xd_c00337{left:14.957867pt;}
.xf_c00337{left:17.450800pt;}
.x8_c00337{left:19.119473pt;}
.xa_c00337{left:21.605333pt;}
.xc_c00337{left:24.091611pt;}
.x6_c00337{left:26.591600pt;}
.x1e_c00337{left:29.915333pt;}
.x12_c00337{left:31.578217pt;}
.x18_c00337{left:33.238800pt;}
.x1b_c00337{left:35.744362pt;}
.x17_c00337{left:37.400273pt;}
.x21_c00337{left:49.858000pt;}
.x19_c00337{left:77.280533pt;}
.x2_c00337{left:94.560000pt;}
.x3_c00337{left:108.000000pt;}
.x24_c00337{left:113.845067pt;}
.x23_c00337{left:137.770667pt;}
.x10_c00337{left:250.782667pt;}
.x13_c00337{left:322.248000pt;}
.x15_c00337{left:400.360000pt;}
.x1a_c00337{left:484.289333pt;}
.x1_c00337{left:561.280000pt;}
.x1c_c00337{left:564.062667pt;}
.x1d_c00337{left:629.709333pt;}
.x1f_c00337{left:695.357333pt;}
.x20_c00337{left:760.173333pt;}
.x22_c00337{left:827.482667pt;}
.x5_c00337{left:893.960000pt;}
.x9_c00337{left:960.438667pt;}
.x4_c00337{left:1027.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_c00338 {
    display:none;
  }
  .loading-indicator_c00338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00338 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00338 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00338" -> "#page-container .classname_c00338")
 */
.pf_c00338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00338 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00338 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00338 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00338 {overflow:visible;}
  }
}
.c_c00338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00338 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00338:after { /* webkit #35443 */
  content: '';
}
.t_c00338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00338 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00338 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00338 { /* info for Javascript */
  display:none;
}
.l_c00338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00338:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00338;src:url('chunks/assets/font_fe8880f65f556131bec18c79.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_22e0077c400cc7c978aae05f.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;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_c00338;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00338{vertical-align:-20.880000px;}
.v1_c00338{vertical-align:-14.760000px;}
.v0_c00338{vertical-align:0.000000px;}
.v2_c00338{vertical-align:14.760000px;}
.v3_c00338{vertical-align:27.000000px;}
.ls14_c00338{letter-spacing:-0.576000px;}
.ls13_c00338{letter-spacing:-0.432000px;}
.ls15_c00338{letter-spacing:-0.288000px;}
.ls12_c00338{letter-spacing:-0.216000px;}
.ls18_c00338{letter-spacing:-0.180360px;}
.ls17_c00338{letter-spacing:-0.120240px;}
.ls10_c00338{letter-spacing:-0.108000px;}
.ls11_c00338{letter-spacing:-0.072000px;}
.ls16_c00338{letter-spacing:-0.060120px;}
.lsf_c00338{letter-spacing:0.000000px;}
.ls4_c00338{letter-spacing:0.072000px;}
.lsc_c00338{letter-spacing:0.120240px;}
.ls5_c00338{letter-spacing:0.144000px;}
.ls19_c00338{letter-spacing:0.180360px;}
.ls2_c00338{letter-spacing:0.191520px;}
.ls0_c00338{letter-spacing:0.720000px;}
.ls8_c00338{letter-spacing:2.160000px;}
.ls3_c00338{letter-spacing:5.760000px;}
.ls6_c00338{letter-spacing:11.880000px;}
.lsd_c00338{letter-spacing:12.324600px;}
.lse_c00338{letter-spacing:12.390732px;}
.ls7_c00338{letter-spacing:12.960000px;}
.lsa_c00338{letter-spacing:13.320000px;}
.lsb_c00338{letter-spacing:13.680000px;}
.ls9_c00338{letter-spacing:20.016000px;}
.ls1_c00338{letter-spacing:22.961520px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00338{word-spacing:-72.000000px;}
.ws0_c00338{word-spacing:-18.000000px;}
.ws3_c00338{word-spacing:-17.928000px;}
.ws5_c00338{word-spacing:-17.784000px;}
.ws8_c00338{word-spacing:-17.712000px;}
.ws6_c00338{word-spacing:-17.568000px;}
.ws7_c00338{word-spacing:-17.424000px;}
.wsa_c00338{word-spacing:-15.030000px;}
.ws4_c00338{word-spacing:-12.161520px;}
.ws9_c00338{word-spacing:-9.720000px;}
.ws36_c00338{word-spacing:-0.420840px;}
.ws35_c00338{word-spacing:-0.180360px;}
.ws1f_c00338{word-spacing:-0.144000px;}
.ws12_c00338{word-spacing:-0.072000px;}
.ws34_c00338{word-spacing:-0.060120px;}
.wsb_c00338{word-spacing:0.000000px;}
.ws2f_c00338{word-spacing:0.060120px;}
.wsd_c00338{word-spacing:0.162000px;}
.ws32_c00338{word-spacing:0.180360px;}
.wsc_c00338{word-spacing:0.270000px;}
.ws14_c00338{word-spacing:0.288000px;}
.ws10_c00338{word-spacing:0.648000px;}
.wsf_c00338{word-spacing:0.720000px;}
.ws2a_c00338{word-spacing:0.792000px;}
.ws23_c00338{word-spacing:2.088000px;}
.ws1c_c00338{word-spacing:3.456000px;}
.ws1b_c00338{word-spacing:3.528000px;}
.ws2_c00338{word-spacing:4.176000px;}
.ws1e_c00338{word-spacing:4.968000px;}
.ws20_c00338{word-spacing:5.040000px;}
.ws22_c00338{word-spacing:5.400000px;}
.ws1a_c00338{word-spacing:5.688000px;}
.ws19_c00338{word-spacing:5.760000px;}
.ws18_c00338{word-spacing:6.840000px;}
.wse_c00338{word-spacing:7.560000px;}
.ws2b_c00338{word-spacing:11.088000px;}
.ws2c_c00338{word-spacing:11.160000px;}
.ws27_c00338{word-spacing:11.376000px;}
.ws1d_c00338{word-spacing:11.808000px;}
.ws30_c00338{word-spacing:12.024000px;}
.ws33_c00338{word-spacing:12.144240px;}
.ws31_c00338{word-spacing:12.444840px;}
.ws15_c00338{word-spacing:12.528000px;}
.ws21_c00338{word-spacing:12.600000px;}
.ws2e_c00338{word-spacing:12.960000px;}
.ws13_c00338{word-spacing:13.248000px;}
.ws2d_c00338{word-spacing:13.320000px;}
.ws16_c00338{word-spacing:14.688000px;}
.ws17_c00338{word-spacing:14.760000px;}
.ws28_c00338{word-spacing:14.976000px;}
.ws29_c00338{word-spacing:15.120000px;}
.ws26_c00338{word-spacing:15.768000px;}
.ws25_c00338{word-spacing:15.840000px;}
.ws24_c00338{word-spacing:18.000000px;}
.ws11_c00338{word-spacing:19.080000px;}
._9_c00338{margin-left:-6.710400px;}
._3_c00338{margin-left:-3.528000px;}
._1_c00338{margin-left:-1.058400px;}
._0_c00338{width:1.220400px;}
._6_c00338{width:3.168000px;}
._8_c00338{width:5.068800px;}
._2_c00338{width:7.344000px;}
._b_c00338{width:9.806400px;}
._7_c00338{width:11.131200px;}
._5_c00338{width:12.160800px;}
._c_c00338{width:13.464000px;}
._a_c00338{width:14.695200px;}
._4_c00338{width:19.944000px;}
.fc0_c00338{color:rgb(0,0,0);}
.fs4_c00338{font-size:38.880000px;}
.fs3_c00338{font-size:47.880000px;}
.fs2_c00338{font-size:51.120000px;}
.fs0_c00338{font-size:54.000000px;}
.fs5_c00338{font-size:60.120000px;}
.fs1_c00338{font-size:72.000000px;}
.y0_c00338{bottom:0.000000px;}
.y27_c00338{bottom:57.240000px;}
.y26_c00338{bottom:109.795680px;}
.y25_c00338{bottom:132.210000px;}
.y24_c00338{bottom:149.490000px;}
.y28_c00338{bottom:162.180000px;}
.y23_c00338{bottom:208.800000px;}
.y22_c00338{bottom:239.850000px;}
.y21_c00338{bottom:270.900000px;}
.y20_c00338{bottom:301.950000px;}
.y1f_c00338{bottom:333.000000px;}
.y1e_c00338{bottom:363.960000px;}
.y1d_c00338{bottom:395.010000px;}
.y1c_c00338{bottom:426.060000px;}
.y1b_c00338{bottom:457.290000px;}
.y1a_c00338{bottom:488.790000px;}
.y19_c00338{bottom:519.840000px;}
.y18_c00338{bottom:550.890000px;}
.y17_c00338{bottom:581.940000px;}
.y16_c00338{bottom:612.990000px;}
.y15_c00338{bottom:644.040000px;}
.y14_c00338{bottom:675.090000px;}
.y13_c00338{bottom:706.140000px;}
.y12_c00338{bottom:737.190000px;}
.y11_c00338{bottom:768.240000px;}
.y10_c00338{bottom:799.290000px;}
.yf_c00338{bottom:830.340000px;}
.ye_c00338{bottom:861.390000px;}
.yd_c00338{bottom:892.440000px;}
.yc_c00338{bottom:923.490000px;}
.yb_c00338{bottom:954.540000px;}
.ya_c00338{bottom:985.590000px;}
.y9_c00338{bottom:1016.640000px;}
.y8_c00338{bottom:1047.780000px;}
.y7_c00338{bottom:1079.280000px;}
.y6_c00338{bottom:1110.330000px;}
.y5_c00338{bottom:1131.030000px;}
.y4_c00338{bottom:1150.920000px;}
.y3_c00338{bottom:1166.404500px;}
.y2_c00338{bottom:1181.970000px;}
.y1_c00338{bottom:1197.450000px;}
.h8_c00338{height:38.158594px;}
.h7_c00338{height:50.027344px;}
.h3_c00338{height:52.971680px;}
.h2_c00338{height:52.998047px;}
.h9_c00338{height:59.004492px;}
.h4_c00338{height:70.664062px;}
.h6_c00338{height:73.991602px;}
.h5_c00338{height:143.542969px;}
.h0_c00338{height:1262.880000px;}
.h1_c00338{height:1263.000000px;}
.w0_c00338{width:893.070000px;}
.w1_c00338{width:893.250000px;}
.x0_c00338{left:0.000000px;}
.x3_c00338{left:127.620000px;}
.x2_c00338{left:425.160000px;}
.x1_c00338{left:446.580000px;}
.x4_c00338{left:738.540000px;}
@media print{
.v4_c00338{vertical-align:-18.560000pt;}
.v1_c00338{vertical-align:-13.120000pt;}
.v0_c00338{vertical-align:0.000000pt;}
.v2_c00338{vertical-align:13.120000pt;}
.v3_c00338{vertical-align:24.000000pt;}
.ls14_c00338{letter-spacing:-0.512000pt;}
.ls13_c00338{letter-spacing:-0.384000pt;}
.ls15_c00338{letter-spacing:-0.256000pt;}
.ls12_c00338{letter-spacing:-0.192000pt;}
.ls18_c00338{letter-spacing:-0.160320pt;}
.ls17_c00338{letter-spacing:-0.106880pt;}
.ls10_c00338{letter-spacing:-0.096000pt;}
.ls11_c00338{letter-spacing:-0.064000pt;}
.ls16_c00338{letter-spacing:-0.053440pt;}
.lsf_c00338{letter-spacing:0.000000pt;}
.ls4_c00338{letter-spacing:0.064000pt;}
.lsc_c00338{letter-spacing:0.106880pt;}
.ls5_c00338{letter-spacing:0.128000pt;}
.ls19_c00338{letter-spacing:0.160320pt;}
.ls2_c00338{letter-spacing:0.170240pt;}
.ls0_c00338{letter-spacing:0.640000pt;}
.ls8_c00338{letter-spacing:1.920000pt;}
.ls3_c00338{letter-spacing:5.120000pt;}
.ls6_c00338{letter-spacing:10.560000pt;}
.lsd_c00338{letter-spacing:10.955200pt;}
.lse_c00338{letter-spacing:11.013984pt;}
.ls7_c00338{letter-spacing:11.520000pt;}
.lsa_c00338{letter-spacing:11.840000pt;}
.lsb_c00338{letter-spacing:12.160000pt;}
.ls9_c00338{letter-spacing:17.792000pt;}
.ls1_c00338{letter-spacing:20.410240pt;}
.ws1_c00338{word-spacing:-64.000000pt;}
.ws0_c00338{word-spacing:-16.000000pt;}
.ws3_c00338{word-spacing:-15.936000pt;}
.ws5_c00338{word-spacing:-15.808000pt;}
.ws8_c00338{word-spacing:-15.744000pt;}
.ws6_c00338{word-spacing:-15.616000pt;}
.ws7_c00338{word-spacing:-15.488000pt;}
.wsa_c00338{word-spacing:-13.360000pt;}
.ws4_c00338{word-spacing:-10.810240pt;}
.ws9_c00338{word-spacing:-8.640000pt;}
.ws36_c00338{word-spacing:-0.374080pt;}
.ws35_c00338{word-spacing:-0.160320pt;}
.ws1f_c00338{word-spacing:-0.128000pt;}
.ws12_c00338{word-spacing:-0.064000pt;}
.ws34_c00338{word-spacing:-0.053440pt;}
.wsb_c00338{word-spacing:0.000000pt;}
.ws2f_c00338{word-spacing:0.053440pt;}
.wsd_c00338{word-spacing:0.144000pt;}
.ws32_c00338{word-spacing:0.160320pt;}
.wsc_c00338{word-spacing:0.240000pt;}
.ws14_c00338{word-spacing:0.256000pt;}
.ws10_c00338{word-spacing:0.576000pt;}
.wsf_c00338{word-spacing:0.640000pt;}
.ws2a_c00338{word-spacing:0.704000pt;}
.ws23_c00338{word-spacing:1.856000pt;}
.ws1c_c00338{word-spacing:3.072000pt;}
.ws1b_c00338{word-spacing:3.136000pt;}
.ws2_c00338{word-spacing:3.712000pt;}
.ws1e_c00338{word-spacing:4.416000pt;}
.ws20_c00338{word-spacing:4.480000pt;}
.ws22_c00338{word-spacing:4.800000pt;}
.ws1a_c00338{word-spacing:5.056000pt;}
.ws19_c00338{word-spacing:5.120000pt;}
.ws18_c00338{word-spacing:6.080000pt;}
.wse_c00338{word-spacing:6.720000pt;}
.ws2b_c00338{word-spacing:9.856000pt;}
.ws2c_c00338{word-spacing:9.920000pt;}
.ws27_c00338{word-spacing:10.112000pt;}
.ws1d_c00338{word-spacing:10.496000pt;}
.ws30_c00338{word-spacing:10.688000pt;}
.ws33_c00338{word-spacing:10.794880pt;}
.ws31_c00338{word-spacing:11.062080pt;}
.ws15_c00338{word-spacing:11.136000pt;}
.ws21_c00338{word-spacing:11.200000pt;}
.ws2e_c00338{word-spacing:11.520000pt;}
.ws13_c00338{word-spacing:11.776000pt;}
.ws2d_c00338{word-spacing:11.840000pt;}
.ws16_c00338{word-spacing:13.056000pt;}
.ws17_c00338{word-spacing:13.120000pt;}
.ws28_c00338{word-spacing:13.312000pt;}
.ws29_c00338{word-spacing:13.440000pt;}
.ws26_c00338{word-spacing:14.016000pt;}
.ws25_c00338{word-spacing:14.080000pt;}
.ws24_c00338{word-spacing:16.000000pt;}
.ws11_c00338{word-spacing:16.960000pt;}
._9_c00338{margin-left:-5.964800pt;}
._3_c00338{margin-left:-3.136000pt;}
._1_c00338{margin-left:-0.940800pt;}
._0_c00338{width:1.084800pt;}
._6_c00338{width:2.816000pt;}
._8_c00338{width:4.505600pt;}
._2_c00338{width:6.528000pt;}
._b_c00338{width:8.716800pt;}
._7_c00338{width:9.894400pt;}
._5_c00338{width:10.809600pt;}
._c_c00338{width:11.968000pt;}
._a_c00338{width:13.062400pt;}
._4_c00338{width:17.728000pt;}
.fs4_c00338{font-size:34.560000pt;}
.fs3_c00338{font-size:42.560000pt;}
.fs2_c00338{font-size:45.440000pt;}
.fs0_c00338{font-size:48.000000pt;}
.fs5_c00338{font-size:53.440000pt;}
.fs1_c00338{font-size:64.000000pt;}
.y0_c00338{bottom:0.000000pt;}
.y27_c00338{bottom:50.880000pt;}
.y26_c00338{bottom:97.596160pt;}
.y25_c00338{bottom:117.520000pt;}
.y24_c00338{bottom:132.880000pt;}
.y28_c00338{bottom:144.160000pt;}
.y23_c00338{bottom:185.600000pt;}
.y22_c00338{bottom:213.200000pt;}
.y21_c00338{bottom:240.800000pt;}
.y20_c00338{bottom:268.400000pt;}
.y1f_c00338{bottom:296.000000pt;}
.y1e_c00338{bottom:323.520000pt;}
.y1d_c00338{bottom:351.120000pt;}
.y1c_c00338{bottom:378.720000pt;}
.y1b_c00338{bottom:406.480000pt;}
.y1a_c00338{bottom:434.480000pt;}
.y19_c00338{bottom:462.080000pt;}
.y18_c00338{bottom:489.680000pt;}
.y17_c00338{bottom:517.280000pt;}
.y16_c00338{bottom:544.880000pt;}
.y15_c00338{bottom:572.480000pt;}
.y14_c00338{bottom:600.080000pt;}
.y13_c00338{bottom:627.680000pt;}
.y12_c00338{bottom:655.280000pt;}
.y11_c00338{bottom:682.880000pt;}
.y10_c00338{bottom:710.480000pt;}
.yf_c00338{bottom:738.080000pt;}
.ye_c00338{bottom:765.680000pt;}
.yd_c00338{bottom:793.280000pt;}
.yc_c00338{bottom:820.880000pt;}
.yb_c00338{bottom:848.480000pt;}
.ya_c00338{bottom:876.080000pt;}
.y9_c00338{bottom:903.680000pt;}
.y8_c00338{bottom:931.360000pt;}
.y7_c00338{bottom:959.360000pt;}
.y6_c00338{bottom:986.960000pt;}
.y5_c00338{bottom:1005.360000pt;}
.y4_c00338{bottom:1023.040000pt;}
.y3_c00338{bottom:1036.804000pt;}
.y2_c00338{bottom:1050.640000pt;}
.y1_c00338{bottom:1064.400000pt;}
.h8_c00338{height:33.918750pt;}
.h7_c00338{height:44.468750pt;}
.h3_c00338{height:47.085938pt;}
.h2_c00338{height:47.109375pt;}
.h9_c00338{height:52.448437pt;}
.h4_c00338{height:62.812500pt;}
.h6_c00338{height:65.770312pt;}
.h5_c00338{height:127.593750pt;}
.h0_c00338{height:1122.560000pt;}
.h1_c00338{height:1122.666667pt;}
.w0_c00338{width:793.840000pt;}
.w1_c00338{width:794.000000pt;}
.x0_c00338{left:0.000000pt;}
.x3_c00338{left:113.440000pt;}
.x2_c00338{left:377.920000pt;}
.x1_c00338{left:396.960000pt;}
.x4_c00338{left:656.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_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_612f2be689d01eafa82f16a2.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_23c02df3d7e3c45927ddec97.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;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_c00339;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00339{font-family:ff4_c00339;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00339;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00339{font-family:ff5_c00339;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00339;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00339{font-family:ff6_c00339;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00339{vertical-align:-61.938000px;}
.v5_c00339{vertical-align:-20.880000px;}
.v2_c00339{vertical-align:-14.760000px;}
.v0_c00339{vertical-align:0.000000px;}
.v3_c00339{vertical-align:14.760000px;}
.v4_c00339{vertical-align:27.000000px;}
.ls13_c00339{letter-spacing:-0.576000px;}
.ls12_c00339{letter-spacing:-0.360000px;}
.ls14_c00339{letter-spacing:-0.072000px;}
.ls15_c00339{letter-spacing:-0.060120px;}
.ls11_c00339{letter-spacing:0.000000px;}
.ls1_c00339{letter-spacing:0.072000px;}
.ls5_c00339{letter-spacing:0.144000px;}
.ls16_c00339{letter-spacing:0.180360px;}
.lsc_c00339{letter-spacing:0.191520px;}
.ls2_c00339{letter-spacing:0.360000px;}
.ls4_c00339{letter-spacing:2.160000px;}
.ls10_c00339{letter-spacing:3.667320px;}
.lsd_c00339{letter-spacing:3.960000px;}
.ls8_c00339{letter-spacing:10.836000px;}
.ls3_c00339{letter-spacing:11.880000px;}
.lsb_c00339{letter-spacing:13.680000px;}
.lse_c00339{letter-spacing:15.120000px;}
.ls7_c00339{letter-spacing:20.016000px;}
.ls9_c00339{letter-spacing:21.240000px;}
.lsa_c00339{letter-spacing:21.600000px;}
.ls6_c00339{letter-spacing:22.961520px;}
.lsf_c00339{letter-spacing:42.480000px;}
.ls0_c00339{letter-spacing:319.518000px;}
.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:-72.000000px;}
.ws3_c00339{word-spacing:-39.528000px;}
.ws0_c00339{word-spacing:-18.072000px;}
.ws5_c00339{word-spacing:-18.000000px;}
.ws4_c00339{word-spacing:-17.928000px;}
.ws8_c00339{word-spacing:-15.030000px;}
.ws6_c00339{word-spacing:-12.161520px;}
.ws7_c00339{word-spacing:-9.720000px;}
.ws34_c00339{word-spacing:-0.420840px;}
.wsa_c00339{word-spacing:-0.162000px;}
.ws22_c00339{word-spacing:-0.144000px;}
.ws12_c00339{word-spacing:-0.072000px;}
.ws32_c00339{word-spacing:-0.060120px;}
.ws9_c00339{word-spacing:0.000000px;}
.ws33_c00339{word-spacing:0.180360px;}
.ws18_c00339{word-spacing:0.360000px;}
.ws1b_c00339{word-spacing:0.576000px;}
.ws2c_c00339{word-spacing:0.936000px;}
.ws10_c00339{word-spacing:1.008000px;}
.ws2b_c00339{word-spacing:1.080000px;}
.wse_c00339{word-spacing:1.368000px;}
.wsf_c00339{word-spacing:1.440000px;}
.ws15_c00339{word-spacing:2.088000px;}
.ws13_c00339{word-spacing:2.160000px;}
.ws2a_c00339{word-spacing:2.808000px;}
.ws29_c00339{word-spacing:2.880000px;}
.ws31_c00339{word-spacing:3.727440px;}
.ws2d_c00339{word-spacing:3.960000px;}
.ws2_c00339{word-spacing:4.176000px;}
.ws1a_c00339{word-spacing:7.848000px;}
.ws19_c00339{word-spacing:7.920000px;}
.ws30_c00339{word-spacing:8.928000px;}
.ws1c_c00339{word-spacing:9.576000px;}
.ws17_c00339{word-spacing:11.016000px;}
.ws16_c00339{word-spacing:11.088000px;}
.ws11_c00339{word-spacing:12.240000px;}
.ws20_c00339{word-spacing:13.320000px;}
.ws21_c00339{word-spacing:13.680000px;}
.ws28_c00339{word-spacing:14.400000px;}
.ws2f_c00339{word-spacing:14.760000px;}
.ws2e_c00339{word-spacing:15.120000px;}
.ws25_c00339{word-spacing:17.208000px;}
.ws14_c00339{word-spacing:19.008000px;}
.wsd_c00339{word-spacing:19.800000px;}
.wsc_c00339{word-spacing:20.088000px;}
.wsb_c00339{word-spacing:20.160000px;}
.ws24_c00339{word-spacing:20.736000px;}
.ws23_c00339{word-spacing:20.952000px;}
.ws1e_c00339{word-spacing:21.456000px;}
.ws1f_c00339{word-spacing:21.528000px;}
.ws1d_c00339{word-spacing:21.600000px;}
.ws26_c00339{word-spacing:22.248000px;}
.ws27_c00339{word-spacing:22.320000px;}
._5_c00339{margin-left:-5.904000px;}
._4_c00339{margin-left:-3.816000px;}
._0_c00339{margin-left:-1.296000px;}
._1_c00339{width:1.008000px;}
._6_c00339{width:2.232000px;}
._d_c00339{width:3.456000px;}
._e_c00339{width:4.775040px;}
._7_c00339{width:8.280000px;}
._8_c00339{width:9.936000px;}
._2_c00339{width:11.880000px;}
._3_c00339{width:13.536000px;}
._b_c00339{width:15.609600px;}
._a_c00339{width:20.512800px;}
._c_c00339{width:22.032000px;}
._9_c00339{width:23.400000px;}
._f_c00339{width:42.120000px;}
._10_c00339{width:43.128000px;}
.fc0_c00339{color:rgb(0,0,0);}
.fs4_c00339{font-size:38.880000px;}
.fs3_c00339{font-size:47.880000px;}
.fs2_c00339{font-size:51.120000px;}
.fs0_c00339{font-size:54.000000px;}
.fs5_c00339{font-size:60.120000px;}
.fs1_c00339{font-size:72.000000px;}
.y0_c00339{bottom:0.000000px;}
.y25_c00339{bottom:57.240000px;}
.y24_c00339{bottom:109.795680px;}
.y23_c00339{bottom:132.210000px;}
.y26_c00339{bottom:144.900000px;}
.y22_c00339{bottom:206.100000px;}
.y21_c00339{bottom:237.330000px;}
.y20_c00339{bottom:269.010000px;}
.y1f_c00339{bottom:300.510000px;}
.y1e_c00339{bottom:331.560000px;}
.y1d_c00339{bottom:362.610000px;}
.y1c_c00339{bottom:393.660000px;}
.y1b_c00339{bottom:424.710000px;}
.y1a_c00339{bottom:455.760000px;}
.y19_c00339{bottom:486.810000px;}
.y18_c00339{bottom:517.860000px;}
.y17_c00339{bottom:548.820000px;}
.y16_c00339{bottom:579.870000px;}
.y15_c00339{bottom:610.920000px;}
.y14_c00339{bottom:641.970000px;}
.y13_c00339{bottom:673.020000px;}
.y12_c00339{bottom:704.070000px;}
.y11_c00339{bottom:735.120000px;}
.y10_c00339{bottom:766.170000px;}
.yf_c00339{bottom:797.940000px;}
.ye_c00339{bottom:830.340000px;}
.yd_c00339{bottom:861.390000px;}
.yc_c00339{bottom:892.440000px;}
.yb_c00339{bottom:923.580000px;}
.ya_c00339{bottom:955.080000px;}
.y9_c00339{bottom:986.130000px;}
.y8_c00339{bottom:1017.180000px;}
.y7_c00339{bottom:1048.230000px;}
.y6_c00339{bottom:1079.280000px;}
.y5_c00339{bottom:1110.330000px;}
.y4_c00339{bottom:1131.030000px;}
.y3_c00339{bottom:1150.915500px;}
.y2_c00339{bottom:1166.400000px;}
.y1_c00339{bottom:1197.450000px;}
.h7_c00339{height:38.158594px;}
.h4_c00339{height:50.027344px;}
.h2_c00339{height:52.998047px;}
.h8_c00339{height:59.004492px;}
.h3_c00339{height:70.664062px;}
.h6_c00339{height:73.991602px;}
.h5_c00339{height:143.542969px;}
.h0_c00339{height:1262.880000px;}
.h1_c00339{height:1263.000000px;}
.w0_c00339{width:893.070000px;}
.w1_c00339{width:893.250000px;}
.x0_c00339{left:0.000000px;}
.x2_c00339{left:127.620000px;}
.x1_c00339{left:446.580000px;}
@media print{
.v1_c00339{vertical-align:-55.056000pt;}
.v5_c00339{vertical-align:-18.560000pt;}
.v2_c00339{vertical-align:-13.120000pt;}
.v0_c00339{vertical-align:0.000000pt;}
.v3_c00339{vertical-align:13.120000pt;}
.v4_c00339{vertical-align:24.000000pt;}
.ls13_c00339{letter-spacing:-0.512000pt;}
.ls12_c00339{letter-spacing:-0.320000pt;}
.ls14_c00339{letter-spacing:-0.064000pt;}
.ls15_c00339{letter-spacing:-0.053440pt;}
.ls11_c00339{letter-spacing:0.000000pt;}
.ls1_c00339{letter-spacing:0.064000pt;}
.ls5_c00339{letter-spacing:0.128000pt;}
.ls16_c00339{letter-spacing:0.160320pt;}
.lsc_c00339{letter-spacing:0.170240pt;}
.ls2_c00339{letter-spacing:0.320000pt;}
.ls4_c00339{letter-spacing:1.920000pt;}
.ls10_c00339{letter-spacing:3.259840pt;}
.lsd_c00339{letter-spacing:3.520000pt;}
.ls8_c00339{letter-spacing:9.632000pt;}
.ls3_c00339{letter-spacing:10.560000pt;}
.lsb_c00339{letter-spacing:12.160000pt;}
.lse_c00339{letter-spacing:13.440000pt;}
.ls7_c00339{letter-spacing:17.792000pt;}
.ls9_c00339{letter-spacing:18.880000pt;}
.lsa_c00339{letter-spacing:19.200000pt;}
.ls6_c00339{letter-spacing:20.410240pt;}
.lsf_c00339{letter-spacing:37.760000pt;}
.ls0_c00339{letter-spacing:284.016000pt;}
.ws1_c00339{word-spacing:-64.000000pt;}
.ws3_c00339{word-spacing:-35.136000pt;}
.ws0_c00339{word-spacing:-16.064000pt;}
.ws5_c00339{word-spacing:-16.000000pt;}
.ws4_c00339{word-spacing:-15.936000pt;}
.ws8_c00339{word-spacing:-13.360000pt;}
.ws6_c00339{word-spacing:-10.810240pt;}
.ws7_c00339{word-spacing:-8.640000pt;}
.ws34_c00339{word-spacing:-0.374080pt;}
.wsa_c00339{word-spacing:-0.144000pt;}
.ws22_c00339{word-spacing:-0.128000pt;}
.ws12_c00339{word-spacing:-0.064000pt;}
.ws32_c00339{word-spacing:-0.053440pt;}
.ws9_c00339{word-spacing:0.000000pt;}
.ws33_c00339{word-spacing:0.160320pt;}
.ws18_c00339{word-spacing:0.320000pt;}
.ws1b_c00339{word-spacing:0.512000pt;}
.ws2c_c00339{word-spacing:0.832000pt;}
.ws10_c00339{word-spacing:0.896000pt;}
.ws2b_c00339{word-spacing:0.960000pt;}
.wse_c00339{word-spacing:1.216000pt;}
.wsf_c00339{word-spacing:1.280000pt;}
.ws15_c00339{word-spacing:1.856000pt;}
.ws13_c00339{word-spacing:1.920000pt;}
.ws2a_c00339{word-spacing:2.496000pt;}
.ws29_c00339{word-spacing:2.560000pt;}
.ws31_c00339{word-spacing:3.313280pt;}
.ws2d_c00339{word-spacing:3.520000pt;}
.ws2_c00339{word-spacing:3.712000pt;}
.ws1a_c00339{word-spacing:6.976000pt;}
.ws19_c00339{word-spacing:7.040000pt;}
.ws30_c00339{word-spacing:7.936000pt;}
.ws1c_c00339{word-spacing:8.512000pt;}
.ws17_c00339{word-spacing:9.792000pt;}
.ws16_c00339{word-spacing:9.856000pt;}
.ws11_c00339{word-spacing:10.880000pt;}
.ws20_c00339{word-spacing:11.840000pt;}
.ws21_c00339{word-spacing:12.160000pt;}
.ws28_c00339{word-spacing:12.800000pt;}
.ws2f_c00339{word-spacing:13.120000pt;}
.ws2e_c00339{word-spacing:13.440000pt;}
.ws25_c00339{word-spacing:15.296000pt;}
.ws14_c00339{word-spacing:16.896000pt;}
.wsd_c00339{word-spacing:17.600000pt;}
.wsc_c00339{word-spacing:17.856000pt;}
.wsb_c00339{word-spacing:17.920000pt;}
.ws24_c00339{word-spacing:18.432000pt;}
.ws23_c00339{word-spacing:18.624000pt;}
.ws1e_c00339{word-spacing:19.072000pt;}
.ws1f_c00339{word-spacing:19.136000pt;}
.ws1d_c00339{word-spacing:19.200000pt;}
.ws26_c00339{word-spacing:19.776000pt;}
.ws27_c00339{word-spacing:19.840000pt;}
._5_c00339{margin-left:-5.248000pt;}
._4_c00339{margin-left:-3.392000pt;}
._0_c00339{margin-left:-1.152000pt;}
._1_c00339{width:0.896000pt;}
._6_c00339{width:1.984000pt;}
._d_c00339{width:3.072000pt;}
._e_c00339{width:4.244480pt;}
._7_c00339{width:7.360000pt;}
._8_c00339{width:8.832000pt;}
._2_c00339{width:10.560000pt;}
._3_c00339{width:12.032000pt;}
._b_c00339{width:13.875200pt;}
._a_c00339{width:18.233600pt;}
._c_c00339{width:19.584000pt;}
._9_c00339{width:20.800000pt;}
._f_c00339{width:37.440000pt;}
._10_c00339{width:38.336000pt;}
.fs4_c00339{font-size:34.560000pt;}
.fs3_c00339{font-size:42.560000pt;}
.fs2_c00339{font-size:45.440000pt;}
.fs0_c00339{font-size:48.000000pt;}
.fs5_c00339{font-size:53.440000pt;}
.fs1_c00339{font-size:64.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y25_c00339{bottom:50.880000pt;}
.y24_c00339{bottom:97.596160pt;}
.y23_c00339{bottom:117.520000pt;}
.y26_c00339{bottom:128.800000pt;}
.y22_c00339{bottom:183.200000pt;}
.y21_c00339{bottom:210.960000pt;}
.y20_c00339{bottom:239.120000pt;}
.y1f_c00339{bottom:267.120000pt;}
.y1e_c00339{bottom:294.720000pt;}
.y1d_c00339{bottom:322.320000pt;}
.y1c_c00339{bottom:349.920000pt;}
.y1b_c00339{bottom:377.520000pt;}
.y1a_c00339{bottom:405.120000pt;}
.y19_c00339{bottom:432.720000pt;}
.y18_c00339{bottom:460.320000pt;}
.y17_c00339{bottom:487.840000pt;}
.y16_c00339{bottom:515.440000pt;}
.y15_c00339{bottom:543.040000pt;}
.y14_c00339{bottom:570.640000pt;}
.y13_c00339{bottom:598.240000pt;}
.y12_c00339{bottom:625.840000pt;}
.y11_c00339{bottom:653.440000pt;}
.y10_c00339{bottom:681.040000pt;}
.yf_c00339{bottom:709.280000pt;}
.ye_c00339{bottom:738.080000pt;}
.yd_c00339{bottom:765.680000pt;}
.yc_c00339{bottom:793.280000pt;}
.yb_c00339{bottom:820.960000pt;}
.ya_c00339{bottom:848.960000pt;}
.y9_c00339{bottom:876.560000pt;}
.y8_c00339{bottom:904.160000pt;}
.y7_c00339{bottom:931.760000pt;}
.y6_c00339{bottom:959.360000pt;}
.y5_c00339{bottom:986.960000pt;}
.y4_c00339{bottom:1005.360000pt;}
.y3_c00339{bottom:1023.036000pt;}
.y2_c00339{bottom:1036.800000pt;}
.y1_c00339{bottom:1064.400000pt;}
.h7_c00339{height:33.918750pt;}
.h4_c00339{height:44.468750pt;}
.h2_c00339{height:47.109375pt;}
.h8_c00339{height:52.448437pt;}
.h3_c00339{height:62.812500pt;}
.h6_c00339{height:65.770313pt;}
.h5_c00339{height:127.593750pt;}
.h0_c00339{height:1122.560000pt;}
.h1_c00339{height:1122.666667pt;}
.w0_c00339{width:793.840000pt;}
.w1_c00339{width:794.000000pt;}
.x0_c00339{left:0.000000pt;}
.x2_c00339{left:113.440000pt;}
.x1_c00339{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c9d074d70793ac4da6cee8f.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.284180;font-style:normal;font-weight:normal;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_62498f066774993eba6bb6ae.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;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_c00340;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00340;src:url('chunks/assets/font_92f8e53f2e01eddd01dc3d61.woff2')format("woff");}.ff6_c00340{font-family:ff6_c00340;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00340;src:url('chunks/assets/font_f86ec4dc4a9f32c4c136cb76.woff2')format("woff");}.ff7_c00340{font-family:ff7_c00340;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00340{vertical-align:-14.760000px;}
.v0_c00340{vertical-align:0.000000px;}
.v2_c00340{vertical-align:14.760000px;}
.lse_c00340{letter-spacing:-0.216000px;}
.lsc_c00340{letter-spacing:-0.108000px;}
.lsd_c00340{letter-spacing:-0.072000px;}
.lsb_c00340{letter-spacing:0.000000px;}
.ls6_c00340{letter-spacing:0.072000px;}
.ls3_c00340{letter-spacing:0.144000px;}
.ls8_c00340{letter-spacing:0.432000px;}
.ls1_c00340{letter-spacing:2.880000px;}
.ls0_c00340{letter-spacing:7.920000px;}
.lsa_c00340{letter-spacing:14.040000px;}
.ls7_c00340{letter-spacing:16.200000px;}
.ls9_c00340{letter-spacing:19.440000px;}
.ls5_c00340{letter-spacing:20.016000px;}
.ls4_c00340{letter-spacing:22.961520px;}
.ls2_c00340{letter-spacing:24.120000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00340{word-spacing:-72.000000px;}
.ws3_c00340{word-spacing:-18.072000px;}
.ws5_c00340{word-spacing:-18.000000px;}
.ws0_c00340{word-spacing:-17.928000px;}
.ws4_c00340{word-spacing:-17.784000px;}
.wsb_c00340{word-spacing:-0.432000px;}
.ws17_c00340{word-spacing:-0.144000px;}
.wsc_c00340{word-spacing:-0.072000px;}
.ws6_c00340{word-spacing:0.000000px;}
.ws20_c00340{word-spacing:0.072000px;}
.ws8_c00340{word-spacing:0.162000px;}
.ws1b_c00340{word-spacing:0.216000px;}
.ws7_c00340{word-spacing:0.270000px;}
.ws21_c00340{word-spacing:0.288000px;}
.ws22_c00340{word-spacing:0.360000px;}
.ws11_c00340{word-spacing:2.880000px;}
.ws1f_c00340{word-spacing:3.888000px;}
.ws2_c00340{word-spacing:4.176000px;}
.ws25_c00340{word-spacing:4.608000px;}
.ws1c_c00340{word-spacing:5.328000px;}
.ws9_c00340{word-spacing:7.416000px;}
.wsa_c00340{word-spacing:7.560000px;}
.wsf_c00340{word-spacing:8.928000px;}
.ws10_c00340{word-spacing:9.000000px;}
.ws1e_c00340{word-spacing:9.072000px;}
.wse_c00340{word-spacing:10.080000px;}
.wsd_c00340{word-spacing:10.152000px;}
.ws16_c00340{word-spacing:11.160000px;}
.ws13_c00340{word-spacing:11.376000px;}
.ws14_c00340{word-spacing:11.520000px;}
.ws24_c00340{word-spacing:11.808000px;}
.ws23_c00340{word-spacing:11.880000px;}
.ws27_c00340{word-spacing:13.968000px;}
.ws26_c00340{word-spacing:14.040000px;}
.ws18_c00340{word-spacing:15.768000px;}
.ws12_c00340{word-spacing:16.128000px;}
.ws1d_c00340{word-spacing:16.200000px;}
.ws19_c00340{word-spacing:19.296000px;}
.ws1a_c00340{word-spacing:19.440000px;}
.ws15_c00340{word-spacing:24.120000px;}
._7_c00340{margin-left:-5.976000px;}
._5_c00340{margin-left:-4.456800px;}
._1_c00340{margin-left:-1.058400px;}
._0_c00340{width:1.220400px;}
._3_c00340{width:2.664000px;}
._b_c00340{width:3.960000px;}
._9_c00340{width:5.760000px;}
._a_c00340{width:7.315200px;}
._2_c00340{width:8.784000px;}
._d_c00340{width:12.024000px;}
._6_c00340{width:15.242400px;}
._8_c00340{width:16.509600px;}
._c_c00340{width:20.152800px;}
._4_c00340{width:24.184800px;}
.fc0_c00340{color:rgb(0,0,0);}
.fs2_c00340{font-size:51.120000px;}
.fs0_c00340{font-size:54.000000px;}
.fs1_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.y27_c00340{bottom:57.240000px;}
.y26_c00340{bottom:113.400000px;}
.y25_c00340{bottom:144.630000px;}
.y24_c00340{bottom:175.680000px;}
.y23_c00340{bottom:206.730000px;}
.y22_c00340{bottom:237.780000px;}
.y21_c00340{bottom:268.830000px;}
.y20_c00340{bottom:299.880000px;}
.y1f_c00340{bottom:330.930000px;}
.y1e_c00340{bottom:361.980000px;}
.y1d_c00340{bottom:393.030000px;}
.y1c_c00340{bottom:424.080000px;}
.y1b_c00340{bottom:454.950000px;}
.y1a_c00340{bottom:486.000000px;}
.y19_c00340{bottom:517.230000px;}
.y18_c00340{bottom:548.280000px;}
.y17_c00340{bottom:579.330000px;}
.y16_c00340{bottom:610.380000px;}
.y15_c00340{bottom:641.430000px;}
.y14_c00340{bottom:673.110000px;}
.y13_c00340{bottom:705.510000px;}
.y12_c00340{bottom:736.560000px;}
.y11_c00340{bottom:767.790000px;}
.y10_c00340{bottom:799.470000px;}
.yf_c00340{bottom:830.970000px;}
.ye_c00340{bottom:861.930000px;}
.yd_c00340{bottom:892.980000px;}
.yc_c00340{bottom:924.030000px;}
.yb_c00340{bottom:955.080000px;}
.ya_c00340{bottom:986.130000px;}
.y9_c00340{bottom:1017.180000px;}
.y8_c00340{bottom:1048.230000px;}
.y7_c00340{bottom:1079.280000px;}
.y6_c00340{bottom:1110.330000px;}
.y5_c00340{bottom:1131.030000px;}
.y4_c00340{bottom:1150.920000px;}
.y3_c00340{bottom:1166.404500px;}
.y2_c00340{bottom:1181.970000px;}
.y1_c00340{bottom:1197.450000px;}
.h6_c00340{height:50.027344px;}
.h3_c00340{height:52.971680px;}
.h2_c00340{height:52.998047px;}
.h4_c00340{height:70.664062px;}
.h7_c00340{height:72.562500px;}
.h5_c00340{height:143.542969px;}
.h0_c00340{height:1262.880000px;}
.h1_c00340{height:1263.000000px;}
.w0_c00340{width:893.070000px;}
.w1_c00340{width:893.250000px;}
.x0_c00340{left:0.000000px;}
.x3_c00340{left:127.620000px;}
.x2_c00340{left:425.160000px;}
.x1_c00340{left:446.580000px;}
.x4_c00340{left:738.540000px;}
@media print{
.v1_c00340{vertical-align:-13.120000pt;}
.v0_c00340{vertical-align:0.000000pt;}
.v2_c00340{vertical-align:13.120000pt;}
.lse_c00340{letter-spacing:-0.192000pt;}
.lsc_c00340{letter-spacing:-0.096000pt;}
.lsd_c00340{letter-spacing:-0.064000pt;}
.lsb_c00340{letter-spacing:0.000000pt;}
.ls6_c00340{letter-spacing:0.064000pt;}
.ls3_c00340{letter-spacing:0.128000pt;}
.ls8_c00340{letter-spacing:0.384000pt;}
.ls1_c00340{letter-spacing:2.560000pt;}
.ls0_c00340{letter-spacing:7.040000pt;}
.lsa_c00340{letter-spacing:12.480000pt;}
.ls7_c00340{letter-spacing:14.400000pt;}
.ls9_c00340{letter-spacing:17.280000pt;}
.ls5_c00340{letter-spacing:17.792000pt;}
.ls4_c00340{letter-spacing:20.410240pt;}
.ls2_c00340{letter-spacing:21.440000pt;}
.ws1_c00340{word-spacing:-64.000000pt;}
.ws3_c00340{word-spacing:-16.064000pt;}
.ws5_c00340{word-spacing:-16.000000pt;}
.ws0_c00340{word-spacing:-15.936000pt;}
.ws4_c00340{word-spacing:-15.808000pt;}
.wsb_c00340{word-spacing:-0.384000pt;}
.ws17_c00340{word-spacing:-0.128000pt;}
.wsc_c00340{word-spacing:-0.064000pt;}
.ws6_c00340{word-spacing:0.000000pt;}
.ws20_c00340{word-spacing:0.064000pt;}
.ws8_c00340{word-spacing:0.144000pt;}
.ws1b_c00340{word-spacing:0.192000pt;}
.ws7_c00340{word-spacing:0.240000pt;}
.ws21_c00340{word-spacing:0.256000pt;}
.ws22_c00340{word-spacing:0.320000pt;}
.ws11_c00340{word-spacing:2.560000pt;}
.ws1f_c00340{word-spacing:3.456000pt;}
.ws2_c00340{word-spacing:3.712000pt;}
.ws25_c00340{word-spacing:4.096000pt;}
.ws1c_c00340{word-spacing:4.736000pt;}
.ws9_c00340{word-spacing:6.592000pt;}
.wsa_c00340{word-spacing:6.720000pt;}
.wsf_c00340{word-spacing:7.936000pt;}
.ws10_c00340{word-spacing:8.000000pt;}
.ws1e_c00340{word-spacing:8.064000pt;}
.wse_c00340{word-spacing:8.960000pt;}
.wsd_c00340{word-spacing:9.024000pt;}
.ws16_c00340{word-spacing:9.920000pt;}
.ws13_c00340{word-spacing:10.112000pt;}
.ws14_c00340{word-spacing:10.240000pt;}
.ws24_c00340{word-spacing:10.496000pt;}
.ws23_c00340{word-spacing:10.560000pt;}
.ws27_c00340{word-spacing:12.416000pt;}
.ws26_c00340{word-spacing:12.480000pt;}
.ws18_c00340{word-spacing:14.016000pt;}
.ws12_c00340{word-spacing:14.336000pt;}
.ws1d_c00340{word-spacing:14.400000pt;}
.ws19_c00340{word-spacing:17.152000pt;}
.ws1a_c00340{word-spacing:17.280000pt;}
.ws15_c00340{word-spacing:21.440000pt;}
._7_c00340{margin-left:-5.312000pt;}
._5_c00340{margin-left:-3.961600pt;}
._1_c00340{margin-left:-0.940800pt;}
._0_c00340{width:1.084800pt;}
._3_c00340{width:2.368000pt;}
._b_c00340{width:3.520000pt;}
._9_c00340{width:5.120000pt;}
._a_c00340{width:6.502400pt;}
._2_c00340{width:7.808000pt;}
._d_c00340{width:10.688000pt;}
._6_c00340{width:13.548800pt;}
._8_c00340{width:14.675200pt;}
._c_c00340{width:17.913600pt;}
._4_c00340{width:21.497600pt;}
.fs2_c00340{font-size:45.440000pt;}
.fs0_c00340{font-size:48.000000pt;}
.fs1_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y27_c00340{bottom:50.880000pt;}
.y26_c00340{bottom:100.800000pt;}
.y25_c00340{bottom:128.560000pt;}
.y24_c00340{bottom:156.160000pt;}
.y23_c00340{bottom:183.760000pt;}
.y22_c00340{bottom:211.360000pt;}
.y21_c00340{bottom:238.960000pt;}
.y20_c00340{bottom:266.560000pt;}
.y1f_c00340{bottom:294.160000pt;}
.y1e_c00340{bottom:321.760000pt;}
.y1d_c00340{bottom:349.360000pt;}
.y1c_c00340{bottom:376.960000pt;}
.y1b_c00340{bottom:404.400000pt;}
.y1a_c00340{bottom:432.000000pt;}
.y19_c00340{bottom:459.760000pt;}
.y18_c00340{bottom:487.360000pt;}
.y17_c00340{bottom:514.960000pt;}
.y16_c00340{bottom:542.560000pt;}
.y15_c00340{bottom:570.160000pt;}
.y14_c00340{bottom:598.320000pt;}
.y13_c00340{bottom:627.120000pt;}
.y12_c00340{bottom:654.720000pt;}
.y11_c00340{bottom:682.480000pt;}
.y10_c00340{bottom:710.640000pt;}
.yf_c00340{bottom:738.640000pt;}
.ye_c00340{bottom:766.160000pt;}
.yd_c00340{bottom:793.760000pt;}
.yc_c00340{bottom:821.360000pt;}
.yb_c00340{bottom:848.960000pt;}
.ya_c00340{bottom:876.560000pt;}
.y9_c00340{bottom:904.160000pt;}
.y8_c00340{bottom:931.760000pt;}
.y7_c00340{bottom:959.360000pt;}
.y6_c00340{bottom:986.960000pt;}
.y5_c00340{bottom:1005.360000pt;}
.y4_c00340{bottom:1023.040000pt;}
.y3_c00340{bottom:1036.804000pt;}
.y2_c00340{bottom:1050.640000pt;}
.y1_c00340{bottom:1064.400000pt;}
.h6_c00340{height:44.468750pt;}
.h3_c00340{height:47.085938pt;}
.h2_c00340{height:47.109375pt;}
.h4_c00340{height:62.812500pt;}
.h7_c00340{height:64.500000pt;}
.h5_c00340{height:127.593750pt;}
.h0_c00340{height:1122.560000pt;}
.h1_c00340{height:1122.666667pt;}
.w0_c00340{width:793.840000pt;}
.w1_c00340{width:794.000000pt;}
.x0_c00340{left:0.000000pt;}
.x3_c00340{left:113.440000pt;}
.x2_c00340{left:377.920000pt;}
.x1_c00340{left:396.960000pt;}
.x4_c00340{left:656.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_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_1bf5f362fe68394cbba05cd4.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_982e5a69af5793453c9e99a3.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_cb88044f6f2260b9ca0b49b7.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_66cebe9083bbeb03c862e837.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00341;src:url('chunks/assets/font_b14e02d9ebfc231b36b01447.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00341;src:url('chunks/assets/font_6e4fb3ca5ac7563d464cfe73.woff2')format("woff");}.ff6_c00341{font-family:ff6_c00341;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283454,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.283456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283456,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.283458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283458,0.000000,0.000000,0.250000,0,0);}
.v2_c00341{vertical-align:-83.520000px;}
.v1_c00341{vertical-align:-61.938000px;}
.v3_c00341{vertical-align:-3.314530px;}
.v0_c00341{vertical-align:0.000000px;}
.v4_c00341{vertical-align:3.314530px;}
.lse_c00341{letter-spacing:-1.978824px;}
.ls15_c00341{letter-spacing:-1.335706px;}
.lsd_c00341{letter-spacing:-1.266451px;}
.ls11_c00341{letter-spacing:-1.137824px;}
.ls17_c00341{letter-spacing:-1.088353px;}
.ls16_c00341{letter-spacing:-0.643118px;}
.ls1d_c00341{letter-spacing:-0.626628px;}
.ls12_c00341{letter-spacing:-0.593647px;}
.ls10_c00341{letter-spacing:-0.369382px;}
.lsf_c00341{letter-spacing:-0.197882px;}
.lsc_c00341{letter-spacing:-0.158306px;}
.ls13_c00341{letter-spacing:-0.148412px;}
.lsb_c00341{letter-spacing:-0.120240px;}
.lsa_c00341{letter-spacing:-0.072000px;}
.ls8_c00341{letter-spacing:0.000000px;}
.ls9_c00341{letter-spacing:0.072000px;}
.ls14_c00341{letter-spacing:0.148412px;}
.ls2_c00341{letter-spacing:0.211075px;}
.ls3_c00341{letter-spacing:0.316613px;}
.ls1a_c00341{letter-spacing:0.616733px;}
.ls19_c00341{letter-spacing:0.897070px;}
.ls1b_c00341{letter-spacing:1.002607px;}
.ls5_c00341{letter-spacing:1.038883px;}
.ls1e_c00341{letter-spacing:1.319220px;}
.ls18_c00341{letter-spacing:1.371989px;}
.ls7_c00341{letter-spacing:1.414858px;}
.ls1c_c00341{letter-spacing:1.530295px;}
.ls6_c00341{letter-spacing:2.532902px;}
.ls4_c00341{letter-spacing:80.439196px;}
.ls0_c00341{letter-spacing:1144.260000px;}
.ls1_c00341{letter-spacing:2082.240000px;}
.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;}
}
.ws0_c00341{word-spacing:-14.909760px;}
.ws2e_c00341{word-spacing:-13.456044px;}
.ws2d_c00341{word-spacing:-13.297738px;}
.ws2c_c00341{word-spacing:-12.242362px;}
.ws2f_c00341{word-spacing:-12.136824px;}
.ws5_c00341{word-spacing:-11.556367px;}
.ws1_c00341{word-spacing:-10.659298px;}
.ws40_c00341{word-spacing:-3.011107px;}
.ws3f_c00341{word-spacing:-2.212982px;}
.ws44_c00341{word-spacing:-1.414858px;}
.ws3d_c00341{word-spacing:-1.371989px;}
.ws3b_c00341{word-spacing:-1.266451px;}
.ws38_c00341{word-spacing:-1.088353px;}
.ws41_c00341{word-spacing:-1.002607px;}
.ws3e_c00341{word-spacing:-0.897070px;}
.ws42_c00341{word-spacing:-0.316613px;}
.ws45_c00341{word-spacing:-0.313314px;}
.ws37_c00341{word-spacing:-0.211075px;}
.ws3a_c00341{word-spacing:-0.197882px;}
.ws31_c00341{word-spacing:-0.162000px;}
.ws3c_c00341{word-spacing:-0.105538px;}
.ws32_c00341{word-spacing:-0.072000px;}
.ws46_c00341{word-spacing:-0.052769px;}
.ws30_c00341{word-spacing:0.000000px;}
.ws39_c00341{word-spacing:0.049471px;}
.ws33_c00341{word-spacing:0.072000px;}
.ws35_c00341{word-spacing:0.158306px;}
.ws36_c00341{word-spacing:0.949838px;}
.ws34_c00341{word-spacing:1.055376px;}
.ws43_c00341{word-spacing:1.266451px;}
.ws6_c00341{word-spacing:40.189915px;}
.wse_c00341{word-spacing:50.113718px;}
.ws2_c00341{word-spacing:60.007838px;}
.wsd_c00341{word-spacing:74.947959px;}
.ws7_c00341{word-spacing:76.432077px;}
.ws22_c00341{word-spacing:84.842079px;}
.ws8_c00341{word-spacing:85.950220px;}
.ws11_c00341{word-spacing:95.859182px;}
.ws9_c00341{word-spacing:127.733089px;}
.ws13_c00341{word-spacing:137.627209px;}
.ws23_c00341{word-spacing:151.944001px;}
.ws4_c00341{word-spacing:172.073588px;}
.ws1d_c00341{word-spacing:172.078535px;}
.ws19_c00341{word-spacing:195.225829px;}
.wsa_c00341{word-spacing:208.419638px;}
.ws1f_c00341{word-spacing:208.434479px;}
.ws28_c00341{word-spacing:208.439426px;}
.ws14_c00341{word-spacing:221.628288px;}
.ws17_c00341{word-spacing:248.461141px;}
.wsb_c00341{word-spacing:274.690454px;}
.ws24_c00341{word-spacing:283.590214px;}
.ws1e_c00341{word-spacing:284.371850px;}
.ws27_c00341{word-spacing:290.966281px;}
.ws15_c00341{word-spacing:302.181266px;}
.ws21_c00341{word-spacing:306.509943px;}
.ws1a_c00341{word-spacing:311.100815px;}
.ws2a_c00341{word-spacing:311.140392px;}
.ws1b_c00341{word-spacing:314.266934px;}
.ws26_c00341{word-spacing:319.693858px;}
.wsf_c00341{word-spacing:338.507528px;}
.ws3_c00341{word-spacing:342.153511px;}
.ws1c_c00341{word-spacing:344.107599px;}
.ws20_c00341{word-spacing:347.432024px;}
.ws12_c00341{word-spacing:356.356520px;}
.ws2b_c00341{word-spacing:357.969262px;}
.ws16_c00341{word-spacing:372.676871px;}
.ws18_c00341{word-spacing:375.729207px;}
.ws25_c00341{word-spacing:387.043133px;}
.ws29_c00341{word-spacing:416.725493px;}
.wsc_c00341{word-spacing:818.510865px;}
.ws10_c00341{word-spacing:831.719515px;}
._c_c00341{margin-left:-4.036813px;}
._6_c00341{margin-left:-2.983077px;}
._0_c00341{margin-left:-1.080000px;}
._1_c00341{width:1.087200px;}
._2_c00341{width:2.680330px;}
._3_c00341{width:4.050542px;}
._4_c00341{width:95.620683px;}
._8_c00341{width:121.691065px;}
._5_c00341{width:138.325035px;}
._9_c00341{width:139.549107px;}
._7_c00341{width:152.325681px;}
._a_c00341{width:162.219801px;}
._b_c00341{width:222.159243px;}
.fc1_c00341{color:transparent;}
.fc0_c00341{color:rgb(0,0,0);}
.fs5_c00341{font-size:36.278400px;}
.fs4_c00341{font-size:49.470600px;}
.fs3_c00341{font-size:52.768800px;}
.fs0_c00341{font-size:54.000000px;}
.fs2_c00341{font-size:60.120000px;}
.fs6_c00341{font-size:62.662800px;}
.fs1_c00341{font-size:72.000000px;}
.y0_c00341{bottom:0.000000px;}
.y20_c00341{bottom:3.297000px;}
.y43_c00341{bottom:3.297150px;}
.y16_c00341{bottom:3.297300px;}
.y17_c00341{bottom:3.297450px;}
.y2a_c00341{bottom:3.297750px;}
.y27_c00341{bottom:3.297900px;}
.y39_c00341{bottom:3.298050px;}
.y23_c00341{bottom:3.298200px;}
.y24_c00341{bottom:3.298350px;}
.y1d_c00341{bottom:3.298500px;}
.y1a_c00341{bottom:3.298650px;}
.y30_c00341{bottom:3.298800px;}
.y13_c00341{bottom:3.298950px;}
.y2d_c00341{bottom:3.299100px;}
.y3c_c00341{bottom:3.299400px;}
.y1f_c00341{bottom:4.121400px;}
.y42_c00341{bottom:4.121550px;}
.y32_c00341{bottom:4.121700px;}
.y15_c00341{bottom:4.122000px;}
.y3e_c00341{bottom:4.122150px;}
.y29_c00341{bottom:4.122300px;}
.y38_c00341{bottom:4.122450px;}
.y26_c00341{bottom:4.122600px;}
.y22_c00341{bottom:4.122750px;}
.y35_c00341{bottom:4.122900px;}
.y1c_c00341{bottom:4.123050px;}
.y19_c00341{bottom:4.123200px;}
.y2f_c00341{bottom:4.123350px;}
.y12_c00341{bottom:4.123650px;}
.y3b_c00341{bottom:4.123800px;}
.y10_c00341{bottom:6.608092px;}
.y67_c00341{bottom:13.192800px;}
.y63_c00341{bottom:14.015850px;}
.y58_c00341{bottom:15.677692px;}
.y51_c00341{bottom:22.260900px;}
.y53_c00341{bottom:22.261050px;}
.yb_c00341{bottom:23.922967px;}
.yf_c00341{bottom:23.929451px;}
.y52_c00341{bottom:24.734550px;}
.y50_c00341{bottom:24.753926px;}
.y4c_c00341{bottom:24.754001px;}
.y62_c00341{bottom:30.506100px;}
.y57_c00341{bottom:32.999051px;}
.y61_c00341{bottom:32.999126px;}
.ya_c00341{bottom:41.231134px;}
.ye_c00341{bottom:41.237617px;}
.y5d_c00341{bottom:42.055534px;}
.y48_c00341{bottom:42.055684px;}
.y4b_c00341{bottom:42.062167px;}
.y4f_c00341{bottom:43.711117px;}
.y59_c00341{bottom:49.469700px;}
.y5b_c00341{bottom:50.294250px;}
.y56_c00341{bottom:50.307217px;}
.y60_c00341{bottom:51.956317px;}
.y5a_c00341{bottom:56.065800px;}
.y68_c00341{bottom:57.330000px;}
.y9_c00341{bottom:58.539300px;}
.yd_c00341{bottom:58.545784px;}
.y5c_c00341{bottom:59.363700px;}
.y47_c00341{bottom:59.363850px;}
.y4a_c00341{bottom:59.370334px;}
.y64_c00341{bottom:60.188400px;}
.y4e_c00341{bottom:61.019284px;}
.y55_c00341{bottom:67.615384px;}
.y5f_c00341{bottom:69.264484px;}
.yc_c00341{bottom:75.853950px;}
.y49_c00341{bottom:76.678500px;}
.y4d_c00341{bottom:78.327450px;}
.y54_c00341{bottom:84.923550px;}
.y5e_c00341{bottom:86.572650px;}
.y7_c00341{bottom:133.740000px;}
.y46_c00341{bottom:149.155500px;}
.y45_c00341{bottom:166.470000px;}
.y44_c00341{bottom:183.784500px;}
.y41_c00341{bottom:201.100500px;}
.y40_c00341{bottom:218.413500px;}
.y3f_c00341{bottom:235.729500px;}
.y3d_c00341{bottom:253.044000px;}
.y3a_c00341{bottom:270.357000px;}
.y37_c00341{bottom:287.673000px;}
.y36_c00341{bottom:304.987500px;}
.y34_c00341{bottom:322.302000px;}
.y33_c00341{bottom:339.616500px;}
.y31_c00341{bottom:356.932500px;}
.y2e_c00341{bottom:374.245500px;}
.y2c_c00341{bottom:391.560000px;}
.y2b_c00341{bottom:408.876000px;}
.y28_c00341{bottom:426.190500px;}
.y25_c00341{bottom:443.505000px;}
.y21_c00341{bottom:460.819500px;}
.y1e_c00341{bottom:478.135500px;}
.y1b_c00341{bottom:495.448500px;}
.y18_c00341{bottom:512.763000px;}
.y14_c00341{bottom:530.079000px;}
.y11_c00341{bottom:547.392000px;}
.y8_c00341{bottom:565.533000px;}
.y66_c00341{bottom:658.701000px;}
.y65_c00341{bottom:676.017000px;}
.y6_c00341{bottom:698.940000px;}
.y5_c00341{bottom:719.640000px;}
.y4_c00341{bottom:761.220000px;}
.y3_c00341{bottom:781.105500px;}
.y2_c00341{bottom:796.590000px;}
.y1_c00341{bottom:827.640000px;}
.hc_c00341{height:16.489500px;}
.h8_c00341{height:17.314500px;}
.h11_c00341{height:18.138000px;}
.hf_c00341{height:29.919052px;}
.h13_c00341{height:35.454000px;}
.he_c00341{height:36.123954px;}
.ha_c00341{height:39.241642px;}
.hb_c00341{height:40.103458px;}
.h9_c00341{height:40.798752px;}
.h7_c00341{height:43.518800px;}
.h12_c00341{height:51.678452px;}
.h2_c00341{height:52.998047px;}
.h5_c00341{height:58.975137px;}
.h3_c00341{height:70.664062px;}
.h4_c00341{height:72.562500px;}
.h6_c00341{height:92.344500px;}
.hd_c00341{height:109.659000px;}
.h10_c00341{height:128.622000px;}
.h0_c00341{height:893.070000px;}
.h1_c00341{height:893.250000px;}
.wb_c00341{width:46.743000px;}
.w9_c00341{width:71.983500px;}
.w8_c00341{width:72.918000px;}
.w2_c00341{width:73.852500px;}
.wa_c00341{width:74.788500px;}
.w4_c00341{width:79.462500px;}
.w5_c00341{width:86.940000px;}
.w7_c00341{width:88.810500px;}
.w6_c00341{width:93.484500px;}
.wc_c00341{width:126.205500px;}
.we_c00341{width:148.641000px;}
.wd_c00341{width:722.638500px;}
.w3_c00341{width:1047.967500px;}
.w0_c00341{width:1262.880000px;}
.w1_c00341{width:1263.000000px;}
.x0_c00341{left:0.000000px;}
.x18_c00341{left:1.862112px;}
.x15_c00341{left:3.739200px;}
.x1a_c00341{left:5.608950px;}
.xc_c00341{left:7.478906px;}
.x8_c00341{left:10.289744px;}
.x12_c00341{left:13.088250px;}
.xf_c00341{left:16.827600px;}
.x13_c00341{left:19.632150px;}
.x9_c00341{left:21.507907px;}
.xb_c00341{left:24.306150px;}
.xd_c00341{left:27.103212px;}
.x7_c00341{left:29.914050px;}
.x22_c00341{left:33.654900px;}
.x16_c00341{left:35.523994px;}
.x1c_c00341{left:37.394100px;}
.x1f_c00341{left:40.228978px;}
.x1b_c00341{left:42.075457px;}
.x25_c00341{left:56.090850px;}
.x1d_c00341{left:86.941200px;}
.x2_c00341{left:106.380000px;}
.xe_c00341{left:107.674500px;}
.x28_c00341{left:128.074200px;}
.x27_c00341{left:155.352000px;}
.x3_c00341{left:185.130000px;}
.x14_c00341{left:282.492000px;}
.x17_c00341{left:362.889000px;}
.x10_c00341{left:378.614550px;}
.x19_c00341{left:450.765000px;}
.x11_c00341{left:487.992150px;}
.x4_c00341{left:495.450000px;}
.x1e_c00341{left:545.184000px;}
.x1_c00341{left:631.440000px;}
.x20_c00341{left:634.930500px;}
.x21_c00341{left:708.783000px;}
.x23_c00341{left:782.637000px;}
.x24_c00341{left:855.555000px;}
.x26_c00341{left:931.278000px;}
.x6_c00341{left:1006.066500px;}
.xa_c00341{left:1080.853500px;}
.x5_c00341{left:1087.380000px;}
@media print{
.v2_c00341{vertical-align:-74.240000pt;}
.v1_c00341{vertical-align:-55.056000pt;}
.v3_c00341{vertical-align:-2.946249pt;}
.v0_c00341{vertical-align:0.000000pt;}
.v4_c00341{vertical-align:2.946249pt;}
.lse_c00341{letter-spacing:-1.758955pt;}
.ls15_c00341{letter-spacing:-1.187294pt;}
.lsd_c00341{letter-spacing:-1.125734pt;}
.ls11_c00341{letter-spacing:-1.011399pt;}
.ls17_c00341{letter-spacing:-0.967425pt;}
.ls16_c00341{letter-spacing:-0.571660pt;}
.ls1d_c00341{letter-spacing:-0.557003pt;}
.ls12_c00341{letter-spacing:-0.527686pt;}
.ls10_c00341{letter-spacing:-0.328339pt;}
.lsf_c00341{letter-spacing:-0.175895pt;}
.lsc_c00341{letter-spacing:-0.140717pt;}
.ls13_c00341{letter-spacing:-0.131922pt;}
.lsb_c00341{letter-spacing:-0.106880pt;}
.lsa_c00341{letter-spacing:-0.064000pt;}
.ls8_c00341{letter-spacing:0.000000pt;}
.ls9_c00341{letter-spacing:0.064000pt;}
.ls14_c00341{letter-spacing:0.131922pt;}
.ls2_c00341{letter-spacing:0.187622pt;}
.ls3_c00341{letter-spacing:0.281434pt;}
.ls1a_c00341{letter-spacing:0.548207pt;}
.ls19_c00341{letter-spacing:0.797395pt;}
.ls1b_c00341{letter-spacing:0.891206pt;}
.ls5_c00341{letter-spacing:0.923451pt;}
.ls1e_c00341{letter-spacing:1.172640pt;}
.ls18_c00341{letter-spacing:1.219546pt;}
.ls7_c00341{letter-spacing:1.257651pt;}
.ls1c_c00341{letter-spacing:1.360262pt;}
.ls6_c00341{letter-spacing:2.251469pt;}
.ls4_c00341{letter-spacing:71.501507pt;}
.ls0_c00341{letter-spacing:1017.120000pt;}
.ls1_c00341{letter-spacing:1850.880000pt;}
.ws0_c00341{word-spacing:-13.253120pt;}
.ws2e_c00341{word-spacing:-11.960928pt;}
.ws2d_c00341{word-spacing:-11.820211pt;}
.ws2c_c00341{word-spacing:-10.882099pt;}
.ws2f_c00341{word-spacing:-10.788288pt;}
.ws5_c00341{word-spacing:-10.272326pt;}
.ws1_c00341{word-spacing:-9.474931pt;}
.ws40_c00341{word-spacing:-2.676540pt;}
.ws3f_c00341{word-spacing:-1.967095pt;}
.ws44_c00341{word-spacing:-1.257651pt;}
.ws3d_c00341{word-spacing:-1.219546pt;}
.ws3b_c00341{word-spacing:-1.125734pt;}
.ws38_c00341{word-spacing:-0.967425pt;}
.ws41_c00341{word-spacing:-0.891206pt;}
.ws3e_c00341{word-spacing:-0.797395pt;}
.ws42_c00341{word-spacing:-0.281434pt;}
.ws45_c00341{word-spacing:-0.278501pt;}
.ws37_c00341{word-spacing:-0.187622pt;}
.ws3a_c00341{word-spacing:-0.175895pt;}
.ws31_c00341{word-spacing:-0.144000pt;}
.ws3c_c00341{word-spacing:-0.093811pt;}
.ws32_c00341{word-spacing:-0.064000pt;}
.ws46_c00341{word-spacing:-0.046906pt;}
.ws30_c00341{word-spacing:0.000000pt;}
.ws39_c00341{word-spacing:0.043974pt;}
.ws33_c00341{word-spacing:0.064000pt;}
.ws35_c00341{word-spacing:0.140717pt;}
.ws36_c00341{word-spacing:0.844301pt;}
.ws34_c00341{word-spacing:0.938112pt;}
.ws43_c00341{word-spacing:1.125734pt;}
.ws6_c00341{word-spacing:35.724369pt;}
.wse_c00341{word-spacing:44.545527pt;}
.ws2_c00341{word-spacing:53.340300pt;}
.wsd_c00341{word-spacing:66.620408pt;}
.ws7_c00341{word-spacing:67.939624pt;}
.ws22_c00341{word-spacing:75.415181pt;}
.ws8_c00341{word-spacing:76.400196pt;}
.ws11_c00341{word-spacing:85.208161pt;}
.ws9_c00341{word-spacing:113.540524pt;}
.ws13_c00341{word-spacing:122.335297pt;}
.ws23_c00341{word-spacing:135.061334pt;}
.ws4_c00341{word-spacing:152.954300pt;}
.ws1d_c00341{word-spacing:152.958698pt;}
.ws19_c00341{word-spacing:173.534070pt;}
.wsa_c00341{word-spacing:185.261900pt;}
.ws1f_c00341{word-spacing:185.275092pt;}
.ws28_c00341{word-spacing:185.279490pt;}
.ws14_c00341{word-spacing:197.002923pt;}
.ws17_c00341{word-spacing:220.854348pt;}
.wsb_c00341{word-spacing:244.169292pt;}
.ws24_c00341{word-spacing:252.080191pt;}
.ws1e_c00341{word-spacing:252.774978pt;}
.ws27_c00341{word-spacing:258.636694pt;}
.ws15_c00341{word-spacing:268.605570pt;}
.ws21_c00341{word-spacing:272.453283pt;}
.ws1a_c00341{word-spacing:276.534058pt;}
.ws2a_c00341{word-spacing:276.569237pt;}
.ws1b_c00341{word-spacing:279.348385pt;}
.ws26_c00341{word-spacing:284.172319pt;}
.wsf_c00341{word-spacing:300.895580pt;}
.ws3_c00341{word-spacing:304.136454pt;}
.ws1c_c00341{word-spacing:305.873422pt;}
.ws20_c00341{word-spacing:308.828466pt;}
.ws12_c00341{word-spacing:316.761351pt;}
.ws2b_c00341{word-spacing:318.194899pt;}
.ws16_c00341{word-spacing:331.268330pt;}
.ws18_c00341{word-spacing:333.981517pt;}
.ws25_c00341{word-spacing:344.038341pt;}
.ws29_c00341{word-spacing:370.422661pt;}
.wsc_c00341{word-spacing:727.565214pt;}
.ws10_c00341{word-spacing:739.306236pt;}
._c_c00341{margin-left:-3.588278pt;}
._6_c00341{margin-left:-2.651624pt;}
._0_c00341{margin-left:-0.960000pt;}
._1_c00341{width:0.966400pt;}
._2_c00341{width:2.382515pt;}
._3_c00341{width:3.600482pt;}
._4_c00341{width:84.996163pt;}
._8_c00341{width:108.169836pt;}
._5_c00341{width:122.955586pt;}
._9_c00341{width:124.043651pt;}
._7_c00341{width:135.400605pt;}
._a_c00341{width:144.195379pt;}
._b_c00341{width:197.474883pt;}
.fs5_c00341{font-size:32.247467pt;}
.fs4_c00341{font-size:43.973867pt;}
.fs3_c00341{font-size:46.905600pt;}
.fs0_c00341{font-size:48.000000pt;}
.fs2_c00341{font-size:53.440000pt;}
.fs6_c00341{font-size:55.700267pt;}
.fs1_c00341{font-size:64.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y20_c00341{bottom:2.930667pt;}
.y43_c00341{bottom:2.930800pt;}
.y16_c00341{bottom:2.930933pt;}
.y17_c00341{bottom:2.931067pt;}
.y2a_c00341{bottom:2.931333pt;}
.y27_c00341{bottom:2.931467pt;}
.y39_c00341{bottom:2.931600pt;}
.y23_c00341{bottom:2.931733pt;}
.y24_c00341{bottom:2.931867pt;}
.y1d_c00341{bottom:2.932000pt;}
.y1a_c00341{bottom:2.932133pt;}
.y30_c00341{bottom:2.932267pt;}
.y13_c00341{bottom:2.932400pt;}
.y2d_c00341{bottom:2.932533pt;}
.y3c_c00341{bottom:2.932800pt;}
.y1f_c00341{bottom:3.663467pt;}
.y42_c00341{bottom:3.663600pt;}
.y32_c00341{bottom:3.663733pt;}
.y15_c00341{bottom:3.664000pt;}
.y3e_c00341{bottom:3.664133pt;}
.y29_c00341{bottom:3.664267pt;}
.y38_c00341{bottom:3.664400pt;}
.y26_c00341{bottom:3.664533pt;}
.y22_c00341{bottom:3.664667pt;}
.y35_c00341{bottom:3.664800pt;}
.y1c_c00341{bottom:3.664933pt;}
.y19_c00341{bottom:3.665067pt;}
.y2f_c00341{bottom:3.665200pt;}
.y12_c00341{bottom:3.665467pt;}
.y3b_c00341{bottom:3.665600pt;}
.y10_c00341{bottom:5.873860pt;}
.y67_c00341{bottom:11.726933pt;}
.y63_c00341{bottom:12.458533pt;}
.y58_c00341{bottom:13.935726pt;}
.y51_c00341{bottom:19.787467pt;}
.y53_c00341{bottom:19.787600pt;}
.yb_c00341{bottom:21.264860pt;}
.yf_c00341{bottom:21.270623pt;}
.y52_c00341{bottom:21.986267pt;}
.y50_c00341{bottom:22.003490pt;}
.y4c_c00341{bottom:22.003556pt;}
.y62_c00341{bottom:27.116533pt;}
.y57_c00341{bottom:29.332490pt;}
.y61_c00341{bottom:29.332556pt;}
.ya_c00341{bottom:36.649897pt;}
.ye_c00341{bottom:36.655660pt;}
.y5d_c00341{bottom:37.382697pt;}
.y48_c00341{bottom:37.382830pt;}
.y4b_c00341{bottom:37.388593pt;}
.y4f_c00341{bottom:38.854326pt;}
.y59_c00341{bottom:43.973067pt;}
.y5b_c00341{bottom:44.706000pt;}
.y56_c00341{bottom:44.717526pt;}
.y60_c00341{bottom:46.183393pt;}
.y5a_c00341{bottom:49.836267pt;}
.y68_c00341{bottom:50.960000pt;}
.y9_c00341{bottom:52.034933pt;}
.yd_c00341{bottom:52.040697pt;}
.y5c_c00341{bottom:52.767733pt;}
.y47_c00341{bottom:52.767867pt;}
.y4a_c00341{bottom:52.773630pt;}
.y64_c00341{bottom:53.500800pt;}
.y4e_c00341{bottom:54.239363pt;}
.y55_c00341{bottom:60.102563pt;}
.y5f_c00341{bottom:61.568430pt;}
.yc_c00341{bottom:67.425733pt;}
.y49_c00341{bottom:68.158667pt;}
.y4d_c00341{bottom:69.624400pt;}
.y54_c00341{bottom:75.487600pt;}
.y5e_c00341{bottom:76.953467pt;}
.y7_c00341{bottom:118.880000pt;}
.y46_c00341{bottom:132.582667pt;}
.y45_c00341{bottom:147.973333pt;}
.y44_c00341{bottom:163.364000pt;}
.y41_c00341{bottom:178.756000pt;}
.y40_c00341{bottom:194.145333pt;}
.y3f_c00341{bottom:209.537333pt;}
.y3d_c00341{bottom:224.928000pt;}
.y3a_c00341{bottom:240.317333pt;}
.y37_c00341{bottom:255.709333pt;}
.y36_c00341{bottom:271.100000pt;}
.y34_c00341{bottom:286.490667pt;}
.y33_c00341{bottom:301.881333pt;}
.y31_c00341{bottom:317.273333pt;}
.y2e_c00341{bottom:332.662667pt;}
.y2c_c00341{bottom:348.053333pt;}
.y2b_c00341{bottom:363.445333pt;}
.y28_c00341{bottom:378.836000pt;}
.y25_c00341{bottom:394.226667pt;}
.y21_c00341{bottom:409.617333pt;}
.y1e_c00341{bottom:425.009333pt;}
.y1b_c00341{bottom:440.398667pt;}
.y18_c00341{bottom:455.789333pt;}
.y14_c00341{bottom:471.181333pt;}
.y11_c00341{bottom:486.570667pt;}
.y8_c00341{bottom:502.696000pt;}
.y66_c00341{bottom:585.512000pt;}
.y65_c00341{bottom:600.904000pt;}
.y6_c00341{bottom:621.280000pt;}
.y5_c00341{bottom:639.680000pt;}
.y4_c00341{bottom:676.640000pt;}
.y3_c00341{bottom:694.316000pt;}
.y2_c00341{bottom:708.080000pt;}
.y1_c00341{bottom:735.680000pt;}
.hc_c00341{height:14.657333pt;}
.h8_c00341{height:15.390667pt;}
.h11_c00341{height:16.122667pt;}
.hf_c00341{height:26.594713pt;}
.h13_c00341{height:31.514667pt;}
.he_c00341{height:32.110181pt;}
.ha_c00341{height:34.881459pt;}
.hb_c00341{height:35.647518pt;}
.h9_c00341{height:36.265557pt;}
.h7_c00341{height:38.683378pt;}
.h12_c00341{height:45.936402pt;}
.h2_c00341{height:47.109375pt;}
.h5_c00341{height:52.422344pt;}
.h3_c00341{height:62.812500pt;}
.h4_c00341{height:64.500000pt;}
.h6_c00341{height:82.084000pt;}
.hd_c00341{height:97.474667pt;}
.h10_c00341{height:114.330667pt;}
.h0_c00341{height:793.840000pt;}
.h1_c00341{height:794.000000pt;}
.wb_c00341{width:41.549333pt;}
.w9_c00341{width:63.985333pt;}
.w8_c00341{width:64.816000pt;}
.w2_c00341{width:65.646667pt;}
.wa_c00341{width:66.478667pt;}
.w4_c00341{width:70.633333pt;}
.w5_c00341{width:77.280000pt;}
.w7_c00341{width:78.942667pt;}
.w6_c00341{width:83.097333pt;}
.wc_c00341{width:112.182667pt;}
.we_c00341{width:132.125333pt;}
.wd_c00341{width:642.345333pt;}
.w3_c00341{width:931.526667pt;}
.w0_c00341{width:1122.560000pt;}
.w1_c00341{width:1122.666667pt;}
.x0_c00341{left:0.000000pt;}
.x18_c00341{left:1.655211pt;}
.x15_c00341{left:3.323733pt;}
.x1a_c00341{left:4.985733pt;}
.xc_c00341{left:6.647917pt;}
.x8_c00341{left:9.146439pt;}
.x12_c00341{left:11.634000pt;}
.xf_c00341{left:14.957867pt;}
.x13_c00341{left:17.450800pt;}
.x9_c00341{left:19.118139pt;}
.xb_c00341{left:21.605467pt;}
.xd_c00341{left:24.091744pt;}
.x7_c00341{left:26.590267pt;}
.x22_c00341{left:29.915467pt;}
.x16_c00341{left:31.576883pt;}
.x1c_c00341{left:33.239200pt;}
.x1f_c00341{left:35.759091pt;}
.x1b_c00341{left:37.400406pt;}
.x25_c00341{left:49.858533pt;}
.x1d_c00341{left:77.281067pt;}
.x2_c00341{left:94.560000pt;}
.xe_c00341{left:95.710667pt;}
.x28_c00341{left:113.843733pt;}
.x27_c00341{left:138.090667pt;}
.x3_c00341{left:164.560000pt;}
.x14_c00341{left:251.104000pt;}
.x17_c00341{left:322.568000pt;}
.x10_c00341{left:336.546267pt;}
.x19_c00341{left:400.680000pt;}
.x11_c00341{left:433.770800pt;}
.x4_c00341{left:440.400000pt;}
.x1e_c00341{left:484.608000pt;}
.x1_c00341{left:561.280000pt;}
.x20_c00341{left:564.382667pt;}
.x21_c00341{left:630.029333pt;}
.x23_c00341{left:695.677333pt;}
.x24_c00341{left:760.493333pt;}
.x26_c00341{left:827.802667pt;}
.x6_c00341{left:894.281333pt;}
.xa_c00341{left:960.758667pt;}
.x5_c00341{left:966.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_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_da9f5dea20a3d826604d2890.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.284668;font-style:normal;font-weight:normal;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_f02a0b000d54b9e1205078e1.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_beccbc3ad17a466b69493382.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_79d3ef7cef68ede4324e960b.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.v1_c00342{vertical-align:-61.920000px;}
.v2_c00342{vertical-align:-3.745957px;}
.v0_c00342{vertical-align:0.000000px;}
.v3_c00342{vertical-align:3.745957px;}
.ls6_c00342{letter-spacing:-2.236392px;}
.ls5_c00342{letter-spacing:-1.509565px;}
.ls9_c00342{letter-spacing:-1.285925px;}
.lsb_c00342{letter-spacing:-1.230016px;}
.lse_c00342{letter-spacing:-0.726827px;}
.ls8_c00342{letter-spacing:-0.670918px;}
.ls7_c00342{letter-spacing:-0.417459px;}
.lsa_c00342{letter-spacing:-0.167729px;}
.ls4_c00342{letter-spacing:-0.120240px;}
.ls2_c00342{letter-spacing:-0.108000px;}
.ls3_c00342{letter-spacing:0.000000px;}
.lsd_c00342{letter-spacing:1.174106px;}
.lsc_c00342{letter-spacing:1.677294px;}
.ls1_c00342{letter-spacing:90.909335px;}
.ls0_c00342{letter-spacing:725.580000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:-14.909760px;}
.ws34_c00342{word-spacing:-3.130949px;}
.ws36_c00342{word-spacing:-0.726827px;}
.ws31_c00342{word-spacing:0.000000px;}
.ws35_c00342{word-spacing:0.055910px;}
.ws33_c00342{word-spacing:0.162000px;}
.ws32_c00342{word-spacing:0.270000px;}
.wsd_c00342{word-spacing:56.636627px;}
.ws10_c00342{word-spacing:67.818587px;}
.ws2f_c00342{word-spacing:84.697756px;}
.ws2d_c00342{word-spacing:84.703347px;}
.ws5_c00342{word-spacing:95.885307px;}
.wsc_c00342{word-spacing:108.336419px;}
.ws1a_c00342{word-spacing:123.719508px;}
.ws13_c00342{word-spacing:123.732992px;}
.ws27_c00342{word-spacing:123.737865px;}
.ws16_c00342{word-spacing:123.737985px;}
.ws21_c00342{word-spacing:123.738583px;}
.wsf_c00342{word-spacing:142.356905px;}
.ws11_c00342{word-spacing:142.369791px;}
.ws2_c00342{word-spacing:142.374664px;}
.ws9_c00342{word-spacing:142.375262px;}
.ws6_c00342{word-spacing:171.721360px;}
.ws2c_c00342{word-spacing:199.395487px;}
.wsa_c00342{word-spacing:199.395898px;}
.ws14_c00342{word-spacing:199.396085px;}
.ws3_c00342{word-spacing:199.396496px;}
.ws17_c00342{word-spacing:199.396683px;}
.ws7_c00342{word-spacing:235.564760px;}
.ws30_c00342{word-spacing:273.326239px;}
.ws1d_c00342{word-spacing:299.419343px;}
.wse_c00342{word-spacing:306.424841px;}
.ws19_c00342{word-spacing:308.023861px;}
.ws1e_c00342{word-spacing:319.149911px;}
.ws26_c00342{word-spacing:337.784648px;}
.ws1_c00342{word-spacing:344.225457px;}
.ws20_c00342{word-spacing:346.232618px;}
.ws2a_c00342{word-spacing:347.943458px;}
.ws1b_c00342{word-spacing:366.499921px;}
.ws1f_c00342{word-spacing:371.330528px;}
.ws1c_c00342{word-spacing:373.969470px;}
.ws2b_c00342{word-spacing:377.368786px;}
.ws2e_c00342{word-spacing:378.039704px;}
.ws24_c00342{word-spacing:378.788895px;}
.ws25_c00342{word-spacing:388.891796px;}
.ws29_c00342{word-spacing:403.612846px;}
.ws22_c00342{word-spacing:407.520941px;}
.ws28_c00342{word-spacing:412.334775px;}
.ws23_c00342{word-spacing:418.714083px;}
.ws18_c00342{word-spacing:422.510359px;}
.ws12_c00342{word-spacing:426.217178px;}
.ws15_c00342{word-spacing:431.025421px;}
.ws8_c00342{word-spacing:448.340686px;}
.ws4_c00342{word-spacing:925.050005px;}
.wsb_c00342{word-spacing:939.977922px;}
._6_c00342{margin-left:-2.963219px;}
._1_c00342{margin-left:-1.058400px;}
._0_c00342{width:1.225800px;}
._2_c00342{width:2.446098px;}
._4_c00342{width:3.951846px;}
._c_c00342{width:167.350838px;}
._f_c00342{width:168.391576px;}
._5_c00342{width:183.942754px;}
._8_c00342{width:204.481264px;}
._3_c00342{width:205.650177px;}
._b_c00342{width:220.086266px;}
._e_c00342{width:231.095704px;}
._d_c00342{width:259.779295px;}
._9_c00342{width:358.390249px;}
._7_c00342{width:387.003749px;}
._a_c00342{width:397.419505px;}
.fc0_c00342{color:rgb(0,0,0);}
.fs0_c00342{font-size:54.000000px;}
.fs3_c00342{font-size:55.909800px;}
.fs4_c00342{font-size:59.637000px;}
.fs2_c00342{font-size:60.120000px;}
.fs1_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y1a_c00342{bottom:4.657950px;}
.y17_c00342{bottom:4.658250px;}
.y23_c00342{bottom:4.658400px;}
.y14_c00342{bottom:4.658700px;}
.ya_c00342{bottom:4.658850px;}
.y10_c00342{bottom:4.659000px;}
.y1e_c00342{bottom:4.659150px;}
.yc_c00342{bottom:4.659300px;}
.y12_c00342{bottom:4.659600px;}
.y8_c00342{bottom:4.659750px;}
.ye_c00342{bottom:4.659900px;}
.y1c_c00342{bottom:4.660050px;}
.y32_c00342{bottom:57.330000px;}
.y6_c00342{bottom:134.822520px;}
.y5_c00342{bottom:148.590000px;}
.y31_c00342{bottom:150.459000px;}
.y30_c00342{bottom:170.026500px;}
.y2f_c00342{bottom:189.595500px;}
.y2e_c00342{bottom:209.163000px;}
.y2d_c00342{bottom:228.732000px;}
.y2c_c00342{bottom:248.301000px;}
.y2b_c00342{bottom:267.870000px;}
.y2a_c00342{bottom:287.437500px;}
.y29_c00342{bottom:307.006500px;}
.y28_c00342{bottom:326.574000px;}
.y27_c00342{bottom:346.143000px;}
.y26_c00342{bottom:365.710500px;}
.y25_c00342{bottom:385.279500px;}
.y24_c00342{bottom:404.848500px;}
.y22_c00342{bottom:424.417500px;}
.y21_c00342{bottom:443.985000px;}
.y20_c00342{bottom:463.554000px;}
.y1f_c00342{bottom:483.121500px;}
.y1d_c00342{bottom:502.690500px;}
.y1b_c00342{bottom:522.258000px;}
.y19_c00342{bottom:541.828500px;}
.y18_c00342{bottom:561.396000px;}
.y16_c00342{bottom:580.965000px;}
.y15_c00342{bottom:600.532500px;}
.y13_c00342{bottom:620.101500px;}
.y11_c00342{bottom:639.669000px;}
.yf_c00342{bottom:659.238000px;}
.yd_c00342{bottom:678.805500px;}
.yb_c00342{bottom:698.374500px;}
.y9_c00342{bottom:717.943500px;}
.y7_c00342{bottom:737.511000px;}
.y4_c00342{bottom:761.220000px;}
.y3_c00342{bottom:781.110000px;}
.y2_c00342{bottom:796.594500px;}
.y1_c00342{bottom:827.640000px;}
.h5_c00342{height:18.636000px;}
.h7_c00342{height:18.637500px;}
.h6_c00342{height:46.109205px;}
.h2_c00342{height:52.998047px;}
.h4_c00342{height:58.975137px;}
.h3_c00342{height:70.664062px;}
.h0_c00342{height:893.070000px;}
.h1_c00342{height:893.250000px;}
.w2_c00342{width:1048.237500px;}
.w0_c00342{width:1262.880000px;}
.w1_c00342{width:1263.000000px;}
.x0_c00342{left:0.000000px;}
.x7_c00342{left:13.091850px;}
.x8_c00342{left:16.832250px;}
.x6_c00342{left:19.637550px;}
.x2_c00342{left:106.380000px;}
.x5_c00342{left:107.404500px;}
.x1_c00342{left:631.440000px;}
.x4_c00342{left:1089.541170px;}
.x9_c00342{left:1129.590000px;}
.x3_c00342{left:1156.590000px;}
@media print{
.v1_c00342{vertical-align:-55.040000pt;}
.v2_c00342{vertical-align:-3.329739pt;}
.v0_c00342{vertical-align:0.000000pt;}
.v3_c00342{vertical-align:3.329739pt;}
.ls6_c00342{letter-spacing:-1.987904pt;}
.ls5_c00342{letter-spacing:-1.341835pt;}
.ls9_c00342{letter-spacing:-1.143045pt;}
.lsb_c00342{letter-spacing:-1.093347pt;}
.lse_c00342{letter-spacing:-0.646069pt;}
.ls8_c00342{letter-spacing:-0.596371pt;}
.ls7_c00342{letter-spacing:-0.371075pt;}
.lsa_c00342{letter-spacing:-0.149093pt;}
.ls4_c00342{letter-spacing:-0.106880pt;}
.ls2_c00342{letter-spacing:-0.096000pt;}
.ls3_c00342{letter-spacing:0.000000pt;}
.lsd_c00342{letter-spacing:1.043650pt;}
.lsc_c00342{letter-spacing:1.490928pt;}
.ls1_c00342{letter-spacing:80.808298pt;}
.ls0_c00342{letter-spacing:644.960000pt;}
.ws0_c00342{word-spacing:-13.253120pt;}
.ws34_c00342{word-spacing:-2.783066pt;}
.ws36_c00342{word-spacing:-0.646069pt;}
.ws31_c00342{word-spacing:0.000000pt;}
.ws35_c00342{word-spacing:0.049698pt;}
.ws33_c00342{word-spacing:0.144000pt;}
.ws32_c00342{word-spacing:0.240000pt;}
.wsd_c00342{word-spacing:50.343669pt;}
.ws10_c00342{word-spacing:60.283189pt;}
.ws2f_c00342{word-spacing:75.286894pt;}
.ws2d_c00342{word-spacing:75.291864pt;}
.ws5_c00342{word-spacing:85.231384pt;}
.wsc_c00342{word-spacing:96.299040pt;}
.ws1a_c00342{word-spacing:109.972896pt;}
.ws13_c00342{word-spacing:109.984881pt;}
.ws27_c00342{word-spacing:109.989213pt;}
.ws16_c00342{word-spacing:109.989320pt;}
.ws21_c00342{word-spacing:109.989851pt;}
.wsf_c00342{word-spacing:126.539471pt;}
.ws11_c00342{word-spacing:126.550925pt;}
.ws2_c00342{word-spacing:126.555257pt;}
.ws9_c00342{word-spacing:126.555789pt;}
.ws6_c00342{word-spacing:152.641209pt;}
.ws2c_c00342{word-spacing:177.240433pt;}
.wsa_c00342{word-spacing:177.240799pt;}
.ws14_c00342{word-spacing:177.240965pt;}
.ws3_c00342{word-spacing:177.241330pt;}
.ws17_c00342{word-spacing:177.241496pt;}
.ws7_c00342{word-spacing:209.390898pt;}
.ws30_c00342{word-spacing:242.956657pt;}
.ws1d_c00342{word-spacing:266.150527pt;}
.wse_c00342{word-spacing:272.377636pt;}
.ws19_c00342{word-spacing:273.798988pt;}
.ws1e_c00342{word-spacing:283.688810pt;}
.ws26_c00342{word-spacing:300.253020pt;}
.ws1_c00342{word-spacing:305.978184pt;}
.ws20_c00342{word-spacing:307.762328pt;}
.ws2a_c00342{word-spacing:309.283074pt;}
.ws1b_c00342{word-spacing:325.777708pt;}
.ws1f_c00342{word-spacing:330.071580pt;}
.ws1c_c00342{word-spacing:332.417307pt;}
.ws2b_c00342{word-spacing:335.438921pt;}
.ws2e_c00342{word-spacing:336.035292pt;}
.ws24_c00342{word-spacing:336.701240pt;}
.ws25_c00342{word-spacing:345.681596pt;}
.ws29_c00342{word-spacing:358.766974pt;}
.ws22_c00342{word-spacing:362.240837pt;}
.ws28_c00342{word-spacing:366.519800pt;}
.ws23_c00342{word-spacing:372.190296pt;}
.ws18_c00342{word-spacing:375.564763pt;}
.ws12_c00342{word-spacing:378.859714pt;}
.ws15_c00342{word-spacing:383.133708pt;}
.ws8_c00342{word-spacing:398.525054pt;}
.ws4_c00342{word-spacing:822.266671pt;}
.wsb_c00342{word-spacing:835.535930pt;}
._6_c00342{margin-left:-2.633973pt;}
._1_c00342{margin-left:-0.940800pt;}
._0_c00342{width:1.089600pt;}
._2_c00342{width:2.174310pt;}
._4_c00342{width:3.512752pt;}
._c_c00342{width:148.756301pt;}
._f_c00342{width:149.681401pt;}
._5_c00342{width:163.504671pt;}
._8_c00342{width:181.761124pt;}
._3_c00342{width:182.800157pt;}
._b_c00342{width:195.632237pt;}
._e_c00342{width:205.418404pt;}
._d_c00342{width:230.914929pt;}
._9_c00342{width:318.569110pt;}
._7_c00342{width:344.003333pt;}
._a_c00342{width:353.261782pt;}
.fs0_c00342{font-size:48.000000pt;}
.fs3_c00342{font-size:49.697600pt;}
.fs4_c00342{font-size:53.010667pt;}
.fs2_c00342{font-size:53.440000pt;}
.fs1_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y1a_c00342{bottom:4.140400pt;}
.y17_c00342{bottom:4.140667pt;}
.y23_c00342{bottom:4.140800pt;}
.y14_c00342{bottom:4.141067pt;}
.ya_c00342{bottom:4.141200pt;}
.y10_c00342{bottom:4.141333pt;}
.y1e_c00342{bottom:4.141467pt;}
.yc_c00342{bottom:4.141600pt;}
.y12_c00342{bottom:4.141867pt;}
.y8_c00342{bottom:4.142000pt;}
.ye_c00342{bottom:4.142133pt;}
.y1c_c00342{bottom:4.142267pt;}
.y32_c00342{bottom:50.960000pt;}
.y6_c00342{bottom:119.842240pt;}
.y5_c00342{bottom:132.080000pt;}
.y31_c00342{bottom:133.741333pt;}
.y30_c00342{bottom:151.134667pt;}
.y2f_c00342{bottom:168.529333pt;}
.y2e_c00342{bottom:185.922667pt;}
.y2d_c00342{bottom:203.317333pt;}
.y2c_c00342{bottom:220.712000pt;}
.y2b_c00342{bottom:238.106667pt;}
.y2a_c00342{bottom:255.500000pt;}
.y29_c00342{bottom:272.894667pt;}
.y28_c00342{bottom:290.288000pt;}
.y27_c00342{bottom:307.682667pt;}
.y26_c00342{bottom:325.076000pt;}
.y25_c00342{bottom:342.470667pt;}
.y24_c00342{bottom:359.865333pt;}
.y22_c00342{bottom:377.260000pt;}
.y21_c00342{bottom:394.653333pt;}
.y20_c00342{bottom:412.048000pt;}
.y1f_c00342{bottom:429.441333pt;}
.y1d_c00342{bottom:446.836000pt;}
.y1b_c00342{bottom:464.229333pt;}
.y19_c00342{bottom:481.625333pt;}
.y18_c00342{bottom:499.018667pt;}
.y16_c00342{bottom:516.413333pt;}
.y15_c00342{bottom:533.806667pt;}
.y13_c00342{bottom:551.201333pt;}
.y11_c00342{bottom:568.594667pt;}
.yf_c00342{bottom:585.989333pt;}
.yd_c00342{bottom:603.382667pt;}
.yb_c00342{bottom:620.777333pt;}
.y9_c00342{bottom:638.172000pt;}
.y7_c00342{bottom:655.565333pt;}
.y4_c00342{bottom:676.640000pt;}
.y3_c00342{bottom:694.320000pt;}
.y2_c00342{bottom:708.084000pt;}
.y1_c00342{bottom:735.680000pt;}
.h5_c00342{height:16.565333pt;}
.h7_c00342{height:16.566667pt;}
.h6_c00342{height:40.985960pt;}
.h2_c00342{height:47.109375pt;}
.h4_c00342{height:52.422344pt;}
.h3_c00342{height:62.812500pt;}
.h0_c00342{height:793.840000pt;}
.h1_c00342{height:794.000000pt;}
.w2_c00342{width:931.766667pt;}
.w0_c00342{width:1122.560000pt;}
.w1_c00342{width:1122.666667pt;}
.x0_c00342{left:0.000000pt;}
.x7_c00342{left:11.637200pt;}
.x8_c00342{left:14.962000pt;}
.x6_c00342{left:17.455600pt;}
.x2_c00342{left:94.560000pt;}
.x5_c00342{left:95.470667pt;}
.x1_c00342{left:561.280000pt;}
.x4_c00342{left:968.481040pt;}
.x9_c00342{left:1004.080000pt;}
.x3_c00342{left:1028.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_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_5f710d4c138ffe93bdce215a.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_8d1d1063d249fbae24d834be.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_39c40e9ee5558e4b831f69b8.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_19729fdf56ddc3d0bf075259.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:0.921875;font-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_c00343{transform:matrix(0.242445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242445,0.000000,0.000000,0.250000,0,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);}
.v1_c00343{vertical-align:-61.938000px;}
.v2_c00343{vertical-align:-3.876205px;}
.v0_c00343{vertical-align:0.000000px;}
.v3_c00343{vertical-align:3.876205px;}
.ls4_c00343{letter-spacing:-2.314152px;}
.ls9_c00343{letter-spacing:-1.562053px;}
.ls8_c00343{letter-spacing:-1.330637px;}
.lsd_c00343{letter-spacing:-1.272784px;}
.lsc_c00343{letter-spacing:-0.752099px;}
.ls7_c00343{letter-spacing:-0.694246px;}
.ls6_c00343{letter-spacing:-0.431974px;}
.ls5_c00343{letter-spacing:-0.173561px;}
.ls3_c00343{letter-spacing:-0.120240px;}
.ls2_c00343{letter-spacing:0.000000px;}
.lsa_c00343{letter-spacing:1.214930px;}
.lsb_c00343{letter-spacing:1.735614px;}
.ls1_c00343{letter-spacing:94.070279px;}
.ls0_c00343{letter-spacing:1144.260000px;}
.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:-14.909760px;}
.ws2e_c00343{word-spacing:-0.752099px;}
.ws30_c00343{word-spacing:-0.173561px;}
.ws2d_c00343{word-spacing:-0.162000px;}
.ws2c_c00343{word-spacing:0.000000px;}
.ws2f_c00343{word-spacing:0.057854px;}
.ws13_c00343{word-spacing:58.605899px;}
.ws1_c00343{word-spacing:70.176659px;}
.ws12_c00343{word-spacing:87.648507px;}
.ws6_c00343{word-spacing:99.219267px;}
.wsd_c00343{word-spacing:100.515192px;}
.wsb_c00343{word-spacing:112.085952px;}
.ws14_c00343{word-spacing:128.020652px;}
.ws17_c00343{word-spacing:128.039648px;}
.ws11_c00343{word-spacing:128.039772px;}
.ws22_c00343{word-spacing:128.040267px;}
.ws3_c00343{word-spacing:128.040390px;}
.wse_c00343{word-spacing:160.949272px;}
.ws7_c00343{word-spacing:177.692161px;}
.ws19_c00343{word-spacing:206.328540px;}
.ws4_c00343{word-spacing:206.329159px;}
.ws8_c00343{word-spacing:243.738059px;}
.ws2b_c00343{word-spacing:292.879077px;}
.ws10_c00343{word-spacing:298.710740px;}
.ws1c_c00343{word-spacing:337.958758px;}
.ws20_c00343{word-spacing:340.272910px;}
.ws9_c00343{word-spacing:340.701028px;}
.ws27_c00343{word-spacing:349.529518px;}
.ws1d_c00343{word-spacing:357.247215px;}
.ws2a_c00343{word-spacing:358.699345px;}
.ws2_c00343{word-spacing:365.016980px;}
.ws23_c00343{word-spacing:368.817975px;}
.ws18_c00343{word-spacing:379.272157px;}
.wsc_c00343{word-spacing:381.736729px;}
.ws29_c00343{word-spacing:390.848702px;}
.ws25_c00343{word-spacing:398.358125px;}
.wsf_c00343{word-spacing:398.595326px;}
.ws1a_c00343{word-spacing:400.828483px;}
.ws21_c00343{word-spacing:423.854295px;}
.ws15_c00343{word-spacing:431.433143px;}
.ws1b_c00343{word-spacing:435.430840px;}
.ws28_c00343{word-spacing:443.541943px;}
.ws24_c00343{word-spacing:456.466482px;}
.ws1e_c00343{word-spacing:462.836185px;}
.ws1f_c00343{word-spacing:463.599856px;}
.ws26_c00343{word-spacing:475.170616px;}
.ws16_c00343{word-spacing:521.453656px;}
.ws5_c00343{word-spacing:957.214263px;}
.wsa_c00343{word-spacing:972.661227px;}
._7_c00343{margin-left:-3.546438px;}
._6_c00343{margin-left:-2.545567px;}
._0_c00343{margin-left:-1.463701px;}
._1_c00343{width:1.365350px;}
._4_c00343{width:2.645845px;}
._2_c00343{width:4.130761px;}
._c_c00343{width:85.515641px;}
._8_c00343{width:173.806319px;}
._5_c00343{width:189.110575px;}
._d_c00343{width:190.215589px;}
._e_c00343{width:196.664355px;}
._3_c00343{width:211.999465px;}
._a_c00343{width:253.175947px;}
._9_c00343{width:288.277774px;}
._b_c00343{width:377.442050px;}
.fc0_c00343{color:rgb(0,0,0);}
.fs0_c00343{font-size:54.000000px;}
.fs3_c00343{font-size:57.853800px;}
.fs2_c00343{font-size:60.120000px;}
.fs4_c00343{font-size:61.710600px;}
.fs1_c00343{font-size:72.000000px;}
.y0_c00343{bottom:0.000000px;}
.y31_c00343{bottom:4.819800px;}
.y21_c00343{bottom:4.819950px;}
.y1f_c00343{bottom:4.820250px;}
.y9_c00343{bottom:4.820400px;}
.y2e_c00343{bottom:4.820550px;}
.y7_c00343{bottom:4.820700px;}
.yf_c00343{bottom:4.820850px;}
.y1c_c00343{bottom:4.821000px;}
.yd_c00343{bottom:4.821150px;}
.y1a_c00343{bottom:4.821300px;}
.yb_c00343{bottom:4.821450px;}
.y13_c00343{bottom:4.821600px;}
.y11_c00343{bottom:4.821900px;}
.y17_c00343{bottom:4.822050px;}
.y24_c00343{bottom:4.822200px;}
.y33_c00343{bottom:57.330000px;}
.y5_c00343{bottom:133.920000px;}
.y32_c00343{bottom:149.614500px;}
.y30_c00343{bottom:169.864500px;}
.y2f_c00343{bottom:190.113000px;}
.y2d_c00343{bottom:210.361500px;}
.y2c_c00343{bottom:230.610000px;}
.y2b_c00343{bottom:250.858500px;}
.y2a_c00343{bottom:271.107000px;}
.y29_c00343{bottom:291.357000px;}
.y28_c00343{bottom:311.605500px;}
.y27_c00343{bottom:331.854000px;}
.y26_c00343{bottom:352.102500px;}
.y25_c00343{bottom:372.351000px;}
.y23_c00343{bottom:392.599500px;}
.y22_c00343{bottom:412.849500px;}
.y20_c00343{bottom:433.099500px;}
.y1e_c00343{bottom:453.348000px;}
.y1d_c00343{bottom:473.596500px;}
.y1b_c00343{bottom:493.845000px;}
.y19_c00343{bottom:514.093500px;}
.y18_c00343{bottom:534.342000px;}
.y16_c00343{bottom:554.590500px;}
.y15_c00343{bottom:574.840500px;}
.y14_c00343{bottom:595.089000px;}
.y12_c00343{bottom:615.337500px;}
.y10_c00343{bottom:635.586000px;}
.ye_c00343{bottom:655.836000px;}
.yc_c00343{bottom:676.084500px;}
.ya_c00343{bottom:696.333000px;}
.y8_c00343{bottom:716.583000px;}
.y6_c00343{bottom:736.831500px;}
.y4_c00343{bottom:761.220000px;}
.y3_c00343{bottom:781.105500px;}
.y2_c00343{bottom:796.590000px;}
.y1_c00343{bottom:827.640000px;}
.h7_c00343{height:19.284000px;}
.h5_c00343{height:19.285500px;}
.h6_c00343{height:47.712436px;}
.h2_c00343{height:52.998047px;}
.h4_c00343{height:58.975137px;}
.h3_c00343{height:70.664062px;}
.h0_c00343{height:893.070000px;}
.h1_c00343{height:893.250000px;}
.w2_c00343{width:1048.236000px;}
.w0_c00343{width:1262.880000px;}
.w1_c00343{width:1263.000000px;}
.x0_c00343{left:0.000000px;}
.x5_c00343{left:13.090350px;}
.x4_c00343{left:16.830750px;}
.x6_c00343{left:19.636050px;}
.x2_c00343{left:106.380000px;}
.x1_c00343{left:631.440000px;}
.x3_c00343{left:1089.540000px;}
@media print{
.v1_c00343{vertical-align:-55.056000pt;}
.v2_c00343{vertical-align:-3.445515pt;}
.v0_c00343{vertical-align:0.000000pt;}
.v3_c00343{vertical-align:3.445515pt;}
.ls4_c00343{letter-spacing:-2.057024pt;}
.ls9_c00343{letter-spacing:-1.388491pt;}
.ls8_c00343{letter-spacing:-1.182789pt;}
.lsd_c00343{letter-spacing:-1.131363pt;}
.lsc_c00343{letter-spacing:-0.668533pt;}
.ls7_c00343{letter-spacing:-0.617107pt;}
.ls6_c00343{letter-spacing:-0.383977pt;}
.ls5_c00343{letter-spacing:-0.154277pt;}
.ls3_c00343{letter-spacing:-0.106880pt;}
.ls2_c00343{letter-spacing:0.000000pt;}
.lsa_c00343{letter-spacing:1.079938pt;}
.lsb_c00343{letter-spacing:1.542768pt;}
.ls1_c00343{letter-spacing:83.618026pt;}
.ls0_c00343{letter-spacing:1017.120000pt;}
.ws0_c00343{word-spacing:-13.253120pt;}
.ws2e_c00343{word-spacing:-0.668533pt;}
.ws30_c00343{word-spacing:-0.154277pt;}
.ws2d_c00343{word-spacing:-0.144000pt;}
.ws2c_c00343{word-spacing:0.000000pt;}
.ws2f_c00343{word-spacing:0.051426pt;}
.ws13_c00343{word-spacing:52.094133pt;}
.ws1_c00343{word-spacing:62.379253pt;}
.ws12_c00343{word-spacing:77.909784pt;}
.ws6_c00343{word-spacing:88.194904pt;}
.wsd_c00343{word-spacing:89.346837pt;}
.wsb_c00343{word-spacing:99.631957pt;}
.ws14_c00343{word-spacing:113.796135pt;}
.ws17_c00343{word-spacing:113.813020pt;}
.ws11_c00343{word-spacing:113.813130pt;}
.ws22_c00343{word-spacing:113.813570pt;}
.ws3_c00343{word-spacing:113.813680pt;}
.wse_c00343{word-spacing:143.066019pt;}
.ws7_c00343{word-spacing:157.948588pt;}
.ws19_c00343{word-spacing:183.403147pt;}
.ws4_c00343{word-spacing:183.403697pt;}
.ws8_c00343{word-spacing:216.656053pt;}
.ws2b_c00343{word-spacing:260.336957pt;}
.ws10_c00343{word-spacing:265.520658pt;}
.ws1c_c00343{word-spacing:300.407785pt;}
.ws20_c00343{word-spacing:302.464809pt;}
.ws9_c00343{word-spacing:302.845358pt;}
.ws27_c00343{word-spacing:310.692905pt;}
.ws1d_c00343{word-spacing:317.553080pt;}
.ws2a_c00343{word-spacing:318.843863pt;}
.ws2_c00343{word-spacing:324.459538pt;}
.ws23_c00343{word-spacing:327.838200pt;}
.ws18_c00343{word-spacing:337.130806pt;}
.wsc_c00343{word-spacing:339.321536pt;}
.ws29_c00343{word-spacing:347.421068pt;}
.ws25_c00343{word-spacing:354.096111pt;}
.wsf_c00343{word-spacing:354.306956pt;}
.ws1a_c00343{word-spacing:356.291984pt;}
.ws21_c00343{word-spacing:376.759373pt;}
.ws15_c00343{word-spacing:383.496127pt;}
.ws1b_c00343{word-spacing:387.049636pt;}
.ws28_c00343{word-spacing:394.259505pt;}
.ws24_c00343{word-spacing:405.747984pt;}
.ws1e_c00343{word-spacing:411.409943pt;}
.ws1f_c00343{word-spacing:412.088760pt;}
.ws26_c00343{word-spacing:422.373880pt;}
.ws16_c00343{word-spacing:463.514360pt;}
.ws5_c00343{word-spacing:850.857122pt;}
.wsa_c00343{word-spacing:864.587757pt;}
._7_c00343{margin-left:-3.152389pt;}
._6_c00343{margin-left:-2.262726pt;}
._0_c00343{margin-left:-1.301068pt;}
._1_c00343{width:1.213644pt;}
._4_c00343{width:2.351862pt;}
._2_c00343{width:3.671788pt;}
._c_c00343{width:76.013903pt;}
._8_c00343{width:154.494506pt;}
._5_c00343{width:168.098289pt;}
._d_c00343{width:169.080524pt;}
._e_c00343{width:174.812760pt;}
._3_c00343{width:188.443969pt;}
._a_c00343{width:225.045286pt;}
._9_c00343{width:256.246910pt;}
._b_c00343{width:335.504045pt;}
.fs0_c00343{font-size:48.000000pt;}
.fs3_c00343{font-size:51.425600pt;}
.fs2_c00343{font-size:53.440000pt;}
.fs4_c00343{font-size:54.853867pt;}
.fs1_c00343{font-size:64.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y31_c00343{bottom:4.284267pt;}
.y21_c00343{bottom:4.284400pt;}
.y1f_c00343{bottom:4.284667pt;}
.y9_c00343{bottom:4.284800pt;}
.y2e_c00343{bottom:4.284933pt;}
.y7_c00343{bottom:4.285067pt;}
.yf_c00343{bottom:4.285200pt;}
.y1c_c00343{bottom:4.285333pt;}
.yd_c00343{bottom:4.285467pt;}
.y1a_c00343{bottom:4.285600pt;}
.yb_c00343{bottom:4.285733pt;}
.y13_c00343{bottom:4.285867pt;}
.y11_c00343{bottom:4.286133pt;}
.y17_c00343{bottom:4.286267pt;}
.y24_c00343{bottom:4.286400pt;}
.y33_c00343{bottom:50.960000pt;}
.y5_c00343{bottom:119.040000pt;}
.y32_c00343{bottom:132.990667pt;}
.y30_c00343{bottom:150.990667pt;}
.y2f_c00343{bottom:168.989333pt;}
.y2d_c00343{bottom:186.988000pt;}
.y2c_c00343{bottom:204.986667pt;}
.y2b_c00343{bottom:222.985333pt;}
.y2a_c00343{bottom:240.984000pt;}
.y29_c00343{bottom:258.984000pt;}
.y28_c00343{bottom:276.982667pt;}
.y27_c00343{bottom:294.981333pt;}
.y26_c00343{bottom:312.980000pt;}
.y25_c00343{bottom:330.978667pt;}
.y23_c00343{bottom:348.977333pt;}
.y22_c00343{bottom:366.977333pt;}
.y20_c00343{bottom:384.977333pt;}
.y1e_c00343{bottom:402.976000pt;}
.y1d_c00343{bottom:420.974667pt;}
.y1b_c00343{bottom:438.973333pt;}
.y19_c00343{bottom:456.972000pt;}
.y18_c00343{bottom:474.970667pt;}
.y16_c00343{bottom:492.969333pt;}
.y15_c00343{bottom:510.969333pt;}
.y14_c00343{bottom:528.968000pt;}
.y12_c00343{bottom:546.966667pt;}
.y10_c00343{bottom:564.965333pt;}
.ye_c00343{bottom:582.965333pt;}
.yc_c00343{bottom:600.964000pt;}
.ya_c00343{bottom:618.962667pt;}
.y8_c00343{bottom:636.962667pt;}
.y6_c00343{bottom:654.961333pt;}
.y4_c00343{bottom:676.640000pt;}
.y3_c00343{bottom:694.316000pt;}
.y2_c00343{bottom:708.080000pt;}
.y1_c00343{bottom:735.680000pt;}
.h7_c00343{height:17.141333pt;}
.h5_c00343{height:17.142667pt;}
.h6_c00343{height:42.411054pt;}
.h2_c00343{height:47.109375pt;}
.h4_c00343{height:52.422344pt;}
.h3_c00343{height:62.812500pt;}
.h0_c00343{height:793.840000pt;}
.h1_c00343{height:794.000000pt;}
.w2_c00343{width:931.765333pt;}
.w0_c00343{width:1122.560000pt;}
.w1_c00343{width:1122.666667pt;}
.x0_c00343{left:0.000000pt;}
.x5_c00343{left:11.635867pt;}
.x4_c00343{left:14.960667pt;}
.x6_c00343{left:17.454267pt;}
.x2_c00343{left:94.560000pt;}
.x1_c00343{left:561.280000pt;}
.x3_c00343{left:968.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_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_cbf88b7141c5765296c83608.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_58809f3c3b5f50b2cd386e32.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_7d68c364617c03e697a905a2.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_0d1a4ffb5ed32c7a7e3a2e3e.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m3_c00344{transform:matrix(0.258694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258694,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.258697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258697,0.000000,0.000000,0.250000,0,0);}
.v1_c00344{vertical-align:-61.920000px;}
.v2_c00344{vertical-align:-3.632070px;}
.v0_c00344{vertical-align:0.000000px;}
.v3_c00344{vertical-align:3.632070px;}
.ls4_c00344{letter-spacing:-2.168400px;}
.ls10_c00344{letter-spacing:-1.785331px;}
.lse_c00344{letter-spacing:-1.517880px;}
.ls5_c00344{letter-spacing:-1.463670px;}
.ls9_c00344{letter-spacing:-1.246830px;}
.lsc_c00344{letter-spacing:-1.192620px;}
.lsf_c00344{letter-spacing:-0.704730px;}
.ls7_c00344{letter-spacing:-0.650520px;}
.ls6_c00344{letter-spacing:-0.404771px;}
.lsb_c00344{letter-spacing:-0.379470px;}
.lsa_c00344{letter-spacing:-0.162630px;}
.ls2_c00344{letter-spacing:-0.108000px;}
.ls3_c00344{letter-spacing:0.000000px;}
.ls12_c00344{letter-spacing:0.845683px;}
.ls8_c00344{letter-spacing:1.138410px;}
.lsd_c00344{letter-spacing:1.626300px;}
.ls11_c00344{letter-spacing:1.832314px;}
.ls1_c00344{letter-spacing:236.355600px;}
.ls0_c00344{letter-spacing:725.580000px;}
.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;}
}
.ws3_c00344{word-spacing:-12.663544px;}
.ws2e_c00344{word-spacing:-2.724979px;}
.ws2f_c00344{word-spacing:-1.738349px;}
.ws2a_c00344{word-spacing:-1.246830px;}
.ws27_c00344{word-spacing:0.000000px;}
.ws2c_c00344{word-spacing:0.054210px;}
.ws29_c00344{word-spacing:0.162000px;}
.ws28_c00344{word-spacing:0.270000px;}
.ws2d_c00344{word-spacing:0.892666px;}
.ws2b_c00344{word-spacing:2.168400px;}
.ws14_c00344{word-spacing:54.914730px;}
.ws0_c00344{word-spacing:65.756730px;}
.ws26_c00344{word-spacing:82.122729px;}
.ws5_c00344{word-spacing:82.128150px;}
.ws9_c00344{word-spacing:92.970150px;}
.wse_c00344{word-spacing:94.184454px;}
.wsf_c00344{word-spacing:150.812220px;}
.wsa_c00344{word-spacing:166.500594px;}
.ws2_c00344{word-spacing:188.564064px;}
.ws19_c00344{word-spacing:217.560993px;}
.ws6_c00344{word-spacing:228.402993px;}
.ws1_c00344{word-spacing:228.852936px;}
.ws13_c00344{word-spacing:275.424747px;}
.ws1e_c00344{word-spacing:287.762943px;}
.ws1f_c00344{word-spacing:298.604943px;}
.ws18_c00344{word-spacing:302.865849px;}
.ws1a_c00344{word-spacing:305.831136px;}
.ws23_c00344{word-spacing:310.531143px;}
.wsb_c00344{word-spacing:323.899329px;}
.ws10_c00344{word-spacing:340.975479px;}
.ws11_c00344{word-spacing:349.199136px;}
.ws25_c00344{word-spacing:351.367536px;}
.ws24_c00344{word-spacing:356.132595px;}
.wsc_c00344{word-spacing:361.369281px;}
.ws20_c00344{word-spacing:372.981063px;}
.ws22_c00344{word-spacing:374.498943px;}
.ws17_c00344{word-spacing:391.580514px;}
.ws8_c00344{word-spacing:395.461950px;}
.ws7_c00344{word-spacing:399.543963px;}
.ws1c_c00344{word-spacing:402.492987px;}
.ws15_c00344{word-spacing:403.485030px;}
.ws1d_c00344{word-spacing:405.994953px;}
.ws16_c00344{word-spacing:415.389546px;}
.ws12_c00344{word-spacing:417.042951px;}
.ws21_c00344{word-spacing:450.251997px;}
.ws1b_c00344{word-spacing:452.978760px;}
.ws4_c00344{word-spacing:896.926134px;}
.wsd_c00344{word-spacing:911.400204px;}
._c_c00344{margin-left:-6.371502px;}
._a_c00344{margin-left:-5.262029px;}
._b_c00344{margin-left:-4.180456px;}
._4_c00344{margin-left:-3.125307px;}
._d_c00344{margin-left:-2.085729px;}
._1_c00344{margin-left:-1.058400px;}
._0_c00344{width:1.225800px;}
._2_c00344{width:3.271014px;}
._9_c00344{width:5.757660px;}
._5_c00344{width:132.120216px;}
._3_c00344{width:162.406704px;}
._8_c00344{width:164.944578px;}
._7_c00344{width:176.826564px;}
._6_c00344{width:270.430506px;}
.fc0_c00344{color:rgb(0,0,0);}
.fs5_c00344{font-size:46.982400px;}
.fs0_c00344{font-size:54.000000px;}
.fs3_c00344{font-size:54.210000px;}
.fs4_c00344{font-size:57.824400px;}
.fs2_c00344{font-size:60.120000px;}
.fs1_c00344{font-size:72.000000px;}
.y0_c00344{bottom:0.000000px;}
.y27_c00344{bottom:3.613050px;}
.y23_c00344{bottom:3.613200px;}
.y1e_c00344{bottom:3.613350px;}
.y15_c00344{bottom:3.613500px;}
.y10_c00344{bottom:3.613650px;}
.yc_c00344{bottom:3.613800px;}
.y9_c00344{bottom:3.613950px;}
.y3a_c00344{bottom:3.614100px;}
.y37_c00344{bottom:3.614250px;}
.y32_c00344{bottom:3.614400px;}
.y2e_c00344{bottom:3.614550px;}
.y25_c00344{bottom:3.614700px;}
.y1a_c00344{bottom:3.614850px;}
.y1b_c00344{bottom:3.615000px;}
.y2b_c00344{bottom:4.516650px;}
.y22_c00344{bottom:4.516800px;}
.y1d_c00344{bottom:4.516950px;}
.y14_c00344{bottom:4.517100px;}
.yf_c00344{bottom:4.517250px;}
.y8_c00344{bottom:4.517400px;}
.yb_c00344{bottom:4.517550px;}
.y36_c00344{bottom:4.517700px;}
.y31_c00344{bottom:4.517850px;}
.y2d_c00344{bottom:4.518000px;}
.y29_c00344{bottom:4.518150px;}
.y20_c00344{bottom:4.518300px;}
.y3e_c00344{bottom:4.518450px;}
.y19_c00344{bottom:4.518600px;}
.y40_c00344{bottom:5.420400px;}
.y44_c00344{bottom:57.330000px;}
.y6_c00344{bottom:136.172520px;}
.y5_c00344{bottom:149.940000px;}
.y43_c00344{bottom:151.734000px;}
.y42_c00344{bottom:169.803000px;}
.y41_c00344{bottom:187.873500px;}
.y3f_c00344{bottom:205.944000px;}
.y3d_c00344{bottom:224.916000px;}
.y3c_c00344{bottom:244.794000px;}
.y3b_c00344{bottom:263.767500px;}
.y39_c00344{bottom:282.741000px;}
.y38_c00344{bottom:301.714500px;}
.y35_c00344{bottom:320.688000px;}
.y34_c00344{bottom:339.661500px;}
.y33_c00344{bottom:358.635000px;}
.y30_c00344{bottom:377.608500px;}
.y2f_c00344{bottom:396.582000px;}
.y2c_c00344{bottom:415.555500px;}
.y2a_c00344{bottom:434.530500px;}
.y28_c00344{bottom:453.502500px;}
.y26_c00344{bottom:472.477500px;}
.y24_c00344{bottom:491.449500px;}
.y21_c00344{bottom:510.424500px;}
.y1f_c00344{bottom:529.396500px;}
.y1c_c00344{bottom:548.371500px;}
.y18_c00344{bottom:567.343500px;}
.y17_c00344{bottom:586.318500px;}
.y16_c00344{bottom:605.292000px;}
.y13_c00344{bottom:624.265500px;}
.y12_c00344{bottom:643.239000px;}
.y11_c00344{bottom:662.212500px;}
.ye_c00344{bottom:681.186000px;}
.yd_c00344{bottom:700.159500px;}
.ya_c00344{bottom:719.133000px;}
.y7_c00344{bottom:738.106500px;}
.y4_c00344{bottom:761.220000px;}
.y3_c00344{bottom:781.110000px;}
.y2_c00344{bottom:796.594500px;}
.y1_c00344{bottom:827.640000px;}
.hd_c00344{height:17.166000px;}
.h5_c00344{height:18.069000px;}
.h9_c00344{height:18.070500px;}
.ha_c00344{height:18.975000px;}
.hb_c00344{height:40.313394px;}
.h7_c00344{height:43.001251px;}
.h8_c00344{height:43.945464px;}
.h6_c00344{height:44.707368px;}
.he_c00344{height:46.110656px;}
.hc_c00344{height:47.349450px;}
.h2_c00344{height:52.998047px;}
.h4_c00344{height:59.004492px;}
.h3_c00344{height:70.664062px;}
.h0_c00344{height:893.070000px;}
.h1_c00344{height:893.250000px;}
.w3_c00344{width:999.439500px;}
.w2_c00344{width:1048.056000px;}
.w0_c00344{width:1262.880000px;}
.w1_c00344{width:1263.000000px;}
.x0_c00344{left:0.000000px;}
.x9_c00344{left:1.869750px;}
.x7_c00344{left:13.087950px;}
.x4_c00344{left:16.827750px;}
.x2_c00344{left:106.380000px;}
.x8_c00344{left:154.996500px;}
.x5_c00344{left:373.971000px;}
.x6_c00344{left:488.032500px;}
.x1_c00344{left:631.440000px;}
.xa_c00344{left:1129.590000px;}
.x3_c00344{left:1156.320000px;}
@media print{
.v1_c00344{vertical-align:-55.040000pt;}
.v2_c00344{vertical-align:-3.228507pt;}
.v0_c00344{vertical-align:0.000000pt;}
.v3_c00344{vertical-align:3.228507pt;}
.ls4_c00344{letter-spacing:-1.927467pt;}
.ls10_c00344{letter-spacing:-1.586961pt;}
.lse_c00344{letter-spacing:-1.349227pt;}
.ls5_c00344{letter-spacing:-1.301040pt;}
.ls9_c00344{letter-spacing:-1.108293pt;}
.lsc_c00344{letter-spacing:-1.060107pt;}
.lsf_c00344{letter-spacing:-0.626427pt;}
.ls7_c00344{letter-spacing:-0.578240pt;}
.ls6_c00344{letter-spacing:-0.359796pt;}
.lsb_c00344{letter-spacing:-0.337307pt;}
.lsa_c00344{letter-spacing:-0.144560pt;}
.ls2_c00344{letter-spacing:-0.096000pt;}
.ls3_c00344{letter-spacing:0.000000pt;}
.ls12_c00344{letter-spacing:0.751718pt;}
.ls8_c00344{letter-spacing:1.011920pt;}
.lsd_c00344{letter-spacing:1.445600pt;}
.ls11_c00344{letter-spacing:1.628723pt;}
.ls1_c00344{letter-spacing:210.093867pt;}
.ls0_c00344{letter-spacing:644.960000pt;}
.ws3_c00344{word-spacing:-11.256483pt;}
.ws2e_c00344{word-spacing:-2.422204pt;}
.ws2f_c00344{word-spacing:-1.545199pt;}
.ws2a_c00344{word-spacing:-1.108293pt;}
.ws27_c00344{word-spacing:0.000000pt;}
.ws2c_c00344{word-spacing:0.048187pt;}
.ws29_c00344{word-spacing:0.144000pt;}
.ws28_c00344{word-spacing:0.240000pt;}
.ws2d_c00344{word-spacing:0.793481pt;}
.ws2b_c00344{word-spacing:1.927467pt;}
.ws14_c00344{word-spacing:48.813093pt;}
.ws0_c00344{word-spacing:58.450427pt;}
.ws26_c00344{word-spacing:72.997981pt;}
.ws5_c00344{word-spacing:73.002800pt;}
.ws9_c00344{word-spacing:82.640133pt;}
.wse_c00344{word-spacing:83.719515pt;}
.wsf_c00344{word-spacing:134.055307pt;}
.wsa_c00344{word-spacing:148.000528pt;}
.ws2_c00344{word-spacing:167.612501pt;}
.ws19_c00344{word-spacing:193.387549pt;}
.ws6_c00344{word-spacing:203.024883pt;}
.ws1_c00344{word-spacing:203.424832pt;}
.ws13_c00344{word-spacing:244.821997pt;}
.ws1e_c00344{word-spacing:255.789283pt;}
.ws1f_c00344{word-spacing:265.426616pt;}
.ws18_c00344{word-spacing:269.214088pt;}
.ws1a_c00344{word-spacing:271.849899pt;}
.ws23_c00344{word-spacing:276.027683pt;}
.wsb_c00344{word-spacing:287.910515pt;}
.ws10_c00344{word-spacing:303.089315pt;}
.ws11_c00344{word-spacing:310.399232pt;}
.ws25_c00344{word-spacing:312.326699pt;}
.ws24_c00344{word-spacing:316.562307pt;}
.wsc_c00344{word-spacing:321.217139pt;}
.ws20_c00344{word-spacing:331.538723pt;}
.ws22_c00344{word-spacing:332.887949pt;}
.ws17_c00344{word-spacing:348.071568pt;}
.ws8_c00344{word-spacing:351.521733pt;}
.ws7_c00344{word-spacing:355.150189pt;}
.ws1c_c00344{word-spacing:357.771544pt;}
.ws15_c00344{word-spacing:358.653360pt;}
.ws1d_c00344{word-spacing:360.884403pt;}
.ws16_c00344{word-spacing:369.235152pt;}
.ws12_c00344{word-spacing:370.704845pt;}
.ws21_c00344{word-spacing:400.223997pt;}
.ws1b_c00344{word-spacing:402.647787pt;}
.ws4_c00344{word-spacing:797.267675pt;}
.wsd_c00344{word-spacing:810.133515pt;}
._c_c00344{margin-left:-5.663557pt;}
._a_c00344{margin-left:-4.677359pt;}
._b_c00344{margin-left:-3.715961pt;}
._4_c00344{margin-left:-2.778051pt;}
._d_c00344{margin-left:-1.853981pt;}
._1_c00344{margin-left:-0.940800pt;}
._0_c00344{width:1.089600pt;}
._2_c00344{width:2.907568pt;}
._9_c00344{width:5.117920pt;}
._5_c00344{width:117.440192pt;}
._3_c00344{width:144.361515pt;}
._8_c00344{width:146.617403pt;}
._7_c00344{width:157.179168pt;}
._6_c00344{width:240.382672pt;}
.fs5_c00344{font-size:41.762133pt;}
.fs0_c00344{font-size:48.000000pt;}
.fs3_c00344{font-size:48.186667pt;}
.fs4_c00344{font-size:51.399467pt;}
.fs2_c00344{font-size:53.440000pt;}
.fs1_c00344{font-size:64.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y27_c00344{bottom:3.211600pt;}
.y23_c00344{bottom:3.211733pt;}
.y1e_c00344{bottom:3.211867pt;}
.y15_c00344{bottom:3.212000pt;}
.y10_c00344{bottom:3.212133pt;}
.yc_c00344{bottom:3.212267pt;}
.y9_c00344{bottom:3.212400pt;}
.y3a_c00344{bottom:3.212533pt;}
.y37_c00344{bottom:3.212667pt;}
.y32_c00344{bottom:3.212800pt;}
.y2e_c00344{bottom:3.212933pt;}
.y25_c00344{bottom:3.213067pt;}
.y1a_c00344{bottom:3.213200pt;}
.y1b_c00344{bottom:3.213333pt;}
.y2b_c00344{bottom:4.014800pt;}
.y22_c00344{bottom:4.014933pt;}
.y1d_c00344{bottom:4.015067pt;}
.y14_c00344{bottom:4.015200pt;}
.yf_c00344{bottom:4.015333pt;}
.y8_c00344{bottom:4.015467pt;}
.yb_c00344{bottom:4.015600pt;}
.y36_c00344{bottom:4.015733pt;}
.y31_c00344{bottom:4.015867pt;}
.y2d_c00344{bottom:4.016000pt;}
.y29_c00344{bottom:4.016133pt;}
.y20_c00344{bottom:4.016267pt;}
.y3e_c00344{bottom:4.016400pt;}
.y19_c00344{bottom:4.016533pt;}
.y40_c00344{bottom:4.818133pt;}
.y44_c00344{bottom:50.960000pt;}
.y6_c00344{bottom:121.042240pt;}
.y5_c00344{bottom:133.280000pt;}
.y43_c00344{bottom:134.874667pt;}
.y42_c00344{bottom:150.936000pt;}
.y41_c00344{bottom:166.998667pt;}
.y3f_c00344{bottom:183.061333pt;}
.y3d_c00344{bottom:199.925333pt;}
.y3c_c00344{bottom:217.594667pt;}
.y3b_c00344{bottom:234.460000pt;}
.y39_c00344{bottom:251.325333pt;}
.y38_c00344{bottom:268.190667pt;}
.y35_c00344{bottom:285.056000pt;}
.y34_c00344{bottom:301.921333pt;}
.y33_c00344{bottom:318.786667pt;}
.y30_c00344{bottom:335.652000pt;}
.y2f_c00344{bottom:352.517333pt;}
.y2c_c00344{bottom:369.382667pt;}
.y2a_c00344{bottom:386.249333pt;}
.y28_c00344{bottom:403.113333pt;}
.y26_c00344{bottom:419.980000pt;}
.y24_c00344{bottom:436.844000pt;}
.y21_c00344{bottom:453.710667pt;}
.y1f_c00344{bottom:470.574667pt;}
.y1c_c00344{bottom:487.441333pt;}
.y18_c00344{bottom:504.305333pt;}
.y17_c00344{bottom:521.172000pt;}
.y16_c00344{bottom:538.037333pt;}
.y13_c00344{bottom:554.902667pt;}
.y12_c00344{bottom:571.768000pt;}
.y11_c00344{bottom:588.633333pt;}
.ye_c00344{bottom:605.498667pt;}
.yd_c00344{bottom:622.364000pt;}
.ya_c00344{bottom:639.229333pt;}
.y7_c00344{bottom:656.094667pt;}
.y4_c00344{bottom:676.640000pt;}
.y3_c00344{bottom:694.320000pt;}
.y2_c00344{bottom:708.084000pt;}
.y1_c00344{bottom:735.680000pt;}
.hd_c00344{height:15.258667pt;}
.h5_c00344{height:16.061333pt;}
.h9_c00344{height:16.062667pt;}
.ha_c00344{height:16.866667pt;}
.hb_c00344{height:35.834128pt;}
.h7_c00344{height:38.223334pt;}
.h8_c00344{height:39.062634pt;}
.h6_c00344{height:39.739883pt;}
.he_c00344{height:40.987250pt;}
.hc_c00344{height:42.088400pt;}
.h2_c00344{height:47.109375pt;}
.h4_c00344{height:52.448437pt;}
.h3_c00344{height:62.812500pt;}
.h0_c00344{height:793.840000pt;}
.h1_c00344{height:794.000000pt;}
.w3_c00344{width:888.390667pt;}
.w2_c00344{width:931.605333pt;}
.w0_c00344{width:1122.560000pt;}
.w1_c00344{width:1122.666667pt;}
.x0_c00344{left:0.000000pt;}
.x9_c00344{left:1.662000pt;}
.x7_c00344{left:11.633733pt;}
.x4_c00344{left:14.958000pt;}
.x2_c00344{left:94.560000pt;}
.x8_c00344{left:137.774667pt;}
.x5_c00344{left:332.418667pt;}
.x6_c00344{left:433.806667pt;}
.x1_c00344{left:561.280000pt;}
.xa_c00344{left:1004.080000pt;}
.x3_c00344{left:1027.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_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_48639be3c8944a243b38f3b0.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_f36693ea2e41de4ffdeb5b09.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;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_c00345;src:url('chunks/assets/font_13ba25df88ce274ea8e055be.woff2')format("woff");}.ff4_c00345{font-family:ff4_c00345;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00345;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00345;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00345{vertical-align:-61.938000px;}
.v5_c00345{vertical-align:-20.880000px;}
.v3_c00345{vertical-align:-14.760000px;}
.v0_c00345{vertical-align:0.000000px;}
.v4_c00345{vertical-align:14.760000px;}
.v2_c00345{vertical-align:27.000000px;}
.ls15_c00345{letter-spacing:-0.576000px;}
.ls11_c00345{letter-spacing:-0.432000px;}
.ls13_c00345{letter-spacing:-0.360000px;}
.ls16_c00345{letter-spacing:-0.288000px;}
.ls14_c00345{letter-spacing:-0.216000px;}
.ls19_c00345{letter-spacing:-0.180360px;}
.ls12_c00345{letter-spacing:-0.144000px;}
.ls18_c00345{letter-spacing:-0.120240px;}
.ls10_c00345{letter-spacing:-0.072000px;}
.ls17_c00345{letter-spacing:-0.060120px;}
.lsf_c00345{letter-spacing:0.000000px;}
.ls3_c00345{letter-spacing:0.072000px;}
.ls7_c00345{letter-spacing:0.144000px;}
.ls1a_c00345{letter-spacing:0.180360px;}
.ls4_c00345{letter-spacing:0.191520px;}
.ls5_c00345{letter-spacing:0.360000px;}
.lsb_c00345{letter-spacing:1.800000px;}
.lsa_c00345{letter-spacing:11.880000px;}
.lsd_c00345{letter-spacing:12.324600px;}
.lse_c00345{letter-spacing:12.390732px;}
.lsc_c00345{letter-spacing:16.221600px;}
.ls8_c00345{letter-spacing:20.016000px;}
.ls9_c00345{letter-spacing:22.320000px;}
.ls6_c00345{letter-spacing:22.961520px;}
.ls1_c00345{letter-spacing:39.240000px;}
.ls2_c00345{letter-spacing:39.600000px;}
.ls0_c00345{letter-spacing:319.518000px;}
.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;}
}
.ws5_c00345{word-spacing:-72.000000px;}
.ws1_c00345{word-spacing:-18.144000px;}
.ws8_c00345{word-spacing:-18.072000px;}
.ws0_c00345{word-spacing:-18.000000px;}
.ws2_c00345{word-spacing:-17.928000px;}
.ws7_c00345{word-spacing:-17.856000px;}
.ws9_c00345{word-spacing:-17.784000px;}
.wsb_c00345{word-spacing:-17.712000px;}
.ws3_c00345{word-spacing:-17.568000px;}
.wsa_c00345{word-spacing:-17.424000px;}
.wsd_c00345{word-spacing:-15.030000px;}
.ws4_c00345{word-spacing:-12.161520px;}
.wsc_c00345{word-spacing:-9.720000px;}
.ws37_c00345{word-spacing:-0.420840px;}
.wsf_c00345{word-spacing:-0.162000px;}
.ws17_c00345{word-spacing:-0.144000px;}
.ws10_c00345{word-spacing:-0.072000px;}
.ws36_c00345{word-spacing:-0.060120px;}
.wse_c00345{word-spacing:0.000000px;}
.ws30_c00345{word-spacing:0.060120px;}
.ws33_c00345{word-spacing:0.120240px;}
.ws34_c00345{word-spacing:0.180360px;}
.ws2d_c00345{word-spacing:0.288000px;}
.ws1a_c00345{word-spacing:0.360000px;}
.ws26_c00345{word-spacing:1.080000px;}
.ws2c_c00345{word-spacing:1.800000px;}
.ws12_c00345{word-spacing:3.240000px;}
.ws1c_c00345{word-spacing:3.600000px;}
.ws6_c00345{word-spacing:4.176000px;}
.ws1f_c00345{word-spacing:4.248000px;}
.ws1b_c00345{word-spacing:4.680000px;}
.ws14_c00345{word-spacing:7.200000px;}
.ws1d_c00345{word-spacing:8.208000px;}
.ws28_c00345{word-spacing:8.280000px;}
.ws18_c00345{word-spacing:10.008000px;}
.ws19_c00345{word-spacing:10.080000px;}
.ws21_c00345{word-spacing:11.088000px;}
.ws20_c00345{word-spacing:11.160000px;}
.ws25_c00345{word-spacing:11.736000px;}
.ws23_c00345{word-spacing:11.808000px;}
.ws24_c00345{word-spacing:11.880000px;}
.ws31_c00345{word-spacing:12.024000px;}
.ws35_c00345{word-spacing:12.144240px;}
.ws32_c00345{word-spacing:12.444840px;}
.ws1e_c00345{word-spacing:15.120000px;}
.ws13_c00345{word-spacing:15.480000px;}
.ws29_c00345{word-spacing:15.840000px;}
.ws2e_c00345{word-spacing:16.128000px;}
.ws2f_c00345{word-spacing:16.200000px;}
.ws22_c00345{word-spacing:21.960000px;}
.ws27_c00345{word-spacing:22.320000px;}
.ws2a_c00345{word-spacing:27.360000px;}
.ws2b_c00345{word-spacing:27.648000px;}
.ws11_c00345{word-spacing:30.600000px;}
.ws16_c00345{word-spacing:38.736000px;}
.ws15_c00345{word-spacing:39.240000px;}
._7_c00345{margin-left:-6.616800px;}
._6_c00345{margin-left:-4.392000px;}
._c_c00345{margin-left:-3.348000px;}
._1_c00345{margin-left:-1.015200px;}
._2_c00345{width:1.008000px;}
._d_c00345{width:2.016000px;}
._3_c00345{width:3.312000px;}
._9_c00345{width:4.608000px;}
._8_c00345{width:5.616000px;}
._e_c00345{width:12.444840px;}
._4_c00345{width:15.336000px;}
._0_c00345{width:16.984800px;}
._b_c00345{width:21.376800px;}
._a_c00345{width:22.392000px;}
._5_c00345{width:39.110400px;}
.fc0_c00345{color:rgb(0,0,0);}
.fs4_c00345{font-size:38.880000px;}
.fs2_c00345{font-size:47.880000px;}
.fs3_c00345{font-size:51.120000px;}
.fs0_c00345{font-size:54.000000px;}
.fs5_c00345{font-size:60.120000px;}
.fs1_c00345{font-size:72.000000px;}
.y0_c00345{bottom:0.000000px;}
.y26_c00345{bottom:57.240000px;}
.y25_c00345{bottom:109.795680px;}
.y24_c00345{bottom:132.210000px;}
.y27_c00345{bottom:144.900000px;}
.y23_c00345{bottom:176.490000px;}
.y22_c00345{bottom:207.540000px;}
.y21_c00345{bottom:238.590000px;}
.y20_c00345{bottom:269.640000px;}
.y1f_c00345{bottom:300.690000px;}
.y1e_c00345{bottom:331.740000px;}
.y1d_c00345{bottom:362.970000px;}
.y1c_c00345{bottom:394.470000px;}
.y1b_c00345{bottom:425.520000px;}
.y1a_c00345{bottom:456.570000px;}
.y19_c00345{bottom:487.710000px;}
.y18_c00345{bottom:519.210000px;}
.y17_c00345{bottom:550.260000px;}
.y16_c00345{bottom:581.310000px;}
.y15_c00345{bottom:612.360000px;}
.y14_c00345{bottom:643.410000px;}
.y13_c00345{bottom:674.640000px;}
.y12_c00345{bottom:706.140000px;}
.y11_c00345{bottom:737.190000px;}
.y10_c00345{bottom:768.240000px;}
.yf_c00345{bottom:799.290000px;}
.ye_c00345{bottom:830.520000px;}
.yd_c00345{bottom:861.930000px;}
.yc_c00345{bottom:892.980000px;}
.yb_c00345{bottom:924.030000px;}
.ya_c00345{bottom:955.080000px;}
.y9_c00345{bottom:986.130000px;}
.y8_c00345{bottom:1017.180000px;}
.y7_c00345{bottom:1048.230000px;}
.y6_c00345{bottom:1079.280000px;}
.y5_c00345{bottom:1110.330000px;}
.y4_c00345{bottom:1131.030000px;}
.y3_c00345{bottom:1150.915500px;}
.y2_c00345{bottom:1166.400000px;}
.y1_c00345{bottom:1197.450000px;}
.h8_c00345{height:38.158594px;}
.h4_c00345{height:50.027344px;}
.h2_c00345{height:52.998047px;}
.h9_c00345{height:59.004492px;}
.h3_c00345{height:70.664062px;}
.h5_c00345{height:72.562500px;}
.h6_c00345{height:73.991602px;}
.h7_c00345{height:143.542969px;}
.h0_c00345{height:1262.880000px;}
.h1_c00345{height:1263.000000px;}
.w0_c00345{width:893.070000px;}
.w1_c00345{width:893.250000px;}
.x0_c00345{left:0.000000px;}
.x2_c00345{left:127.620000px;}
.x1_c00345{left:446.580000px;}
@media print{
.v1_c00345{vertical-align:-55.056000pt;}
.v5_c00345{vertical-align:-18.560000pt;}
.v3_c00345{vertical-align:-13.120000pt;}
.v0_c00345{vertical-align:0.000000pt;}
.v4_c00345{vertical-align:13.120000pt;}
.v2_c00345{vertical-align:24.000000pt;}
.ls15_c00345{letter-spacing:-0.512000pt;}
.ls11_c00345{letter-spacing:-0.384000pt;}
.ls13_c00345{letter-spacing:-0.320000pt;}
.ls16_c00345{letter-spacing:-0.256000pt;}
.ls14_c00345{letter-spacing:-0.192000pt;}
.ls19_c00345{letter-spacing:-0.160320pt;}
.ls12_c00345{letter-spacing:-0.128000pt;}
.ls18_c00345{letter-spacing:-0.106880pt;}
.ls10_c00345{letter-spacing:-0.064000pt;}
.ls17_c00345{letter-spacing:-0.053440pt;}
.lsf_c00345{letter-spacing:0.000000pt;}
.ls3_c00345{letter-spacing:0.064000pt;}
.ls7_c00345{letter-spacing:0.128000pt;}
.ls1a_c00345{letter-spacing:0.160320pt;}
.ls4_c00345{letter-spacing:0.170240pt;}
.ls5_c00345{letter-spacing:0.320000pt;}
.lsb_c00345{letter-spacing:1.600000pt;}
.lsa_c00345{letter-spacing:10.560000pt;}
.lsd_c00345{letter-spacing:10.955200pt;}
.lse_c00345{letter-spacing:11.013984pt;}
.lsc_c00345{letter-spacing:14.419200pt;}
.ls8_c00345{letter-spacing:17.792000pt;}
.ls9_c00345{letter-spacing:19.840000pt;}
.ls6_c00345{letter-spacing:20.410240pt;}
.ls1_c00345{letter-spacing:34.880000pt;}
.ls2_c00345{letter-spacing:35.200000pt;}
.ls0_c00345{letter-spacing:284.016000pt;}
.ws5_c00345{word-spacing:-64.000000pt;}
.ws1_c00345{word-spacing:-16.128000pt;}
.ws8_c00345{word-spacing:-16.064000pt;}
.ws0_c00345{word-spacing:-16.000000pt;}
.ws2_c00345{word-spacing:-15.936000pt;}
.ws7_c00345{word-spacing:-15.872000pt;}
.ws9_c00345{word-spacing:-15.808000pt;}
.wsb_c00345{word-spacing:-15.744000pt;}
.ws3_c00345{word-spacing:-15.616000pt;}
.wsa_c00345{word-spacing:-15.488000pt;}
.wsd_c00345{word-spacing:-13.360000pt;}
.ws4_c00345{word-spacing:-10.810240pt;}
.wsc_c00345{word-spacing:-8.640000pt;}
.ws37_c00345{word-spacing:-0.374080pt;}
.wsf_c00345{word-spacing:-0.144000pt;}
.ws17_c00345{word-spacing:-0.128000pt;}
.ws10_c00345{word-spacing:-0.064000pt;}
.ws36_c00345{word-spacing:-0.053440pt;}
.wse_c00345{word-spacing:0.000000pt;}
.ws30_c00345{word-spacing:0.053440pt;}
.ws33_c00345{word-spacing:0.106880pt;}
.ws34_c00345{word-spacing:0.160320pt;}
.ws2d_c00345{word-spacing:0.256000pt;}
.ws1a_c00345{word-spacing:0.320000pt;}
.ws26_c00345{word-spacing:0.960000pt;}
.ws2c_c00345{word-spacing:1.600000pt;}
.ws12_c00345{word-spacing:2.880000pt;}
.ws1c_c00345{word-spacing:3.200000pt;}
.ws6_c00345{word-spacing:3.712000pt;}
.ws1f_c00345{word-spacing:3.776000pt;}
.ws1b_c00345{word-spacing:4.160000pt;}
.ws14_c00345{word-spacing:6.400000pt;}
.ws1d_c00345{word-spacing:7.296000pt;}
.ws28_c00345{word-spacing:7.360000pt;}
.ws18_c00345{word-spacing:8.896000pt;}
.ws19_c00345{word-spacing:8.960000pt;}
.ws21_c00345{word-spacing:9.856000pt;}
.ws20_c00345{word-spacing:9.920000pt;}
.ws25_c00345{word-spacing:10.432000pt;}
.ws23_c00345{word-spacing:10.496000pt;}
.ws24_c00345{word-spacing:10.560000pt;}
.ws31_c00345{word-spacing:10.688000pt;}
.ws35_c00345{word-spacing:10.794880pt;}
.ws32_c00345{word-spacing:11.062080pt;}
.ws1e_c00345{word-spacing:13.440000pt;}
.ws13_c00345{word-spacing:13.760000pt;}
.ws29_c00345{word-spacing:14.080000pt;}
.ws2e_c00345{word-spacing:14.336000pt;}
.ws2f_c00345{word-spacing:14.400000pt;}
.ws22_c00345{word-spacing:19.520000pt;}
.ws27_c00345{word-spacing:19.840000pt;}
.ws2a_c00345{word-spacing:24.320000pt;}
.ws2b_c00345{word-spacing:24.576000pt;}
.ws11_c00345{word-spacing:27.200000pt;}
.ws16_c00345{word-spacing:34.432000pt;}
.ws15_c00345{word-spacing:34.880000pt;}
._7_c00345{margin-left:-5.881600pt;}
._6_c00345{margin-left:-3.904000pt;}
._c_c00345{margin-left:-2.976000pt;}
._1_c00345{margin-left:-0.902400pt;}
._2_c00345{width:0.896000pt;}
._d_c00345{width:1.792000pt;}
._3_c00345{width:2.944000pt;}
._9_c00345{width:4.096000pt;}
._8_c00345{width:4.992000pt;}
._e_c00345{width:11.062080pt;}
._4_c00345{width:13.632000pt;}
._0_c00345{width:15.097600pt;}
._b_c00345{width:19.001600pt;}
._a_c00345{width:19.904000pt;}
._5_c00345{width:34.764800pt;}
.fs4_c00345{font-size:34.560000pt;}
.fs2_c00345{font-size:42.560000pt;}
.fs3_c00345{font-size:45.440000pt;}
.fs0_c00345{font-size:48.000000pt;}
.fs5_c00345{font-size:53.440000pt;}
.fs1_c00345{font-size:64.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y26_c00345{bottom:50.880000pt;}
.y25_c00345{bottom:97.596160pt;}
.y24_c00345{bottom:117.520000pt;}
.y27_c00345{bottom:128.800000pt;}
.y23_c00345{bottom:156.880000pt;}
.y22_c00345{bottom:184.480000pt;}
.y21_c00345{bottom:212.080000pt;}
.y20_c00345{bottom:239.680000pt;}
.y1f_c00345{bottom:267.280000pt;}
.y1e_c00345{bottom:294.880000pt;}
.y1d_c00345{bottom:322.640000pt;}
.y1c_c00345{bottom:350.640000pt;}
.y1b_c00345{bottom:378.240000pt;}
.y1a_c00345{bottom:405.840000pt;}
.y19_c00345{bottom:433.520000pt;}
.y18_c00345{bottom:461.520000pt;}
.y17_c00345{bottom:489.120000pt;}
.y16_c00345{bottom:516.720000pt;}
.y15_c00345{bottom:544.320000pt;}
.y14_c00345{bottom:571.920000pt;}
.y13_c00345{bottom:599.680000pt;}
.y12_c00345{bottom:627.680000pt;}
.y11_c00345{bottom:655.280000pt;}
.y10_c00345{bottom:682.880000pt;}
.yf_c00345{bottom:710.480000pt;}
.ye_c00345{bottom:738.240000pt;}
.yd_c00345{bottom:766.160000pt;}
.yc_c00345{bottom:793.760000pt;}
.yb_c00345{bottom:821.360000pt;}
.ya_c00345{bottom:848.960000pt;}
.y9_c00345{bottom:876.560000pt;}
.y8_c00345{bottom:904.160000pt;}
.y7_c00345{bottom:931.760000pt;}
.y6_c00345{bottom:959.360000pt;}
.y5_c00345{bottom:986.960000pt;}
.y4_c00345{bottom:1005.360000pt;}
.y3_c00345{bottom:1023.036000pt;}
.y2_c00345{bottom:1036.800000pt;}
.y1_c00345{bottom:1064.400000pt;}
.h8_c00345{height:33.918750pt;}
.h4_c00345{height:44.468750pt;}
.h2_c00345{height:47.109375pt;}
.h9_c00345{height:52.448437pt;}
.h3_c00345{height:62.812500pt;}
.h5_c00345{height:64.500000pt;}
.h6_c00345{height:65.770312pt;}
.h7_c00345{height:127.593750pt;}
.h0_c00345{height:1122.560000pt;}
.h1_c00345{height:1122.666667pt;}
.w0_c00345{width:793.840000pt;}
.w1_c00345{width:794.000000pt;}
.x0_c00345{left:0.000000pt;}
.x2_c00345{left:113.440000pt;}
.x1_c00345{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_530f2695421dbbb31e4757f0.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_282b5602612f94bbc0160a3a.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;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_c00346;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00346;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4_c00346{vertical-align:-20.880000px;}
.v2_c00346{vertical-align:-14.760000px;}
.v0_c00346{vertical-align:0.000000px;}
.v3_c00346{vertical-align:14.760000px;}
.v1_c00346{vertical-align:27.000000px;}
.ls16_c00346{letter-spacing:-0.420840px;}
.ls13_c00346{letter-spacing:-0.360000px;}
.ls12_c00346{letter-spacing:-0.216000px;}
.ls10_c00346{letter-spacing:-0.108000px;}
.ls11_c00346{letter-spacing:-0.072000px;}
.ls14_c00346{letter-spacing:-0.060120px;}
.lsf_c00346{letter-spacing:0.000000px;}
.ls5_c00346{letter-spacing:0.072000px;}
.ls1_c00346{letter-spacing:0.144000px;}
.ls15_c00346{letter-spacing:0.180360px;}
.ls2_c00346{letter-spacing:0.191520px;}
.lsb_c00346{letter-spacing:0.360000px;}
.lse_c00346{letter-spacing:3.667320px;}
.lsc_c00346{letter-spacing:8.280000px;}
.ls8_c00346{letter-spacing:14.040000px;}
.ls0_c00346{letter-spacing:18.000000px;}
.ls3_c00346{letter-spacing:19.080000px;}
.ls7_c00346{letter-spacing:20.016000px;}
.ls4_c00346{letter-spacing:22.601520px;}
.ls6_c00346{letter-spacing:22.961520px;}
.lsd_c00346{letter-spacing:27.720000px;}
.lsa_c00346{letter-spacing:33.480000px;}
.ls9_c00346{letter-spacing:33.840000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00346{word-spacing:-72.000000px;}
.ws5_c00346{word-spacing:-18.144000px;}
.ws6_c00346{word-spacing:-18.072000px;}
.ws1_c00346{word-spacing:-18.000000px;}
.ws0_c00346{word-spacing:-17.928000px;}
.ws9_c00346{word-spacing:-15.030000px;}
.ws2_c00346{word-spacing:-12.161520px;}
.ws8_c00346{word-spacing:-9.720000px;}
.ws37_c00346{word-spacing:-0.420840px;}
.ws11_c00346{word-spacing:-0.360000px;}
.ws12_c00346{word-spacing:-0.144000px;}
.ws10_c00346{word-spacing:-0.072000px;}
.wsa_c00346{word-spacing:0.000000px;}
.wsc_c00346{word-spacing:0.162000px;}
.ws39_c00346{word-spacing:0.180360px;}
.ws18_c00346{word-spacing:0.216000px;}
.wsb_c00346{word-spacing:0.270000px;}
.ws22_c00346{word-spacing:0.360000px;}
.ws38_c00346{word-spacing:0.541080px;}
.ws1b_c00346{word-spacing:1.080000px;}
.ws32_c00346{word-spacing:1.368000px;}
.ws1c_c00346{word-spacing:1.440000px;}
.ws1d_c00346{word-spacing:2.808000px;}
.ws36_c00346{word-spacing:3.727440px;}
.ws7_c00346{word-spacing:3.816000px;}
.ws2a_c00346{word-spacing:3.888000px;}
.ws4_c00346{word-spacing:4.176000px;}
.ws1a_c00346{word-spacing:6.768000px;}
.ws19_c00346{word-spacing:6.840000px;}
.ws1f_c00346{word-spacing:7.128000px;}
.ws28_c00346{word-spacing:7.200000px;}
.ws2f_c00346{word-spacing:7.848000px;}
.ws2d_c00346{word-spacing:8.208000px;}
.ws2e_c00346{word-spacing:8.280000px;}
.ws2b_c00346{word-spacing:9.000000px;}
.ws1e_c00346{word-spacing:10.440000px;}
.ws26_c00346{word-spacing:11.448000px;}
.ws27_c00346{word-spacing:11.520000px;}
.ws33_c00346{word-spacing:12.456000px;}
.ws35_c00346{word-spacing:12.528000px;}
.ws34_c00346{word-spacing:12.600000px;}
.ws20_c00346{word-spacing:13.968000px;}
.ws21_c00346{word-spacing:14.040000px;}
.ws13_c00346{word-spacing:15.840000px;}
.ws14_c00346{word-spacing:16.128000px;}
.wsd_c00346{word-spacing:17.280000px;}
.wse_c00346{word-spacing:17.568000px;}
.wsf_c00346{word-spacing:17.640000px;}
.ws2c_c00346{word-spacing:18.648000px;}
.ws15_c00346{word-spacing:19.008000px;}
.ws17_c00346{word-spacing:21.168000px;}
.ws16_c00346{word-spacing:21.240000px;}
.ws31_c00346{word-spacing:27.648000px;}
.ws30_c00346{word-spacing:27.720000px;}
.ws25_c00346{word-spacing:33.120000px;}
.ws23_c00346{word-spacing:33.408000px;}
.ws24_c00346{word-spacing:33.480000px;}
.ws29_c00346{word-spacing:41.040000px;}
._7_c00346{margin-left:-6.400800px;}
._5_c00346{margin-left:-4.896000px;}
._1_c00346{margin-left:-1.058400px;}
._0_c00346{width:1.220400px;}
._3_c00346{width:2.548800px;}
._6_c00346{width:7.272000px;}
._a_c00346{width:8.280000px;}
._2_c00346{width:16.200000px;}
._4_c00346{width:19.045440px;}
._9_c00346{width:20.808000px;}
._8_c00346{width:21.816000px;}
._b_c00346{width:27.936000px;}
.fc0_c00346{color:rgb(0,0,0);}
.fs4_c00346{font-size:38.880000px;}
.fs2_c00346{font-size:47.880000px;}
.fs3_c00346{font-size:51.120000px;}
.fs0_c00346{font-size:54.000000px;}
.fs5_c00346{font-size:60.120000px;}
.fs1_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y27_c00346{bottom:57.240000px;}
.y26_c00346{bottom:109.795680px;}
.y25_c00346{bottom:132.210000px;}
.y28_c00346{bottom:144.900000px;}
.y24_c00346{bottom:176.040000px;}
.y23_c00346{bottom:207.540000px;}
.y22_c00346{bottom:238.590000px;}
.y21_c00346{bottom:269.640000px;}
.y20_c00346{bottom:300.690000px;}
.y1f_c00346{bottom:331.740000px;}
.y1e_c00346{bottom:362.790000px;}
.y1d_c00346{bottom:393.840000px;}
.y1c_c00346{bottom:424.890000px;}
.y1b_c00346{bottom:456.120000px;}
.y1a_c00346{bottom:487.620000px;}
.y19_c00346{bottom:518.670000px;}
.y18_c00346{bottom:549.720000px;}
.y17_c00346{bottom:580.860000px;}
.y16_c00346{bottom:612.360000px;}
.y15_c00346{bottom:643.410000px;}
.y14_c00346{bottom:674.460000px;}
.y13_c00346{bottom:705.510000px;}
.y12_c00346{bottom:736.560000px;}
.y11_c00346{bottom:767.610000px;}
.y10_c00346{bottom:798.840000px;}
.yf_c00346{bottom:830.340000px;}
.ye_c00346{bottom:861.390000px;}
.yd_c00346{bottom:892.440000px;}
.yc_c00346{bottom:923.490000px;}
.yb_c00346{bottom:954.540000px;}
.ya_c00346{bottom:985.680000px;}
.y9_c00346{bottom:1017.180000px;}
.y8_c00346{bottom:1048.230000px;}
.y7_c00346{bottom:1079.280000px;}
.y6_c00346{bottom:1110.330000px;}
.y5_c00346{bottom:1131.030000px;}
.y4_c00346{bottom:1150.920000px;}
.y3_c00346{bottom:1166.404500px;}
.y2_c00346{bottom:1181.970000px;}
.y1_c00346{bottom:1197.450000px;}
.h8_c00346{height:38.158594px;}
.h7_c00346{height:50.027344px;}
.h3_c00346{height:52.971680px;}
.h2_c00346{height:52.998047px;}
.h9_c00346{height:59.004492px;}
.h4_c00346{height:70.664062px;}
.h5_c00346{height:73.991602px;}
.h6_c00346{height:143.542969px;}
.h0_c00346{height:1262.880000px;}
.h1_c00346{height:1263.000000px;}
.w0_c00346{width:893.070000px;}
.w1_c00346{width:893.250000px;}
.x0_c00346{left:0.000000px;}
.x3_c00346{left:127.620000px;}
.x2_c00346{left:425.160000px;}
.x1_c00346{left:446.580000px;}
.x4_c00346{left:738.540000px;}
@media print{
.v4_c00346{vertical-align:-18.560000pt;}
.v2_c00346{vertical-align:-13.120000pt;}
.v0_c00346{vertical-align:0.000000pt;}
.v3_c00346{vertical-align:13.120000pt;}
.v1_c00346{vertical-align:24.000000pt;}
.ls16_c00346{letter-spacing:-0.374080pt;}
.ls13_c00346{letter-spacing:-0.320000pt;}
.ls12_c00346{letter-spacing:-0.192000pt;}
.ls10_c00346{letter-spacing:-0.096000pt;}
.ls11_c00346{letter-spacing:-0.064000pt;}
.ls14_c00346{letter-spacing:-0.053440pt;}
.lsf_c00346{letter-spacing:0.000000pt;}
.ls5_c00346{letter-spacing:0.064000pt;}
.ls1_c00346{letter-spacing:0.128000pt;}
.ls15_c00346{letter-spacing:0.160320pt;}
.ls2_c00346{letter-spacing:0.170240pt;}
.lsb_c00346{letter-spacing:0.320000pt;}
.lse_c00346{letter-spacing:3.259840pt;}
.lsc_c00346{letter-spacing:7.360000pt;}
.ls8_c00346{letter-spacing:12.480000pt;}
.ls0_c00346{letter-spacing:16.000000pt;}
.ls3_c00346{letter-spacing:16.960000pt;}
.ls7_c00346{letter-spacing:17.792000pt;}
.ls4_c00346{letter-spacing:20.090240pt;}
.ls6_c00346{letter-spacing:20.410240pt;}
.lsd_c00346{letter-spacing:24.640000pt;}
.lsa_c00346{letter-spacing:29.760000pt;}
.ls9_c00346{letter-spacing:30.080000pt;}
.ws3_c00346{word-spacing:-64.000000pt;}
.ws5_c00346{word-spacing:-16.128000pt;}
.ws6_c00346{word-spacing:-16.064000pt;}
.ws1_c00346{word-spacing:-16.000000pt;}
.ws0_c00346{word-spacing:-15.936000pt;}
.ws9_c00346{word-spacing:-13.360000pt;}
.ws2_c00346{word-spacing:-10.810240pt;}
.ws8_c00346{word-spacing:-8.640000pt;}
.ws37_c00346{word-spacing:-0.374080pt;}
.ws11_c00346{word-spacing:-0.320000pt;}
.ws12_c00346{word-spacing:-0.128000pt;}
.ws10_c00346{word-spacing:-0.064000pt;}
.wsa_c00346{word-spacing:0.000000pt;}
.wsc_c00346{word-spacing:0.144000pt;}
.ws39_c00346{word-spacing:0.160320pt;}
.ws18_c00346{word-spacing:0.192000pt;}
.wsb_c00346{word-spacing:0.240000pt;}
.ws22_c00346{word-spacing:0.320000pt;}
.ws38_c00346{word-spacing:0.480960pt;}
.ws1b_c00346{word-spacing:0.960000pt;}
.ws32_c00346{word-spacing:1.216000pt;}
.ws1c_c00346{word-spacing:1.280000pt;}
.ws1d_c00346{word-spacing:2.496000pt;}
.ws36_c00346{word-spacing:3.313280pt;}
.ws7_c00346{word-spacing:3.392000pt;}
.ws2a_c00346{word-spacing:3.456000pt;}
.ws4_c00346{word-spacing:3.712000pt;}
.ws1a_c00346{word-spacing:6.016000pt;}
.ws19_c00346{word-spacing:6.080000pt;}
.ws1f_c00346{word-spacing:6.336000pt;}
.ws28_c00346{word-spacing:6.400000pt;}
.ws2f_c00346{word-spacing:6.976000pt;}
.ws2d_c00346{word-spacing:7.296000pt;}
.ws2e_c00346{word-spacing:7.360000pt;}
.ws2b_c00346{word-spacing:8.000000pt;}
.ws1e_c00346{word-spacing:9.280000pt;}
.ws26_c00346{word-spacing:10.176000pt;}
.ws27_c00346{word-spacing:10.240000pt;}
.ws33_c00346{word-spacing:11.072000pt;}
.ws35_c00346{word-spacing:11.136000pt;}
.ws34_c00346{word-spacing:11.200000pt;}
.ws20_c00346{word-spacing:12.416000pt;}
.ws21_c00346{word-spacing:12.480000pt;}
.ws13_c00346{word-spacing:14.080000pt;}
.ws14_c00346{word-spacing:14.336000pt;}
.wsd_c00346{word-spacing:15.360000pt;}
.wse_c00346{word-spacing:15.616000pt;}
.wsf_c00346{word-spacing:15.680000pt;}
.ws2c_c00346{word-spacing:16.576000pt;}
.ws15_c00346{word-spacing:16.896000pt;}
.ws17_c00346{word-spacing:18.816000pt;}
.ws16_c00346{word-spacing:18.880000pt;}
.ws31_c00346{word-spacing:24.576000pt;}
.ws30_c00346{word-spacing:24.640000pt;}
.ws25_c00346{word-spacing:29.440000pt;}
.ws23_c00346{word-spacing:29.696000pt;}
.ws24_c00346{word-spacing:29.760000pt;}
.ws29_c00346{word-spacing:36.480000pt;}
._7_c00346{margin-left:-5.689600pt;}
._5_c00346{margin-left:-4.352000pt;}
._1_c00346{margin-left:-0.940800pt;}
._0_c00346{width:1.084800pt;}
._3_c00346{width:2.265600pt;}
._6_c00346{width:6.464000pt;}
._a_c00346{width:7.360000pt;}
._2_c00346{width:14.400000pt;}
._4_c00346{width:16.929280pt;}
._9_c00346{width:18.496000pt;}
._8_c00346{width:19.392000pt;}
._b_c00346{width:24.832000pt;}
.fs4_c00346{font-size:34.560000pt;}
.fs2_c00346{font-size:42.560000pt;}
.fs3_c00346{font-size:45.440000pt;}
.fs0_c00346{font-size:48.000000pt;}
.fs5_c00346{font-size:53.440000pt;}
.fs1_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y27_c00346{bottom:50.880000pt;}
.y26_c00346{bottom:97.596160pt;}
.y25_c00346{bottom:117.520000pt;}
.y28_c00346{bottom:128.800000pt;}
.y24_c00346{bottom:156.480000pt;}
.y23_c00346{bottom:184.480000pt;}
.y22_c00346{bottom:212.080000pt;}
.y21_c00346{bottom:239.680000pt;}
.y20_c00346{bottom:267.280000pt;}
.y1f_c00346{bottom:294.880000pt;}
.y1e_c00346{bottom:322.480000pt;}
.y1d_c00346{bottom:350.080000pt;}
.y1c_c00346{bottom:377.680000pt;}
.y1b_c00346{bottom:405.440000pt;}
.y1a_c00346{bottom:433.440000pt;}
.y19_c00346{bottom:461.040000pt;}
.y18_c00346{bottom:488.640000pt;}
.y17_c00346{bottom:516.320000pt;}
.y16_c00346{bottom:544.320000pt;}
.y15_c00346{bottom:571.920000pt;}
.y14_c00346{bottom:599.520000pt;}
.y13_c00346{bottom:627.120000pt;}
.y12_c00346{bottom:654.720000pt;}
.y11_c00346{bottom:682.320000pt;}
.y10_c00346{bottom:710.080000pt;}
.yf_c00346{bottom:738.080000pt;}
.ye_c00346{bottom:765.680000pt;}
.yd_c00346{bottom:793.280000pt;}
.yc_c00346{bottom:820.880000pt;}
.yb_c00346{bottom:848.480000pt;}
.ya_c00346{bottom:876.160000pt;}
.y9_c00346{bottom:904.160000pt;}
.y8_c00346{bottom:931.760000pt;}
.y7_c00346{bottom:959.360000pt;}
.y6_c00346{bottom:986.960000pt;}
.y5_c00346{bottom:1005.360000pt;}
.y4_c00346{bottom:1023.040000pt;}
.y3_c00346{bottom:1036.804000pt;}
.y2_c00346{bottom:1050.640000pt;}
.y1_c00346{bottom:1064.400000pt;}
.h8_c00346{height:33.918750pt;}
.h7_c00346{height:44.468750pt;}
.h3_c00346{height:47.085938pt;}
.h2_c00346{height:47.109375pt;}
.h9_c00346{height:52.448437pt;}
.h4_c00346{height:62.812500pt;}
.h5_c00346{height:65.770313pt;}
.h6_c00346{height:127.593750pt;}
.h0_c00346{height:1122.560000pt;}
.h1_c00346{height:1122.666667pt;}
.w0_c00346{width:793.840000pt;}
.w1_c00346{width:794.000000pt;}
.x0_c00346{left:0.000000pt;}
.x3_c00346{left:113.440000pt;}
.x2_c00346{left:377.920000pt;}
.x1_c00346{left:396.960000pt;}
.x4_c00346{left:656.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_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_94ba3b71d273ed91c23c7516.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00347;src:url('chunks/assets/font_725ee4cd3eaca37732098f87.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;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_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);}
.v1_c00347{vertical-align:-61.938000px;}
.v2_c00347{vertical-align:-14.760000px;}
.v0_c00347{vertical-align:0.000000px;}
.v3_c00347{vertical-align:14.760000px;}
.ls9_c00347{letter-spacing:0.000000px;}
.ls3_c00347{letter-spacing:0.072000px;}
.lsa_c00347{letter-spacing:0.144000px;}
.lsb_c00347{letter-spacing:0.360000px;}
.ls8_c00347{letter-spacing:3.161520px;}
.ls7_c00347{letter-spacing:10.800000px;}
.ls4_c00347{letter-spacing:15.120000px;}
.ls5_c00347{letter-spacing:17.280000px;}
.ls2_c00347{letter-spacing:20.016000px;}
.ls1_c00347{letter-spacing:22.961520px;}
.ls6_c00347{letter-spacing:23.321520px;}
.ls0_c00347{letter-spacing:319.518000px;}
.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:-72.000000px;}
.ws4_c00347{word-spacing:-18.144000px;}
.ws2_c00347{word-spacing:-18.072000px;}
.ws3_c00347{word-spacing:-18.000000px;}
.ws5_c00347{word-spacing:-15.840000px;}
.ws16_c00347{word-spacing:-0.360000px;}
.ws7_c00347{word-spacing:-0.162000px;}
.ws18_c00347{word-spacing:-0.144000px;}
.wsc_c00347{word-spacing:-0.072000px;}
.ws6_c00347{word-spacing:0.000000px;}
.ws8_c00347{word-spacing:0.288000px;}
.ws9_c00347{word-spacing:0.360000px;}
.wsf_c00347{word-spacing:1.368000px;}
.wse_c00347{word-spacing:2.808000px;}
.ws1b_c00347{word-spacing:2.880000px;}
.ws13_c00347{word-spacing:3.528000px;}
.ws1_c00347{word-spacing:4.176000px;}
.ws19_c00347{word-spacing:5.040000px;}
.wsd_c00347{word-spacing:7.128000px;}
.ws14_c00347{word-spacing:7.488000px;}
.ws17_c00347{word-spacing:8.208000px;}
.wsa_c00347{word-spacing:10.728000px;}
.ws1c_c00347{word-spacing:10.800000px;}
.wsb_c00347{word-spacing:15.048000px;}
.ws1a_c00347{word-spacing:17.208000px;}
.ws10_c00347{word-spacing:17.568000px;}
.ws15_c00347{word-spacing:18.720000px;}
.ws11_c00347{word-spacing:36.576000px;}
.ws12_c00347{word-spacing:36.720000px;}
._1_c00347{margin-left:-6.235200px;}
._5_c00347{margin-left:-4.435200px;}
._a_c00347{margin-left:-2.462400px;}
._0_c00347{margin-left:-1.166400px;}
._2_c00347{width:1.152000px;}
._6_c00347{width:2.484000px;}
._9_c00347{width:3.492000px;}
._4_c00347{width:12.520800px;}
._3_c00347{width:14.428800px;}
._8_c00347{width:16.099200px;}
._7_c00347{width:32.472000px;}
.fc0_c00347{color:rgb(0,0,0);}
.fs2_c00347{font-size:51.120000px;}
.fs0_c00347{font-size:54.000000px;}
.fs1_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y24_c00347{bottom:57.240000px;}
.y23_c00347{bottom:173.430000px;}
.y22_c00347{bottom:204.660000px;}
.y21_c00347{bottom:236.340000px;}
.y20_c00347{bottom:267.840000px;}
.y1f_c00347{bottom:298.890000px;}
.y1e_c00347{bottom:329.940000px;}
.y1d_c00347{bottom:361.170000px;}
.y1c_c00347{bottom:392.580000px;}
.y1b_c00347{bottom:423.810000px;}
.y1a_c00347{bottom:455.310000px;}
.y19_c00347{bottom:486.540000px;}
.y18_c00347{bottom:518.040000px;}
.y17_c00347{bottom:549.270000px;}
.y16_c00347{bottom:580.770000px;}
.y15_c00347{bottom:611.730000px;}
.y14_c00347{bottom:642.780000px;}
.y13_c00347{bottom:673.830000px;}
.y12_c00347{bottom:704.880000px;}
.y11_c00347{bottom:736.110000px;}
.y10_c00347{bottom:767.610000px;}
.yf_c00347{bottom:798.660000px;}
.ye_c00347{bottom:829.710000px;}
.yd_c00347{bottom:860.760000px;}
.yc_c00347{bottom:891.810000px;}
.yb_c00347{bottom:922.860000px;}
.ya_c00347{bottom:953.910000px;}
.y9_c00347{bottom:985.140000px;}
.y8_c00347{bottom:1016.640000px;}
.y7_c00347{bottom:1047.690000px;}
.y6_c00347{bottom:1078.740000px;}
.y5_c00347{bottom:1109.880000px;}
.y4_c00347{bottom:1131.030000px;}
.y3_c00347{bottom:1150.915500px;}
.y2_c00347{bottom:1166.400000px;}
.y1_c00347{bottom:1197.450000px;}
.h5_c00347{height:50.027344px;}
.h2_c00347{height:52.998047px;}
.h3_c00347{height:70.664062px;}
.h4_c00347{height:143.542969px;}
.h0_c00347{height:1262.880000px;}
.h1_c00347{height:1263.000000px;}
.w0_c00347{width:893.070000px;}
.w1_c00347{width:893.250000px;}
.x0_c00347{left:0.000000px;}
.x2_c00347{left:127.620000px;}
.x1_c00347{left:446.580000px;}
@media print{
.v1_c00347{vertical-align:-55.056000pt;}
.v2_c00347{vertical-align:-13.120000pt;}
.v0_c00347{vertical-align:0.000000pt;}
.v3_c00347{vertical-align:13.120000pt;}
.ls9_c00347{letter-spacing:0.000000pt;}
.ls3_c00347{letter-spacing:0.064000pt;}
.lsa_c00347{letter-spacing:0.128000pt;}
.lsb_c00347{letter-spacing:0.320000pt;}
.ls8_c00347{letter-spacing:2.810240pt;}
.ls7_c00347{letter-spacing:9.600000pt;}
.ls4_c00347{letter-spacing:13.440000pt;}
.ls5_c00347{letter-spacing:15.360000pt;}
.ls2_c00347{letter-spacing:17.792000pt;}
.ls1_c00347{letter-spacing:20.410240pt;}
.ls6_c00347{letter-spacing:20.730240pt;}
.ls0_c00347{letter-spacing:284.016000pt;}
.ws0_c00347{word-spacing:-64.000000pt;}
.ws4_c00347{word-spacing:-16.128000pt;}
.ws2_c00347{word-spacing:-16.064000pt;}
.ws3_c00347{word-spacing:-16.000000pt;}
.ws5_c00347{word-spacing:-14.080000pt;}
.ws16_c00347{word-spacing:-0.320000pt;}
.ws7_c00347{word-spacing:-0.144000pt;}
.ws18_c00347{word-spacing:-0.128000pt;}
.wsc_c00347{word-spacing:-0.064000pt;}
.ws6_c00347{word-spacing:0.000000pt;}
.ws8_c00347{word-spacing:0.256000pt;}
.ws9_c00347{word-spacing:0.320000pt;}
.wsf_c00347{word-spacing:1.216000pt;}
.wse_c00347{word-spacing:2.496000pt;}
.ws1b_c00347{word-spacing:2.560000pt;}
.ws13_c00347{word-spacing:3.136000pt;}
.ws1_c00347{word-spacing:3.712000pt;}
.ws19_c00347{word-spacing:4.480000pt;}
.wsd_c00347{word-spacing:6.336000pt;}
.ws14_c00347{word-spacing:6.656000pt;}
.ws17_c00347{word-spacing:7.296000pt;}
.wsa_c00347{word-spacing:9.536000pt;}
.ws1c_c00347{word-spacing:9.600000pt;}
.wsb_c00347{word-spacing:13.376000pt;}
.ws1a_c00347{word-spacing:15.296000pt;}
.ws10_c00347{word-spacing:15.616000pt;}
.ws15_c00347{word-spacing:16.640000pt;}
.ws11_c00347{word-spacing:32.512000pt;}
.ws12_c00347{word-spacing:32.640000pt;}
._1_c00347{margin-left:-5.542400pt;}
._5_c00347{margin-left:-3.942400pt;}
._a_c00347{margin-left:-2.188800pt;}
._0_c00347{margin-left:-1.036800pt;}
._2_c00347{width:1.024000pt;}
._6_c00347{width:2.208000pt;}
._9_c00347{width:3.104000pt;}
._4_c00347{width:11.129600pt;}
._3_c00347{width:12.825600pt;}
._8_c00347{width:14.310400pt;}
._7_c00347{width:28.864000pt;}
.fs2_c00347{font-size:45.440000pt;}
.fs0_c00347{font-size:48.000000pt;}
.fs1_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y24_c00347{bottom:50.880000pt;}
.y23_c00347{bottom:154.160000pt;}
.y22_c00347{bottom:181.920000pt;}
.y21_c00347{bottom:210.080000pt;}
.y20_c00347{bottom:238.080000pt;}
.y1f_c00347{bottom:265.680000pt;}
.y1e_c00347{bottom:293.280000pt;}
.y1d_c00347{bottom:321.040000pt;}
.y1c_c00347{bottom:348.960000pt;}
.y1b_c00347{bottom:376.720000pt;}
.y1a_c00347{bottom:404.720000pt;}
.y19_c00347{bottom:432.480000pt;}
.y18_c00347{bottom:460.480000pt;}
.y17_c00347{bottom:488.240000pt;}
.y16_c00347{bottom:516.240000pt;}
.y15_c00347{bottom:543.760000pt;}
.y14_c00347{bottom:571.360000pt;}
.y13_c00347{bottom:598.960000pt;}
.y12_c00347{bottom:626.560000pt;}
.y11_c00347{bottom:654.320000pt;}
.y10_c00347{bottom:682.320000pt;}
.yf_c00347{bottom:709.920000pt;}
.ye_c00347{bottom:737.520000pt;}
.yd_c00347{bottom:765.120000pt;}
.yc_c00347{bottom:792.720000pt;}
.yb_c00347{bottom:820.320000pt;}
.ya_c00347{bottom:847.920000pt;}
.y9_c00347{bottom:875.680000pt;}
.y8_c00347{bottom:903.680000pt;}
.y7_c00347{bottom:931.280000pt;}
.y6_c00347{bottom:958.880000pt;}
.y5_c00347{bottom:986.560000pt;}
.y4_c00347{bottom:1005.360000pt;}
.y3_c00347{bottom:1023.036000pt;}
.y2_c00347{bottom:1036.800000pt;}
.y1_c00347{bottom:1064.400000pt;}
.h5_c00347{height:44.468750pt;}
.h2_c00347{height:47.109375pt;}
.h3_c00347{height:62.812500pt;}
.h4_c00347{height:127.593750pt;}
.h0_c00347{height:1122.560000pt;}
.h1_c00347{height:1122.666667pt;}
.w0_c00347{width:793.840000pt;}
.w1_c00347{width:794.000000pt;}
.x0_c00347{left:0.000000pt;}
.x2_c00347{left:113.440000pt;}
.x1_c00347{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1184170571c867544aa1a897.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_59f624b55af88519a72152fc.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_ad58fda96b97987b9a06778f.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00348;src:url('chunks/assets/font_829d07261e0129846377d171.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00348;src:url('chunks/assets/font_d5fb079e4723189c4e2d29ce.woff2')format("woff");}.ff6_c00348{font-family:ff6_c00348;line-height:0.675781;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_66aead5fafd631105be238f7.woff2')format("woff");}.ff7_c00348{font-family:ff7_c00348;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250317,0.000000,0.000000,0.250000,0,0);}
.v2_c00348{vertical-align:-83.520000px;}
.v1_c00348{vertical-align:-61.920000px;}
.v0_c00348{vertical-align:0.000000px;}
.v3_c00348{vertical-align:4.225200px;}
.lsc_c00348{letter-spacing:-2.535120px;}
.ls12_c00348{letter-spacing:-2.087249px;}
.ls14_c00348{letter-spacing:-2.028096px;}
.lse_c00348{letter-spacing:-1.711206px;}
.ls10_c00348{letter-spacing:-1.457694px;}
.lsf_c00348{letter-spacing:-0.760536px;}
.ls11_c00348{letter-spacing:-0.405619px;}
.lsa_c00348{letter-spacing:-0.216000px;}
.ls17_c00348{letter-spacing:-0.202810px;}
.ls8_c00348{letter-spacing:-0.144000px;}
.ls6_c00348{letter-spacing:-0.108000px;}
.lsb_c00348{letter-spacing:-0.072000px;}
.ls7_c00348{letter-spacing:0.000000px;}
.ls9_c00348{letter-spacing:0.072000px;}
.ls15_c00348{letter-spacing:0.270413px;}
.lsd_c00348{letter-spacing:0.405619px;}
.ls13_c00348{letter-spacing:0.988697px;}
.ls16_c00348{letter-spacing:1.757683px;}
.ls18_c00348{letter-spacing:1.812611px;}
.ls5_c00348{letter-spacing:3.244954px;}
.ls3_c00348{letter-spacing:333.894003px;}
.ls2_c00348{letter-spacing:333.959808px;}
.ls4_c00348{letter-spacing:346.569827px;}
.ls0_c00348{letter-spacing:725.580000px;}
.ls1_c00348{letter-spacing:2082.240000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00348{word-spacing:-54.927600px;}
.ws0_c00348{word-spacing:-17.784000px;}
.wsd_c00348{word-spacing:-16.495181px;}
.wsf_c00348{word-spacing:-15.548736px;}
.ws10_c00348{word-spacing:-15.075514px;}
.ws7_c00348{word-spacing:-13.562892px;}
.wsb_c00348{word-spacing:-12.865734px;}
.ws1a_c00348{word-spacing:-2.032321px;}
.ws20_c00348{word-spacing:-1.812611px;}
.ws21_c00348{word-spacing:-1.622477px;}
.ws1e_c00348{word-spacing:-0.405619px;}
.ws1c_c00348{word-spacing:-0.135206px;}
.ws15_c00348{word-spacing:-0.072000px;}
.ws11_c00348{word-spacing:0.000000px;}
.ws16_c00348{word-spacing:0.072000px;}
.ws14_c00348{word-spacing:0.144000px;}
.ws13_c00348{word-spacing:0.162000px;}
.ws1d_c00348{word-spacing:0.202810px;}
.ws12_c00348{word-spacing:0.270000px;}
.ws18_c00348{word-spacing:0.405619px;}
.ws19_c00348{word-spacing:1.043624px;}
.ws1f_c00348{word-spacing:1.352064px;}
.ws17_c00348{word-spacing:2.535120px;}
.ws1b_c00348{word-spacing:3.650573px;}
.ws4_c00348{word-spacing:286.151670px;}
.ws2_c00348{word-spacing:287.666404px;}
.wsa_c00348{word-spacing:303.073596px;}
.ws6_c00348{word-spacing:304.493263px;}
.ws1_c00348{word-spacing:313.917182px;}
.ws3_c00348{word-spacing:318.208262px;}
.wsc_c00348{word-spacing:318.649406px;}
.ws9_c00348{word-spacing:321.415189px;}
.ws8_c00348{word-spacing:322.872883px;}
.ws5_c00348{word-spacing:326.593007px;}
._6_c00348{margin-left:-6.692717px;}
._7_c00348{margin-left:-5.180587px;}
._8_c00348{margin-left:-4.095146px;}
._5_c00348{margin-left:-2.873136px;}
._1_c00348{margin-left:-1.058400px;}
._0_c00348{width:1.225800px;}
._9_c00348{width:2.370565px;}
._2_c00348{width:3.466777px;}
._a_c00348{width:4.604506px;}
._b_c00348{width:6.615041px;}
._4_c00348{width:338.151206px;}
._3_c00348{width:346.603554px;}
.fc0_c00348{color:rgb(0,0,0);}
.fs5_c00348{font-size:46.477200px;}
.fs0_c00348{font-size:54.000000px;}
.fs4_c00348{font-size:54.927600px;}
.fs2_c00348{font-size:63.378000px;}
.fs3_c00348{font-size:67.603200px;}
.fs1_c00348{font-size:72.000000px;}
.y0_c00348{bottom:0.000000px;}
.y20_c00348{bottom:4.224000px;}
.y14_c00348{bottom:4.224900px;}
.y23_c00348{bottom:4.225200px;}
.y11_c00348{bottom:4.225350px;}
.ye_c00348{bottom:4.225500px;}
.y1d_c00348{bottom:4.225650px;}
.y1a_c00348{bottom:4.225950px;}
.y17_c00348{bottom:4.226250px;}
.yb_c00348{bottom:5.280600px;}
.y26_c00348{bottom:5.280900px;}
.y33_c00348{bottom:5.282250px;}
.y31_c00348{bottom:6.338550px;}
.y3e_c00348{bottom:7.394850px;}
.y41_c00348{bottom:7.395000px;}
.y3a_c00348{bottom:9.507750px;}
.y39_c00348{bottom:9.524651px;}
.y36_c00348{bottom:20.079200px;}
.y3d_c00348{bottom:28.521000px;}
.y2f_c00348{bottom:28.561452px;}
.y3c_c00348{bottom:31.681600px;}
.y42_c00348{bottom:31.690050px;}
.y40_c00348{bottom:31.698350px;}
.y38_c00348{bottom:31.698500px;}
.y35_c00348{bottom:42.253050px;}
.y24_c00348{bottom:49.646400px;}
.y2e_c00348{bottom:50.735302px;}
.y37_c00348{bottom:53.872350px;}
.y3f_c00348{bottom:55.984800px;}
.y3b_c00348{bottom:55.984950px;}
.y43_c00348{bottom:57.330000px;}
.y21_c00348{bottom:72.885000px;}
.y2d_c00348{bottom:72.909151px;}
.y1e_c00348{bottom:95.067300px;}
.y2c_c00348{bottom:95.083001px;}
.y1b_c00348{bottom:117.249450px;}
.y2b_c00348{bottom:117.256850px;}
.y2a_c00348{bottom:139.430700px;}
.y18_c00348{bottom:139.431750px;}
.y29_c00348{bottom:161.613000px;}
.y15_c00348{bottom:161.614050px;}
.y12_c00348{bottom:183.796200px;}
.y28_c00348{bottom:183.803750px;}
.y27_c00348{bottom:205.977600px;}
.yf_c00348{bottom:205.978500px;}
.yc_c00348{bottom:228.160650px;}
.y9_c00348{bottom:250.342650px;}
.y7_c00348{bottom:350.730000px;}
.y8_c00348{bottom:351.682500px;}
.y32_c00348{bottom:352.738500px;}
.y30_c00348{bottom:373.864500px;}
.y25_c00348{bottom:396.048000px;}
.y22_c00348{bottom:419.286000px;}
.y1f_c00348{bottom:441.469500px;}
.y1c_c00348{bottom:463.650000px;}
.y19_c00348{bottom:485.832000px;}
.y16_c00348{bottom:508.014000px;}
.y13_c00348{bottom:530.197500px;}
.y10_c00348{bottom:552.379500px;}
.yd_c00348{bottom:574.561500px;}
.ya_c00348{bottom:596.745000px;}
.y34_c00348{bottom:619.981500px;}
.y6_c00348{bottom:698.940000px;}
.y5_c00348{bottom:719.640000px;}
.y4_c00348{bottom:761.220000px;}
.y3_c00348{bottom:781.110000px;}
.y2_c00348{bottom:796.594500px;}
.y1_c00348{bottom:827.640000px;}
.h12_c00348{height:20.070000px;}
.hd_c00348{height:21.124500px;}
.ha_c00348{height:21.126000px;}
.h7_c00348{height:22.182000px;}
.h16_c00348{height:38.330074px;}
.h15_c00348{height:46.279144px;}
.h9_c00348{height:47.131198px;}
.he_c00348{height:50.273278px;}
.hc_c00348{height:51.355798px;}
.hb_c00348{height:51.356398px;}
.h6_c00348{height:52.268282px;}
.h2_c00348{height:52.998047px;}
.h13_c00348{height:53.908436px;}
.h11_c00348{height:55.356722px;}
.h8_c00348{height:55.752834px;}
.h10_c00348{height:66.348844px;}
.h3_c00348{height:70.664062px;}
.h4_c00348{height:72.562500px;}
.h14_c00348{height:73.941000px;}
.hf_c00348{height:222.877500px;}
.h5_c00348{height:342.240000px;}
.h0_c00348{height:893.070000px;}
.h1_c00348{height:893.250000px;}
.w6_c00348{width:88.840500px;}
.w5_c00348{width:89.899500px;}
.w7_c00348{width:96.246000px;}
.w9_c00348{width:131.145000px;}
.w8_c00348{width:134.319000px;}
.w3_c00348{width:501.318000px;}
.w4_c00348{width:1047.058500px;}
.w2_c00348{width:1048.116000px;}
.w0_c00348{width:1262.880000px;}
.w1_c00348{width:1263.000000px;}
.x0_c00348{left:0.000000px;}
.xc_c00348{left:2.114100px;}
.x1b_c00348{left:3.164620px;}
.x11_c00348{left:4.221820px;}
.xe_c00348{left:5.296767px;}
.x15_c00348{left:7.412442px;}
.x10_c00348{left:11.633700px;}
.x14_c00348{left:14.807400px;}
.xd_c00348{left:25.383300px;}
.x7_c00348{left:38.074800px;}
.x12_c00348{left:40.181283px;}
.x9_c00348{left:41.247900px;}
.x16_c00348{left:43.371905px;}
.x1d_c00348{left:51.823950px;}
.x19_c00348{left:53.940150px;}
.x2_c00348{left:106.380000px;}
.x6_c00348{left:107.437500px;}
.x1c_c00348{left:121.627950px;}
.x18_c00348{left:123.744000px;}
.xa_c00348{left:130.089150px;}
.x8_c00348{left:131.146800px;}
.xf_c00348{left:198.394500px;}
.x3_c00348{left:207.000000px;}
.x13_c00348{left:288.292500px;}
.x17_c00348{left:385.594500px;}
.x1a_c00348{left:520.972500px;}
.x4_c00348{left:523.980000px;}
.x1_c00348{left:631.440000px;}
.xb_c00348{left:653.178000px;}
.x1e_c00348{left:1129.590000px;}
.x5_c00348{left:1156.590000px;}
@media print{
.v2_c00348{vertical-align:-74.240000pt;}
.v1_c00348{vertical-align:-55.040000pt;}
.v0_c00348{vertical-align:0.000000pt;}
.v3_c00348{vertical-align:3.755733pt;}
.lsc_c00348{letter-spacing:-2.253440pt;}
.ls12_c00348{letter-spacing:-1.855332pt;}
.ls14_c00348{letter-spacing:-1.802752pt;}
.lse_c00348{letter-spacing:-1.521072pt;}
.ls10_c00348{letter-spacing:-1.295728pt;}
.lsf_c00348{letter-spacing:-0.676032pt;}
.ls11_c00348{letter-spacing:-0.360550pt;}
.lsa_c00348{letter-spacing:-0.192000pt;}
.ls17_c00348{letter-spacing:-0.180275pt;}
.ls8_c00348{letter-spacing:-0.128000pt;}
.ls6_c00348{letter-spacing:-0.096000pt;}
.lsb_c00348{letter-spacing:-0.064000pt;}
.ls7_c00348{letter-spacing:0.000000pt;}
.ls9_c00348{letter-spacing:0.064000pt;}
.ls15_c00348{letter-spacing:0.240367pt;}
.lsd_c00348{letter-spacing:0.360550pt;}
.ls13_c00348{letter-spacing:0.878842pt;}
.ls16_c00348{letter-spacing:1.562385pt;}
.ls18_c00348{letter-spacing:1.611210pt;}
.ls5_c00348{letter-spacing:2.884403pt;}
.ls3_c00348{letter-spacing:296.794669pt;}
.ls2_c00348{letter-spacing:296.853163pt;}
.ls4_c00348{letter-spacing:308.062069pt;}
.ls0_c00348{letter-spacing:644.960000pt;}
.ls1_c00348{letter-spacing:1850.880000pt;}
.wse_c00348{word-spacing:-48.824533pt;}
.ws0_c00348{word-spacing:-15.808000pt;}
.wsd_c00348{word-spacing:-14.662383pt;}
.wsf_c00348{word-spacing:-13.821099pt;}
.ws10_c00348{word-spacing:-13.400457pt;}
.ws7_c00348{word-spacing:-12.055904pt;}
.wsb_c00348{word-spacing:-11.436208pt;}
.ws1a_c00348{word-spacing:-1.806508pt;}
.ws20_c00348{word-spacing:-1.611210pt;}
.ws21_c00348{word-spacing:-1.442202pt;}
.ws1e_c00348{word-spacing:-0.360550pt;}
.ws1c_c00348{word-spacing:-0.120183pt;}
.ws15_c00348{word-spacing:-0.064000pt;}
.ws11_c00348{word-spacing:0.000000pt;}
.ws16_c00348{word-spacing:0.064000pt;}
.ws14_c00348{word-spacing:0.128000pt;}
.ws13_c00348{word-spacing:0.144000pt;}
.ws1d_c00348{word-spacing:0.180275pt;}
.ws12_c00348{word-spacing:0.240000pt;}
.ws18_c00348{word-spacing:0.360550pt;}
.ws19_c00348{word-spacing:0.927666pt;}
.ws1f_c00348{word-spacing:1.201835pt;}
.ws17_c00348{word-spacing:2.253440pt;}
.ws1b_c00348{word-spacing:3.244954pt;}
.ws4_c00348{word-spacing:254.357040pt;}
.ws2_c00348{word-spacing:255.703470pt;}
.wsa_c00348{word-spacing:269.398752pt;}
.ws6_c00348{word-spacing:270.660678pt;}
.ws1_c00348{word-spacing:279.037495pt;}
.ws3_c00348{word-spacing:282.851789pt;}
.wsc_c00348{word-spacing:283.243916pt;}
.ws9_c00348{word-spacing:285.702390pt;}
.ws8_c00348{word-spacing:286.998118pt;}
.ws5_c00348{word-spacing:290.304895pt;}
._6_c00348{margin-left:-5.949082pt;}
._7_c00348{margin-left:-4.604966pt;}
._8_c00348{margin-left:-3.640130pt;}
._5_c00348{margin-left:-2.553899pt;}
._1_c00348{margin-left:-0.940800pt;}
._0_c00348{width:1.089600pt;}
._9_c00348{width:2.107169pt;}
._2_c00348{width:3.081579pt;}
._a_c00348{width:4.092894pt;}
._b_c00348{width:5.880037pt;}
._4_c00348{width:300.578850pt;}
._3_c00348{width:308.092048pt;}
.fs5_c00348{font-size:41.313067pt;}
.fs0_c00348{font-size:48.000000pt;}
.fs4_c00348{font-size:48.824533pt;}
.fs2_c00348{font-size:56.336000pt;}
.fs3_c00348{font-size:60.091733pt;}
.fs1_c00348{font-size:64.000000pt;}
.y0_c00348{bottom:0.000000pt;}
.y20_c00348{bottom:3.754667pt;}
.y14_c00348{bottom:3.755467pt;}
.y23_c00348{bottom:3.755733pt;}
.y11_c00348{bottom:3.755867pt;}
.ye_c00348{bottom:3.756000pt;}
.y1d_c00348{bottom:3.756133pt;}
.y1a_c00348{bottom:3.756400pt;}
.y17_c00348{bottom:3.756667pt;}
.yb_c00348{bottom:4.693867pt;}
.y26_c00348{bottom:4.694133pt;}
.y33_c00348{bottom:4.695333pt;}
.y31_c00348{bottom:5.634267pt;}
.y3e_c00348{bottom:6.573200pt;}
.y41_c00348{bottom:6.573333pt;}
.y3a_c00348{bottom:8.451333pt;}
.y39_c00348{bottom:8.466356pt;}
.y36_c00348{bottom:17.848178pt;}
.y3d_c00348{bottom:25.352000pt;}
.y2f_c00348{bottom:25.387957pt;}
.y3c_c00348{bottom:28.161422pt;}
.y42_c00348{bottom:28.168933pt;}
.y40_c00348{bottom:28.176311pt;}
.y38_c00348{bottom:28.176445pt;}
.y35_c00348{bottom:37.558267pt;}
.y24_c00348{bottom:44.130133pt;}
.y2e_c00348{bottom:45.098046pt;}
.y37_c00348{bottom:47.886533pt;}
.y3f_c00348{bottom:49.764267pt;}
.y3b_c00348{bottom:49.764400pt;}
.y43_c00348{bottom:50.960000pt;}
.y21_c00348{bottom:64.786667pt;}
.y2d_c00348{bottom:64.808134pt;}
.y1e_c00348{bottom:84.504267pt;}
.y2c_c00348{bottom:84.518223pt;}
.y1b_c00348{bottom:104.221733pt;}
.y2b_c00348{bottom:104.228311pt;}
.y2a_c00348{bottom:123.938400pt;}
.y18_c00348{bottom:123.939333pt;}
.y29_c00348{bottom:143.656000pt;}
.y15_c00348{bottom:143.656933pt;}
.y12_c00348{bottom:163.374400pt;}
.y28_c00348{bottom:163.381111pt;}
.y27_c00348{bottom:183.091200pt;}
.yf_c00348{bottom:183.092000pt;}
.yc_c00348{bottom:202.809467pt;}
.y9_c00348{bottom:222.526800pt;}
.y7_c00348{bottom:311.760000pt;}
.y8_c00348{bottom:312.606667pt;}
.y32_c00348{bottom:313.545333pt;}
.y30_c00348{bottom:332.324000pt;}
.y25_c00348{bottom:352.042667pt;}
.y22_c00348{bottom:372.698667pt;}
.y1f_c00348{bottom:392.417333pt;}
.y1c_c00348{bottom:412.133333pt;}
.y19_c00348{bottom:431.850667pt;}
.y16_c00348{bottom:451.568000pt;}
.y13_c00348{bottom:471.286667pt;}
.y10_c00348{bottom:491.004000pt;}
.yd_c00348{bottom:510.721333pt;}
.ya_c00348{bottom:530.440000pt;}
.y34_c00348{bottom:551.094667pt;}
.y6_c00348{bottom:621.280000pt;}
.y5_c00348{bottom:639.680000pt;}
.y4_c00348{bottom:676.640000pt;}
.y3_c00348{bottom:694.320000pt;}
.y2_c00348{bottom:708.084000pt;}
.y1_c00348{bottom:735.680000pt;}
.h12_c00348{height:17.840000pt;}
.hd_c00348{height:18.777333pt;}
.ha_c00348{height:18.778667pt;}
.h7_c00348{height:19.717333pt;}
.h16_c00348{height:34.071177pt;}
.h15_c00348{height:41.137017pt;}
.h9_c00348{height:41.894398pt;}
.he_c00348{height:44.687358pt;}
.hc_c00348{height:45.649598pt;}
.hb_c00348{height:45.650132pt;}
.h6_c00348{height:46.460695pt;}
.h2_c00348{height:47.109375pt;}
.h13_c00348{height:47.918609pt;}
.h11_c00348{height:49.205975pt;}
.h8_c00348{height:49.558075pt;}
.h10_c00348{height:58.976750pt;}
.h3_c00348{height:62.812500pt;}
.h4_c00348{height:64.500000pt;}
.h14_c00348{height:65.725333pt;}
.hf_c00348{height:198.113333pt;}
.h5_c00348{height:304.213333pt;}
.h0_c00348{height:793.840000pt;}
.h1_c00348{height:794.000000pt;}
.w6_c00348{width:78.969333pt;}
.w5_c00348{width:79.910667pt;}
.w7_c00348{width:85.552000pt;}
.w9_c00348{width:116.573333pt;}
.w8_c00348{width:119.394667pt;}
.w3_c00348{width:445.616000pt;}
.w4_c00348{width:930.718667pt;}
.w2_c00348{width:931.658667pt;}
.w0_c00348{width:1122.560000pt;}
.w1_c00348{width:1122.666667pt;}
.x0_c00348{left:0.000000pt;}
.xc_c00348{left:1.879200pt;}
.x1b_c00348{left:2.812996pt;}
.x11_c00348{left:3.752729pt;}
.xe_c00348{left:4.708238pt;}
.x15_c00348{left:6.588838pt;}
.x10_c00348{left:10.341067pt;}
.x14_c00348{left:13.162133pt;}
.xd_c00348{left:22.562933pt;}
.x7_c00348{left:33.844267pt;}
.x12_c00348{left:35.716696pt;}
.x9_c00348{left:36.664800pt;}
.x16_c00348{left:38.552804pt;}
.x1d_c00348{left:46.065733pt;}
.x19_c00348{left:47.946800pt;}
.x2_c00348{left:94.560000pt;}
.x6_c00348{left:95.500000pt;}
.x1c_c00348{left:108.113733pt;}
.x18_c00348{left:109.994667pt;}
.xa_c00348{left:115.634800pt;}
.x8_c00348{left:116.574933pt;}
.xf_c00348{left:176.350667pt;}
.x3_c00348{left:184.000000pt;}
.x13_c00348{left:256.260000pt;}
.x17_c00348{left:342.750667pt;}
.x1a_c00348{left:463.086667pt;}
.x4_c00348{left:465.760000pt;}
.x1_c00348{left:561.280000pt;}
.xb_c00348{left:580.602667pt;}
.x1e_c00348{left:1004.080000pt;}
.x5_c00348{left:1028.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_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_9b8b149765c24c2a865e6df8.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_ec0f71f477275a469874aea9.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;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_c00349;src:url('chunks/assets/font_e2d6d9a8a3befbbf5544c048.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00349;src:url('chunks/assets/font_c35402909bef5d6bde7622ab.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00349;src:url('chunks/assets/font_6002d30bf50b27def629cc14.woff2')format("woff");}.ff6_c00349{font-family:ff6_c00349;line-height:3.333984;font-style:normal;font-weight: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_c00349;src:url('chunks/assets/font_98e6ed6edba8c39c08c3ea34.woff2')format("woff");}.ff7_c00349{font-family:ff7_c00349;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:ff8_c00349;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8_c00349{font-family:ff8_c00349;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00349{vertical-align:-61.938000px;}
.v0_c00349{vertical-align:0.000000px;}
.v2_c00349{vertical-align:2.880000px;}
.lse_c00349{letter-spacing:-0.288000px;}
.lsd_c00349{letter-spacing:0.000000px;}
.ls5_c00349{letter-spacing:0.072000px;}
.lsb_c00349{letter-spacing:0.144000px;}
.ls3_c00349{letter-spacing:0.360000px;}
.ls2_c00349{letter-spacing:1.368000px;}
.lsa_c00349{letter-spacing:4.320000px;}
.ls7_c00349{letter-spacing:8.280000px;}
.ls1_c00349{letter-spacing:10.807200px;}
.ls8_c00349{letter-spacing:11.167200px;}
.ls9_c00349{letter-spacing:13.320000px;}
.lsc_c00349{letter-spacing:19.440000px;}
.ls4_c00349{letter-spacing:28.800000px;}
.ls6_c00349{letter-spacing:30.744000px;}
.ls0_c00349{letter-spacing:319.518000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:-18.072000px;}
.ws2_c00349{word-spacing:-18.000000px;}
.ws1_c00349{word-spacing:-15.840000px;}
.ws1f_c00349{word-spacing:-0.360000px;}
.ws4_c00349{word-spacing:-0.162000px;}
.ws8_c00349{word-spacing:-0.144000px;}
.wse_c00349{word-spacing:-0.072000px;}
.ws3_c00349{word-spacing:0.000000px;}
.ws1b_c00349{word-spacing:0.288000px;}
.ws1a_c00349{word-spacing:3.528000px;}
.ws1e_c00349{word-spacing:4.608000px;}
.ws16_c00349{word-spacing:4.680000px;}
.ws17_c00349{word-spacing:5.328000px;}
.wsf_c00349{word-spacing:8.280000px;}
.ws10_c00349{word-spacing:8.640000px;}
.ws11_c00349{word-spacing:10.728000px;}
.wsa_c00349{word-spacing:10.800000px;}
.ws1d_c00349{word-spacing:11.808000px;}
.ws14_c00349{word-spacing:13.248000px;}
.ws15_c00349{word-spacing:13.320000px;}
.ws6_c00349{word-spacing:13.968000px;}
.ws5_c00349{word-spacing:14.040000px;}
.ws7_c00349{word-spacing:15.408000px;}
.ws9_c00349{word-spacing:17.208000px;}
.ws19_c00349{word-spacing:17.928000px;}
.ws18_c00349{word-spacing:18.000000px;}
.ws1c_c00349{word-spacing:19.440000px;}
.ws13_c00349{word-spacing:20.880000px;}
.wsc_c00349{word-spacing:28.728000px;}
.wsb_c00349{word-spacing:28.800000px;}
.wsd_c00349{word-spacing:29.088000px;}
.ws12_c00349{word-spacing:34.560000px;}
._0_c00349{margin-left:-1.008000px;}
._1_c00349{width:1.008000px;}
._2_c00349{width:2.808000px;}
._4_c00349{width:12.024000px;}
._5_c00349{width:16.984800px;}
._3_c00349{width:20.152800px;}
.fc0_c00349{color:rgb(0,0,0);}
.fs0_c00349{font-size:54.000000px;}
.fs1_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y26_c00349{bottom:57.240000px;}
.y25_c00349{bottom:116.190000px;}
.y24_c00349{bottom:147.240000px;}
.y23_c00349{bottom:178.290000px;}
.y22_c00349{bottom:209.340000px;}
.y21_c00349{bottom:240.390000px;}
.y20_c00349{bottom:271.440000px;}
.y1f_c00349{bottom:302.490000px;}
.y1e_c00349{bottom:333.540000px;}
.y1d_c00349{bottom:364.590000px;}
.y1c_c00349{bottom:395.640000px;}
.y1b_c00349{bottom:426.690000px;}
.y1a_c00349{bottom:457.740000px;}
.y19_c00349{bottom:488.790000px;}
.y18_c00349{bottom:519.840000px;}
.y17_c00349{bottom:550.890000px;}
.y16_c00349{bottom:581.940000px;}
.y15_c00349{bottom:612.990000px;}
.y14_c00349{bottom:644.040000px;}
.y13_c00349{bottom:675.090000px;}
.y12_c00349{bottom:706.140000px;}
.y11_c00349{bottom:737.190000px;}
.y10_c00349{bottom:768.240000px;}
.yf_c00349{bottom:799.290000px;}
.ye_c00349{bottom:830.340000px;}
.yd_c00349{bottom:861.480000px;}
.yc_c00349{bottom:892.980000px;}
.yb_c00349{bottom:924.030000px;}
.ya_c00349{bottom:955.080000px;}
.y9_c00349{bottom:985.950000px;}
.y8_c00349{bottom:1017.180000px;}
.y7_c00349{bottom:1048.230000px;}
.y6_c00349{bottom:1079.280000px;}
.y5_c00349{bottom:1110.330000px;}
.y4_c00349{bottom:1131.030000px;}
.y3_c00349{bottom:1150.915500px;}
.y2_c00349{bottom:1166.400000px;}
.y1_c00349{bottom:1197.450000px;}
.h2_c00349{height:52.998047px;}
.h3_c00349{height:70.664062px;}
.h4_c00349{height:72.562500px;}
.h6_c00349{height:75.093750px;}
.h5_c00349{height:143.542969px;}
.h0_c00349{height:1262.880000px;}
.h1_c00349{height:1263.000000px;}
.w0_c00349{width:893.070000px;}
.w1_c00349{width:893.250000px;}
.x0_c00349{left:0.000000px;}
.x2_c00349{left:127.620000px;}
.x3_c00349{left:154.620000px;}
.x1_c00349{left:446.580000px;}
@media print{
.v1_c00349{vertical-align:-55.056000pt;}
.v0_c00349{vertical-align:0.000000pt;}
.v2_c00349{vertical-align:2.560000pt;}
.lse_c00349{letter-spacing:-0.256000pt;}
.lsd_c00349{letter-spacing:0.000000pt;}
.ls5_c00349{letter-spacing:0.064000pt;}
.lsb_c00349{letter-spacing:0.128000pt;}
.ls3_c00349{letter-spacing:0.320000pt;}
.ls2_c00349{letter-spacing:1.216000pt;}
.lsa_c00349{letter-spacing:3.840000pt;}
.ls7_c00349{letter-spacing:7.360000pt;}
.ls1_c00349{letter-spacing:9.606400pt;}
.ls8_c00349{letter-spacing:9.926400pt;}
.ls9_c00349{letter-spacing:11.840000pt;}
.lsc_c00349{letter-spacing:17.280000pt;}
.ls4_c00349{letter-spacing:25.600000pt;}
.ls6_c00349{letter-spacing:27.328000pt;}
.ls0_c00349{letter-spacing:284.016000pt;}
.ws0_c00349{word-spacing:-16.064000pt;}
.ws2_c00349{word-spacing:-16.000000pt;}
.ws1_c00349{word-spacing:-14.080000pt;}
.ws1f_c00349{word-spacing:-0.320000pt;}
.ws4_c00349{word-spacing:-0.144000pt;}
.ws8_c00349{word-spacing:-0.128000pt;}
.wse_c00349{word-spacing:-0.064000pt;}
.ws3_c00349{word-spacing:0.000000pt;}
.ws1b_c00349{word-spacing:0.256000pt;}
.ws1a_c00349{word-spacing:3.136000pt;}
.ws1e_c00349{word-spacing:4.096000pt;}
.ws16_c00349{word-spacing:4.160000pt;}
.ws17_c00349{word-spacing:4.736000pt;}
.wsf_c00349{word-spacing:7.360000pt;}
.ws10_c00349{word-spacing:7.680000pt;}
.ws11_c00349{word-spacing:9.536000pt;}
.wsa_c00349{word-spacing:9.600000pt;}
.ws1d_c00349{word-spacing:10.496000pt;}
.ws14_c00349{word-spacing:11.776000pt;}
.ws15_c00349{word-spacing:11.840000pt;}
.ws6_c00349{word-spacing:12.416000pt;}
.ws5_c00349{word-spacing:12.480000pt;}
.ws7_c00349{word-spacing:13.696000pt;}
.ws9_c00349{word-spacing:15.296000pt;}
.ws19_c00349{word-spacing:15.936000pt;}
.ws18_c00349{word-spacing:16.000000pt;}
.ws1c_c00349{word-spacing:17.280000pt;}
.ws13_c00349{word-spacing:18.560000pt;}
.wsc_c00349{word-spacing:25.536000pt;}
.wsb_c00349{word-spacing:25.600000pt;}
.wsd_c00349{word-spacing:25.856000pt;}
.ws12_c00349{word-spacing:30.720000pt;}
._0_c00349{margin-left:-0.896000pt;}
._1_c00349{width:0.896000pt;}
._2_c00349{width:2.496000pt;}
._4_c00349{width:10.688000pt;}
._5_c00349{width:15.097600pt;}
._3_c00349{width:17.913600pt;}
.fs0_c00349{font-size:48.000000pt;}
.fs1_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y26_c00349{bottom:50.880000pt;}
.y25_c00349{bottom:103.280000pt;}
.y24_c00349{bottom:130.880000pt;}
.y23_c00349{bottom:158.480000pt;}
.y22_c00349{bottom:186.080000pt;}
.y21_c00349{bottom:213.680000pt;}
.y20_c00349{bottom:241.280000pt;}
.y1f_c00349{bottom:268.880000pt;}
.y1e_c00349{bottom:296.480000pt;}
.y1d_c00349{bottom:324.080000pt;}
.y1c_c00349{bottom:351.680000pt;}
.y1b_c00349{bottom:379.280000pt;}
.y1a_c00349{bottom:406.880000pt;}
.y19_c00349{bottom:434.480000pt;}
.y18_c00349{bottom:462.080000pt;}
.y17_c00349{bottom:489.680000pt;}
.y16_c00349{bottom:517.280000pt;}
.y15_c00349{bottom:544.880000pt;}
.y14_c00349{bottom:572.480000pt;}
.y13_c00349{bottom:600.080000pt;}
.y12_c00349{bottom:627.680000pt;}
.y11_c00349{bottom:655.280000pt;}
.y10_c00349{bottom:682.880000pt;}
.yf_c00349{bottom:710.480000pt;}
.ye_c00349{bottom:738.080000pt;}
.yd_c00349{bottom:765.760000pt;}
.yc_c00349{bottom:793.760000pt;}
.yb_c00349{bottom:821.360000pt;}
.ya_c00349{bottom:848.960000pt;}
.y9_c00349{bottom:876.400000pt;}
.y8_c00349{bottom:904.160000pt;}
.y7_c00349{bottom:931.760000pt;}
.y6_c00349{bottom:959.360000pt;}
.y5_c00349{bottom:986.960000pt;}
.y4_c00349{bottom:1005.360000pt;}
.y3_c00349{bottom:1023.036000pt;}
.y2_c00349{bottom:1036.800000pt;}
.y1_c00349{bottom:1064.400000pt;}
.h2_c00349{height:47.109375pt;}
.h3_c00349{height:62.812500pt;}
.h4_c00349{height:64.500000pt;}
.h6_c00349{height:66.750000pt;}
.h5_c00349{height:127.593750pt;}
.h0_c00349{height:1122.560000pt;}
.h1_c00349{height:1122.666667pt;}
.w0_c00349{width:793.840000pt;}
.w1_c00349{width:794.000000pt;}
.x0_c00349{left:0.000000pt;}
.x2_c00349{left:113.440000pt;}
.x3_c00349{left:137.440000pt;}
.x1_c00349{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfb5dcd31d91522a6473b124.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_1cdfeac7af1d6ad1891396ba.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;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_c00350;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00350;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00350{vertical-align:-14.760000px;}
.v0_c00350{vertical-align:0.000000px;}
.v2_c00350{vertical-align:14.760000px;}
.ls10_c00350{letter-spacing:-0.288000px;}
.lsd_c00350{letter-spacing:-0.216000px;}
.lsc_c00350{letter-spacing:-0.108000px;}
.lsf_c00350{letter-spacing:-0.072000px;}
.lsb_c00350{letter-spacing:0.000000px;}
.ls2_c00350{letter-spacing:0.072000px;}
.ls1_c00350{letter-spacing:0.144000px;}
.ls9_c00350{letter-spacing:0.360000px;}
.lse_c00350{letter-spacing:0.432000px;}
.ls8_c00350{letter-spacing:1.800000px;}
.ls0_c00350{letter-spacing:12.600000px;}
.lsa_c00350{letter-spacing:16.920000px;}
.ls5_c00350{letter-spacing:20.016000px;}
.ls7_c00350{letter-spacing:22.320000px;}
.ls3_c00350{letter-spacing:22.961520px;}
.ls6_c00350{letter-spacing:23.040000px;}
.ls4_c00350{letter-spacing:23.321520px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00350{word-spacing:-72.000000px;}
.ws5_c00350{word-spacing:-18.144000px;}
.ws6_c00350{word-spacing:-18.072000px;}
.ws7_c00350{word-spacing:-18.000000px;}
.ws1_c00350{word-spacing:-17.928000px;}
.ws0_c00350{word-spacing:-17.784000px;}
.ws8_c00350{word-spacing:-17.712000px;}
.ws4_c00350{word-spacing:-15.840000px;}
.wsd_c00350{word-spacing:-0.432000px;}
.ws1a_c00350{word-spacing:-0.144000px;}
.ws11_c00350{word-spacing:-0.072000px;}
.ws9_c00350{word-spacing:0.000000px;}
.wsb_c00350{word-spacing:0.162000px;}
.wsa_c00350{word-spacing:0.270000px;}
.ws29_c00350{word-spacing:0.288000px;}
.ws28_c00350{word-spacing:0.360000px;}
.ws16_c00350{word-spacing:0.648000px;}
.ws15_c00350{word-spacing:0.720000px;}
.ws21_c00350{word-spacing:1.080000px;}
.ws17_c00350{word-spacing:1.440000px;}
.ws27_c00350{word-spacing:1.800000px;}
.ws31_c00350{word-spacing:2.880000px;}
.ws14_c00350{word-spacing:3.888000px;}
.ws3_c00350{word-spacing:4.176000px;}
.ws12_c00350{word-spacing:4.968000px;}
.ws13_c00350{word-spacing:5.040000px;}
.ws30_c00350{word-spacing:5.328000px;}
.ws19_c00350{word-spacing:6.408000px;}
.ws18_c00350{word-spacing:6.480000px;}
.ws23_c00350{word-spacing:8.208000px;}
.ws1c_c00350{word-spacing:11.088000px;}
.ws1b_c00350{word-spacing:11.160000px;}
.ws1f_c00350{word-spacing:11.808000px;}
.ws20_c00350{word-spacing:11.880000px;}
.wsc_c00350{word-spacing:12.240000px;}
.ws33_c00350{word-spacing:13.968000px;}
.ws24_c00350{word-spacing:15.840000px;}
.ws2a_c00350{word-spacing:16.128000px;}
.ws2b_c00350{word-spacing:16.416000px;}
.ws2c_c00350{word-spacing:16.560000px;}
.wsf_c00350{word-spacing:17.136000px;}
.wse_c00350{word-spacing:17.208000px;}
.ws10_c00350{word-spacing:17.280000px;}
.ws32_c00350{word-spacing:17.568000px;}
.ws22_c00350{word-spacing:22.320000px;}
.ws1d_c00350{word-spacing:22.968000px;}
.ws1e_c00350{word-spacing:23.040000px;}
.ws2d_c00350{word-spacing:24.480000px;}
.ws25_c00350{word-spacing:27.360000px;}
.ws26_c00350{word-spacing:27.648000px;}
.ws2f_c00350{word-spacing:30.168000px;}
.ws2e_c00350{word-spacing:30.240000px;}
._6_c00350{margin-left:-6.256800px;}
._5_c00350{margin-left:-3.456000px;}
._1_c00350{margin-left:-1.058400px;}
._0_c00350{width:1.220400px;}
._4_c00350{width:3.456000px;}
._3_c00350{width:4.680000px;}
._7_c00350{width:6.264000px;}
._2_c00350{width:16.876800px;}
._9_c00350{width:21.412800px;}
._8_c00350{width:22.658400px;}
._a_c00350{width:30.600000px;}
.fc0_c00350{color:rgb(0,0,0);}
.fs2_c00350{font-size:51.120000px;}
.fs0_c00350{font-size:54.000000px;}
.fs1_c00350{font-size:72.000000px;}
.y0_c00350{bottom:0.000000px;}
.y27_c00350{bottom:57.240000px;}
.y26_c00350{bottom:113.220000px;}
.y25_c00350{bottom:144.270000px;}
.y24_c00350{bottom:175.410000px;}
.y23_c00350{bottom:206.910000px;}
.y22_c00350{bottom:237.960000px;}
.y21_c00350{bottom:269.010000px;}
.y20_c00350{bottom:300.060000px;}
.y1f_c00350{bottom:331.290000px;}
.y1e_c00350{bottom:362.790000px;}
.y1d_c00350{bottom:393.840000px;}
.y1c_c00350{bottom:424.890000px;}
.y1b_c00350{bottom:455.940000px;}
.y1a_c00350{bottom:486.990000px;}
.y19_c00350{bottom:518.040000px;}
.y18_c00350{bottom:549.090000px;}
.y17_c00350{bottom:580.320000px;}
.y16_c00350{bottom:611.730000px;}
.y15_c00350{bottom:642.780000px;}
.y14_c00350{bottom:673.830000px;}
.y13_c00350{bottom:705.060000px;}
.y12_c00350{bottom:736.560000px;}
.y11_c00350{bottom:767.610000px;}
.y10_c00350{bottom:798.660000px;}
.yf_c00350{bottom:829.710000px;}
.ye_c00350{bottom:860.760000px;}
.yd_c00350{bottom:891.990000px;}
.yc_c00350{bottom:923.490000px;}
.yb_c00350{bottom:954.540000px;}
.ya_c00350{bottom:985.680000px;}
.y9_c00350{bottom:1017.180000px;}
.y8_c00350{bottom:1048.230000px;}
.y7_c00350{bottom:1079.280000px;}
.y6_c00350{bottom:1110.330000px;}
.y5_c00350{bottom:1131.030000px;}
.y4_c00350{bottom:1150.920000px;}
.y3_c00350{bottom:1166.404500px;}
.y2_c00350{bottom:1181.970000px;}
.y1_c00350{bottom:1197.450000px;}
.h6_c00350{height:50.027344px;}
.h3_c00350{height:52.971680px;}
.h2_c00350{height:52.998047px;}
.h4_c00350{height:70.664062px;}
.h5_c00350{height:143.542969px;}
.h0_c00350{height:1262.880000px;}
.h1_c00350{height:1263.000000px;}
.w0_c00350{width:893.070000px;}
.w1_c00350{width:893.250000px;}
.x0_c00350{left:0.000000px;}
.x3_c00350{left:127.620000px;}
.x2_c00350{left:425.160000px;}
.x1_c00350{left:446.580000px;}
.x4_c00350{left:738.540000px;}
@media print{
.v1_c00350{vertical-align:-13.120000pt;}
.v0_c00350{vertical-align:0.000000pt;}
.v2_c00350{vertical-align:13.120000pt;}
.ls10_c00350{letter-spacing:-0.256000pt;}
.lsd_c00350{letter-spacing:-0.192000pt;}
.lsc_c00350{letter-spacing:-0.096000pt;}
.lsf_c00350{letter-spacing:-0.064000pt;}
.lsb_c00350{letter-spacing:0.000000pt;}
.ls2_c00350{letter-spacing:0.064000pt;}
.ls1_c00350{letter-spacing:0.128000pt;}
.ls9_c00350{letter-spacing:0.320000pt;}
.lse_c00350{letter-spacing:0.384000pt;}
.ls8_c00350{letter-spacing:1.600000pt;}
.ls0_c00350{letter-spacing:11.200000pt;}
.lsa_c00350{letter-spacing:15.040000pt;}
.ls5_c00350{letter-spacing:17.792000pt;}
.ls7_c00350{letter-spacing:19.840000pt;}
.ls3_c00350{letter-spacing:20.410240pt;}
.ls6_c00350{letter-spacing:20.480000pt;}
.ls4_c00350{letter-spacing:20.730240pt;}
.ws2_c00350{word-spacing:-64.000000pt;}
.ws5_c00350{word-spacing:-16.128000pt;}
.ws6_c00350{word-spacing:-16.064000pt;}
.ws7_c00350{word-spacing:-16.000000pt;}
.ws1_c00350{word-spacing:-15.936000pt;}
.ws0_c00350{word-spacing:-15.808000pt;}
.ws8_c00350{word-spacing:-15.744000pt;}
.ws4_c00350{word-spacing:-14.080000pt;}
.wsd_c00350{word-spacing:-0.384000pt;}
.ws1a_c00350{word-spacing:-0.128000pt;}
.ws11_c00350{word-spacing:-0.064000pt;}
.ws9_c00350{word-spacing:0.000000pt;}
.wsb_c00350{word-spacing:0.144000pt;}
.wsa_c00350{word-spacing:0.240000pt;}
.ws29_c00350{word-spacing:0.256000pt;}
.ws28_c00350{word-spacing:0.320000pt;}
.ws16_c00350{word-spacing:0.576000pt;}
.ws15_c00350{word-spacing:0.640000pt;}
.ws21_c00350{word-spacing:0.960000pt;}
.ws17_c00350{word-spacing:1.280000pt;}
.ws27_c00350{word-spacing:1.600000pt;}
.ws31_c00350{word-spacing:2.560000pt;}
.ws14_c00350{word-spacing:3.456000pt;}
.ws3_c00350{word-spacing:3.712000pt;}
.ws12_c00350{word-spacing:4.416000pt;}
.ws13_c00350{word-spacing:4.480000pt;}
.ws30_c00350{word-spacing:4.736000pt;}
.ws19_c00350{word-spacing:5.696000pt;}
.ws18_c00350{word-spacing:5.760000pt;}
.ws23_c00350{word-spacing:7.296000pt;}
.ws1c_c00350{word-spacing:9.856000pt;}
.ws1b_c00350{word-spacing:9.920000pt;}
.ws1f_c00350{word-spacing:10.496000pt;}
.ws20_c00350{word-spacing:10.560000pt;}
.wsc_c00350{word-spacing:10.880000pt;}
.ws33_c00350{word-spacing:12.416000pt;}
.ws24_c00350{word-spacing:14.080000pt;}
.ws2a_c00350{word-spacing:14.336000pt;}
.ws2b_c00350{word-spacing:14.592000pt;}
.ws2c_c00350{word-spacing:14.720000pt;}
.wsf_c00350{word-spacing:15.232000pt;}
.wse_c00350{word-spacing:15.296000pt;}
.ws10_c00350{word-spacing:15.360000pt;}
.ws32_c00350{word-spacing:15.616000pt;}
.ws22_c00350{word-spacing:19.840000pt;}
.ws1d_c00350{word-spacing:20.416000pt;}
.ws1e_c00350{word-spacing:20.480000pt;}
.ws2d_c00350{word-spacing:21.760000pt;}
.ws25_c00350{word-spacing:24.320000pt;}
.ws26_c00350{word-spacing:24.576000pt;}
.ws2f_c00350{word-spacing:26.816000pt;}
.ws2e_c00350{word-spacing:26.880000pt;}
._6_c00350{margin-left:-5.561600pt;}
._5_c00350{margin-left:-3.072000pt;}
._1_c00350{margin-left:-0.940800pt;}
._0_c00350{width:1.084800pt;}
._4_c00350{width:3.072000pt;}
._3_c00350{width:4.160000pt;}
._7_c00350{width:5.568000pt;}
._2_c00350{width:15.001600pt;}
._9_c00350{width:19.033600pt;}
._8_c00350{width:20.140800pt;}
._a_c00350{width:27.200000pt;}
.fs2_c00350{font-size:45.440000pt;}
.fs0_c00350{font-size:48.000000pt;}
.fs1_c00350{font-size:64.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y27_c00350{bottom:50.880000pt;}
.y26_c00350{bottom:100.640000pt;}
.y25_c00350{bottom:128.240000pt;}
.y24_c00350{bottom:155.920000pt;}
.y23_c00350{bottom:183.920000pt;}
.y22_c00350{bottom:211.520000pt;}
.y21_c00350{bottom:239.120000pt;}
.y20_c00350{bottom:266.720000pt;}
.y1f_c00350{bottom:294.480000pt;}
.y1e_c00350{bottom:322.480000pt;}
.y1d_c00350{bottom:350.080000pt;}
.y1c_c00350{bottom:377.680000pt;}
.y1b_c00350{bottom:405.280000pt;}
.y1a_c00350{bottom:432.880000pt;}
.y19_c00350{bottom:460.480000pt;}
.y18_c00350{bottom:488.080000pt;}
.y17_c00350{bottom:515.840000pt;}
.y16_c00350{bottom:543.760000pt;}
.y15_c00350{bottom:571.360000pt;}
.y14_c00350{bottom:598.960000pt;}
.y13_c00350{bottom:626.720000pt;}
.y12_c00350{bottom:654.720000pt;}
.y11_c00350{bottom:682.320000pt;}
.y10_c00350{bottom:709.920000pt;}
.yf_c00350{bottom:737.520000pt;}
.ye_c00350{bottom:765.120000pt;}
.yd_c00350{bottom:792.880000pt;}
.yc_c00350{bottom:820.880000pt;}
.yb_c00350{bottom:848.480000pt;}
.ya_c00350{bottom:876.160000pt;}
.y9_c00350{bottom:904.160000pt;}
.y8_c00350{bottom:931.760000pt;}
.y7_c00350{bottom:959.360000pt;}
.y6_c00350{bottom:986.960000pt;}
.y5_c00350{bottom:1005.360000pt;}
.y4_c00350{bottom:1023.040000pt;}
.y3_c00350{bottom:1036.804000pt;}
.y2_c00350{bottom:1050.640000pt;}
.y1_c00350{bottom:1064.400000pt;}
.h6_c00350{height:44.468750pt;}
.h3_c00350{height:47.085938pt;}
.h2_c00350{height:47.109375pt;}
.h4_c00350{height:62.812500pt;}
.h5_c00350{height:127.593750pt;}
.h0_c00350{height:1122.560000pt;}
.h1_c00350{height:1122.666667pt;}
.w0_c00350{width:793.840000pt;}
.w1_c00350{width:794.000000pt;}
.x0_c00350{left:0.000000pt;}
.x3_c00350{left:113.440000pt;}
.x2_c00350{left:377.920000pt;}
.x1_c00350{left:396.960000pt;}
.x4_c00350{left:656.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_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_447a6b164db158100fa78681.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_70c362177f662b8cf44bd83c.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;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_c00351;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00351{font-family:ff4_c00351;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00351;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;line-height:3.333984;font-style: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);}
.v1_c00351{vertical-align:-61.938000px;}
.v2_c00351{vertical-align:-14.760000px;}
.v0_c00351{vertical-align:0.000000px;}
.v3_c00351{vertical-align:14.760000px;}
.lsc_c00351{letter-spacing:-0.360000px;}
.lsd_c00351{letter-spacing:-0.216000px;}
.lse_c00351{letter-spacing:-0.072000px;}
.lsb_c00351{letter-spacing:0.000000px;}
.ls7_c00351{letter-spacing:0.072000px;}
.lsf_c00351{letter-spacing:0.144000px;}
.ls4_c00351{letter-spacing:0.360000px;}
.lsa_c00351{letter-spacing:10.800000px;}
.ls1_c00351{letter-spacing:14.040000px;}
.ls9_c00351{letter-spacing:15.120000px;}
.ls8_c00351{letter-spacing:16.200000px;}
.ls6_c00351{letter-spacing:20.016000px;}
.ls5_c00351{letter-spacing:22.961520px;}
.ls3_c00351{letter-spacing:33.480000px;}
.ls2_c00351{letter-spacing:33.840000px;}
.ls0_c00351{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00351{word-spacing:-72.000000px;}
.ws4_c00351{word-spacing:-18.144000px;}
.ws5_c00351{word-spacing:-18.072000px;}
.ws1_c00351{word-spacing:-18.000000px;}
.ws0_c00351{word-spacing:-17.928000px;}
.ws8_c00351{word-spacing:-0.162000px;}
.ws27_c00351{word-spacing:-0.144000px;}
.wsb_c00351{word-spacing:-0.072000px;}
.ws7_c00351{word-spacing:0.000000px;}
.wsc_c00351{word-spacing:0.216000px;}
.wsa_c00351{word-spacing:0.360000px;}
.ws23_c00351{word-spacing:2.808000px;}
.ws6_c00351{word-spacing:3.816000px;}
.ws15_c00351{word-spacing:3.888000px;}
.ws3_c00351{word-spacing:4.176000px;}
.ws28_c00351{word-spacing:5.688000px;}
.ws24_c00351{word-spacing:6.048000px;}
.ws22_c00351{word-spacing:7.128000px;}
.ws12_c00351{word-spacing:7.200000px;}
.ws2a_c00351{word-spacing:7.488000px;}
.ws19_c00351{word-spacing:7.848000px;}
.ws16_c00351{word-spacing:9.000000px;}
.ws20_c00351{word-spacing:10.728000px;}
.ws26_c00351{word-spacing:10.800000px;}
.ws10_c00351{word-spacing:11.448000px;}
.ws11_c00351{word-spacing:11.520000px;}
.ws9_c00351{word-spacing:14.040000px;}
.ws29_c00351{word-spacing:14.400000px;}
.ws21_c00351{word-spacing:15.120000px;}
.ws1d_c00351{word-spacing:15.768000px;}
.ws1c_c00351{word-spacing:15.840000px;}
.ws1a_c00351{word-spacing:16.128000px;}
.ws18_c00351{word-spacing:18.648000px;}
.ws17_c00351{word-spacing:18.720000px;}
.ws25_c00351{word-spacing:19.008000px;}
.ws1b_c00351{word-spacing:19.728000px;}
.wsf_c00351{word-spacing:33.120000px;}
.wse_c00351{word-spacing:33.408000px;}
.wsd_c00351{word-spacing:33.480000px;}
.ws13_c00351{word-spacing:40.536000px;}
.ws14_c00351{word-spacing:41.040000px;}
.ws1e_c00351{word-spacing:56.736000px;}
.ws1f_c00351{word-spacing:56.880000px;}
._5_c00351{margin-left:-5.976000px;}
._4_c00351{margin-left:-4.305600px;}
._2_c00351{margin-left:-1.015200px;}
._1_c00351{width:1.008000px;}
._b_c00351{width:2.311200px;}
._e_c00351{width:3.506400px;}
._3_c00351{width:6.544800px;}
._6_c00351{width:8.431200px;}
._d_c00351{width:9.432000px;}
._9_c00351{width:12.520800px;}
._a_c00351{width:13.536000px;}
._8_c00351{width:14.616000px;}
._7_c00351{width:16.416000px;}
._c_c00351{width:31.687200px;}
._0_c00351{width:33.120000px;}
.fc0_c00351{color:rgb(0,0,0);}
.fs2_c00351{font-size:51.120000px;}
.fs0_c00351{font-size:54.000000px;}
.fs1_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.y26_c00351{bottom:57.240000px;}
.y25_c00351{bottom:113.220000px;}
.y24_c00351{bottom:144.270000px;}
.y23_c00351{bottom:175.320000px;}
.y22_c00351{bottom:206.370000px;}
.y21_c00351{bottom:237.420000px;}
.y20_c00351{bottom:268.560000px;}
.y1f_c00351{bottom:300.060000px;}
.y1e_c00351{bottom:331.110000px;}
.y1d_c00351{bottom:362.160000px;}
.y1c_c00351{bottom:393.210000px;}
.y1b_c00351{bottom:424.260000px;}
.y1a_c00351{bottom:455.310000px;}
.y19_c00351{bottom:486.360000px;}
.y18_c00351{bottom:517.590000px;}
.y17_c00351{bottom:549.090000px;}
.y16_c00351{bottom:580.140000px;}
.y15_c00351{bottom:611.190000px;}
.y14_c00351{bottom:642.330000px;}
.y13_c00351{bottom:674.010000px;}
.y12_c00351{bottom:705.510000px;}
.y11_c00351{bottom:736.560000px;}
.y10_c00351{bottom:767.610000px;}
.yf_c00351{bottom:798.660000px;}
.ye_c00351{bottom:829.710000px;}
.yd_c00351{bottom:860.940000px;}
.yc_c00351{bottom:892.440000px;}
.yb_c00351{bottom:923.490000px;}
.ya_c00351{bottom:954.540000px;}
.y9_c00351{bottom:985.680000px;}
.y8_c00351{bottom:1017.180000px;}
.y7_c00351{bottom:1048.230000px;}
.y6_c00351{bottom:1079.280000px;}
.y5_c00351{bottom:1110.330000px;}
.y4_c00351{bottom:1131.030000px;}
.y3_c00351{bottom:1150.915500px;}
.y2_c00351{bottom:1166.400000px;}
.y1_c00351{bottom:1197.450000px;}
.h5_c00351{height:50.027344px;}
.h2_c00351{height:52.998047px;}
.h3_c00351{height:70.664062px;}
.h4_c00351{height:143.542969px;}
.h0_c00351{height:1262.880000px;}
.h1_c00351{height:1263.000000px;}
.w0_c00351{width:893.070000px;}
.w1_c00351{width:893.250000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:127.620000px;}
.x1_c00351{left:446.580000px;}
@media print{
.v1_c00351{vertical-align:-55.056000pt;}
.v2_c00351{vertical-align:-13.120000pt;}
.v0_c00351{vertical-align:0.000000pt;}
.v3_c00351{vertical-align:13.120000pt;}
.lsc_c00351{letter-spacing:-0.320000pt;}
.lsd_c00351{letter-spacing:-0.192000pt;}
.lse_c00351{letter-spacing:-0.064000pt;}
.lsb_c00351{letter-spacing:0.000000pt;}
.ls7_c00351{letter-spacing:0.064000pt;}
.lsf_c00351{letter-spacing:0.128000pt;}
.ls4_c00351{letter-spacing:0.320000pt;}
.lsa_c00351{letter-spacing:9.600000pt;}
.ls1_c00351{letter-spacing:12.480000pt;}
.ls9_c00351{letter-spacing:13.440000pt;}
.ls8_c00351{letter-spacing:14.400000pt;}
.ls6_c00351{letter-spacing:17.792000pt;}
.ls5_c00351{letter-spacing:20.410240pt;}
.ls3_c00351{letter-spacing:29.760000pt;}
.ls2_c00351{letter-spacing:30.080000pt;}
.ls0_c00351{letter-spacing:284.016000pt;}
.ws2_c00351{word-spacing:-64.000000pt;}
.ws4_c00351{word-spacing:-16.128000pt;}
.ws5_c00351{word-spacing:-16.064000pt;}
.ws1_c00351{word-spacing:-16.000000pt;}
.ws0_c00351{word-spacing:-15.936000pt;}
.ws8_c00351{word-spacing:-0.144000pt;}
.ws27_c00351{word-spacing:-0.128000pt;}
.wsb_c00351{word-spacing:-0.064000pt;}
.ws7_c00351{word-spacing:0.000000pt;}
.wsc_c00351{word-spacing:0.192000pt;}
.wsa_c00351{word-spacing:0.320000pt;}
.ws23_c00351{word-spacing:2.496000pt;}
.ws6_c00351{word-spacing:3.392000pt;}
.ws15_c00351{word-spacing:3.456000pt;}
.ws3_c00351{word-spacing:3.712000pt;}
.ws28_c00351{word-spacing:5.056000pt;}
.ws24_c00351{word-spacing:5.376000pt;}
.ws22_c00351{word-spacing:6.336000pt;}
.ws12_c00351{word-spacing:6.400000pt;}
.ws2a_c00351{word-spacing:6.656000pt;}
.ws19_c00351{word-spacing:6.976000pt;}
.ws16_c00351{word-spacing:8.000000pt;}
.ws20_c00351{word-spacing:9.536000pt;}
.ws26_c00351{word-spacing:9.600000pt;}
.ws10_c00351{word-spacing:10.176000pt;}
.ws11_c00351{word-spacing:10.240000pt;}
.ws9_c00351{word-spacing:12.480000pt;}
.ws29_c00351{word-spacing:12.800000pt;}
.ws21_c00351{word-spacing:13.440000pt;}
.ws1d_c00351{word-spacing:14.016000pt;}
.ws1c_c00351{word-spacing:14.080000pt;}
.ws1a_c00351{word-spacing:14.336000pt;}
.ws18_c00351{word-spacing:16.576000pt;}
.ws17_c00351{word-spacing:16.640000pt;}
.ws25_c00351{word-spacing:16.896000pt;}
.ws1b_c00351{word-spacing:17.536000pt;}
.wsf_c00351{word-spacing:29.440000pt;}
.wse_c00351{word-spacing:29.696000pt;}
.wsd_c00351{word-spacing:29.760000pt;}
.ws13_c00351{word-spacing:36.032000pt;}
.ws14_c00351{word-spacing:36.480000pt;}
.ws1e_c00351{word-spacing:50.432000pt;}
.ws1f_c00351{word-spacing:50.560000pt;}
._5_c00351{margin-left:-5.312000pt;}
._4_c00351{margin-left:-3.827200pt;}
._2_c00351{margin-left:-0.902400pt;}
._1_c00351{width:0.896000pt;}
._b_c00351{width:2.054400pt;}
._e_c00351{width:3.116800pt;}
._3_c00351{width:5.817600pt;}
._6_c00351{width:7.494400pt;}
._d_c00351{width:8.384000pt;}
._9_c00351{width:11.129600pt;}
._a_c00351{width:12.032000pt;}
._8_c00351{width:12.992000pt;}
._7_c00351{width:14.592000pt;}
._c_c00351{width:28.166400pt;}
._0_c00351{width:29.440000pt;}
.fs2_c00351{font-size:45.440000pt;}
.fs0_c00351{font-size:48.000000pt;}
.fs1_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y26_c00351{bottom:50.880000pt;}
.y25_c00351{bottom:100.640000pt;}
.y24_c00351{bottom:128.240000pt;}
.y23_c00351{bottom:155.840000pt;}
.y22_c00351{bottom:183.440000pt;}
.y21_c00351{bottom:211.040000pt;}
.y20_c00351{bottom:238.720000pt;}
.y1f_c00351{bottom:266.720000pt;}
.y1e_c00351{bottom:294.320000pt;}
.y1d_c00351{bottom:321.920000pt;}
.y1c_c00351{bottom:349.520000pt;}
.y1b_c00351{bottom:377.120000pt;}
.y1a_c00351{bottom:404.720000pt;}
.y19_c00351{bottom:432.320000pt;}
.y18_c00351{bottom:460.080000pt;}
.y17_c00351{bottom:488.080000pt;}
.y16_c00351{bottom:515.680000pt;}
.y15_c00351{bottom:543.280000pt;}
.y14_c00351{bottom:570.960000pt;}
.y13_c00351{bottom:599.120000pt;}
.y12_c00351{bottom:627.120000pt;}
.y11_c00351{bottom:654.720000pt;}
.y10_c00351{bottom:682.320000pt;}
.yf_c00351{bottom:709.920000pt;}
.ye_c00351{bottom:737.520000pt;}
.yd_c00351{bottom:765.280000pt;}
.yc_c00351{bottom:793.280000pt;}
.yb_c00351{bottom:820.880000pt;}
.ya_c00351{bottom:848.480000pt;}
.y9_c00351{bottom:876.160000pt;}
.y8_c00351{bottom:904.160000pt;}
.y7_c00351{bottom:931.760000pt;}
.y6_c00351{bottom:959.360000pt;}
.y5_c00351{bottom:986.960000pt;}
.y4_c00351{bottom:1005.360000pt;}
.y3_c00351{bottom:1023.036000pt;}
.y2_c00351{bottom:1036.800000pt;}
.y1_c00351{bottom:1064.400000pt;}
.h5_c00351{height:44.468750pt;}
.h2_c00351{height:47.109375pt;}
.h3_c00351{height:62.812500pt;}
.h4_c00351{height:127.593750pt;}
.h0_c00351{height:1122.560000pt;}
.h1_c00351{height:1122.666667pt;}
.w0_c00351{width:793.840000pt;}
.w1_c00351{width:794.000000pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:113.440000pt;}
.x1_c00351{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eebbafe1b6d415a4e6b8f491.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_bfbd615acc59f1c55b48567c.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;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:ff6_c00352;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00352{vertical-align:-14.760000px;}
.v0_c00352{vertical-align:0.000000px;}
.v2_c00352{vertical-align:14.760000px;}
.ls8_c00352{letter-spacing:-0.360000px;}
.ls6_c00352{letter-spacing:-0.108000px;}
.ls5_c00352{letter-spacing:0.000000px;}
.ls2_c00352{letter-spacing:0.072000px;}
.ls7_c00352{letter-spacing:0.144000px;}
.ls3_c00352{letter-spacing:17.280000px;}
.ls1_c00352{letter-spacing:20.016000px;}
.ls0_c00352{letter-spacing:22.961520px;}
.ls4_c00352{letter-spacing:23.321520px;}
.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:-72.000000px;}
.ws2_c00352{word-spacing:-18.144000px;}
.ws3_c00352{word-spacing:-15.840000px;}
.wsa_c00352{word-spacing:-0.144000px;}
.wse_c00352{word-spacing:-0.072000px;}
.ws4_c00352{word-spacing:0.000000px;}
.ws6_c00352{word-spacing:0.162000px;}
.ws5_c00352{word-spacing:0.270000px;}
.ws1_c00352{word-spacing:4.176000px;}
.ws12_c00352{word-spacing:4.248000px;}
.wsb_c00352{word-spacing:5.040000px;}
.ws9_c00352{word-spacing:8.208000px;}
.wsf_c00352{word-spacing:10.728000px;}
.ws11_c00352{word-spacing:10.800000px;}
.ws10_c00352{word-spacing:11.160000px;}
.ws14_c00352{word-spacing:13.968000px;}
.ws13_c00352{word-spacing:14.040000px;}
.ws15_c00352{word-spacing:15.408000px;}
.wsd_c00352{word-spacing:17.136000px;}
.wsc_c00352{word-spacing:17.208000px;}
.ws8_c00352{word-spacing:18.360000px;}
.ws7_c00352{word-spacing:18.720000px;}
._3_c00352{margin-left:-6.573600px;}
._2_c00352{margin-left:-3.600000px;}
._1_c00352{margin-left:-1.058400px;}
._0_c00352{width:1.220400px;}
._4_c00352{width:2.736000px;}
._5_c00352{width:3.855600px;}
._6_c00352{width:14.320800px;}
._7_c00352{width:846.000000px;}
.fc0_c00352{color:rgb(0,0,0);}
.fs2_c00352{font-size:51.120000px;}
.fs0_c00352{font-size:54.000000px;}
.fs1_c00352{font-size:72.000000px;}
.y0_c00352{bottom:0.000000px;}
.y16_c00352{bottom:57.240000px;}
.y15_c00352{bottom:640.800000px;}
.y14_c00352{bottom:672.030000px;}
.y13_c00352{bottom:703.080000px;}
.y12_c00352{bottom:734.130000px;}
.y11_c00352{bottom:765.360000px;}
.y10_c00352{bottom:797.040000px;}
.yf_c00352{bottom:828.540000px;}
.ye_c00352{bottom:859.590000px;}
.yd_c00352{bottom:890.550000px;}
.yc_c00352{bottom:921.780000px;}
.yb_c00352{bottom:953.280000px;}
.ya_c00352{bottom:984.510000px;}
.y9_c00352{bottom:1016.010000px;}
.y8_c00352{bottom:1047.240000px;}
.y7_c00352{bottom:1078.740000px;}
.y6_c00352{bottom:1109.880000px;}
.y5_c00352{bottom:1131.030000px;}
.y4_c00352{bottom:1150.920000px;}
.y3_c00352{bottom:1166.404500px;}
.y2_c00352{bottom:1181.970000px;}
.y1_c00352{bottom:1197.450000px;}
.h6_c00352{height:50.027344px;}
.h3_c00352{height:52.971680px;}
.h2_c00352{height:52.998047px;}
.h4_c00352{height:70.664062px;}
.h7_c00352{height:72.562500px;}
.h5_c00352{height:143.542969px;}
.h0_c00352{height:1262.880000px;}
.h1_c00352{height:1263.000000px;}
.w0_c00352{width:893.070000px;}
.w1_c00352{width:893.250000px;}
.x0_c00352{left:0.000000px;}
.x3_c00352{left:127.620000px;}
.x2_c00352{left:425.160000px;}
.x1_c00352{left:446.580000px;}
.x4_c00352{left:738.540000px;}
@media print{
.v1_c00352{vertical-align:-13.120000pt;}
.v0_c00352{vertical-align:0.000000pt;}
.v2_c00352{vertical-align:13.120000pt;}
.ls8_c00352{letter-spacing:-0.320000pt;}
.ls6_c00352{letter-spacing:-0.096000pt;}
.ls5_c00352{letter-spacing:0.000000pt;}
.ls2_c00352{letter-spacing:0.064000pt;}
.ls7_c00352{letter-spacing:0.128000pt;}
.ls3_c00352{letter-spacing:15.360000pt;}
.ls1_c00352{letter-spacing:17.792000pt;}
.ls0_c00352{letter-spacing:20.410240pt;}
.ls4_c00352{letter-spacing:20.730240pt;}
.ws0_c00352{word-spacing:-64.000000pt;}
.ws2_c00352{word-spacing:-16.128000pt;}
.ws3_c00352{word-spacing:-14.080000pt;}
.wsa_c00352{word-spacing:-0.128000pt;}
.wse_c00352{word-spacing:-0.064000pt;}
.ws4_c00352{word-spacing:0.000000pt;}
.ws6_c00352{word-spacing:0.144000pt;}
.ws5_c00352{word-spacing:0.240000pt;}
.ws1_c00352{word-spacing:3.712000pt;}
.ws12_c00352{word-spacing:3.776000pt;}
.wsb_c00352{word-spacing:4.480000pt;}
.ws9_c00352{word-spacing:7.296000pt;}
.wsf_c00352{word-spacing:9.536000pt;}
.ws11_c00352{word-spacing:9.600000pt;}
.ws10_c00352{word-spacing:9.920000pt;}
.ws14_c00352{word-spacing:12.416000pt;}
.ws13_c00352{word-spacing:12.480000pt;}
.ws15_c00352{word-spacing:13.696000pt;}
.wsd_c00352{word-spacing:15.232000pt;}
.wsc_c00352{word-spacing:15.296000pt;}
.ws8_c00352{word-spacing:16.320000pt;}
.ws7_c00352{word-spacing:16.640000pt;}
._3_c00352{margin-left:-5.843200pt;}
._2_c00352{margin-left:-3.200000pt;}
._1_c00352{margin-left:-0.940800pt;}
._0_c00352{width:1.084800pt;}
._4_c00352{width:2.432000pt;}
._5_c00352{width:3.427200pt;}
._6_c00352{width:12.729600pt;}
._7_c00352{width:752.000000pt;}
.fs2_c00352{font-size:45.440000pt;}
.fs0_c00352{font-size:48.000000pt;}
.fs1_c00352{font-size:64.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y16_c00352{bottom:50.880000pt;}
.y15_c00352{bottom:569.600000pt;}
.y14_c00352{bottom:597.360000pt;}
.y13_c00352{bottom:624.960000pt;}
.y12_c00352{bottom:652.560000pt;}
.y11_c00352{bottom:680.320000pt;}
.y10_c00352{bottom:708.480000pt;}
.yf_c00352{bottom:736.480000pt;}
.ye_c00352{bottom:764.080000pt;}
.yd_c00352{bottom:791.600000pt;}
.yc_c00352{bottom:819.360000pt;}
.yb_c00352{bottom:847.360000pt;}
.ya_c00352{bottom:875.120000pt;}
.y9_c00352{bottom:903.120000pt;}
.y8_c00352{bottom:930.880000pt;}
.y7_c00352{bottom:958.880000pt;}
.y6_c00352{bottom:986.560000pt;}
.y5_c00352{bottom:1005.360000pt;}
.y4_c00352{bottom:1023.040000pt;}
.y3_c00352{bottom:1036.804000pt;}
.y2_c00352{bottom:1050.640000pt;}
.y1_c00352{bottom:1064.400000pt;}
.h6_c00352{height:44.468750pt;}
.h3_c00352{height:47.085938pt;}
.h2_c00352{height:47.109375pt;}
.h4_c00352{height:62.812500pt;}
.h7_c00352{height:64.500000pt;}
.h5_c00352{height:127.593750pt;}
.h0_c00352{height:1122.560000pt;}
.h1_c00352{height:1122.666667pt;}
.w0_c00352{width:793.840000pt;}
.w1_c00352{width:794.000000pt;}
.x0_c00352{left:0.000000pt;}
.x3_c00352{left:113.440000pt;}
.x2_c00352{left:377.920000pt;}
.x1_c00352{left:396.960000pt;}
.x4_c00352{left:656.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_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_5f1734944249abbf2177e358.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00353{vertical-align:-61.938000px;}
.v0_c00353{vertical-align:0.000000px;}
.ls1_c00353{letter-spacing:0.000000px;}
.ls0_c00353{letter-spacing:319.518000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00353{word-spacing:-0.162000px;}
.ws0_c00353{word-spacing:0.000000px;}
._0_c00353{width:839.992680px;}
.fc0_c00353{color:rgb(0,0,0);}
.fs0_c00353{font-size:54.000000px;}
.fs1_c00353{font-size:72.000000px;}
.fs2_c00353{font-size:96.120000px;}
.y0_c00353{bottom:0.000000px;}
.y7_c00353{bottom:57.240000px;}
.y6_c00353{bottom:1083.870000px;}
.y5_c00353{bottom:1110.150000px;}
.y4_c00353{bottom:1131.030000px;}
.y3_c00353{bottom:1150.915500px;}
.y2_c00353{bottom:1166.400000px;}
.y1_c00353{bottom:1197.450000px;}
.h2_c00353{height:52.998047px;}
.h3_c00353{height:70.664062px;}
.h4_c00353{height:72.562500px;}
.h5_c00353{height:96.870938px;}
.h0_c00353{height:1262.880000px;}
.h1_c00353{height:1263.000000px;}
.w0_c00353{width:893.070000px;}
.w1_c00353{width:893.250000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:127.620000px;}
.x1_c00353{left:446.580000px;}
@media print{
.v1_c00353{vertical-align:-55.056000pt;}
.v0_c00353{vertical-align:0.000000pt;}
.ls1_c00353{letter-spacing:0.000000pt;}
.ls0_c00353{letter-spacing:284.016000pt;}
.ws1_c00353{word-spacing:-0.144000pt;}
.ws0_c00353{word-spacing:0.000000pt;}
._0_c00353{width:746.660160pt;}
.fs0_c00353{font-size:48.000000pt;}
.fs1_c00353{font-size:64.000000pt;}
.fs2_c00353{font-size:85.440000pt;}
.y0_c00353{bottom:0.000000pt;}
.y7_c00353{bottom:50.880000pt;}
.y6_c00353{bottom:963.440000pt;}
.y5_c00353{bottom:986.800000pt;}
.y4_c00353{bottom:1005.360000pt;}
.y3_c00353{bottom:1023.036000pt;}
.y2_c00353{bottom:1036.800000pt;}
.y1_c00353{bottom:1064.400000pt;}
.h2_c00353{height:47.109375pt;}
.h3_c00353{height:62.812500pt;}
.h4_c00353{height:64.500000pt;}
.h5_c00353{height:86.107500pt;}
.h0_c00353{height:1122.560000pt;}
.h1_c00353{height:1122.666667pt;}
.w0_c00353{width:793.840000pt;}
.w1_c00353{width:794.000000pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:113.440000pt;}
.x1_c00353{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7de8766f9233ae93d56647bb.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_61e3f3107a0a7ad2df15f4cb.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00354{vertical-align:-105.840000px;}
.v0_c00354{vertical-align:0.000000px;}
.ls6_c00354{letter-spacing:-0.192240px;}
.ls4_c00354{letter-spacing:-0.108000px;}
.ls8_c00354{letter-spacing:-0.096120px;}
.ls3_c00354{letter-spacing:0.000000px;}
.ls2_c00354{letter-spacing:0.072000px;}
.ls1_c00354{letter-spacing:0.096120px;}
.ls5_c00354{letter-spacing:0.144000px;}
.ls7_c00354{letter-spacing:0.192240px;}
.ls0_c00354{letter-spacing:1257.840000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-23.837760px;}
.ws6_c00354{word-spacing:-0.480600px;}
.ws4_c00354{word-spacing:-0.144000px;}
.ws8_c00354{word-spacing:-0.096120px;}
.ws9_c00354{word-spacing:-0.072000px;}
.ws1_c00354{word-spacing:0.000000px;}
.ws7_c00354{word-spacing:0.096120px;}
.ws3_c00354{word-spacing:0.162000px;}
.ws2_c00354{word-spacing:0.270000px;}
.ws5_c00354{word-spacing:0.288360px;}
._1_c00354{margin-left:-1.058400px;}
._0_c00354{width:1.220400px;}
._2_c00354{width:848.954520px;}
.fc0_c00354{color:rgb(0,0,0);}
.fs0_c00354{font-size:54.000000px;}
.fs4_c00354{font-size:60.120000px;}
.fs1_c00354{font-size:72.000000px;}
.fs2_c00354{font-size:96.120000px;}
.fs3_c00354{font-size:144.000000px;}
.y0_c00354{bottom:0.000000px;}
.y18_c00354{bottom:57.240000px;}
.y17_c00354{bottom:388.530000px;}
.y16_c00354{bottom:406.440000px;}
.y15_c00354{bottom:427.320000px;}
.y14_c00354{bottom:462.937860px;}
.y13_c00354{bottom:504.341550px;}
.y12_c00354{bottom:545.745240px;}
.y11_c00354{bottom:587.148930px;}
.y10_c00354{bottom:628.552620px;}
.yf_c00354{bottom:669.956310px;}
.ye_c00354{bottom:711.360000px;}
.yd_c00354{bottom:762.300000px;}
.yc_c00354{bottom:814.840290px;}
.yb_c00354{bottom:856.147860px;}
.ya_c00354{bottom:897.551550px;}
.y9_c00354{bottom:938.955240px;}
.y8_c00354{bottom:980.358930px;}
.y7_c00354{bottom:1021.762620px;}
.y6_c00354{bottom:1063.166310px;}
.y5_c00354{bottom:1131.030000px;}
.y4_c00354{bottom:1150.920000px;}
.y3_c00354{bottom:1166.404500px;}
.y2_c00354{bottom:1181.970000px;}
.y1_c00354{bottom:1197.450000px;}
.h3_c00354{height:52.971680px;}
.h2_c00354{height:52.998047px;}
.h8_c00354{height:60.589687px;}
.h4_c00354{height:70.664062px;}
.h7_c00354{height:72.562500px;}
.h5_c00354{height:96.870938px;}
.h6_c00354{height:145.125000px;}
.h0_c00354{height:1262.880000px;}
.h1_c00354{height:1263.000000px;}
.w0_c00354{width:893.070000px;}
.w1_c00354{width:893.250000px;}
.x0_c00354{left:0.000000px;}
.x3_c00354{left:127.620000px;}
.x5_c00354{left:136.881360px;}
.x8_c00354{left:141.750000px;}
.x6_c00354{left:181.889550px;}
.x7_c00354{left:193.231710px;}
.x4_c00354{left:336.510000px;}
.x9_c00354{left:404.100000px;}
.x2_c00354{left:425.160000px;}
.x1_c00354{left:446.580000px;}
.xa_c00354{left:738.540000px;}
@media print{
.v1_c00354{vertical-align:-94.080000pt;}
.v0_c00354{vertical-align:0.000000pt;}
.ls6_c00354{letter-spacing:-0.170880pt;}
.ls4_c00354{letter-spacing:-0.096000pt;}
.ls8_c00354{letter-spacing:-0.085440pt;}
.ls3_c00354{letter-spacing:0.000000pt;}
.ls2_c00354{letter-spacing:0.064000pt;}
.ls1_c00354{letter-spacing:0.085440pt;}
.ls5_c00354{letter-spacing:0.128000pt;}
.ls7_c00354{letter-spacing:0.170880pt;}
.ls0_c00354{letter-spacing:1118.080000pt;}
.ws0_c00354{word-spacing:-21.189120pt;}
.ws6_c00354{word-spacing:-0.427200pt;}
.ws4_c00354{word-spacing:-0.128000pt;}
.ws8_c00354{word-spacing:-0.085440pt;}
.ws9_c00354{word-spacing:-0.064000pt;}
.ws1_c00354{word-spacing:0.000000pt;}
.ws7_c00354{word-spacing:0.085440pt;}
.ws3_c00354{word-spacing:0.144000pt;}
.ws2_c00354{word-spacing:0.240000pt;}
.ws5_c00354{word-spacing:0.256320pt;}
._1_c00354{margin-left:-0.940800pt;}
._0_c00354{width:1.084800pt;}
._2_c00354{width:754.626240pt;}
.fs0_c00354{font-size:48.000000pt;}
.fs4_c00354{font-size:53.440000pt;}
.fs1_c00354{font-size:64.000000pt;}
.fs2_c00354{font-size:85.440000pt;}
.fs3_c00354{font-size:128.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y18_c00354{bottom:50.880000pt;}
.y17_c00354{bottom:345.360000pt;}
.y16_c00354{bottom:361.280000pt;}
.y15_c00354{bottom:379.840000pt;}
.y14_c00354{bottom:411.500320pt;}
.y13_c00354{bottom:448.303600pt;}
.y12_c00354{bottom:485.106880pt;}
.y11_c00354{bottom:521.910160pt;}
.y10_c00354{bottom:558.713440pt;}
.yf_c00354{bottom:595.516720pt;}
.ye_c00354{bottom:632.320000pt;}
.yd_c00354{bottom:677.600000pt;}
.yc_c00354{bottom:724.302480pt;}
.yb_c00354{bottom:761.020320pt;}
.ya_c00354{bottom:797.823600pt;}
.y9_c00354{bottom:834.626880pt;}
.y8_c00354{bottom:871.430160pt;}
.y7_c00354{bottom:908.233440pt;}
.y6_c00354{bottom:945.036720pt;}
.y5_c00354{bottom:1005.360000pt;}
.y4_c00354{bottom:1023.040000pt;}
.y3_c00354{bottom:1036.804000pt;}
.y2_c00354{bottom:1050.640000pt;}
.y1_c00354{bottom:1064.400000pt;}
.h3_c00354{height:47.085938pt;}
.h2_c00354{height:47.109375pt;}
.h8_c00354{height:53.857500pt;}
.h4_c00354{height:62.812500pt;}
.h7_c00354{height:64.500000pt;}
.h5_c00354{height:86.107500pt;}
.h6_c00354{height:129.000000pt;}
.h0_c00354{height:1122.560000pt;}
.h1_c00354{height:1122.666667pt;}
.w0_c00354{width:793.840000pt;}
.w1_c00354{width:794.000000pt;}
.x0_c00354{left:0.000000pt;}
.x3_c00354{left:113.440000pt;}
.x5_c00354{left:121.672320pt;}
.x8_c00354{left:126.000000pt;}
.x6_c00354{left:161.679600pt;}
.x7_c00354{left:171.761520pt;}
.x4_c00354{left:299.120000pt;}
.x9_c00354{left:359.200000pt;}
.x2_c00354{left:377.920000pt;}
.x1_c00354{left:396.960000pt;}
.xa_c00354{left:656.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_c00355 {
    display:none;
  }
  .loading-indicator_c00355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00355 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00355 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00355" -> "#page-container .classname_c00355")
 */
.pf_c00355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00355 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00355 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00355 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00355 {overflow:visible;}
  }
}
.c_c00355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00355 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00355:after { /* webkit #35443 */
  content: '';
}
.t_c00355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00355 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00355 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00355 { /* info for Javascript */
  display:none;
}
.l_c00355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00355:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00355;src:url('chunks/assets/font_130bed63390e2c85f9a63032.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_17f55a491c1b200bf2c78d8c.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_d9a49777c38c576b12e6b9f1.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;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_c00355;src:url('chunks/assets/font_3a053b4661ec726eec3541a5.woff2')format("woff");}.ff5_c00355{font-family:ff5_c00355;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00355;src:url('chunks/assets/font_fff69395343b7102e9673cb4.woff2')format("woff");}.ff6_c00355{font-family:ff6_c00355;line-height:0.921875;font-style:normal;font-weight: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_c00355;src:url('chunks/assets/font_a1676d2d97a01e1354d9f804.woff2')format("woff");}.ff7_c00355{font-family:ff7_c00355;line-height:0.862793;font-style:normal;font-weight: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_c00355;src:url('chunks/assets/font_e9289582a15848ed6e13e5b9.woff2')format("woff");}.ff8_c00355{font-family:ff8_c00355;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251076,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1_c00355{vertical-align:-61.938000px;}
.v3_c00355{vertical-align:-20.880000px;}
.v0_c00355{vertical-align:0.000000px;}
.v2_c00355{vertical-align:27.000000px;}
.ls18_c00355{letter-spacing:-2.000846px;}
.ls13_c00355{letter-spacing:-1.964832px;}
.ls1b_c00355{letter-spacing:-1.808832px;}
.ls1a_c00355{letter-spacing:-1.617706px;}
.ls1e_c00355{letter-spacing:-1.489273px;}
.ls17_c00355{letter-spacing:-1.257480px;}
.lsc_c00355{letter-spacing:-0.576000px;}
.lsd_c00355{letter-spacing:-0.288000px;}
.lse_c00355{letter-spacing:-0.216000px;}
.ls12_c00355{letter-spacing:-0.180360px;}
.ls16_c00355{letter-spacing:-0.157185px;}
.ls1d_c00355{letter-spacing:-0.144706px;}
.lsa_c00355{letter-spacing:-0.072000px;}
.lsf_c00355{letter-spacing:-0.060120px;}
.ls8_c00355{letter-spacing:0.000000px;}
.ls11_c00355{letter-spacing:0.060120px;}
.ls9_c00355{letter-spacing:0.072000px;}
.ls5_c00355{letter-spacing:0.120240px;}
.lsb_c00355{letter-spacing:0.144000px;}
.ls10_c00355{letter-spacing:0.180360px;}
.ls1_c00355{letter-spacing:0.191520px;}
.ls7_c00355{letter-spacing:0.289411px;}
.ls14_c00355{letter-spacing:0.314370px;}
.ls4_c00355{letter-spacing:0.420840px;}
.ls1f_c00355{letter-spacing:0.705445px;}
.ls19_c00355{letter-spacing:0.766282px;}
.ls1c_c00355{letter-spacing:1.254115px;}
.ls15_c00355{letter-spacing:1.362270px;}
.ls3_c00355{letter-spacing:1.440000px;}
.ls2_c00355{letter-spacing:5.400000px;}
.ls0_c00355{letter-spacing:319.518000px;}
.ls6_c00355{letter-spacing:515.634288px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00355{word-spacing:-39.191400px;}
.ws1_c00355{word-spacing:-18.144000px;}
.ws4_c00355{word-spacing:-18.072000px;}
.ws5_c00355{word-spacing:-17.928000px;}
.ws3_c00355{word-spacing:-17.784000px;}
.ws2_c00355{word-spacing:-17.712000px;}
.ws7_c00355{word-spacing:-15.210360px;}
.ws6_c00355{word-spacing:-15.090120px;}
.ws8_c00355{word-spacing:-15.030000px;}
.ws9_c00355{word-spacing:-14.849640px;}
.ws0_c00355{word-spacing:-12.161520px;}
.wsa_c00355{word-spacing:-10.583790px;}
.ws28_c00355{word-spacing:-1.575134px;}
.ws2f_c00355{word-spacing:-1.450082px;}
.ws24_c00355{word-spacing:-0.314370px;}
.ws2b_c00355{word-spacing:-0.289411px;}
.ws22_c00355{word-spacing:-0.180360px;}
.ws10_c00355{word-spacing:-0.162000px;}
.ws25_c00355{word-spacing:-0.104790px;}
.ws2c_c00355{word-spacing:-0.096470px;}
.ws13_c00355{word-spacing:-0.072000px;}
.ws21_c00355{word-spacing:-0.060120px;}
.wsf_c00355{word-spacing:0.000000px;}
.ws18_c00355{word-spacing:0.072000px;}
.ws2d_c00355{word-spacing:0.144706px;}
.ws20_c00355{word-spacing:0.180360px;}
.ws2e_c00355{word-spacing:0.744637px;}
.ws29_c00355{word-spacing:0.808853px;}
.ws27_c00355{word-spacing:1.191994px;}
.ws26_c00355{word-spacing:1.414665px;}
.ws1f_c00355{word-spacing:1.440000px;}
.ws2a_c00355{word-spacing:1.808832px;}
.ws23_c00355{word-spacing:1.964832px;}
.ws11_c00355{word-spacing:3.168000px;}
.ws12_c00355{word-spacing:3.312000px;}
.ws1e_c00355{word-spacing:5.400000px;}
.ws14_c00355{word-spacing:8.208000px;}
.ws15_c00355{word-spacing:8.568000px;}
.ws16_c00355{word-spacing:8.640000px;}
.ws1d_c00355{word-spacing:15.048000px;}
.ws1b_c00355{word-spacing:15.840000px;}
.ws1c_c00355{word-spacing:17.280000px;}
.ws17_c00355{word-spacing:19.080000px;}
.ws1a_c00355{word-spacing:35.640000px;}
.ws19_c00355{word-spacing:36.216000px;}
.wsd_c00355{word-spacing:501.356669px;}
.wsc_c00355{word-spacing:504.395486px;}
.wsb_c00355{word-spacing:507.723715px;}
._9_c00355{margin-left:-4.280993px;}
._8_c00355{margin-left:-2.776935px;}
._1_c00355{margin-left:-1.094400px;}
._4_c00355{width:1.015200px;}
._2_c00355{width:2.016000px;}
._0_c00355{width:3.240000px;}
._7_c00355{width:4.824000px;}
._6_c00355{width:14.515200px;}
._3_c00355{width:15.768000px;}
._5_c00355{width:16.948800px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs3_c00355{font-size:38.880000px;}
.fsa_c00355{font-size:39.191400px;}
.fs7_c00355{font-size:42.571200px;}
.fs8_c00355{font-size:45.220800px;}
.fs2_c00355{font-size:47.880000px;}
.fs9_c00355{font-size:48.235200px;}
.fs5_c00355{font-size:49.120800px;}
.fs6_c00355{font-size:52.395000px;}
.fs0_c00355{font-size:54.000000px;}
.fs4_c00355{font-size:60.120000px;}
.fs1_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.y2b_c00355{bottom:1.633618px;}
.y40_c00355{bottom:3.766950px;}
.y3e_c00355{bottom:4.522200px;}
.y2d_c00355{bottom:4.912200px;}
.y31_c00355{bottom:7.535850px;}
.y3a_c00355{bottom:7.536150px;}
.y34_c00355{bottom:7.537500px;}
.y37_c00355{bottom:7.537650px;}
.y24_c00355{bottom:8.185950px;}
.y21_c00355{bottom:8.187300px;}
.y28_c00355{bottom:13.911341px;}
.y2a_c00355{bottom:15.554400px;}
.y3c_c00355{bottom:21.103350px;}
.y26_c00355{bottom:22.923150px;}
.y27_c00355{bottom:31.110000px;}
.y38_c00355{bottom:39.945900px;}
.y22_c00355{bottom:52.395150px;}
.y41_c00355{bottom:57.240000px;}
.y35_c00355{bottom:64.817250px;}
.y1f_c00355{bottom:79.411350px;}
.y32_c00355{bottom:89.688600px;}
.y1d_c00355{bottom:109.791180px;}
.y2f_c00355{bottom:114.559950px;}
.y1c_c00355{bottom:126.985500px;}
.y1b_c00355{bottom:149.490000px;}
.y42_c00355{bottom:162.180000px;}
.y1a_c00355{bottom:180.000000px;}
.y2e_c00355{bottom:180.759000px;}
.y3f_c00355{bottom:181.515000px;}
.y3d_c00355{bottom:196.587000px;}
.y39_c00355{bottom:212.415000px;}
.y36_c00355{bottom:237.285000px;}
.y33_c00355{bottom:262.156500px;}
.y30_c00355{bottom:287.029500px;}
.y3b_c00355{bottom:311.899500px;}
.y19_c00355{bottom:367.110000px;}
.y18_c00355{bottom:398.340000px;}
.y17_c00355{bottom:429.390000px;}
.y16_c00355{bottom:460.440000px;}
.y15_c00355{bottom:491.490000px;}
.y14_c00355{bottom:522.540000px;}
.y13_c00355{bottom:553.590000px;}
.y12_c00355{bottom:584.640000px;}
.y11_c00355{bottom:615.690000px;}
.y10_c00355{bottom:646.740000px;}
.yf_c00355{bottom:677.790000px;}
.ye_c00355{bottom:704.700000px;}
.y1e_c00355{bottom:705.516000px;}
.y29_c00355{bottom:706.335000px;}
.y2c_c00355{bottom:731.713500px;}
.y23_c00355{bottom:748.906500px;}
.y20_c00355{bottom:775.921500px;}
.y25_c00355{bottom:802.938000px;}
.yd_c00355{bottom:861.750000px;}
.yc_c00355{bottom:892.980000px;}
.yb_c00355{bottom:924.030000px;}
.ya_c00355{bottom:955.080000px;}
.y9_c00355{bottom:986.130000px;}
.y8_c00355{bottom:1017.180000px;}
.y7_c00355{bottom:1048.230000px;}
.y6_c00355{bottom:1079.100000px;}
.y5_c00355{bottom:1110.150000px;}
.y4_c00355{bottom:1131.030000px;}
.y3_c00355{bottom:1150.915500px;}
.y2_c00355{bottom:1166.400000px;}
.y1_c00355{bottom:1197.450000px;}
.h1e_c00355{height:14.319000px;}
.h1c_c00355{height:15.073500px;}
.h11_c00355{height:16.374000px;}
.h15_c00355{height:24.117000px;}
.h17_c00355{height:24.118500px;}
.hf_c00355{height:24.561000px;}
.hb_c00355{height:26.197500px;}
.h1b_c00355{height:33.020386px;}
.h19_c00355{height:33.628554px;}
.h18_c00355{height:35.870220px;}
.h14_c00355{height:37.293912px;}
.h7_c00355{height:38.158594px;}
.h1f_c00355{height:38.464216px;}
.hd_c00355{height:38.963665px;}
.h1d_c00355{height:39.497583px;}
.h16_c00355{height:39.779909px;}
.ha_c00355{height:40.510269px;}
.h10_c00355{height:41.781305px;}
.h12_c00355{height:42.903788px;}
.hc_c00355{height:43.210525px;}
.h6_c00355{height:50.027344px;}
.h1a_c00355{height:50.496000px;}
.h2_c00355{height:52.998047px;}
.he_c00355{height:54.033000px;}
.h8_c00355{height:59.004492px;}
.h3_c00355{height:70.664062px;}
.h4_c00355{height:72.562500px;}
.h5_c00355{height:73.991602px;}
.h9_c00355{height:151.453500px;}
.h13_c00355{height:181.636500px;}
.h0_c00355{height:1262.880000px;}
.h1_c00355{height:1263.000000px;}
.w7_c00355{width:135.246000px;}
.w3_c00355{width:147.172500px;}
.w4_c00355{width:152.107500px;}
.w5_c00355{width:300.102000px;}
.w2_c00355{width:300.924000px;}
.w8_c00355{width:407.248500px;}
.w6_c00355{width:408.004500px;}
.w0_c00355{width:893.070000px;}
.w1_c00355{width:893.250000px;}
.x0_c00355{left:0.000000px;}
.xe_c00355{left:1.644450px;}
.x15_c00355{left:8.311650px;}
.xc_c00355{left:13.977150px;}
.x13_c00355{left:23.423550px;}
.xa_c00355{left:25.488150px;}
.xd_c00355{left:61.664569px;}
.x10_c00355{left:62.712750px;}
.x12_c00355{left:64.979550px;}
.x8_c00355{left:68.242500px;}
.x2_c00355{left:127.620000px;}
.x5_c00355{left:143.820000px;}
.x3_c00355{left:176.580000px;}
.x11_c00355{left:200.225250px;}
.x9_c00355{left:219.527100px;}
.xf_c00355{left:242.494500px;}
.x7_c00355{left:296.022000px;}
.x14_c00355{left:378.496500px;}
.xb_c00355{left:444.018000px;}
.x1_c00355{left:446.580000px;}
.x16_c00355{left:514.498500px;}
.x4_c00355{left:597.780000px;}
.x6_c00355{left:651.330000px;}
@media print{
.v1_c00355{vertical-align:-55.056000pt;}
.v3_c00355{vertical-align:-18.560000pt;}
.v0_c00355{vertical-align:0.000000pt;}
.v2_c00355{vertical-align:24.000000pt;}
.ls18_c00355{letter-spacing:-1.778530pt;}
.ls13_c00355{letter-spacing:-1.746517pt;}
.ls1b_c00355{letter-spacing:-1.607851pt;}
.ls1a_c00355{letter-spacing:-1.437961pt;}
.ls1e_c00355{letter-spacing:-1.323798pt;}
.ls17_c00355{letter-spacing:-1.117760pt;}
.lsc_c00355{letter-spacing:-0.512000pt;}
.lsd_c00355{letter-spacing:-0.256000pt;}
.lse_c00355{letter-spacing:-0.192000pt;}
.ls12_c00355{letter-spacing:-0.160320pt;}
.ls16_c00355{letter-spacing:-0.139720pt;}
.ls1d_c00355{letter-spacing:-0.128627pt;}
.lsa_c00355{letter-spacing:-0.064000pt;}
.lsf_c00355{letter-spacing:-0.053440pt;}
.ls8_c00355{letter-spacing:0.000000pt;}
.ls11_c00355{letter-spacing:0.053440pt;}
.ls9_c00355{letter-spacing:0.064000pt;}
.ls5_c00355{letter-spacing:0.106880pt;}
.lsb_c00355{letter-spacing:0.128000pt;}
.ls10_c00355{letter-spacing:0.160320pt;}
.ls1_c00355{letter-spacing:0.170240pt;}
.ls7_c00355{letter-spacing:0.257254pt;}
.ls14_c00355{letter-spacing:0.279440pt;}
.ls4_c00355{letter-spacing:0.374080pt;}
.ls1f_c00355{letter-spacing:0.627062pt;}
.ls19_c00355{letter-spacing:0.681139pt;}
.ls1c_c00355{letter-spacing:1.114769pt;}
.ls15_c00355{letter-spacing:1.210907pt;}
.ls3_c00355{letter-spacing:1.280000pt;}
.ls2_c00355{letter-spacing:4.800000pt;}
.ls0_c00355{letter-spacing:284.016000pt;}
.ls6_c00355{letter-spacing:458.341589pt;}
.wse_c00355{word-spacing:-34.836800pt;}
.ws1_c00355{word-spacing:-16.128000pt;}
.ws4_c00355{word-spacing:-16.064000pt;}
.ws5_c00355{word-spacing:-15.936000pt;}
.ws3_c00355{word-spacing:-15.808000pt;}
.ws2_c00355{word-spacing:-15.744000pt;}
.ws7_c00355{word-spacing:-13.520320pt;}
.ws6_c00355{word-spacing:-13.413440pt;}
.ws8_c00355{word-spacing:-13.360000pt;}
.ws9_c00355{word-spacing:-13.199680pt;}
.ws0_c00355{word-spacing:-10.810240pt;}
.wsa_c00355{word-spacing:-9.407813pt;}
.ws28_c00355{word-spacing:-1.400119pt;}
.ws2f_c00355{word-spacing:-1.288962pt;}
.ws24_c00355{word-spacing:-0.279440pt;}
.ws2b_c00355{word-spacing:-0.257254pt;}
.ws22_c00355{word-spacing:-0.160320pt;}
.ws10_c00355{word-spacing:-0.144000pt;}
.ws25_c00355{word-spacing:-0.093147pt;}
.ws2c_c00355{word-spacing:-0.085751pt;}
.ws13_c00355{word-spacing:-0.064000pt;}
.ws21_c00355{word-spacing:-0.053440pt;}
.wsf_c00355{word-spacing:0.000000pt;}
.ws18_c00355{word-spacing:0.064000pt;}
.ws2d_c00355{word-spacing:0.128627pt;}
.ws20_c00355{word-spacing:0.160320pt;}
.ws2e_c00355{word-spacing:0.661899pt;}
.ws29_c00355{word-spacing:0.718980pt;}
.ws27_c00355{word-spacing:1.059550pt;}
.ws26_c00355{word-spacing:1.257480pt;}
.ws1f_c00355{word-spacing:1.280000pt;}
.ws2a_c00355{word-spacing:1.607851pt;}
.ws23_c00355{word-spacing:1.746517pt;}
.ws11_c00355{word-spacing:2.816000pt;}
.ws12_c00355{word-spacing:2.944000pt;}
.ws1e_c00355{word-spacing:4.800000pt;}
.ws14_c00355{word-spacing:7.296000pt;}
.ws15_c00355{word-spacing:7.616000pt;}
.ws16_c00355{word-spacing:7.680000pt;}
.ws1d_c00355{word-spacing:13.376000pt;}
.ws1b_c00355{word-spacing:14.080000pt;}
.ws1c_c00355{word-spacing:15.360000pt;}
.ws17_c00355{word-spacing:16.960000pt;}
.ws1a_c00355{word-spacing:31.680000pt;}
.ws19_c00355{word-spacing:32.192000pt;}
.wsd_c00355{word-spacing:445.650372pt;}
.wsc_c00355{word-spacing:448.351543pt;}
.wsb_c00355{word-spacing:451.309969pt;}
._9_c00355{margin-left:-3.805327pt;}
._8_c00355{margin-left:-2.468387pt;}
._1_c00355{margin-left:-0.972800pt;}
._4_c00355{width:0.902400pt;}
._2_c00355{width:1.792000pt;}
._0_c00355{width:2.880000pt;}
._7_c00355{width:4.288000pt;}
._6_c00355{width:12.902400pt;}
._3_c00355{width:14.016000pt;}
._5_c00355{width:15.065600pt;}
.fs3_c00355{font-size:34.560000pt;}
.fsa_c00355{font-size:34.836800pt;}
.fs7_c00355{font-size:37.841067pt;}
.fs8_c00355{font-size:40.196267pt;}
.fs2_c00355{font-size:42.560000pt;}
.fs9_c00355{font-size:42.875733pt;}
.fs5_c00355{font-size:43.662933pt;}
.fs6_c00355{font-size:46.573333pt;}
.fs0_c00355{font-size:48.000000pt;}
.fs4_c00355{font-size:53.440000pt;}
.fs1_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y2b_c00355{bottom:1.452105pt;}
.y40_c00355{bottom:3.348400pt;}
.y3e_c00355{bottom:4.019733pt;}
.y2d_c00355{bottom:4.366400pt;}
.y31_c00355{bottom:6.698533pt;}
.y3a_c00355{bottom:6.698800pt;}
.y34_c00355{bottom:6.700000pt;}
.y37_c00355{bottom:6.700133pt;}
.y24_c00355{bottom:7.276400pt;}
.y21_c00355{bottom:7.277600pt;}
.y28_c00355{bottom:12.365637pt;}
.y2a_c00355{bottom:13.826133pt;}
.y3c_c00355{bottom:18.758533pt;}
.y26_c00355{bottom:20.376133pt;}
.y27_c00355{bottom:27.653333pt;}
.y38_c00355{bottom:35.507467pt;}
.y22_c00355{bottom:46.573467pt;}
.y41_c00355{bottom:50.880000pt;}
.y35_c00355{bottom:57.615333pt;}
.y1f_c00355{bottom:70.587867pt;}
.y32_c00355{bottom:79.723200pt;}
.y1d_c00355{bottom:97.592160pt;}
.y2f_c00355{bottom:101.831067pt;}
.y1c_c00355{bottom:112.876000pt;}
.y1b_c00355{bottom:132.880000pt;}
.y42_c00355{bottom:144.160000pt;}
.y1a_c00355{bottom:160.000000pt;}
.y2e_c00355{bottom:160.674667pt;}
.y3f_c00355{bottom:161.346667pt;}
.y3d_c00355{bottom:174.744000pt;}
.y39_c00355{bottom:188.813333pt;}
.y36_c00355{bottom:210.920000pt;}
.y33_c00355{bottom:233.028000pt;}
.y30_c00355{bottom:255.137333pt;}
.y3b_c00355{bottom:277.244000pt;}
.y19_c00355{bottom:326.320000pt;}
.y18_c00355{bottom:354.080000pt;}
.y17_c00355{bottom:381.680000pt;}
.y16_c00355{bottom:409.280000pt;}
.y15_c00355{bottom:436.880000pt;}
.y14_c00355{bottom:464.480000pt;}
.y13_c00355{bottom:492.080000pt;}
.y12_c00355{bottom:519.680000pt;}
.y11_c00355{bottom:547.280000pt;}
.y10_c00355{bottom:574.880000pt;}
.yf_c00355{bottom:602.480000pt;}
.ye_c00355{bottom:626.400000pt;}
.y1e_c00355{bottom:627.125333pt;}
.y29_c00355{bottom:627.853333pt;}
.y2c_c00355{bottom:650.412000pt;}
.y23_c00355{bottom:665.694667pt;}
.y20_c00355{bottom:689.708000pt;}
.y25_c00355{bottom:713.722667pt;}
.yd_c00355{bottom:766.000000pt;}
.yc_c00355{bottom:793.760000pt;}
.yb_c00355{bottom:821.360000pt;}
.ya_c00355{bottom:848.960000pt;}
.y9_c00355{bottom:876.560000pt;}
.y8_c00355{bottom:904.160000pt;}
.y7_c00355{bottom:931.760000pt;}
.y6_c00355{bottom:959.200000pt;}
.y5_c00355{bottom:986.800000pt;}
.y4_c00355{bottom:1005.360000pt;}
.y3_c00355{bottom:1023.036000pt;}
.y2_c00355{bottom:1036.800000pt;}
.y1_c00355{bottom:1064.400000pt;}
.h1e_c00355{height:12.728000pt;}
.h1c_c00355{height:13.398667pt;}
.h11_c00355{height:14.554667pt;}
.h15_c00355{height:21.437333pt;}
.h17_c00355{height:21.438667pt;}
.hf_c00355{height:21.832000pt;}
.hb_c00355{height:23.286667pt;}
.h1b_c00355{height:29.351454pt;}
.h19_c00355{height:29.892048pt;}
.h18_c00355{height:31.884640pt;}
.h14_c00355{height:33.150144pt;}
.h7_c00355{height:33.918750pt;}
.h1f_c00355{height:34.190414pt;}
.hd_c00355{height:34.634368pt;}
.h1d_c00355{height:35.108962pt;}
.h16_c00355{height:35.359919pt;}
.ha_c00355{height:36.009128pt;}
.h10_c00355{height:37.138938pt;}
.h12_c00355{height:38.136700pt;}
.hc_c00355{height:38.409355pt;}
.h6_c00355{height:44.468750pt;}
.h1a_c00355{height:44.885333pt;}
.h2_c00355{height:47.109375pt;}
.he_c00355{height:48.029333pt;}
.h8_c00355{height:52.448437pt;}
.h3_c00355{height:62.812500pt;}
.h4_c00355{height:64.500000pt;}
.h5_c00355{height:65.770312pt;}
.h9_c00355{height:134.625333pt;}
.h13_c00355{height:161.454667pt;}
.h0_c00355{height:1122.560000pt;}
.h1_c00355{height:1122.666667pt;}
.w7_c00355{width:120.218667pt;}
.w3_c00355{width:130.820000pt;}
.w4_c00355{width:135.206667pt;}
.w5_c00355{width:266.757333pt;}
.w2_c00355{width:267.488000pt;}
.w8_c00355{width:361.998667pt;}
.w6_c00355{width:362.670667pt;}
.w0_c00355{width:793.840000pt;}
.w1_c00355{width:794.000000pt;}
.x0_c00355{left:0.000000pt;}
.xe_c00355{left:1.461733pt;}
.x15_c00355{left:7.388133pt;}
.xc_c00355{left:12.424133pt;}
.x13_c00355{left:20.820933pt;}
.xa_c00355{left:22.656133pt;}
.xd_c00355{left:54.812950pt;}
.x10_c00355{left:55.744667pt;}
.x12_c00355{left:57.759600pt;}
.x8_c00355{left:60.660000pt;}
.x2_c00355{left:113.440000pt;}
.x5_c00355{left:127.840000pt;}
.x3_c00355{left:156.960000pt;}
.x11_c00355{left:177.978000pt;}
.x9_c00355{left:195.135200pt;}
.xf_c00355{left:215.550667pt;}
.x7_c00355{left:263.130667pt;}
.x14_c00355{left:336.441333pt;}
.xb_c00355{left:394.682667pt;}
.x1_c00355{left:396.960000pt;}
.x16_c00355{left:457.332000pt;}
.x4_c00355{left:531.360000pt;}
.x6_c00355{left:578.960000pt;}
}





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

.ir_c00356:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00356;src:url('chunks/assets/font_a0d88c201f7dea744d0eaa16.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_671e67f02897392e42d86169.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;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_c00356;src:url('chunks/assets/font_f2dab922a0e8e7ba69454811.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_9909ffda05115cac0afb8522.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00356;src:url('chunks/assets/font_dda118b6830734de4f51f8b1.woff2')format("woff");}.ff6_c00356{font-family:ff6_c00356;line-height:0.921875;font-style:normal;font-weight: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_c00356;src:url('chunks/assets/font_6d893ca425ed37ecd5231285.woff2')format("woff");}.ff7_c00356{font-family:ff7_c00356;line-height:0.862793;font-style:normal;font-weight: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_c00356;src:url('chunks/assets/font_cae307e492b6c0bc9f712dca.woff2')format("woff");}.ff8_c00356{font-family:ff8_c00356;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{transform:matrix(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);}
.v0_c00356{vertical-align:0.000000px;}
.ls9_c00356{letter-spacing:-1.641552px;}
.lsc_c00356{letter-spacing:-1.351538px;}
.lsb_c00356{letter-spacing:-0.131324px;}
.ls6_c00356{letter-spacing:-0.108000px;}
.ls8_c00356{letter-spacing:-0.072000px;}
.ls5_c00356{letter-spacing:0.000000px;}
.ls0_c00356{letter-spacing:0.072000px;}
.ls7_c00356{letter-spacing:0.144000px;}
.ls4_c00356{letter-spacing:0.262649px;}
.lsd_c00356{letter-spacing:0.640202px;}
.lsa_c00356{letter-spacing:1.138145px;}
.ls1_c00356{letter-spacing:5.400000px;}
.ls2_c00356{letter-spacing:18.720000px;}
.ls3_c00356{letter-spacing:467.952612px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00356{word-spacing:-35.566800px;}
.ws2_c00356{word-spacing:-18.144000px;}
.ws0_c00356{word-spacing:-18.072000px;}
.ws1_c00356{word-spacing:-18.000000px;}
.ws24_c00356{word-spacing:-1.315972px;}
.ws20_c00356{word-spacing:-0.262649px;}
.wse_c00356{word-spacing:-0.144000px;}
.ws21_c00356{word-spacing:-0.087550px;}
.wsa_c00356{word-spacing:-0.072000px;}
.ws7_c00356{word-spacing:0.000000px;}
.ws12_c00356{word-spacing:0.072000px;}
.ws22_c00356{word-spacing:0.131324px;}
.ws9_c00356{word-spacing:0.162000px;}
.ws8_c00356{word-spacing:0.270000px;}
.ws23_c00356{word-spacing:0.675769px;}
.ws1f_c00356{word-spacing:1.641552px;}
.wsb_c00356{word-spacing:1.800000px;}
.wsc_c00356{word-spacing:2.448000px;}
.ws18_c00356{word-spacing:3.240000px;}
.ws15_c00356{word-spacing:3.600000px;}
.ws13_c00356{word-spacing:4.680000px;}
.ws14_c00356{word-spacing:4.752000px;}
.ws10_c00356{word-spacing:5.328000px;}
.ws11_c00356{word-spacing:5.400000px;}
.ws1b_c00356{word-spacing:6.120000px;}
.ws19_c00356{word-spacing:9.000000px;}
.ws1d_c00356{word-spacing:13.608000px;}
.ws1c_c00356{word-spacing:13.680000px;}
.ws16_c00356{word-spacing:18.360000px;}
.ws17_c00356{word-spacing:18.648000px;}
.wsf_c00356{word-spacing:19.080000px;}
.wsd_c00356{word-spacing:19.440000px;}
.ws1e_c00356{word-spacing:21.600000px;}
.ws1a_c00356{word-spacing:22.968000px;}
.ws5_c00356{word-spacing:454.995271px;}
.ws4_c00356{word-spacing:457.753084px;}
.ws3_c00356{word-spacing:460.773545px;}
._a_c00356{margin-left:-3.382255px;}
._9_c00356{margin-left:-2.320064px;}
._1_c00356{margin-left:-1.058400px;}
._0_c00356{width:1.220400px;}
._2_c00356{width:2.739600px;}
._8_c00356{width:4.680000px;}
._7_c00356{width:9.072000px;}
._6_c00356{width:10.584000px;}
._3_c00356{width:12.168000px;}
._4_c00356{width:19.202400px;}
._5_c00356{width:24.480000px;}
.fc0_c00356{color:rgb(0,0,0);}
.fs4_c00356{font-size:35.566800px;}
.fs2_c00356{font-size:41.038800px;}
.fs3_c00356{font-size:43.774800px;}
.fs0_c00356{font-size:54.000000px;}
.fs1_c00356{font-size:72.000000px;}
.y0_c00356{bottom:0.000000px;}
.y34_c00356{bottom:3.420150px;}
.y32_c00356{bottom:4.103700px;}
.y2e_c00356{bottom:6.839250px;}
.y28_c00356{bottom:6.839400px;}
.y2b_c00356{bottom:6.840000px;}
.y25_c00356{bottom:6.840300px;}
.y30_c00356{bottom:20.519250px;}
.y2c_c00356{bottom:36.251250px;}
.y35_c00356{bottom:57.240000px;}
.y29_c00356{bottom:58.822500px;}
.y26_c00356{bottom:81.393900px;}
.y23_c00356{bottom:103.965300px;}
.y21_c00356{bottom:134.190000px;}
.y20_c00356{bottom:165.240000px;}
.y1f_c00356{bottom:196.290000px;}
.y1e_c00356{bottom:227.340000px;}
.y1d_c00356{bottom:258.390000px;}
.y1c_c00356{bottom:289.440000px;}
.y1b_c00356{bottom:320.490000px;}
.y1a_c00356{bottom:351.540000px;}
.y19_c00356{bottom:382.590000px;}
.y18_c00356{bottom:413.640000px;}
.y17_c00356{bottom:444.690000px;}
.y16_c00356{bottom:475.740000px;}
.y15_c00356{bottom:506.610000px;}
.y14_c00356{bottom:537.660000px;}
.y13_c00356{bottom:568.890000px;}
.y12_c00356{bottom:595.890000px;}
.y22_c00356{bottom:596.470500px;}
.y33_c00356{bottom:597.154500px;}
.y31_c00356{bottom:610.834500px;}
.y2d_c00356{bottom:625.198500px;}
.y2a_c00356{bottom:647.769000px;}
.y27_c00356{bottom:670.341000px;}
.y24_c00356{bottom:692.911500px;}
.y2f_c00356{bottom:715.483500px;}
.y11_c00356{bottom:779.040000px;}
.y10_c00356{bottom:810.270000px;}
.yf_c00356{bottom:841.230000px;}
.ye_c00356{bottom:872.280000px;}
.yd_c00356{bottom:903.330000px;}
.yc_c00356{bottom:934.380000px;}
.yb_c00356{bottom:965.430000px;}
.ya_c00356{bottom:996.480000px;}
.y9_c00356{bottom:1027.530000px;}
.y8_c00356{bottom:1058.580000px;}
.y7_c00356{bottom:1089.630000px;}
.y6_c00356{bottom:1110.330000px;}
.y5_c00356{bottom:1131.030000px;}
.y4_c00356{bottom:1150.920000px;}
.y3_c00356{bottom:1166.404500px;}
.y2_c00356{bottom:1181.970000px;}
.y1_c00356{bottom:1197.450000px;}
.h12_c00356{height:12.994500px;}
.h10_c00356{height:13.680000px;}
.hb_c00356{height:21.886500px;}
.h9_c00356{height:21.888000px;}
.hf_c00356{height:29.966929px;}
.hd_c00356{height:30.518600px;}
.hc_c00356{height:32.553233px;}
.h8_c00356{height:33.844987px;}
.h13_c00356{height:34.906869px;}
.h11_c00356{height:35.844666px;}
.ha_c00356{height:36.101385px;}
.he_c00356{height:48.562500px;}
.h5_c00356{height:50.027344px;}
.h3_c00356{height:52.971680px;}
.h2_c00356{height:52.998047px;}
.h4_c00356{height:70.664062px;}
.h6_c00356{height:72.562500px;}
.h7_c00356{height:167.575500px;}
.h0_c00356{height:1262.880000px;}
.h1_c00356{height:1263.000000px;}
.w3_c00356{width:122.434500px;}
.w4_c00356{width:368.671500px;}
.w2_c00356{width:369.354000px;}
.w0_c00356{width:893.070000px;}
.w1_c00356{width:893.250000px;}
.x0_c00356{left:0.000000px;}
.xe_c00356{left:1.368000px;}
.xc_c00356{left:7.524000px;}
.xa_c00356{left:21.203700px;}
.x7_c00356{left:56.771250px;}
.x9_c00356{left:58.823400px;}
.x3_c00356{left:127.620000px;}
.x8_c00356{left:181.257900px;}
.x4_c00356{left:217.620000px;}
.x6_c00356{left:261.774000px;}
.xb_c00356{left:384.892500px;}
.x2_c00356{left:425.160000px;}
.x1_c00356{left:446.580000px;}
.xd_c00356{left:508.011000px;}
.x5_c00356{left:631.980000px;}
.xf_c00356{left:738.540000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls9_c00356{letter-spacing:-1.459157pt;}
.lsc_c00356{letter-spacing:-1.201367pt;}
.lsb_c00356{letter-spacing:-0.116733pt;}
.ls6_c00356{letter-spacing:-0.096000pt;}
.ls8_c00356{letter-spacing:-0.064000pt;}
.ls5_c00356{letter-spacing:0.000000pt;}
.ls0_c00356{letter-spacing:0.064000pt;}
.ls7_c00356{letter-spacing:0.128000pt;}
.ls4_c00356{letter-spacing:0.233466pt;}
.lsd_c00356{letter-spacing:0.569069pt;}
.lsa_c00356{letter-spacing:1.011684pt;}
.ls1_c00356{letter-spacing:4.800000pt;}
.ls2_c00356{letter-spacing:16.640000pt;}
.ls3_c00356{letter-spacing:415.957877pt;}
.ws6_c00356{word-spacing:-31.614933pt;}
.ws2_c00356{word-spacing:-16.128000pt;}
.ws0_c00356{word-spacing:-16.064000pt;}
.ws1_c00356{word-spacing:-16.000000pt;}
.ws24_c00356{word-spacing:-1.169753pt;}
.ws20_c00356{word-spacing:-0.233466pt;}
.wse_c00356{word-spacing:-0.128000pt;}
.ws21_c00356{word-spacing:-0.077822pt;}
.wsa_c00356{word-spacing:-0.064000pt;}
.ws7_c00356{word-spacing:0.000000pt;}
.ws12_c00356{word-spacing:0.064000pt;}
.ws22_c00356{word-spacing:0.116733pt;}
.ws9_c00356{word-spacing:0.144000pt;}
.ws8_c00356{word-spacing:0.240000pt;}
.ws23_c00356{word-spacing:0.600684pt;}
.ws1f_c00356{word-spacing:1.459157pt;}
.wsb_c00356{word-spacing:1.600000pt;}
.wsc_c00356{word-spacing:2.176000pt;}
.ws18_c00356{word-spacing:2.880000pt;}
.ws15_c00356{word-spacing:3.200000pt;}
.ws13_c00356{word-spacing:4.160000pt;}
.ws14_c00356{word-spacing:4.224000pt;}
.ws10_c00356{word-spacing:4.736000pt;}
.ws11_c00356{word-spacing:4.800000pt;}
.ws1b_c00356{word-spacing:5.440000pt;}
.ws19_c00356{word-spacing:8.000000pt;}
.ws1d_c00356{word-spacing:12.096000pt;}
.ws1c_c00356{word-spacing:12.160000pt;}
.ws16_c00356{word-spacing:16.320000pt;}
.ws17_c00356{word-spacing:16.576000pt;}
.wsf_c00356{word-spacing:16.960000pt;}
.wsd_c00356{word-spacing:17.280000pt;}
.ws1e_c00356{word-spacing:19.200000pt;}
.ws1a_c00356{word-spacing:20.416000pt;}
.ws5_c00356{word-spacing:404.440241pt;}
.ws4_c00356{word-spacing:406.891630pt;}
.ws3_c00356{word-spacing:409.576484pt;}
._a_c00356{margin-left:-3.006449pt;}
._9_c00356{margin-left:-2.062279pt;}
._1_c00356{margin-left:-0.940800pt;}
._0_c00356{width:1.084800pt;}
._2_c00356{width:2.435200pt;}
._8_c00356{width:4.160000pt;}
._7_c00356{width:8.064000pt;}
._6_c00356{width:9.408000pt;}
._3_c00356{width:10.816000pt;}
._4_c00356{width:17.068800pt;}
._5_c00356{width:21.760000pt;}
.fs4_c00356{font-size:31.614933pt;}
.fs2_c00356{font-size:36.478933pt;}
.fs3_c00356{font-size:38.910933pt;}
.fs0_c00356{font-size:48.000000pt;}
.fs1_c00356{font-size:64.000000pt;}
.y0_c00356{bottom:0.000000pt;}
.y34_c00356{bottom:3.040133pt;}
.y32_c00356{bottom:3.647733pt;}
.y2e_c00356{bottom:6.079333pt;}
.y28_c00356{bottom:6.079467pt;}
.y2b_c00356{bottom:6.080000pt;}
.y25_c00356{bottom:6.080267pt;}
.y30_c00356{bottom:18.239333pt;}
.y2c_c00356{bottom:32.223333pt;}
.y35_c00356{bottom:50.880000pt;}
.y29_c00356{bottom:52.286667pt;}
.y26_c00356{bottom:72.350133pt;}
.y23_c00356{bottom:92.413600pt;}
.y21_c00356{bottom:119.280000pt;}
.y20_c00356{bottom:146.880000pt;}
.y1f_c00356{bottom:174.480000pt;}
.y1e_c00356{bottom:202.080000pt;}
.y1d_c00356{bottom:229.680000pt;}
.y1c_c00356{bottom:257.280000pt;}
.y1b_c00356{bottom:284.880000pt;}
.y1a_c00356{bottom:312.480000pt;}
.y19_c00356{bottom:340.080000pt;}
.y18_c00356{bottom:367.680000pt;}
.y17_c00356{bottom:395.280000pt;}
.y16_c00356{bottom:422.880000pt;}
.y15_c00356{bottom:450.320000pt;}
.y14_c00356{bottom:477.920000pt;}
.y13_c00356{bottom:505.680000pt;}
.y12_c00356{bottom:529.680000pt;}
.y22_c00356{bottom:530.196000pt;}
.y33_c00356{bottom:530.804000pt;}
.y31_c00356{bottom:542.964000pt;}
.y2d_c00356{bottom:555.732000pt;}
.y2a_c00356{bottom:575.794667pt;}
.y27_c00356{bottom:595.858667pt;}
.y24_c00356{bottom:615.921333pt;}
.y2f_c00356{bottom:635.985333pt;}
.y11_c00356{bottom:692.480000pt;}
.y10_c00356{bottom:720.240000pt;}
.yf_c00356{bottom:747.760000pt;}
.ye_c00356{bottom:775.360000pt;}
.yd_c00356{bottom:802.960000pt;}
.yc_c00356{bottom:830.560000pt;}
.yb_c00356{bottom:858.160000pt;}
.ya_c00356{bottom:885.760000pt;}
.y9_c00356{bottom:913.360000pt;}
.y8_c00356{bottom:940.960000pt;}
.y7_c00356{bottom:968.560000pt;}
.y6_c00356{bottom:986.960000pt;}
.y5_c00356{bottom:1005.360000pt;}
.y4_c00356{bottom:1023.040000pt;}
.y3_c00356{bottom:1036.804000pt;}
.y2_c00356{bottom:1050.640000pt;}
.y1_c00356{bottom:1064.400000pt;}
.h12_c00356{height:11.550667pt;}
.h10_c00356{height:12.160000pt;}
.hb_c00356{height:19.454667pt;}
.h9_c00356{height:19.456000pt;}
.hf_c00356{height:26.637270pt;}
.hd_c00356{height:27.127644pt;}
.hc_c00356{height:28.936207pt;}
.h8_c00356{height:30.084433pt;}
.h13_c00356{height:31.028328pt;}
.h11_c00356{height:31.861925pt;}
.ha_c00356{height:32.090120pt;}
.he_c00356{height:43.166667pt;}
.h5_c00356{height:44.468750pt;}
.h3_c00356{height:47.085938pt;}
.h2_c00356{height:47.109375pt;}
.h4_c00356{height:62.812500pt;}
.h6_c00356{height:64.500000pt;}
.h7_c00356{height:148.956000pt;}
.h0_c00356{height:1122.560000pt;}
.h1_c00356{height:1122.666667pt;}
.w3_c00356{width:108.830667pt;}
.w4_c00356{width:327.708000pt;}
.w2_c00356{width:328.314667pt;}
.w0_c00356{width:793.840000pt;}
.w1_c00356{width:794.000000pt;}
.x0_c00356{left:0.000000pt;}
.xe_c00356{left:1.216000pt;}
.xc_c00356{left:6.688000pt;}
.xa_c00356{left:18.847733pt;}
.x7_c00356{left:50.463333pt;}
.x9_c00356{left:52.287467pt;}
.x3_c00356{left:113.440000pt;}
.x8_c00356{left:161.118133pt;}
.x4_c00356{left:193.440000pt;}
.x6_c00356{left:232.688000pt;}
.xb_c00356{left:342.126667pt;}
.x2_c00356{left:377.920000pt;}
.x1_c00356{left:396.960000pt;}
.xd_c00356{left:451.565333pt;}
.x5_c00356{left:561.760000pt;}
.xf_c00356{left:656.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_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_f07b25851c6163a63298ed0c.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_982e5a69af5793453c9e99a3.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_414d2ad4c304b2484797d71a.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_c0db2cfeef392738701cfb6b.woff2')format("woff");}.ff4_c00357{font-family:ff4_c00357;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00357;src:url('chunks/assets/font_0b721d0b9dd5bf12016b6897.woff2')format("woff");}.ff5_c00357{font-family:ff5_c00357;line-height:0.921875;font-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_c00357{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);}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00357{vertical-align:-61.938000px;}
.v2_c00357{vertical-align:-3.865800px;}
.v0_c00357{vertical-align:0.000000px;}
.ls13_c00357{letter-spacing:-2.319456px;}
.ls21_c00357{letter-spacing:-1.793714px;}
.ls16_c00357{letter-spacing:-1.565633px;}
.ls1e_c00357{letter-spacing:-1.484453px;}
.ls15_c00357{letter-spacing:-1.275701px;}
.ls19_c00357{letter-spacing:-0.753823px;}
.ls1d_c00357{letter-spacing:-0.734496px;}
.lsd_c00357{letter-spacing:-0.576000px;}
.ls14_c00357{letter-spacing:-0.432965px;}
.lsf_c00357{letter-spacing:-0.360000px;}
.ls20_c00357{letter-spacing:-0.185557px;}
.ls17_c00357{letter-spacing:-0.173959px;}
.lse_c00357{letter-spacing:-0.144000px;}
.ls11_c00357{letter-spacing:-0.120240px;}
.ls10_c00357{letter-spacing:-0.072000px;}
.ls1a_c00357{letter-spacing:-0.061852px;}
.lsb_c00357{letter-spacing:0.000000px;}
.ls2_c00357{letter-spacing:0.072000px;}
.lsc_c00357{letter-spacing:0.144000px;}
.ls1c_c00357{letter-spacing:0.247409px;}
.ls7_c00357{letter-spacing:1.217714px;}
.ls1_c00357{letter-spacing:1.440000px;}
.ls1f_c00357{letter-spacing:1.546305px;}
.ls18_c00357{letter-spacing:1.739592px;}
.ls1b_c00357{letter-spacing:1.793714px;}
.ls12_c00357{letter-spacing:2.087510px;}
.ls4_c00357{letter-spacing:4.680000px;}
.ls3_c00357{letter-spacing:10.800000px;}
.ls5_c00357{letter-spacing:11.865600px;}
.ls6_c00357{letter-spacing:67.264224px;}
.ls8_c00357{letter-spacing:239.244760px;}
.lsa_c00357{letter-spacing:268.245086px;}
.ls9_c00357{letter-spacing:291.439646px;}
.ls0_c00357{letter-spacing:319.518000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00357{word-spacing:-18.144000px;}
.ws1_c00357{word-spacing:-18.000000px;}
.ws4_c00357{word-spacing:-17.928000px;}
.ws2_c00357{word-spacing:-17.856000px;}
.ws3_c00357{word-spacing:-17.640000px;}
.ws3e_c00357{word-spacing:-15.865114px;}
.ws3c_c00357{word-spacing:-15.772311px;}
.wsb_c00357{word-spacing:-15.192437px;}
.ws5_c00357{word-spacing:-14.909760px;}
.ws3d_c00357{word-spacing:-14.226006px;}
.ws3b_c00357{word-spacing:-13.916745px;}
.ws3f_c00357{word-spacing:-12.494144px;}
.ws40_c00357{word-spacing:-12.184883px;}
.ws11_c00357{word-spacing:-11.829226px;}
.ws5a_c00357{word-spacing:-1.546305px;}
.ws55_c00357{word-spacing:-0.367248px;}
.ws53_c00357{word-spacing:-0.231946px;}
.ws42_c00357{word-spacing:-0.162000px;}
.ws4e_c00357{word-spacing:-0.144000px;}
.ws4d_c00357{word-spacing:-0.072000px;}
.ws56_c00357{word-spacing:-0.061852px;}
.ws41_c00357{word-spacing:0.000000px;}
.ws52_c00357{word-spacing:0.072000px;}
.ws59_c00357{word-spacing:0.185557px;}
.ws54_c00357{word-spacing:0.432965px;}
.ws58_c00357{word-spacing:1.237044px;}
.ws44_c00357{word-spacing:1.368000px;}
.ws45_c00357{word-spacing:1.440000px;}
.ws57_c00357{word-spacing:1.670009px;}
.ws4f_c00357{word-spacing:1.728000px;}
.ws49_c00357{word-spacing:4.320000px;}
.ws4a_c00357{word-spacing:4.608000px;}
.ws50_c00357{word-spacing:4.968000px;}
.ws51_c00357{word-spacing:5.040000px;}
.ws48_c00357{word-spacing:5.256000px;}
.ws46_c00357{word-spacing:10.728000px;}
.ws47_c00357{word-spacing:10.800000px;}
.ws4c_c00357{word-spacing:11.808000px;}
.ws4b_c00357{word-spacing:11.880000px;}
.ws43_c00357{word-spacing:20.160000px;}
.ws1e_c00357{word-spacing:43.315841px;}
.ws10_c00357{word-spacing:210.668743px;}
.ws33_c00357{word-spacing:218.400418px;}
.ws15_c00357{word-spacing:221.658813px;}
.wsd_c00357{word-spacing:221.739994px;}
.ws18_c00357{word-spacing:232.699423px;}
.ws28_c00357{word-spacing:233.337274px;}
.wsa_c00357{word-spacing:233.863168px;}
.ws38_c00357{word-spacing:233.863768px;}
.ws7_c00357{word-spacing:237.141181px;}
.ws2f_c00357{word-spacing:237.163670px;}
.ws3a_c00357{word-spacing:237.164270px;}
.wsf_c00357{word-spacing:241.110691px;}
.ws26_c00357{word-spacing:241.110931px;}
.ws1b_c00357{word-spacing:241.111291px;}
.wse_c00357{word-spacing:244.296703px;}
.ws2c_c00357{word-spacing:248.181792px;}
.ws9_c00357{word-spacing:252.626190px;}
.ws37_c00357{word-spacing:252.626430px;}
.ws1d_c00357{word-spacing:252.626790px;}
.ws22_c00357{word-spacing:252.627030px;}
.ws2d_c00357{word-spacing:252.688002px;}
.ws16_c00357{word-spacing:255.893983px;}
.ws13_c00357{word-spacing:256.573451px;}
.ws20_c00357{word-spacing:256.573691px;}
.ws8_c00357{word-spacing:267.491263px;}
.ws12_c00357{word-spacing:302.828175px;}
.ws25_c00357{word-spacing:344.004318px;}
.ws2b_c00357{word-spacing:344.920503px;}
.ws36_c00357{word-spacing:352.650090px;}
.ws27_c00357{word-spacing:353.154572px;}
.ws14_c00357{word-spacing:361.927914px;}
.ws17_c00357{word-spacing:368.607948px;}
.ws23_c00357{word-spacing:371.118759px;}
.ws39_c00357{word-spacing:373.229464px;}
.ws2a_c00357{word-spacing:384.368651px;}
.ws34_c00357{word-spacing:391.558965px;}
.ws31_c00357{word-spacing:391.796709px;}
.ws24_c00357{word-spacing:399.456712px;}
.wsc_c00357{word-spacing:411.877399px;}
.ws21_c00357{word-spacing:415.298597px;}
.ws29_c00357{word-spacing:423.880584px;}
.ws1f_c00357{word-spacing:429.116756px;}
.ws30_c00357{word-spacing:432.694517px;}
.ws6_c00357{word-spacing:436.428841px;}
.ws35_c00357{word-spacing:445.956006px;}
.ws19_c00357{word-spacing:468.547508px;}
.ws2e_c00357{word-spacing:473.905451px;}
.ws1a_c00357{word-spacing:476.590222px;}
.ws32_c00357{word-spacing:496.131638px;}
.ws1c_c00357{word-spacing:514.936628px;}
._4_c00357{margin-left:-3.846438px;}
._3_c00357{margin-left:-2.675102px;}
._0_c00357{margin-left:-1.152000px;}
._1_c00357{width:1.008000px;}
._5_c00357{width:2.935075px;}
._6_c00357{width:4.077407px;}
._2_c00357{width:5.256000px;}
._7_c00357{width:253.159915px;}
.fc1_c00357{color:transparent;}
.fc0_c00357{color:rgb(0,0,0);}
.fs0_c00357{font-size:54.000000px;}
.fs3_c00357{font-size:57.986400px;}
.fs2_c00357{font-size:60.120000px;}
.fs4_c00357{font-size:61.852200px;}
.fs1_c00357{font-size:72.000000px;}
.fs5_c00357{font-size:73.449600px;}
.y0_c00357{bottom:0.000000px;}
.y29_c00357{bottom:3.864750px;}
.y1c_c00357{bottom:3.864900px;}
.y2e_c00357{bottom:3.865200px;}
.y30_c00357{bottom:3.865350px;}
.y22_c00357{bottom:3.865500px;}
.y13_c00357{bottom:3.865650px;}
.y16_c00357{bottom:3.865800px;}
.y26_c00357{bottom:3.865950px;}
.y18_c00357{bottom:3.866100px;}
.y1a_c00357{bottom:3.866250px;}
.y2b_c00357{bottom:3.866400px;}
.y1e_c00357{bottom:3.866550px;}
.y20_c00357{bottom:3.866700px;}
.y3f_c00357{bottom:4.828732px;}
.y45_c00357{bottom:5.813751px;}
.y4c_c00357{bottom:5.813901px;}
.y44_c00357{bottom:26.101272px;}
.y4b_c00357{bottom:26.101422px;}
.y3e_c00357{bottom:28.993650px;}
.y47_c00357{bottom:35.765678px;}
.y3b_c00357{bottom:46.388700px;}
.y43_c00357{bottom:46.388794px;}
.y40_c00357{bottom:46.388850px;}
.y4a_c00357{bottom:46.388944px;}
.y46_c00357{bottom:56.053200px;}
.y4d_c00357{bottom:57.240000px;}
.y49_c00357{bottom:66.676465px;}
.y42_c00357{bottom:66.691778px;}
.y3c_c00357{bottom:70.549800px;}
.y41_c00357{bottom:86.979300px;}
.y48_c00357{bottom:86.979450px;}
.y11_c00357{bottom:116.820000px;}
.y10_c00357{bottom:130.680000px;}
.y39_c00357{bottom:132.520500px;}
.y38_c00357{bottom:151.849500px;}
.y37_c00357{bottom:171.177000px;}
.y36_c00357{bottom:190.506000px;}
.y35_c00357{bottom:209.836500px;}
.y34_c00357{bottom:229.164000px;}
.y33_c00357{bottom:248.493000px;}
.y32_c00357{bottom:267.822000px;}
.y31_c00357{bottom:287.151000px;}
.y2f_c00357{bottom:306.480000px;}
.y2d_c00357{bottom:325.809000px;}
.y2c_c00357{bottom:345.136500px;}
.y2a_c00357{bottom:364.465500px;}
.y28_c00357{bottom:383.796000px;}
.y27_c00357{bottom:403.123500px;}
.y25_c00357{bottom:422.452500px;}
.y24_c00357{bottom:441.781500px;}
.y23_c00357{bottom:461.110500px;}
.y21_c00357{bottom:480.439500px;}
.y1f_c00357{bottom:499.767000px;}
.y1d_c00357{bottom:519.096000px;}
.y1b_c00357{bottom:538.426500px;}
.y19_c00357{bottom:557.754000px;}
.y17_c00357{bottom:577.083000px;}
.y15_c00357{bottom:596.412000px;}
.y14_c00357{bottom:615.741000px;}
.y12_c00357{bottom:635.070000px;}
.y3a_c00357{bottom:654.399000px;}
.y3d_c00357{bottom:757.807500px;}
.yf_c00357{bottom:810.090000px;}
.ye_c00357{bottom:830.790000px;}
.yd_c00357{bottom:861.930000px;}
.yc_c00357{bottom:892.980000px;}
.yb_c00357{bottom:924.030000px;}
.ya_c00357{bottom:955.080000px;}
.y9_c00357{bottom:986.130000px;}
.y8_c00357{bottom:1017.180000px;}
.y7_c00357{bottom:1048.230000px;}
.y6_c00357{bottom:1079.280000px;}
.y5_c00357{bottom:1110.330000px;}
.y4_c00357{bottom:1131.030000px;}
.y3_c00357{bottom:1150.915500px;}
.y2_c00357{bottom:1166.400000px;}
.y1_c00357{bottom:1197.450000px;}
.h7_c00357{height:18.361500px;}
.h5_c00357{height:18.363000px;}
.hb_c00357{height:47.355000px;}
.h6_c00357{height:47.821792px;}
.h9_c00357{height:51.009944px;}
.h2_c00357{height:52.998047px;}
.hc_c00357{height:60.574402px;}
.h3_c00357{height:70.664062px;}
.h4_c00357{height:72.562500px;}
.h8_c00357{height:102.442500px;}
.ha_c00357{height:150.763500px;}
.h0_c00357{height:1262.880000px;}
.h1_c00357{height:1263.000000px;}
.w5_c00357{width:34.792500px;}
.w4_c00357{width:85.045500px;}
.wa_c00357{width:91.810500px;}
.w8_c00357{width:93.744000px;}
.w9_c00357{width:98.575500px;}
.w6_c00357{width:140.131500px;}
.w7_c00357{width:458.088000px;}
.w3_c00357{width:635.911500px;}
.w2_c00357{width:893.031000px;}
.w0_c00357{width:893.070000px;}
.w1_c00357{width:893.250000px;}
.x0_c00357{left:0.000000px;}
.x16_c00357{left:2.898900px;}
.x13_c00357{left:4.833000px;}
.x11_c00357{left:6.764850px;}
.x9_c00357{left:10.631100px;}
.x8_c00357{left:13.530450px;}
.xf_c00357{left:17.395650px;}
.xb_c00357{left:20.294850px;}
.x14_c00357{left:29.960213px;}
.x17_c00357{left:32.850537px;}
.xd_c00357{left:36.724350px;}
.x2_c00357{left:127.620000px;}
.x3_c00357{left:133.560000px;}
.x4_c00357{left:150.840000px;}
.xc_c00357{left:164.344500px;}
.x10_c00357{left:191.359607px;}
.xe_c00357{left:305.443500px;}
.x12_c00357{left:391.455000px;}
.x1_c00357{left:446.580000px;}
.x15_c00357{left:486.166500px;}
.x18_c00357{left:585.708000px;}
.xa_c00357{left:678.486000px;}
.x6_c00357{left:696.330000px;}
.x5_c00357{left:765.450000px;}
.x7_c00357{left:981.540000px;}
@media print{
.v1_c00357{vertical-align:-55.056000pt;}
.v2_c00357{vertical-align:-3.436267pt;}
.v0_c00357{vertical-align:0.000000pt;}
.ls13_c00357{letter-spacing:-2.061739pt;}
.ls21_c00357{letter-spacing:-1.594412pt;}
.ls16_c00357{letter-spacing:-1.391674pt;}
.ls1e_c00357{letter-spacing:-1.319514pt;}
.ls15_c00357{letter-spacing:-1.133956pt;}
.ls19_c00357{letter-spacing:-0.670065pt;}
.ls1d_c00357{letter-spacing:-0.652885pt;}
.lsd_c00357{letter-spacing:-0.512000pt;}
.ls14_c00357{letter-spacing:-0.384858pt;}
.lsf_c00357{letter-spacing:-0.320000pt;}
.ls20_c00357{letter-spacing:-0.164939pt;}
.ls17_c00357{letter-spacing:-0.154630pt;}
.lse_c00357{letter-spacing:-0.128000pt;}
.ls11_c00357{letter-spacing:-0.106880pt;}
.ls10_c00357{letter-spacing:-0.064000pt;}
.ls1a_c00357{letter-spacing:-0.054980pt;}
.lsb_c00357{letter-spacing:0.000000pt;}
.ls2_c00357{letter-spacing:0.064000pt;}
.lsc_c00357{letter-spacing:0.128000pt;}
.ls1c_c00357{letter-spacing:0.219919pt;}
.ls7_c00357{letter-spacing:1.082413pt;}
.ls1_c00357{letter-spacing:1.280000pt;}
.ls1f_c00357{letter-spacing:1.374493pt;}
.ls18_c00357{letter-spacing:1.546304pt;}
.ls1b_c00357{letter-spacing:1.594412pt;}
.ls12_c00357{letter-spacing:1.855565pt;}
.ls4_c00357{letter-spacing:4.160000pt;}
.ls3_c00357{letter-spacing:9.600000pt;}
.ls5_c00357{letter-spacing:10.547200pt;}
.ls6_c00357{letter-spacing:59.790421pt;}
.ls8_c00357{letter-spacing:212.662009pt;}
.lsa_c00357{letter-spacing:238.440077pt;}
.ls9_c00357{letter-spacing:259.057463pt;}
.ls0_c00357{letter-spacing:284.016000pt;}
.ws0_c00357{word-spacing:-16.128000pt;}
.ws1_c00357{word-spacing:-16.000000pt;}
.ws4_c00357{word-spacing:-15.936000pt;}
.ws2_c00357{word-spacing:-15.872000pt;}
.ws3_c00357{word-spacing:-15.680000pt;}
.ws3e_c00357{word-spacing:-14.102323pt;}
.ws3c_c00357{word-spacing:-14.019832pt;}
.wsb_c00357{word-spacing:-13.504388pt;}
.ws5_c00357{word-spacing:-13.253120pt;}
.ws3d_c00357{word-spacing:-12.645339pt;}
.ws3b_c00357{word-spacing:-12.370440pt;}
.ws3f_c00357{word-spacing:-11.105906pt;}
.ws40_c00357{word-spacing:-10.831007pt;}
.ws11_c00357{word-spacing:-10.514867pt;}
.ws5a_c00357{word-spacing:-1.374493pt;}
.ws55_c00357{word-spacing:-0.326443pt;}
.ws53_c00357{word-spacing:-0.206174pt;}
.ws42_c00357{word-spacing:-0.144000pt;}
.ws4e_c00357{word-spacing:-0.128000pt;}
.ws4d_c00357{word-spacing:-0.064000pt;}
.ws56_c00357{word-spacing:-0.054980pt;}
.ws41_c00357{word-spacing:0.000000pt;}
.ws52_c00357{word-spacing:0.064000pt;}
.ws59_c00357{word-spacing:0.164939pt;}
.ws54_c00357{word-spacing:0.384858pt;}
.ws58_c00357{word-spacing:1.099595pt;}
.ws44_c00357{word-spacing:1.216000pt;}
.ws45_c00357{word-spacing:1.280000pt;}
.ws57_c00357{word-spacing:1.484453pt;}
.ws4f_c00357{word-spacing:1.536000pt;}
.ws49_c00357{word-spacing:3.840000pt;}
.ws4a_c00357{word-spacing:4.096000pt;}
.ws50_c00357{word-spacing:4.416000pt;}
.ws51_c00357{word-spacing:4.480000pt;}
.ws48_c00357{word-spacing:4.672000pt;}
.ws46_c00357{word-spacing:9.536000pt;}
.ws47_c00357{word-spacing:9.600000pt;}
.ws4c_c00357{word-spacing:10.496000pt;}
.ws4b_c00357{word-spacing:10.560000pt;}
.ws43_c00357{word-spacing:17.920000pt;}
.ws1e_c00357{word-spacing:38.502970pt;}
.ws10_c00357{word-spacing:187.261105pt;}
.ws33_c00357{word-spacing:194.133705pt;}
.ws15_c00357{word-spacing:197.030056pt;}
.wsd_c00357{word-spacing:197.102217pt;}
.ws18_c00357{word-spacing:206.843932pt;}
.ws28_c00357{word-spacing:207.410910pt;}
.wsa_c00357{word-spacing:207.878372pt;}
.ws38_c00357{word-spacing:207.878905pt;}
.ws7_c00357{word-spacing:210.792161pt;}
.ws2f_c00357{word-spacing:210.812151pt;}
.ws3a_c00357{word-spacing:210.812685pt;}
.wsf_c00357{word-spacing:214.320614pt;}
.ws26_c00357{word-spacing:214.320828pt;}
.ws1b_c00357{word-spacing:214.321148pt;}
.wse_c00357{word-spacing:217.152625pt;}
.ws2c_c00357{word-spacing:220.606037pt;}
.ws9_c00357{word-spacing:224.556614pt;}
.ws37_c00357{word-spacing:224.556827pt;}
.ws1d_c00357{word-spacing:224.557147pt;}
.ws22_c00357{word-spacing:224.557360pt;}
.ws2d_c00357{word-spacing:224.611558pt;}
.ws16_c00357{word-spacing:227.461318pt;}
.ws13_c00357{word-spacing:228.065290pt;}
.ws20_c00357{word-spacing:228.065503pt;}
.ws8_c00357{word-spacing:237.770012pt;}
.ws12_c00357{word-spacing:269.180600pt;}
.ws25_c00357{word-spacing:305.781616pt;}
.ws2b_c00357{word-spacing:306.596003pt;}
.ws36_c00357{word-spacing:313.466747pt;}
.ws27_c00357{word-spacing:313.915175pt;}
.ws14_c00357{word-spacing:321.713702pt;}
.ws17_c00357{word-spacing:327.651509pt;}
.ws23_c00357{word-spacing:329.883341pt;}
.ws39_c00357{word-spacing:331.759523pt;}
.ws2a_c00357{word-spacing:341.661023pt;}
.ws34_c00357{word-spacing:348.052413pt;}
.ws31_c00357{word-spacing:348.263741pt;}
.ws24_c00357{word-spacing:355.072633pt;}
.wsc_c00357{word-spacing:366.113244pt;}
.ws21_c00357{word-spacing:369.154308pt;}
.ws29_c00357{word-spacing:376.782741pt;}
.ws1f_c00357{word-spacing:381.437116pt;}
.ws30_c00357{word-spacing:384.617348pt;}
.ws6_c00357{word-spacing:387.936748pt;}
.ws35_c00357{word-spacing:396.405339pt;}
.ws19_c00357{word-spacing:416.486674pt;}
.ws2e_c00357{word-spacing:421.249290pt;}
.ws1a_c00357{word-spacing:423.635753pt;}
.ws32_c00357{word-spacing:441.005901pt;}
.ws1c_c00357{word-spacing:457.721447pt;}
._4_c00357{margin-left:-3.419056pt;}
._3_c00357{margin-left:-2.377869pt;}
._0_c00357{margin-left:-1.024000pt;}
._1_c00357{width:0.896000pt;}
._5_c00357{width:2.608956pt;}
._6_c00357{width:3.624362pt;}
._2_c00357{width:4.672000pt;}
._7_c00357{width:225.031036pt;}
.fs0_c00357{font-size:48.000000pt;}
.fs3_c00357{font-size:51.543467pt;}
.fs2_c00357{font-size:53.440000pt;}
.fs4_c00357{font-size:54.979733pt;}
.fs1_c00357{font-size:64.000000pt;}
.fs5_c00357{font-size:65.288533pt;}
.y0_c00357{bottom:0.000000pt;}
.y29_c00357{bottom:3.435333pt;}
.y1c_c00357{bottom:3.435467pt;}
.y2e_c00357{bottom:3.435733pt;}
.y30_c00357{bottom:3.435867pt;}
.y22_c00357{bottom:3.436000pt;}
.y13_c00357{bottom:3.436133pt;}
.y16_c00357{bottom:3.436267pt;}
.y26_c00357{bottom:3.436400pt;}
.y18_c00357{bottom:3.436533pt;}
.y1a_c00357{bottom:3.436667pt;}
.y2b_c00357{bottom:3.436800pt;}
.y1e_c00357{bottom:3.436933pt;}
.y20_c00357{bottom:3.437067pt;}
.y3f_c00357{bottom:4.292206pt;}
.y45_c00357{bottom:5.167778pt;}
.y4c_c00357{bottom:5.167912pt;}
.y44_c00357{bottom:23.201131pt;}
.y4b_c00357{bottom:23.201264pt;}
.y3e_c00357{bottom:25.772133pt;}
.y47_c00357{bottom:31.791714pt;}
.y3b_c00357{bottom:41.234400pt;}
.y43_c00357{bottom:41.234483pt;}
.y40_c00357{bottom:41.234533pt;}
.y4a_c00357{bottom:41.234617pt;}
.y46_c00357{bottom:49.825067pt;}
.y4d_c00357{bottom:50.880000pt;}
.y49_c00357{bottom:59.267969pt;}
.y42_c00357{bottom:59.281581pt;}
.y3c_c00357{bottom:62.710933pt;}
.y41_c00357{bottom:77.314933pt;}
.y48_c00357{bottom:77.315067pt;}
.y11_c00357{bottom:103.840000pt;}
.y10_c00357{bottom:116.160000pt;}
.y39_c00357{bottom:117.796000pt;}
.y38_c00357{bottom:134.977333pt;}
.y37_c00357{bottom:152.157333pt;}
.y36_c00357{bottom:169.338667pt;}
.y35_c00357{bottom:186.521333pt;}
.y34_c00357{bottom:203.701333pt;}
.y33_c00357{bottom:220.882667pt;}
.y32_c00357{bottom:238.064000pt;}
.y31_c00357{bottom:255.245333pt;}
.y2f_c00357{bottom:272.426667pt;}
.y2d_c00357{bottom:289.608000pt;}
.y2c_c00357{bottom:306.788000pt;}
.y2a_c00357{bottom:323.969333pt;}
.y28_c00357{bottom:341.152000pt;}
.y27_c00357{bottom:358.332000pt;}
.y25_c00357{bottom:375.513333pt;}
.y24_c00357{bottom:392.694667pt;}
.y23_c00357{bottom:409.876000pt;}
.y21_c00357{bottom:427.057333pt;}
.y1f_c00357{bottom:444.237333pt;}
.y1d_c00357{bottom:461.418667pt;}
.y1b_c00357{bottom:478.601333pt;}
.y19_c00357{bottom:495.781333pt;}
.y17_c00357{bottom:512.962667pt;}
.y15_c00357{bottom:530.144000pt;}
.y14_c00357{bottom:547.325333pt;}
.y12_c00357{bottom:564.506667pt;}
.y3a_c00357{bottom:581.688000pt;}
.y3d_c00357{bottom:673.606667pt;}
.yf_c00357{bottom:720.080000pt;}
.ye_c00357{bottom:738.480000pt;}
.yd_c00357{bottom:766.160000pt;}
.yc_c00357{bottom:793.760000pt;}
.yb_c00357{bottom:821.360000pt;}
.ya_c00357{bottom:848.960000pt;}
.y9_c00357{bottom:876.560000pt;}
.y8_c00357{bottom:904.160000pt;}
.y7_c00357{bottom:931.760000pt;}
.y6_c00357{bottom:959.360000pt;}
.y5_c00357{bottom:986.960000pt;}
.y4_c00357{bottom:1005.360000pt;}
.y3_c00357{bottom:1023.036000pt;}
.y2_c00357{bottom:1036.800000pt;}
.y1_c00357{bottom:1064.400000pt;}
.h7_c00357{height:16.321333pt;}
.h5_c00357{height:16.322667pt;}
.hb_c00357{height:42.093333pt;}
.h6_c00357{height:42.508259pt;}
.h9_c00357{height:45.342173pt;}
.h2_c00357{height:47.109375pt;}
.hc_c00357{height:53.843912pt;}
.h3_c00357{height:62.812500pt;}
.h4_c00357{height:64.500000pt;}
.h8_c00357{height:91.060000pt;}
.ha_c00357{height:134.012000pt;}
.h0_c00357{height:1122.560000pt;}
.h1_c00357{height:1122.666667pt;}
.w5_c00357{width:30.926667pt;}
.w4_c00357{width:75.596000pt;}
.wa_c00357{width:81.609333pt;}
.w8_c00357{width:83.328000pt;}
.w9_c00357{width:87.622667pt;}
.w6_c00357{width:124.561333pt;}
.w7_c00357{width:407.189333pt;}
.w3_c00357{width:565.254667pt;}
.w2_c00357{width:793.805333pt;}
.w0_c00357{width:793.840000pt;}
.w1_c00357{width:794.000000pt;}
.x0_c00357{left:0.000000pt;}
.x16_c00357{left:2.576800pt;}
.x13_c00357{left:4.296000pt;}
.x11_c00357{left:6.013200pt;}
.x9_c00357{left:9.449867pt;}
.x8_c00357{left:12.027067pt;}
.xf_c00357{left:15.462800pt;}
.xb_c00357{left:18.039867pt;}
.x14_c00357{left:26.631300pt;}
.x17_c00357{left:29.200478pt;}
.xd_c00357{left:32.643867pt;}
.x2_c00357{left:113.440000pt;}
.x3_c00357{left:118.720000pt;}
.x4_c00357{left:134.080000pt;}
.xc_c00357{left:146.084000pt;}
.x10_c00357{left:170.097428pt;}
.xe_c00357{left:271.505333pt;}
.x12_c00357{left:347.960000pt;}
.x1_c00357{left:396.960000pt;}
.x15_c00357{left:432.148000pt;}
.x18_c00357{left:520.629333pt;}
.xa_c00357{left:603.098667pt;}
.x6_c00357{left:618.960000pt;}
.x5_c00357{left:680.400000pt;}
.x7_c00357{left:872.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_c00358 {
    display:none;
  }
  .loading-indicator_c00358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00358 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00358 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00358" -> "#page-container .classname_c00358")
 */
.pf_c00358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00358 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00358 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00358 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00358 {overflow:visible;}
  }
}
.c_c00358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00358 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00358:after { /* webkit #35443 */
  content: '';
}
.t_c00358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00358 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00358 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00358 { /* info for Javascript */
  display:none;
}
.l_c00358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00358:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00358;src:url('chunks/assets/font_5ca8b2824deaba0f3b11ec6c.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_35f0c25ef4103ecdc25d4f3e.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_1d6529c03bd9260efbf059f3.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:0.921875;font-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_c00358{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00358{vertical-align:-3.870000px;}
.v0_c00358{vertical-align:0.000000px;}
.ls5_c00358{letter-spacing:-2.321688px;}
.lsb_c00358{letter-spacing:-1.567139px;}
.ls7_c00358{letter-spacing:-1.276928px;}
.lsa_c00358{letter-spacing:-0.754549px;}
.ls9_c00358{letter-spacing:-0.433381px;}
.lsf_c00358{letter-spacing:-0.406295px;}
.lse_c00358{letter-spacing:-0.232169px;}
.ls6_c00358{letter-spacing:-0.174127px;}
.ls4_c00358{letter-spacing:-0.120240px;}
.ls3_c00358{letter-spacing:-0.108000px;}
.ls2_c00358{letter-spacing:0.000000px;}
.lsc_c00358{letter-spacing:1.218886px;}
.lsd_c00358{letter-spacing:1.741266px;}
.ls8_c00358{letter-spacing:2.089519px;}
.ls1_c00358{letter-spacing:239.473919px;}
.ls0_c00358{letter-spacing:291.720097px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00358{word-spacing:-15.207056px;}
.ws0_c00358{word-spacing:-14.909760px;}
.ws18_c00358{word-spacing:-11.840609px;}
.ws49_c00358{word-spacing:-3.250363px;}
.ws48_c00358{word-spacing:-1.334971px;}
.ws46_c00358{word-spacing:-0.754549px;}
.ws42_c00358{word-spacing:0.000000px;}
.ws47_c00358{word-spacing:0.058042px;}
.ws44_c00358{word-spacing:0.162000px;}
.ws43_c00358{word-spacing:0.270000px;}
.ws45_c00358{word-spacing:0.433381px;}
.ws1_c00358{word-spacing:43.357523px;}
.ws17_c00358{word-spacing:210.870459px;}
.ws35_c00358{word-spacing:210.871060px;}
.ws30_c00358{word-spacing:218.609559px;}
.ws27_c00358{word-spacing:218.610160px;}
.wsb_c00358{word-spacing:221.872114px;}
.ws3_c00358{word-spacing:221.953373px;}
.ws1e_c00358{word-spacing:232.923349px;}
.ws11_c00358{word-spacing:233.561813px;}
.ws8_c00358{word-spacing:234.087159px;}
.ws15_c00358{word-spacing:234.087760px;}
.ws7_c00358{word-spacing:237.369381px;}
.ws26_c00358{word-spacing:237.390690px;}
.ws1a_c00358{word-spacing:237.391291px;}
.ws2e_c00358{word-spacing:237.452922px;}
.ws32_c00358{word-spacing:237.453523px;}
.wsf_c00358{word-spacing:241.342350px;}
.wse_c00358{word-spacing:244.531789px;}
.ws2d_c00358{word-spacing:248.420616px;}
.ws1c_c00358{word-spacing:252.868931px;}
.ws5_c00358{word-spacing:252.869531px;}
.ws2f_c00358{word-spacing:252.930562px;}
.wsc_c00358{word-spacing:256.140229px;}
.ws4_c00358{word-spacing:267.748669px;}
.ws40_c00358{word-spacing:286.113221px;}
.ws12_c00358{word-spacing:303.119585px;}
.wsd_c00358{word-spacing:306.503446px;}
.ws19_c00358{word-spacing:311.994238px;}
.ws36_c00358{word-spacing:319.713850px;}
.ws3e_c00358{word-spacing:323.602678px;}
.wsa_c00358{word-spacing:350.667756px;}
.ws34_c00358{word-spacing:357.336804px;}
.ws2c_c00358{word-spacing:357.360021px;}
.ws6_c00358{word-spacing:358.404781px;}
.ws3d_c00358{word-spacing:366.147610px;}
.ws2_c00358{word-spacing:366.165023px;}
.ws21_c00358{word-spacing:368.486711px;}
.ws13_c00358{word-spacing:370.019025px;}
.ws3a_c00358{word-spacing:371.046372px;}
.ws16_c00358{word-spacing:380.327320px;}
.ws37_c00358{word-spacing:380.507251px;}
.ws39_c00358{word-spacing:384.401882px;}
.ws31_c00358{word-spacing:386.694549px;}
.ws28_c00358{word-spacing:392.104082px;}
.ws24_c00358{word-spacing:394.588288px;}
.ws20_c00358{word-spacing:403.370073px;}
.ws23_c00358{word-spacing:404.844345px;}
.ws3c_c00358{word-spacing:410.956189px;}
.ws14_c00358{word-spacing:413.742214px;}
.ws41_c00358{word-spacing:415.344179px;}
.ws33_c00358{word-spacing:419.238811px;}
.ws2a_c00358{word-spacing:432.373760px;}
.ws2b_c00358{word-spacing:438.804836px;}
.ws29_c00358{word-spacing:439.396867px;}
.ws3f_c00358{word-spacing:444.446538px;}
.ws38_c00358{word-spacing:446.292280px;}
.ws25_c00358{word-spacing:446.309693px;}
.ws10_c00358{word-spacing:448.451450px;}
.ws3b_c00358{word-spacing:450.233345px;}
.ws22_c00358{word-spacing:456.374210px;}
.ws1b_c00358{word-spacing:457.389949px;}
.ws1f_c00358{word-spacing:475.951844px;}
.ws1d_c00358{word-spacing:500.538520px;}
._4_c00358{margin-left:-3.466633px;}
._5_c00358{margin-left:-2.058919px;}
._1_c00358{margin-left:-1.058400px;}
._0_c00358{width:1.220400px;}
._2_c00358{width:2.325978px;}
._3_c00358{width:3.357867px;}
._b_c00358{width:156.005323px;}
._9_c00358{width:168.783439px;}
._10_c00358{width:240.516531px;}
._7_c00358{width:250.974222px;}
._a_c00358{width:264.611111px;}
._6_c00358{width:281.613436px;}
._c_c00358{width:301.291256px;}
._8_c00358{width:364.443946px;}
._d_c00358{width:390.810753px;}
._f_c00358{width:405.013930px;}
._e_c00358{width:413.078824px;}
.fc1_c00358{color:transparent;}
.fc0_c00358{color:rgb(0,0,0);}
.fs0_c00358{font-size:54.000000px;}
.fs3_c00358{font-size:58.042200px;}
.fs2_c00358{font-size:60.120000px;}
.fs4_c00358{font-size:61.911600px;}
.fs1_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y15_c00358{bottom:3.868200px;}
.y2a_c00358{bottom:3.868350px;}
.y1f_c00358{bottom:3.868500px;}
.yb_c00358{bottom:3.868650px;}
.y18_c00358{bottom:3.868800px;}
.y9_c00358{bottom:3.868950px;}
.y32_c00358{bottom:3.869100px;}
.yf_c00358{bottom:3.869250px;}
.y3b_c00358{bottom:3.869400px;}
.y25_c00358{bottom:3.869550px;}
.yd_c00358{bottom:3.869700px;}
.y35_c00358{bottom:3.869850px;}
.y13_c00358{bottom:3.870000px;}
.y1a_c00358{bottom:3.870150px;}
.y2e_c00358{bottom:3.870300px;}
.y11_c00358{bottom:3.870450px;}
.y41_c00358{bottom:3.870600px;}
.y27_c00358{bottom:3.870750px;}
.y4d_c00358{bottom:57.240000px;}
.y7_c00358{bottom:124.470000px;}
.y6_c00358{bottom:138.240000px;}
.y4c_c00358{bottom:140.173500px;}
.y4b_c00358{bottom:159.522000px;}
.y4a_c00358{bottom:178.867500px;}
.y49_c00358{bottom:198.214500px;}
.y48_c00358{bottom:217.563000px;}
.y47_c00358{bottom:236.910000px;}
.y46_c00358{bottom:256.258500px;}
.y45_c00358{bottom:275.605500px;}
.y44_c00358{bottom:294.952500px;}
.y43_c00358{bottom:314.299500px;}
.y42_c00358{bottom:333.646500px;}
.y40_c00358{bottom:352.993500px;}
.y3f_c00358{bottom:372.342000px;}
.y3e_c00358{bottom:391.689000px;}
.y3d_c00358{bottom:411.037500px;}
.y3c_c00358{bottom:430.384500px;}
.y3a_c00358{bottom:449.731500px;}
.y39_c00358{bottom:469.078500px;}
.y38_c00358{bottom:488.425500px;}
.y37_c00358{bottom:507.774000px;}
.y36_c00358{bottom:527.121000px;}
.y34_c00358{bottom:546.468000px;}
.y33_c00358{bottom:565.816500px;}
.y31_c00358{bottom:585.163500px;}
.y30_c00358{bottom:604.510500px;}
.y2f_c00358{bottom:623.857500px;}
.y2d_c00358{bottom:643.204500px;}
.y2c_c00358{bottom:662.553000px;}
.y2b_c00358{bottom:681.900000px;}
.y29_c00358{bottom:701.248500px;}
.y28_c00358{bottom:720.595500px;}
.y26_c00358{bottom:739.941000px;}
.y24_c00358{bottom:759.289500px;}
.y23_c00358{bottom:778.636500px;}
.y22_c00358{bottom:797.985000px;}
.y21_c00358{bottom:817.332000px;}
.y20_c00358{bottom:836.679000px;}
.y1e_c00358{bottom:856.027500px;}
.y1d_c00358{bottom:875.373000px;}
.y1c_c00358{bottom:894.721500px;}
.y1b_c00358{bottom:914.068500px;}
.y19_c00358{bottom:933.415500px;}
.y17_c00358{bottom:952.764000px;}
.y16_c00358{bottom:972.111000px;}
.y14_c00358{bottom:991.459500px;}
.y12_c00358{bottom:1010.805000px;}
.y10_c00358{bottom:1030.152000px;}
.ye_c00358{bottom:1049.500500px;}
.yc_c00358{bottom:1068.847500px;}
.ya_c00358{bottom:1088.196000px;}
.y8_c00358{bottom:1107.543000px;}
.y5_c00358{bottom:1131.030000px;}
.y4_c00358{bottom:1150.920000px;}
.y3_c00358{bottom:1166.404500px;}
.y2_c00358{bottom:1181.970000px;}
.y1_c00358{bottom:1197.450000px;}
.h6_c00358{height:18.379500px;}
.h8_c00358{height:18.381000px;}
.h7_c00358{height:47.867810px;}
.h3_c00358{height:52.971680px;}
.h2_c00358{height:52.998047px;}
.h4_c00358{height:70.664062px;}
.h5_c00358{height:72.562500px;}
.h0_c00358{height:1262.880000px;}
.h1_c00358{height:1263.000000px;}
.w3_c00358{width:635.911500px;}
.w2_c00358{width:893.031000px;}
.w0_c00358{width:893.070000px;}
.w1_c00358{width:893.250000px;}
.x0_c00358{left:0.000000px;}
.x7_c00358{left:10.631100px;}
.x3_c00358{left:127.620000px;}
.x2_c00358{left:425.160000px;}
.x1_c00358{left:446.580000px;}
.x5_c00358{left:696.330000px;}
.x8_c00358{left:738.540000px;}
.x4_c00358{left:765.450000px;}
.x6_c00358{left:981.540000px;}
@media print{
.v1_c00358{vertical-align:-3.440000pt;}
.v0_c00358{vertical-align:0.000000pt;}
.ls5_c00358{letter-spacing:-2.063723pt;}
.lsb_c00358{letter-spacing:-1.393013pt;}
.ls7_c00358{letter-spacing:-1.135047pt;}
.lsa_c00358{letter-spacing:-0.670710pt;}
.ls9_c00358{letter-spacing:-0.385228pt;}
.lsf_c00358{letter-spacing:-0.361151pt;}
.lse_c00358{letter-spacing:-0.206372pt;}
.ls6_c00358{letter-spacing:-0.154779pt;}
.ls4_c00358{letter-spacing:-0.106880pt;}
.ls3_c00358{letter-spacing:-0.096000pt;}
.ls2_c00358{letter-spacing:0.000000pt;}
.lsc_c00358{letter-spacing:1.083454pt;}
.lsd_c00358{letter-spacing:1.547792pt;}
.ls8_c00358{letter-spacing:1.857350pt;}
.ls1_c00358{letter-spacing:212.865705pt;}
.ls0_c00358{letter-spacing:259.306753pt;}
.ws9_c00358{word-spacing:-13.517383pt;}
.ws0_c00358{word-spacing:-13.253120pt;}
.ws18_c00358{word-spacing:-10.524986pt;}
.ws49_c00358{word-spacing:-2.889212pt;}
.ws48_c00358{word-spacing:-1.186641pt;}
.ws46_c00358{word-spacing:-0.670710pt;}
.ws42_c00358{word-spacing:0.000000pt;}
.ws47_c00358{word-spacing:0.051593pt;}
.ws44_c00358{word-spacing:0.144000pt;}
.ws43_c00358{word-spacing:0.240000pt;}
.ws45_c00358{word-spacing:0.385228pt;}
.ws1_c00358{word-spacing:38.540021pt;}
.ws17_c00358{word-spacing:187.440408pt;}
.ws35_c00358{word-spacing:187.440942pt;}
.ws30_c00358{word-spacing:194.319608pt;}
.ws27_c00358{word-spacing:194.320142pt;}
.wsb_c00358{word-spacing:197.219657pt;}
.ws3_c00358{word-spacing:197.291887pt;}
.ws1e_c00358{word-spacing:207.042977pt;}
.ws11_c00358{word-spacing:207.610500pt;}
.ws8_c00358{word-spacing:208.077475pt;}
.ws15_c00358{word-spacing:208.078009pt;}
.ws7_c00358{word-spacing:210.995005pt;}
.ws26_c00358{word-spacing:211.013947pt;}
.ws1a_c00358{word-spacing:211.014481pt;}
.ws2e_c00358{word-spacing:211.069264pt;}
.ws32_c00358{word-spacing:211.069798pt;}
.wsf_c00358{word-spacing:214.526534pt;}
.wse_c00358{word-spacing:217.361590pt;}
.ws2d_c00358{word-spacing:220.818325pt;}
.ws1c_c00358{word-spacing:224.772383pt;}
.ws5_c00358{word-spacing:224.772917pt;}
.ws2f_c00358{word-spacing:224.827166pt;}
.wsc_c00358{word-spacing:227.680203pt;}
.ws4_c00358{word-spacing:237.998817pt;}
.ws40_c00358{word-spacing:254.322863pt;}
.ws12_c00358{word-spacing:269.439631pt;}
.wsd_c00358{word-spacing:272.447507pt;}
.ws19_c00358{word-spacing:277.328211pt;}
.ws36_c00358{word-spacing:284.190089pt;}
.ws3e_c00358{word-spacing:287.646825pt;}
.wsa_c00358{word-spacing:311.704672pt;}
.ws34_c00358{word-spacing:317.632715pt;}
.ws2c_c00358{word-spacing:317.653352pt;}
.ws6_c00358{word-spacing:318.582027pt;}
.ws3d_c00358{word-spacing:325.464542pt;}
.ws2_c00358{word-spacing:325.480020pt;}
.ws21_c00358{word-spacing:327.543743pt;}
.ws13_c00358{word-spacing:328.905800pt;}
.ws3a_c00358{word-spacing:329.818997pt;}
.ws16_c00358{word-spacing:338.068729pt;}
.ws37_c00358{word-spacing:338.228667pt;}
.ws39_c00358{word-spacing:341.690562pt;}
.ws31_c00358{word-spacing:343.728488pt;}
.ws28_c00358{word-spacing:348.536962pt;}
.ws24_c00358{word-spacing:350.745145pt;}
.ws20_c00358{word-spacing:358.551176pt;}
.ws23_c00358{word-spacing:359.861640pt;}
.ws3c_c00358{word-spacing:365.294390pt;}
.ws14_c00358{word-spacing:367.770857pt;}
.ws41_c00358{word-spacing:369.194826pt;}
.ws33_c00358{word-spacing:372.656721pt;}
.ws2a_c00358{word-spacing:384.332232pt;}
.ws2b_c00358{word-spacing:390.048743pt;}
.ws29_c00358{word-spacing:390.574993pt;}
.ws3f_c00358{word-spacing:395.063589pt;}
.ws38_c00358{word-spacing:396.704249pt;}
.ws25_c00358{word-spacing:396.719727pt;}
.ws10_c00358{word-spacing:398.623511pt;}
.ws3b_c00358{word-spacing:400.207418pt;}
.ws22_c00358{word-spacing:405.665965pt;}
.ws1b_c00358{word-spacing:406.568843pt;}
.ws1f_c00358{word-spacing:423.068306pt;}
.ws1d_c00358{word-spacing:444.923129pt;}
._4_c00358{margin-left:-3.081452pt;}
._5_c00358{margin-left:-1.830150pt;}
._1_c00358{margin-left:-0.940800pt;}
._0_c00358{width:1.084800pt;}
._2_c00358{width:2.067536pt;}
._3_c00358{width:2.984770pt;}
._b_c00358{width:138.671398pt;}
._9_c00358{width:150.029724pt;}
._10_c00358{width:213.792472pt;}
._7_c00358{width:223.088197pt;}
._a_c00358{width:235.209877pt;}
._6_c00358{width:250.323055pt;}
._c_c00358{width:267.814450pt;}
._8_c00358{width:323.950174pt;}
._d_c00358{width:347.387336pt;}
._f_c00358{width:360.012382pt;}
._e_c00358{width:367.181177pt;}
.fs0_c00358{font-size:48.000000pt;}
.fs3_c00358{font-size:51.593067pt;}
.fs2_c00358{font-size:53.440000pt;}
.fs4_c00358{font-size:55.032533pt;}
.fs1_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y15_c00358{bottom:3.438400pt;}
.y2a_c00358{bottom:3.438533pt;}
.y1f_c00358{bottom:3.438667pt;}
.yb_c00358{bottom:3.438800pt;}
.y18_c00358{bottom:3.438933pt;}
.y9_c00358{bottom:3.439067pt;}
.y32_c00358{bottom:3.439200pt;}
.yf_c00358{bottom:3.439333pt;}
.y3b_c00358{bottom:3.439467pt;}
.y25_c00358{bottom:3.439600pt;}
.yd_c00358{bottom:3.439733pt;}
.y35_c00358{bottom:3.439867pt;}
.y13_c00358{bottom:3.440000pt;}
.y1a_c00358{bottom:3.440133pt;}
.y2e_c00358{bottom:3.440267pt;}
.y11_c00358{bottom:3.440400pt;}
.y41_c00358{bottom:3.440533pt;}
.y27_c00358{bottom:3.440667pt;}
.y4d_c00358{bottom:50.880000pt;}
.y7_c00358{bottom:110.640000pt;}
.y6_c00358{bottom:122.880000pt;}
.y4c_c00358{bottom:124.598667pt;}
.y4b_c00358{bottom:141.797333pt;}
.y4a_c00358{bottom:158.993333pt;}
.y49_c00358{bottom:176.190667pt;}
.y48_c00358{bottom:193.389333pt;}
.y47_c00358{bottom:210.586667pt;}
.y46_c00358{bottom:227.785333pt;}
.y45_c00358{bottom:244.982667pt;}
.y44_c00358{bottom:262.180000pt;}
.y43_c00358{bottom:279.377333pt;}
.y42_c00358{bottom:296.574667pt;}
.y40_c00358{bottom:313.772000pt;}
.y3f_c00358{bottom:330.970667pt;}
.y3e_c00358{bottom:348.168000pt;}
.y3d_c00358{bottom:365.366667pt;}
.y3c_c00358{bottom:382.564000pt;}
.y3a_c00358{bottom:399.761333pt;}
.y39_c00358{bottom:416.958667pt;}
.y38_c00358{bottom:434.156000pt;}
.y37_c00358{bottom:451.354667pt;}
.y36_c00358{bottom:468.552000pt;}
.y34_c00358{bottom:485.749333pt;}
.y33_c00358{bottom:502.948000pt;}
.y31_c00358{bottom:520.145333pt;}
.y30_c00358{bottom:537.342667pt;}
.y2f_c00358{bottom:554.540000pt;}
.y2d_c00358{bottom:571.737333pt;}
.y2c_c00358{bottom:588.936000pt;}
.y2b_c00358{bottom:606.133333pt;}
.y29_c00358{bottom:623.332000pt;}
.y28_c00358{bottom:640.529333pt;}
.y26_c00358{bottom:657.725333pt;}
.y24_c00358{bottom:674.924000pt;}
.y23_c00358{bottom:692.121333pt;}
.y22_c00358{bottom:709.320000pt;}
.y21_c00358{bottom:726.517333pt;}
.y20_c00358{bottom:743.714667pt;}
.y1e_c00358{bottom:760.913333pt;}
.y1d_c00358{bottom:778.109333pt;}
.y1c_c00358{bottom:795.308000pt;}
.y1b_c00358{bottom:812.505333pt;}
.y19_c00358{bottom:829.702667pt;}
.y17_c00358{bottom:846.901333pt;}
.y16_c00358{bottom:864.098667pt;}
.y14_c00358{bottom:881.297333pt;}
.y12_c00358{bottom:898.493333pt;}
.y10_c00358{bottom:915.690667pt;}
.ye_c00358{bottom:932.889333pt;}
.yc_c00358{bottom:950.086667pt;}
.ya_c00358{bottom:967.285333pt;}
.y8_c00358{bottom:984.482667pt;}
.y5_c00358{bottom:1005.360000pt;}
.y4_c00358{bottom:1023.040000pt;}
.y3_c00358{bottom:1036.804000pt;}
.y2_c00358{bottom:1050.640000pt;}
.y1_c00358{bottom:1064.400000pt;}
.h6_c00358{height:16.337333pt;}
.h8_c00358{height:16.338667pt;}
.h7_c00358{height:42.549165pt;}
.h3_c00358{height:47.085938pt;}
.h2_c00358{height:47.109375pt;}
.h4_c00358{height:62.812500pt;}
.h5_c00358{height:64.500000pt;}
.h0_c00358{height:1122.560000pt;}
.h1_c00358{height:1122.666667pt;}
.w3_c00358{width:565.254667pt;}
.w2_c00358{width:793.805333pt;}
.w0_c00358{width:793.840000pt;}
.w1_c00358{width:794.000000pt;}
.x0_c00358{left:0.000000pt;}
.x7_c00358{left:9.449867pt;}
.x3_c00358{left:113.440000pt;}
.x2_c00358{left:377.920000pt;}
.x1_c00358{left:396.960000pt;}
.x5_c00358{left:618.960000pt;}
.x8_c00358{left:656.480000pt;}
.x4_c00358{left:680.400000pt;}
.x6_c00358{left:872.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_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_cc0f617ed8f622044a915bd6.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_8fe6e8fe50f725f74a1914d7.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_6b56f63d3bc7894ddde82759.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_e32eff90563afc37d740fe51.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);}
.v1_c00359{vertical-align:-61.938000px;}
.v2_c00359{vertical-align:-3.864600px;}
.v0_c00359{vertical-align:0.000000px;}
.v3_c00359{vertical-align:3.882074px;}
.ls6_c00359{letter-spacing:-2.317656px;}
.ls12_c00359{letter-spacing:-1.908200px;}
.lse_c00359{letter-spacing:-1.622359px;}
.ls7_c00359{letter-spacing:-1.564418px;}
.lsb_c00359{letter-spacing:-1.274711px;}
.lsd_c00359{letter-spacing:-0.753238px;}
.ls9_c00359{letter-spacing:-0.432629px;}
.ls11_c00359{letter-spacing:-0.231766px;}
.lsa_c00359{letter-spacing:-0.173824px;}
.ls3_c00359{letter-spacing:-0.072000px;}
.ls2_c00359{letter-spacing:0.000000px;}
.ls5_c00359{letter-spacing:0.072000px;}
.ls4_c00359{letter-spacing:0.144000px;}
.lsf_c00359{letter-spacing:0.173824px;}
.ls14_c00359{letter-spacing:0.903884px;}
.ls10_c00359{letter-spacing:1.216769px;}
.lsc_c00359{letter-spacing:1.738242px;}
.ls13_c00359{letter-spacing:1.958416px;}
.ls8_c00359{letter-spacing:2.085890px;}
.ls1_c00359{letter-spacing:291.213476px;}
.ls0_c00359{letter-spacing:319.518000px;}
.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;}
}
.ws5_c00359{word-spacing:-15.180647px;}
.ws49_c00359{word-spacing:-2.912516px;}
.ws4a_c00359{word-spacing:-1.857985px;}
.ws45_c00359{word-spacing:-1.332652px;}
.ws47_c00359{word-spacing:-1.274711px;}
.ws46_c00359{word-spacing:-0.753238px;}
.ws3b_c00359{word-spacing:-0.162000px;}
.ws3e_c00359{word-spacing:-0.144000px;}
.ws3f_c00359{word-spacing:-0.072000px;}
.ws3a_c00359{word-spacing:0.000000px;}
.ws43_c00359{word-spacing:0.057941px;}
.ws44_c00359{word-spacing:0.432629px;}
.ws48_c00359{word-spacing:0.954100px;}
.ws42_c00359{word-spacing:2.160000px;}
.ws3c_c00359{word-spacing:4.680000px;}
.ws3d_c00359{word-spacing:4.752000px;}
.ws41_c00359{word-spacing:8.640000px;}
.ws40_c00359{word-spacing:13.608000px;}
.ws28_c00359{word-spacing:31.636004px;}
.ws0_c00359{word-spacing:43.282226px;}
.ws21_c00359{word-spacing:218.230330px;}
.wsc_c00359{word-spacing:221.486796px;}
.ws7_c00359{word-spacing:221.567914px;}
.ws13_c00359{word-spacing:225.449987px;}
.ws11_c00359{word-spacing:233.156194px;}
.wsa_c00359{word-spacing:233.681081px;}
.ws4_c00359{word-spacing:233.681680px;}
.ws25_c00359{word-spacing:236.400912px;}
.ws1_c00359{word-spacing:236.957149px;}
.ws20_c00359{word-spacing:236.979021px;}
.ws35_c00359{word-spacing:237.016770px;}
.ws26_c00359{word-spacing:237.040546px;}
.ws16_c00359{word-spacing:237.041145px;}
.ws33_c00359{word-spacing:237.078893px;}
.ws37_c00359{word-spacing:237.079493px;}
.ws15_c00359{word-spacing:247.989192px;}
.ws3_c00359{word-spacing:252.429781px;}
.ws8_c00359{word-spacing:252.430381px;}
.ws2a_c00359{word-spacing:252.468129px;}
.ws1d_c00359{word-spacing:252.491306px;}
.ws2e_c00359{word-spacing:252.529654px;}
.ws39_c00359{word-spacing:252.530253px;}
.wsd_c00359{word-spacing:255.695398px;}
.wsf_c00359{word-spacing:256.193694px;}
.ws2_c00359{word-spacing:267.283678px;}
.ws10_c00359{word-spacing:275.551916px;}
.ws18_c00359{word-spacing:310.757111px;}
.ws2f_c00359{word-spacing:316.006601px;}
.ws22_c00359{word-spacing:324.199515px;}
.ws36_c00359{word-spacing:329.147711px;}
.ws12_c00359{word-spacing:329.199858px;}
.ws29_c00359{word-spacing:330.804835px;}
.ws19_c00359{word-spacing:333.510698px;}
.ws34_c00359{word-spacing:338.470482px;}
.ws1c_c00359{word-spacing:352.608184px;}
.ws32_c00359{word-spacing:370.581606px;}
.wsb_c00359{word-spacing:375.958568px;}
.ws1b_c00359{word-spacing:377.117396px;}
.ws1a_c00359{word-spacing:377.157955px;}
.ws9_c00359{word-spacing:380.964705px;}
.ws17_c00359{word-spacing:391.434716px;}
.wse_c00359{word-spacing:395.316790px;}
.ws1e_c00359{word-spacing:397.831447px;}
.ws1f_c00359{word-spacing:411.864854px;}
.ws38_c00359{word-spacing:414.617070px;}
.ws6_c00359{word-spacing:419.611619px;}
.ws23_c00359{word-spacing:422.491306px;}
.ws2d_c00359{word-spacing:427.352590px;}
.ws27_c00359{word-spacing:429.867247px;}
.ws2c_c00359{word-spacing:430.122189px;}
.ws2b_c00359{word-spacing:448.257847px;}
.ws14_c00359{word-spacing:453.292955px;}
.ws31_c00359{word-spacing:455.801817px;}
.ws24_c00359{word-spacing:458.275915px;}
.ws30_c00359{word-spacing:468.745926px;}
._c_c00359{margin-left:-5.624170px;}
._d_c00359{margin-left:-4.542452px;}
._6_c00359{margin-left:-3.163781px;}
._7_c00359{margin-left:-2.092226px;}
._2_c00359{margin-left:-1.008000px;}
._1_c00359{width:1.015200px;}
._4_c00359{width:2.947992px;}
._0_c00359{width:4.680000px;}
._b_c00359{width:6.109520px;}
._3_c00359{width:13.644000px;}
._8_c00359{width:153.134949px;}
._a_c00359{width:173.262710px;}
._5_c00359{width:208.486863px;}
._9_c00359{width:301.053693px;}
.fc0_c00359{color:rgb(0,0,0);}
.fs4_c00359{font-size:50.215800px;}
.fs0_c00359{font-size:54.000000px;}
.fs2_c00359{font-size:57.941400px;}
.fs3_c00359{font-size:61.804200px;}
.fs1_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y1e_c00359{bottom:3.861450px;}
.y21_c00359{bottom:3.861750px;}
.y13_c00359{bottom:3.861900px;}
.y30_c00359{bottom:3.862050px;}
.y17_c00359{bottom:3.862200px;}
.y26_c00359{bottom:3.862350px;}
.y1a_c00359{bottom:3.862500px;}
.y1c_c00359{bottom:3.862650px;}
.yf_c00359{bottom:3.862800px;}
.y2b_c00359{bottom:3.862950px;}
.y11_c00359{bottom:3.863100px;}
.y2e_c00359{bottom:3.863250px;}
.y15_c00359{bottom:3.863400px;}
.y32_c00359{bottom:3.863550px;}
.y24_c00359{bottom:3.863700px;}
.y28_c00359{bottom:3.864150px;}
.y44_c00359{bottom:4.827900px;}
.y46_c00359{bottom:4.828050px;}
.y48_c00359{bottom:4.828350px;}
.y42_c00359{bottom:4.829100px;}
.y49_c00359{bottom:57.240000px;}
.yd_c00359{bottom:127.440000px;}
.yc_c00359{bottom:158.490000px;}
.yb_c00359{bottom:189.540000px;}
.ya_c00359{bottom:220.590000px;}
.y9_c00359{bottom:251.640000px;}
.y8_c00359{bottom:282.510000px;}
.y7_c00359{bottom:313.560000px;}
.y6_c00359{bottom:344.610000px;}
.y5_c00359{bottom:371.700000px;}
.y47_c00359{bottom:373.651500px;}
.y45_c00359{bottom:392.965500px;}
.y43_c00359{bottom:412.279500px;}
.y41_c00359{bottom:431.592000px;}
.y40_c00359{bottom:450.906000px;}
.y3f_c00359{bottom:470.220000px;}
.y3e_c00359{bottom:489.534000px;}
.y3d_c00359{bottom:508.848000px;}
.y3c_c00359{bottom:528.162000px;}
.y3b_c00359{bottom:547.476000px;}
.y3a_c00359{bottom:566.790000px;}
.y39_c00359{bottom:586.104000px;}
.y38_c00359{bottom:605.416500px;}
.y37_c00359{bottom:624.732000px;}
.y36_c00359{bottom:644.044500px;}
.y35_c00359{bottom:663.358500px;}
.y34_c00359{bottom:682.672500px;}
.y33_c00359{bottom:701.986500px;}
.y31_c00359{bottom:721.299000px;}
.y2f_c00359{bottom:740.614500px;}
.y2d_c00359{bottom:759.927000px;}
.y2c_c00359{bottom:779.241000px;}
.y2a_c00359{bottom:798.555000px;}
.y29_c00359{bottom:817.869000px;}
.y27_c00359{bottom:837.181500px;}
.y25_c00359{bottom:856.497000px;}
.y23_c00359{bottom:875.809500px;}
.y22_c00359{bottom:895.125000px;}
.y20_c00359{bottom:914.439000px;}
.y1f_c00359{bottom:933.751500px;}
.y1d_c00359{bottom:953.067000px;}
.y1b_c00359{bottom:972.379500px;}
.y19_c00359{bottom:991.693500px;}
.y18_c00359{bottom:1011.007500px;}
.y16_c00359{bottom:1030.321500px;}
.y14_c00359{bottom:1049.634000px;}
.y12_c00359{bottom:1068.949500px;}
.y10_c00359{bottom:1088.262000px;}
.ye_c00359{bottom:1107.576000px;}
.y4_c00359{bottom:1131.030000px;}
.y3_c00359{bottom:1150.915500px;}
.y2_c00359{bottom:1166.400000px;}
.y1_c00359{bottom:1197.450000px;}
.h5_c00359{height:18.348000px;}
.h7_c00359{height:18.349500px;}
.h6_c00359{height:47.784680px;}
.ha_c00359{height:49.284062px;}
.h9_c00359{height:50.608111px;}
.h8_c00359{height:51.666754px;}
.h2_c00359{height:52.998047px;}
.h3_c00359{height:70.664062px;}
.h4_c00359{height:72.562500px;}
.h0_c00359{height:1262.880000px;}
.h1_c00359{height:1263.000000px;}
.w3_c00359{width:599.187000px;}
.w2_c00359{width:635.911500px;}
.w0_c00359{width:893.070000px;}
.w1_c00359{width:893.250000px;}
.x0_c00359{left:0.000000px;}
.x7_c00359{left:1.932750px;}
.x5_c00359{left:6.765450px;}
.x4_c00359{left:10.631100px;}
.x2_c00359{left:127.620000px;}
.x6_c00359{left:164.344500px;}
.x1_c00359{left:446.580000px;}
.x3_c00359{left:765.450000px;}
@media print{
.v1_c00359{vertical-align:-55.056000pt;}
.v2_c00359{vertical-align:-3.435200pt;}
.v0_c00359{vertical-align:0.000000pt;}
.v3_c00359{vertical-align:3.450732pt;}
.ls6_c00359{letter-spacing:-2.060139pt;}
.ls12_c00359{letter-spacing:-1.696178pt;}
.lse_c00359{letter-spacing:-1.442097pt;}
.ls7_c00359{letter-spacing:-1.390594pt;}
.lsb_c00359{letter-spacing:-1.133076pt;}
.lsd_c00359{letter-spacing:-0.669545pt;}
.ls9_c00359{letter-spacing:-0.384559pt;}
.ls11_c00359{letter-spacing:-0.206014pt;}
.lsa_c00359{letter-spacing:-0.154510pt;}
.ls3_c00359{letter-spacing:-0.064000pt;}
.ls2_c00359{letter-spacing:0.000000pt;}
.ls5_c00359{letter-spacing:0.064000pt;}
.ls4_c00359{letter-spacing:0.128000pt;}
.lsf_c00359{letter-spacing:0.154510pt;}
.ls14_c00359{letter-spacing:0.803453pt;}
.ls10_c00359{letter-spacing:1.081573pt;}
.lsc_c00359{letter-spacing:1.545104pt;}
.ls13_c00359{letter-spacing:1.740814pt;}
.ls8_c00359{letter-spacing:1.854125pt;}
.ls1_c00359{letter-spacing:258.856423pt;}
.ls0_c00359{letter-spacing:284.016000pt;}
.ws5_c00359{word-spacing:-13.493908pt;}
.ws49_c00359{word-spacing:-2.588903pt;}
.ws4a_c00359{word-spacing:-1.651542pt;}
.ws45_c00359{word-spacing:-1.184580pt;}
.ws47_c00359{word-spacing:-1.133076pt;}
.ws46_c00359{word-spacing:-0.669545pt;}
.ws3b_c00359{word-spacing:-0.144000pt;}
.ws3e_c00359{word-spacing:-0.128000pt;}
.ws3f_c00359{word-spacing:-0.064000pt;}
.ws3a_c00359{word-spacing:0.000000pt;}
.ws43_c00359{word-spacing:0.051503pt;}
.ws44_c00359{word-spacing:0.384559pt;}
.ws48_c00359{word-spacing:0.848089pt;}
.ws42_c00359{word-spacing:1.920000pt;}
.ws3c_c00359{word-spacing:4.160000pt;}
.ws3d_c00359{word-spacing:4.224000pt;}
.ws41_c00359{word-spacing:7.680000pt;}
.ws40_c00359{word-spacing:12.096000pt;}
.ws28_c00359{word-spacing:28.120893pt;}
.ws0_c00359{word-spacing:38.473090pt;}
.ws21_c00359{word-spacing:193.982516pt;}
.wsc_c00359{word-spacing:196.877152pt;}
.ws7_c00359{word-spacing:196.949257pt;}
.ws13_c00359{word-spacing:200.399989pt;}
.ws11_c00359{word-spacing:207.249950pt;}
.wsa_c00359{word-spacing:207.716516pt;}
.ws4_c00359{word-spacing:207.717049pt;}
.ws25_c00359{word-spacing:210.134144pt;}
.ws1_c00359{word-spacing:210.628577pt;}
.ws20_c00359{word-spacing:210.648019pt;}
.ws35_c00359{word-spacing:210.681573pt;}
.ws26_c00359{word-spacing:210.702707pt;}
.ws16_c00359{word-spacing:210.703240pt;}
.ws33_c00359{word-spacing:210.736794pt;}
.ws37_c00359{word-spacing:210.737327pt;}
.ws15_c00359{word-spacing:220.434837pt;}
.ws3_c00359{word-spacing:224.382028pt;}
.ws8_c00359{word-spacing:224.382561pt;}
.ws2a_c00359{word-spacing:224.416115pt;}
.ws1d_c00359{word-spacing:224.436716pt;}
.ws2e_c00359{word-spacing:224.470803pt;}
.ws39_c00359{word-spacing:224.471336pt;}
.wsd_c00359{word-spacing:227.284798pt;}
.wsf_c00359{word-spacing:227.727728pt;}
.ws2_c00359{word-spacing:237.585492pt;}
.ws10_c00359{word-spacing:244.935036pt;}
.ws18_c00359{word-spacing:276.228543pt;}
.ws2f_c00359{word-spacing:280.894757pt;}
.ws22_c00359{word-spacing:288.177347pt;}
.ws36_c00359{word-spacing:292.575743pt;}
.ws12_c00359{word-spacing:292.622096pt;}
.ws29_c00359{word-spacing:294.048742pt;}
.ws19_c00359{word-spacing:296.453954pt;}
.ws34_c00359{word-spacing:300.862651pt;}
.ws1c_c00359{word-spacing:313.429497pt;}
.ws32_c00359{word-spacing:329.405872pt;}
.wsb_c00359{word-spacing:334.185394pt;}
.ws1b_c00359{word-spacing:335.215463pt;}
.ws1a_c00359{word-spacing:335.251516pt;}
.ws9_c00359{word-spacing:338.635293pt;}
.ws17_c00359{word-spacing:347.941970pt;}
.wse_c00359{word-spacing:351.392702pt;}
.ws1e_c00359{word-spacing:353.627952pt;}
.ws1f_c00359{word-spacing:366.102092pt;}
.ws38_c00359{word-spacing:368.548507pt;}
.ws6_c00359{word-spacing:372.988106pt;}
.ws23_c00359{word-spacing:375.547828pt;}
.ws2d_c00359{word-spacing:379.868969pt;}
.ws27_c00359{word-spacing:382.104219pt;}
.ws2c_c00359{word-spacing:382.330834pt;}
.ws2b_c00359{word-spacing:398.451420pt;}
.ws14_c00359{word-spacing:402.927071pt;}
.ws31_c00359{word-spacing:405.157171pt;}
.ws24_c00359{word-spacing:407.356369pt;}
.ws30_c00359{word-spacing:416.663045pt;}
._c_c00359{margin-left:-4.999262pt;}
._d_c00359{margin-left:-4.037735pt;}
._6_c00359{margin-left:-2.812250pt;}
._7_c00359{margin-left:-1.859756pt;}
._2_c00359{margin-left:-0.896000pt;}
._1_c00359{width:0.902400pt;}
._4_c00359{width:2.620437pt;}
._0_c00359{width:4.160000pt;}
._b_c00359{width:5.430685pt;}
._3_c00359{width:12.128000pt;}
._8_c00359{width:136.119955pt;}
._a_c00359{width:154.011297pt;}
._5_c00359{width:185.321656pt;}
._9_c00359{width:267.603282pt;}
.fs4_c00359{font-size:44.636267pt;}
.fs0_c00359{font-size:48.000000pt;}
.fs2_c00359{font-size:51.503467pt;}
.fs3_c00359{font-size:54.937067pt;}
.fs1_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y1e_c00359{bottom:3.432400pt;}
.y21_c00359{bottom:3.432667pt;}
.y13_c00359{bottom:3.432800pt;}
.y30_c00359{bottom:3.432933pt;}
.y17_c00359{bottom:3.433067pt;}
.y26_c00359{bottom:3.433200pt;}
.y1a_c00359{bottom:3.433333pt;}
.y1c_c00359{bottom:3.433467pt;}
.yf_c00359{bottom:3.433600pt;}
.y2b_c00359{bottom:3.433733pt;}
.y11_c00359{bottom:3.433867pt;}
.y2e_c00359{bottom:3.434000pt;}
.y15_c00359{bottom:3.434133pt;}
.y32_c00359{bottom:3.434267pt;}
.y24_c00359{bottom:3.434400pt;}
.y28_c00359{bottom:3.434800pt;}
.y44_c00359{bottom:4.291467pt;}
.y46_c00359{bottom:4.291600pt;}
.y48_c00359{bottom:4.291867pt;}
.y42_c00359{bottom:4.292533pt;}
.y49_c00359{bottom:50.880000pt;}
.yd_c00359{bottom:113.280000pt;}
.yc_c00359{bottom:140.880000pt;}
.yb_c00359{bottom:168.480000pt;}
.ya_c00359{bottom:196.080000pt;}
.y9_c00359{bottom:223.680000pt;}
.y8_c00359{bottom:251.120000pt;}
.y7_c00359{bottom:278.720000pt;}
.y6_c00359{bottom:306.320000pt;}
.y5_c00359{bottom:330.400000pt;}
.y47_c00359{bottom:332.134667pt;}
.y45_c00359{bottom:349.302667pt;}
.y43_c00359{bottom:366.470667pt;}
.y41_c00359{bottom:383.637333pt;}
.y40_c00359{bottom:400.805333pt;}
.y3f_c00359{bottom:417.973333pt;}
.y3e_c00359{bottom:435.141333pt;}
.y3d_c00359{bottom:452.309333pt;}
.y3c_c00359{bottom:469.477333pt;}
.y3b_c00359{bottom:486.645333pt;}
.y3a_c00359{bottom:503.813333pt;}
.y39_c00359{bottom:520.981333pt;}
.y38_c00359{bottom:538.148000pt;}
.y37_c00359{bottom:555.317333pt;}
.y36_c00359{bottom:572.484000pt;}
.y35_c00359{bottom:589.652000pt;}
.y34_c00359{bottom:606.820000pt;}
.y33_c00359{bottom:623.988000pt;}
.y31_c00359{bottom:641.154667pt;}
.y2f_c00359{bottom:658.324000pt;}
.y2d_c00359{bottom:675.490667pt;}
.y2c_c00359{bottom:692.658667pt;}
.y2a_c00359{bottom:709.826667pt;}
.y29_c00359{bottom:726.994667pt;}
.y27_c00359{bottom:744.161333pt;}
.y25_c00359{bottom:761.330667pt;}
.y23_c00359{bottom:778.497333pt;}
.y22_c00359{bottom:795.666667pt;}
.y20_c00359{bottom:812.834667pt;}
.y1f_c00359{bottom:830.001333pt;}
.y1d_c00359{bottom:847.170667pt;}
.y1b_c00359{bottom:864.337333pt;}
.y19_c00359{bottom:881.505333pt;}
.y18_c00359{bottom:898.673333pt;}
.y16_c00359{bottom:915.841333pt;}
.y14_c00359{bottom:933.008000pt;}
.y12_c00359{bottom:950.177333pt;}
.y10_c00359{bottom:967.344000pt;}
.ye_c00359{bottom:984.512000pt;}
.y4_c00359{bottom:1005.360000pt;}
.y3_c00359{bottom:1023.036000pt;}
.y2_c00359{bottom:1036.800000pt;}
.y1_c00359{bottom:1064.400000pt;}
.h5_c00359{height:16.309333pt;}
.h7_c00359{height:16.310667pt;}
.h6_c00359{height:42.475271pt;}
.ha_c00359{height:43.808055pt;}
.h9_c00359{height:44.984987pt;}
.h8_c00359{height:45.926003pt;}
.h2_c00359{height:47.109375pt;}
.h3_c00359{height:62.812500pt;}
.h4_c00359{height:64.500000pt;}
.h0_c00359{height:1122.560000pt;}
.h1_c00359{height:1122.666667pt;}
.w3_c00359{width:532.610667pt;}
.w2_c00359{width:565.254667pt;}
.w0_c00359{width:793.840000pt;}
.w1_c00359{width:794.000000pt;}
.x0_c00359{left:0.000000pt;}
.x7_c00359{left:1.718000pt;}
.x5_c00359{left:6.013733pt;}
.x4_c00359{left:9.449867pt;}
.x2_c00359{left:113.440000pt;}
.x6_c00359{left:146.084000pt;}
.x1_c00359{left:396.960000pt;}
.x3_c00359{left:680.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_c00360 {
    display:none;
  }
  .loading-indicator_c00360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00360 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00360 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00360" -> "#page-container .classname_c00360")
 */
.pf_c00360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00360 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00360 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00360 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00360 {overflow:visible;}
  }
}
.c_c00360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00360 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00360:after { /* webkit #35443 */
  content: '';
}
.t_c00360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00360 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00360 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00360 { /* info for Javascript */
  display:none;
}
.l_c00360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00360;src:url('chunks/assets/font_5515d556fab922afe3aaf15c.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_38c4b476095aed0e14b2540a.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00360;src:url('chunks/assets/font_8298a03d9618b9423ec60871.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00360;src:url('chunks/assets/font_6902433856b97c36bdfb6d5c.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00360{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00360{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.m1_c00360{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.v1_c00360{vertical-align:27.000000px;}
.lsf_c00360{letter-spacing:-2.316240px;}
.ls12_c00360{letter-spacing:-1.563462px;}
.ls17_c00360{letter-spacing:-1.482394px;}
.ls11_c00360{letter-spacing:-1.273932px;}
.ls1a_c00360{letter-spacing:-0.733476px;}
.ls10_c00360{letter-spacing:-0.432365px;}
.lsa_c00360{letter-spacing:-0.360000px;}
.ls8_c00360{letter-spacing:-0.288000px;}
.ls15_c00360{letter-spacing:-0.185299px;}
.lsd_c00360{letter-spacing:-0.180360px;}
.ls13_c00360{letter-spacing:-0.173718px;}
.ls7_c00360{letter-spacing:-0.144000px;}
.lsc_c00360{letter-spacing:-0.120240px;}
.ls6_c00360{letter-spacing:-0.108000px;}
.lsb_c00360{letter-spacing:-0.072000px;}
.ls18_c00360{letter-spacing:-0.061766px;}
.ls5_c00360{letter-spacing:0.000000px;}
.ls1_c00360{letter-spacing:0.072000px;}
.ls9_c00360{letter-spacing:0.144000px;}
.ls2_c00360{letter-spacing:0.180000px;}
.ls16_c00360{letter-spacing:0.247066px;}
.ls4_c00360{letter-spacing:1.216026px;}
.ls14_c00360{letter-spacing:1.544160px;}
.ls19_c00360{letter-spacing:1.791226px;}
.lse_c00360{letter-spacing:2.084616px;}
.ls0_c00360{letter-spacing:19.080000px;}
.ls3_c00360{letter-spacing:67.170960px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:-17.856000px;}
.ws1_c00360{word-spacing:-17.640000px;}
.ws17_c00360{word-spacing:-15.843082px;}
.ws15_c00360{word-spacing:-15.750432px;}
.ws7_c00360{word-spacing:-15.171372px;}
.ws2_c00360{word-spacing:-14.909760px;}
.ws3_c00360{word-spacing:-14.849640px;}
.ws16_c00360{word-spacing:-14.206272px;}
.ws14_c00360{word-spacing:-13.897440px;}
.ws12_c00360{word-spacing:-13.773907px;}
.ws13_c00360{word-spacing:-12.476813px;}
.wsb_c00360{word-spacing:-11.812824px;}
.ws35_c00360{word-spacing:-1.544160px;}
.ws2d_c00360{word-spacing:-0.432000px;}
.ws3a_c00360{word-spacing:-0.366738px;}
.ws34_c00360{word-spacing:-0.231624px;}
.ws29_c00360{word-spacing:-0.144000px;}
.ws2c_c00360{word-spacing:-0.072000px;}
.ws36_c00360{word-spacing:-0.061766px;}
.ws18_c00360{word-spacing:0.000000px;}
.ws32_c00360{word-spacing:0.072000px;}
.ws1a_c00360{word-spacing:0.162000px;}
.ws39_c00360{word-spacing:0.185299px;}
.ws19_c00360{word-spacing:0.270000px;}
.ws33_c00360{word-spacing:0.432365px;}
.ws1f_c00360{word-spacing:1.080000px;}
.ws38_c00360{word-spacing:1.235328px;}
.ws1d_c00360{word-spacing:1.440000px;}
.ws37_c00360{word-spacing:1.667693px;}
.ws2b_c00360{word-spacing:2.448000px;}
.ws28_c00360{word-spacing:2.520000px;}
.ws27_c00360{word-spacing:2.808000px;}
.ws1b_c00360{word-spacing:4.248000px;}
.ws2a_c00360{word-spacing:4.608000px;}
.ws25_c00360{word-spacing:4.968000px;}
.ws22_c00360{word-spacing:6.480000px;}
.ws1e_c00360{word-spacing:8.640000px;}
.ws2e_c00360{word-spacing:9.648000px;}
.ws2f_c00360{word-spacing:11.880000px;}
.ws26_c00360{word-spacing:12.888000px;}
.ws1c_c00360{word-spacing:12.960000px;}
.ws31_c00360{word-spacing:13.968000px;}
.ws21_c00360{word-spacing:15.480000px;}
.ws20_c00360{word-spacing:16.848000px;}
.ws23_c00360{word-spacing:19.008000px;}
.ws24_c00360{word-spacing:19.368000px;}
.ws30_c00360{word-spacing:19.440000px;}
.ws9_c00360{word-spacing:217.610748px;}
.wse_c00360{word-spacing:221.351476px;}
.ws11_c00360{word-spacing:228.497076px;}
.ws5_c00360{word-spacing:232.932676px;}
.wsa_c00360{word-spacing:243.957978px;}
.wsf_c00360{word-spacing:251.659476px;}
.ws6_c00360{word-spacing:267.120378px;}
.wsc_c00360{word-spacing:302.408294px;}
.wsd_c00360{word-spacing:361.426090px;}
.ws10_c00360{word-spacing:368.096861px;}
.ws8_c00360{word-spacing:411.306318px;}
.ws4_c00360{word-spacing:435.823718px;}
._8_c00360{margin-left:-3.982640px;}
._5_c00360{margin-left:-2.763396px;}
._1_c00360{margin-left:-1.058400px;}
._0_c00360{width:1.220400px;}
._6_c00360{width:2.717208px;}
._2_c00360{width:3.888000px;}
._3_c00360{width:5.112000px;}
._4_c00360{width:19.972800px;}
._7_c00360{width:252.167508px;}
.fc1_c00360{color:transparent;}
.fc0_c00360{color:rgb(0,0,0);}
.fs2_c00360{font-size:47.880000px;}
.fs0_c00360{font-size:54.000000px;}
.fs4_c00360{font-size:57.906000px;}
.fs3_c00360{font-size:60.120000px;}
.fs5_c00360{font-size:61.766400px;}
.fs1_c00360{font-size:72.000000px;}
.fs6_c00360{font-size:73.347600px;}
.y0_c00360{bottom:0.000000px;}
.y27_c00360{bottom:2.893950px;}
.y22_c00360{bottom:2.895300px;}
.y2a_c00360{bottom:2.895450px;}
.y33_c00360{bottom:2.926033px;}
.y26_c00360{bottom:3.859050px;}
.y21_c00360{bottom:3.860400px;}
.y29_c00360{bottom:3.860550px;}
.y38_c00360{bottom:5.786140px;}
.y32_c00360{bottom:23.185412px;}
.y37_c00360{bottom:29.917500px;}
.y2e_c00360{bottom:33.786071px;}
.y34_c00360{bottom:43.429350px;}
.y31_c00360{bottom:43.444792px;}
.y2d_c00360{bottom:54.045450px;}
.y39_c00360{bottom:57.240000px;}
.y30_c00360{bottom:63.704171px;}
.y35_c00360{bottom:68.521950px;}
.y2f_c00360{bottom:83.963550px;}
.y1f_c00360{bottom:123.300000px;}
.y1e_c00360{bottom:137.070000px;}
.y2b_c00360{bottom:139.008000px;}
.y28_c00360{bottom:158.310000px;}
.y25_c00360{bottom:177.613500px;}
.y24_c00360{bottom:196.914000px;}
.y23_c00360{bottom:216.216000px;}
.y20_c00360{bottom:235.518000px;}
.y2c_c00360{bottom:254.820000px;}
.y36_c00360{bottom:353.260500px;}
.y1d_c00360{bottom:406.440000px;}
.y1c_c00360{bottom:427.140000px;}
.y1b_c00360{bottom:458.370000px;}
.y1a_c00360{bottom:489.420000px;}
.y19_c00360{bottom:520.470000px;}
.y18_c00360{bottom:551.520000px;}
.y17_c00360{bottom:582.570000px;}
.y16_c00360{bottom:613.620000px;}
.y15_c00360{bottom:644.670000px;}
.y14_c00360{bottom:675.720000px;}
.y13_c00360{bottom:706.770000px;}
.y12_c00360{bottom:737.820000px;}
.y11_c00360{bottom:768.870000px;}
.y10_c00360{bottom:799.920000px;}
.yf_c00360{bottom:830.970000px;}
.ye_c00360{bottom:861.930000px;}
.yd_c00360{bottom:892.980000px;}
.yc_c00360{bottom:924.030000px;}
.yb_c00360{bottom:955.080000px;}
.ya_c00360{bottom:986.130000px;}
.y9_c00360{bottom:1017.180000px;}
.y8_c00360{bottom:1048.230000px;}
.y7_c00360{bottom:1079.280000px;}
.y6_c00360{bottom:1110.330000px;}
.y5_c00360{bottom:1131.030000px;}
.y4_c00360{bottom:1150.920000px;}
.y3_c00360{bottom:1166.404500px;}
.y2_c00360{bottom:1181.970000px;}
.y1_c00360{bottom:1197.450000px;}
.hb_c00360{height:18.336000px;}
.h7_c00360{height:18.337500px;}
.ha_c00360{height:43.061933px;}
.h9_c00360{height:45.932728px;}
.h8_c00360{height:47.755485px;}
.hf_c00360{height:48.255000px;}
.hd_c00360{height:50.939184px;}
.h3_c00360{height:52.971680px;}
.h2_c00360{height:52.998047px;}
.h10_c00360{height:60.490281px;}
.h4_c00360{height:70.664062px;}
.h6_c00360{height:72.562500px;}
.h5_c00360{height:73.991602px;}
.hc_c00360{height:97.474500px;}
.he_c00360{height:146.694000px;}
.h0_c00360{height:1262.880000px;}
.h1_c00360{height:1263.000000px;}
.w7_c00360{width:34.786500px;}
.w6_c00360{width:85.033500px;}
.w5_c00360{width:92.764500px;}
.w4_c00360{width:98.562000px;}
.w8_c00360{width:140.112000px;}
.w9_c00360{width:458.023500px;}
.w3_c00360{width:635.821500px;}
.w2_c00360{width:893.031000px;}
.w0_c00360{width:893.070000px;}
.w1_c00360{width:893.250000px;}
.x0_c00360{left:0.000000px;}
.xf_c00360{left:2.898600px;}
.x12_c00360{left:4.831500px;}
.x1b_c00360{left:6.764400px;}
.x15_c00360{left:9.663300px;}
.x9_c00360{left:13.528500px;}
.x19_c00360{left:17.393550px;}
.x13_c00360{left:19.333590px;}
.x10_c00360{left:30.928758px;}
.x17_c00360{left:36.718500px;}
.x3_c00360{left:127.620000px;}
.x4_c00360{left:133.560000px;}
.x16_c00360{left:164.340000px;}
.x1a_c00360{left:191.331927px;}
.x5_c00360{left:224.640000px;}
.x18_c00360{left:305.418000px;}
.x1c_c00360{left:391.419000px;}
.x2_c00360{left:425.160000px;}
.x1_c00360{left:446.580000px;}
.xe_c00360{left:485.149500px;}
.xa_c00360{left:494.743350px;}
.xd_c00360{left:498.608550px;}
.xc_c00360{left:567.215400px;}
.xb_c00360{left:572.046900px;}
.x11_c00360{left:584.677500px;}
.x14_c00360{left:678.408000px;}
.x7_c00360{left:696.330000px;}
.x1d_c00360{left:738.540000px;}
.x6_c00360{left:765.450000px;}
.x8_c00360{left:981.540000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.v1_c00360{vertical-align:24.000000pt;}
.lsf_c00360{letter-spacing:-2.058880pt;}
.ls12_c00360{letter-spacing:-1.389744pt;}
.ls17_c00360{letter-spacing:-1.317683pt;}
.ls11_c00360{letter-spacing:-1.132384pt;}
.ls1a_c00360{letter-spacing:-0.651979pt;}
.ls10_c00360{letter-spacing:-0.384324pt;}
.lsa_c00360{letter-spacing:-0.320000pt;}
.ls8_c00360{letter-spacing:-0.256000pt;}
.ls15_c00360{letter-spacing:-0.164710pt;}
.lsd_c00360{letter-spacing:-0.160320pt;}
.ls13_c00360{letter-spacing:-0.154416pt;}
.ls7_c00360{letter-spacing:-0.128000pt;}
.lsc_c00360{letter-spacing:-0.106880pt;}
.ls6_c00360{letter-spacing:-0.096000pt;}
.lsb_c00360{letter-spacing:-0.064000pt;}
.ls18_c00360{letter-spacing:-0.054903pt;}
.ls5_c00360{letter-spacing:0.000000pt;}
.ls1_c00360{letter-spacing:0.064000pt;}
.ls9_c00360{letter-spacing:0.128000pt;}
.ls2_c00360{letter-spacing:0.160000pt;}
.ls16_c00360{letter-spacing:0.219614pt;}
.ls4_c00360{letter-spacing:1.080912pt;}
.ls14_c00360{letter-spacing:1.372587pt;}
.ls19_c00360{letter-spacing:1.592201pt;}
.lse_c00360{letter-spacing:1.852992pt;}
.ls0_c00360{letter-spacing:16.960000pt;}
.ls3_c00360{letter-spacing:59.707520pt;}
.ws0_c00360{word-spacing:-15.872000pt;}
.ws1_c00360{word-spacing:-15.680000pt;}
.ws17_c00360{word-spacing:-14.082739pt;}
.ws15_c00360{word-spacing:-14.000384pt;}
.ws7_c00360{word-spacing:-13.485664pt;}
.ws2_c00360{word-spacing:-13.253120pt;}
.ws3_c00360{word-spacing:-13.199680pt;}
.ws16_c00360{word-spacing:-12.627797pt;}
.ws14_c00360{word-spacing:-12.353280pt;}
.ws12_c00360{word-spacing:-12.243473pt;}
.ws13_c00360{word-spacing:-11.090500pt;}
.wsb_c00360{word-spacing:-10.500288pt;}
.ws35_c00360{word-spacing:-1.372587pt;}
.ws2d_c00360{word-spacing:-0.384000pt;}
.ws3a_c00360{word-spacing:-0.325989pt;}
.ws34_c00360{word-spacing:-0.205888pt;}
.ws29_c00360{word-spacing:-0.128000pt;}
.ws2c_c00360{word-spacing:-0.064000pt;}
.ws36_c00360{word-spacing:-0.054903pt;}
.ws18_c00360{word-spacing:0.000000pt;}
.ws32_c00360{word-spacing:0.064000pt;}
.ws1a_c00360{word-spacing:0.144000pt;}
.ws39_c00360{word-spacing:0.164710pt;}
.ws19_c00360{word-spacing:0.240000pt;}
.ws33_c00360{word-spacing:0.384324pt;}
.ws1f_c00360{word-spacing:0.960000pt;}
.ws38_c00360{word-spacing:1.098069pt;}
.ws1d_c00360{word-spacing:1.280000pt;}
.ws37_c00360{word-spacing:1.482394pt;}
.ws2b_c00360{word-spacing:2.176000pt;}
.ws28_c00360{word-spacing:2.240000pt;}
.ws27_c00360{word-spacing:2.496000pt;}
.ws1b_c00360{word-spacing:3.776000pt;}
.ws2a_c00360{word-spacing:4.096000pt;}
.ws25_c00360{word-spacing:4.416000pt;}
.ws22_c00360{word-spacing:5.760000pt;}
.ws1e_c00360{word-spacing:7.680000pt;}
.ws2e_c00360{word-spacing:8.576000pt;}
.ws2f_c00360{word-spacing:10.560000pt;}
.ws26_c00360{word-spacing:11.456000pt;}
.ws1c_c00360{word-spacing:11.520000pt;}
.ws31_c00360{word-spacing:12.416000pt;}
.ws21_c00360{word-spacing:13.760000pt;}
.ws20_c00360{word-spacing:14.976000pt;}
.ws23_c00360{word-spacing:16.896000pt;}
.ws24_c00360{word-spacing:17.216000pt;}
.ws30_c00360{word-spacing:17.280000pt;}
.ws9_c00360{word-spacing:193.431776pt;}
.wse_c00360{word-spacing:196.756867pt;}
.ws11_c00360{word-spacing:203.108512pt;}
.ws5_c00360{word-spacing:207.051267pt;}
.wsa_c00360{word-spacing:216.851536pt;}
.wsf_c00360{word-spacing:223.697312pt;}
.ws6_c00360{word-spacing:237.440336pt;}
.wsc_c00360{word-spacing:268.807373pt;}
.wsd_c00360{word-spacing:321.267635pt;}
.ws10_c00360{word-spacing:327.197210pt;}
.ws8_c00360{word-spacing:365.605616pt;}
.ws4_c00360{word-spacing:387.398861pt;}
._8_c00360{margin-left:-3.540125pt;}
._5_c00360{margin-left:-2.456352pt;}
._1_c00360{margin-left:-0.940800pt;}
._0_c00360{width:1.084800pt;}
._6_c00360{width:2.415296pt;}
._2_c00360{width:3.456000pt;}
._3_c00360{width:4.544000pt;}
._4_c00360{width:17.753600pt;}
._7_c00360{width:224.148896pt;}
.fs2_c00360{font-size:42.560000pt;}
.fs0_c00360{font-size:48.000000pt;}
.fs4_c00360{font-size:51.472000pt;}
.fs3_c00360{font-size:53.440000pt;}
.fs5_c00360{font-size:54.903467pt;}
.fs1_c00360{font-size:64.000000pt;}
.fs6_c00360{font-size:65.197867pt;}
.y0_c00360{bottom:0.000000pt;}
.y27_c00360{bottom:2.572400pt;}
.y22_c00360{bottom:2.573600pt;}
.y2a_c00360{bottom:2.573733pt;}
.y33_c00360{bottom:2.600918pt;}
.y26_c00360{bottom:3.430267pt;}
.y21_c00360{bottom:3.431467pt;}
.y29_c00360{bottom:3.431600pt;}
.y38_c00360{bottom:5.143235pt;}
.y32_c00360{bottom:20.609255pt;}
.y37_c00360{bottom:26.593333pt;}
.y2e_c00360{bottom:30.032063pt;}
.y34_c00360{bottom:38.603867pt;}
.y31_c00360{bottom:38.617593pt;}
.y2d_c00360{bottom:48.040400pt;}
.y39_c00360{bottom:50.880000pt;}
.y30_c00360{bottom:56.625930pt;}
.y35_c00360{bottom:60.908400pt;}
.y2f_c00360{bottom:74.634267pt;}
.y1f_c00360{bottom:109.600000pt;}
.y1e_c00360{bottom:121.840000pt;}
.y2b_c00360{bottom:123.562667pt;}
.y28_c00360{bottom:140.720000pt;}
.y25_c00360{bottom:157.878667pt;}
.y24_c00360{bottom:175.034667pt;}
.y23_c00360{bottom:192.192000pt;}
.y20_c00360{bottom:209.349333pt;}
.y2c_c00360{bottom:226.506667pt;}
.y36_c00360{bottom:314.009333pt;}
.y1d_c00360{bottom:361.280000pt;}
.y1c_c00360{bottom:379.680000pt;}
.y1b_c00360{bottom:407.440000pt;}
.y1a_c00360{bottom:435.040000pt;}
.y19_c00360{bottom:462.640000pt;}
.y18_c00360{bottom:490.240000pt;}
.y17_c00360{bottom:517.840000pt;}
.y16_c00360{bottom:545.440000pt;}
.y15_c00360{bottom:573.040000pt;}
.y14_c00360{bottom:600.640000pt;}
.y13_c00360{bottom:628.240000pt;}
.y12_c00360{bottom:655.840000pt;}
.y11_c00360{bottom:683.440000pt;}
.y10_c00360{bottom:711.040000pt;}
.yf_c00360{bottom:738.640000pt;}
.ye_c00360{bottom:766.160000pt;}
.yd_c00360{bottom:793.760000pt;}
.yc_c00360{bottom:821.360000pt;}
.yb_c00360{bottom:848.960000pt;}
.ya_c00360{bottom:876.560000pt;}
.y9_c00360{bottom:904.160000pt;}
.y8_c00360{bottom:931.760000pt;}
.y7_c00360{bottom:959.360000pt;}
.y6_c00360{bottom:986.960000pt;}
.y5_c00360{bottom:1005.360000pt;}
.y4_c00360{bottom:1023.040000pt;}
.y3_c00360{bottom:1036.804000pt;}
.y2_c00360{bottom:1050.640000pt;}
.y1_c00360{bottom:1064.400000pt;}
.hb_c00360{height:16.298667pt;}
.h7_c00360{height:16.300000pt;}
.ha_c00360{height:38.277273pt;}
.h9_c00360{height:40.829092pt;}
.h8_c00360{height:42.449320pt;}
.hf_c00360{height:42.893333pt;}
.hd_c00360{height:45.279275pt;}
.h3_c00360{height:47.085938pt;}
.h2_c00360{height:47.109375pt;}
.h10_c00360{height:53.769139pt;}
.h4_c00360{height:62.812500pt;}
.h6_c00360{height:64.500000pt;}
.h5_c00360{height:65.770312pt;}
.hc_c00360{height:86.644000pt;}
.he_c00360{height:130.394667pt;}
.h0_c00360{height:1122.560000pt;}
.h1_c00360{height:1122.666667pt;}
.w7_c00360{width:30.921333pt;}
.w6_c00360{width:75.585333pt;}
.w5_c00360{width:82.457333pt;}
.w4_c00360{width:87.610667pt;}
.w8_c00360{width:124.544000pt;}
.w9_c00360{width:407.132000pt;}
.w3_c00360{width:565.174667pt;}
.w2_c00360{width:793.805333pt;}
.w0_c00360{width:793.840000pt;}
.w1_c00360{width:794.000000pt;}
.x0_c00360{left:0.000000pt;}
.xf_c00360{left:2.576533pt;}
.x12_c00360{left:4.294667pt;}
.x1b_c00360{left:6.012800pt;}
.x15_c00360{left:8.589600pt;}
.x9_c00360{left:12.025333pt;}
.x19_c00360{left:15.460933pt;}
.x13_c00360{left:17.185413pt;}
.x10_c00360{left:27.492230pt;}
.x17_c00360{left:32.638667pt;}
.x3_c00360{left:113.440000pt;}
.x4_c00360{left:118.720000pt;}
.x16_c00360{left:146.080000pt;}
.x1a_c00360{left:170.072824pt;}
.x5_c00360{left:199.680000pt;}
.x18_c00360{left:271.482667pt;}
.x1c_c00360{left:347.928000pt;}
.x2_c00360{left:377.920000pt;}
.x1_c00360{left:396.960000pt;}
.xe_c00360{left:431.244000pt;}
.xa_c00360{left:439.771867pt;}
.xd_c00360{left:443.207600pt;}
.xc_c00360{left:504.191467pt;}
.xb_c00360{left:508.486133pt;}
.x11_c00360{left:519.713333pt;}
.x14_c00360{left:603.029333pt;}
.x7_c00360{left:618.960000pt;}
.x1d_c00360{left:656.480000pt;}
.x6_c00360{left:680.400000pt;}
.x8_c00360{left:872.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_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_ea065da2b51fe36894d43e68.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_982e5a69af5793453c9e99a3.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.284180;font-style:normal;font-weight:normal;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_c63947db0d674208953e1723.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.002930;font-style:normal;font-weight:normal;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_5f32d56486d1b0271f492086.woff2')format("woff");}.ff4_c00361{font-family:ff4_c00361;line-height:0.921875;font-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.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00361{vertical-align:-61.938000px;}
.v2_c00361{vertical-align:-3.870000px;}
.v0_c00361{vertical-align:0.000000px;}
.ls7_c00361{letter-spacing:-2.321688px;}
.lsb_c00361{letter-spacing:-1.567139px;}
.ls6_c00361{letter-spacing:-1.276928px;}
.lsd_c00361{letter-spacing:-0.754549px;}
.ls9_c00361{letter-spacing:-0.433381px;}
.ls10_c00361{letter-spacing:-0.406295px;}
.lsf_c00361{letter-spacing:-0.232169px;}
.lsa_c00361{letter-spacing:-0.174127px;}
.ls5_c00361{letter-spacing:-0.120240px;}
.ls4_c00361{letter-spacing:0.000000px;}
.lse_c00361{letter-spacing:1.218886px;}
.lsc_c00361{letter-spacing:1.741266px;}
.ls8_c00361{letter-spacing:2.089519px;}
.ls1_c00361{letter-spacing:67.328952px;}
.ls2_c00361{letter-spacing:243.343469px;}
.ls3_c00361{letter-spacing:287.889312px;}
.ls0_c00361{letter-spacing:319.518000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13_c00361{word-spacing:-15.207056px;}
.ws0_c00361{word-spacing:-14.909760px;}
.wsd_c00361{word-spacing:-11.840609px;}
.ws4e_c00361{word-spacing:-0.754549px;}
.ws4c_c00361{word-spacing:-0.162000px;}
.ws4b_c00361{word-spacing:0.000000px;}
.ws4f_c00361{word-spacing:0.058042px;}
.ws4d_c00361{word-spacing:0.433381px;}
.wsa_c00361{word-spacing:43.357523px;}
.ws25_c00361{word-spacing:214.740009px;}
.ws1c_c00361{word-spacing:214.740610px;}
.ws2_c00361{word-spacing:218.122588px;}
.ws45_c00361{word-spacing:218.609559px;}
.ws2f_c00361{word-spacing:221.872114px;}
.ws3b_c00361{word-spacing:229.034521px;}
.ws6_c00361{word-spacing:233.480554px;}
.ws17_c00361{word-spacing:233.561813px;}
.ws12_c00361{word-spacing:234.087159px;}
.ws1f_c00361{word-spacing:234.087760px;}
.ws18_c00361{word-spacing:241.222076px;}
.ws38_c00361{word-spacing:241.222677px;}
.ws44_c00361{word-spacing:241.280118px;}
.ws7_c00361{word-spacing:244.531789px;}
.ws1b_c00361{word-spacing:245.173136px;}
.ws8_c00361{word-spacing:245.230938px;}
.ws2b_c00361{word-spacing:245.231178px;}
.ws30_c00361{word-spacing:252.251401px;}
.ws27_c00361{word-spacing:256.699716px;}
.ws4_c00361{word-spacing:256.700076px;}
.wsf_c00361{word-spacing:256.700317px;}
.ws1e_c00361{word-spacing:256.757758px;}
.ws11_c00361{word-spacing:256.758359px;}
.wsc_c00361{word-spacing:260.650775px;}
.ws48_c00361{word-spacing:260.708818px;}
.ws3_c00361{word-spacing:267.748669px;}
.ws33_c00361{word-spacing:303.119585px;}
.ws31_c00361{word-spacing:306.503446px;}
.ws37_c00361{word-spacing:311.994238px;}
.ws15_c00361{word-spacing:344.341156px;}
.ws1d_c00361{word-spacing:345.252418px;}
.ws2e_c00361{word-spacing:350.667756px;}
.ws28_c00361{word-spacing:352.989444px;}
.ws16_c00361{word-spacing:353.500215px;}
.ws4a_c00361{word-spacing:357.360021px;}
.ws2d_c00361{word-spacing:358.404781px;}
.ws2a_c00361{word-spacing:362.276196px;}
.ws2c_c00361{word-spacing:366.165023px;}
.ws3e_c00361{word-spacing:368.486711px;}
.ws34_c00361{word-spacing:370.019025px;}
.ws10_c00361{word-spacing:371.470080px;}
.ws29_c00361{word-spacing:373.588620px;}
.ws36_c00361{word-spacing:380.327320px;}
.ws1a_c00361{word-spacing:384.738527px;}
.ws24_c00361{word-spacing:391.935760px;}
.ws43_c00361{word-spacing:392.098278px;}
.ws22_c00361{word-spacing:392.179537px;}
.ws41_c00361{word-spacing:394.588288px;}
.ws14_c00361{word-spacing:399.835303px;}
.ws3d_c00361{word-spacing:403.370073px;}
.ws40_c00361{word-spacing:404.844345px;}
.ws35_c00361{word-spacing:413.742214px;}
.wse_c00361{word-spacing:415.698236px;}
.ws19_c00361{word-spacing:424.288482px;}
.wsb_c00361{word-spacing:429.529693px;}
.ws47_c00361{word-spacing:432.373760px;}
.ws21_c00361{word-spacing:433.110896px;}
.ws49_c00361{word-spacing:438.804836px;}
.ws46_c00361{word-spacing:439.396867px;}
.ws42_c00361{word-spacing:446.309693px;}
.ws26_c00361{word-spacing:446.385148px;}
.ws32_c00361{word-spacing:448.451450px;}
.ws3f_c00361{word-spacing:456.368406px;}
.ws39_c00361{word-spacing:457.389949px;}
.ws1_c00361{word-spacing:468.998389px;}
.ws20_c00361{word-spacing:474.361488px;}
.ws3c_c00361{word-spacing:475.951844px;}
.ws5_c00361{word-spacing:477.048842px;}
.ws23_c00361{word-spacing:496.614867px;}
.ws3a_c00361{word-spacing:500.538520px;}
.ws9_c00361{word-spacing:515.432149px;}
._3_c00361{margin-left:-3.035607px;}
._2_c00361{margin-left:-1.880567px;}
._0_c00361{width:1.990847px;}
._1_c00361{width:3.778547px;}
._7_c00361{width:168.873781px;}
._5_c00361{width:250.817759px;}
._8_c00361{width:264.451872px;}
._4_c00361{width:282.270827px;}
._6_c00361{width:362.903051px;}
.fc1_c00361{color:transparent;}
.fc0_c00361{color:rgb(0,0,0);}
.fs0_c00361{font-size:54.000000px;}
.fs3_c00361{font-size:58.042200px;}
.fs2_c00361{font-size:60.120000px;}
.fs4_c00361{font-size:61.911600px;}
.fs1_c00361{font-size:72.000000px;}
.y0_c00361{bottom:0.000000px;}
.y14_c00361{bottom:3.868200px;}
.y29_c00361{bottom:3.868350px;}
.y1e_c00361{bottom:3.868500px;}
.ya_c00361{bottom:3.868650px;}
.y17_c00361{bottom:3.868800px;}
.y8_c00361{bottom:3.868950px;}
.y31_c00361{bottom:3.869100px;}
.ye_c00361{bottom:3.869250px;}
.y3a_c00361{bottom:3.869400px;}
.y24_c00361{bottom:3.869550px;}
.yc_c00361{bottom:3.869700px;}
.y34_c00361{bottom:3.869850px;}
.y12_c00361{bottom:3.870000px;}
.y19_c00361{bottom:3.870150px;}
.y2d_c00361{bottom:3.870300px;}
.y10_c00361{bottom:3.870450px;}
.y40_c00361{bottom:3.870600px;}
.y26_c00361{bottom:3.870750px;}
.y4c_c00361{bottom:57.240000px;}
.y6_c00361{bottom:124.470000px;}
.y5_c00361{bottom:138.240000px;}
.y4b_c00361{bottom:140.173500px;}
.y4a_c00361{bottom:159.522000px;}
.y49_c00361{bottom:178.867500px;}
.y48_c00361{bottom:198.214500px;}
.y47_c00361{bottom:217.563000px;}
.y46_c00361{bottom:236.910000px;}
.y45_c00361{bottom:256.258500px;}
.y44_c00361{bottom:275.605500px;}
.y43_c00361{bottom:294.952500px;}
.y42_c00361{bottom:314.299500px;}
.y41_c00361{bottom:333.646500px;}
.y3f_c00361{bottom:352.993500px;}
.y3e_c00361{bottom:372.342000px;}
.y3d_c00361{bottom:391.689000px;}
.y3c_c00361{bottom:411.037500px;}
.y3b_c00361{bottom:430.384500px;}
.y39_c00361{bottom:449.731500px;}
.y38_c00361{bottom:469.078500px;}
.y37_c00361{bottom:488.425500px;}
.y36_c00361{bottom:507.774000px;}
.y35_c00361{bottom:527.121000px;}
.y33_c00361{bottom:546.468000px;}
.y32_c00361{bottom:565.816500px;}
.y30_c00361{bottom:585.163500px;}
.y2f_c00361{bottom:604.510500px;}
.y2e_c00361{bottom:623.857500px;}
.y2c_c00361{bottom:643.204500px;}
.y2b_c00361{bottom:662.553000px;}
.y2a_c00361{bottom:681.900000px;}
.y28_c00361{bottom:701.248500px;}
.y27_c00361{bottom:720.595500px;}
.y25_c00361{bottom:739.941000px;}
.y23_c00361{bottom:759.289500px;}
.y22_c00361{bottom:778.636500px;}
.y21_c00361{bottom:797.985000px;}
.y20_c00361{bottom:817.332000px;}
.y1f_c00361{bottom:836.679000px;}
.y1d_c00361{bottom:856.027500px;}
.y1c_c00361{bottom:875.373000px;}
.y1b_c00361{bottom:894.721500px;}
.y1a_c00361{bottom:914.068500px;}
.y18_c00361{bottom:933.415500px;}
.y16_c00361{bottom:952.764000px;}
.y15_c00361{bottom:972.111000px;}
.y13_c00361{bottom:991.459500px;}
.y11_c00361{bottom:1010.805000px;}
.yf_c00361{bottom:1030.152000px;}
.yd_c00361{bottom:1049.500500px;}
.yb_c00361{bottom:1068.847500px;}
.y9_c00361{bottom:1088.196000px;}
.y7_c00361{bottom:1107.543000px;}
.y4_c00361{bottom:1131.030000px;}
.y3_c00361{bottom:1150.915500px;}
.y2_c00361{bottom:1166.400000px;}
.y1_c00361{bottom:1197.450000px;}
.h4_c00361{height:18.379500px;}
.h6_c00361{height:18.381000px;}
.h5_c00361{height:47.867810px;}
.h2_c00361{height:52.998047px;}
.h3_c00361{height:70.664062px;}
.h0_c00361{height:1262.880000px;}
.h1_c00361{height:1263.000000px;}
.w3_c00361{width:635.911500px;}
.w2_c00361{width:893.031000px;}
.w0_c00361{width:893.070000px;}
.w1_c00361{width:893.250000px;}
.x0_c00361{left:0.000000px;}
.x7_c00361{left:10.631100px;}
.x6_c00361{left:13.530450px;}
.x2_c00361{left:127.620000px;}
.x1_c00361{left:446.580000px;}
.x4_c00361{left:696.330000px;}
.x3_c00361{left:765.450000px;}
.x5_c00361{left:981.540000px;}
@media print{
.v1_c00361{vertical-align:-55.056000pt;}
.v2_c00361{vertical-align:-3.440000pt;}
.v0_c00361{vertical-align:0.000000pt;}
.ls7_c00361{letter-spacing:-2.063723pt;}
.lsb_c00361{letter-spacing:-1.393013pt;}
.ls6_c00361{letter-spacing:-1.135047pt;}
.lsd_c00361{letter-spacing:-0.670710pt;}
.ls9_c00361{letter-spacing:-0.385228pt;}
.ls10_c00361{letter-spacing:-0.361151pt;}
.lsf_c00361{letter-spacing:-0.206372pt;}
.lsa_c00361{letter-spacing:-0.154779pt;}
.ls5_c00361{letter-spacing:-0.106880pt;}
.ls4_c00361{letter-spacing:0.000000pt;}
.lse_c00361{letter-spacing:1.083454pt;}
.lsc_c00361{letter-spacing:1.547792pt;}
.ls8_c00361{letter-spacing:1.857350pt;}
.ls1_c00361{letter-spacing:59.847957pt;}
.ls2_c00361{letter-spacing:216.305306pt;}
.ls3_c00361{letter-spacing:255.901611pt;}
.ls0_c00361{letter-spacing:284.016000pt;}
.ws13_c00361{word-spacing:-13.517383pt;}
.ws0_c00361{word-spacing:-13.253120pt;}
.wsd_c00361{word-spacing:-10.524986pt;}
.ws4e_c00361{word-spacing:-0.670710pt;}
.ws4c_c00361{word-spacing:-0.144000pt;}
.ws4b_c00361{word-spacing:0.000000pt;}
.ws4f_c00361{word-spacing:0.051593pt;}
.ws4d_c00361{word-spacing:0.385228pt;}
.wsa_c00361{word-spacing:38.540021pt;}
.ws25_c00361{word-spacing:190.880008pt;}
.ws1c_c00361{word-spacing:190.880542pt;}
.ws2_c00361{word-spacing:193.886745pt;}
.ws45_c00361{word-spacing:194.319608pt;}
.ws2f_c00361{word-spacing:197.219657pt;}
.ws3b_c00361{word-spacing:203.586241pt;}
.ws6_c00361{word-spacing:207.538270pt;}
.ws17_c00361{word-spacing:207.610500pt;}
.ws12_c00361{word-spacing:208.077475pt;}
.ws1f_c00361{word-spacing:208.078009pt;}
.ws18_c00361{word-spacing:214.419623pt;}
.ws38_c00361{word-spacing:214.420157pt;}
.ws44_c00361{word-spacing:214.471216pt;}
.ws7_c00361{word-spacing:217.361590pt;}
.ws1b_c00361{word-spacing:217.931676pt;}
.ws8_c00361{word-spacing:217.983056pt;}
.ws2b_c00361{word-spacing:217.983269pt;}
.ws30_c00361{word-spacing:224.223468pt;}
.ws27_c00361{word-spacing:228.177525pt;}
.ws4_c00361{word-spacing:228.177846pt;}
.wsf_c00361{word-spacing:228.178059pt;}
.ws1e_c00361{word-spacing:228.229118pt;}
.ws11_c00361{word-spacing:228.229652pt;}
.wsc_c00361{word-spacing:231.689578pt;}
.ws48_c00361{word-spacing:231.741171pt;}
.ws3_c00361{word-spacing:237.998817pt;}
.ws33_c00361{word-spacing:269.439631pt;}
.ws31_c00361{word-spacing:272.447507pt;}
.ws37_c00361{word-spacing:277.328211pt;}
.ws15_c00361{word-spacing:306.081027pt;}
.ws1d_c00361{word-spacing:306.891038pt;}
.ws2e_c00361{word-spacing:311.704672pt;}
.ws28_c00361{word-spacing:313.768394pt;}
.ws16_c00361{word-spacing:314.222413pt;}
.ws4a_c00361{word-spacing:317.653352pt;}
.ws2d_c00361{word-spacing:318.582027pt;}
.ws2a_c00361{word-spacing:322.023285pt;}
.ws2c_c00361{word-spacing:325.480020pt;}
.ws3e_c00361{word-spacing:327.543743pt;}
.ws34_c00361{word-spacing:328.905800pt;}
.ws10_c00361{word-spacing:330.195627pt;}
.ws29_c00361{word-spacing:332.078774pt;}
.ws36_c00361{word-spacing:338.068729pt;}
.ws1a_c00361{word-spacing:341.989802pt;}
.ws24_c00361{word-spacing:348.387342pt;}
.ws43_c00361{word-spacing:348.531803pt;}
.ws22_c00361{word-spacing:348.604033pt;}
.ws41_c00361{word-spacing:350.745145pt;}
.ws14_c00361{word-spacing:355.409158pt;}
.ws3d_c00361{word-spacing:358.551176pt;}
.ws40_c00361{word-spacing:359.861640pt;}
.ws35_c00361{word-spacing:367.770857pt;}
.wse_c00361{word-spacing:369.509543pt;}
.ws19_c00361{word-spacing:377.145317pt;}
.wsb_c00361{word-spacing:381.804171pt;}
.ws47_c00361{word-spacing:384.332232pt;}
.ws21_c00361{word-spacing:384.987463pt;}
.ws49_c00361{word-spacing:390.048743pt;}
.ws46_c00361{word-spacing:390.574993pt;}
.ws42_c00361{word-spacing:396.719727pt;}
.ws26_c00361{word-spacing:396.786798pt;}
.ws32_c00361{word-spacing:398.623511pt;}
.ws3f_c00361{word-spacing:405.660805pt;}
.ws39_c00361{word-spacing:406.568843pt;}
.ws1_c00361{word-spacing:416.887457pt;}
.ws20_c00361{word-spacing:421.654656pt;}
.ws3c_c00361{word-spacing:423.068306pt;}
.ws5_c00361{word-spacing:424.043415pt;}
.ws23_c00361{word-spacing:441.435438pt;}
.ws3a_c00361{word-spacing:444.923129pt;}
.ws9_c00361{word-spacing:458.161910pt;}
._3_c00361{margin-left:-2.698317pt;}
._2_c00361{margin-left:-1.671615pt;}
._0_c00361{width:1.769642pt;}
._1_c00361{width:3.358709pt;}
._7_c00361{width:150.110027pt;}
._5_c00361{width:222.949119pt;}
._8_c00361{width:235.068330pt;}
._4_c00361{width:250.907402pt;}
._6_c00361{width:322.580490pt;}
.fs0_c00361{font-size:48.000000pt;}
.fs3_c00361{font-size:51.593067pt;}
.fs2_c00361{font-size:53.440000pt;}
.fs4_c00361{font-size:55.032533pt;}
.fs1_c00361{font-size:64.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y14_c00361{bottom:3.438400pt;}
.y29_c00361{bottom:3.438533pt;}
.y1e_c00361{bottom:3.438667pt;}
.ya_c00361{bottom:3.438800pt;}
.y17_c00361{bottom:3.438933pt;}
.y8_c00361{bottom:3.439067pt;}
.y31_c00361{bottom:3.439200pt;}
.ye_c00361{bottom:3.439333pt;}
.y3a_c00361{bottom:3.439467pt;}
.y24_c00361{bottom:3.439600pt;}
.yc_c00361{bottom:3.439733pt;}
.y34_c00361{bottom:3.439867pt;}
.y12_c00361{bottom:3.440000pt;}
.y19_c00361{bottom:3.440133pt;}
.y2d_c00361{bottom:3.440267pt;}
.y10_c00361{bottom:3.440400pt;}
.y40_c00361{bottom:3.440533pt;}
.y26_c00361{bottom:3.440667pt;}
.y4c_c00361{bottom:50.880000pt;}
.y6_c00361{bottom:110.640000pt;}
.y5_c00361{bottom:122.880000pt;}
.y4b_c00361{bottom:124.598667pt;}
.y4a_c00361{bottom:141.797333pt;}
.y49_c00361{bottom:158.993333pt;}
.y48_c00361{bottom:176.190667pt;}
.y47_c00361{bottom:193.389333pt;}
.y46_c00361{bottom:210.586667pt;}
.y45_c00361{bottom:227.785333pt;}
.y44_c00361{bottom:244.982667pt;}
.y43_c00361{bottom:262.180000pt;}
.y42_c00361{bottom:279.377333pt;}
.y41_c00361{bottom:296.574667pt;}
.y3f_c00361{bottom:313.772000pt;}
.y3e_c00361{bottom:330.970667pt;}
.y3d_c00361{bottom:348.168000pt;}
.y3c_c00361{bottom:365.366667pt;}
.y3b_c00361{bottom:382.564000pt;}
.y39_c00361{bottom:399.761333pt;}
.y38_c00361{bottom:416.958667pt;}
.y37_c00361{bottom:434.156000pt;}
.y36_c00361{bottom:451.354667pt;}
.y35_c00361{bottom:468.552000pt;}
.y33_c00361{bottom:485.749333pt;}
.y32_c00361{bottom:502.948000pt;}
.y30_c00361{bottom:520.145333pt;}
.y2f_c00361{bottom:537.342667pt;}
.y2e_c00361{bottom:554.540000pt;}
.y2c_c00361{bottom:571.737333pt;}
.y2b_c00361{bottom:588.936000pt;}
.y2a_c00361{bottom:606.133333pt;}
.y28_c00361{bottom:623.332000pt;}
.y27_c00361{bottom:640.529333pt;}
.y25_c00361{bottom:657.725333pt;}
.y23_c00361{bottom:674.924000pt;}
.y22_c00361{bottom:692.121333pt;}
.y21_c00361{bottom:709.320000pt;}
.y20_c00361{bottom:726.517333pt;}
.y1f_c00361{bottom:743.714667pt;}
.y1d_c00361{bottom:760.913333pt;}
.y1c_c00361{bottom:778.109333pt;}
.y1b_c00361{bottom:795.308000pt;}
.y1a_c00361{bottom:812.505333pt;}
.y18_c00361{bottom:829.702667pt;}
.y16_c00361{bottom:846.901333pt;}
.y15_c00361{bottom:864.098667pt;}
.y13_c00361{bottom:881.297333pt;}
.y11_c00361{bottom:898.493333pt;}
.yf_c00361{bottom:915.690667pt;}
.yd_c00361{bottom:932.889333pt;}
.yb_c00361{bottom:950.086667pt;}
.y9_c00361{bottom:967.285333pt;}
.y7_c00361{bottom:984.482667pt;}
.y4_c00361{bottom:1005.360000pt;}
.y3_c00361{bottom:1023.036000pt;}
.y2_c00361{bottom:1036.800000pt;}
.y1_c00361{bottom:1064.400000pt;}
.h4_c00361{height:16.337333pt;}
.h6_c00361{height:16.338667pt;}
.h5_c00361{height:42.549165pt;}
.h2_c00361{height:47.109375pt;}
.h3_c00361{height:62.812500pt;}
.h0_c00361{height:1122.560000pt;}
.h1_c00361{height:1122.666667pt;}
.w3_c00361{width:565.254667pt;}
.w2_c00361{width:793.805333pt;}
.w0_c00361{width:793.840000pt;}
.w1_c00361{width:794.000000pt;}
.x0_c00361{left:0.000000pt;}
.x7_c00361{left:9.449867pt;}
.x6_c00361{left:12.027067pt;}
.x2_c00361{left:113.440000pt;}
.x1_c00361{left:396.960000pt;}
.x4_c00361{left:618.960000pt;}
.x3_c00361{left:680.400000pt;}
.x5_c00361{left:872.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_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_2482d7d53a87230c314f0f71.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.284668;font-style:normal;font-weight:normal;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_ba2835beb4dd2ddc94976e15.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_98e285c49af7c284ea06b8ed.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.002930;font-style:normal;font-weight:normal;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_3a62039dfc8f944b4a380a98.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:0.921875;font-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_c00362{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,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);}
.v1_c00362{vertical-align:-3.870000px;}
.v0_c00362{vertical-align:0.000000px;}
.ls5_c00362{letter-spacing:-2.321688px;}
.lse_c00362{letter-spacing:-1.625182px;}
.ls6_c00362{letter-spacing:-1.567139px;}
.ls7_c00362{letter-spacing:-1.276928px;}
.lsd_c00362{letter-spacing:-0.754549px;}
.lsa_c00362{letter-spacing:-0.433381px;}
.ls8_c00362{letter-spacing:-0.174127px;}
.ls4_c00362{letter-spacing:-0.120240px;}
.ls3_c00362{letter-spacing:-0.108000px;}
.ls2_c00362{letter-spacing:0.000000px;}
.lsf_c00362{letter-spacing:0.174127px;}
.lsb_c00362{letter-spacing:1.218886px;}
.lsc_c00362{letter-spacing:1.741266px;}
.ls9_c00362{letter-spacing:2.089519px;}
.ls0_c00362{letter-spacing:243.343469px;}
.ls1_c00362{letter-spacing:287.889312px;}
.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;}
}
.wsa_c00362{word-spacing:-15.207056px;}
.ws0_c00362{word-spacing:-14.909760px;}
.ws5_c00362{word-spacing:-11.840609px;}
.ws55_c00362{word-spacing:-3.250363px;}
.ws53_c00362{word-spacing:-1.334971px;}
.ws56_c00362{word-spacing:-0.754549px;}
.ws4f_c00362{word-spacing:0.000000px;}
.ws52_c00362{word-spacing:0.058042px;}
.ws51_c00362{word-spacing:0.162000px;}
.ws50_c00362{word-spacing:0.270000px;}
.ws54_c00362{word-spacing:0.433381px;}
.ws41_c00362{word-spacing:31.691041px;}
.ws1_c00362{word-spacing:43.357523px;}
.ws30_c00362{word-spacing:214.740009px;}
.wsf_c00362{word-spacing:214.740610px;}
.ws2_c00362{word-spacing:218.122588px;}
.ws9_c00362{word-spacing:218.609559px;}
.ws3b_c00362{word-spacing:218.610160px;}
.ws1b_c00362{word-spacing:221.872114px;}
.ws2f_c00362{word-spacing:221.953373px;}
.ws29_c00362{word-spacing:232.923349px;}
.ws6_c00362{word-spacing:233.480554px;}
.ws43_c00362{word-spacing:233.486358px;}
.ws2d_c00362{word-spacing:233.561813px;}
.ws16_c00362{word-spacing:234.087159px;}
.ws1a_c00362{word-spacing:234.087760px;}
.ws3d_c00362{word-spacing:241.222076px;}
.ws8_c00362{word-spacing:241.280118px;}
.wse_c00362{word-spacing:241.284308px;}
.wsc_c00362{word-spacing:241.342350px;}
.ws3_c00362{word-spacing:248.420616px;}
.ws1c_c00362{word-spacing:252.251401px;}
.ws2b_c00362{word-spacing:256.639392px;}
.ws25_c00362{word-spacing:256.699716px;}
.ws13_c00362{word-spacing:256.700317px;}
.ws4c_c00362{word-spacing:256.738731px;}
.ws1d_c00362{word-spacing:256.757758px;}
.ws15_c00362{word-spacing:256.758359px;}
.ws4_c00362{word-spacing:256.761948px;}
.ws46_c00362{word-spacing:256.796173px;}
.ws48_c00362{word-spacing:256.796773px;}
.ws20_c00362{word-spacing:256.819390px;}
.ws38_c00362{word-spacing:256.819990px;}
.ws44_c00362{word-spacing:256.857804px;}
.ws4a_c00362{word-spacing:256.858405px;}
.ws7_c00362{word-spacing:267.748669px;}
.ws2c_c00362{word-spacing:276.031291px;}
.ws23_c00362{word-spacing:286.113221px;}
.ws33_c00362{word-spacing:311.297731px;}
.ws4b_c00362{word-spacing:316.556355px;}
.ws11_c00362{word-spacing:319.713850px;}
.ws21_c00362{word-spacing:323.602678px;}
.ws3c_c00362{word-spacing:324.763522px;}
.ws2e_c00362{word-spacing:329.772564px;}
.ws42_c00362{word-spacing:331.380332px;}
.ws34_c00362{word-spacing:334.090903px;}
.ws37_c00362{word-spacing:353.221612px;}
.ws10_c00362{word-spacing:357.336804px;}
.ws1f_c00362{word-spacing:366.147610px;}
.ws18_c00362{word-spacing:371.046372px;}
.ws28_c00362{word-spacing:376.612619px;}
.ws36_c00362{word-spacing:377.773463px;}
.ws35_c00362{word-spacing:377.814092px;}
.ws12_c00362{word-spacing:380.507251px;}
.ws27_c00362{word-spacing:381.627465px;}
.ws17_c00362{word-spacing:384.401882px;}
.wsb_c00362{word-spacing:386.694549px;}
.ws32_c00362{word-spacing:392.115691px;}
.ws2a_c00362{word-spacing:396.004518px;}
.ws39_c00362{word-spacing:398.523549px;}
.ws1e_c00362{word-spacing:410.956189px;}
.ws3a_c00362{word-spacing:412.581370px;}
.ws24_c00362{word-spacing:415.344179px;}
.wsd_c00362{word-spacing:419.238811px;}
.ws26_c00362{word-spacing:420.341612px;}
.ws3e_c00362{word-spacing:423.226310px;}
.ws49_c00362{word-spacing:428.096050px;}
.ws40_c00362{word-spacing:430.615082px;}
.ws47_c00362{word-spacing:430.870467px;}
.ws22_c00362{word-spacing:444.446538px;}
.ws14_c00362{word-spacing:446.292280px;}
.ws45_c00362{word-spacing:449.037676px;}
.ws19_c00362{word-spacing:450.233345px;}
.ws31_c00362{word-spacing:454.081543px;}
.ws4e_c00362{word-spacing:456.594771px;}
.ws3f_c00362{word-spacing:459.073172px;}
.ws4d_c00362{word-spacing:469.561398px;}
._6_c00362{margin-left:-3.120638px;}
._7_c00362{margin-left:-2.113732px;}
._1_c00362{margin-left:-1.058400px;}
._0_c00362{width:1.220400px;}
._2_c00362{width:2.491273px;}
._4_c00362{width:3.539060px;}
._d_c00362{width:153.713369px;}
._3_c00362{width:156.541327px;}
._c_c00362{width:209.237590px;}
._b_c00362{width:240.351236px;}
._5_c00362{width:301.125961px;}
._8_c00362{width:391.496153px;}
._a_c00362{width:405.013930px;}
._9_c00362{width:412.551272px;}
.fc1_c00362{color:transparent;}
.fc0_c00362{color:rgb(0,0,0);}
.fs0_c00362{font-size:54.000000px;}
.fs3_c00362{font-size:58.042200px;}
.fs2_c00362{font-size:60.120000px;}
.fs4_c00362{font-size:61.911600px;}
.fs1_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y15_c00362{bottom:3.868200px;}
.y2a_c00362{bottom:3.868350px;}
.y1f_c00362{bottom:3.868500px;}
.yb_c00362{bottom:3.868650px;}
.y18_c00362{bottom:3.868800px;}
.y9_c00362{bottom:3.868950px;}
.y32_c00362{bottom:3.869100px;}
.yf_c00362{bottom:3.869250px;}
.y3b_c00362{bottom:3.869400px;}
.y25_c00362{bottom:3.869550px;}
.yd_c00362{bottom:3.869700px;}
.y35_c00362{bottom:3.869850px;}
.y13_c00362{bottom:3.870000px;}
.y1a_c00362{bottom:3.870150px;}
.y2e_c00362{bottom:3.870300px;}
.y11_c00362{bottom:3.870450px;}
.y41_c00362{bottom:3.870600px;}
.y27_c00362{bottom:3.870750px;}
.y4d_c00362{bottom:57.240000px;}
.y7_c00362{bottom:124.470000px;}
.y6_c00362{bottom:138.240000px;}
.y4c_c00362{bottom:140.173500px;}
.y4b_c00362{bottom:159.522000px;}
.y4a_c00362{bottom:178.867500px;}
.y49_c00362{bottom:198.214500px;}
.y48_c00362{bottom:217.563000px;}
.y47_c00362{bottom:236.910000px;}
.y46_c00362{bottom:256.258500px;}
.y45_c00362{bottom:275.605500px;}
.y44_c00362{bottom:294.952500px;}
.y43_c00362{bottom:314.299500px;}
.y42_c00362{bottom:333.646500px;}
.y40_c00362{bottom:352.993500px;}
.y3f_c00362{bottom:372.342000px;}
.y3e_c00362{bottom:391.689000px;}
.y3d_c00362{bottom:411.037500px;}
.y3c_c00362{bottom:430.384500px;}
.y3a_c00362{bottom:449.731500px;}
.y39_c00362{bottom:469.078500px;}
.y38_c00362{bottom:488.425500px;}
.y37_c00362{bottom:507.774000px;}
.y36_c00362{bottom:527.121000px;}
.y34_c00362{bottom:546.468000px;}
.y33_c00362{bottom:565.816500px;}
.y31_c00362{bottom:585.163500px;}
.y30_c00362{bottom:604.510500px;}
.y2f_c00362{bottom:623.857500px;}
.y2d_c00362{bottom:643.204500px;}
.y2c_c00362{bottom:662.553000px;}
.y2b_c00362{bottom:681.900000px;}
.y29_c00362{bottom:701.248500px;}
.y28_c00362{bottom:720.595500px;}
.y26_c00362{bottom:739.941000px;}
.y24_c00362{bottom:759.289500px;}
.y23_c00362{bottom:778.636500px;}
.y22_c00362{bottom:797.985000px;}
.y21_c00362{bottom:817.332000px;}
.y20_c00362{bottom:836.679000px;}
.y1e_c00362{bottom:856.027500px;}
.y1d_c00362{bottom:875.373000px;}
.y1c_c00362{bottom:894.721500px;}
.y1b_c00362{bottom:914.068500px;}
.y19_c00362{bottom:933.415500px;}
.y17_c00362{bottom:952.764000px;}
.y16_c00362{bottom:972.111000px;}
.y14_c00362{bottom:991.459500px;}
.y12_c00362{bottom:1010.805000px;}
.y10_c00362{bottom:1030.152000px;}
.ye_c00362{bottom:1049.500500px;}
.yc_c00362{bottom:1068.847500px;}
.ya_c00362{bottom:1088.196000px;}
.y8_c00362{bottom:1107.543000px;}
.y5_c00362{bottom:1131.030000px;}
.y4_c00362{bottom:1150.920000px;}
.y3_c00362{bottom:1166.404500px;}
.y2_c00362{bottom:1181.970000px;}
.y1_c00362{bottom:1197.450000px;}
.h6_c00362{height:18.379500px;}
.h8_c00362{height:18.381000px;}
.h7_c00362{height:47.867810px;}
.h3_c00362{height:52.971680px;}
.h2_c00362{height:52.998047px;}
.h4_c00362{height:70.664062px;}
.h5_c00362{height:72.562500px;}
.h0_c00362{height:1262.880000px;}
.h1_c00362{height:1263.000000px;}
.w3_c00362{width:635.911500px;}
.w2_c00362{width:893.031000px;}
.w0_c00362{width:893.070000px;}
.w1_c00362{width:893.250000px;}
.x0_c00362{left:0.000000px;}
.x8_c00362{left:6.765450px;}
.x7_c00362{left:10.631100px;}
.x3_c00362{left:127.620000px;}
.x2_c00362{left:425.160000px;}
.x1_c00362{left:446.580000px;}
.x5_c00362{left:696.330000px;}
.x9_c00362{left:738.540000px;}
.x4_c00362{left:765.450000px;}
.x6_c00362{left:981.540000px;}
@media print{
.v1_c00362{vertical-align:-3.440000pt;}
.v0_c00362{vertical-align:0.000000pt;}
.ls5_c00362{letter-spacing:-2.063723pt;}
.lse_c00362{letter-spacing:-1.444606pt;}
.ls6_c00362{letter-spacing:-1.393013pt;}
.ls7_c00362{letter-spacing:-1.135047pt;}
.lsd_c00362{letter-spacing:-0.670710pt;}
.lsa_c00362{letter-spacing:-0.385228pt;}
.ls8_c00362{letter-spacing:-0.154779pt;}
.ls4_c00362{letter-spacing:-0.106880pt;}
.ls3_c00362{letter-spacing:-0.096000pt;}
.ls2_c00362{letter-spacing:0.000000pt;}
.lsf_c00362{letter-spacing:0.154779pt;}
.lsb_c00362{letter-spacing:1.083454pt;}
.lsc_c00362{letter-spacing:1.547792pt;}
.ls9_c00362{letter-spacing:1.857350pt;}
.ls0_c00362{letter-spacing:216.305306pt;}
.ls1_c00362{letter-spacing:255.901611pt;}
.wsa_c00362{word-spacing:-13.517383pt;}
.ws0_c00362{word-spacing:-13.253120pt;}
.ws5_c00362{word-spacing:-10.524986pt;}
.ws55_c00362{word-spacing:-2.889212pt;}
.ws53_c00362{word-spacing:-1.186641pt;}
.ws56_c00362{word-spacing:-0.670710pt;}
.ws4f_c00362{word-spacing:0.000000pt;}
.ws52_c00362{word-spacing:0.051593pt;}
.ws51_c00362{word-spacing:0.144000pt;}
.ws50_c00362{word-spacing:0.240000pt;}
.ws54_c00362{word-spacing:0.385228pt;}
.ws41_c00362{word-spacing:28.169814pt;}
.ws1_c00362{word-spacing:38.540021pt;}
.ws30_c00362{word-spacing:190.880008pt;}
.wsf_c00362{word-spacing:190.880542pt;}
.ws2_c00362{word-spacing:193.886745pt;}
.ws9_c00362{word-spacing:194.319608pt;}
.ws3b_c00362{word-spacing:194.320142pt;}
.ws1b_c00362{word-spacing:197.219657pt;}
.ws2f_c00362{word-spacing:197.291887pt;}
.ws29_c00362{word-spacing:207.042977pt;}
.ws6_c00362{word-spacing:207.538270pt;}
.ws43_c00362{word-spacing:207.543429pt;}
.ws2d_c00362{word-spacing:207.610500pt;}
.ws16_c00362{word-spacing:208.077475pt;}
.ws1a_c00362{word-spacing:208.078009pt;}
.ws3d_c00362{word-spacing:214.419623pt;}
.ws8_c00362{word-spacing:214.471216pt;}
.wse_c00362{word-spacing:214.474941pt;}
.wsc_c00362{word-spacing:214.526534pt;}
.ws3_c00362{word-spacing:220.818325pt;}
.ws1c_c00362{word-spacing:224.223468pt;}
.ws2b_c00362{word-spacing:228.123904pt;}
.ws25_c00362{word-spacing:228.177525pt;}
.ws13_c00362{word-spacing:228.178059pt;}
.ws4c_c00362{word-spacing:228.212205pt;}
.ws1d_c00362{word-spacing:228.229118pt;}
.ws15_c00362{word-spacing:228.229652pt;}
.ws4_c00362{word-spacing:228.232843pt;}
.ws46_c00362{word-spacing:228.263265pt;}
.ws48_c00362{word-spacing:228.263798pt;}
.ws20_c00362{word-spacing:228.283902pt;}
.ws38_c00362{word-spacing:228.284436pt;}
.ws44_c00362{word-spacing:228.318048pt;}
.ws4a_c00362{word-spacing:228.318582pt;}
.ws7_c00362{word-spacing:237.998817pt;}
.ws2c_c00362{word-spacing:245.361147pt;}
.ws23_c00362{word-spacing:254.322863pt;}
.ws33_c00362{word-spacing:276.709094pt;}
.ws4b_c00362{word-spacing:281.383426pt;}
.ws11_c00362{word-spacing:284.190089pt;}
.ws21_c00362{word-spacing:287.646825pt;}
.ws3c_c00362{word-spacing:288.678686pt;}
.ws2e_c00362{word-spacing:293.131168pt;}
.ws42_c00362{word-spacing:294.560296pt;}
.ws34_c00362{word-spacing:296.969692pt;}
.ws37_c00362{word-spacing:313.974767pt;}
.ws10_c00362{word-spacing:317.632715pt;}
.ws1f_c00362{word-spacing:325.464542pt;}
.ws18_c00362{word-spacing:329.818997pt;}
.ws28_c00362{word-spacing:334.766772pt;}
.ws36_c00362{word-spacing:335.798634pt;}
.ws35_c00362{word-spacing:335.834749pt;}
.ws12_c00362{word-spacing:338.228667pt;}
.ws27_c00362{word-spacing:339.224413pt;}
.ws17_c00362{word-spacing:341.690562pt;}
.wsb_c00362{word-spacing:343.728488pt;}
.ws32_c00362{word-spacing:348.547280pt;}
.ws2a_c00362{word-spacing:352.004016pt;}
.ws39_c00362{word-spacing:354.243155pt;}
.ws1e_c00362{word-spacing:365.294390pt;}
.ws3a_c00362{word-spacing:366.738996pt;}
.ws24_c00362{word-spacing:369.194826pt;}
.wsd_c00362{word-spacing:372.656721pt;}
.ws26_c00362{word-spacing:373.636989pt;}
.ws3e_c00362{word-spacing:376.201164pt;}
.ws49_c00362{word-spacing:380.529823pt;}
.ws40_c00362{word-spacing:382.768962pt;}
.ws47_c00362{word-spacing:382.995971pt;}
.ws22_c00362{word-spacing:395.063589pt;}
.ws14_c00362{word-spacing:396.704249pt;}
.ws45_c00362{word-spacing:399.144601pt;}
.ws19_c00362{word-spacing:400.207418pt;}
.ws31_c00362{word-spacing:403.628038pt;}
.ws4e_c00362{word-spacing:405.862018pt;}
.ws3f_c00362{word-spacing:408.065042pt;}
.ws4d_c00362{word-spacing:417.387909pt;}
._6_c00362{margin-left:-2.773901pt;}
._7_c00362{margin-left:-1.878873pt;}
._1_c00362{margin-left:-0.940800pt;}
._0_c00362{width:1.084800pt;}
._2_c00362{width:2.214465pt;}
._4_c00362{width:3.145831pt;}
._d_c00362{width:136.634105pt;}
._3_c00362{width:139.147846pt;}
._c_c00362{width:185.988969pt;}
._b_c00362{width:213.645543pt;}
._5_c00362{width:267.667521pt;}
._8_c00362{width:347.996580pt;}
._a_c00362{width:360.012382pt;}
._9_c00362{width:366.712242pt;}
.fs0_c00362{font-size:48.000000pt;}
.fs3_c00362{font-size:51.593067pt;}
.fs2_c00362{font-size:53.440000pt;}
.fs4_c00362{font-size:55.032533pt;}
.fs1_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y15_c00362{bottom:3.438400pt;}
.y2a_c00362{bottom:3.438533pt;}
.y1f_c00362{bottom:3.438667pt;}
.yb_c00362{bottom:3.438800pt;}
.y18_c00362{bottom:3.438933pt;}
.y9_c00362{bottom:3.439067pt;}
.y32_c00362{bottom:3.439200pt;}
.yf_c00362{bottom:3.439333pt;}
.y3b_c00362{bottom:3.439467pt;}
.y25_c00362{bottom:3.439600pt;}
.yd_c00362{bottom:3.439733pt;}
.y35_c00362{bottom:3.439867pt;}
.y13_c00362{bottom:3.440000pt;}
.y1a_c00362{bottom:3.440133pt;}
.y2e_c00362{bottom:3.440267pt;}
.y11_c00362{bottom:3.440400pt;}
.y41_c00362{bottom:3.440533pt;}
.y27_c00362{bottom:3.440667pt;}
.y4d_c00362{bottom:50.880000pt;}
.y7_c00362{bottom:110.640000pt;}
.y6_c00362{bottom:122.880000pt;}
.y4c_c00362{bottom:124.598667pt;}
.y4b_c00362{bottom:141.797333pt;}
.y4a_c00362{bottom:158.993333pt;}
.y49_c00362{bottom:176.190667pt;}
.y48_c00362{bottom:193.389333pt;}
.y47_c00362{bottom:210.586667pt;}
.y46_c00362{bottom:227.785333pt;}
.y45_c00362{bottom:244.982667pt;}
.y44_c00362{bottom:262.180000pt;}
.y43_c00362{bottom:279.377333pt;}
.y42_c00362{bottom:296.574667pt;}
.y40_c00362{bottom:313.772000pt;}
.y3f_c00362{bottom:330.970667pt;}
.y3e_c00362{bottom:348.168000pt;}
.y3d_c00362{bottom:365.366667pt;}
.y3c_c00362{bottom:382.564000pt;}
.y3a_c00362{bottom:399.761333pt;}
.y39_c00362{bottom:416.958667pt;}
.y38_c00362{bottom:434.156000pt;}
.y37_c00362{bottom:451.354667pt;}
.y36_c00362{bottom:468.552000pt;}
.y34_c00362{bottom:485.749333pt;}
.y33_c00362{bottom:502.948000pt;}
.y31_c00362{bottom:520.145333pt;}
.y30_c00362{bottom:537.342667pt;}
.y2f_c00362{bottom:554.540000pt;}
.y2d_c00362{bottom:571.737333pt;}
.y2c_c00362{bottom:588.936000pt;}
.y2b_c00362{bottom:606.133333pt;}
.y29_c00362{bottom:623.332000pt;}
.y28_c00362{bottom:640.529333pt;}
.y26_c00362{bottom:657.725333pt;}
.y24_c00362{bottom:674.924000pt;}
.y23_c00362{bottom:692.121333pt;}
.y22_c00362{bottom:709.320000pt;}
.y21_c00362{bottom:726.517333pt;}
.y20_c00362{bottom:743.714667pt;}
.y1e_c00362{bottom:760.913333pt;}
.y1d_c00362{bottom:778.109333pt;}
.y1c_c00362{bottom:795.308000pt;}
.y1b_c00362{bottom:812.505333pt;}
.y19_c00362{bottom:829.702667pt;}
.y17_c00362{bottom:846.901333pt;}
.y16_c00362{bottom:864.098667pt;}
.y14_c00362{bottom:881.297333pt;}
.y12_c00362{bottom:898.493333pt;}
.y10_c00362{bottom:915.690667pt;}
.ye_c00362{bottom:932.889333pt;}
.yc_c00362{bottom:950.086667pt;}
.ya_c00362{bottom:967.285333pt;}
.y8_c00362{bottom:984.482667pt;}
.y5_c00362{bottom:1005.360000pt;}
.y4_c00362{bottom:1023.040000pt;}
.y3_c00362{bottom:1036.804000pt;}
.y2_c00362{bottom:1050.640000pt;}
.y1_c00362{bottom:1064.400000pt;}
.h6_c00362{height:16.337333pt;}
.h8_c00362{height:16.338667pt;}
.h7_c00362{height:42.549165pt;}
.h3_c00362{height:47.085938pt;}
.h2_c00362{height:47.109375pt;}
.h4_c00362{height:62.812500pt;}
.h5_c00362{height:64.500000pt;}
.h0_c00362{height:1122.560000pt;}
.h1_c00362{height:1122.666667pt;}
.w3_c00362{width:565.254667pt;}
.w2_c00362{width:793.805333pt;}
.w0_c00362{width:793.840000pt;}
.w1_c00362{width:794.000000pt;}
.x0_c00362{left:0.000000pt;}
.x8_c00362{left:6.013733pt;}
.x7_c00362{left:9.449867pt;}
.x3_c00362{left:113.440000pt;}
.x2_c00362{left:377.920000pt;}
.x1_c00362{left:396.960000pt;}
.x5_c00362{left:618.960000pt;}
.x9_c00362{left:656.480000pt;}
.x4_c00362{left:680.400000pt;}
.x6_c00362{left:872.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_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_5b1b5f952fd3a954c1fb0241.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.284180;font-style:normal;font-weight:normal;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_c68cae967c9fecb763a12939.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_51c28ce0c9fcd62d7362aef2.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;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:ff5_c00363;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00363{font-family:ff5_c00363;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00363;src:url('chunks/assets/font_2249d46d30c72646b157e6a6.woff2')format("woff");}.ff6_c00363{font-family:ff6_c00363;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00363;src:url('chunks/assets/font_b9f9372ee419fcc7746123b9.woff2')format("woff");}.ff7_c00363{font-family:ff7_c00363;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00363{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);}
.v1_c00363{vertical-align:-61.938000px;}
.v2_c00363{vertical-align:-3.849000px;}
.v0_c00363{vertical-align:0.000000px;}
.v3_c00363{vertical-align:3.868285px;}
.ls7_c00363{letter-spacing:-2.309424px;}
.lse_c00363{letter-spacing:-1.901429px;}
.ls8_c00363{letter-spacing:-1.558861px;}
.lsa_c00363{letter-spacing:-1.270183px;}
.lsb_c00363{letter-spacing:-0.431092px;}
.lsd_c00363{letter-spacing:-0.230942px;}
.lsc_c00363{letter-spacing:-0.173207px;}
.ls6_c00363{letter-spacing:0.000000px;}
.ls1_c00363{letter-spacing:0.072000px;}
.ls4_c00363{letter-spacing:0.144000px;}
.ls10_c00363{letter-spacing:0.900677px;}
.lsf_c00363{letter-spacing:1.951466px;}
.ls9_c00363{letter-spacing:2.078482px;}
.ls5_c00363{letter-spacing:3.960000px;}
.ls3_c00363{letter-spacing:15.480000px;}
.ls2_c00363{letter-spacing:30.744000px;}
.ls0_c00363{letter-spacing:319.518000px;}
.sc__c00363{text-shadow:none;}
.sc1_c00363{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_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;}
.sc1_c00363{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:-18.072000px;}
.wsa_c00363{word-spacing:-15.126727px;}
.ws27_c00363{word-spacing:-2.902181px;}
.ws28_c00363{word-spacing:-1.851391px;}
.ws25_c00363{word-spacing:-1.270183px;}
.ws11_c00363{word-spacing:-0.432000px;}
.wsf_c00363{word-spacing:-0.162000px;}
.ws12_c00363{word-spacing:-0.072000px;}
.wse_c00363{word-spacing:0.000000px;}
.ws15_c00363{word-spacing:0.360000px;}
.ws24_c00363{word-spacing:0.431092px;}
.ws26_c00363{word-spacing:0.950714px;}
.ws1f_c00363{word-spacing:2.088000px;}
.ws22_c00363{word-spacing:2.520000px;}
.ws20_c00363{word-spacing:3.456000px;}
.ws21_c00363{word-spacing:3.600000px;}
.ws1c_c00363{word-spacing:3.888000px;}
.ws1d_c00363{word-spacing:3.960000px;}
.ws13_c00363{word-spacing:4.536000px;}
.ws17_c00363{word-spacing:4.608000px;}
.ws14_c00363{word-spacing:4.680000px;}
.ws18_c00363{word-spacing:6.048000px;}
.ws19_c00363{word-spacing:6.120000px;}
.ws23_c00363{word-spacing:8.208000px;}
.ws16_c00363{word-spacing:15.480000px;}
.ws10_c00363{word-spacing:17.568000px;}
.ws1b_c00363{word-spacing:23.256000px;}
.ws1a_c00363{word-spacing:23.760000px;}
.ws1e_c00363{word-spacing:24.120000px;}
.ws1_c00363{word-spacing:31.523638px;}
.ws9_c00363{word-spacing:217.455671px;}
.ws3_c00363{word-spacing:232.247225px;}
.ws8_c00363{word-spacing:240.038304px;}
.ws5_c00363{word-spacing:240.100327px;}
.ws4_c00363{word-spacing:247.108368px;}
.wsd_c00363{word-spacing:255.495730px;}
.ws7_c00363{word-spacing:266.334323px;}
.wsb_c00363{word-spacing:327.978623px;}
.ws6_c00363{word-spacing:337.268281px;}
.ws2_c00363{word-spacing:369.265350px;}
.wsc_c00363{word-spacing:413.144406px;}
._b_c00363{margin-left:-7.100391px;}
._a_c00363{margin-left:-5.604211px;}
._6_c00363{margin-left:-3.868181px;}
._7_c00363{margin-left:-2.048187px;}
._0_c00363{margin-left:-1.015200px;}
._2_c00363{width:1.008000px;}
._5_c00363{width:2.138400px;}
._4_c00363{width:3.247200px;}
._1_c00363{width:4.276800px;}
._9_c00363{width:6.318767px;}
._3_c00363{width:15.415200px;}
._8_c00363{width:173.183140px;}
.fc0_c00363{color:rgb(0,0,0);}
.fs4_c00363{font-size:50.037600px;}
.fs0_c00363{font-size:54.000000px;}
.fs2_c00363{font-size:57.735600px;}
.fs3_c00363{font-size:61.584600px;}
.fs1_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.y26_c00363{bottom:3.848400px;}
.y22_c00363{bottom:3.848700px;}
.y20_c00363{bottom:3.848850px;}
.y28_c00363{bottom:3.849750px;}
.y24_c00363{bottom:3.850200px;}
.y2c_c00363{bottom:4.810350px;}
.y2e_c00363{bottom:4.811550px;}
.y2a_c00363{bottom:4.811850px;}
.y30_c00363{bottom:57.240000px;}
.y1e_c00363{bottom:179.640000px;}
.y1d_c00363{bottom:210.690000px;}
.y1c_c00363{bottom:241.740000px;}
.y1b_c00363{bottom:272.790000px;}
.y1a_c00363{bottom:303.840000px;}
.y19_c00363{bottom:334.890000px;}
.y18_c00363{bottom:365.940000px;}
.y17_c00363{bottom:396.990000px;}
.y16_c00363{bottom:428.040000px;}
.y15_c00363{bottom:459.090000px;}
.y14_c00363{bottom:490.140000px;}
.y13_c00363{bottom:521.190000px;}
.y12_c00363{bottom:552.240000px;}
.y11_c00363{bottom:583.290000px;}
.y10_c00363{bottom:614.340000px;}
.yf_c00363{bottom:645.390000px;}
.ye_c00363{bottom:676.440000px;}
.yd_c00363{bottom:707.490000px;}
.yc_c00363{bottom:738.540000px;}
.yb_c00363{bottom:769.590000px;}
.ya_c00363{bottom:800.640000px;}
.y9_c00363{bottom:831.510000px;}
.y8_c00363{bottom:862.560000px;}
.y7_c00363{bottom:893.610000px;}
.y6_c00363{bottom:924.660000px;}
.y5_c00363{bottom:951.750000px;}
.y2f_c00363{bottom:953.683500px;}
.y2d_c00363{bottom:972.928500px;}
.y2b_c00363{bottom:992.175000px;}
.y29_c00363{bottom:1011.418500px;}
.y27_c00363{bottom:1030.663500px;}
.y25_c00363{bottom:1049.910000px;}
.y23_c00363{bottom:1069.153500px;}
.y21_c00363{bottom:1088.400000px;}
.y1f_c00363{bottom:1107.645000px;}
.y4_c00363{bottom:1131.030000px;}
.y3_c00363{bottom:1150.915500px;}
.y2_c00363{bottom:1166.400000px;}
.y1_c00363{bottom:1197.450000px;}
.h7_c00363{height:18.283500px;}
.h8_c00363{height:47.614955px;}
.hb_c00363{height:49.109168px;}
.ha_c00363{height:50.428519px;}
.h9_c00363{height:51.483240px;}
.h5_c00363{height:52.031250px;}
.h2_c00363{height:52.998047px;}
.h3_c00363{height:70.664062px;}
.h4_c00363{height:72.562500px;}
.h6_c00363{height:75.093750px;}
.h0_c00363{height:1262.880000px;}
.h1_c00363{height:1263.000000px;}
.w4_c00363{width:599.017500px;}
.w3_c00363{width:635.733000px;}
.w2_c00363{width:893.031000px;}
.w0_c00363{width:893.070000px;}
.w1_c00363{width:893.250000px;}
.x0_c00363{left:0.000000px;}
.x9_c00363{left:1.932300px;}
.x7_c00363{left:6.763200px;}
.x2_c00363{left:127.620000px;}
.x4_c00363{left:154.620000px;}
.x8_c00363{left:164.334000px;}
.x5_c00363{left:168.930000px;}
.x6_c00363{left:181.620000px;}
.x1_c00363{left:446.580000px;}
.x3_c00363{left:765.450000px;}
@media print{
.v1_c00363{vertical-align:-55.056000pt;}
.v2_c00363{vertical-align:-3.421333pt;}
.v0_c00363{vertical-align:0.000000pt;}
.v3_c00363{vertical-align:3.438476pt;}
.ls7_c00363{letter-spacing:-2.052821pt;}
.lse_c00363{letter-spacing:-1.690159pt;}
.ls8_c00363{letter-spacing:-1.385654pt;}
.lsa_c00363{letter-spacing:-1.129052pt;}
.lsb_c00363{letter-spacing:-0.383193pt;}
.lsd_c00363{letter-spacing:-0.205282pt;}
.lsc_c00363{letter-spacing:-0.153962pt;}
.ls6_c00363{letter-spacing:0.000000pt;}
.ls1_c00363{letter-spacing:0.064000pt;}
.ls4_c00363{letter-spacing:0.128000pt;}
.ls10_c00363{letter-spacing:0.800602pt;}
.lsf_c00363{letter-spacing:1.734637pt;}
.ls9_c00363{letter-spacing:1.847539pt;}
.ls5_c00363{letter-spacing:3.520000pt;}
.ls3_c00363{letter-spacing:13.760000pt;}
.ls2_c00363{letter-spacing:27.328000pt;}
.ls0_c00363{letter-spacing:284.016000pt;}
.ws0_c00363{word-spacing:-16.064000pt;}
.wsa_c00363{word-spacing:-13.445980pt;}
.ws27_c00363{word-spacing:-2.579716pt;}
.ws28_c00363{word-spacing:-1.645681pt;}
.ws25_c00363{word-spacing:-1.129052pt;}
.ws11_c00363{word-spacing:-0.384000pt;}
.wsf_c00363{word-spacing:-0.144000pt;}
.ws12_c00363{word-spacing:-0.064000pt;}
.wse_c00363{word-spacing:0.000000pt;}
.ws15_c00363{word-spacing:0.320000pt;}
.ws24_c00363{word-spacing:0.383193pt;}
.ws26_c00363{word-spacing:0.845079pt;}
.ws1f_c00363{word-spacing:1.856000pt;}
.ws22_c00363{word-spacing:2.240000pt;}
.ws20_c00363{word-spacing:3.072000pt;}
.ws21_c00363{word-spacing:3.200000pt;}
.ws1c_c00363{word-spacing:3.456000pt;}
.ws1d_c00363{word-spacing:3.520000pt;}
.ws13_c00363{word-spacing:4.032000pt;}
.ws17_c00363{word-spacing:4.096000pt;}
.ws14_c00363{word-spacing:4.160000pt;}
.ws18_c00363{word-spacing:5.376000pt;}
.ws19_c00363{word-spacing:5.440000pt;}
.ws23_c00363{word-spacing:7.296000pt;}
.ws16_c00363{word-spacing:13.760000pt;}
.ws10_c00363{word-spacing:15.616000pt;}
.ws1b_c00363{word-spacing:20.672000pt;}
.ws1a_c00363{word-spacing:21.120000pt;}
.ws1e_c00363{word-spacing:21.440000pt;}
.ws1_c00363{word-spacing:28.021011pt;}
.ws9_c00363{word-spacing:193.293930pt;}
.ws3_c00363{word-spacing:206.441977pt;}
.ws8_c00363{word-spacing:213.367381pt;}
.ws5_c00363{word-spacing:213.422512pt;}
.ws4_c00363{word-spacing:219.651883pt;}
.wsd_c00363{word-spacing:227.107315pt;}
.ws7_c00363{word-spacing:236.741620pt;}
.wsb_c00363{word-spacing:291.536554pt;}
.ws6_c00363{word-spacing:299.794028pt;}
.ws2_c00363{word-spacing:328.235867pt;}
.wsc_c00363{word-spacing:367.239472pt;}
._b_c00363{margin-left:-6.311459pt;}
._a_c00363{margin-left:-4.981521pt;}
._6_c00363{margin-left:-3.438383pt;}
._7_c00363{margin-left:-1.820611pt;}
._0_c00363{margin-left:-0.902400pt;}
._2_c00363{width:0.896000pt;}
._5_c00363{width:1.900800pt;}
._4_c00363{width:2.886400pt;}
._1_c00363{width:3.801600pt;}
._9_c00363{width:5.616682pt;}
._3_c00363{width:13.702400pt;}
._8_c00363{width:153.940569pt;}
.fs4_c00363{font-size:44.477867pt;}
.fs0_c00363{font-size:48.000000pt;}
.fs2_c00363{font-size:51.320533pt;}
.fs3_c00363{font-size:54.741867pt;}
.fs1_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y26_c00363{bottom:3.420800pt;}
.y22_c00363{bottom:3.421067pt;}
.y20_c00363{bottom:3.421200pt;}
.y28_c00363{bottom:3.422000pt;}
.y24_c00363{bottom:3.422400pt;}
.y2c_c00363{bottom:4.275867pt;}
.y2e_c00363{bottom:4.276933pt;}
.y2a_c00363{bottom:4.277200pt;}
.y30_c00363{bottom:50.880000pt;}
.y1e_c00363{bottom:159.680000pt;}
.y1d_c00363{bottom:187.280000pt;}
.y1c_c00363{bottom:214.880000pt;}
.y1b_c00363{bottom:242.480000pt;}
.y1a_c00363{bottom:270.080000pt;}
.y19_c00363{bottom:297.680000pt;}
.y18_c00363{bottom:325.280000pt;}
.y17_c00363{bottom:352.880000pt;}
.y16_c00363{bottom:380.480000pt;}
.y15_c00363{bottom:408.080000pt;}
.y14_c00363{bottom:435.680000pt;}
.y13_c00363{bottom:463.280000pt;}
.y12_c00363{bottom:490.880000pt;}
.y11_c00363{bottom:518.480000pt;}
.y10_c00363{bottom:546.080000pt;}
.yf_c00363{bottom:573.680000pt;}
.ye_c00363{bottom:601.280000pt;}
.yd_c00363{bottom:628.880000pt;}
.yc_c00363{bottom:656.480000pt;}
.yb_c00363{bottom:684.080000pt;}
.ya_c00363{bottom:711.680000pt;}
.y9_c00363{bottom:739.120000pt;}
.y8_c00363{bottom:766.720000pt;}
.y7_c00363{bottom:794.320000pt;}
.y6_c00363{bottom:821.920000pt;}
.y5_c00363{bottom:846.000000pt;}
.y2f_c00363{bottom:847.718667pt;}
.y2d_c00363{bottom:864.825333pt;}
.y2b_c00363{bottom:881.933333pt;}
.y29_c00363{bottom:899.038667pt;}
.y27_c00363{bottom:916.145333pt;}
.y25_c00363{bottom:933.253333pt;}
.y23_c00363{bottom:950.358667pt;}
.y21_c00363{bottom:967.466667pt;}
.y1f_c00363{bottom:984.573333pt;}
.y4_c00363{bottom:1005.360000pt;}
.y3_c00363{bottom:1023.036000pt;}
.y2_c00363{bottom:1036.800000pt;}
.y1_c00363{bottom:1064.400000pt;}
.h7_c00363{height:16.252000pt;}
.h8_c00363{height:42.324405pt;}
.hb_c00363{height:43.652594pt;}
.ha_c00363{height:44.825350pt;}
.h9_c00363{height:45.762880pt;}
.h5_c00363{height:46.250000pt;}
.h2_c00363{height:47.109375pt;}
.h3_c00363{height:62.812500pt;}
.h4_c00363{height:64.500000pt;}
.h6_c00363{height:66.750000pt;}
.h0_c00363{height:1122.560000pt;}
.h1_c00363{height:1122.666667pt;}
.w4_c00363{width:532.460000pt;}
.w3_c00363{width:565.096000pt;}
.w2_c00363{width:793.805333pt;}
.w0_c00363{width:793.840000pt;}
.w1_c00363{width:794.000000pt;}
.x0_c00363{left:0.000000pt;}
.x9_c00363{left:1.717600pt;}
.x7_c00363{left:6.011733pt;}
.x2_c00363{left:113.440000pt;}
.x4_c00363{left:137.440000pt;}
.x8_c00363{left:146.074667pt;}
.x5_c00363{left:150.160000pt;}
.x6_c00363{left:161.440000pt;}
.x1_c00363{left:396.960000pt;}
.x3_c00363{left:680.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_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_b3ce8b9a6ca95b28860e73a6.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_6db1f8c889166c2b889dfbf7.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;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_c00364;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_4c62dd00a6b7b48ed5786569.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00364{vertical-align:-82.800000px;}
.v0_c00364{vertical-align:0.000000px;}
.ls7_c00364{letter-spacing:-0.360000px;}
.ls6_c00364{letter-spacing:-0.108000px;}
.ls5_c00364{letter-spacing:0.000000px;}
.ls1_c00364{letter-spacing:0.072000px;}
.ls3_c00364{letter-spacing:0.086400px;}
.ls4_c00364{letter-spacing:0.144000px;}
.ls2_c00364{letter-spacing:30.744000px;}
.ls0_c00364{letter-spacing:198.000000px;}
.sc__c00364{text-shadow:none;}
.sc1_c00364{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_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;}
.sc1_c00364{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:-18.000000px;}
.ws6_c00364{word-spacing:-0.432000px;}
.ws1a_c00364{word-spacing:-0.144000px;}
.ws19_c00364{word-spacing:-0.072000px;}
.ws1_c00364{word-spacing:0.000000px;}
.ws3_c00364{word-spacing:0.162000px;}
.ws2_c00364{word-spacing:0.270000px;}
.ws15_c00364{word-spacing:0.360000px;}
.ws5_c00364{word-spacing:0.648000px;}
.ws4_c00364{word-spacing:1.080000px;}
.ws13_c00364{word-spacing:1.368000px;}
.ws18_c00364{word-spacing:1.440000px;}
.ws1d_c00364{word-spacing:1.728000px;}
.ws25_c00364{word-spacing:2.088000px;}
.ws24_c00364{word-spacing:2.160000px;}
.ws11_c00364{word-spacing:2.448000px;}
.ws12_c00364{word-spacing:2.520000px;}
.ws1b_c00364{word-spacing:3.240000px;}
.ws16_c00364{word-spacing:3.528000px;}
.ws17_c00364{word-spacing:3.816000px;}
.ws26_c00364{word-spacing:3.888000px;}
.ws10_c00364{word-spacing:5.328000px;}
.wsf_c00364{word-spacing:5.400000px;}
.ws1c_c00364{word-spacing:6.048000px;}
.ws1e_c00364{word-spacing:7.848000px;}
.ws23_c00364{word-spacing:9.648000px;}
.ws22_c00364{word-spacing:9.720000px;}
.wsd_c00364{word-spacing:11.088000px;}
.wse_c00364{word-spacing:11.160000px;}
.wsb_c00364{word-spacing:13.968000px;}
.wsc_c00364{word-spacing:14.040000px;}
.ws21_c00364{word-spacing:15.120000px;}
.ws9_c00364{word-spacing:19.800000px;}
.ws20_c00364{word-spacing:24.120000px;}
.ws14_c00364{word-spacing:26.640000px;}
.ws7_c00364{word-spacing:27.648000px;}
.ws8_c00364{word-spacing:27.720000px;}
.wsa_c00364{word-spacing:30.960000px;}
.ws1f_c00364{word-spacing:44.568000px;}
._1_c00364{margin-left:-1.058400px;}
._0_c00364{width:1.220400px;}
._4_c00364{width:2.736000px;}
._3_c00364{width:4.204800px;}
._2_c00364{width:27.360000px;}
.fc0_c00364{color:rgb(0,0,0);}
.fs0_c00364{font-size:54.000000px;}
.fs1_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y26_c00364{bottom:57.240000px;}
.y25_c00364{bottom:116.820000px;}
.y24_c00364{bottom:147.870000px;}
.y23_c00364{bottom:178.920000px;}
.y22_c00364{bottom:209.970000px;}
.y21_c00364{bottom:241.020000px;}
.y20_c00364{bottom:272.070000px;}
.y1f_c00364{bottom:303.120000px;}
.y1e_c00364{bottom:334.170000px;}
.y1d_c00364{bottom:365.220000px;}
.y1c_c00364{bottom:396.270000px;}
.y1b_c00364{bottom:427.320000px;}
.y1a_c00364{bottom:458.370000px;}
.y19_c00364{bottom:489.420000px;}
.y18_c00364{bottom:520.470000px;}
.y17_c00364{bottom:551.520000px;}
.y16_c00364{bottom:582.570000px;}
.y15_c00364{bottom:613.620000px;}
.y14_c00364{bottom:644.670000px;}
.y13_c00364{bottom:675.720000px;}
.y12_c00364{bottom:706.770000px;}
.y11_c00364{bottom:737.820000px;}
.y10_c00364{bottom:768.870000px;}
.yf_c00364{bottom:799.920000px;}
.ye_c00364{bottom:830.970000px;}
.yd_c00364{bottom:861.930000px;}
.yc_c00364{bottom:892.980000px;}
.yb_c00364{bottom:924.030000px;}
.ya_c00364{bottom:955.080000px;}
.y9_c00364{bottom:986.130000px;}
.y8_c00364{bottom:1017.180000px;}
.y7_c00364{bottom:1048.230000px;}
.y6_c00364{bottom:1079.280000px;}
.y5_c00364{bottom:1131.030000px;}
.y4_c00364{bottom:1150.920000px;}
.y3_c00364{bottom:1166.404500px;}
.y2_c00364{bottom:1181.970000px;}
.y1_c00364{bottom:1197.450000px;}
.h5_c00364{height:52.031250px;}
.h3_c00364{height:52.971680px;}
.h2_c00364{height:52.998047px;}
.h4_c00364{height:70.664062px;}
.h6_c00364{height:75.093750px;}
.h0_c00364{height:1262.880000px;}
.h1_c00364{height:1263.000000px;}
.w2_c00364{width:893.031000px;}
.w0_c00364{width:893.070000px;}
.w1_c00364{width:893.250000px;}
.x0_c00364{left:0.000000px;}
.x3_c00364{left:127.620000px;}
.x5_c00364{left:154.620000px;}
.x6_c00364{left:168.930000px;}
.x4_c00364{left:181.620000px;}
.x2_c00364{left:425.160000px;}
.x1_c00364{left:446.580000px;}
.x7_c00364{left:738.540000px;}
@media print{
.v1_c00364{vertical-align:-73.600000pt;}
.v0_c00364{vertical-align:0.000000pt;}
.ls7_c00364{letter-spacing:-0.320000pt;}
.ls6_c00364{letter-spacing:-0.096000pt;}
.ls5_c00364{letter-spacing:0.000000pt;}
.ls1_c00364{letter-spacing:0.064000pt;}
.ls3_c00364{letter-spacing:0.076800pt;}
.ls4_c00364{letter-spacing:0.128000pt;}
.ls2_c00364{letter-spacing:27.328000pt;}
.ls0_c00364{letter-spacing:176.000000pt;}
.ws0_c00364{word-spacing:-16.000000pt;}
.ws6_c00364{word-spacing:-0.384000pt;}
.ws1a_c00364{word-spacing:-0.128000pt;}
.ws19_c00364{word-spacing:-0.064000pt;}
.ws1_c00364{word-spacing:0.000000pt;}
.ws3_c00364{word-spacing:0.144000pt;}
.ws2_c00364{word-spacing:0.240000pt;}
.ws15_c00364{word-spacing:0.320000pt;}
.ws5_c00364{word-spacing:0.576000pt;}
.ws4_c00364{word-spacing:0.960000pt;}
.ws13_c00364{word-spacing:1.216000pt;}
.ws18_c00364{word-spacing:1.280000pt;}
.ws1d_c00364{word-spacing:1.536000pt;}
.ws25_c00364{word-spacing:1.856000pt;}
.ws24_c00364{word-spacing:1.920000pt;}
.ws11_c00364{word-spacing:2.176000pt;}
.ws12_c00364{word-spacing:2.240000pt;}
.ws1b_c00364{word-spacing:2.880000pt;}
.ws16_c00364{word-spacing:3.136000pt;}
.ws17_c00364{word-spacing:3.392000pt;}
.ws26_c00364{word-spacing:3.456000pt;}
.ws10_c00364{word-spacing:4.736000pt;}
.wsf_c00364{word-spacing:4.800000pt;}
.ws1c_c00364{word-spacing:5.376000pt;}
.ws1e_c00364{word-spacing:6.976000pt;}
.ws23_c00364{word-spacing:8.576000pt;}
.ws22_c00364{word-spacing:8.640000pt;}
.wsd_c00364{word-spacing:9.856000pt;}
.wse_c00364{word-spacing:9.920000pt;}
.wsb_c00364{word-spacing:12.416000pt;}
.wsc_c00364{word-spacing:12.480000pt;}
.ws21_c00364{word-spacing:13.440000pt;}
.ws9_c00364{word-spacing:17.600000pt;}
.ws20_c00364{word-spacing:21.440000pt;}
.ws14_c00364{word-spacing:23.680000pt;}
.ws7_c00364{word-spacing:24.576000pt;}
.ws8_c00364{word-spacing:24.640000pt;}
.wsa_c00364{word-spacing:27.520000pt;}
.ws1f_c00364{word-spacing:39.616000pt;}
._1_c00364{margin-left:-0.940800pt;}
._0_c00364{width:1.084800pt;}
._4_c00364{width:2.432000pt;}
._3_c00364{width:3.737600pt;}
._2_c00364{width:24.320000pt;}
.fs0_c00364{font-size:48.000000pt;}
.fs1_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y26_c00364{bottom:50.880000pt;}
.y25_c00364{bottom:103.840000pt;}
.y24_c00364{bottom:131.440000pt;}
.y23_c00364{bottom:159.040000pt;}
.y22_c00364{bottom:186.640000pt;}
.y21_c00364{bottom:214.240000pt;}
.y20_c00364{bottom:241.840000pt;}
.y1f_c00364{bottom:269.440000pt;}
.y1e_c00364{bottom:297.040000pt;}
.y1d_c00364{bottom:324.640000pt;}
.y1c_c00364{bottom:352.240000pt;}
.y1b_c00364{bottom:379.840000pt;}
.y1a_c00364{bottom:407.440000pt;}
.y19_c00364{bottom:435.040000pt;}
.y18_c00364{bottom:462.640000pt;}
.y17_c00364{bottom:490.240000pt;}
.y16_c00364{bottom:517.840000pt;}
.y15_c00364{bottom:545.440000pt;}
.y14_c00364{bottom:573.040000pt;}
.y13_c00364{bottom:600.640000pt;}
.y12_c00364{bottom:628.240000pt;}
.y11_c00364{bottom:655.840000pt;}
.y10_c00364{bottom:683.440000pt;}
.yf_c00364{bottom:711.040000pt;}
.ye_c00364{bottom:738.640000pt;}
.yd_c00364{bottom:766.160000pt;}
.yc_c00364{bottom:793.760000pt;}
.yb_c00364{bottom:821.360000pt;}
.ya_c00364{bottom:848.960000pt;}
.y9_c00364{bottom:876.560000pt;}
.y8_c00364{bottom:904.160000pt;}
.y7_c00364{bottom:931.760000pt;}
.y6_c00364{bottom:959.360000pt;}
.y5_c00364{bottom:1005.360000pt;}
.y4_c00364{bottom:1023.040000pt;}
.y3_c00364{bottom:1036.804000pt;}
.y2_c00364{bottom:1050.640000pt;}
.y1_c00364{bottom:1064.400000pt;}
.h5_c00364{height:46.250000pt;}
.h3_c00364{height:47.085938pt;}
.h2_c00364{height:47.109375pt;}
.h4_c00364{height:62.812500pt;}
.h6_c00364{height:66.750000pt;}
.h0_c00364{height:1122.560000pt;}
.h1_c00364{height:1122.666667pt;}
.w2_c00364{width:793.805333pt;}
.w0_c00364{width:793.840000pt;}
.w1_c00364{width:794.000000pt;}
.x0_c00364{left:0.000000pt;}
.x3_c00364{left:113.440000pt;}
.x5_c00364{left:137.440000pt;}
.x6_c00364{left:150.160000pt;}
.x4_c00364{left:161.440000pt;}
.x2_c00364{left:377.920000pt;}
.x1_c00364{left:396.960000pt;}
.x7_c00364{left:656.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_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_c52e16c142a400b4c165e07f.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.284180;font-style:normal;font-weight:normal;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_f6336102dcb727fc4594532d.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00365{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_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);}
.v2_c00365{vertical-align:-82.800000px;}
.v1_c00365{vertical-align:-61.938000px;}
.v0_c00365{vertical-align:0.000000px;}
.ls8_c00365{letter-spacing:-0.420840px;}
.lsa_c00365{letter-spacing:-0.360000px;}
.ls6_c00365{letter-spacing:-0.288000px;}
.ls9_c00365{letter-spacing:-0.180360px;}
.lsb_c00365{letter-spacing:-0.144000px;}
.ls5_c00365{letter-spacing:0.000000px;}
.ls2_c00365{letter-spacing:0.072000px;}
.ls7_c00365{letter-spacing:0.144000px;}
.ls3_c00365{letter-spacing:4.327200px;}
.ls4_c00365{letter-spacing:6.120000px;}
.ls1_c00365{letter-spacing:198.000000px;}
.ls0_c00365{letter-spacing:319.518000px;}
.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:-18.072000px;}
.ws1_c00365{word-spacing:-17.856000px;}
.ws0_c00365{word-spacing:-17.640000px;}
.wsf_c00365{word-spacing:-0.360000px;}
.ws4_c00365{word-spacing:-0.162000px;}
.wsb_c00365{word-spacing:-0.144000px;}
.wsa_c00365{word-spacing:-0.072000px;}
.wse_c00365{word-spacing:-0.060120px;}
.ws3_c00365{word-spacing:0.000000px;}
.wsc_c00365{word-spacing:0.120240px;}
.ws15_c00365{word-spacing:0.144000px;}
.ws1d_c00365{word-spacing:0.360000px;}
.wsd_c00365{word-spacing:0.541080px;}
.ws14_c00365{word-spacing:4.248000px;}
.ws13_c00365{word-spacing:4.320000px;}
.ws6_c00365{word-spacing:5.328000px;}
.ws5_c00365{word-spacing:5.400000px;}
.ws16_c00365{word-spacing:6.120000px;}
.ws8_c00365{word-spacing:7.560000px;}
.ws7_c00365{word-spacing:7.848000px;}
.ws10_c00365{word-spacing:7.920000px;}
.ws12_c00365{word-spacing:12.600000px;}
.ws9_c00365{word-spacing:15.408000px;}
.ws18_c00365{word-spacing:15.840000px;}
.ws1b_c00365{word-spacing:16.848000px;}
.ws1c_c00365{word-spacing:16.920000px;}
.ws19_c00365{word-spacing:17.208000px;}
.ws1a_c00365{word-spacing:17.280000px;}
.ws17_c00365{word-spacing:18.000000px;}
.ws11_c00365{word-spacing:24.048000px;}
._0_c00365{margin-left:-1.015200px;}
._1_c00365{width:1.080000px;}
._3_c00365{width:6.408000px;}
._2_c00365{width:11.887200px;}
._4_c00365{width:15.408000px;}
._5_c00365{width:16.783200px;}
.fc0_c00365{color:rgb(0,0,0);}
.fs0_c00365{font-size:54.000000px;}
.fs2_c00365{font-size:60.120000px;}
.fs1_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y22_c00365{bottom:57.240000px;}
.yf_c00365{bottom:70.650000px;}
.ya_c00365{bottom:87.840000px;}
.y21_c00365{bottom:136.980000px;}
.y20_c00365{bottom:168.030000px;}
.y1f_c00365{bottom:199.080000px;}
.y1e_c00365{bottom:230.130000px;}
.y1d_c00365{bottom:261.180000px;}
.y1c_c00365{bottom:292.230000px;}
.y1b_c00365{bottom:323.280000px;}
.y1a_c00365{bottom:354.330000px;}
.y19_c00365{bottom:385.380000px;}
.y18_c00365{bottom:416.430000px;}
.y17_c00365{bottom:447.480000px;}
.y16_c00365{bottom:478.530000px;}
.y15_c00365{bottom:509.580000px;}
.y14_c00365{bottom:529.560000px;}
.y13_c00365{bottom:547.290000px;}
.y9_c00365{bottom:564.030000px;}
.y12_c00365{bottom:585.000000px;}
.y11_c00365{bottom:616.050000px;}
.y10_c00365{bottom:647.100000px;}
.ye_c00365{bottom:671.130000px;}
.yd_c00365{bottom:833.130000px;}
.yc_c00365{bottom:864.180000px;}
.yb_c00365{bottom:895.230000px;}
.y8_c00365{bottom:985.950000px;}
.y7_c00365{bottom:1017.180000px;}
.y6_c00365{bottom:1048.230000px;}
.y5_c00365{bottom:1079.280000px;}
.y4_c00365{bottom:1131.030000px;}
.y3_c00365{bottom:1150.915500px;}
.y2_c00365{bottom:1166.400000px;}
.y1_c00365{bottom:1197.450000px;}
.h2_c00365{height:52.998047px;}
.h7_c00365{height:60.589687px;}
.h3_c00365{height:70.664062px;}
.h4_c00365{height:72.562500px;}
.h6_c00365{height:87.210000px;}
.h5_c00365{height:407.610000px;}
.h0_c00365{height:1262.880000px;}
.h1_c00365{height:1263.000000px;}
.w2_c00365{width:29.341500px;}
.w4_c00365{width:307.890000px;}
.w3_c00365{width:307.980000px;}
.w0_c00365{width:893.070000px;}
.w1_c00365{width:893.250000px;}
.x0_c00365{left:0.000000px;}
.x10_c00365{left:7.740000px;}
.x6_c00365{left:25.110000px;}
.x5_c00365{left:119.520000px;}
.x2_c00365{left:127.620000px;}
.xd_c00365{left:148.860000px;}
.x12_c00365{left:161.820000px;}
.x3_c00365{left:181.620000px;}
.x8_c00365{left:182.790000px;}
.x9_c00365{left:204.570000px;}
.x13_c00365{left:234.810000px;}
.xe_c00365{left:244.170000px;}
.x7_c00365{left:249.750000px;}
.x11_c00365{left:251.820000px;}
.x4_c00365{left:290.160000px;}
.x17_c00365{left:352.350000px;}
.x1_c00365{left:446.580000px;}
.xf_c00365{left:457.560000px;}
.x15_c00365{left:467.820000px;}
.xb_c00365{left:491.130000px;}
.xc_c00365{left:512.550000px;}
.x16_c00365{left:542.790000px;}
.xa_c00365{left:551.520000px;}
.x14_c00365{left:557.550000px;}
@media print{
.v2_c00365{vertical-align:-73.600000pt;}
.v1_c00365{vertical-align:-55.056000pt;}
.v0_c00365{vertical-align:0.000000pt;}
.ls8_c00365{letter-spacing:-0.374080pt;}
.lsa_c00365{letter-spacing:-0.320000pt;}
.ls6_c00365{letter-spacing:-0.256000pt;}
.ls9_c00365{letter-spacing:-0.160320pt;}
.lsb_c00365{letter-spacing:-0.128000pt;}
.ls5_c00365{letter-spacing:0.000000pt;}
.ls2_c00365{letter-spacing:0.064000pt;}
.ls7_c00365{letter-spacing:0.128000pt;}
.ls3_c00365{letter-spacing:3.846400pt;}
.ls4_c00365{letter-spacing:5.440000pt;}
.ls1_c00365{letter-spacing:176.000000pt;}
.ls0_c00365{letter-spacing:284.016000pt;}
.ws2_c00365{word-spacing:-16.064000pt;}
.ws1_c00365{word-spacing:-15.872000pt;}
.ws0_c00365{word-spacing:-15.680000pt;}
.wsf_c00365{word-spacing:-0.320000pt;}
.ws4_c00365{word-spacing:-0.144000pt;}
.wsb_c00365{word-spacing:-0.128000pt;}
.wsa_c00365{word-spacing:-0.064000pt;}
.wse_c00365{word-spacing:-0.053440pt;}
.ws3_c00365{word-spacing:0.000000pt;}
.wsc_c00365{word-spacing:0.106880pt;}
.ws15_c00365{word-spacing:0.128000pt;}
.ws1d_c00365{word-spacing:0.320000pt;}
.wsd_c00365{word-spacing:0.480960pt;}
.ws14_c00365{word-spacing:3.776000pt;}
.ws13_c00365{word-spacing:3.840000pt;}
.ws6_c00365{word-spacing:4.736000pt;}
.ws5_c00365{word-spacing:4.800000pt;}
.ws16_c00365{word-spacing:5.440000pt;}
.ws8_c00365{word-spacing:6.720000pt;}
.ws7_c00365{word-spacing:6.976000pt;}
.ws10_c00365{word-spacing:7.040000pt;}
.ws12_c00365{word-spacing:11.200000pt;}
.ws9_c00365{word-spacing:13.696000pt;}
.ws18_c00365{word-spacing:14.080000pt;}
.ws1b_c00365{word-spacing:14.976000pt;}
.ws1c_c00365{word-spacing:15.040000pt;}
.ws19_c00365{word-spacing:15.296000pt;}
.ws1a_c00365{word-spacing:15.360000pt;}
.ws17_c00365{word-spacing:16.000000pt;}
.ws11_c00365{word-spacing:21.376000pt;}
._0_c00365{margin-left:-0.902400pt;}
._1_c00365{width:0.960000pt;}
._3_c00365{width:5.696000pt;}
._2_c00365{width:10.566400pt;}
._4_c00365{width:13.696000pt;}
._5_c00365{width:14.918400pt;}
.fs0_c00365{font-size:48.000000pt;}
.fs2_c00365{font-size:53.440000pt;}
.fs1_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y22_c00365{bottom:50.880000pt;}
.yf_c00365{bottom:62.800000pt;}
.ya_c00365{bottom:78.080000pt;}
.y21_c00365{bottom:121.760000pt;}
.y20_c00365{bottom:149.360000pt;}
.y1f_c00365{bottom:176.960000pt;}
.y1e_c00365{bottom:204.560000pt;}
.y1d_c00365{bottom:232.160000pt;}
.y1c_c00365{bottom:259.760000pt;}
.y1b_c00365{bottom:287.360000pt;}
.y1a_c00365{bottom:314.960000pt;}
.y19_c00365{bottom:342.560000pt;}
.y18_c00365{bottom:370.160000pt;}
.y17_c00365{bottom:397.760000pt;}
.y16_c00365{bottom:425.360000pt;}
.y15_c00365{bottom:452.960000pt;}
.y14_c00365{bottom:470.720000pt;}
.y13_c00365{bottom:486.480000pt;}
.y9_c00365{bottom:501.360000pt;}
.y12_c00365{bottom:520.000000pt;}
.y11_c00365{bottom:547.600000pt;}
.y10_c00365{bottom:575.200000pt;}
.ye_c00365{bottom:596.560000pt;}
.yd_c00365{bottom:740.560000pt;}
.yc_c00365{bottom:768.160000pt;}
.yb_c00365{bottom:795.760000pt;}
.y8_c00365{bottom:876.400000pt;}
.y7_c00365{bottom:904.160000pt;}
.y6_c00365{bottom:931.760000pt;}
.y5_c00365{bottom:959.360000pt;}
.y4_c00365{bottom:1005.360000pt;}
.y3_c00365{bottom:1023.036000pt;}
.y2_c00365{bottom:1036.800000pt;}
.y1_c00365{bottom:1064.400000pt;}
.h2_c00365{height:47.109375pt;}
.h7_c00365{height:53.857500pt;}
.h3_c00365{height:62.812500pt;}
.h4_c00365{height:64.500000pt;}
.h6_c00365{height:77.520000pt;}
.h5_c00365{height:362.320000pt;}
.h0_c00365{height:1122.560000pt;}
.h1_c00365{height:1122.666667pt;}
.w2_c00365{width:26.081333pt;}
.w4_c00365{width:273.680000pt;}
.w3_c00365{width:273.760000pt;}
.w0_c00365{width:793.840000pt;}
.w1_c00365{width:794.000000pt;}
.x0_c00365{left:0.000000pt;}
.x10_c00365{left:6.880000pt;}
.x6_c00365{left:22.320000pt;}
.x5_c00365{left:106.240000pt;}
.x2_c00365{left:113.440000pt;}
.xd_c00365{left:132.320000pt;}
.x12_c00365{left:143.840000pt;}
.x3_c00365{left:161.440000pt;}
.x8_c00365{left:162.480000pt;}
.x9_c00365{left:181.840000pt;}
.x13_c00365{left:208.720000pt;}
.xe_c00365{left:217.040000pt;}
.x7_c00365{left:222.000000pt;}
.x11_c00365{left:223.840000pt;}
.x4_c00365{left:257.920000pt;}
.x17_c00365{left:313.200000pt;}
.x1_c00365{left:396.960000pt;}
.xf_c00365{left:406.720000pt;}
.x15_c00365{left:415.840000pt;}
.xb_c00365{left:436.560000pt;}
.xc_c00365{left:455.600000pt;}
.x16_c00365{left:482.480000pt;}
.xa_c00365{left:490.240000pt;}
.x14_c00365{left:495.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_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_71a229afbbfe299f58cbac09.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00366{vertical-align:-20.880000px;}
.v0_c00366{vertical-align:0.000000px;}
.v1_c00366{vertical-align:27.000000px;}
.ls11_c00366{letter-spacing:-0.360000px;}
.ls13_c00366{letter-spacing:-0.288000px;}
.ls16_c00366{letter-spacing:-0.180360px;}
.lsf_c00366{letter-spacing:-0.108000px;}
.ls10_c00366{letter-spacing:-0.072000px;}
.ls15_c00366{letter-spacing:-0.060120px;}
.lse_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:0.072000px;}
.lsd_c00366{letter-spacing:0.108216px;}
.ls12_c00366{letter-spacing:0.144000px;}
.ls14_c00366{letter-spacing:0.180360px;}
.ls1_c00366{letter-spacing:0.191520px;}
.lsa_c00366{letter-spacing:2.520000px;}
.ls6_c00366{letter-spacing:4.708800px;}
.ls9_c00366{letter-spacing:6.480000px;}
.ls3_c00366{letter-spacing:6.840000px;}
.ls8_c00366{letter-spacing:8.280000px;}
.ls4_c00366{letter-spacing:10.800000px;}
.lsc_c00366{letter-spacing:11.603160px;}
.ls7_c00366{letter-spacing:11.880000px;}
.lsb_c00366{letter-spacing:13.320000px;}
.ls5_c00366{letter-spacing:15.120000px;}
.ls2_c00366{letter-spacing:15.480000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00366{word-spacing:-18.072000px;}
.ws3_c00366{word-spacing:-18.000000px;}
.ws2_c00366{word-spacing:-17.928000px;}
.ws4_c00366{word-spacing:-17.712000px;}
.ws5_c00366{word-spacing:-17.640000px;}
.ws7_c00366{word-spacing:-14.849640px;}
.ws0_c00366{word-spacing:-12.161520px;}
.ws6_c00366{word-spacing:-9.720000px;}
.ws2f_c00366{word-spacing:-0.180360px;}
.ws15_c00366{word-spacing:-0.072000px;}
.ws8_c00366{word-spacing:0.000000px;}
.wsa_c00366{word-spacing:0.162000px;}
.ws9_c00366{word-spacing:0.270000px;}
.ws22_c00366{word-spacing:2.160000px;}
.ws2a_c00366{word-spacing:2.448000px;}
.ws2b_c00366{word-spacing:2.520000px;}
.ws20_c00366{word-spacing:4.608000px;}
.ws21_c00366{word-spacing:4.680000px;}
.ws17_c00366{word-spacing:4.968000px;}
.wsd_c00366{word-spacing:6.048000px;}
.ws29_c00366{word-spacing:6.336000px;}
.wsb_c00366{word-spacing:6.408000px;}
.wsc_c00366{word-spacing:6.480000px;}
.ws13_c00366{word-spacing:6.768000px;}
.ws14_c00366{word-spacing:6.840000px;}
.ws1b_c00366{word-spacing:7.560000px;}
.ws23_c00366{word-spacing:7.848000px;}
.ws27_c00366{word-spacing:8.208000px;}
.ws26_c00366{word-spacing:8.280000px;}
.ws2c_c00366{word-spacing:8.640000px;}
.ws16_c00366{word-spacing:11.160000px;}
.ws2e_c00366{word-spacing:11.422800px;}
.ws18_c00366{word-spacing:11.448000px;}
.ws25_c00366{word-spacing:11.808000px;}
.ws24_c00366{word-spacing:11.880000px;}
.ws2d_c00366{word-spacing:13.248000px;}
.wse_c00366{word-spacing:14.328000px;}
.ws19_c00366{word-spacing:14.760000px;}
.ws11_c00366{word-spacing:15.408000px;}
.ws12_c00366{word-spacing:15.480000px;}
.ws1a_c00366{word-spacing:16.560000px;}
.ws1c_c00366{word-spacing:17.928000px;}
.ws1d_c00366{word-spacing:18.360000px;}
.wsf_c00366{word-spacing:19.728000px;}
.ws10_c00366{word-spacing:19.800000px;}
.ws28_c00366{word-spacing:29.448000px;}
.ws1f_c00366{word-spacing:33.408000px;}
.ws1e_c00366{word-spacing:33.696000px;}
._1_c00366{margin-left:-1.058400px;}
._0_c00366{width:1.220400px;}
._3_c00366{width:2.664000px;}
._2_c00366{width:5.544000px;}
._4_c00366{width:6.733440px;}
._6_c00366{width:11.376000px;}
._5_c00366{width:15.912000px;}
.fc0_c00366{color:rgb(0,0,0);}
.fs3_c00366{font-size:38.880000px;}
.fs2_c00366{font-size:47.880000px;}
.fs0_c00366{font-size:54.000000px;}
.fs4_c00366{font-size:60.120000px;}
.fs1_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y27_c00366{bottom:57.240000px;}
.y26_c00366{bottom:109.791180px;}
.y25_c00366{bottom:126.985500px;}
.y24_c00366{bottom:149.490000px;}
.y28_c00366{bottom:162.180000px;}
.y23_c00366{bottom:209.970000px;}
.y22_c00366{bottom:241.020000px;}
.y21_c00366{bottom:272.070000px;}
.y20_c00366{bottom:303.120000px;}
.y1f_c00366{bottom:334.170000px;}
.y1e_c00366{bottom:365.220000px;}
.y1d_c00366{bottom:396.270000px;}
.y1c_c00366{bottom:427.320000px;}
.y1b_c00366{bottom:458.370000px;}
.y1a_c00366{bottom:489.420000px;}
.y19_c00366{bottom:520.470000px;}
.y18_c00366{bottom:551.520000px;}
.y17_c00366{bottom:582.570000px;}
.y16_c00366{bottom:613.620000px;}
.y15_c00366{bottom:644.670000px;}
.y14_c00366{bottom:675.720000px;}
.y13_c00366{bottom:706.770000px;}
.y12_c00366{bottom:737.820000px;}
.y11_c00366{bottom:768.870000px;}
.y10_c00366{bottom:799.920000px;}
.yf_c00366{bottom:830.970000px;}
.ye_c00366{bottom:861.930000px;}
.yd_c00366{bottom:892.980000px;}
.yc_c00366{bottom:924.030000px;}
.yb_c00366{bottom:955.080000px;}
.ya_c00366{bottom:986.130000px;}
.y9_c00366{bottom:1017.180000px;}
.y8_c00366{bottom:1048.230000px;}
.y7_c00366{bottom:1079.280000px;}
.y6_c00366{bottom:1110.330000px;}
.y5_c00366{bottom:1131.030000px;}
.y4_c00366{bottom:1150.920000px;}
.y3_c00366{bottom:1166.404500px;}
.y2_c00366{bottom:1181.970000px;}
.y1_c00366{bottom:1197.450000px;}
.h6_c00366{height:38.158594px;}
.h3_c00366{height:52.971680px;}
.h2_c00366{height:52.998047px;}
.h7_c00366{height:59.004492px;}
.h4_c00366{height:70.664062px;}
.h5_c00366{height:73.991602px;}
.h0_c00366{height:1262.880000px;}
.h1_c00366{height:1263.000000px;}
.w0_c00366{width:893.070000px;}
.w1_c00366{width:893.250000px;}
.x0_c00366{left:0.000000px;}
.x3_c00366{left:127.620000px;}
.x2_c00366{left:425.160000px;}
.x1_c00366{left:446.580000px;}
.x4_c00366{left:738.540000px;}
@media print{
.v2_c00366{vertical-align:-18.560000pt;}
.v0_c00366{vertical-align:0.000000pt;}
.v1_c00366{vertical-align:24.000000pt;}
.ls11_c00366{letter-spacing:-0.320000pt;}
.ls13_c00366{letter-spacing:-0.256000pt;}
.ls16_c00366{letter-spacing:-0.160320pt;}
.lsf_c00366{letter-spacing:-0.096000pt;}
.ls10_c00366{letter-spacing:-0.064000pt;}
.ls15_c00366{letter-spacing:-0.053440pt;}
.lse_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:0.064000pt;}
.lsd_c00366{letter-spacing:0.096192pt;}
.ls12_c00366{letter-spacing:0.128000pt;}
.ls14_c00366{letter-spacing:0.160320pt;}
.ls1_c00366{letter-spacing:0.170240pt;}
.lsa_c00366{letter-spacing:2.240000pt;}
.ls6_c00366{letter-spacing:4.185600pt;}
.ls9_c00366{letter-spacing:5.760000pt;}
.ls3_c00366{letter-spacing:6.080000pt;}
.ls8_c00366{letter-spacing:7.360000pt;}
.ls4_c00366{letter-spacing:9.600000pt;}
.lsc_c00366{letter-spacing:10.313920pt;}
.ls7_c00366{letter-spacing:10.560000pt;}
.lsb_c00366{letter-spacing:11.840000pt;}
.ls5_c00366{letter-spacing:13.440000pt;}
.ls2_c00366{letter-spacing:13.760000pt;}
.ws1_c00366{word-spacing:-16.064000pt;}
.ws3_c00366{word-spacing:-16.000000pt;}
.ws2_c00366{word-spacing:-15.936000pt;}
.ws4_c00366{word-spacing:-15.744000pt;}
.ws5_c00366{word-spacing:-15.680000pt;}
.ws7_c00366{word-spacing:-13.199680pt;}
.ws0_c00366{word-spacing:-10.810240pt;}
.ws6_c00366{word-spacing:-8.640000pt;}
.ws2f_c00366{word-spacing:-0.160320pt;}
.ws15_c00366{word-spacing:-0.064000pt;}
.ws8_c00366{word-spacing:0.000000pt;}
.wsa_c00366{word-spacing:0.144000pt;}
.ws9_c00366{word-spacing:0.240000pt;}
.ws22_c00366{word-spacing:1.920000pt;}
.ws2a_c00366{word-spacing:2.176000pt;}
.ws2b_c00366{word-spacing:2.240000pt;}
.ws20_c00366{word-spacing:4.096000pt;}
.ws21_c00366{word-spacing:4.160000pt;}
.ws17_c00366{word-spacing:4.416000pt;}
.wsd_c00366{word-spacing:5.376000pt;}
.ws29_c00366{word-spacing:5.632000pt;}
.wsb_c00366{word-spacing:5.696000pt;}
.wsc_c00366{word-spacing:5.760000pt;}
.ws13_c00366{word-spacing:6.016000pt;}
.ws14_c00366{word-spacing:6.080000pt;}
.ws1b_c00366{word-spacing:6.720000pt;}
.ws23_c00366{word-spacing:6.976000pt;}
.ws27_c00366{word-spacing:7.296000pt;}
.ws26_c00366{word-spacing:7.360000pt;}
.ws2c_c00366{word-spacing:7.680000pt;}
.ws16_c00366{word-spacing:9.920000pt;}
.ws2e_c00366{word-spacing:10.153600pt;}
.ws18_c00366{word-spacing:10.176000pt;}
.ws25_c00366{word-spacing:10.496000pt;}
.ws24_c00366{word-spacing:10.560000pt;}
.ws2d_c00366{word-spacing:11.776000pt;}
.wse_c00366{word-spacing:12.736000pt;}
.ws19_c00366{word-spacing:13.120000pt;}
.ws11_c00366{word-spacing:13.696000pt;}
.ws12_c00366{word-spacing:13.760000pt;}
.ws1a_c00366{word-spacing:14.720000pt;}
.ws1c_c00366{word-spacing:15.936000pt;}
.ws1d_c00366{word-spacing:16.320000pt;}
.wsf_c00366{word-spacing:17.536000pt;}
.ws10_c00366{word-spacing:17.600000pt;}
.ws28_c00366{word-spacing:26.176000pt;}
.ws1f_c00366{word-spacing:29.696000pt;}
.ws1e_c00366{word-spacing:29.952000pt;}
._1_c00366{margin-left:-0.940800pt;}
._0_c00366{width:1.084800pt;}
._3_c00366{width:2.368000pt;}
._2_c00366{width:4.928000pt;}
._4_c00366{width:5.985280pt;}
._6_c00366{width:10.112000pt;}
._5_c00366{width:14.144000pt;}
.fs3_c00366{font-size:34.560000pt;}
.fs2_c00366{font-size:42.560000pt;}
.fs0_c00366{font-size:48.000000pt;}
.fs4_c00366{font-size:53.440000pt;}
.fs1_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y27_c00366{bottom:50.880000pt;}
.y26_c00366{bottom:97.592160pt;}
.y25_c00366{bottom:112.876000pt;}
.y24_c00366{bottom:132.880000pt;}
.y28_c00366{bottom:144.160000pt;}
.y23_c00366{bottom:186.640000pt;}
.y22_c00366{bottom:214.240000pt;}
.y21_c00366{bottom:241.840000pt;}
.y20_c00366{bottom:269.440000pt;}
.y1f_c00366{bottom:297.040000pt;}
.y1e_c00366{bottom:324.640000pt;}
.y1d_c00366{bottom:352.240000pt;}
.y1c_c00366{bottom:379.840000pt;}
.y1b_c00366{bottom:407.440000pt;}
.y1a_c00366{bottom:435.040000pt;}
.y19_c00366{bottom:462.640000pt;}
.y18_c00366{bottom:490.240000pt;}
.y17_c00366{bottom:517.840000pt;}
.y16_c00366{bottom:545.440000pt;}
.y15_c00366{bottom:573.040000pt;}
.y14_c00366{bottom:600.640000pt;}
.y13_c00366{bottom:628.240000pt;}
.y12_c00366{bottom:655.840000pt;}
.y11_c00366{bottom:683.440000pt;}
.y10_c00366{bottom:711.040000pt;}
.yf_c00366{bottom:738.640000pt;}
.ye_c00366{bottom:766.160000pt;}
.yd_c00366{bottom:793.760000pt;}
.yc_c00366{bottom:821.360000pt;}
.yb_c00366{bottom:848.960000pt;}
.ya_c00366{bottom:876.560000pt;}
.y9_c00366{bottom:904.160000pt;}
.y8_c00366{bottom:931.760000pt;}
.y7_c00366{bottom:959.360000pt;}
.y6_c00366{bottom:986.960000pt;}
.y5_c00366{bottom:1005.360000pt;}
.y4_c00366{bottom:1023.040000pt;}
.y3_c00366{bottom:1036.804000pt;}
.y2_c00366{bottom:1050.640000pt;}
.y1_c00366{bottom:1064.400000pt;}
.h6_c00366{height:33.918750pt;}
.h3_c00366{height:47.085938pt;}
.h2_c00366{height:47.109375pt;}
.h7_c00366{height:52.448437pt;}
.h4_c00366{height:62.812500pt;}
.h5_c00366{height:65.770312pt;}
.h0_c00366{height:1122.560000pt;}
.h1_c00366{height:1122.666667pt;}
.w0_c00366{width:793.840000pt;}
.w1_c00366{width:794.000000pt;}
.x0_c00366{left:0.000000pt;}
.x3_c00366{left:113.440000pt;}
.x2_c00366{left:377.920000pt;}
.x1_c00366{left:396.960000pt;}
.x4_c00366{left:656.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_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_a6e9ceaeb41c57f6d95fbb2f.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.284180;font-style:normal;font-weight:normal;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_b72c6a7bfe3fa5c3b8bf2c68.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;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_c00367;src:url('chunks/assets/font_6f88a87665dd1a138ddf5fce.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00367{vertical-align:-61.938000px;}
.v0_c00367{vertical-align:0.000000px;}
.ls6_c00367{letter-spacing:-0.120240px;}
.ls4_c00367{letter-spacing:0.000000px;}
.ls3_c00367{letter-spacing:0.060120px;}
.ls2_c00367{letter-spacing:0.072000px;}
.ls5_c00367{letter-spacing:0.144000px;}
.ls7_c00367{letter-spacing:0.180360px;}
.ls1_c00367{letter-spacing:0.720000px;}
.ls0_c00367{letter-spacing:319.518000px;}
.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;}
}
.ws19_c00367{word-spacing:-0.420840px;}
.ws1_c00367{word-spacing:-0.162000px;}
.ws16_c00367{word-spacing:-0.144000px;}
.ws2_c00367{word-spacing:-0.072000px;}
.ws0_c00367{word-spacing:0.000000px;}
.ws17_c00367{word-spacing:0.120240px;}
.ws18_c00367{word-spacing:0.240480px;}
.ws3_c00367{word-spacing:0.720000px;}
.ws10_c00367{word-spacing:1.008000px;}
.ws11_c00367{word-spacing:1.080000px;}
.wsf_c00367{word-spacing:2.880000px;}
.wse_c00367{word-spacing:3.168000px;}
.wsa_c00367{word-spacing:4.248000px;}
.ws5_c00367{word-spacing:4.320000px;}
.ws9_c00367{word-spacing:5.688000px;}
.ws8_c00367{word-spacing:5.760000px;}
.ws4_c00367{word-spacing:7.848000px;}
.ws15_c00367{word-spacing:9.360000px;}
.ws12_c00367{word-spacing:10.368000px;}
.ws13_c00367{word-spacing:10.440000px;}
.ws7_c00367{word-spacing:15.768000px;}
.ws6_c00367{word-spacing:15.840000px;}
.wsb_c00367{word-spacing:17.136000px;}
.wsc_c00367{word-spacing:17.568000px;}
.wsd_c00367{word-spacing:17.640000px;}
.ws14_c00367{word-spacing:17.928000px;}
._0_c00367{margin-left:-1.231200px;}
._1_c00367{width:1.440000px;}
._2_c00367{width:4.471200px;}
.fc0_c00367{color:rgb(0,0,0);}
.fs0_c00367{font-size:54.000000px;}
.fs2_c00367{font-size:60.120000px;}
.fs1_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y18_c00367{bottom:57.240000px;}
.y17_c00367{bottom:138.060000px;}
.y16_c00367{bottom:158.130000px;}
.y15_c00367{bottom:171.990000px;}
.y14_c00367{bottom:644.490000px;}
.y13_c00367{bottom:675.720000px;}
.y12_c00367{bottom:706.770000px;}
.y11_c00367{bottom:737.820000px;}
.y10_c00367{bottom:768.870000px;}
.yf_c00367{bottom:799.920000px;}
.ye_c00367{bottom:830.970000px;}
.yd_c00367{bottom:861.930000px;}
.yc_c00367{bottom:892.980000px;}
.yb_c00367{bottom:924.030000px;}
.ya_c00367{bottom:955.080000px;}
.y9_c00367{bottom:986.130000px;}
.y8_c00367{bottom:1017.180000px;}
.y7_c00367{bottom:1048.230000px;}
.y6_c00367{bottom:1079.280000px;}
.y5_c00367{bottom:1110.330000px;}
.y4_c00367{bottom:1131.030000px;}
.y3_c00367{bottom:1150.915500px;}
.y2_c00367{bottom:1166.400000px;}
.y1_c00367{bottom:1197.450000px;}
.h2_c00367{height:52.998047px;}
.h5_c00367{height:59.004492px;}
.h3_c00367{height:70.664062px;}
.h4_c00367{height:72.562500px;}
.h0_c00367{height:1262.880000px;}
.h1_c00367{height:1263.000000px;}
.w0_c00367{width:893.070000px;}
.w1_c00367{width:893.250000px;}
.x0_c00367{left:0.000000px;}
.x2_c00367{left:127.620000px;}
.x3_c00367{left:160.380000px;}
.x1_c00367{left:446.580000px;}
.x4_c00367{left:765.270000px;}
@media print{
.v1_c00367{vertical-align:-55.056000pt;}
.v0_c00367{vertical-align:0.000000pt;}
.ls6_c00367{letter-spacing:-0.106880pt;}
.ls4_c00367{letter-spacing:0.000000pt;}
.ls3_c00367{letter-spacing:0.053440pt;}
.ls2_c00367{letter-spacing:0.064000pt;}
.ls5_c00367{letter-spacing:0.128000pt;}
.ls7_c00367{letter-spacing:0.160320pt;}
.ls1_c00367{letter-spacing:0.640000pt;}
.ls0_c00367{letter-spacing:284.016000pt;}
.ws19_c00367{word-spacing:-0.374080pt;}
.ws1_c00367{word-spacing:-0.144000pt;}
.ws16_c00367{word-spacing:-0.128000pt;}
.ws2_c00367{word-spacing:-0.064000pt;}
.ws0_c00367{word-spacing:0.000000pt;}
.ws17_c00367{word-spacing:0.106880pt;}
.ws18_c00367{word-spacing:0.213760pt;}
.ws3_c00367{word-spacing:0.640000pt;}
.ws10_c00367{word-spacing:0.896000pt;}
.ws11_c00367{word-spacing:0.960000pt;}
.wsf_c00367{word-spacing:2.560000pt;}
.wse_c00367{word-spacing:2.816000pt;}
.wsa_c00367{word-spacing:3.776000pt;}
.ws5_c00367{word-spacing:3.840000pt;}
.ws9_c00367{word-spacing:5.056000pt;}
.ws8_c00367{word-spacing:5.120000pt;}
.ws4_c00367{word-spacing:6.976000pt;}
.ws15_c00367{word-spacing:8.320000pt;}
.ws12_c00367{word-spacing:9.216000pt;}
.ws13_c00367{word-spacing:9.280000pt;}
.ws7_c00367{word-spacing:14.016000pt;}
.ws6_c00367{word-spacing:14.080000pt;}
.wsb_c00367{word-spacing:15.232000pt;}
.wsc_c00367{word-spacing:15.616000pt;}
.wsd_c00367{word-spacing:15.680000pt;}
.ws14_c00367{word-spacing:15.936000pt;}
._0_c00367{margin-left:-1.094400pt;}
._1_c00367{width:1.280000pt;}
._2_c00367{width:3.974400pt;}
.fs0_c00367{font-size:48.000000pt;}
.fs2_c00367{font-size:53.440000pt;}
.fs1_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y18_c00367{bottom:50.880000pt;}
.y17_c00367{bottom:122.720000pt;}
.y16_c00367{bottom:140.560000pt;}
.y15_c00367{bottom:152.880000pt;}
.y14_c00367{bottom:572.880000pt;}
.y13_c00367{bottom:600.640000pt;}
.y12_c00367{bottom:628.240000pt;}
.y11_c00367{bottom:655.840000pt;}
.y10_c00367{bottom:683.440000pt;}
.yf_c00367{bottom:711.040000pt;}
.ye_c00367{bottom:738.640000pt;}
.yd_c00367{bottom:766.160000pt;}
.yc_c00367{bottom:793.760000pt;}
.yb_c00367{bottom:821.360000pt;}
.ya_c00367{bottom:848.960000pt;}
.y9_c00367{bottom:876.560000pt;}
.y8_c00367{bottom:904.160000pt;}
.y7_c00367{bottom:931.760000pt;}
.y6_c00367{bottom:959.360000pt;}
.y5_c00367{bottom:986.960000pt;}
.y4_c00367{bottom:1005.360000pt;}
.y3_c00367{bottom:1023.036000pt;}
.y2_c00367{bottom:1036.800000pt;}
.y1_c00367{bottom:1064.400000pt;}
.h2_c00367{height:47.109375pt;}
.h5_c00367{height:52.448437pt;}
.h3_c00367{height:62.812500pt;}
.h4_c00367{height:64.500000pt;}
.h0_c00367{height:1122.560000pt;}
.h1_c00367{height:1122.666667pt;}
.w0_c00367{width:793.840000pt;}
.w1_c00367{width:794.000000pt;}
.x0_c00367{left:0.000000pt;}
.x2_c00367{left:113.440000pt;}
.x3_c00367{left:142.560000pt;}
.x1_c00367{left:396.960000pt;}
.x4_c00367{left:680.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_566086d9c8e7ff399a576276.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_2e271d8d1838182b594c449d.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;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_c00368;src:url('chunks/assets/font_5f1f588b861f256763280fb5.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00368{letter-spacing:-0.120240px;}
.ls4_c00368{letter-spacing:-0.108000px;}
.ls3_c00368{letter-spacing:0.000000px;}
.ls2_c00368{letter-spacing:0.060120px;}
.ls0_c00368{letter-spacing:0.072000px;}
.ls5_c00368{letter-spacing:0.144000px;}
.ls7_c00368{letter-spacing:0.180360px;}
.ls1_c00368{letter-spacing:30.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;}
}
.ws0_c00368{word-spacing:-18.072000px;}
.ws17_c00368{word-spacing:-0.420840px;}
.ws14_c00368{word-spacing:-0.144000px;}
.ws4_c00368{word-spacing:-0.072000px;}
.ws1_c00368{word-spacing:0.000000px;}
.ws15_c00368{word-spacing:0.120240px;}
.ws3_c00368{word-spacing:0.162000px;}
.ws16_c00368{word-spacing:0.240480px;}
.ws2_c00368{word-spacing:0.270000px;}
.wse_c00368{word-spacing:1.008000px;}
.wsf_c00368{word-spacing:1.080000px;}
.ws10_c00368{word-spacing:5.400000px;}
.wsb_c00368{word-spacing:5.688000px;}
.wsc_c00368{word-spacing:5.760000px;}
.ws6_c00368{word-spacing:7.416000px;}
.ws5_c00368{word-spacing:7.488000px;}
.ws11_c00368{word-spacing:10.008000px;}
.ws12_c00368{word-spacing:10.080000px;}
.ws9_c00368{word-spacing:13.608000px;}
.wsa_c00368{word-spacing:13.680000px;}
.ws13_c00368{word-spacing:14.400000px;}
.ws7_c00368{word-spacing:23.040000px;}
.ws8_c00368{word-spacing:23.400000px;}
.wsd_c00368{word-spacing:30.168000px;}
._1_c00368{margin-left:-1.058400px;}
._0_c00368{width:1.220400px;}
._2_c00368{width:3.168000px;}
._3_c00368{width:14.328000px;}
.fc0_c00368{color:rgb(0,0,0);}
.fs0_c00368{font-size:54.000000px;}
.fs2_c00368{font-size:60.120000px;}
.fs1_c00368{font-size:72.000000px;}
.y0_c00368{bottom:0.000000px;}
.y17_c00368{bottom:57.240000px;}
.y16_c00368{bottom:140.130000px;}
.y15_c00368{bottom:160.110000px;}
.y14_c00368{bottom:173.970000px;}
.y13_c00368{bottom:706.590000px;}
.y12_c00368{bottom:737.820000px;}
.y11_c00368{bottom:768.870000px;}
.y10_c00368{bottom:799.920000px;}
.yf_c00368{bottom:830.970000px;}
.ye_c00368{bottom:861.930000px;}
.yd_c00368{bottom:892.980000px;}
.yc_c00368{bottom:924.030000px;}
.yb_c00368{bottom:955.080000px;}
.ya_c00368{bottom:986.130000px;}
.y9_c00368{bottom:1017.180000px;}
.y8_c00368{bottom:1048.230000px;}
.y7_c00368{bottom:1079.280000px;}
.y6_c00368{bottom:1110.330000px;}
.y5_c00368{bottom:1131.030000px;}
.y4_c00368{bottom:1150.920000px;}
.y3_c00368{bottom:1166.404500px;}
.y2_c00368{bottom:1181.970000px;}
.y1_c00368{bottom:1197.450000px;}
.h3_c00368{height:52.971680px;}
.h2_c00368{height:52.998047px;}
.h6_c00368{height:59.004492px;}
.h4_c00368{height:70.664062px;}
.h5_c00368{height:72.562500px;}
.h0_c00368{height:1262.880000px;}
.h1_c00368{height:1263.000000px;}
.w0_c00368{width:893.070000px;}
.w1_c00368{width:893.250000px;}
.x0_c00368{left:0.000000px;}
.x3_c00368{left:127.620000px;}
.x4_c00368{left:143.370000px;}
.x2_c00368{left:425.160000px;}
.x1_c00368{left:446.580000px;}
.x5_c00368{left:738.630000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls6_c00368{letter-spacing:-0.106880pt;}
.ls4_c00368{letter-spacing:-0.096000pt;}
.ls3_c00368{letter-spacing:0.000000pt;}
.ls2_c00368{letter-spacing:0.053440pt;}
.ls0_c00368{letter-spacing:0.064000pt;}
.ls5_c00368{letter-spacing:0.128000pt;}
.ls7_c00368{letter-spacing:0.160320pt;}
.ls1_c00368{letter-spacing:26.880000pt;}
.ws0_c00368{word-spacing:-16.064000pt;}
.ws17_c00368{word-spacing:-0.374080pt;}
.ws14_c00368{word-spacing:-0.128000pt;}
.ws4_c00368{word-spacing:-0.064000pt;}
.ws1_c00368{word-spacing:0.000000pt;}
.ws15_c00368{word-spacing:0.106880pt;}
.ws3_c00368{word-spacing:0.144000pt;}
.ws16_c00368{word-spacing:0.213760pt;}
.ws2_c00368{word-spacing:0.240000pt;}
.wse_c00368{word-spacing:0.896000pt;}
.wsf_c00368{word-spacing:0.960000pt;}
.ws10_c00368{word-spacing:4.800000pt;}
.wsb_c00368{word-spacing:5.056000pt;}
.wsc_c00368{word-spacing:5.120000pt;}
.ws6_c00368{word-spacing:6.592000pt;}
.ws5_c00368{word-spacing:6.656000pt;}
.ws11_c00368{word-spacing:8.896000pt;}
.ws12_c00368{word-spacing:8.960000pt;}
.ws9_c00368{word-spacing:12.096000pt;}
.wsa_c00368{word-spacing:12.160000pt;}
.ws13_c00368{word-spacing:12.800000pt;}
.ws7_c00368{word-spacing:20.480000pt;}
.ws8_c00368{word-spacing:20.800000pt;}
.wsd_c00368{word-spacing:26.816000pt;}
._1_c00368{margin-left:-0.940800pt;}
._0_c00368{width:1.084800pt;}
._2_c00368{width:2.816000pt;}
._3_c00368{width:12.736000pt;}
.fs0_c00368{font-size:48.000000pt;}
.fs2_c00368{font-size:53.440000pt;}
.fs1_c00368{font-size:64.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y17_c00368{bottom:50.880000pt;}
.y16_c00368{bottom:124.560000pt;}
.y15_c00368{bottom:142.320000pt;}
.y14_c00368{bottom:154.640000pt;}
.y13_c00368{bottom:628.080000pt;}
.y12_c00368{bottom:655.840000pt;}
.y11_c00368{bottom:683.440000pt;}
.y10_c00368{bottom:711.040000pt;}
.yf_c00368{bottom:738.640000pt;}
.ye_c00368{bottom:766.160000pt;}
.yd_c00368{bottom:793.760000pt;}
.yc_c00368{bottom:821.360000pt;}
.yb_c00368{bottom:848.960000pt;}
.ya_c00368{bottom:876.560000pt;}
.y9_c00368{bottom:904.160000pt;}
.y8_c00368{bottom:931.760000pt;}
.y7_c00368{bottom:959.360000pt;}
.y6_c00368{bottom:986.960000pt;}
.y5_c00368{bottom:1005.360000pt;}
.y4_c00368{bottom:1023.040000pt;}
.y3_c00368{bottom:1036.804000pt;}
.y2_c00368{bottom:1050.640000pt;}
.y1_c00368{bottom:1064.400000pt;}
.h3_c00368{height:47.085938pt;}
.h2_c00368{height:47.109375pt;}
.h6_c00368{height:52.448437pt;}
.h4_c00368{height:62.812500pt;}
.h5_c00368{height:64.500000pt;}
.h0_c00368{height:1122.560000pt;}
.h1_c00368{height:1122.666667pt;}
.w0_c00368{width:793.840000pt;}
.w1_c00368{width:794.000000pt;}
.x0_c00368{left:0.000000pt;}
.x3_c00368{left:113.440000pt;}
.x4_c00368{left:127.440000pt;}
.x2_c00368{left:377.920000pt;}
.x1_c00368{left:396.960000pt;}
.x5_c00368{left:656.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_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_91f260610122f04e27718a07.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.284180;font-style:normal;font-weight:normal;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_ee5686bdc3685c45cfab3a02.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;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_c00369;src:url('chunks/assets/font_d36be4bdc19432c77c20274a.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00369{vertical-align:-61.938000px;}
.v0_c00369{vertical-align:0.000000px;}
.ls6_c00369{letter-spacing:-0.120240px;}
.ls3_c00369{letter-spacing:0.000000px;}
.ls2_c00369{letter-spacing:0.060120px;}
.ls4_c00369{letter-spacing:0.072000px;}
.ls5_c00369{letter-spacing:0.144000px;}
.ls7_c00369{letter-spacing:0.180360px;}
.ls1_c00369{letter-spacing:0.360000px;}
.ls0_c00369{letter-spacing:319.518000px;}
.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;}
}
.ws19_c00369{word-spacing:-0.420840px;}
.ws1_c00369{word-spacing:-0.162000px;}
.ws16_c00369{word-spacing:-0.144000px;}
.ws2_c00369{word-spacing:-0.072000px;}
.ws0_c00369{word-spacing:0.000000px;}
.ws17_c00369{word-spacing:0.120240px;}
.ws18_c00369{word-spacing:0.240480px;}
.ws11_c00369{word-spacing:0.648000px;}
.ws12_c00369{word-spacing:0.720000px;}
.ws14_c00369{word-spacing:4.968000px;}
.wsd_c00369{word-spacing:5.040000px;}
.ws13_c00369{word-spacing:5.328000px;}
.ws15_c00369{word-spacing:5.400000px;}
.ws5_c00369{word-spacing:7.416000px;}
.ws4_c00369{word-spacing:7.488000px;}
.ws3_c00369{word-spacing:7.560000px;}
.ws6_c00369{word-spacing:9.000000px;}
.ws7_c00369{word-spacing:9.576000px;}
.ws10_c00369{word-spacing:9.648000px;}
.ws8_c00369{word-spacing:9.720000px;}
.wsb_c00369{word-spacing:16.920000px;}
.ws9_c00369{word-spacing:17.208000px;}
.wsa_c00369{word-spacing:17.280000px;}
.wse_c00369{word-spacing:21.528000px;}
.wsf_c00369{word-spacing:21.600000px;}
.wsc_c00369{word-spacing:24.480000px;}
._0_c00369{margin-left:-1.231200px;}
._2_c00369{width:1.008000px;}
._1_c00369{width:9.288000px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs0_c00369{font-size:54.000000px;}
.fs2_c00369{font-size:60.120000px;}
.fs1_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y16_c00369{bottom:57.240000px;}
.y15_c00369{bottom:126.000000px;}
.y14_c00369{bottom:146.070000px;}
.y13_c00369{bottom:159.930000px;}
.y12_c00369{bottom:706.590000px;}
.y11_c00369{bottom:737.820000px;}
.y10_c00369{bottom:768.870000px;}
.yf_c00369{bottom:799.920000px;}
.ye_c00369{bottom:830.970000px;}
.yd_c00369{bottom:861.930000px;}
.yc_c00369{bottom:892.980000px;}
.yb_c00369{bottom:924.030000px;}
.ya_c00369{bottom:955.080000px;}
.y9_c00369{bottom:986.130000px;}
.y8_c00369{bottom:1017.180000px;}
.y7_c00369{bottom:1048.230000px;}
.y6_c00369{bottom:1079.280000px;}
.y5_c00369{bottom:1110.330000px;}
.y4_c00369{bottom:1131.030000px;}
.y3_c00369{bottom:1150.915500px;}
.y2_c00369{bottom:1166.400000px;}
.y1_c00369{bottom:1197.450000px;}
.h4_c00369{height:50.027344px;}
.h2_c00369{height:52.998047px;}
.h6_c00369{height:59.004492px;}
.h3_c00369{height:70.664062px;}
.h5_c00369{height:72.562500px;}
.h0_c00369{height:1262.880000px;}
.h1_c00369{height:1263.000000px;}
.w0_c00369{width:893.070000px;}
.w1_c00369{width:893.250000px;}
.x0_c00369{left:0.000000px;}
.x2_c00369{left:127.620000px;}
.x3_c00369{left:150.390000px;}
.x1_c00369{left:446.580000px;}
.x4_c00369{left:720.270000px;}
@media print{
.v1_c00369{vertical-align:-55.056000pt;}
.v0_c00369{vertical-align:0.000000pt;}
.ls6_c00369{letter-spacing:-0.106880pt;}
.ls3_c00369{letter-spacing:0.000000pt;}
.ls2_c00369{letter-spacing:0.053440pt;}
.ls4_c00369{letter-spacing:0.064000pt;}
.ls5_c00369{letter-spacing:0.128000pt;}
.ls7_c00369{letter-spacing:0.160320pt;}
.ls1_c00369{letter-spacing:0.320000pt;}
.ls0_c00369{letter-spacing:284.016000pt;}
.ws19_c00369{word-spacing:-0.374080pt;}
.ws1_c00369{word-spacing:-0.144000pt;}
.ws16_c00369{word-spacing:-0.128000pt;}
.ws2_c00369{word-spacing:-0.064000pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.ws17_c00369{word-spacing:0.106880pt;}
.ws18_c00369{word-spacing:0.213760pt;}
.ws11_c00369{word-spacing:0.576000pt;}
.ws12_c00369{word-spacing:0.640000pt;}
.ws14_c00369{word-spacing:4.416000pt;}
.wsd_c00369{word-spacing:4.480000pt;}
.ws13_c00369{word-spacing:4.736000pt;}
.ws15_c00369{word-spacing:4.800000pt;}
.ws5_c00369{word-spacing:6.592000pt;}
.ws4_c00369{word-spacing:6.656000pt;}
.ws3_c00369{word-spacing:6.720000pt;}
.ws6_c00369{word-spacing:8.000000pt;}
.ws7_c00369{word-spacing:8.512000pt;}
.ws10_c00369{word-spacing:8.576000pt;}
.ws8_c00369{word-spacing:8.640000pt;}
.wsb_c00369{word-spacing:15.040000pt;}
.ws9_c00369{word-spacing:15.296000pt;}
.wsa_c00369{word-spacing:15.360000pt;}
.wse_c00369{word-spacing:19.136000pt;}
.wsf_c00369{word-spacing:19.200000pt;}
.wsc_c00369{word-spacing:21.760000pt;}
._0_c00369{margin-left:-1.094400pt;}
._2_c00369{width:0.896000pt;}
._1_c00369{width:8.256000pt;}
.fs0_c00369{font-size:48.000000pt;}
.fs2_c00369{font-size:53.440000pt;}
.fs1_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y16_c00369{bottom:50.880000pt;}
.y15_c00369{bottom:112.000000pt;}
.y14_c00369{bottom:129.840000pt;}
.y13_c00369{bottom:142.160000pt;}
.y12_c00369{bottom:628.080000pt;}
.y11_c00369{bottom:655.840000pt;}
.y10_c00369{bottom:683.440000pt;}
.yf_c00369{bottom:711.040000pt;}
.ye_c00369{bottom:738.640000pt;}
.yd_c00369{bottom:766.160000pt;}
.yc_c00369{bottom:793.760000pt;}
.yb_c00369{bottom:821.360000pt;}
.ya_c00369{bottom:848.960000pt;}
.y9_c00369{bottom:876.560000pt;}
.y8_c00369{bottom:904.160000pt;}
.y7_c00369{bottom:931.760000pt;}
.y6_c00369{bottom:959.360000pt;}
.y5_c00369{bottom:986.960000pt;}
.y4_c00369{bottom:1005.360000pt;}
.y3_c00369{bottom:1023.036000pt;}
.y2_c00369{bottom:1036.800000pt;}
.y1_c00369{bottom:1064.400000pt;}
.h4_c00369{height:44.468750pt;}
.h2_c00369{height:47.109375pt;}
.h6_c00369{height:52.448437pt;}
.h3_c00369{height:62.812500pt;}
.h5_c00369{height:64.500000pt;}
.h0_c00369{height:1122.560000pt;}
.h1_c00369{height:1122.666667pt;}
.w0_c00369{width:793.840000pt;}
.w1_c00369{width:794.000000pt;}
.x0_c00369{left:0.000000pt;}
.x2_c00369{left:113.440000pt;}
.x3_c00369{left:133.680000pt;}
.x1_c00369{left:396.960000pt;}
.x4_c00369{left:640.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1a35e3b99fac13a30c581e0.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.284180;font-style:normal;font-weight:normal;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_ce49d459a884a7095141fdab.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;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_c00370;src:url('chunks/assets/font_4d22968839878315ccb73fab.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00370{letter-spacing:-0.576000px;}
.ls6_c00370{letter-spacing:-0.120240px;}
.ls4_c00370{letter-spacing:-0.108000px;}
.ls3_c00370{letter-spacing:0.000000px;}
.ls1_c00370{letter-spacing:0.060120px;}
.ls0_c00370{letter-spacing:0.072000px;}
.ls5_c00370{letter-spacing:0.144000px;}
.ls7_c00370{letter-spacing:0.180360px;}
.ls2_c00370{letter-spacing:8.287200px;}
.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:-18.072000px;}
.ws1_c00370{word-spacing:-17.424000px;}
.ws18_c00370{word-spacing:-0.420840px;}
.ws15_c00370{word-spacing:-0.144000px;}
.ws5_c00370{word-spacing:-0.072000px;}
.ws2_c00370{word-spacing:0.000000px;}
.ws16_c00370{word-spacing:0.120240px;}
.ws4_c00370{word-spacing:0.162000px;}
.ws17_c00370{word-spacing:0.240480px;}
.ws3_c00370{word-spacing:0.270000px;}
.ws11_c00370{word-spacing:1.008000px;}
.ws12_c00370{word-spacing:1.080000px;}
.ws19_c00370{word-spacing:1.728000px;}
.ws1a_c00370{word-spacing:1.800000px;}
.ws10_c00370{word-spacing:2.880000px;}
.wsf_c00370{word-spacing:3.168000px;}
.wsc_c00370{word-spacing:4.248000px;}
.ws8_c00370{word-spacing:4.320000px;}
.wsb_c00370{word-spacing:5.688000px;}
.wsa_c00370{word-spacing:5.760000px;}
.ws1d_c00370{word-spacing:8.208000px;}
.ws1c_c00370{word-spacing:8.280000px;}
.ws14_c00370{word-spacing:10.368000px;}
.ws13_c00370{word-spacing:10.440000px;}
.ws6_c00370{word-spacing:15.048000px;}
.ws7_c00370{word-spacing:15.120000px;}
.ws9_c00370{word-spacing:15.840000px;}
.wsd_c00370{word-spacing:17.568000px;}
.wse_c00370{word-spacing:17.640000px;}
.ws1b_c00370{word-spacing:23.400000px;}
._1_c00370{margin-left:-1.058400px;}
._0_c00370{width:1.220400px;}
._2_c00370{width:10.368000px;}
._3_c00370{width:11.376000px;}
.fc0_c00370{color:rgb(0,0,0);}
.fs0_c00370{font-size:54.000000px;}
.fs2_c00370{font-size:60.120000px;}
.fs1_c00370{font-size:72.000000px;}
.y0_c00370{bottom:0.000000px;}
.y1b_c00370{bottom:57.240000px;}
.y1a_c00370{bottom:121.050000px;}
.y19_c00370{bottom:152.100000px;}
.y18_c00370{bottom:183.150000px;}
.y17_c00370{bottom:214.200000px;}
.y16_c00370{bottom:245.250000px;}
.y15_c00370{bottom:276.300000px;}
.y14_c00370{bottom:296.370000px;}
.y13_c00370{bottom:310.230000px;}
.y12_c00370{bottom:737.640000px;}
.y11_c00370{bottom:768.870000px;}
.y10_c00370{bottom:799.920000px;}
.yf_c00370{bottom:830.970000px;}
.ye_c00370{bottom:861.930000px;}
.yd_c00370{bottom:892.980000px;}
.yc_c00370{bottom:924.030000px;}
.yb_c00370{bottom:955.080000px;}
.ya_c00370{bottom:986.130000px;}
.y9_c00370{bottom:1017.180000px;}
.y8_c00370{bottom:1048.230000px;}
.y7_c00370{bottom:1079.280000px;}
.y6_c00370{bottom:1110.330000px;}
.y5_c00370{bottom:1131.030000px;}
.y4_c00370{bottom:1150.920000px;}
.y3_c00370{bottom:1166.404500px;}
.y2_c00370{bottom:1181.970000px;}
.y1_c00370{bottom:1197.450000px;}
.h5_c00370{height:50.027344px;}
.h3_c00370{height:52.971680px;}
.h2_c00370{height:52.998047px;}
.h4_c00370{height:70.664062px;}
.h6_c00370{height:72.562500px;}
.h0_c00370{height:1262.880000px;}
.h1_c00370{height:1263.000000px;}
.w0_c00370{width:893.070000px;}
.w1_c00370{width:893.250000px;}
.x0_c00370{left:0.000000px;}
.x3_c00370{left:127.620000px;}
.x4_c00370{left:164.340000px;}
.x2_c00370{left:425.160000px;}
.x1_c00370{left:446.580000px;}
.x5_c00370{left:721.710000px;}
.x6_c00370{left:738.540000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls8_c00370{letter-spacing:-0.512000pt;}
.ls6_c00370{letter-spacing:-0.106880pt;}
.ls4_c00370{letter-spacing:-0.096000pt;}
.ls3_c00370{letter-spacing:0.000000pt;}
.ls1_c00370{letter-spacing:0.053440pt;}
.ls0_c00370{letter-spacing:0.064000pt;}
.ls5_c00370{letter-spacing:0.128000pt;}
.ls7_c00370{letter-spacing:0.160320pt;}
.ls2_c00370{letter-spacing:7.366400pt;}
.ws0_c00370{word-spacing:-16.064000pt;}
.ws1_c00370{word-spacing:-15.488000pt;}
.ws18_c00370{word-spacing:-0.374080pt;}
.ws15_c00370{word-spacing:-0.128000pt;}
.ws5_c00370{word-spacing:-0.064000pt;}
.ws2_c00370{word-spacing:0.000000pt;}
.ws16_c00370{word-spacing:0.106880pt;}
.ws4_c00370{word-spacing:0.144000pt;}
.ws17_c00370{word-spacing:0.213760pt;}
.ws3_c00370{word-spacing:0.240000pt;}
.ws11_c00370{word-spacing:0.896000pt;}
.ws12_c00370{word-spacing:0.960000pt;}
.ws19_c00370{word-spacing:1.536000pt;}
.ws1a_c00370{word-spacing:1.600000pt;}
.ws10_c00370{word-spacing:2.560000pt;}
.wsf_c00370{word-spacing:2.816000pt;}
.wsc_c00370{word-spacing:3.776000pt;}
.ws8_c00370{word-spacing:3.840000pt;}
.wsb_c00370{word-spacing:5.056000pt;}
.wsa_c00370{word-spacing:5.120000pt;}
.ws1d_c00370{word-spacing:7.296000pt;}
.ws1c_c00370{word-spacing:7.360000pt;}
.ws14_c00370{word-spacing:9.216000pt;}
.ws13_c00370{word-spacing:9.280000pt;}
.ws6_c00370{word-spacing:13.376000pt;}
.ws7_c00370{word-spacing:13.440000pt;}
.ws9_c00370{word-spacing:14.080000pt;}
.wsd_c00370{word-spacing:15.616000pt;}
.wse_c00370{word-spacing:15.680000pt;}
.ws1b_c00370{word-spacing:20.800000pt;}
._1_c00370{margin-left:-0.940800pt;}
._0_c00370{width:1.084800pt;}
._2_c00370{width:9.216000pt;}
._3_c00370{width:10.112000pt;}
.fs0_c00370{font-size:48.000000pt;}
.fs2_c00370{font-size:53.440000pt;}
.fs1_c00370{font-size:64.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y1b_c00370{bottom:50.880000pt;}
.y1a_c00370{bottom:107.600000pt;}
.y19_c00370{bottom:135.200000pt;}
.y18_c00370{bottom:162.800000pt;}
.y17_c00370{bottom:190.400000pt;}
.y16_c00370{bottom:218.000000pt;}
.y15_c00370{bottom:245.600000pt;}
.y14_c00370{bottom:263.440000pt;}
.y13_c00370{bottom:275.760000pt;}
.y12_c00370{bottom:655.680000pt;}
.y11_c00370{bottom:683.440000pt;}
.y10_c00370{bottom:711.040000pt;}
.yf_c00370{bottom:738.640000pt;}
.ye_c00370{bottom:766.160000pt;}
.yd_c00370{bottom:793.760000pt;}
.yc_c00370{bottom:821.360000pt;}
.yb_c00370{bottom:848.960000pt;}
.ya_c00370{bottom:876.560000pt;}
.y9_c00370{bottom:904.160000pt;}
.y8_c00370{bottom:931.760000pt;}
.y7_c00370{bottom:959.360000pt;}
.y6_c00370{bottom:986.960000pt;}
.y5_c00370{bottom:1005.360000pt;}
.y4_c00370{bottom:1023.040000pt;}
.y3_c00370{bottom:1036.804000pt;}
.y2_c00370{bottom:1050.640000pt;}
.y1_c00370{bottom:1064.400000pt;}
.h5_c00370{height:44.468750pt;}
.h3_c00370{height:47.085938pt;}
.h2_c00370{height:47.109375pt;}
.h4_c00370{height:62.812500pt;}
.h6_c00370{height:64.500000pt;}
.h0_c00370{height:1122.560000pt;}
.h1_c00370{height:1122.666667pt;}
.w0_c00370{width:793.840000pt;}
.w1_c00370{width:794.000000pt;}
.x0_c00370{left:0.000000pt;}
.x3_c00370{left:113.440000pt;}
.x4_c00370{left:146.080000pt;}
.x2_c00370{left:377.920000pt;}
.x1_c00370{left:396.960000pt;}
.x5_c00370{left:641.520000pt;}
.x6_c00370{left:656.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_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_cbfaba7ac45a6a99eec31bda.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.284180;font-style:normal;font-weight:normal;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_7d0533184eb12cbd58653d8d.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_76b23d672870b0c55c6d7aac.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;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:ff5_c00371;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5_c00371{font-family:ff5_c00371;line-height:1.432129;font-style: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);}
.v1_c00371{vertical-align:-61.938000px;}
.v0_c00371{vertical-align:0.000000px;}
.lse_c00371{letter-spacing:-0.216000px;}
.lsd_c00371{letter-spacing:-0.072000px;}
.lsc_c00371{letter-spacing:0.000000px;}
.ls1_c00371{letter-spacing:0.072000px;}
.lsa_c00371{letter-spacing:0.144000px;}
.lsb_c00371{letter-spacing:1.440000px;}
.ls3_c00371{letter-spacing:2.520000px;}
.ls5_c00371{letter-spacing:3.600000px;}
.ls4_c00371{letter-spacing:6.120000px;}
.ls8_c00371{letter-spacing:8.661600px;}
.ls9_c00371{letter-spacing:11.160000px;}
.ls6_c00371{letter-spacing:23.040000px;}
.ls7_c00371{letter-spacing:23.400000px;}
.ls2_c00371{letter-spacing:30.744000px;}
.ls0_c00371{letter-spacing:319.518000px;}
.sc__c00371{text-shadow:none;}
.sc1_c00371{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_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;}
.sc1_c00371{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00371{word-spacing:-18.144000px;}
.ws0_c00371{word-spacing:-18.072000px;}
.ws3_c00371{word-spacing:-18.000000px;}
.ws1_c00371{word-spacing:-17.928000px;}
.ws4_c00371{word-spacing:-17.784000px;}
.ws13_c00371{word-spacing:-0.432000px;}
.ws6_c00371{word-spacing:-0.162000px;}
.ws10_c00371{word-spacing:-0.144000px;}
.wsf_c00371{word-spacing:-0.072000px;}
.ws5_c00371{word-spacing:0.000000px;}
.ws17_c00371{word-spacing:1.008000px;}
.ws2d_c00371{word-spacing:1.080000px;}
.ws29_c00371{word-spacing:1.368000px;}
.ws2e_c00371{word-spacing:1.440000px;}
.wse_c00371{word-spacing:1.728000px;}
.ws15_c00371{word-spacing:2.736000px;}
.ws28_c00371{word-spacing:2.808000px;}
.ws16_c00371{word-spacing:2.880000px;}
.ws2b_c00371{word-spacing:3.528000px;}
.ws2c_c00371{word-spacing:3.816000px;}
.ws1d_c00371{word-spacing:3.888000px;}
.ws1e_c00371{word-spacing:3.960000px;}
.ws27_c00371{word-spacing:5.328000px;}
.ws26_c00371{word-spacing:5.400000px;}
.ws1b_c00371{word-spacing:6.048000px;}
.ws1c_c00371{word-spacing:6.120000px;}
.ws22_c00371{word-spacing:8.568000px;}
.ws23_c00371{word-spacing:8.640000px;}
.ws1f_c00371{word-spacing:9.288000px;}
.wsa_c00371{word-spacing:9.720000px;}
.ws24_c00371{word-spacing:11.016000px;}
.ws25_c00371{word-spacing:11.160000px;}
.ws14_c00371{word-spacing:11.520000px;}
.wsd_c00371{word-spacing:12.528000px;}
.ws7_c00371{word-spacing:12.888000px;}
.ws8_c00371{word-spacing:17.208000px;}
.ws9_c00371{word-spacing:17.280000px;}
.ws19_c00371{word-spacing:18.936000px;}
.ws18_c00371{word-spacing:19.080000px;}
.ws20_c00371{word-spacing:22.968000px;}
.ws21_c00371{word-spacing:23.040000px;}
.ws1a_c00371{word-spacing:23.400000px;}
.ws2a_c00371{word-spacing:26.640000px;}
.wsb_c00371{word-spacing:26.928000px;}
.wsc_c00371{word-spacing:27.000000px;}
.ws12_c00371{word-spacing:28.368000px;}
.ws11_c00371{word-spacing:28.440000px;}
._0_c00371{margin-left:-1.231200px;}
._2_c00371{width:1.008000px;}
._4_c00371{width:3.319200px;}
._3_c00371{width:4.953600px;}
._1_c00371{width:23.616000px;}
._5_c00371{width:27.432000px;}
.fc0_c00371{color:rgb(0,0,0);}
.fs0_c00371{font-size:54.000000px;}
.fs1_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y26_c00371{bottom:57.240000px;}
.y25_c00371{bottom:116.820000px;}
.y24_c00371{bottom:147.870000px;}
.y23_c00371{bottom:178.920000px;}
.y22_c00371{bottom:209.970000px;}
.y21_c00371{bottom:241.020000px;}
.y20_c00371{bottom:272.070000px;}
.y1f_c00371{bottom:303.120000px;}
.y1e_c00371{bottom:334.170000px;}
.y1d_c00371{bottom:365.220000px;}
.y1c_c00371{bottom:396.270000px;}
.y1b_c00371{bottom:427.320000px;}
.y1a_c00371{bottom:458.370000px;}
.y19_c00371{bottom:489.420000px;}
.y18_c00371{bottom:520.470000px;}
.y17_c00371{bottom:551.520000px;}
.y16_c00371{bottom:582.570000px;}
.y15_c00371{bottom:613.620000px;}
.y14_c00371{bottom:644.670000px;}
.y13_c00371{bottom:675.720000px;}
.y12_c00371{bottom:706.770000px;}
.y11_c00371{bottom:737.820000px;}
.y10_c00371{bottom:768.870000px;}
.yf_c00371{bottom:799.920000px;}
.ye_c00371{bottom:830.970000px;}
.yd_c00371{bottom:861.750000px;}
.yc_c00371{bottom:892.980000px;}
.yb_c00371{bottom:924.030000px;}
.ya_c00371{bottom:955.080000px;}
.y9_c00371{bottom:986.130000px;}
.y8_c00371{bottom:1017.180000px;}
.y7_c00371{bottom:1048.230000px;}
.y6_c00371{bottom:1079.280000px;}
.y5_c00371{bottom:1110.330000px;}
.y4_c00371{bottom:1131.030000px;}
.y3_c00371{bottom:1150.915500px;}
.y2_c00371{bottom:1166.400000px;}
.y1_c00371{bottom:1197.450000px;}
.h5_c00371{height:52.031250px;}
.h2_c00371{height:52.998047px;}
.h3_c00371{height:70.664062px;}
.h4_c00371{height:72.562500px;}
.h6_c00371{height:75.093750px;}
.h0_c00371{height:1262.880000px;}
.h1_c00371{height:1263.000000px;}
.w2_c00371{width:893.031000px;}
.w0_c00371{width:893.070000px;}
.w1_c00371{width:893.250000px;}
.x0_c00371{left:0.000000px;}
.x2_c00371{left:127.620000px;}
.x3_c00371{left:154.620000px;}
.x4_c00371{left:168.930000px;}
.x5_c00371{left:181.620000px;}
.x1_c00371{left:446.580000px;}
@media print{
.v1_c00371{vertical-align:-55.056000pt;}
.v0_c00371{vertical-align:0.000000pt;}
.lse_c00371{letter-spacing:-0.192000pt;}
.lsd_c00371{letter-spacing:-0.064000pt;}
.lsc_c00371{letter-spacing:0.000000pt;}
.ls1_c00371{letter-spacing:0.064000pt;}
.lsa_c00371{letter-spacing:0.128000pt;}
.lsb_c00371{letter-spacing:1.280000pt;}
.ls3_c00371{letter-spacing:2.240000pt;}
.ls5_c00371{letter-spacing:3.200000pt;}
.ls4_c00371{letter-spacing:5.440000pt;}
.ls8_c00371{letter-spacing:7.699200pt;}
.ls9_c00371{letter-spacing:9.920000pt;}
.ls6_c00371{letter-spacing:20.480000pt;}
.ls7_c00371{letter-spacing:20.800000pt;}
.ls2_c00371{letter-spacing:27.328000pt;}
.ls0_c00371{letter-spacing:284.016000pt;}
.ws2_c00371{word-spacing:-16.128000pt;}
.ws0_c00371{word-spacing:-16.064000pt;}
.ws3_c00371{word-spacing:-16.000000pt;}
.ws1_c00371{word-spacing:-15.936000pt;}
.ws4_c00371{word-spacing:-15.808000pt;}
.ws13_c00371{word-spacing:-0.384000pt;}
.ws6_c00371{word-spacing:-0.144000pt;}
.ws10_c00371{word-spacing:-0.128000pt;}
.wsf_c00371{word-spacing:-0.064000pt;}
.ws5_c00371{word-spacing:0.000000pt;}
.ws17_c00371{word-spacing:0.896000pt;}
.ws2d_c00371{word-spacing:0.960000pt;}
.ws29_c00371{word-spacing:1.216000pt;}
.ws2e_c00371{word-spacing:1.280000pt;}
.wse_c00371{word-spacing:1.536000pt;}
.ws15_c00371{word-spacing:2.432000pt;}
.ws28_c00371{word-spacing:2.496000pt;}
.ws16_c00371{word-spacing:2.560000pt;}
.ws2b_c00371{word-spacing:3.136000pt;}
.ws2c_c00371{word-spacing:3.392000pt;}
.ws1d_c00371{word-spacing:3.456000pt;}
.ws1e_c00371{word-spacing:3.520000pt;}
.ws27_c00371{word-spacing:4.736000pt;}
.ws26_c00371{word-spacing:4.800000pt;}
.ws1b_c00371{word-spacing:5.376000pt;}
.ws1c_c00371{word-spacing:5.440000pt;}
.ws22_c00371{word-spacing:7.616000pt;}
.ws23_c00371{word-spacing:7.680000pt;}
.ws1f_c00371{word-spacing:8.256000pt;}
.wsa_c00371{word-spacing:8.640000pt;}
.ws24_c00371{word-spacing:9.792000pt;}
.ws25_c00371{word-spacing:9.920000pt;}
.ws14_c00371{word-spacing:10.240000pt;}
.wsd_c00371{word-spacing:11.136000pt;}
.ws7_c00371{word-spacing:11.456000pt;}
.ws8_c00371{word-spacing:15.296000pt;}
.ws9_c00371{word-spacing:15.360000pt;}
.ws19_c00371{word-spacing:16.832000pt;}
.ws18_c00371{word-spacing:16.960000pt;}
.ws20_c00371{word-spacing:20.416000pt;}
.ws21_c00371{word-spacing:20.480000pt;}
.ws1a_c00371{word-spacing:20.800000pt;}
.ws2a_c00371{word-spacing:23.680000pt;}
.wsb_c00371{word-spacing:23.936000pt;}
.wsc_c00371{word-spacing:24.000000pt;}
.ws12_c00371{word-spacing:25.216000pt;}
.ws11_c00371{word-spacing:25.280000pt;}
._0_c00371{margin-left:-1.094400pt;}
._2_c00371{width:0.896000pt;}
._4_c00371{width:2.950400pt;}
._3_c00371{width:4.403200pt;}
._1_c00371{width:20.992000pt;}
._5_c00371{width:24.384000pt;}
.fs0_c00371{font-size:48.000000pt;}
.fs1_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y26_c00371{bottom:50.880000pt;}
.y25_c00371{bottom:103.840000pt;}
.y24_c00371{bottom:131.440000pt;}
.y23_c00371{bottom:159.040000pt;}
.y22_c00371{bottom:186.640000pt;}
.y21_c00371{bottom:214.240000pt;}
.y20_c00371{bottom:241.840000pt;}
.y1f_c00371{bottom:269.440000pt;}
.y1e_c00371{bottom:297.040000pt;}
.y1d_c00371{bottom:324.640000pt;}
.y1c_c00371{bottom:352.240000pt;}
.y1b_c00371{bottom:379.840000pt;}
.y1a_c00371{bottom:407.440000pt;}
.y19_c00371{bottom:435.040000pt;}
.y18_c00371{bottom:462.640000pt;}
.y17_c00371{bottom:490.240000pt;}
.y16_c00371{bottom:517.840000pt;}
.y15_c00371{bottom:545.440000pt;}
.y14_c00371{bottom:573.040000pt;}
.y13_c00371{bottom:600.640000pt;}
.y12_c00371{bottom:628.240000pt;}
.y11_c00371{bottom:655.840000pt;}
.y10_c00371{bottom:683.440000pt;}
.yf_c00371{bottom:711.040000pt;}
.ye_c00371{bottom:738.640000pt;}
.yd_c00371{bottom:766.000000pt;}
.yc_c00371{bottom:793.760000pt;}
.yb_c00371{bottom:821.360000pt;}
.ya_c00371{bottom:848.960000pt;}
.y9_c00371{bottom:876.560000pt;}
.y8_c00371{bottom:904.160000pt;}
.y7_c00371{bottom:931.760000pt;}
.y6_c00371{bottom:959.360000pt;}
.y5_c00371{bottom:986.960000pt;}
.y4_c00371{bottom:1005.360000pt;}
.y3_c00371{bottom:1023.036000pt;}
.y2_c00371{bottom:1036.800000pt;}
.y1_c00371{bottom:1064.400000pt;}
.h5_c00371{height:46.250000pt;}
.h2_c00371{height:47.109375pt;}
.h3_c00371{height:62.812500pt;}
.h4_c00371{height:64.500000pt;}
.h6_c00371{height:66.750000pt;}
.h0_c00371{height:1122.560000pt;}
.h1_c00371{height:1122.666667pt;}
.w2_c00371{width:793.805333pt;}
.w0_c00371{width:793.840000pt;}
.w1_c00371{width:794.000000pt;}
.x0_c00371{left:0.000000pt;}
.x2_c00371{left:113.440000pt;}
.x3_c00371{left:137.440000pt;}
.x4_c00371{left:150.160000pt;}
.x5_c00371{left:161.440000pt;}
.x1_c00371{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f003e4810503385637a5515.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_2b4ad2b7151f1aec458bc67a.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;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_c00372;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00372;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c00372{letter-spacing:-0.360000px;}
.lsb_c00372{letter-spacing:-0.108000px;}
.lsd_c00372{letter-spacing:-0.072000px;}
.lsa_c00372{letter-spacing:0.000000px;}
.ls2_c00372{letter-spacing:0.072000px;}
.lsc_c00372{letter-spacing:0.144000px;}
.ls5_c00372{letter-spacing:0.165600px;}
.ls8_c00372{letter-spacing:0.360000px;}
.ls3_c00372{letter-spacing:1.800000px;}
.ls1_c00372{letter-spacing:3.600000px;}
.ls4_c00372{letter-spacing:4.680000px;}
.ls6_c00372{letter-spacing:6.120000px;}
.ls9_c00372{letter-spacing:12.240000px;}
.ls7_c00372{letter-spacing:15.120000px;}
.ls0_c00372{letter-spacing:30.744000px;}
.sc__c00372{text-shadow:none;}
.sc1_c00372{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_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;}
.sc1_c00372{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:-18.072000px;}
.ws2_c00372{word-spacing:-18.000000px;}
.ws1_c00372{word-spacing:-17.928000px;}
.ws3_c00372{word-spacing:-17.640000px;}
.ws15_c00372{word-spacing:-0.144000px;}
.wse_c00372{word-spacing:-0.072000px;}
.ws4_c00372{word-spacing:0.000000px;}
.ws6_c00372{word-spacing:0.162000px;}
.ws5_c00372{word-spacing:0.270000px;}
.ws26_c00372{word-spacing:0.360000px;}
.ws10_c00372{word-spacing:1.080000px;}
.wsf_c00372{word-spacing:1.368000px;}
.ws17_c00372{word-spacing:1.728000px;}
.ws16_c00372{word-spacing:1.800000px;}
.ws1f_c00372{word-spacing:2.880000px;}
.ws8_c00372{word-spacing:3.600000px;}
.ws7_c00372{word-spacing:3.888000px;}
.ws9_c00372{word-spacing:3.960000px;}
.ws18_c00372{word-spacing:4.320000px;}
.ws11_c00372{word-spacing:4.608000px;}
.ws12_c00372{word-spacing:4.680000px;}
.ws1b_c00372{word-spacing:5.400000px;}
.ws1d_c00372{word-spacing:6.120000px;}
.wsd_c00372{word-spacing:6.408000px;}
.ws14_c00372{word-spacing:7.488000px;}
.wsb_c00372{word-spacing:11.088000px;}
.ws27_c00372{word-spacing:12.168000px;}
.ws19_c00372{word-spacing:12.240000px;}
.wsc_c00372{word-spacing:12.528000px;}
.wsa_c00372{word-spacing:12.960000px;}
.ws1c_c00372{word-spacing:14.328000px;}
.ws20_c00372{word-spacing:15.120000px;}
.ws1e_c00372{word-spacing:15.768000px;}
.ws21_c00372{word-spacing:15.840000px;}
.ws24_c00372{word-spacing:16.848000px;}
.ws25_c00372{word-spacing:16.920000px;}
.ws22_c00372{word-spacing:17.208000px;}
.ws23_c00372{word-spacing:17.280000px;}
.ws1a_c00372{word-spacing:20.088000px;}
.ws13_c00372{word-spacing:24.048000px;}
._1_c00372{margin-left:-1.058400px;}
._0_c00372{width:1.220400px;}
._3_c00372{width:2.448000px;}
._4_c00372{width:3.672000px;}
._2_c00372{width:14.544000px;}
._5_c00372{width:16.826400px;}
.fc0_c00372{color:rgb(0,0,0);}
.fs0_c00372{font-size:54.000000px;}
.fs1_c00372{font-size:72.000000px;}
.y0_c00372{bottom:0.000000px;}
.y26_c00372{bottom:57.240000px;}
.y25_c00372{bottom:147.870000px;}
.y24_c00372{bottom:178.920000px;}
.y23_c00372{bottom:209.970000px;}
.y22_c00372{bottom:241.020000px;}
.y21_c00372{bottom:272.070000px;}
.y20_c00372{bottom:303.120000px;}
.y1f_c00372{bottom:334.170000px;}
.y1e_c00372{bottom:365.220000px;}
.y1d_c00372{bottom:396.270000px;}
.y1c_c00372{bottom:427.320000px;}
.y1b_c00372{bottom:458.370000px;}
.y1a_c00372{bottom:489.420000px;}
.y19_c00372{bottom:520.470000px;}
.y18_c00372{bottom:551.520000px;}
.y17_c00372{bottom:582.570000px;}
.y16_c00372{bottom:613.620000px;}
.y15_c00372{bottom:644.670000px;}
.y14_c00372{bottom:675.720000px;}
.y13_c00372{bottom:706.770000px;}
.y12_c00372{bottom:737.820000px;}
.y11_c00372{bottom:768.870000px;}
.y10_c00372{bottom:799.920000px;}
.yf_c00372{bottom:830.970000px;}
.ye_c00372{bottom:861.930000px;}
.yd_c00372{bottom:892.980000px;}
.yc_c00372{bottom:924.030000px;}
.yb_c00372{bottom:955.080000px;}
.ya_c00372{bottom:986.130000px;}
.y9_c00372{bottom:1017.180000px;}
.y8_c00372{bottom:1048.230000px;}
.y7_c00372{bottom:1079.280000px;}
.y6_c00372{bottom:1110.330000px;}
.y5_c00372{bottom:1131.030000px;}
.y4_c00372{bottom:1150.920000px;}
.y3_c00372{bottom:1166.404500px;}
.y2_c00372{bottom:1181.970000px;}
.y1_c00372{bottom:1197.450000px;}
.h5_c00372{height:52.031250px;}
.h3_c00372{height:52.971680px;}
.h2_c00372{height:52.998047px;}
.h4_c00372{height:70.664062px;}
.h6_c00372{height:75.093750px;}
.h0_c00372{height:1262.880000px;}
.h1_c00372{height:1263.000000px;}
.w2_c00372{width:893.031000px;}
.w0_c00372{width:893.070000px;}
.w1_c00372{width:893.250000px;}
.x0_c00372{left:0.000000px;}
.x3_c00372{left:127.620000px;}
.x4_c00372{left:154.620000px;}
.x5_c00372{left:168.930000px;}
.x6_c00372{left:181.620000px;}
.x2_c00372{left:425.160000px;}
.x1_c00372{left:446.580000px;}
.x7_c00372{left:738.540000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.lse_c00372{letter-spacing:-0.320000pt;}
.lsb_c00372{letter-spacing:-0.096000pt;}
.lsd_c00372{letter-spacing:-0.064000pt;}
.lsa_c00372{letter-spacing:0.000000pt;}
.ls2_c00372{letter-spacing:0.064000pt;}
.lsc_c00372{letter-spacing:0.128000pt;}
.ls5_c00372{letter-spacing:0.147200pt;}
.ls8_c00372{letter-spacing:0.320000pt;}
.ls3_c00372{letter-spacing:1.600000pt;}
.ls1_c00372{letter-spacing:3.200000pt;}
.ls4_c00372{letter-spacing:4.160000pt;}
.ls6_c00372{letter-spacing:5.440000pt;}
.ls9_c00372{letter-spacing:10.880000pt;}
.ls7_c00372{letter-spacing:13.440000pt;}
.ls0_c00372{letter-spacing:27.328000pt;}
.ws0_c00372{word-spacing:-16.064000pt;}
.ws2_c00372{word-spacing:-16.000000pt;}
.ws1_c00372{word-spacing:-15.936000pt;}
.ws3_c00372{word-spacing:-15.680000pt;}
.ws15_c00372{word-spacing:-0.128000pt;}
.wse_c00372{word-spacing:-0.064000pt;}
.ws4_c00372{word-spacing:0.000000pt;}
.ws6_c00372{word-spacing:0.144000pt;}
.ws5_c00372{word-spacing:0.240000pt;}
.ws26_c00372{word-spacing:0.320000pt;}
.ws10_c00372{word-spacing:0.960000pt;}
.wsf_c00372{word-spacing:1.216000pt;}
.ws17_c00372{word-spacing:1.536000pt;}
.ws16_c00372{word-spacing:1.600000pt;}
.ws1f_c00372{word-spacing:2.560000pt;}
.ws8_c00372{word-spacing:3.200000pt;}
.ws7_c00372{word-spacing:3.456000pt;}
.ws9_c00372{word-spacing:3.520000pt;}
.ws18_c00372{word-spacing:3.840000pt;}
.ws11_c00372{word-spacing:4.096000pt;}
.ws12_c00372{word-spacing:4.160000pt;}
.ws1b_c00372{word-spacing:4.800000pt;}
.ws1d_c00372{word-spacing:5.440000pt;}
.wsd_c00372{word-spacing:5.696000pt;}
.ws14_c00372{word-spacing:6.656000pt;}
.wsb_c00372{word-spacing:9.856000pt;}
.ws27_c00372{word-spacing:10.816000pt;}
.ws19_c00372{word-spacing:10.880000pt;}
.wsc_c00372{word-spacing:11.136000pt;}
.wsa_c00372{word-spacing:11.520000pt;}
.ws1c_c00372{word-spacing:12.736000pt;}
.ws20_c00372{word-spacing:13.440000pt;}
.ws1e_c00372{word-spacing:14.016000pt;}
.ws21_c00372{word-spacing:14.080000pt;}
.ws24_c00372{word-spacing:14.976000pt;}
.ws25_c00372{word-spacing:15.040000pt;}
.ws22_c00372{word-spacing:15.296000pt;}
.ws23_c00372{word-spacing:15.360000pt;}
.ws1a_c00372{word-spacing:17.856000pt;}
.ws13_c00372{word-spacing:21.376000pt;}
._1_c00372{margin-left:-0.940800pt;}
._0_c00372{width:1.084800pt;}
._3_c00372{width:2.176000pt;}
._4_c00372{width:3.264000pt;}
._2_c00372{width:12.928000pt;}
._5_c00372{width:14.956800pt;}
.fs0_c00372{font-size:48.000000pt;}
.fs1_c00372{font-size:64.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y26_c00372{bottom:50.880000pt;}
.y25_c00372{bottom:131.440000pt;}
.y24_c00372{bottom:159.040000pt;}
.y23_c00372{bottom:186.640000pt;}
.y22_c00372{bottom:214.240000pt;}
.y21_c00372{bottom:241.840000pt;}
.y20_c00372{bottom:269.440000pt;}
.y1f_c00372{bottom:297.040000pt;}
.y1e_c00372{bottom:324.640000pt;}
.y1d_c00372{bottom:352.240000pt;}
.y1c_c00372{bottom:379.840000pt;}
.y1b_c00372{bottom:407.440000pt;}
.y1a_c00372{bottom:435.040000pt;}
.y19_c00372{bottom:462.640000pt;}
.y18_c00372{bottom:490.240000pt;}
.y17_c00372{bottom:517.840000pt;}
.y16_c00372{bottom:545.440000pt;}
.y15_c00372{bottom:573.040000pt;}
.y14_c00372{bottom:600.640000pt;}
.y13_c00372{bottom:628.240000pt;}
.y12_c00372{bottom:655.840000pt;}
.y11_c00372{bottom:683.440000pt;}
.y10_c00372{bottom:711.040000pt;}
.yf_c00372{bottom:738.640000pt;}
.ye_c00372{bottom:766.160000pt;}
.yd_c00372{bottom:793.760000pt;}
.yc_c00372{bottom:821.360000pt;}
.yb_c00372{bottom:848.960000pt;}
.ya_c00372{bottom:876.560000pt;}
.y9_c00372{bottom:904.160000pt;}
.y8_c00372{bottom:931.760000pt;}
.y7_c00372{bottom:959.360000pt;}
.y6_c00372{bottom:986.960000pt;}
.y5_c00372{bottom:1005.360000pt;}
.y4_c00372{bottom:1023.040000pt;}
.y3_c00372{bottom:1036.804000pt;}
.y2_c00372{bottom:1050.640000pt;}
.y1_c00372{bottom:1064.400000pt;}
.h5_c00372{height:46.250000pt;}
.h3_c00372{height:47.085938pt;}
.h2_c00372{height:47.109375pt;}
.h4_c00372{height:62.812500pt;}
.h6_c00372{height:66.750000pt;}
.h0_c00372{height:1122.560000pt;}
.h1_c00372{height:1122.666667pt;}
.w2_c00372{width:793.805333pt;}
.w0_c00372{width:793.840000pt;}
.w1_c00372{width:794.000000pt;}
.x0_c00372{left:0.000000pt;}
.x3_c00372{left:113.440000pt;}
.x4_c00372{left:137.440000pt;}
.x5_c00372{left:150.160000pt;}
.x6_c00372{left:161.440000pt;}
.x2_c00372{left:377.920000pt;}
.x1_c00372{left:396.960000pt;}
.x7_c00372{left:656.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_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_12126679120a41d8adc00a02.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_4179d2c7262ed9817bfbe932.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;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_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);}
.v1_c00373{vertical-align:-61.938000px;}
.v0_c00373{vertical-align:0.000000px;}
.ls7_c00373{letter-spacing:-0.360000px;}
.ls6_c00373{letter-spacing:-0.072000px;}
.ls5_c00373{letter-spacing:0.000000px;}
.ls4_c00373{letter-spacing:0.072000px;}
.ls8_c00373{letter-spacing:0.144000px;}
.ls1_c00373{letter-spacing:1.800000px;}
.ls2_c00373{letter-spacing:4.701600px;}
.ls3_c00373{letter-spacing:5.040000px;}
.ls0_c00373{letter-spacing:319.518000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00373{word-spacing:-18.144000px;}
.ws1_c00373{word-spacing:-18.072000px;}
.ws0_c00373{word-spacing:-17.928000px;}
.ws4_c00373{word-spacing:-0.162000px;}
.ws7_c00373{word-spacing:-0.072000px;}
.ws3_c00373{word-spacing:0.000000px;}
.ws19_c00373{word-spacing:0.720000px;}
.wsd_c00373{word-spacing:1.440000px;}
.ws16_c00373{word-spacing:2.160000px;}
.ws2b_c00373{word-spacing:3.240000px;}
.ws20_c00373{word-spacing:4.248000px;}
.wsb_c00373{word-spacing:4.608000px;}
.ws15_c00373{word-spacing:4.680000px;}
.wsa_c00373{word-spacing:4.968000px;}
.ws1f_c00373{word-spacing:5.688000px;}
.ws1e_c00373{word-spacing:5.760000px;}
.ws2a_c00373{word-spacing:6.048000px;}
.ws26_c00373{word-spacing:6.408000px;}
.ws27_c00373{word-spacing:6.480000px;}
.ws22_c00373{word-spacing:7.128000px;}
.ws23_c00373{word-spacing:7.200000px;}
.ws2d_c00373{word-spacing:7.416000px;}
.ws2c_c00373{word-spacing:7.488000px;}
.ws10_c00373{word-spacing:7.560000px;}
.ws18_c00373{word-spacing:7.848000px;}
.ws17_c00373{word-spacing:7.920000px;}
.ws1a_c00373{word-spacing:9.000000px;}
.ws5_c00373{word-spacing:9.288000px;}
.ws6_c00373{word-spacing:9.360000px;}
.ws9_c00373{word-spacing:11.160000px;}
.wsc_c00373{word-spacing:11.448000px;}
.ws1c_c00373{word-spacing:11.520000px;}
.ws1b_c00373{word-spacing:11.808000px;}
.ws1d_c00373{word-spacing:11.880000px;}
.ws28_c00373{word-spacing:14.688000px;}
.ws29_c00373{word-spacing:14.760000px;}
.wsf_c00373{word-spacing:17.280000px;}
.ws21_c00373{word-spacing:17.568000px;}
.wse_c00373{word-spacing:17.640000px;}
.ws11_c00373{word-spacing:17.928000px;}
.ws12_c00373{word-spacing:18.360000px;}
.ws24_c00373{word-spacing:19.008000px;}
.ws25_c00373{word-spacing:19.080000px;}
.ws8_c00373{word-spacing:19.728000px;}
.ws14_c00373{word-spacing:33.408000px;}
.ws13_c00373{word-spacing:33.840000px;}
._0_c00373{margin-left:-1.303200px;}
._1_c00373{width:1.101600px;}
._2_c00373{width:2.880000px;}
._3_c00373{width:3.888000px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs0_c00373{font-size:54.000000px;}
.fs1_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y26_c00373{bottom:57.240000px;}
.y25_c00373{bottom:116.820000px;}
.y24_c00373{bottom:147.870000px;}
.y23_c00373{bottom:178.920000px;}
.y22_c00373{bottom:209.970000px;}
.y21_c00373{bottom:241.020000px;}
.y20_c00373{bottom:272.070000px;}
.y1f_c00373{bottom:303.120000px;}
.y1e_c00373{bottom:334.170000px;}
.y1d_c00373{bottom:365.220000px;}
.y1c_c00373{bottom:396.270000px;}
.y1b_c00373{bottom:427.320000px;}
.y1a_c00373{bottom:458.370000px;}
.y19_c00373{bottom:489.420000px;}
.y18_c00373{bottom:520.470000px;}
.y17_c00373{bottom:551.520000px;}
.y16_c00373{bottom:582.570000px;}
.y15_c00373{bottom:613.620000px;}
.y14_c00373{bottom:644.670000px;}
.y13_c00373{bottom:675.720000px;}
.y12_c00373{bottom:706.770000px;}
.y11_c00373{bottom:737.820000px;}
.y10_c00373{bottom:768.870000px;}
.yf_c00373{bottom:799.920000px;}
.ye_c00373{bottom:830.970000px;}
.yd_c00373{bottom:861.930000px;}
.yc_c00373{bottom:892.980000px;}
.yb_c00373{bottom:924.030000px;}
.ya_c00373{bottom:955.080000px;}
.y9_c00373{bottom:986.130000px;}
.y8_c00373{bottom:1017.180000px;}
.y7_c00373{bottom:1048.230000px;}
.y6_c00373{bottom:1079.280000px;}
.y5_c00373{bottom:1110.330000px;}
.y4_c00373{bottom:1131.030000px;}
.y3_c00373{bottom:1150.915500px;}
.y2_c00373{bottom:1166.400000px;}
.y1_c00373{bottom:1197.450000px;}
.h2_c00373{height:52.998047px;}
.h3_c00373{height:70.664062px;}
.h0_c00373{height:1262.880000px;}
.h1_c00373{height:1263.000000px;}
.w0_c00373{width:893.070000px;}
.w1_c00373{width:893.250000px;}
.x0_c00373{left:0.000000px;}
.x2_c00373{left:127.620000px;}
.x1_c00373{left:446.580000px;}
@media print{
.v1_c00373{vertical-align:-55.056000pt;}
.v0_c00373{vertical-align:0.000000pt;}
.ls7_c00373{letter-spacing:-0.320000pt;}
.ls6_c00373{letter-spacing:-0.064000pt;}
.ls5_c00373{letter-spacing:0.000000pt;}
.ls4_c00373{letter-spacing:0.064000pt;}
.ls8_c00373{letter-spacing:0.128000pt;}
.ls1_c00373{letter-spacing:1.600000pt;}
.ls2_c00373{letter-spacing:4.179200pt;}
.ls3_c00373{letter-spacing:4.480000pt;}
.ls0_c00373{letter-spacing:284.016000pt;}
.ws2_c00373{word-spacing:-16.128000pt;}
.ws1_c00373{word-spacing:-16.064000pt;}
.ws0_c00373{word-spacing:-15.936000pt;}
.ws4_c00373{word-spacing:-0.144000pt;}
.ws7_c00373{word-spacing:-0.064000pt;}
.ws3_c00373{word-spacing:0.000000pt;}
.ws19_c00373{word-spacing:0.640000pt;}
.wsd_c00373{word-spacing:1.280000pt;}
.ws16_c00373{word-spacing:1.920000pt;}
.ws2b_c00373{word-spacing:2.880000pt;}
.ws20_c00373{word-spacing:3.776000pt;}
.wsb_c00373{word-spacing:4.096000pt;}
.ws15_c00373{word-spacing:4.160000pt;}
.wsa_c00373{word-spacing:4.416000pt;}
.ws1f_c00373{word-spacing:5.056000pt;}
.ws1e_c00373{word-spacing:5.120000pt;}
.ws2a_c00373{word-spacing:5.376000pt;}
.ws26_c00373{word-spacing:5.696000pt;}
.ws27_c00373{word-spacing:5.760000pt;}
.ws22_c00373{word-spacing:6.336000pt;}
.ws23_c00373{word-spacing:6.400000pt;}
.ws2d_c00373{word-spacing:6.592000pt;}
.ws2c_c00373{word-spacing:6.656000pt;}
.ws10_c00373{word-spacing:6.720000pt;}
.ws18_c00373{word-spacing:6.976000pt;}
.ws17_c00373{word-spacing:7.040000pt;}
.ws1a_c00373{word-spacing:8.000000pt;}
.ws5_c00373{word-spacing:8.256000pt;}
.ws6_c00373{word-spacing:8.320000pt;}
.ws9_c00373{word-spacing:9.920000pt;}
.wsc_c00373{word-spacing:10.176000pt;}
.ws1c_c00373{word-spacing:10.240000pt;}
.ws1b_c00373{word-spacing:10.496000pt;}
.ws1d_c00373{word-spacing:10.560000pt;}
.ws28_c00373{word-spacing:13.056000pt;}
.ws29_c00373{word-spacing:13.120000pt;}
.wsf_c00373{word-spacing:15.360000pt;}
.ws21_c00373{word-spacing:15.616000pt;}
.wse_c00373{word-spacing:15.680000pt;}
.ws11_c00373{word-spacing:15.936000pt;}
.ws12_c00373{word-spacing:16.320000pt;}
.ws24_c00373{word-spacing:16.896000pt;}
.ws25_c00373{word-spacing:16.960000pt;}
.ws8_c00373{word-spacing:17.536000pt;}
.ws14_c00373{word-spacing:29.696000pt;}
.ws13_c00373{word-spacing:30.080000pt;}
._0_c00373{margin-left:-1.158400pt;}
._1_c00373{width:0.979200pt;}
._2_c00373{width:2.560000pt;}
._3_c00373{width:3.456000pt;}
.fs0_c00373{font-size:48.000000pt;}
.fs1_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y26_c00373{bottom:50.880000pt;}
.y25_c00373{bottom:103.840000pt;}
.y24_c00373{bottom:131.440000pt;}
.y23_c00373{bottom:159.040000pt;}
.y22_c00373{bottom:186.640000pt;}
.y21_c00373{bottom:214.240000pt;}
.y20_c00373{bottom:241.840000pt;}
.y1f_c00373{bottom:269.440000pt;}
.y1e_c00373{bottom:297.040000pt;}
.y1d_c00373{bottom:324.640000pt;}
.y1c_c00373{bottom:352.240000pt;}
.y1b_c00373{bottom:379.840000pt;}
.y1a_c00373{bottom:407.440000pt;}
.y19_c00373{bottom:435.040000pt;}
.y18_c00373{bottom:462.640000pt;}
.y17_c00373{bottom:490.240000pt;}
.y16_c00373{bottom:517.840000pt;}
.y15_c00373{bottom:545.440000pt;}
.y14_c00373{bottom:573.040000pt;}
.y13_c00373{bottom:600.640000pt;}
.y12_c00373{bottom:628.240000pt;}
.y11_c00373{bottom:655.840000pt;}
.y10_c00373{bottom:683.440000pt;}
.yf_c00373{bottom:711.040000pt;}
.ye_c00373{bottom:738.640000pt;}
.yd_c00373{bottom:766.160000pt;}
.yc_c00373{bottom:793.760000pt;}
.yb_c00373{bottom:821.360000pt;}
.ya_c00373{bottom:848.960000pt;}
.y9_c00373{bottom:876.560000pt;}
.y8_c00373{bottom:904.160000pt;}
.y7_c00373{bottom:931.760000pt;}
.y6_c00373{bottom:959.360000pt;}
.y5_c00373{bottom:986.960000pt;}
.y4_c00373{bottom:1005.360000pt;}
.y3_c00373{bottom:1023.036000pt;}
.y2_c00373{bottom:1036.800000pt;}
.y1_c00373{bottom:1064.400000pt;}
.h2_c00373{height:47.109375pt;}
.h3_c00373{height:62.812500pt;}
.h0_c00373{height:1122.560000pt;}
.h1_c00373{height:1122.666667pt;}
.w0_c00373{width:793.840000pt;}
.w1_c00373{width:794.000000pt;}
.x0_c00373{left:0.000000pt;}
.x2_c00373{left:113.440000pt;}
.x1_c00373{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8782de871c67e3f0daeba532.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.284180;font-style:normal;font-weight:normal;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_ce49d459a884a7095141fdab.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;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_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.360000px;}
.ls4_c00374{letter-spacing:-0.108000px;}
.ls3_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:0.072000px;}
.ls6_c00374{letter-spacing:0.144000px;}
.ls1_c00374{letter-spacing:0.360000px;}
.ls2_c00374{letter-spacing:5.760000px;}
.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;}
}
.ws1_c00374{word-spacing:-18.144000px;}
.ws0_c00374{word-spacing:-18.000000px;}
.ws1d_c00374{word-spacing:-0.360000px;}
.ws13_c00374{word-spacing:-0.072000px;}
.ws2_c00374{word-spacing:0.000000px;}
.ws4_c00374{word-spacing:0.162000px;}
.ws3_c00374{word-spacing:0.270000px;}
.ws12_c00374{word-spacing:0.360000px;}
.ws21_c00374{word-spacing:0.648000px;}
.ws22_c00374{word-spacing:0.720000px;}
.wsf_c00374{word-spacing:1.728000px;}
.ws10_c00374{word-spacing:1.800000px;}
.ws27_c00374{word-spacing:4.248000px;}
.ws26_c00374{word-spacing:4.320000px;}
.ws1e_c00374{word-spacing:5.040000px;}
.ws23_c00374{word-spacing:5.328000px;}
.wse_c00374{word-spacing:5.400000px;}
.ws8_c00374{word-spacing:5.688000px;}
.ws9_c00374{word-spacing:5.760000px;}
.ws2e_c00374{word-spacing:6.408000px;}
.ws2f_c00374{word-spacing:6.480000px;}
.ws2a_c00374{word-spacing:7.128000px;}
.ws2b_c00374{word-spacing:7.200000px;}
.ws16_c00374{word-spacing:7.416000px;}
.ws15_c00374{word-spacing:7.488000px;}
.ws17_c00374{word-spacing:9.000000px;}
.ws14_c00374{word-spacing:9.360000px;}
.ws18_c00374{word-spacing:9.576000px;}
.ws20_c00374{word-spacing:9.648000px;}
.ws19_c00374{word-spacing:9.720000px;}
.ws24_c00374{word-spacing:11.808000px;}
.ws25_c00374{word-spacing:11.880000px;}
.ws6_c00374{word-spacing:15.048000px;}
.ws7_c00374{word-spacing:15.120000px;}
.ws1b_c00374{word-spacing:16.920000px;}
.ws1a_c00374{word-spacing:17.280000px;}
.ws28_c00374{word-spacing:17.568000px;}
.ws29_c00374{word-spacing:17.640000px;}
.wsc_c00374{word-spacing:18.288000px;}
.wsd_c00374{word-spacing:18.360000px;}
.ws2c_c00374{word-spacing:19.008000px;}
.ws2d_c00374{word-spacing:19.080000px;}
.ws1f_c00374{word-spacing:21.528000px;}
.ws1c_c00374{word-spacing:24.480000px;}
.wsa_c00374{word-spacing:29.448000px;}
.wsb_c00374{word-spacing:29.520000px;}
.ws11_c00374{word-spacing:32.040000px;}
.ws5_c00374{word-spacing:33.480000px;}
._1_c00374{margin-left:-1.058400px;}
._0_c00374{width:1.220400px;}
._5_c00374{width:5.400000px;}
._3_c00374{width:8.899200px;}
._4_c00374{width:9.921600px;}
._6_c00374{width:11.246400px;}
._2_c00374{width:33.552000px;}
.fc0_c00374{color:rgb(0,0,0);}
.fs0_c00374{font-size:54.000000px;}
.fs1_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y26_c00374{bottom:57.240000px;}
.y25_c00374{bottom:147.870000px;}
.y24_c00374{bottom:178.920000px;}
.y23_c00374{bottom:209.970000px;}
.y22_c00374{bottom:241.020000px;}
.y21_c00374{bottom:272.070000px;}
.y20_c00374{bottom:303.120000px;}
.y1f_c00374{bottom:334.170000px;}
.y1e_c00374{bottom:365.220000px;}
.y1d_c00374{bottom:396.270000px;}
.y1c_c00374{bottom:427.320000px;}
.y1b_c00374{bottom:458.370000px;}
.y1a_c00374{bottom:489.420000px;}
.y19_c00374{bottom:520.470000px;}
.y18_c00374{bottom:551.520000px;}
.y17_c00374{bottom:582.570000px;}
.y16_c00374{bottom:613.620000px;}
.y15_c00374{bottom:644.670000px;}
.y14_c00374{bottom:675.720000px;}
.y13_c00374{bottom:706.770000px;}
.y12_c00374{bottom:737.820000px;}
.y11_c00374{bottom:768.870000px;}
.y10_c00374{bottom:799.920000px;}
.yf_c00374{bottom:830.970000px;}
.ye_c00374{bottom:861.930000px;}
.yd_c00374{bottom:892.980000px;}
.yc_c00374{bottom:924.030000px;}
.yb_c00374{bottom:955.080000px;}
.ya_c00374{bottom:986.130000px;}
.y9_c00374{bottom:1017.180000px;}
.y8_c00374{bottom:1048.230000px;}
.y7_c00374{bottom:1079.280000px;}
.y6_c00374{bottom:1110.330000px;}
.y5_c00374{bottom:1131.030000px;}
.y4_c00374{bottom:1150.920000px;}
.y3_c00374{bottom:1166.404500px;}
.y2_c00374{bottom:1181.970000px;}
.y1_c00374{bottom:1197.450000px;}
.h5_c00374{height:50.027344px;}
.h3_c00374{height:52.971680px;}
.h2_c00374{height:52.998047px;}
.h4_c00374{height:70.664062px;}
.h0_c00374{height:1262.880000px;}
.h1_c00374{height:1263.000000px;}
.w0_c00374{width:893.070000px;}
.w1_c00374{width:893.250000px;}
.x0_c00374{left:0.000000px;}
.x3_c00374{left:127.620000px;}
.x2_c00374{left:425.160000px;}
.x1_c00374{left:446.580000px;}
.x4_c00374{left:738.540000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls5_c00374{letter-spacing:-0.320000pt;}
.ls4_c00374{letter-spacing:-0.096000pt;}
.ls3_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:0.064000pt;}
.ls6_c00374{letter-spacing:0.128000pt;}
.ls1_c00374{letter-spacing:0.320000pt;}
.ls2_c00374{letter-spacing:5.120000pt;}
.ws1_c00374{word-spacing:-16.128000pt;}
.ws0_c00374{word-spacing:-16.000000pt;}
.ws1d_c00374{word-spacing:-0.320000pt;}
.ws13_c00374{word-spacing:-0.064000pt;}
.ws2_c00374{word-spacing:0.000000pt;}
.ws4_c00374{word-spacing:0.144000pt;}
.ws3_c00374{word-spacing:0.240000pt;}
.ws12_c00374{word-spacing:0.320000pt;}
.ws21_c00374{word-spacing:0.576000pt;}
.ws22_c00374{word-spacing:0.640000pt;}
.wsf_c00374{word-spacing:1.536000pt;}
.ws10_c00374{word-spacing:1.600000pt;}
.ws27_c00374{word-spacing:3.776000pt;}
.ws26_c00374{word-spacing:3.840000pt;}
.ws1e_c00374{word-spacing:4.480000pt;}
.ws23_c00374{word-spacing:4.736000pt;}
.wse_c00374{word-spacing:4.800000pt;}
.ws8_c00374{word-spacing:5.056000pt;}
.ws9_c00374{word-spacing:5.120000pt;}
.ws2e_c00374{word-spacing:5.696000pt;}
.ws2f_c00374{word-spacing:5.760000pt;}
.ws2a_c00374{word-spacing:6.336000pt;}
.ws2b_c00374{word-spacing:6.400000pt;}
.ws16_c00374{word-spacing:6.592000pt;}
.ws15_c00374{word-spacing:6.656000pt;}
.ws17_c00374{word-spacing:8.000000pt;}
.ws14_c00374{word-spacing:8.320000pt;}
.ws18_c00374{word-spacing:8.512000pt;}
.ws20_c00374{word-spacing:8.576000pt;}
.ws19_c00374{word-spacing:8.640000pt;}
.ws24_c00374{word-spacing:10.496000pt;}
.ws25_c00374{word-spacing:10.560000pt;}
.ws6_c00374{word-spacing:13.376000pt;}
.ws7_c00374{word-spacing:13.440000pt;}
.ws1b_c00374{word-spacing:15.040000pt;}
.ws1a_c00374{word-spacing:15.360000pt;}
.ws28_c00374{word-spacing:15.616000pt;}
.ws29_c00374{word-spacing:15.680000pt;}
.wsc_c00374{word-spacing:16.256000pt;}
.wsd_c00374{word-spacing:16.320000pt;}
.ws2c_c00374{word-spacing:16.896000pt;}
.ws2d_c00374{word-spacing:16.960000pt;}
.ws1f_c00374{word-spacing:19.136000pt;}
.ws1c_c00374{word-spacing:21.760000pt;}
.wsa_c00374{word-spacing:26.176000pt;}
.wsb_c00374{word-spacing:26.240000pt;}
.ws11_c00374{word-spacing:28.480000pt;}
.ws5_c00374{word-spacing:29.760000pt;}
._1_c00374{margin-left:-0.940800pt;}
._0_c00374{width:1.084800pt;}
._5_c00374{width:4.800000pt;}
._3_c00374{width:7.910400pt;}
._4_c00374{width:8.819200pt;}
._6_c00374{width:9.996800pt;}
._2_c00374{width:29.824000pt;}
.fs0_c00374{font-size:48.000000pt;}
.fs1_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y26_c00374{bottom:50.880000pt;}
.y25_c00374{bottom:131.440000pt;}
.y24_c00374{bottom:159.040000pt;}
.y23_c00374{bottom:186.640000pt;}
.y22_c00374{bottom:214.240000pt;}
.y21_c00374{bottom:241.840000pt;}
.y20_c00374{bottom:269.440000pt;}
.y1f_c00374{bottom:297.040000pt;}
.y1e_c00374{bottom:324.640000pt;}
.y1d_c00374{bottom:352.240000pt;}
.y1c_c00374{bottom:379.840000pt;}
.y1b_c00374{bottom:407.440000pt;}
.y1a_c00374{bottom:435.040000pt;}
.y19_c00374{bottom:462.640000pt;}
.y18_c00374{bottom:490.240000pt;}
.y17_c00374{bottom:517.840000pt;}
.y16_c00374{bottom:545.440000pt;}
.y15_c00374{bottom:573.040000pt;}
.y14_c00374{bottom:600.640000pt;}
.y13_c00374{bottom:628.240000pt;}
.y12_c00374{bottom:655.840000pt;}
.y11_c00374{bottom:683.440000pt;}
.y10_c00374{bottom:711.040000pt;}
.yf_c00374{bottom:738.640000pt;}
.ye_c00374{bottom:766.160000pt;}
.yd_c00374{bottom:793.760000pt;}
.yc_c00374{bottom:821.360000pt;}
.yb_c00374{bottom:848.960000pt;}
.ya_c00374{bottom:876.560000pt;}
.y9_c00374{bottom:904.160000pt;}
.y8_c00374{bottom:931.760000pt;}
.y7_c00374{bottom:959.360000pt;}
.y6_c00374{bottom:986.960000pt;}
.y5_c00374{bottom:1005.360000pt;}
.y4_c00374{bottom:1023.040000pt;}
.y3_c00374{bottom:1036.804000pt;}
.y2_c00374{bottom:1050.640000pt;}
.y1_c00374{bottom:1064.400000pt;}
.h5_c00374{height:44.468750pt;}
.h3_c00374{height:47.085938pt;}
.h2_c00374{height:47.109375pt;}
.h4_c00374{height:62.812500pt;}
.h0_c00374{height:1122.560000pt;}
.h1_c00374{height:1122.666667pt;}
.w0_c00374{width:793.840000pt;}
.w1_c00374{width:794.000000pt;}
.x0_c00374{left:0.000000pt;}
.x3_c00374{left:113.440000pt;}
.x2_c00374{left:377.920000pt;}
.x1_c00374{left:396.960000pt;}
.x4_c00374{left:656.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_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_1bd2b8d00a9879a80cc4bb6b.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00375{vertical-align:-61.938000px;}
.v0_c00375{vertical-align:0.000000px;}
.ls6_c00375{letter-spacing:-0.216000px;}
.ls3_c00375{letter-spacing:0.000000px;}
.ls4_c00375{letter-spacing:0.072000px;}
.ls5_c00375{letter-spacing:0.144000px;}
.ls1_c00375{letter-spacing:3.240000px;}
.ls2_c00375{letter-spacing:12.960000px;}
.ls0_c00375{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws2_c00375{word-spacing:-0.162000px;}
.ws1_c00375{word-spacing:0.000000px;}
.ws6_c00375{word-spacing:0.216000px;}
.wsa_c00375{word-spacing:3.168000px;}
.ws9_c00375{word-spacing:3.240000px;}
.ws3_c00375{word-spacing:4.248000px;}
.ws8_c00375{word-spacing:6.840000px;}
.wsb_c00375{word-spacing:7.488000px;}
.wsd_c00375{word-spacing:11.160000px;}
.ws5_c00375{word-spacing:11.736000px;}
.ws7_c00375{word-spacing:11.808000px;}
.wse_c00375{word-spacing:12.888000px;}
.wsc_c00375{word-spacing:13.320000px;}
.ws4_c00375{word-spacing:23.328000px;}
._0_c00375{margin-left:-1.015200px;}
._1_c00375{width:11.678400px;}
._2_c00375{width:13.392000px;}
._3_c00375{width:846.000000px;}
.fc0_c00375{color:rgb(0,0,0);}
.fs0_c00375{font-size:54.000000px;}
.fs2_c00375{font-size:60.120000px;}
.fs1_c00375{font-size:72.000000px;}
.y0_c00375{bottom:0.000000px;}
.y13_c00375{bottom:57.240000px;}
.y12_c00375{bottom:722.070000px;}
.y11_c00375{bottom:750.780000px;}
.y10_c00375{bottom:768.870000px;}
.yf_c00375{bottom:799.920000px;}
.ye_c00375{bottom:830.970000px;}
.yd_c00375{bottom:861.930000px;}
.yc_c00375{bottom:892.980000px;}
.yb_c00375{bottom:924.030000px;}
.ya_c00375{bottom:955.080000px;}
.y9_c00375{bottom:986.130000px;}
.y8_c00375{bottom:1017.180000px;}
.y7_c00375{bottom:1048.230000px;}
.y6_c00375{bottom:1079.280000px;}
.y5_c00375{bottom:1110.330000px;}
.y4_c00375{bottom:1131.030000px;}
.y3_c00375{bottom:1150.915500px;}
.y2_c00375{bottom:1166.400000px;}
.y1_c00375{bottom:1197.450000px;}
.h2_c00375{height:52.998047px;}
.h4_c00375{height:60.589687px;}
.h3_c00375{height:70.664062px;}
.h5_c00375{height:72.562500px;}
.h0_c00375{height:1262.880000px;}
.h1_c00375{height:1263.000000px;}
.w0_c00375{width:893.070000px;}
.w1_c00375{width:893.250000px;}
.x0_c00375{left:0.000000px;}
.x2_c00375{left:127.620000px;}
.x1_c00375{left:446.580000px;}
@media print{
.v1_c00375{vertical-align:-55.056000pt;}
.v0_c00375{vertical-align:0.000000pt;}
.ls6_c00375{letter-spacing:-0.192000pt;}
.ls3_c00375{letter-spacing:0.000000pt;}
.ls4_c00375{letter-spacing:0.064000pt;}
.ls5_c00375{letter-spacing:0.128000pt;}
.ls1_c00375{letter-spacing:2.880000pt;}
.ls2_c00375{letter-spacing:11.520000pt;}
.ls0_c00375{letter-spacing:284.016000pt;}
.ws0_c00375{word-spacing:-16.128000pt;}
.ws2_c00375{word-spacing:-0.144000pt;}
.ws1_c00375{word-spacing:0.000000pt;}
.ws6_c00375{word-spacing:0.192000pt;}
.wsa_c00375{word-spacing:2.816000pt;}
.ws9_c00375{word-spacing:2.880000pt;}
.ws3_c00375{word-spacing:3.776000pt;}
.ws8_c00375{word-spacing:6.080000pt;}
.wsb_c00375{word-spacing:6.656000pt;}
.wsd_c00375{word-spacing:9.920000pt;}
.ws5_c00375{word-spacing:10.432000pt;}
.ws7_c00375{word-spacing:10.496000pt;}
.wse_c00375{word-spacing:11.456000pt;}
.wsc_c00375{word-spacing:11.840000pt;}
.ws4_c00375{word-spacing:20.736000pt;}
._0_c00375{margin-left:-0.902400pt;}
._1_c00375{width:10.380800pt;}
._2_c00375{width:11.904000pt;}
._3_c00375{width:752.000000pt;}
.fs0_c00375{font-size:48.000000pt;}
.fs2_c00375{font-size:53.440000pt;}
.fs1_c00375{font-size:64.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.y13_c00375{bottom:50.880000pt;}
.y12_c00375{bottom:641.840000pt;}
.y11_c00375{bottom:667.360000pt;}
.y10_c00375{bottom:683.440000pt;}
.yf_c00375{bottom:711.040000pt;}
.ye_c00375{bottom:738.640000pt;}
.yd_c00375{bottom:766.160000pt;}
.yc_c00375{bottom:793.760000pt;}
.yb_c00375{bottom:821.360000pt;}
.ya_c00375{bottom:848.960000pt;}
.y9_c00375{bottom:876.560000pt;}
.y8_c00375{bottom:904.160000pt;}
.y7_c00375{bottom:931.760000pt;}
.y6_c00375{bottom:959.360000pt;}
.y5_c00375{bottom:986.960000pt;}
.y4_c00375{bottom:1005.360000pt;}
.y3_c00375{bottom:1023.036000pt;}
.y2_c00375{bottom:1036.800000pt;}
.y1_c00375{bottom:1064.400000pt;}
.h2_c00375{height:47.109375pt;}
.h4_c00375{height:53.857500pt;}
.h3_c00375{height:62.812500pt;}
.h5_c00375{height:64.500000pt;}
.h0_c00375{height:1122.560000pt;}
.h1_c00375{height:1122.666667pt;}
.w0_c00375{width:793.840000pt;}
.w1_c00375{width:794.000000pt;}
.x0_c00375{left:0.000000pt;}
.x2_c00375{left:113.440000pt;}
.x1_c00375{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4731e9d2f4254e551c8af0b3.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_896e1fa9220d1811fe58f1f2.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00376{vertical-align:-105.840000px;}
.v0_c00376{vertical-align:0.000000px;}
.ls5_c00376{letter-spacing:-0.360000px;}
.ls2_c00376{letter-spacing:-0.108000px;}
.ls1_c00376{letter-spacing:0.000000px;}
.ls4_c00376{letter-spacing:0.072000px;}
.ls3_c00376{letter-spacing:0.192240px;}
.ls0_c00376{letter-spacing:1257.840000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00376{word-spacing:-24.222240px;}
.ws2_c00376{word-spacing:-18.072000px;}
.ws1_c00376{word-spacing:-18.000000px;}
.ws6_c00376{word-spacing:-0.072000px;}
.ws3_c00376{word-spacing:0.000000px;}
.ws5_c00376{word-spacing:0.162000px;}
.ws4_c00376{word-spacing:0.270000px;}
.ws7_c00376{word-spacing:0.360000px;}
._1_c00376{margin-left:-1.058400px;}
._0_c00376{width:1.220400px;}
._2_c00376{width:846.000000px;}
.fc0_c00376{color:rgb(0,0,0);}
.fs0_c00376{font-size:54.000000px;}
.fs1_c00376{font-size:72.000000px;}
.fs2_c00376{font-size:96.120000px;}
.fs3_c00376{font-size:144.000000px;}
.y0_c00376{bottom:0.000000px;}
.y1a_c00376{bottom:57.240000px;}
.y19_c00376{bottom:365.220000px;}
.y18_c00376{bottom:400.860000px;}
.y17_c00376{bottom:427.320000px;}
.y16_c00376{bottom:448.020000px;}
.y15_c00376{bottom:468.720000px;}
.y14_c00376{bottom:489.420000px;}
.y13_c00376{bottom:510.120000px;}
.y12_c00376{bottom:545.745240px;}
.y11_c00376{bottom:587.148930px;}
.y10_c00376{bottom:628.552620px;}
.yf_c00376{bottom:669.956310px;}
.ye_c00376{bottom:711.360000px;}
.yd_c00376{bottom:762.300000px;}
.yc_c00376{bottom:814.840290px;}
.yb_c00376{bottom:856.147860px;}
.ya_c00376{bottom:897.551550px;}
.y9_c00376{bottom:938.955240px;}
.y8_c00376{bottom:980.358930px;}
.y7_c00376{bottom:1021.762620px;}
.y6_c00376{bottom:1063.166310px;}
.y5_c00376{bottom:1131.030000px;}
.y4_c00376{bottom:1150.920000px;}
.y3_c00376{bottom:1166.404500px;}
.y2_c00376{bottom:1181.970000px;}
.y1_c00376{bottom:1197.450000px;}
.h3_c00376{height:52.971680px;}
.h2_c00376{height:52.998047px;}
.h4_c00376{height:70.664062px;}
.h7_c00376{height:72.562500px;}
.h5_c00376{height:96.870938px;}
.h6_c00376{height:145.125000px;}
.h0_c00376{height:1262.880000px;}
.h1_c00376{height:1263.000000px;}
.w0_c00376{width:893.070000px;}
.w1_c00376{width:893.250000px;}
.x0_c00376{left:0.000000px;}
.x3_c00376{left:127.620000px;}
.x9_c00376{left:130.950000px;}
.x7_c00376{left:132.120000px;}
.x8_c00376{left:148.770000px;}
.x6_c00376{left:156.420000px;}
.xa_c00376{left:213.840000px;}
.x4_c00376{left:350.550000px;}
.x5_c00376{left:376.196130px;}
.x2_c00376{left:425.160000px;}
.x1_c00376{left:446.580000px;}
.xb_c00376{left:738.540000px;}
@media print{
.v1_c00376{vertical-align:-94.080000pt;}
.v0_c00376{vertical-align:0.000000pt;}
.ls5_c00376{letter-spacing:-0.320000pt;}
.ls2_c00376{letter-spacing:-0.096000pt;}
.ls1_c00376{letter-spacing:0.000000pt;}
.ls4_c00376{letter-spacing:0.064000pt;}
.ls3_c00376{letter-spacing:0.170880pt;}
.ls0_c00376{letter-spacing:1118.080000pt;}
.ws0_c00376{word-spacing:-21.530880pt;}
.ws2_c00376{word-spacing:-16.064000pt;}
.ws1_c00376{word-spacing:-16.000000pt;}
.ws6_c00376{word-spacing:-0.064000pt;}
.ws3_c00376{word-spacing:0.000000pt;}
.ws5_c00376{word-spacing:0.144000pt;}
.ws4_c00376{word-spacing:0.240000pt;}
.ws7_c00376{word-spacing:0.320000pt;}
._1_c00376{margin-left:-0.940800pt;}
._0_c00376{width:1.084800pt;}
._2_c00376{width:752.000000pt;}
.fs0_c00376{font-size:48.000000pt;}
.fs1_c00376{font-size:64.000000pt;}
.fs2_c00376{font-size:85.440000pt;}
.fs3_c00376{font-size:128.000000pt;}
.y0_c00376{bottom:0.000000pt;}
.y1a_c00376{bottom:50.880000pt;}
.y19_c00376{bottom:324.640000pt;}
.y18_c00376{bottom:356.320000pt;}
.y17_c00376{bottom:379.840000pt;}
.y16_c00376{bottom:398.240000pt;}
.y15_c00376{bottom:416.640000pt;}
.y14_c00376{bottom:435.040000pt;}
.y13_c00376{bottom:453.440000pt;}
.y12_c00376{bottom:485.106880pt;}
.y11_c00376{bottom:521.910160pt;}
.y10_c00376{bottom:558.713440pt;}
.yf_c00376{bottom:595.516720pt;}
.ye_c00376{bottom:632.320000pt;}
.yd_c00376{bottom:677.600000pt;}
.yc_c00376{bottom:724.302480pt;}
.yb_c00376{bottom:761.020320pt;}
.ya_c00376{bottom:797.823600pt;}
.y9_c00376{bottom:834.626880pt;}
.y8_c00376{bottom:871.430160pt;}
.y7_c00376{bottom:908.233440pt;}
.y6_c00376{bottom:945.036720pt;}
.y5_c00376{bottom:1005.360000pt;}
.y4_c00376{bottom:1023.040000pt;}
.y3_c00376{bottom:1036.804000pt;}
.y2_c00376{bottom:1050.640000pt;}
.y1_c00376{bottom:1064.400000pt;}
.h3_c00376{height:47.085938pt;}
.h2_c00376{height:47.109375pt;}
.h4_c00376{height:62.812500pt;}
.h7_c00376{height:64.500000pt;}
.h5_c00376{height:86.107500pt;}
.h6_c00376{height:129.000000pt;}
.h0_c00376{height:1122.560000pt;}
.h1_c00376{height:1122.666667pt;}
.w0_c00376{width:793.840000pt;}
.w1_c00376{width:794.000000pt;}
.x0_c00376{left:0.000000pt;}
.x3_c00376{left:113.440000pt;}
.x9_c00376{left:116.400000pt;}
.x7_c00376{left:117.440000pt;}
.x8_c00376{left:132.240000pt;}
.x6_c00376{left:139.040000pt;}
.xa_c00376{left:190.080000pt;}
.x4_c00376{left:311.600000pt;}
.x5_c00376{left:334.396560pt;}
.x2_c00376{left:377.920000pt;}
.x1_c00376{left:396.960000pt;}
.xb_c00376{left:656.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_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_ea20489827f16b4051383b49.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_a85418a4149cf7466d8aaa8a.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00377{vertical-align:-61.938000px;}
.v0_c00377{vertical-align:0.000000px;}
.ls13_c00377{letter-spacing:-0.576000px;}
.ls15_c00377{letter-spacing:-0.360000px;}
.ls12_c00377{letter-spacing:-0.288000px;}
.ls16_c00377{letter-spacing:-0.216000px;}
.ls10_c00377{letter-spacing:-0.144000px;}
.ls11_c00377{letter-spacing:-0.072000px;}
.lsf_c00377{letter-spacing:0.000000px;}
.ls3_c00377{letter-spacing:0.072000px;}
.lsb_c00377{letter-spacing:0.144000px;}
.ls14_c00377{letter-spacing:0.360000px;}
.lsa_c00377{letter-spacing:2.520000px;}
.ls1_c00377{letter-spacing:4.680000px;}
.ls5_c00377{letter-spacing:5.040000px;}
.lsc_c00377{letter-spacing:5.760000px;}
.lsd_c00377{letter-spacing:7.200000px;}
.ls7_c00377{letter-spacing:9.360000px;}
.ls6_c00377{letter-spacing:10.080000px;}
.ls4_c00377{letter-spacing:10.800000px;}
.ls8_c00377{letter-spacing:14.760000px;}
.lse_c00377{letter-spacing:18.000000px;}
.ls9_c00377{letter-spacing:20.160000px;}
.ls2_c00377{letter-spacing:32.760000px;}
.ls0_c00377{letter-spacing:319.518000px;}
.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;}
}
.ws4_c00377{word-spacing:-18.144000px;}
.ws2_c00377{word-spacing:-18.072000px;}
.ws1_c00377{word-spacing:-18.000000px;}
.ws3_c00377{word-spacing:-17.928000px;}
.ws0_c00377{word-spacing:-17.856000px;}
.ws5_c00377{word-spacing:-17.712000px;}
.ws6_c00377{word-spacing:-17.424000px;}
.ws1a_c00377{word-spacing:-0.360000px;}
.ws8_c00377{word-spacing:-0.162000px;}
.ws25_c00377{word-spacing:-0.144000px;}
.wsf_c00377{word-spacing:-0.072000px;}
.ws7_c00377{word-spacing:0.000000px;}
.ws32_c00377{word-spacing:0.216000px;}
.ws24_c00377{word-spacing:0.288000px;}
.ws2f_c00377{word-spacing:0.360000px;}
.ws23_c00377{word-spacing:1.728000px;}
.ws36_c00377{word-spacing:1.800000px;}
.ws22_c00377{word-spacing:2.088000px;}
.ws21_c00377{word-spacing:2.520000px;}
.ws3c_c00377{word-spacing:3.456000px;}
.ws3b_c00377{word-spacing:3.600000px;}
.ws16_c00377{word-spacing:4.536000px;}
.ws9_c00377{word-spacing:4.608000px;}
.ws11_c00377{word-spacing:4.896000px;}
.ws10_c00377{word-spacing:5.040000px;}
.ws27_c00377{word-spacing:5.688000px;}
.ws26_c00377{word-spacing:5.760000px;}
.ws3d_c00377{word-spacing:6.408000px;}
.ws2e_c00377{word-spacing:7.128000px;}
.ws2d_c00377{word-spacing:7.200000px;}
.ws2b_c00377{word-spacing:8.856000px;}
.ws2c_c00377{word-spacing:8.928000px;}
.ws19_c00377{word-spacing:9.000000px;}
.ws2a_c00377{word-spacing:9.072000px;}
.ws18_c00377{word-spacing:9.360000px;}
.ws14_c00377{word-spacing:9.648000px;}
.ws15_c00377{word-spacing:9.720000px;}
.ws17_c00377{word-spacing:10.080000px;}
.wse_c00377{word-spacing:10.440000px;}
.wsc_c00377{word-spacing:10.728000px;}
.wsd_c00377{word-spacing:10.800000px;}
.ws1c_c00377{word-spacing:13.968000px;}
.ws1b_c00377{word-spacing:14.760000px;}
.ws29_c00377{word-spacing:15.048000px;}
.ws28_c00377{word-spacing:15.120000px;}
.ws35_c00377{word-spacing:17.856000px;}
.ws34_c00377{word-spacing:17.928000px;}
.ws1d_c00377{word-spacing:18.000000px;}
.ws13_c00377{word-spacing:19.728000px;}
.ws12_c00377{word-spacing:19.800000px;}
.ws20_c00377{word-spacing:20.088000px;}
.ws1f_c00377{word-spacing:20.160000px;}
.ws1e_c00377{word-spacing:20.232000px;}
.ws33_c00377{word-spacing:21.528000px;}
.ws31_c00377{word-spacing:21.600000px;}
.ws30_c00377{word-spacing:21.960000px;}
.wsb_c00377{word-spacing:32.688000px;}
.wsa_c00377{word-spacing:32.760000px;}
.ws38_c00377{word-spacing:35.568000px;}
.ws37_c00377{word-spacing:35.640000px;}
.ws39_c00377{word-spacing:35.928000px;}
.ws3a_c00377{word-spacing:36.000000px;}
._1_c00377{margin-left:-1.008000px;}
._0_c00377{width:1.080000px;}
._7_c00377{width:2.304000px;}
._6_c00377{width:3.456000px;}
._3_c00377{width:4.824000px;}
._8_c00377{width:5.904000px;}
._5_c00377{width:9.216000px;}
._2_c00377{width:10.476000px;}
._9_c00377{width:15.336000px;}
._4_c00377{width:19.944000px;}
._a_c00377{width:22.104000px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs0_c00377{font-size:54.000000px;}
.fs1_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.y25_c00377{bottom:57.240000px;}
.y24_c00377{bottom:168.570000px;}
.y23_c00377{bottom:199.620000px;}
.y22_c00377{bottom:230.670000px;}
.y21_c00377{bottom:261.720000px;}
.y20_c00377{bottom:292.770000px;}
.y1f_c00377{bottom:323.820000px;}
.y1e_c00377{bottom:354.870000px;}
.y1d_c00377{bottom:385.920000px;}
.y1c_c00377{bottom:416.970000px;}
.y1b_c00377{bottom:448.020000px;}
.y1a_c00377{bottom:479.070000px;}
.y19_c00377{bottom:510.120000px;}
.y18_c00377{bottom:541.170000px;}
.y17_c00377{bottom:572.220000px;}
.y16_c00377{bottom:603.270000px;}
.y15_c00377{bottom:634.320000px;}
.y14_c00377{bottom:665.370000px;}
.y13_c00377{bottom:696.420000px;}
.y12_c00377{bottom:727.470000px;}
.y11_c00377{bottom:758.520000px;}
.y10_c00377{bottom:789.570000px;}
.yf_c00377{bottom:820.620000px;}
.ye_c00377{bottom:851.580000px;}
.yd_c00377{bottom:882.630000px;}
.yc_c00377{bottom:913.680000px;}
.yb_c00377{bottom:944.730000px;}
.ya_c00377{bottom:975.780000px;}
.y9_c00377{bottom:1006.830000px;}
.y8_c00377{bottom:1037.880000px;}
.y7_c00377{bottom:1068.930000px;}
.y6_c00377{bottom:1089.630000px;}
.y5_c00377{bottom:1110.150000px;}
.y4_c00377{bottom:1131.030000px;}
.y3_c00377{bottom:1150.915500px;}
.y2_c00377{bottom:1166.400000px;}
.y1_c00377{bottom:1197.450000px;}
.h2_c00377{height:52.998047px;}
.h3_c00377{height:70.664062px;}
.h4_c00377{height:72.562500px;}
.h0_c00377{height:1262.880000px;}
.h1_c00377{height:1263.000000px;}
.w0_c00377{width:893.070000px;}
.w1_c00377{width:893.250000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:127.620000px;}
.x1_c00377{left:446.580000px;}
@media print{
.v1_c00377{vertical-align:-55.056000pt;}
.v0_c00377{vertical-align:0.000000pt;}
.ls13_c00377{letter-spacing:-0.512000pt;}
.ls15_c00377{letter-spacing:-0.320000pt;}
.ls12_c00377{letter-spacing:-0.256000pt;}
.ls16_c00377{letter-spacing:-0.192000pt;}
.ls10_c00377{letter-spacing:-0.128000pt;}
.ls11_c00377{letter-spacing:-0.064000pt;}
.lsf_c00377{letter-spacing:0.000000pt;}
.ls3_c00377{letter-spacing:0.064000pt;}
.lsb_c00377{letter-spacing:0.128000pt;}
.ls14_c00377{letter-spacing:0.320000pt;}
.lsa_c00377{letter-spacing:2.240000pt;}
.ls1_c00377{letter-spacing:4.160000pt;}
.ls5_c00377{letter-spacing:4.480000pt;}
.lsc_c00377{letter-spacing:5.120000pt;}
.lsd_c00377{letter-spacing:6.400000pt;}
.ls7_c00377{letter-spacing:8.320000pt;}
.ls6_c00377{letter-spacing:8.960000pt;}
.ls4_c00377{letter-spacing:9.600000pt;}
.ls8_c00377{letter-spacing:13.120000pt;}
.lse_c00377{letter-spacing:16.000000pt;}
.ls9_c00377{letter-spacing:17.920000pt;}
.ls2_c00377{letter-spacing:29.120000pt;}
.ls0_c00377{letter-spacing:284.016000pt;}
.ws4_c00377{word-spacing:-16.128000pt;}
.ws2_c00377{word-spacing:-16.064000pt;}
.ws1_c00377{word-spacing:-16.000000pt;}
.ws3_c00377{word-spacing:-15.936000pt;}
.ws0_c00377{word-spacing:-15.872000pt;}
.ws5_c00377{word-spacing:-15.744000pt;}
.ws6_c00377{word-spacing:-15.488000pt;}
.ws1a_c00377{word-spacing:-0.320000pt;}
.ws8_c00377{word-spacing:-0.144000pt;}
.ws25_c00377{word-spacing:-0.128000pt;}
.wsf_c00377{word-spacing:-0.064000pt;}
.ws7_c00377{word-spacing:0.000000pt;}
.ws32_c00377{word-spacing:0.192000pt;}
.ws24_c00377{word-spacing:0.256000pt;}
.ws2f_c00377{word-spacing:0.320000pt;}
.ws23_c00377{word-spacing:1.536000pt;}
.ws36_c00377{word-spacing:1.600000pt;}
.ws22_c00377{word-spacing:1.856000pt;}
.ws21_c00377{word-spacing:2.240000pt;}
.ws3c_c00377{word-spacing:3.072000pt;}
.ws3b_c00377{word-spacing:3.200000pt;}
.ws16_c00377{word-spacing:4.032000pt;}
.ws9_c00377{word-spacing:4.096000pt;}
.ws11_c00377{word-spacing:4.352000pt;}
.ws10_c00377{word-spacing:4.480000pt;}
.ws27_c00377{word-spacing:5.056000pt;}
.ws26_c00377{word-spacing:5.120000pt;}
.ws3d_c00377{word-spacing:5.696000pt;}
.ws2e_c00377{word-spacing:6.336000pt;}
.ws2d_c00377{word-spacing:6.400000pt;}
.ws2b_c00377{word-spacing:7.872000pt;}
.ws2c_c00377{word-spacing:7.936000pt;}
.ws19_c00377{word-spacing:8.000000pt;}
.ws2a_c00377{word-spacing:8.064000pt;}
.ws18_c00377{word-spacing:8.320000pt;}
.ws14_c00377{word-spacing:8.576000pt;}
.ws15_c00377{word-spacing:8.640000pt;}
.ws17_c00377{word-spacing:8.960000pt;}
.wse_c00377{word-spacing:9.280000pt;}
.wsc_c00377{word-spacing:9.536000pt;}
.wsd_c00377{word-spacing:9.600000pt;}
.ws1c_c00377{word-spacing:12.416000pt;}
.ws1b_c00377{word-spacing:13.120000pt;}
.ws29_c00377{word-spacing:13.376000pt;}
.ws28_c00377{word-spacing:13.440000pt;}
.ws35_c00377{word-spacing:15.872000pt;}
.ws34_c00377{word-spacing:15.936000pt;}
.ws1d_c00377{word-spacing:16.000000pt;}
.ws13_c00377{word-spacing:17.536000pt;}
.ws12_c00377{word-spacing:17.600000pt;}
.ws20_c00377{word-spacing:17.856000pt;}
.ws1f_c00377{word-spacing:17.920000pt;}
.ws1e_c00377{word-spacing:17.984000pt;}
.ws33_c00377{word-spacing:19.136000pt;}
.ws31_c00377{word-spacing:19.200000pt;}
.ws30_c00377{word-spacing:19.520000pt;}
.wsb_c00377{word-spacing:29.056000pt;}
.wsa_c00377{word-spacing:29.120000pt;}
.ws38_c00377{word-spacing:31.616000pt;}
.ws37_c00377{word-spacing:31.680000pt;}
.ws39_c00377{word-spacing:31.936000pt;}
.ws3a_c00377{word-spacing:32.000000pt;}
._1_c00377{margin-left:-0.896000pt;}
._0_c00377{width:0.960000pt;}
._7_c00377{width:2.048000pt;}
._6_c00377{width:3.072000pt;}
._3_c00377{width:4.288000pt;}
._8_c00377{width:5.248000pt;}
._5_c00377{width:8.192000pt;}
._2_c00377{width:9.312000pt;}
._9_c00377{width:13.632000pt;}
._4_c00377{width:17.728000pt;}
._a_c00377{width:19.648000pt;}
.fs0_c00377{font-size:48.000000pt;}
.fs1_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y25_c00377{bottom:50.880000pt;}
.y24_c00377{bottom:149.840000pt;}
.y23_c00377{bottom:177.440000pt;}
.y22_c00377{bottom:205.040000pt;}
.y21_c00377{bottom:232.640000pt;}
.y20_c00377{bottom:260.240000pt;}
.y1f_c00377{bottom:287.840000pt;}
.y1e_c00377{bottom:315.440000pt;}
.y1d_c00377{bottom:343.040000pt;}
.y1c_c00377{bottom:370.640000pt;}
.y1b_c00377{bottom:398.240000pt;}
.y1a_c00377{bottom:425.840000pt;}
.y19_c00377{bottom:453.440000pt;}
.y18_c00377{bottom:481.040000pt;}
.y17_c00377{bottom:508.640000pt;}
.y16_c00377{bottom:536.240000pt;}
.y15_c00377{bottom:563.840000pt;}
.y14_c00377{bottom:591.440000pt;}
.y13_c00377{bottom:619.040000pt;}
.y12_c00377{bottom:646.640000pt;}
.y11_c00377{bottom:674.240000pt;}
.y10_c00377{bottom:701.840000pt;}
.yf_c00377{bottom:729.440000pt;}
.ye_c00377{bottom:756.960000pt;}
.yd_c00377{bottom:784.560000pt;}
.yc_c00377{bottom:812.160000pt;}
.yb_c00377{bottom:839.760000pt;}
.ya_c00377{bottom:867.360000pt;}
.y9_c00377{bottom:894.960000pt;}
.y8_c00377{bottom:922.560000pt;}
.y7_c00377{bottom:950.160000pt;}
.y6_c00377{bottom:968.560000pt;}
.y5_c00377{bottom:986.800000pt;}
.y4_c00377{bottom:1005.360000pt;}
.y3_c00377{bottom:1023.036000pt;}
.y2_c00377{bottom:1036.800000pt;}
.y1_c00377{bottom:1064.400000pt;}
.h2_c00377{height:47.109375pt;}
.h3_c00377{height:62.812500pt;}
.h4_c00377{height:64.500000pt;}
.h0_c00377{height:1122.560000pt;}
.h1_c00377{height:1122.666667pt;}
.w0_c00377{width:793.840000pt;}
.w1_c00377{width:794.000000pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:113.440000pt;}
.x1_c00377{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc6e558a61c39620c5435fd0.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.lsb_c00378{letter-spacing:-0.288000px;}
.lsc_c00378{letter-spacing:-0.216000px;}
.lsa_c00378{letter-spacing:-0.108000px;}
.lsd_c00378{letter-spacing:-0.072000px;}
.ls9_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:0.072000px;}
.ls5_c00378{letter-spacing:0.144000px;}
.ls2_c00378{letter-spacing:1.440000px;}
.ls8_c00378{letter-spacing:10.080000px;}
.ls3_c00378{letter-spacing:14.040000px;}
.ls1_c00378{letter-spacing:14.047200px;}
.ls4_c00378{letter-spacing:14.760000px;}
.ls7_c00378{letter-spacing:25.200000px;}
.ls6_c00378{letter-spacing:25.207200px;}
.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;}
}
.ws2_c00378{word-spacing:-18.144000px;}
.ws1_c00378{word-spacing:-18.072000px;}
.ws0_c00378{word-spacing:-18.000000px;}
.ws3_c00378{word-spacing:-17.712000px;}
.ws1c_c00378{word-spacing:-0.432000px;}
.wsb_c00378{word-spacing:-0.072000px;}
.ws4_c00378{word-spacing:0.000000px;}
.ws32_c00378{word-spacing:0.072000px;}
.ws6_c00378{word-spacing:0.162000px;}
.ws5_c00378{word-spacing:0.270000px;}
.ws26_c00378{word-spacing:0.288000px;}
.wsc_c00378{word-spacing:1.080000px;}
.ws19_c00378{word-spacing:1.368000px;}
.ws18_c00378{word-spacing:1.440000px;}
.ws2a_c00378{word-spacing:1.800000px;}
.ws14_c00378{word-spacing:2.808000px;}
.ws13_c00378{word-spacing:2.880000px;}
.wsa_c00378{word-spacing:3.528000px;}
.ws1f_c00378{word-spacing:4.248000px;}
.ws1e_c00378{word-spacing:4.608000px;}
.ws1d_c00378{word-spacing:4.680000px;}
.ws17_c00378{word-spacing:4.968000px;}
.ws12_c00378{word-spacing:5.328000px;}
.ws8_c00378{word-spacing:5.400000px;}
.ws7_c00378{word-spacing:5.688000px;}
.ws9_c00378{word-spacing:5.760000px;}
.ws25_c00378{word-spacing:9.576000px;}
.ws23_c00378{word-spacing:9.720000px;}
.ws27_c00378{word-spacing:9.936000px;}
.ws24_c00378{word-spacing:10.008000px;}
.ws34_c00378{word-spacing:10.080000px;}
.ws2e_c00378{word-spacing:11.160000px;}
.ws1b_c00378{word-spacing:12.240000px;}
.ws1a_c00378{word-spacing:12.600000px;}
.ws10_c00378{word-spacing:13.896000px;}
.wsf_c00378{word-spacing:13.968000px;}
.ws11_c00378{word-spacing:14.040000px;}
.ws2d_c00378{word-spacing:14.616000px;}
.ws2b_c00378{word-spacing:14.688000px;}
.ws2c_c00378{word-spacing:14.760000px;}
.ws33_c00378{word-spacing:15.768000px;}
.ws28_c00378{word-spacing:18.288000px;}
.ws29_c00378{word-spacing:18.360000px;}
.ws21_c00378{word-spacing:19.800000px;}
.ws20_c00378{word-spacing:20.016000px;}
.wse_c00378{word-spacing:20.808000px;}
.wsd_c00378{word-spacing:21.240000px;}
.ws22_c00378{word-spacing:24.408000px;}
.ws30_c00378{word-spacing:25.488000px;}
.ws31_c00378{word-spacing:25.560000px;}
.ws2f_c00378{word-spacing:25.848000px;}
.ws16_c00378{word-spacing:32.688000px;}
.ws15_c00378{word-spacing:32.760000px;}
._1_c00378{margin-left:-1.058400px;}
._0_c00378{width:1.220400px;}
._2_c00378{width:3.052800px;}
._7_c00378{width:4.060800px;}
._4_c00378{width:5.068800px;}
._9_c00378{width:9.925200px;}
._6_c00378{width:12.672000px;}
._a_c00378{width:16.056000px;}
._8_c00378{width:19.742400px;}
._3_c00378{width:21.096000px;}
._5_c00378{width:33.192000px;}
.fc0_c00378{color:rgb(0,0,0);}
.fs0_c00378{font-size:54.000000px;}
.fs1_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y26_c00378{bottom:57.240000px;}
.y25_c00378{bottom:147.870000px;}
.y24_c00378{bottom:178.920000px;}
.y23_c00378{bottom:209.970000px;}
.y22_c00378{bottom:241.020000px;}
.y21_c00378{bottom:272.070000px;}
.y20_c00378{bottom:303.120000px;}
.y1f_c00378{bottom:334.170000px;}
.y1e_c00378{bottom:365.220000px;}
.y1d_c00378{bottom:396.270000px;}
.y1c_c00378{bottom:427.320000px;}
.y1b_c00378{bottom:458.370000px;}
.y1a_c00378{bottom:489.420000px;}
.y19_c00378{bottom:520.470000px;}
.y18_c00378{bottom:551.520000px;}
.y17_c00378{bottom:582.570000px;}
.y16_c00378{bottom:613.620000px;}
.y15_c00378{bottom:644.670000px;}
.y14_c00378{bottom:675.720000px;}
.y13_c00378{bottom:706.770000px;}
.y12_c00378{bottom:737.820000px;}
.y11_c00378{bottom:768.870000px;}
.y10_c00378{bottom:799.920000px;}
.yf_c00378{bottom:830.970000px;}
.ye_c00378{bottom:861.930000px;}
.yd_c00378{bottom:892.980000px;}
.yc_c00378{bottom:924.030000px;}
.yb_c00378{bottom:955.080000px;}
.ya_c00378{bottom:986.130000px;}
.y9_c00378{bottom:1017.180000px;}
.y8_c00378{bottom:1048.230000px;}
.y7_c00378{bottom:1079.280000px;}
.y6_c00378{bottom:1110.330000px;}
.y5_c00378{bottom:1131.030000px;}
.y4_c00378{bottom:1150.920000px;}
.y3_c00378{bottom:1166.404500px;}
.y2_c00378{bottom:1181.970000px;}
.y1_c00378{bottom:1197.450000px;}
.h3_c00378{height:52.971680px;}
.h2_c00378{height:52.998047px;}
.h4_c00378{height:70.664062px;}
.h0_c00378{height:1262.880000px;}
.h1_c00378{height:1263.000000px;}
.w0_c00378{width:893.070000px;}
.w1_c00378{width:893.250000px;}
.x0_c00378{left:0.000000px;}
.x3_c00378{left:127.620000px;}
.x2_c00378{left:425.160000px;}
.x1_c00378{left:446.580000px;}
.x4_c00378{left:738.540000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.lsb_c00378{letter-spacing:-0.256000pt;}
.lsc_c00378{letter-spacing:-0.192000pt;}
.lsa_c00378{letter-spacing:-0.096000pt;}
.lsd_c00378{letter-spacing:-0.064000pt;}
.ls9_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:0.064000pt;}
.ls5_c00378{letter-spacing:0.128000pt;}
.ls2_c00378{letter-spacing:1.280000pt;}
.ls8_c00378{letter-spacing:8.960000pt;}
.ls3_c00378{letter-spacing:12.480000pt;}
.ls1_c00378{letter-spacing:12.486400pt;}
.ls4_c00378{letter-spacing:13.120000pt;}
.ls7_c00378{letter-spacing:22.400000pt;}
.ls6_c00378{letter-spacing:22.406400pt;}
.ws2_c00378{word-spacing:-16.128000pt;}
.ws1_c00378{word-spacing:-16.064000pt;}
.ws0_c00378{word-spacing:-16.000000pt;}
.ws3_c00378{word-spacing:-15.744000pt;}
.ws1c_c00378{word-spacing:-0.384000pt;}
.wsb_c00378{word-spacing:-0.064000pt;}
.ws4_c00378{word-spacing:0.000000pt;}
.ws32_c00378{word-spacing:0.064000pt;}
.ws6_c00378{word-spacing:0.144000pt;}
.ws5_c00378{word-spacing:0.240000pt;}
.ws26_c00378{word-spacing:0.256000pt;}
.wsc_c00378{word-spacing:0.960000pt;}
.ws19_c00378{word-spacing:1.216000pt;}
.ws18_c00378{word-spacing:1.280000pt;}
.ws2a_c00378{word-spacing:1.600000pt;}
.ws14_c00378{word-spacing:2.496000pt;}
.ws13_c00378{word-spacing:2.560000pt;}
.wsa_c00378{word-spacing:3.136000pt;}
.ws1f_c00378{word-spacing:3.776000pt;}
.ws1e_c00378{word-spacing:4.096000pt;}
.ws1d_c00378{word-spacing:4.160000pt;}
.ws17_c00378{word-spacing:4.416000pt;}
.ws12_c00378{word-spacing:4.736000pt;}
.ws8_c00378{word-spacing:4.800000pt;}
.ws7_c00378{word-spacing:5.056000pt;}
.ws9_c00378{word-spacing:5.120000pt;}
.ws25_c00378{word-spacing:8.512000pt;}
.ws23_c00378{word-spacing:8.640000pt;}
.ws27_c00378{word-spacing:8.832000pt;}
.ws24_c00378{word-spacing:8.896000pt;}
.ws34_c00378{word-spacing:8.960000pt;}
.ws2e_c00378{word-spacing:9.920000pt;}
.ws1b_c00378{word-spacing:10.880000pt;}
.ws1a_c00378{word-spacing:11.200000pt;}
.ws10_c00378{word-spacing:12.352000pt;}
.wsf_c00378{word-spacing:12.416000pt;}
.ws11_c00378{word-spacing:12.480000pt;}
.ws2d_c00378{word-spacing:12.992000pt;}
.ws2b_c00378{word-spacing:13.056000pt;}
.ws2c_c00378{word-spacing:13.120000pt;}
.ws33_c00378{word-spacing:14.016000pt;}
.ws28_c00378{word-spacing:16.256000pt;}
.ws29_c00378{word-spacing:16.320000pt;}
.ws21_c00378{word-spacing:17.600000pt;}
.ws20_c00378{word-spacing:17.792000pt;}
.wse_c00378{word-spacing:18.496000pt;}
.wsd_c00378{word-spacing:18.880000pt;}
.ws22_c00378{word-spacing:21.696000pt;}
.ws30_c00378{word-spacing:22.656000pt;}
.ws31_c00378{word-spacing:22.720000pt;}
.ws2f_c00378{word-spacing:22.976000pt;}
.ws16_c00378{word-spacing:29.056000pt;}
.ws15_c00378{word-spacing:29.120000pt;}
._1_c00378{margin-left:-0.940800pt;}
._0_c00378{width:1.084800pt;}
._2_c00378{width:2.713600pt;}
._7_c00378{width:3.609600pt;}
._4_c00378{width:4.505600pt;}
._9_c00378{width:8.822400pt;}
._6_c00378{width:11.264000pt;}
._a_c00378{width:14.272000pt;}
._8_c00378{width:17.548800pt;}
._3_c00378{width:18.752000pt;}
._5_c00378{width:29.504000pt;}
.fs0_c00378{font-size:48.000000pt;}
.fs1_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y26_c00378{bottom:50.880000pt;}
.y25_c00378{bottom:131.440000pt;}
.y24_c00378{bottom:159.040000pt;}
.y23_c00378{bottom:186.640000pt;}
.y22_c00378{bottom:214.240000pt;}
.y21_c00378{bottom:241.840000pt;}
.y20_c00378{bottom:269.440000pt;}
.y1f_c00378{bottom:297.040000pt;}
.y1e_c00378{bottom:324.640000pt;}
.y1d_c00378{bottom:352.240000pt;}
.y1c_c00378{bottom:379.840000pt;}
.y1b_c00378{bottom:407.440000pt;}
.y1a_c00378{bottom:435.040000pt;}
.y19_c00378{bottom:462.640000pt;}
.y18_c00378{bottom:490.240000pt;}
.y17_c00378{bottom:517.840000pt;}
.y16_c00378{bottom:545.440000pt;}
.y15_c00378{bottom:573.040000pt;}
.y14_c00378{bottom:600.640000pt;}
.y13_c00378{bottom:628.240000pt;}
.y12_c00378{bottom:655.840000pt;}
.y11_c00378{bottom:683.440000pt;}
.y10_c00378{bottom:711.040000pt;}
.yf_c00378{bottom:738.640000pt;}
.ye_c00378{bottom:766.160000pt;}
.yd_c00378{bottom:793.760000pt;}
.yc_c00378{bottom:821.360000pt;}
.yb_c00378{bottom:848.960000pt;}
.ya_c00378{bottom:876.560000pt;}
.y9_c00378{bottom:904.160000pt;}
.y8_c00378{bottom:931.760000pt;}
.y7_c00378{bottom:959.360000pt;}
.y6_c00378{bottom:986.960000pt;}
.y5_c00378{bottom:1005.360000pt;}
.y4_c00378{bottom:1023.040000pt;}
.y3_c00378{bottom:1036.804000pt;}
.y2_c00378{bottom:1050.640000pt;}
.y1_c00378{bottom:1064.400000pt;}
.h3_c00378{height:47.085938pt;}
.h2_c00378{height:47.109375pt;}
.h4_c00378{height:62.812500pt;}
.h0_c00378{height:1122.560000pt;}
.h1_c00378{height:1122.666667pt;}
.w0_c00378{width:793.840000pt;}
.w1_c00378{width:794.000000pt;}
.x0_c00378{left:0.000000pt;}
.x3_c00378{left:113.440000pt;}
.x2_c00378{left:377.920000pt;}
.x1_c00378{left:396.960000pt;}
.x4_c00378{left:656.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_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_6f52be467ea7b813a2e9ab50.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00379{vertical-align:-61.938000px;}
.v0_c00379{vertical-align:0.000000px;}
.lsf_c00379{letter-spacing:-0.360000px;}
.ls10_c00379{letter-spacing:-0.288000px;}
.lse_c00379{letter-spacing:-0.216000px;}
.lsc_c00379{letter-spacing:0.000000px;}
.ls4_c00379{letter-spacing:0.072000px;}
.lsd_c00379{letter-spacing:0.144000px;}
.ls1_c00379{letter-spacing:1.800000px;}
.ls8_c00379{letter-spacing:2.520000px;}
.ls7_c00379{letter-spacing:2.527200px;}
.ls5_c00379{letter-spacing:3.967200px;}
.lsb_c00379{letter-spacing:6.141600px;}
.ls9_c00379{letter-spacing:12.240000px;}
.ls6_c00379{letter-spacing:13.320000px;}
.ls2_c00379{letter-spacing:14.407200px;}
.lsa_c00379{letter-spacing:27.360000px;}
.ls3_c00379{letter-spacing:33.480000px;}
.ls0_c00379{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00379{word-spacing:-18.144000px;}
.ws0_c00379{word-spacing:-18.072000px;}
.ws4_c00379{word-spacing:-18.000000px;}
.ws2_c00379{word-spacing:-17.784000px;}
.ws1_c00379{word-spacing:-17.712000px;}
.ws22_c00379{word-spacing:-0.432000px;}
.ws6_c00379{word-spacing:-0.162000px;}
.wse_c00379{word-spacing:-0.144000px;}
.ws8_c00379{word-spacing:-0.072000px;}
.ws5_c00379{word-spacing:0.000000px;}
.wsf_c00379{word-spacing:0.216000px;}
.ws2b_c00379{word-spacing:0.288000px;}
.ws11_c00379{word-spacing:0.360000px;}
.ws2c_c00379{word-spacing:1.296000px;}
.ws2d_c00379{word-spacing:1.368000px;}
.wsb_c00379{word-spacing:1.440000px;}
.wsd_c00379{word-spacing:1.800000px;}
.ws1f_c00379{word-spacing:2.448000px;}
.wsc_c00379{word-spacing:2.520000px;}
.ws20_c00379{word-spacing:3.456000px;}
.ws21_c00379{word-spacing:3.888000px;}
.ws13_c00379{word-spacing:4.176000px;}
.ws12_c00379{word-spacing:4.248000px;}
.ws1b_c00379{word-spacing:4.320000px;}
.ws19_c00379{word-spacing:4.608000px;}
.ws1a_c00379{word-spacing:4.680000px;}
.ws2e_c00379{word-spacing:6.048000px;}
.ws7_c00379{word-spacing:6.120000px;}
.ws9_c00379{word-spacing:7.488000px;}
.ws26_c00379{word-spacing:10.008000px;}
.wsa_c00379{word-spacing:11.880000px;}
.ws24_c00379{word-spacing:12.096000px;}
.ws23_c00379{word-spacing:12.168000px;}
.ws1c_c00379{word-spacing:12.816000px;}
.ws1e_c00379{word-spacing:12.960000px;}
.ws1d_c00379{word-spacing:13.248000px;}
.ws10_c00379{word-spacing:14.400000px;}
.ws16_c00379{word-spacing:14.688000px;}
.ws17_c00379{word-spacing:14.760000px;}
.ws25_c00379{word-spacing:15.408000px;}
.ws29_c00379{word-spacing:18.000000px;}
.ws27_c00379{word-spacing:20.736000px;}
.ws28_c00379{word-spacing:20.808000px;}
.ws18_c00379{word-spacing:22.680000px;}
.ws2a_c00379{word-spacing:27.360000px;}
.ws15_c00379{word-spacing:33.048000px;}
.ws14_c00379{word-spacing:33.408000px;}
._0_c00379{margin-left:-1.015200px;}
._1_c00379{width:1.080000px;}
._2_c00379{width:2.232000px;}
._9_c00379{width:3.240000px;}
._4_c00379{width:4.392000px;}
._8_c00379{width:12.117600px;}
._7_c00379{width:13.536000px;}
._3_c00379{width:14.544000px;}
._6_c00379{width:23.184000px;}
._a_c00379{width:27.727200px;}
._5_c00379{width:32.911200px;}
.fc0_c00379{color:rgb(0,0,0);}
.fs0_c00379{font-size:54.000000px;}
.fs1_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y26_c00379{bottom:57.240000px;}
.y25_c00379{bottom:116.820000px;}
.y24_c00379{bottom:147.870000px;}
.y23_c00379{bottom:178.920000px;}
.y22_c00379{bottom:209.970000px;}
.y21_c00379{bottom:241.020000px;}
.y20_c00379{bottom:272.070000px;}
.y1f_c00379{bottom:303.120000px;}
.y1e_c00379{bottom:334.170000px;}
.y1d_c00379{bottom:365.220000px;}
.y1c_c00379{bottom:396.270000px;}
.y1b_c00379{bottom:427.320000px;}
.y1a_c00379{bottom:458.370000px;}
.y19_c00379{bottom:489.420000px;}
.y18_c00379{bottom:520.470000px;}
.y17_c00379{bottom:551.520000px;}
.y16_c00379{bottom:582.570000px;}
.y15_c00379{bottom:613.620000px;}
.y14_c00379{bottom:644.670000px;}
.y13_c00379{bottom:675.720000px;}
.y12_c00379{bottom:706.770000px;}
.y11_c00379{bottom:737.820000px;}
.y10_c00379{bottom:768.870000px;}
.yf_c00379{bottom:799.920000px;}
.ye_c00379{bottom:830.970000px;}
.yd_c00379{bottom:861.930000px;}
.yc_c00379{bottom:892.980000px;}
.yb_c00379{bottom:924.030000px;}
.ya_c00379{bottom:955.080000px;}
.y9_c00379{bottom:986.130000px;}
.y8_c00379{bottom:1017.180000px;}
.y7_c00379{bottom:1048.230000px;}
.y6_c00379{bottom:1079.280000px;}
.y5_c00379{bottom:1110.330000px;}
.y4_c00379{bottom:1131.030000px;}
.y3_c00379{bottom:1150.915500px;}
.y2_c00379{bottom:1166.400000px;}
.y1_c00379{bottom:1197.450000px;}
.h2_c00379{height:52.998047px;}
.h3_c00379{height:70.664062px;}
.h0_c00379{height:1262.880000px;}
.h1_c00379{height:1263.000000px;}
.w0_c00379{width:893.070000px;}
.w1_c00379{width:893.250000px;}
.x0_c00379{left:0.000000px;}
.x2_c00379{left:127.620000px;}
.x1_c00379{left:446.580000px;}
@media print{
.v1_c00379{vertical-align:-55.056000pt;}
.v0_c00379{vertical-align:0.000000pt;}
.lsf_c00379{letter-spacing:-0.320000pt;}
.ls10_c00379{letter-spacing:-0.256000pt;}
.lse_c00379{letter-spacing:-0.192000pt;}
.lsc_c00379{letter-spacing:0.000000pt;}
.ls4_c00379{letter-spacing:0.064000pt;}
.lsd_c00379{letter-spacing:0.128000pt;}
.ls1_c00379{letter-spacing:1.600000pt;}
.ls8_c00379{letter-spacing:2.240000pt;}
.ls7_c00379{letter-spacing:2.246400pt;}
.ls5_c00379{letter-spacing:3.526400pt;}
.lsb_c00379{letter-spacing:5.459200pt;}
.ls9_c00379{letter-spacing:10.880000pt;}
.ls6_c00379{letter-spacing:11.840000pt;}
.ls2_c00379{letter-spacing:12.806400pt;}
.lsa_c00379{letter-spacing:24.320000pt;}
.ls3_c00379{letter-spacing:29.760000pt;}
.ls0_c00379{letter-spacing:284.016000pt;}
.ws3_c00379{word-spacing:-16.128000pt;}
.ws0_c00379{word-spacing:-16.064000pt;}
.ws4_c00379{word-spacing:-16.000000pt;}
.ws2_c00379{word-spacing:-15.808000pt;}
.ws1_c00379{word-spacing:-15.744000pt;}
.ws22_c00379{word-spacing:-0.384000pt;}
.ws6_c00379{word-spacing:-0.144000pt;}
.wse_c00379{word-spacing:-0.128000pt;}
.ws8_c00379{word-spacing:-0.064000pt;}
.ws5_c00379{word-spacing:0.000000pt;}
.wsf_c00379{word-spacing:0.192000pt;}
.ws2b_c00379{word-spacing:0.256000pt;}
.ws11_c00379{word-spacing:0.320000pt;}
.ws2c_c00379{word-spacing:1.152000pt;}
.ws2d_c00379{word-spacing:1.216000pt;}
.wsb_c00379{word-spacing:1.280000pt;}
.wsd_c00379{word-spacing:1.600000pt;}
.ws1f_c00379{word-spacing:2.176000pt;}
.wsc_c00379{word-spacing:2.240000pt;}
.ws20_c00379{word-spacing:3.072000pt;}
.ws21_c00379{word-spacing:3.456000pt;}
.ws13_c00379{word-spacing:3.712000pt;}
.ws12_c00379{word-spacing:3.776000pt;}
.ws1b_c00379{word-spacing:3.840000pt;}
.ws19_c00379{word-spacing:4.096000pt;}
.ws1a_c00379{word-spacing:4.160000pt;}
.ws2e_c00379{word-spacing:5.376000pt;}
.ws7_c00379{word-spacing:5.440000pt;}
.ws9_c00379{word-spacing:6.656000pt;}
.ws26_c00379{word-spacing:8.896000pt;}
.wsa_c00379{word-spacing:10.560000pt;}
.ws24_c00379{word-spacing:10.752000pt;}
.ws23_c00379{word-spacing:10.816000pt;}
.ws1c_c00379{word-spacing:11.392000pt;}
.ws1e_c00379{word-spacing:11.520000pt;}
.ws1d_c00379{word-spacing:11.776000pt;}
.ws10_c00379{word-spacing:12.800000pt;}
.ws16_c00379{word-spacing:13.056000pt;}
.ws17_c00379{word-spacing:13.120000pt;}
.ws25_c00379{word-spacing:13.696000pt;}
.ws29_c00379{word-spacing:16.000000pt;}
.ws27_c00379{word-spacing:18.432000pt;}
.ws28_c00379{word-spacing:18.496000pt;}
.ws18_c00379{word-spacing:20.160000pt;}
.ws2a_c00379{word-spacing:24.320000pt;}
.ws15_c00379{word-spacing:29.376000pt;}
.ws14_c00379{word-spacing:29.696000pt;}
._0_c00379{margin-left:-0.902400pt;}
._1_c00379{width:0.960000pt;}
._2_c00379{width:1.984000pt;}
._9_c00379{width:2.880000pt;}
._4_c00379{width:3.904000pt;}
._8_c00379{width:10.771200pt;}
._7_c00379{width:12.032000pt;}
._3_c00379{width:12.928000pt;}
._6_c00379{width:20.608000pt;}
._a_c00379{width:24.646400pt;}
._5_c00379{width:29.254400pt;}
.fs0_c00379{font-size:48.000000pt;}
.fs1_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y26_c00379{bottom:50.880000pt;}
.y25_c00379{bottom:103.840000pt;}
.y24_c00379{bottom:131.440000pt;}
.y23_c00379{bottom:159.040000pt;}
.y22_c00379{bottom:186.640000pt;}
.y21_c00379{bottom:214.240000pt;}
.y20_c00379{bottom:241.840000pt;}
.y1f_c00379{bottom:269.440000pt;}
.y1e_c00379{bottom:297.040000pt;}
.y1d_c00379{bottom:324.640000pt;}
.y1c_c00379{bottom:352.240000pt;}
.y1b_c00379{bottom:379.840000pt;}
.y1a_c00379{bottom:407.440000pt;}
.y19_c00379{bottom:435.040000pt;}
.y18_c00379{bottom:462.640000pt;}
.y17_c00379{bottom:490.240000pt;}
.y16_c00379{bottom:517.840000pt;}
.y15_c00379{bottom:545.440000pt;}
.y14_c00379{bottom:573.040000pt;}
.y13_c00379{bottom:600.640000pt;}
.y12_c00379{bottom:628.240000pt;}
.y11_c00379{bottom:655.840000pt;}
.y10_c00379{bottom:683.440000pt;}
.yf_c00379{bottom:711.040000pt;}
.ye_c00379{bottom:738.640000pt;}
.yd_c00379{bottom:766.160000pt;}
.yc_c00379{bottom:793.760000pt;}
.yb_c00379{bottom:821.360000pt;}
.ya_c00379{bottom:848.960000pt;}
.y9_c00379{bottom:876.560000pt;}
.y8_c00379{bottom:904.160000pt;}
.y7_c00379{bottom:931.760000pt;}
.y6_c00379{bottom:959.360000pt;}
.y5_c00379{bottom:986.960000pt;}
.y4_c00379{bottom:1005.360000pt;}
.y3_c00379{bottom:1023.036000pt;}
.y2_c00379{bottom:1036.800000pt;}
.y1_c00379{bottom:1064.400000pt;}
.h2_c00379{height:47.109375pt;}
.h3_c00379{height:62.812500pt;}
.h0_c00379{height:1122.560000pt;}
.h1_c00379{height:1122.666667pt;}
.w0_c00379{width:793.840000pt;}
.w1_c00379{width:794.000000pt;}
.x0_c00379{left:0.000000pt;}
.x2_c00379{left:113.440000pt;}
.x1_c00379{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_630b376feefe6f548360c0ef.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.284180;font-style: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;}
.ls11_c00380{letter-spacing:-0.576000px;}
.lsc_c00380{letter-spacing:-0.360000px;}
.lse_c00380{letter-spacing:-0.288000px;}
.lsd_c00380{letter-spacing:-0.216000px;}
.lsf_c00380{letter-spacing:-0.144000px;}
.lsb_c00380{letter-spacing:-0.108000px;}
.ls10_c00380{letter-spacing:-0.072000px;}
.lsa_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:0.072000px;}
.ls3_c00380{letter-spacing:0.144000px;}
.ls9_c00380{letter-spacing:0.360000px;}
.ls6_c00380{letter-spacing:1.440000px;}
.ls4_c00380{letter-spacing:9.360000px;}
.ls8_c00380{letter-spacing:10.080000px;}
.ls1_c00380{letter-spacing:12.247200px;}
.ls5_c00380{letter-spacing:17.280000px;}
.ls7_c00380{letter-spacing:18.720000px;}
.ls2_c00380{letter-spacing:20.160000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00380{word-spacing:-18.144000px;}
.ws0_c00380{word-spacing:-18.072000px;}
.ws3_c00380{word-spacing:-18.000000px;}
.ws5_c00380{word-spacing:-17.856000px;}
.ws1_c00380{word-spacing:-17.784000px;}
.ws4_c00380{word-spacing:-17.712000px;}
.ws6_c00380{word-spacing:-17.424000px;}
.ws25_c00380{word-spacing:-0.432000px;}
.ws32_c00380{word-spacing:-0.360000px;}
.ws33_c00380{word-spacing:-0.144000px;}
.wsd_c00380{word-spacing:-0.072000px;}
.ws7_c00380{word-spacing:0.000000px;}
.ws28_c00380{word-spacing:0.072000px;}
.ws9_c00380{word-spacing:0.162000px;}
.ws29_c00380{word-spacing:0.216000px;}
.ws8_c00380{word-spacing:0.270000px;}
.ws11_c00380{word-spacing:0.288000px;}
.wsc_c00380{word-spacing:0.360000px;}
.ws2b_c00380{word-spacing:0.648000px;}
.ws2c_c00380{word-spacing:0.720000px;}
.ws22_c00380{word-spacing:1.440000px;}
.ws27_c00380{word-spacing:1.800000px;}
.ws2a_c00380{word-spacing:2.160000px;}
.ws26_c00380{word-spacing:2.880000px;}
.ws12_c00380{word-spacing:4.248000px;}
.ws34_c00380{word-spacing:6.480000px;}
.ws1c_c00380{word-spacing:9.288000px;}
.ws1b_c00380{word-spacing:9.360000px;}
.ws23_c00380{word-spacing:9.648000px;}
.ws24_c00380{word-spacing:9.720000px;}
.ws31_c00380{word-spacing:10.008000px;}
.ws30_c00380{word-spacing:10.080000px;}
.ws14_c00380{word-spacing:12.168000px;}
.ws13_c00380{word-spacing:12.240000px;}
.ws10_c00380{word-spacing:13.248000px;}
.wsf_c00380{word-spacing:16.488000px;}
.wse_c00380{word-spacing:16.560000px;}
.ws1e_c00380{word-spacing:16.920000px;}
.ws1d_c00380{word-spacing:17.280000px;}
.ws2f_c00380{word-spacing:18.288000px;}
.ws2e_c00380{word-spacing:18.576000px;}
.ws2d_c00380{word-spacing:18.720000px;}
.ws16_c00380{word-spacing:20.016000px;}
.ws15_c00380{word-spacing:20.160000px;}
.wsb_c00380{word-spacing:23.256000px;}
.wsa_c00380{word-spacing:23.328000px;}
.ws18_c00380{word-spacing:25.056000px;}
.ws17_c00380{word-spacing:25.128000px;}
.ws1f_c00380{word-spacing:28.440000px;}
.ws21_c00380{word-spacing:28.728000px;}
.ws20_c00380{word-spacing:28.800000px;}
.ws19_c00380{word-spacing:32.760000px;}
.ws1a_c00380{word-spacing:33.048000px;}
._1_c00380{margin-left:-1.058400px;}
._0_c00380{width:1.220400px;}
._e_c00380{width:2.739600px;}
._a_c00380{width:9.000000px;}
._c_c00380{width:10.353600px;}
._4_c00380{width:12.067200px;}
._3_c00380{width:16.776000px;}
._6_c00380{width:19.368000px;}
._5_c00380{width:20.592000px;}
._2_c00380{width:22.636800px;}
._7_c00380{width:24.458400px;}
._d_c00380{width:28.058400px;}
._b_c00380{width:29.304000px;}
._8_c00380{width:32.328000px;}
._9_c00380{width:33.624000px;}
.fc0_c00380{color:rgb(0,0,0);}
.fs0_c00380{font-size:54.000000px;}
.fs1_c00380{font-size:72.000000px;}
.y0_c00380{bottom:0.000000px;}
.y26_c00380{bottom:57.240000px;}
.y25_c00380{bottom:147.870000px;}
.y24_c00380{bottom:178.920000px;}
.y23_c00380{bottom:209.970000px;}
.y22_c00380{bottom:241.020000px;}
.y21_c00380{bottom:272.070000px;}
.y20_c00380{bottom:303.120000px;}
.y1f_c00380{bottom:334.170000px;}
.y1e_c00380{bottom:365.220000px;}
.y1d_c00380{bottom:396.270000px;}
.y1c_c00380{bottom:427.320000px;}
.y1b_c00380{bottom:458.370000px;}
.y1a_c00380{bottom:489.420000px;}
.y19_c00380{bottom:520.470000px;}
.y18_c00380{bottom:551.520000px;}
.y17_c00380{bottom:582.570000px;}
.y16_c00380{bottom:613.620000px;}
.y15_c00380{bottom:644.670000px;}
.y14_c00380{bottom:675.720000px;}
.y13_c00380{bottom:706.770000px;}
.y12_c00380{bottom:737.820000px;}
.y11_c00380{bottom:768.870000px;}
.y10_c00380{bottom:799.920000px;}
.yf_c00380{bottom:830.970000px;}
.ye_c00380{bottom:861.930000px;}
.yd_c00380{bottom:892.980000px;}
.yc_c00380{bottom:924.030000px;}
.yb_c00380{bottom:955.080000px;}
.ya_c00380{bottom:986.130000px;}
.y9_c00380{bottom:1017.180000px;}
.y8_c00380{bottom:1048.230000px;}
.y7_c00380{bottom:1079.280000px;}
.y6_c00380{bottom:1110.330000px;}
.y5_c00380{bottom:1131.030000px;}
.y4_c00380{bottom:1150.920000px;}
.y3_c00380{bottom:1166.404500px;}
.y2_c00380{bottom:1181.970000px;}
.y1_c00380{bottom:1197.450000px;}
.h3_c00380{height:52.971680px;}
.h2_c00380{height:52.998047px;}
.h4_c00380{height:70.664062px;}
.h0_c00380{height:1262.880000px;}
.h1_c00380{height:1263.000000px;}
.w0_c00380{width:893.070000px;}
.w1_c00380{width:893.250000px;}
.x0_c00380{left:0.000000px;}
.x3_c00380{left:127.620000px;}
.x2_c00380{left:425.160000px;}
.x1_c00380{left:446.580000px;}
.x4_c00380{left:738.540000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls11_c00380{letter-spacing:-0.512000pt;}
.lsc_c00380{letter-spacing:-0.320000pt;}
.lse_c00380{letter-spacing:-0.256000pt;}
.lsd_c00380{letter-spacing:-0.192000pt;}
.lsf_c00380{letter-spacing:-0.128000pt;}
.lsb_c00380{letter-spacing:-0.096000pt;}
.ls10_c00380{letter-spacing:-0.064000pt;}
.lsa_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:0.064000pt;}
.ls3_c00380{letter-spacing:0.128000pt;}
.ls9_c00380{letter-spacing:0.320000pt;}
.ls6_c00380{letter-spacing:1.280000pt;}
.ls4_c00380{letter-spacing:8.320000pt;}
.ls8_c00380{letter-spacing:8.960000pt;}
.ls1_c00380{letter-spacing:10.886400pt;}
.ls5_c00380{letter-spacing:15.360000pt;}
.ls7_c00380{letter-spacing:16.640000pt;}
.ls2_c00380{letter-spacing:17.920000pt;}
.ws2_c00380{word-spacing:-16.128000pt;}
.ws0_c00380{word-spacing:-16.064000pt;}
.ws3_c00380{word-spacing:-16.000000pt;}
.ws5_c00380{word-spacing:-15.872000pt;}
.ws1_c00380{word-spacing:-15.808000pt;}
.ws4_c00380{word-spacing:-15.744000pt;}
.ws6_c00380{word-spacing:-15.488000pt;}
.ws25_c00380{word-spacing:-0.384000pt;}
.ws32_c00380{word-spacing:-0.320000pt;}
.ws33_c00380{word-spacing:-0.128000pt;}
.wsd_c00380{word-spacing:-0.064000pt;}
.ws7_c00380{word-spacing:0.000000pt;}
.ws28_c00380{word-spacing:0.064000pt;}
.ws9_c00380{word-spacing:0.144000pt;}
.ws29_c00380{word-spacing:0.192000pt;}
.ws8_c00380{word-spacing:0.240000pt;}
.ws11_c00380{word-spacing:0.256000pt;}
.wsc_c00380{word-spacing:0.320000pt;}
.ws2b_c00380{word-spacing:0.576000pt;}
.ws2c_c00380{word-spacing:0.640000pt;}
.ws22_c00380{word-spacing:1.280000pt;}
.ws27_c00380{word-spacing:1.600000pt;}
.ws2a_c00380{word-spacing:1.920000pt;}
.ws26_c00380{word-spacing:2.560000pt;}
.ws12_c00380{word-spacing:3.776000pt;}
.ws34_c00380{word-spacing:5.760000pt;}
.ws1c_c00380{word-spacing:8.256000pt;}
.ws1b_c00380{word-spacing:8.320000pt;}
.ws23_c00380{word-spacing:8.576000pt;}
.ws24_c00380{word-spacing:8.640000pt;}
.ws31_c00380{word-spacing:8.896000pt;}
.ws30_c00380{word-spacing:8.960000pt;}
.ws14_c00380{word-spacing:10.816000pt;}
.ws13_c00380{word-spacing:10.880000pt;}
.ws10_c00380{word-spacing:11.776000pt;}
.wsf_c00380{word-spacing:14.656000pt;}
.wse_c00380{word-spacing:14.720000pt;}
.ws1e_c00380{word-spacing:15.040000pt;}
.ws1d_c00380{word-spacing:15.360000pt;}
.ws2f_c00380{word-spacing:16.256000pt;}
.ws2e_c00380{word-spacing:16.512000pt;}
.ws2d_c00380{word-spacing:16.640000pt;}
.ws16_c00380{word-spacing:17.792000pt;}
.ws15_c00380{word-spacing:17.920000pt;}
.wsb_c00380{word-spacing:20.672000pt;}
.wsa_c00380{word-spacing:20.736000pt;}
.ws18_c00380{word-spacing:22.272000pt;}
.ws17_c00380{word-spacing:22.336000pt;}
.ws1f_c00380{word-spacing:25.280000pt;}
.ws21_c00380{word-spacing:25.536000pt;}
.ws20_c00380{word-spacing:25.600000pt;}
.ws19_c00380{word-spacing:29.120000pt;}
.ws1a_c00380{word-spacing:29.376000pt;}
._1_c00380{margin-left:-0.940800pt;}
._0_c00380{width:1.084800pt;}
._e_c00380{width:2.435200pt;}
._a_c00380{width:8.000000pt;}
._c_c00380{width:9.203200pt;}
._4_c00380{width:10.726400pt;}
._3_c00380{width:14.912000pt;}
._6_c00380{width:17.216000pt;}
._5_c00380{width:18.304000pt;}
._2_c00380{width:20.121600pt;}
._7_c00380{width:21.740800pt;}
._d_c00380{width:24.940800pt;}
._b_c00380{width:26.048000pt;}
._8_c00380{width:28.736000pt;}
._9_c00380{width:29.888000pt;}
.fs0_c00380{font-size:48.000000pt;}
.fs1_c00380{font-size:64.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y26_c00380{bottom:50.880000pt;}
.y25_c00380{bottom:131.440000pt;}
.y24_c00380{bottom:159.040000pt;}
.y23_c00380{bottom:186.640000pt;}
.y22_c00380{bottom:214.240000pt;}
.y21_c00380{bottom:241.840000pt;}
.y20_c00380{bottom:269.440000pt;}
.y1f_c00380{bottom:297.040000pt;}
.y1e_c00380{bottom:324.640000pt;}
.y1d_c00380{bottom:352.240000pt;}
.y1c_c00380{bottom:379.840000pt;}
.y1b_c00380{bottom:407.440000pt;}
.y1a_c00380{bottom:435.040000pt;}
.y19_c00380{bottom:462.640000pt;}
.y18_c00380{bottom:490.240000pt;}
.y17_c00380{bottom:517.840000pt;}
.y16_c00380{bottom:545.440000pt;}
.y15_c00380{bottom:573.040000pt;}
.y14_c00380{bottom:600.640000pt;}
.y13_c00380{bottom:628.240000pt;}
.y12_c00380{bottom:655.840000pt;}
.y11_c00380{bottom:683.440000pt;}
.y10_c00380{bottom:711.040000pt;}
.yf_c00380{bottom:738.640000pt;}
.ye_c00380{bottom:766.160000pt;}
.yd_c00380{bottom:793.760000pt;}
.yc_c00380{bottom:821.360000pt;}
.yb_c00380{bottom:848.960000pt;}
.ya_c00380{bottom:876.560000pt;}
.y9_c00380{bottom:904.160000pt;}
.y8_c00380{bottom:931.760000pt;}
.y7_c00380{bottom:959.360000pt;}
.y6_c00380{bottom:986.960000pt;}
.y5_c00380{bottom:1005.360000pt;}
.y4_c00380{bottom:1023.040000pt;}
.y3_c00380{bottom:1036.804000pt;}
.y2_c00380{bottom:1050.640000pt;}
.y1_c00380{bottom:1064.400000pt;}
.h3_c00380{height:47.085938pt;}
.h2_c00380{height:47.109375pt;}
.h4_c00380{height:62.812500pt;}
.h0_c00380{height:1122.560000pt;}
.h1_c00380{height:1122.666667pt;}
.w0_c00380{width:793.840000pt;}
.w1_c00380{width:794.000000pt;}
.x0_c00380{left:0.000000pt;}
.x3_c00380{left:113.440000pt;}
.x2_c00380{left:377.920000pt;}
.x1_c00380{left:396.960000pt;}
.x4_c00380{left:656.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_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_af32880922c27734304f3b34.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00381{vertical-align:-61.938000px;}
.v0_c00381{vertical-align:0.000000px;}
.lsf_c00381{letter-spacing:-0.576000px;}
.lsd_c00381{letter-spacing:-0.288000px;}
.lse_c00381{letter-spacing:-0.072000px;}
.lsb_c00381{letter-spacing:0.000000px;}
.ls2_c00381{letter-spacing:0.072000px;}
.lsc_c00381{letter-spacing:0.144000px;}
.lsa_c00381{letter-spacing:0.360000px;}
.ls6_c00381{letter-spacing:0.720000px;}
.ls4_c00381{letter-spacing:9.360000px;}
.ls5_c00381{letter-spacing:9.720000px;}
.ls9_c00381{letter-spacing:11.880000px;}
.ls3_c00381{letter-spacing:12.240000px;}
.ls1_c00381{letter-spacing:12.600000px;}
.ls7_c00381{letter-spacing:24.120000px;}
.ls8_c00381{letter-spacing:24.480000px;}
.ls0_c00381{letter-spacing:319.518000px;}
.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;}
}
.ws4_c00381{word-spacing:-18.144000px;}
.ws0_c00381{word-spacing:-18.072000px;}
.ws1_c00381{word-spacing:-18.000000px;}
.ws2_c00381{word-spacing:-17.928000px;}
.ws3_c00381{word-spacing:-17.712000px;}
.ws5_c00381{word-spacing:-17.424000px;}
.ws2b_c00381{word-spacing:-0.360000px;}
.ws7_c00381{word-spacing:-0.162000px;}
.ws11_c00381{word-spacing:-0.144000px;}
.wsa_c00381{word-spacing:-0.072000px;}
.ws6_c00381{word-spacing:0.000000px;}
.ws12_c00381{word-spacing:0.648000px;}
.ws1b_c00381{word-spacing:0.720000px;}
.ws26_c00381{word-spacing:1.656000px;}
.ws25_c00381{word-spacing:1.728000px;}
.ws24_c00381{word-spacing:1.800000px;}
.ws2e_c00381{word-spacing:2.520000px;}
.ws13_c00381{word-spacing:3.168000px;}
.ws14_c00381{word-spacing:3.240000px;}
.ws15_c00381{word-spacing:3.600000px;}
.ws27_c00381{word-spacing:3.888000px;}
.ws21_c00381{word-spacing:3.960000px;}
.wse_c00381{word-spacing:4.176000px;}
.wsd_c00381{word-spacing:4.248000px;}
.ws2d_c00381{word-spacing:6.840000px;}
.ws22_c00381{word-spacing:7.488000px;}
.ws23_c00381{word-spacing:7.560000px;}
.ws10_c00381{word-spacing:9.000000px;}
.wsc_c00381{word-spacing:9.288000px;}
.wsb_c00381{word-spacing:9.360000px;}
.wsf_c00381{word-spacing:9.648000px;}
.ws1a_c00381{word-spacing:9.720000px;}
.ws28_c00381{word-spacing:11.808000px;}
.ws29_c00381{word-spacing:11.880000px;}
.ws2a_c00381{word-spacing:12.240000px;}
.ws9_c00381{word-spacing:12.528000px;}
.ws8_c00381{word-spacing:12.600000px;}
.ws19_c00381{word-spacing:14.040000px;}
.ws17_c00381{word-spacing:14.976000px;}
.ws16_c00381{word-spacing:15.120000px;}
.ws2c_c00381{word-spacing:16.200000px;}
.ws1e_c00381{word-spacing:21.168000px;}
.ws1f_c00381{word-spacing:21.240000px;}
.ws18_c00381{word-spacing:23.760000px;}
.ws1c_c00381{word-spacing:24.408000px;}
.ws1d_c00381{word-spacing:24.480000px;}
.ws20_c00381{word-spacing:38.088000px;}
._0_c00381{margin-left:-1.008000px;}
._3_c00381{width:1.008000px;}
._2_c00381{width:3.024000px;}
._4_c00381{width:4.104000px;}
._5_c00381{width:7.416000px;}
._1_c00381{width:9.360000px;}
._6_c00381{width:11.520000px;}
.fc0_c00381{color:rgb(0,0,0);}
.fs0_c00381{font-size:54.000000px;}
.fs1_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y26_c00381{bottom:57.240000px;}
.y25_c00381{bottom:116.820000px;}
.y24_c00381{bottom:147.870000px;}
.y23_c00381{bottom:178.920000px;}
.y22_c00381{bottom:209.970000px;}
.y21_c00381{bottom:241.020000px;}
.y20_c00381{bottom:272.070000px;}
.y1f_c00381{bottom:303.120000px;}
.y1e_c00381{bottom:334.170000px;}
.y1d_c00381{bottom:365.220000px;}
.y1c_c00381{bottom:396.270000px;}
.y1b_c00381{bottom:427.320000px;}
.y1a_c00381{bottom:458.370000px;}
.y19_c00381{bottom:489.420000px;}
.y18_c00381{bottom:520.470000px;}
.y17_c00381{bottom:551.520000px;}
.y16_c00381{bottom:582.570000px;}
.y15_c00381{bottom:613.620000px;}
.y14_c00381{bottom:644.670000px;}
.y13_c00381{bottom:675.720000px;}
.y12_c00381{bottom:706.770000px;}
.y11_c00381{bottom:737.820000px;}
.y10_c00381{bottom:768.870000px;}
.yf_c00381{bottom:799.920000px;}
.ye_c00381{bottom:830.970000px;}
.yd_c00381{bottom:861.930000px;}
.yc_c00381{bottom:892.980000px;}
.yb_c00381{bottom:924.030000px;}
.ya_c00381{bottom:955.080000px;}
.y9_c00381{bottom:986.130000px;}
.y8_c00381{bottom:1017.180000px;}
.y7_c00381{bottom:1048.230000px;}
.y6_c00381{bottom:1079.280000px;}
.y5_c00381{bottom:1110.330000px;}
.y4_c00381{bottom:1131.030000px;}
.y3_c00381{bottom:1150.915500px;}
.y2_c00381{bottom:1166.400000px;}
.y1_c00381{bottom:1197.450000px;}
.h2_c00381{height:52.998047px;}
.h3_c00381{height:70.664062px;}
.h0_c00381{height:1262.880000px;}
.h1_c00381{height:1263.000000px;}
.w0_c00381{width:893.070000px;}
.w1_c00381{width:893.250000px;}
.x0_c00381{left:0.000000px;}
.x2_c00381{left:127.620000px;}
.x1_c00381{left:446.580000px;}
@media print{
.v1_c00381{vertical-align:-55.056000pt;}
.v0_c00381{vertical-align:0.000000pt;}
.lsf_c00381{letter-spacing:-0.512000pt;}
.lsd_c00381{letter-spacing:-0.256000pt;}
.lse_c00381{letter-spacing:-0.064000pt;}
.lsb_c00381{letter-spacing:0.000000pt;}
.ls2_c00381{letter-spacing:0.064000pt;}
.lsc_c00381{letter-spacing:0.128000pt;}
.lsa_c00381{letter-spacing:0.320000pt;}
.ls6_c00381{letter-spacing:0.640000pt;}
.ls4_c00381{letter-spacing:8.320000pt;}
.ls5_c00381{letter-spacing:8.640000pt;}
.ls9_c00381{letter-spacing:10.560000pt;}
.ls3_c00381{letter-spacing:10.880000pt;}
.ls1_c00381{letter-spacing:11.200000pt;}
.ls7_c00381{letter-spacing:21.440000pt;}
.ls8_c00381{letter-spacing:21.760000pt;}
.ls0_c00381{letter-spacing:284.016000pt;}
.ws4_c00381{word-spacing:-16.128000pt;}
.ws0_c00381{word-spacing:-16.064000pt;}
.ws1_c00381{word-spacing:-16.000000pt;}
.ws2_c00381{word-spacing:-15.936000pt;}
.ws3_c00381{word-spacing:-15.744000pt;}
.ws5_c00381{word-spacing:-15.488000pt;}
.ws2b_c00381{word-spacing:-0.320000pt;}
.ws7_c00381{word-spacing:-0.144000pt;}
.ws11_c00381{word-spacing:-0.128000pt;}
.wsa_c00381{word-spacing:-0.064000pt;}
.ws6_c00381{word-spacing:0.000000pt;}
.ws12_c00381{word-spacing:0.576000pt;}
.ws1b_c00381{word-spacing:0.640000pt;}
.ws26_c00381{word-spacing:1.472000pt;}
.ws25_c00381{word-spacing:1.536000pt;}
.ws24_c00381{word-spacing:1.600000pt;}
.ws2e_c00381{word-spacing:2.240000pt;}
.ws13_c00381{word-spacing:2.816000pt;}
.ws14_c00381{word-spacing:2.880000pt;}
.ws15_c00381{word-spacing:3.200000pt;}
.ws27_c00381{word-spacing:3.456000pt;}
.ws21_c00381{word-spacing:3.520000pt;}
.wse_c00381{word-spacing:3.712000pt;}
.wsd_c00381{word-spacing:3.776000pt;}
.ws2d_c00381{word-spacing:6.080000pt;}
.ws22_c00381{word-spacing:6.656000pt;}
.ws23_c00381{word-spacing:6.720000pt;}
.ws10_c00381{word-spacing:8.000000pt;}
.wsc_c00381{word-spacing:8.256000pt;}
.wsb_c00381{word-spacing:8.320000pt;}
.wsf_c00381{word-spacing:8.576000pt;}
.ws1a_c00381{word-spacing:8.640000pt;}
.ws28_c00381{word-spacing:10.496000pt;}
.ws29_c00381{word-spacing:10.560000pt;}
.ws2a_c00381{word-spacing:10.880000pt;}
.ws9_c00381{word-spacing:11.136000pt;}
.ws8_c00381{word-spacing:11.200000pt;}
.ws19_c00381{word-spacing:12.480000pt;}
.ws17_c00381{word-spacing:13.312000pt;}
.ws16_c00381{word-spacing:13.440000pt;}
.ws2c_c00381{word-spacing:14.400000pt;}
.ws1e_c00381{word-spacing:18.816000pt;}
.ws1f_c00381{word-spacing:18.880000pt;}
.ws18_c00381{word-spacing:21.120000pt;}
.ws1c_c00381{word-spacing:21.696000pt;}
.ws1d_c00381{word-spacing:21.760000pt;}
.ws20_c00381{word-spacing:33.856000pt;}
._0_c00381{margin-left:-0.896000pt;}
._3_c00381{width:0.896000pt;}
._2_c00381{width:2.688000pt;}
._4_c00381{width:3.648000pt;}
._5_c00381{width:6.592000pt;}
._1_c00381{width:8.320000pt;}
._6_c00381{width:10.240000pt;}
.fs0_c00381{font-size:48.000000pt;}
.fs1_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y26_c00381{bottom:50.880000pt;}
.y25_c00381{bottom:103.840000pt;}
.y24_c00381{bottom:131.440000pt;}
.y23_c00381{bottom:159.040000pt;}
.y22_c00381{bottom:186.640000pt;}
.y21_c00381{bottom:214.240000pt;}
.y20_c00381{bottom:241.840000pt;}
.y1f_c00381{bottom:269.440000pt;}
.y1e_c00381{bottom:297.040000pt;}
.y1d_c00381{bottom:324.640000pt;}
.y1c_c00381{bottom:352.240000pt;}
.y1b_c00381{bottom:379.840000pt;}
.y1a_c00381{bottom:407.440000pt;}
.y19_c00381{bottom:435.040000pt;}
.y18_c00381{bottom:462.640000pt;}
.y17_c00381{bottom:490.240000pt;}
.y16_c00381{bottom:517.840000pt;}
.y15_c00381{bottom:545.440000pt;}
.y14_c00381{bottom:573.040000pt;}
.y13_c00381{bottom:600.640000pt;}
.y12_c00381{bottom:628.240000pt;}
.y11_c00381{bottom:655.840000pt;}
.y10_c00381{bottom:683.440000pt;}
.yf_c00381{bottom:711.040000pt;}
.ye_c00381{bottom:738.640000pt;}
.yd_c00381{bottom:766.160000pt;}
.yc_c00381{bottom:793.760000pt;}
.yb_c00381{bottom:821.360000pt;}
.ya_c00381{bottom:848.960000pt;}
.y9_c00381{bottom:876.560000pt;}
.y8_c00381{bottom:904.160000pt;}
.y7_c00381{bottom:931.760000pt;}
.y6_c00381{bottom:959.360000pt;}
.y5_c00381{bottom:986.960000pt;}
.y4_c00381{bottom:1005.360000pt;}
.y3_c00381{bottom:1023.036000pt;}
.y2_c00381{bottom:1036.800000pt;}
.y1_c00381{bottom:1064.400000pt;}
.h2_c00381{height:47.109375pt;}
.h3_c00381{height:62.812500pt;}
.h0_c00381{height:1122.560000pt;}
.h1_c00381{height:1122.666667pt;}
.w0_c00381{width:793.840000pt;}
.w1_c00381{width:794.000000pt;}
.x0_c00381{left:0.000000pt;}
.x2_c00381{left:113.440000pt;}
.x1_c00381{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cdd158b957dd24ea88c020c5.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00382{letter-spacing:-0.288000px;}
.ls6_c00382{letter-spacing:-0.108000px;}
.ls5_c00382{letter-spacing:0.000000px;}
.ls2_c00382{letter-spacing:0.072000px;}
.ls7_c00382{letter-spacing:0.144000px;}
.ls3_c00382{letter-spacing:1.800000px;}
.ls1_c00382{letter-spacing:2.520000px;}
.ls4_c00382{letter-spacing:15.120000px;}
.ls0_c00382{letter-spacing:18.727200px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00382{word-spacing:-18.144000px;}
.ws0_c00382{word-spacing:-18.072000px;}
.ws3_c00382{word-spacing:-18.000000px;}
.ws1_c00382{word-spacing:-17.712000px;}
.ws2c_c00382{word-spacing:-0.432000px;}
.ws21_c00382{word-spacing:-0.144000px;}
.wsa_c00382{word-spacing:-0.072000px;}
.ws4_c00382{word-spacing:0.000000px;}
.ws6_c00382{word-spacing:0.162000px;}
.ws5_c00382{word-spacing:0.270000px;}
.ws2b_c00382{word-spacing:1.008000px;}
.ws13_c00382{word-spacing:1.080000px;}
.ws27_c00382{word-spacing:1.728000px;}
.ws26_c00382{word-spacing:1.800000px;}
.ws1e_c00382{word-spacing:2.448000px;}
.ws1f_c00382{word-spacing:2.520000px;}
.ws19_c00382{word-spacing:2.880000px;}
.ws1a_c00382{word-spacing:3.240000px;}
.ws22_c00382{word-spacing:6.408000px;}
.ws20_c00382{word-spacing:6.480000px;}
.ws25_c00382{word-spacing:7.128000px;}
.ws23_c00382{word-spacing:8.208000px;}
.ws24_c00382{word-spacing:8.280000px;}
.ws1d_c00382{word-spacing:8.568000px;}
.ws7_c00382{word-spacing:8.928000px;}
.ws8_c00382{word-spacing:9.000000px;}
.wsd_c00382{word-spacing:9.720000px;}
.wse_c00382{word-spacing:10.080000px;}
.ws16_c00382{word-spacing:10.296000px;}
.ws14_c00382{word-spacing:10.368000px;}
.ws15_c00382{word-spacing:10.440000px;}
.wsb_c00382{word-spacing:12.960000px;}
.ws30_c00382{word-spacing:14.760000px;}
.ws2d_c00382{word-spacing:15.048000px;}
.ws2f_c00382{word-spacing:15.408000px;}
.ws2e_c00382{word-spacing:15.480000px;}
.ws12_c00382{word-spacing:17.208000px;}
.ws11_c00382{word-spacing:17.280000px;}
.ws1c_c00382{word-spacing:18.216000px;}
.ws1b_c00382{word-spacing:18.648000px;}
.ws18_c00382{word-spacing:20.520000px;}
.ws2a_c00382{word-spacing:21.528000px;}
.ws9_c00382{word-spacing:21.600000px;}
.ws28_c00382{word-spacing:21.888000px;}
.ws29_c00382{word-spacing:21.960000px;}
.wsf_c00382{word-spacing:23.256000px;}
.ws10_c00382{word-spacing:23.328000px;}
.ws17_c00382{word-spacing:28.440000px;}
.wsc_c00382{word-spacing:38.520000px;}
._1_c00382{margin-left:-1.058400px;}
._0_c00382{width:1.220400px;}
._5_c00382{width:5.760000px;}
._6_c00382{width:8.496000px;}
._3_c00382{width:12.672000px;}
._2_c00382{width:21.744000px;}
._4_c00382{width:23.526000px;}
._7_c00382{width:28.368000px;}
.fc0_c00382{color:rgb(0,0,0);}
.fs0_c00382{font-size:54.000000px;}
.fs1_c00382{font-size:72.000000px;}
.y0_c00382{bottom:0.000000px;}
.y27_c00382{bottom:57.240000px;}
.y26_c00382{bottom:116.820000px;}
.y25_c00382{bottom:147.870000px;}
.y24_c00382{bottom:178.920000px;}
.y23_c00382{bottom:209.970000px;}
.y22_c00382{bottom:241.020000px;}
.y21_c00382{bottom:272.070000px;}
.y20_c00382{bottom:303.120000px;}
.y1f_c00382{bottom:334.170000px;}
.y1e_c00382{bottom:365.220000px;}
.y1d_c00382{bottom:396.270000px;}
.y1c_c00382{bottom:427.320000px;}
.y1b_c00382{bottom:458.370000px;}
.y1a_c00382{bottom:489.420000px;}
.y19_c00382{bottom:520.470000px;}
.y18_c00382{bottom:551.520000px;}
.y17_c00382{bottom:582.570000px;}
.y16_c00382{bottom:613.620000px;}
.y15_c00382{bottom:644.670000px;}
.y14_c00382{bottom:675.720000px;}
.y13_c00382{bottom:706.770000px;}
.y12_c00382{bottom:737.820000px;}
.y11_c00382{bottom:768.870000px;}
.y10_c00382{bottom:799.920000px;}
.yf_c00382{bottom:830.970000px;}
.ye_c00382{bottom:861.930000px;}
.yd_c00382{bottom:892.980000px;}
.yc_c00382{bottom:924.030000px;}
.yb_c00382{bottom:955.080000px;}
.ya_c00382{bottom:986.130000px;}
.y9_c00382{bottom:1017.180000px;}
.y8_c00382{bottom:1048.230000px;}
.y7_c00382{bottom:1079.280000px;}
.y6_c00382{bottom:1110.330000px;}
.y5_c00382{bottom:1131.030000px;}
.y4_c00382{bottom:1150.920000px;}
.y3_c00382{bottom:1166.404500px;}
.y2_c00382{bottom:1181.970000px;}
.y1_c00382{bottom:1197.450000px;}
.h3_c00382{height:52.971680px;}
.h2_c00382{height:52.998047px;}
.h4_c00382{height:70.664062px;}
.h0_c00382{height:1262.880000px;}
.h1_c00382{height:1263.000000px;}
.w0_c00382{width:893.070000px;}
.w1_c00382{width:893.250000px;}
.x0_c00382{left:0.000000px;}
.x3_c00382{left:127.620000px;}
.x2_c00382{left:425.160000px;}
.x1_c00382{left:446.580000px;}
.x4_c00382{left:738.540000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls8_c00382{letter-spacing:-0.256000pt;}
.ls6_c00382{letter-spacing:-0.096000pt;}
.ls5_c00382{letter-spacing:0.000000pt;}
.ls2_c00382{letter-spacing:0.064000pt;}
.ls7_c00382{letter-spacing:0.128000pt;}
.ls3_c00382{letter-spacing:1.600000pt;}
.ls1_c00382{letter-spacing:2.240000pt;}
.ls4_c00382{letter-spacing:13.440000pt;}
.ls0_c00382{letter-spacing:16.646400pt;}
.ws2_c00382{word-spacing:-16.128000pt;}
.ws0_c00382{word-spacing:-16.064000pt;}
.ws3_c00382{word-spacing:-16.000000pt;}
.ws1_c00382{word-spacing:-15.744000pt;}
.ws2c_c00382{word-spacing:-0.384000pt;}
.ws21_c00382{word-spacing:-0.128000pt;}
.wsa_c00382{word-spacing:-0.064000pt;}
.ws4_c00382{word-spacing:0.000000pt;}
.ws6_c00382{word-spacing:0.144000pt;}
.ws5_c00382{word-spacing:0.240000pt;}
.ws2b_c00382{word-spacing:0.896000pt;}
.ws13_c00382{word-spacing:0.960000pt;}
.ws27_c00382{word-spacing:1.536000pt;}
.ws26_c00382{word-spacing:1.600000pt;}
.ws1e_c00382{word-spacing:2.176000pt;}
.ws1f_c00382{word-spacing:2.240000pt;}
.ws19_c00382{word-spacing:2.560000pt;}
.ws1a_c00382{word-spacing:2.880000pt;}
.ws22_c00382{word-spacing:5.696000pt;}
.ws20_c00382{word-spacing:5.760000pt;}
.ws25_c00382{word-spacing:6.336000pt;}
.ws23_c00382{word-spacing:7.296000pt;}
.ws24_c00382{word-spacing:7.360000pt;}
.ws1d_c00382{word-spacing:7.616000pt;}
.ws7_c00382{word-spacing:7.936000pt;}
.ws8_c00382{word-spacing:8.000000pt;}
.wsd_c00382{word-spacing:8.640000pt;}
.wse_c00382{word-spacing:8.960000pt;}
.ws16_c00382{word-spacing:9.152000pt;}
.ws14_c00382{word-spacing:9.216000pt;}
.ws15_c00382{word-spacing:9.280000pt;}
.wsb_c00382{word-spacing:11.520000pt;}
.ws30_c00382{word-spacing:13.120000pt;}
.ws2d_c00382{word-spacing:13.376000pt;}
.ws2f_c00382{word-spacing:13.696000pt;}
.ws2e_c00382{word-spacing:13.760000pt;}
.ws12_c00382{word-spacing:15.296000pt;}
.ws11_c00382{word-spacing:15.360000pt;}
.ws1c_c00382{word-spacing:16.192000pt;}
.ws1b_c00382{word-spacing:16.576000pt;}
.ws18_c00382{word-spacing:18.240000pt;}
.ws2a_c00382{word-spacing:19.136000pt;}
.ws9_c00382{word-spacing:19.200000pt;}
.ws28_c00382{word-spacing:19.456000pt;}
.ws29_c00382{word-spacing:19.520000pt;}
.wsf_c00382{word-spacing:20.672000pt;}
.ws10_c00382{word-spacing:20.736000pt;}
.ws17_c00382{word-spacing:25.280000pt;}
.wsc_c00382{word-spacing:34.240000pt;}
._1_c00382{margin-left:-0.940800pt;}
._0_c00382{width:1.084800pt;}
._5_c00382{width:5.120000pt;}
._6_c00382{width:7.552000pt;}
._3_c00382{width:11.264000pt;}
._2_c00382{width:19.328000pt;}
._4_c00382{width:20.912000pt;}
._7_c00382{width:25.216000pt;}
.fs0_c00382{font-size:48.000000pt;}
.fs1_c00382{font-size:64.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y27_c00382{bottom:50.880000pt;}
.y26_c00382{bottom:103.840000pt;}
.y25_c00382{bottom:131.440000pt;}
.y24_c00382{bottom:159.040000pt;}
.y23_c00382{bottom:186.640000pt;}
.y22_c00382{bottom:214.240000pt;}
.y21_c00382{bottom:241.840000pt;}
.y20_c00382{bottom:269.440000pt;}
.y1f_c00382{bottom:297.040000pt;}
.y1e_c00382{bottom:324.640000pt;}
.y1d_c00382{bottom:352.240000pt;}
.y1c_c00382{bottom:379.840000pt;}
.y1b_c00382{bottom:407.440000pt;}
.y1a_c00382{bottom:435.040000pt;}
.y19_c00382{bottom:462.640000pt;}
.y18_c00382{bottom:490.240000pt;}
.y17_c00382{bottom:517.840000pt;}
.y16_c00382{bottom:545.440000pt;}
.y15_c00382{bottom:573.040000pt;}
.y14_c00382{bottom:600.640000pt;}
.y13_c00382{bottom:628.240000pt;}
.y12_c00382{bottom:655.840000pt;}
.y11_c00382{bottom:683.440000pt;}
.y10_c00382{bottom:711.040000pt;}
.yf_c00382{bottom:738.640000pt;}
.ye_c00382{bottom:766.160000pt;}
.yd_c00382{bottom:793.760000pt;}
.yc_c00382{bottom:821.360000pt;}
.yb_c00382{bottom:848.960000pt;}
.ya_c00382{bottom:876.560000pt;}
.y9_c00382{bottom:904.160000pt;}
.y8_c00382{bottom:931.760000pt;}
.y7_c00382{bottom:959.360000pt;}
.y6_c00382{bottom:986.960000pt;}
.y5_c00382{bottom:1005.360000pt;}
.y4_c00382{bottom:1023.040000pt;}
.y3_c00382{bottom:1036.804000pt;}
.y2_c00382{bottom:1050.640000pt;}
.y1_c00382{bottom:1064.400000pt;}
.h3_c00382{height:47.085938pt;}
.h2_c00382{height:47.109375pt;}
.h4_c00382{height:62.812500pt;}
.h0_c00382{height:1122.560000pt;}
.h1_c00382{height:1122.666667pt;}
.w0_c00382{width:793.840000pt;}
.w1_c00382{width:794.000000pt;}
.x0_c00382{left:0.000000pt;}
.x3_c00382{left:113.440000pt;}
.x2_c00382{left:377.920000pt;}
.x1_c00382{left:396.960000pt;}
.x4_c00382{left:656.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_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_1ff52af208ba4e51353ad523.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00383{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00383{vertical-align:-61.938000px;}
.v0_c00383{vertical-align:0.000000px;}
.ls7_c00383{letter-spacing:-0.144000px;}
.ls6_c00383{letter-spacing:0.000000px;}
.ls1_c00383{letter-spacing:0.072000px;}
.ls5_c00383{letter-spacing:0.144000px;}
.ls4_c00383{letter-spacing:3.600000px;}
.ls3_c00383{letter-spacing:26.280000px;}
.ls2_c00383{letter-spacing:29.520000px;}
.ls0_c00383{letter-spacing:319.518000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:-18.072000px;}
.ws2_c00383{word-spacing:-18.000000px;}
.ws1_c00383{word-spacing:-17.856000px;}
.ws4_c00383{word-spacing:-0.162000px;}
.ws1f_c00383{word-spacing:-0.144000px;}
.ws9_c00383{word-spacing:-0.072000px;}
.ws3_c00383{word-spacing:0.000000px;}
.ws12_c00383{word-spacing:1.008000px;}
.wsb_c00383{word-spacing:1.080000px;}
.ws17_c00383{word-spacing:3.528000px;}
.ws18_c00383{word-spacing:3.600000px;}
.ws6_c00383{word-spacing:4.608000px;}
.ws15_c00383{word-spacing:5.040000px;}
.ws1a_c00383{word-spacing:5.328000px;}
.ws1c_c00383{word-spacing:5.760000px;}
.ws8_c00383{word-spacing:6.840000px;}
.ws1b_c00383{word-spacing:7.128000px;}
.ws11_c00383{word-spacing:8.208000px;}
.wsf_c00383{word-spacing:9.360000px;}
.ws22_c00383{word-spacing:10.008000px;}
.ws21_c00383{word-spacing:13.248000px;}
.ws1e_c00383{word-spacing:13.320000px;}
.ws7_c00383{word-spacing:15.048000px;}
.ws5_c00383{word-spacing:19.080000px;}
.ws10_c00383{word-spacing:19.368000px;}
.ws23_c00383{word-spacing:20.088000px;}
.ws19_c00383{word-spacing:20.808000px;}
.wsa_c00383{word-spacing:21.168000px;}
.ws1d_c00383{word-spacing:22.608000px;}
.ws16_c00383{word-spacing:26.280000px;}
.ws13_c00383{word-spacing:29.160000px;}
.ws14_c00383{word-spacing:29.520000px;}
.wsd_c00383{word-spacing:32.616000px;}
.wsc_c00383{word-spacing:32.688000px;}
.ws20_c00383{word-spacing:33.480000px;}
.wse_c00383{word-spacing:40.680000px;}
._0_c00383{margin-left:-1.159200px;}
._1_c00383{width:1.008000px;}
.fc0_c00383{color:rgb(0,0,0);}
.fs0_c00383{font-size:54.000000px;}
.fs1_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y25_c00383{bottom:57.240000px;}
.y24_c00383{bottom:147.870000px;}
.y23_c00383{bottom:178.920000px;}
.y22_c00383{bottom:209.970000px;}
.y21_c00383{bottom:241.020000px;}
.y20_c00383{bottom:272.070000px;}
.y1f_c00383{bottom:303.120000px;}
.y1e_c00383{bottom:334.170000px;}
.y1d_c00383{bottom:365.220000px;}
.y1c_c00383{bottom:396.270000px;}
.y1b_c00383{bottom:427.320000px;}
.y1a_c00383{bottom:458.370000px;}
.y19_c00383{bottom:489.420000px;}
.y18_c00383{bottom:520.470000px;}
.y17_c00383{bottom:551.520000px;}
.y16_c00383{bottom:582.570000px;}
.y15_c00383{bottom:613.620000px;}
.y14_c00383{bottom:644.670000px;}
.y13_c00383{bottom:675.720000px;}
.y12_c00383{bottom:706.770000px;}
.y11_c00383{bottom:737.820000px;}
.y10_c00383{bottom:768.870000px;}
.yf_c00383{bottom:799.920000px;}
.ye_c00383{bottom:830.970000px;}
.yd_c00383{bottom:861.930000px;}
.yc_c00383{bottom:892.980000px;}
.yb_c00383{bottom:924.030000px;}
.ya_c00383{bottom:955.080000px;}
.y9_c00383{bottom:986.130000px;}
.y8_c00383{bottom:1017.180000px;}
.y7_c00383{bottom:1048.230000px;}
.y6_c00383{bottom:1079.280000px;}
.y5_c00383{bottom:1110.330000px;}
.y4_c00383{bottom:1131.030000px;}
.y3_c00383{bottom:1150.915500px;}
.y2_c00383{bottom:1166.400000px;}
.y1_c00383{bottom:1197.450000px;}
.h2_c00383{height:52.998047px;}
.h3_c00383{height:70.664062px;}
.h0_c00383{height:1262.880000px;}
.h1_c00383{height:1263.000000px;}
.w0_c00383{width:893.070000px;}
.w1_c00383{width:893.250000px;}
.x0_c00383{left:0.000000px;}
.x2_c00383{left:127.620000px;}
.x1_c00383{left:446.580000px;}
@media print{
.v1_c00383{vertical-align:-55.056000pt;}
.v0_c00383{vertical-align:0.000000pt;}
.ls7_c00383{letter-spacing:-0.128000pt;}
.ls6_c00383{letter-spacing:0.000000pt;}
.ls1_c00383{letter-spacing:0.064000pt;}
.ls5_c00383{letter-spacing:0.128000pt;}
.ls4_c00383{letter-spacing:3.200000pt;}
.ls3_c00383{letter-spacing:23.360000pt;}
.ls2_c00383{letter-spacing:26.240000pt;}
.ls0_c00383{letter-spacing:284.016000pt;}
.ws0_c00383{word-spacing:-16.064000pt;}
.ws2_c00383{word-spacing:-16.000000pt;}
.ws1_c00383{word-spacing:-15.872000pt;}
.ws4_c00383{word-spacing:-0.144000pt;}
.ws1f_c00383{word-spacing:-0.128000pt;}
.ws9_c00383{word-spacing:-0.064000pt;}
.ws3_c00383{word-spacing:0.000000pt;}
.ws12_c00383{word-spacing:0.896000pt;}
.wsb_c00383{word-spacing:0.960000pt;}
.ws17_c00383{word-spacing:3.136000pt;}
.ws18_c00383{word-spacing:3.200000pt;}
.ws6_c00383{word-spacing:4.096000pt;}
.ws15_c00383{word-spacing:4.480000pt;}
.ws1a_c00383{word-spacing:4.736000pt;}
.ws1c_c00383{word-spacing:5.120000pt;}
.ws8_c00383{word-spacing:6.080000pt;}
.ws1b_c00383{word-spacing:6.336000pt;}
.ws11_c00383{word-spacing:7.296000pt;}
.wsf_c00383{word-spacing:8.320000pt;}
.ws22_c00383{word-spacing:8.896000pt;}
.ws21_c00383{word-spacing:11.776000pt;}
.ws1e_c00383{word-spacing:11.840000pt;}
.ws7_c00383{word-spacing:13.376000pt;}
.ws5_c00383{word-spacing:16.960000pt;}
.ws10_c00383{word-spacing:17.216000pt;}
.ws23_c00383{word-spacing:17.856000pt;}
.ws19_c00383{word-spacing:18.496000pt;}
.wsa_c00383{word-spacing:18.816000pt;}
.ws1d_c00383{word-spacing:20.096000pt;}
.ws16_c00383{word-spacing:23.360000pt;}
.ws13_c00383{word-spacing:25.920000pt;}
.ws14_c00383{word-spacing:26.240000pt;}
.wsd_c00383{word-spacing:28.992000pt;}
.wsc_c00383{word-spacing:29.056000pt;}
.ws20_c00383{word-spacing:29.760000pt;}
.wse_c00383{word-spacing:36.160000pt;}
._0_c00383{margin-left:-1.030400pt;}
._1_c00383{width:0.896000pt;}
.fs0_c00383{font-size:48.000000pt;}
.fs1_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y25_c00383{bottom:50.880000pt;}
.y24_c00383{bottom:131.440000pt;}
.y23_c00383{bottom:159.040000pt;}
.y22_c00383{bottom:186.640000pt;}
.y21_c00383{bottom:214.240000pt;}
.y20_c00383{bottom:241.840000pt;}
.y1f_c00383{bottom:269.440000pt;}
.y1e_c00383{bottom:297.040000pt;}
.y1d_c00383{bottom:324.640000pt;}
.y1c_c00383{bottom:352.240000pt;}
.y1b_c00383{bottom:379.840000pt;}
.y1a_c00383{bottom:407.440000pt;}
.y19_c00383{bottom:435.040000pt;}
.y18_c00383{bottom:462.640000pt;}
.y17_c00383{bottom:490.240000pt;}
.y16_c00383{bottom:517.840000pt;}
.y15_c00383{bottom:545.440000pt;}
.y14_c00383{bottom:573.040000pt;}
.y13_c00383{bottom:600.640000pt;}
.y12_c00383{bottom:628.240000pt;}
.y11_c00383{bottom:655.840000pt;}
.y10_c00383{bottom:683.440000pt;}
.yf_c00383{bottom:711.040000pt;}
.ye_c00383{bottom:738.640000pt;}
.yd_c00383{bottom:766.160000pt;}
.yc_c00383{bottom:793.760000pt;}
.yb_c00383{bottom:821.360000pt;}
.ya_c00383{bottom:848.960000pt;}
.y9_c00383{bottom:876.560000pt;}
.y8_c00383{bottom:904.160000pt;}
.y7_c00383{bottom:931.760000pt;}
.y6_c00383{bottom:959.360000pt;}
.y5_c00383{bottom:986.960000pt;}
.y4_c00383{bottom:1005.360000pt;}
.y3_c00383{bottom:1023.036000pt;}
.y2_c00383{bottom:1036.800000pt;}
.y1_c00383{bottom:1064.400000pt;}
.h2_c00383{height:47.109375pt;}
.h3_c00383{height:62.812500pt;}
.h0_c00383{height:1122.560000pt;}
.h1_c00383{height:1122.666667pt;}
.w0_c00383{width:793.840000pt;}
.w1_c00383{width:794.000000pt;}
.x0_c00383{left:0.000000pt;}
.x2_c00383{left:113.440000pt;}
.x1_c00383{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14695b3ab21ee2cc5e6cf591.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-0.108000px;}
.ls5_c00384{letter-spacing:0.000000px;}
.ls1_c00384{letter-spacing:0.072000px;}
.ls7_c00384{letter-spacing:0.144000px;}
.ls0_c00384{letter-spacing:0.504000px;}
.ls2_c00384{letter-spacing:9.360000px;}
.ls4_c00384{letter-spacing:32.400000px;}
.ls3_c00384{letter-spacing:33.120000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00384{word-spacing:-18.144000px;}
.ws1_c00384{word-spacing:-18.072000px;}
.ws0_c00384{word-spacing:-18.000000px;}
.ws15_c00384{word-spacing:-0.432000px;}
.ws14_c00384{word-spacing:-0.360000px;}
.ws1c_c00384{word-spacing:-0.144000px;}
.wsd_c00384{word-spacing:-0.072000px;}
.ws3_c00384{word-spacing:0.000000px;}
.ws5_c00384{word-spacing:0.162000px;}
.ws4_c00384{word-spacing:0.270000px;}
.ws1a_c00384{word-spacing:0.648000px;}
.ws19_c00384{word-spacing:0.720000px;}
.ws2b_c00384{word-spacing:1.008000px;}
.ws22_c00384{word-spacing:1.080000px;}
.wsa_c00384{word-spacing:1.728000px;}
.ws9_c00384{word-spacing:1.800000px;}
.wse_c00384{word-spacing:3.168000px;}
.ws27_c00384{word-spacing:3.240000px;}
.wsf_c00384{word-spacing:3.528000px;}
.ws18_c00384{word-spacing:3.960000px;}
.wsb_c00384{word-spacing:4.680000px;}
.ws1f_c00384{word-spacing:5.688000px;}
.ws1e_c00384{word-spacing:5.760000px;}
.wsc_c00384{word-spacing:7.848000px;}
.ws16_c00384{word-spacing:9.288000px;}
.ws17_c00384{word-spacing:9.360000px;}
.ws2a_c00384{word-spacing:10.008000px;}
.ws13_c00384{word-spacing:11.088000px;}
.ws23_c00384{word-spacing:11.160000px;}
.ws28_c00384{word-spacing:11.808000px;}
.ws29_c00384{word-spacing:11.880000px;}
.ws1b_c00384{word-spacing:15.768000px;}
.ws6_c00384{word-spacing:17.208000px;}
.ws7_c00384{word-spacing:17.280000px;}
.ws2c_c00384{word-spacing:22.320000px;}
.ws8_c00384{word-spacing:24.120000px;}
.ws10_c00384{word-spacing:25.776000px;}
.ws11_c00384{word-spacing:25.920000px;}
.ws24_c00384{word-spacing:26.640000px;}
.ws1d_c00384{word-spacing:28.296000px;}
.ws25_c00384{word-spacing:32.328000px;}
.ws26_c00384{word-spacing:32.400000px;}
.ws20_c00384{word-spacing:33.120000px;}
.ws12_c00384{word-spacing:34.848000px;}
.ws21_c00384{word-spacing:46.368000px;}
._1_c00384{margin-left:-1.058400px;}
._0_c00384{width:1.220400px;}
._3_c00384{width:5.832000px;}
._4_c00384{width:12.168000px;}
._2_c00384{width:28.346400px;}
.fc0_c00384{color:rgb(0,0,0);}
.fs0_c00384{font-size:54.000000px;}
.fs1_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y27_c00384{bottom:57.240000px;}
.y26_c00384{bottom:116.820000px;}
.y25_c00384{bottom:147.870000px;}
.y24_c00384{bottom:178.920000px;}
.y23_c00384{bottom:209.970000px;}
.y22_c00384{bottom:241.020000px;}
.y21_c00384{bottom:272.070000px;}
.y20_c00384{bottom:303.120000px;}
.y1f_c00384{bottom:334.170000px;}
.y1e_c00384{bottom:365.220000px;}
.y1d_c00384{bottom:396.270000px;}
.y1c_c00384{bottom:427.320000px;}
.y1b_c00384{bottom:458.370000px;}
.y1a_c00384{bottom:489.420000px;}
.y19_c00384{bottom:520.470000px;}
.y18_c00384{bottom:551.520000px;}
.y17_c00384{bottom:582.570000px;}
.y16_c00384{bottom:613.620000px;}
.y15_c00384{bottom:644.670000px;}
.y14_c00384{bottom:675.720000px;}
.y13_c00384{bottom:706.770000px;}
.y12_c00384{bottom:737.820000px;}
.y11_c00384{bottom:768.870000px;}
.y10_c00384{bottom:799.920000px;}
.yf_c00384{bottom:830.970000px;}
.ye_c00384{bottom:861.930000px;}
.yd_c00384{bottom:892.980000px;}
.yc_c00384{bottom:924.030000px;}
.yb_c00384{bottom:955.080000px;}
.ya_c00384{bottom:986.130000px;}
.y9_c00384{bottom:1017.180000px;}
.y8_c00384{bottom:1048.230000px;}
.y7_c00384{bottom:1079.280000px;}
.y6_c00384{bottom:1110.330000px;}
.y5_c00384{bottom:1131.030000px;}
.y4_c00384{bottom:1150.920000px;}
.y3_c00384{bottom:1166.404500px;}
.y2_c00384{bottom:1181.970000px;}
.y1_c00384{bottom:1197.450000px;}
.h3_c00384{height:52.971680px;}
.h2_c00384{height:52.998047px;}
.h4_c00384{height:70.664062px;}
.h5_c00384{height:72.562500px;}
.h0_c00384{height:1262.880000px;}
.h1_c00384{height:1263.000000px;}
.w0_c00384{width:893.070000px;}
.w1_c00384{width:893.250000px;}
.x0_c00384{left:0.000000px;}
.x3_c00384{left:127.620000px;}
.x2_c00384{left:425.160000px;}
.x1_c00384{left:446.580000px;}
.x4_c00384{left:738.540000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls6_c00384{letter-spacing:-0.096000pt;}
.ls5_c00384{letter-spacing:0.000000pt;}
.ls1_c00384{letter-spacing:0.064000pt;}
.ls7_c00384{letter-spacing:0.128000pt;}
.ls0_c00384{letter-spacing:0.448000pt;}
.ls2_c00384{letter-spacing:8.320000pt;}
.ls4_c00384{letter-spacing:28.800000pt;}
.ls3_c00384{letter-spacing:29.440000pt;}
.ws2_c00384{word-spacing:-16.128000pt;}
.ws1_c00384{word-spacing:-16.064000pt;}
.ws0_c00384{word-spacing:-16.000000pt;}
.ws15_c00384{word-spacing:-0.384000pt;}
.ws14_c00384{word-spacing:-0.320000pt;}
.ws1c_c00384{word-spacing:-0.128000pt;}
.wsd_c00384{word-spacing:-0.064000pt;}
.ws3_c00384{word-spacing:0.000000pt;}
.ws5_c00384{word-spacing:0.144000pt;}
.ws4_c00384{word-spacing:0.240000pt;}
.ws1a_c00384{word-spacing:0.576000pt;}
.ws19_c00384{word-spacing:0.640000pt;}
.ws2b_c00384{word-spacing:0.896000pt;}
.ws22_c00384{word-spacing:0.960000pt;}
.wsa_c00384{word-spacing:1.536000pt;}
.ws9_c00384{word-spacing:1.600000pt;}
.wse_c00384{word-spacing:2.816000pt;}
.ws27_c00384{word-spacing:2.880000pt;}
.wsf_c00384{word-spacing:3.136000pt;}
.ws18_c00384{word-spacing:3.520000pt;}
.wsb_c00384{word-spacing:4.160000pt;}
.ws1f_c00384{word-spacing:5.056000pt;}
.ws1e_c00384{word-spacing:5.120000pt;}
.wsc_c00384{word-spacing:6.976000pt;}
.ws16_c00384{word-spacing:8.256000pt;}
.ws17_c00384{word-spacing:8.320000pt;}
.ws2a_c00384{word-spacing:8.896000pt;}
.ws13_c00384{word-spacing:9.856000pt;}
.ws23_c00384{word-spacing:9.920000pt;}
.ws28_c00384{word-spacing:10.496000pt;}
.ws29_c00384{word-spacing:10.560000pt;}
.ws1b_c00384{word-spacing:14.016000pt;}
.ws6_c00384{word-spacing:15.296000pt;}
.ws7_c00384{word-spacing:15.360000pt;}
.ws2c_c00384{word-spacing:19.840000pt;}
.ws8_c00384{word-spacing:21.440000pt;}
.ws10_c00384{word-spacing:22.912000pt;}
.ws11_c00384{word-spacing:23.040000pt;}
.ws24_c00384{word-spacing:23.680000pt;}
.ws1d_c00384{word-spacing:25.152000pt;}
.ws25_c00384{word-spacing:28.736000pt;}
.ws26_c00384{word-spacing:28.800000pt;}
.ws20_c00384{word-spacing:29.440000pt;}
.ws12_c00384{word-spacing:30.976000pt;}
.ws21_c00384{word-spacing:41.216000pt;}
._1_c00384{margin-left:-0.940800pt;}
._0_c00384{width:1.084800pt;}
._3_c00384{width:5.184000pt;}
._4_c00384{width:10.816000pt;}
._2_c00384{width:25.196800pt;}
.fs0_c00384{font-size:48.000000pt;}
.fs1_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y27_c00384{bottom:50.880000pt;}
.y26_c00384{bottom:103.840000pt;}
.y25_c00384{bottom:131.440000pt;}
.y24_c00384{bottom:159.040000pt;}
.y23_c00384{bottom:186.640000pt;}
.y22_c00384{bottom:214.240000pt;}
.y21_c00384{bottom:241.840000pt;}
.y20_c00384{bottom:269.440000pt;}
.y1f_c00384{bottom:297.040000pt;}
.y1e_c00384{bottom:324.640000pt;}
.y1d_c00384{bottom:352.240000pt;}
.y1c_c00384{bottom:379.840000pt;}
.y1b_c00384{bottom:407.440000pt;}
.y1a_c00384{bottom:435.040000pt;}
.y19_c00384{bottom:462.640000pt;}
.y18_c00384{bottom:490.240000pt;}
.y17_c00384{bottom:517.840000pt;}
.y16_c00384{bottom:545.440000pt;}
.y15_c00384{bottom:573.040000pt;}
.y14_c00384{bottom:600.640000pt;}
.y13_c00384{bottom:628.240000pt;}
.y12_c00384{bottom:655.840000pt;}
.y11_c00384{bottom:683.440000pt;}
.y10_c00384{bottom:711.040000pt;}
.yf_c00384{bottom:738.640000pt;}
.ye_c00384{bottom:766.160000pt;}
.yd_c00384{bottom:793.760000pt;}
.yc_c00384{bottom:821.360000pt;}
.yb_c00384{bottom:848.960000pt;}
.ya_c00384{bottom:876.560000pt;}
.y9_c00384{bottom:904.160000pt;}
.y8_c00384{bottom:931.760000pt;}
.y7_c00384{bottom:959.360000pt;}
.y6_c00384{bottom:986.960000pt;}
.y5_c00384{bottom:1005.360000pt;}
.y4_c00384{bottom:1023.040000pt;}
.y3_c00384{bottom:1036.804000pt;}
.y2_c00384{bottom:1050.640000pt;}
.y1_c00384{bottom:1064.400000pt;}
.h3_c00384{height:47.085938pt;}
.h2_c00384{height:47.109375pt;}
.h4_c00384{height:62.812500pt;}
.h5_c00384{height:64.500000pt;}
.h0_c00384{height:1122.560000pt;}
.h1_c00384{height:1122.666667pt;}
.w0_c00384{width:793.840000pt;}
.w1_c00384{width:794.000000pt;}
.x0_c00384{left:0.000000pt;}
.x3_c00384{left:113.440000pt;}
.x2_c00384{left:377.920000pt;}
.x1_c00384{left:396.960000pt;}
.x4_c00384{left:656.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_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_4aee1e08c0f0e691445e9523.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.284180;font-style:normal;font-weight:normal;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00385{vertical-align:-61.938000px;}
.v0_c00385{vertical-align:0.000000px;}
.lsc_c00385{letter-spacing:-0.360000px;}
.lse_c00385{letter-spacing:-0.216000px;}
.lsb_c00385{letter-spacing:0.000000px;}
.ls1_c00385{letter-spacing:0.072000px;}
.ls3_c00385{letter-spacing:0.144000px;}
.lsd_c00385{letter-spacing:0.360000px;}
.ls6_c00385{letter-spacing:2.160000px;}
.ls7_c00385{letter-spacing:2.880000px;}
.lsa_c00385{letter-spacing:5.040000px;}
.ls5_c00385{letter-spacing:5.047200px;}
.ls4_c00385{letter-spacing:10.800000px;}
.ls8_c00385{letter-spacing:14.400000px;}
.ls2_c00385{letter-spacing:18.000000px;}
.ls9_c00385{letter-spacing:18.720000px;}
.ls0_c00385{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws3_c00385{word-spacing:-18.072000px;}
.ws0_c00385{word-spacing:-18.000000px;}
.ws1_c00385{word-spacing:-17.640000px;}
.ws20_c00385{word-spacing:-0.360000px;}
.ws5_c00385{word-spacing:-0.162000px;}
.ws18_c00385{word-spacing:-0.144000px;}
.wsd_c00385{word-spacing:-0.072000px;}
.ws4_c00385{word-spacing:0.000000px;}
.ws22_c00385{word-spacing:0.216000px;}
.ws29_c00385{word-spacing:0.288000px;}
.wsc_c00385{word-spacing:0.360000px;}
.ws21_c00385{word-spacing:2.088000px;}
.ws23_c00385{word-spacing:2.160000px;}
.wse_c00385{word-spacing:2.808000px;}
.ws1c_c00385{word-spacing:4.608000px;}
.ws1b_c00385{word-spacing:4.680000px;}
.wsb_c00385{word-spacing:4.968000px;}
.wsa_c00385{word-spacing:5.040000px;}
.ws14_c00385{word-spacing:5.760000px;}
.ws1e_c00385{word-spacing:6.408000px;}
.ws1f_c00385{word-spacing:6.480000px;}
.wsf_c00385{word-spacing:6.840000px;}
.ws10_c00385{word-spacing:7.920000px;}
.ws2b_c00385{word-spacing:8.640000px;}
.ws13_c00385{word-spacing:8.928000px;}
.ws12_c00385{word-spacing:9.000000px;}
.ws1a_c00385{word-spacing:10.368000px;}
.ws17_c00385{word-spacing:10.656000px;}
.ws19_c00385{word-spacing:10.728000px;}
.ws26_c00385{word-spacing:14.328000px;}
.ws25_c00385{word-spacing:14.400000px;}
.ws9_c00385{word-spacing:15.840000px;}
.ws8_c00385{word-spacing:16.560000px;}
.ws24_c00385{word-spacing:16.920000px;}
.ws1d_c00385{word-spacing:17.208000px;}
.ws2a_c00385{word-spacing:17.856000px;}
.ws16_c00385{word-spacing:17.928000px;}
.ws15_c00385{word-spacing:18.000000px;}
.ws28_c00385{word-spacing:18.576000px;}
.ws27_c00385{word-spacing:18.648000px;}
.ws7_c00385{word-spacing:23.688000px;}
.ws6_c00385{word-spacing:23.760000px;}
.ws11_c00385{word-spacing:35.280000px;}
._0_c00385{margin-left:-1.087200px;}
._1_c00385{width:1.080000px;}
._4_c00385{width:4.608000px;}
._5_c00385{width:5.839200px;}
._3_c00385{width:9.597600px;}
._2_c00385{width:10.742400px;}
._6_c00385{width:15.048000px;}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:54.000000px;}
.fs1_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y26_c00385{bottom:57.240000px;}
.y25_c00385{bottom:116.820000px;}
.y24_c00385{bottom:147.870000px;}
.y23_c00385{bottom:178.920000px;}
.y22_c00385{bottom:209.970000px;}
.y21_c00385{bottom:241.020000px;}
.y20_c00385{bottom:272.070000px;}
.y1f_c00385{bottom:303.120000px;}
.y1e_c00385{bottom:334.170000px;}
.y1d_c00385{bottom:365.220000px;}
.y1c_c00385{bottom:396.270000px;}
.y1b_c00385{bottom:427.320000px;}
.y1a_c00385{bottom:458.370000px;}
.y19_c00385{bottom:489.420000px;}
.y18_c00385{bottom:520.470000px;}
.y17_c00385{bottom:551.520000px;}
.y16_c00385{bottom:582.570000px;}
.y15_c00385{bottom:613.620000px;}
.y14_c00385{bottom:644.670000px;}
.y13_c00385{bottom:675.720000px;}
.y12_c00385{bottom:706.770000px;}
.y11_c00385{bottom:737.820000px;}
.y10_c00385{bottom:768.870000px;}
.yf_c00385{bottom:799.920000px;}
.ye_c00385{bottom:830.970000px;}
.yd_c00385{bottom:861.930000px;}
.yc_c00385{bottom:892.980000px;}
.yb_c00385{bottom:924.030000px;}
.ya_c00385{bottom:955.080000px;}
.y9_c00385{bottom:986.130000px;}
.y8_c00385{bottom:1017.180000px;}
.y7_c00385{bottom:1048.230000px;}
.y6_c00385{bottom:1079.280000px;}
.y5_c00385{bottom:1110.330000px;}
.y4_c00385{bottom:1131.030000px;}
.y3_c00385{bottom:1150.915500px;}
.y2_c00385{bottom:1166.400000px;}
.y1_c00385{bottom:1197.450000px;}
.h2_c00385{height:52.998047px;}
.h3_c00385{height:70.664062px;}
.h4_c00385{height:72.562500px;}
.h0_c00385{height:1262.880000px;}
.h1_c00385{height:1263.000000px;}
.w0_c00385{width:893.070000px;}
.w1_c00385{width:893.250000px;}
.x0_c00385{left:0.000000px;}
.x2_c00385{left:127.620000px;}
.x1_c00385{left:446.580000px;}
@media print{
.v1_c00385{vertical-align:-55.056000pt;}
.v0_c00385{vertical-align:0.000000pt;}
.lsc_c00385{letter-spacing:-0.320000pt;}
.lse_c00385{letter-spacing:-0.192000pt;}
.lsb_c00385{letter-spacing:0.000000pt;}
.ls1_c00385{letter-spacing:0.064000pt;}
.ls3_c00385{letter-spacing:0.128000pt;}
.lsd_c00385{letter-spacing:0.320000pt;}
.ls6_c00385{letter-spacing:1.920000pt;}
.ls7_c00385{letter-spacing:2.560000pt;}
.lsa_c00385{letter-spacing:4.480000pt;}
.ls5_c00385{letter-spacing:4.486400pt;}
.ls4_c00385{letter-spacing:9.600000pt;}
.ls8_c00385{letter-spacing:12.800000pt;}
.ls2_c00385{letter-spacing:16.000000pt;}
.ls9_c00385{letter-spacing:16.640000pt;}
.ls0_c00385{letter-spacing:284.016000pt;}
.ws2_c00385{word-spacing:-16.128000pt;}
.ws3_c00385{word-spacing:-16.064000pt;}
.ws0_c00385{word-spacing:-16.000000pt;}
.ws1_c00385{word-spacing:-15.680000pt;}
.ws20_c00385{word-spacing:-0.320000pt;}
.ws5_c00385{word-spacing:-0.144000pt;}
.ws18_c00385{word-spacing:-0.128000pt;}
.wsd_c00385{word-spacing:-0.064000pt;}
.ws4_c00385{word-spacing:0.000000pt;}
.ws22_c00385{word-spacing:0.192000pt;}
.ws29_c00385{word-spacing:0.256000pt;}
.wsc_c00385{word-spacing:0.320000pt;}
.ws21_c00385{word-spacing:1.856000pt;}
.ws23_c00385{word-spacing:1.920000pt;}
.wse_c00385{word-spacing:2.496000pt;}
.ws1c_c00385{word-spacing:4.096000pt;}
.ws1b_c00385{word-spacing:4.160000pt;}
.wsb_c00385{word-spacing:4.416000pt;}
.wsa_c00385{word-spacing:4.480000pt;}
.ws14_c00385{word-spacing:5.120000pt;}
.ws1e_c00385{word-spacing:5.696000pt;}
.ws1f_c00385{word-spacing:5.760000pt;}
.wsf_c00385{word-spacing:6.080000pt;}
.ws10_c00385{word-spacing:7.040000pt;}
.ws2b_c00385{word-spacing:7.680000pt;}
.ws13_c00385{word-spacing:7.936000pt;}
.ws12_c00385{word-spacing:8.000000pt;}
.ws1a_c00385{word-spacing:9.216000pt;}
.ws17_c00385{word-spacing:9.472000pt;}
.ws19_c00385{word-spacing:9.536000pt;}
.ws26_c00385{word-spacing:12.736000pt;}
.ws25_c00385{word-spacing:12.800000pt;}
.ws9_c00385{word-spacing:14.080000pt;}
.ws8_c00385{word-spacing:14.720000pt;}
.ws24_c00385{word-spacing:15.040000pt;}
.ws1d_c00385{word-spacing:15.296000pt;}
.ws2a_c00385{word-spacing:15.872000pt;}
.ws16_c00385{word-spacing:15.936000pt;}
.ws15_c00385{word-spacing:16.000000pt;}
.ws28_c00385{word-spacing:16.512000pt;}
.ws27_c00385{word-spacing:16.576000pt;}
.ws7_c00385{word-spacing:21.056000pt;}
.ws6_c00385{word-spacing:21.120000pt;}
.ws11_c00385{word-spacing:31.360000pt;}
._0_c00385{margin-left:-0.966400pt;}
._1_c00385{width:0.960000pt;}
._4_c00385{width:4.096000pt;}
._5_c00385{width:5.190400pt;}
._3_c00385{width:8.531200pt;}
._2_c00385{width:9.548800pt;}
._6_c00385{width:13.376000pt;}
.fs0_c00385{font-size:48.000000pt;}
.fs1_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y26_c00385{bottom:50.880000pt;}
.y25_c00385{bottom:103.840000pt;}
.y24_c00385{bottom:131.440000pt;}
.y23_c00385{bottom:159.040000pt;}
.y22_c00385{bottom:186.640000pt;}
.y21_c00385{bottom:214.240000pt;}
.y20_c00385{bottom:241.840000pt;}
.y1f_c00385{bottom:269.440000pt;}
.y1e_c00385{bottom:297.040000pt;}
.y1d_c00385{bottom:324.640000pt;}
.y1c_c00385{bottom:352.240000pt;}
.y1b_c00385{bottom:379.840000pt;}
.y1a_c00385{bottom:407.440000pt;}
.y19_c00385{bottom:435.040000pt;}
.y18_c00385{bottom:462.640000pt;}
.y17_c00385{bottom:490.240000pt;}
.y16_c00385{bottom:517.840000pt;}
.y15_c00385{bottom:545.440000pt;}
.y14_c00385{bottom:573.040000pt;}
.y13_c00385{bottom:600.640000pt;}
.y12_c00385{bottom:628.240000pt;}
.y11_c00385{bottom:655.840000pt;}
.y10_c00385{bottom:683.440000pt;}
.yf_c00385{bottom:711.040000pt;}
.ye_c00385{bottom:738.640000pt;}
.yd_c00385{bottom:766.160000pt;}
.yc_c00385{bottom:793.760000pt;}
.yb_c00385{bottom:821.360000pt;}
.ya_c00385{bottom:848.960000pt;}
.y9_c00385{bottom:876.560000pt;}
.y8_c00385{bottom:904.160000pt;}
.y7_c00385{bottom:931.760000pt;}
.y6_c00385{bottom:959.360000pt;}
.y5_c00385{bottom:986.960000pt;}
.y4_c00385{bottom:1005.360000pt;}
.y3_c00385{bottom:1023.036000pt;}
.y2_c00385{bottom:1036.800000pt;}
.y1_c00385{bottom:1064.400000pt;}
.h2_c00385{height:47.109375pt;}
.h3_c00385{height:62.812500pt;}
.h4_c00385{height:64.500000pt;}
.h0_c00385{height:1122.560000pt;}
.h1_c00385{height:1122.666667pt;}
.w0_c00385{width:793.840000pt;}
.w1_c00385{width:794.000000pt;}
.x0_c00385{left:0.000000pt;}
.x2_c00385{left:113.440000pt;}
.x1_c00385{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d7e2877f6e1f119055f09321.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.lsd_c00386{letter-spacing:-0.576000px;}
.lse_c00386{letter-spacing:-0.360000px;}
.ls11_c00386{letter-spacing:-0.216000px;}
.lsf_c00386{letter-spacing:-0.144000px;}
.lsc_c00386{letter-spacing:-0.108000px;}
.ls10_c00386{letter-spacing:-0.072000px;}
.lsb_c00386{letter-spacing:0.000000px;}
.ls3_c00386{letter-spacing:0.072000px;}
.ls6_c00386{letter-spacing:0.144000px;}
.ls2_c00386{letter-spacing:0.360000px;}
.lsa_c00386{letter-spacing:3.600000px;}
.ls4_c00386{letter-spacing:4.680000px;}
.ls0_c00386{letter-spacing:5.760000px;}
.ls1_c00386{letter-spacing:5.774400px;}
.ls7_c00386{letter-spacing:6.120000px;}
.ls8_c00386{letter-spacing:11.520000px;}
.ls9_c00386{letter-spacing:17.640000px;}
.ls5_c00386{letter-spacing:19.800000px;}
.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;}
}
.ws4_c00386{word-spacing:-18.144000px;}
.ws3_c00386{word-spacing:-18.072000px;}
.ws0_c00386{word-spacing:-18.000000px;}
.ws2_c00386{word-spacing:-17.928000px;}
.ws1_c00386{word-spacing:-17.856000px;}
.wsd_c00386{word-spacing:-0.360000px;}
.ws18_c00386{word-spacing:-0.072000px;}
.ws5_c00386{word-spacing:0.000000px;}
.ws7_c00386{word-spacing:0.162000px;}
.ws6_c00386{word-spacing:0.270000px;}
.wsf_c00386{word-spacing:0.576000px;}
.ws11_c00386{word-spacing:1.800000px;}
.ws12_c00386{word-spacing:2.160000px;}
.ws2e_c00386{word-spacing:2.808000px;}
.ws22_c00386{word-spacing:3.528000px;}
.ws23_c00386{word-spacing:3.600000px;}
.ws1b_c00386{word-spacing:3.888000px;}
.ws1a_c00386{word-spacing:3.960000px;}
.ws8_c00386{word-spacing:4.248000px;}
.wse_c00386{word-spacing:4.608000px;}
.ws10_c00386{word-spacing:4.680000px;}
.ws19_c00386{word-spacing:4.968000px;}
.wsc_c00386{word-spacing:5.328000px;}
.wsa_c00386{word-spacing:5.400000px;}
.wsb_c00386{word-spacing:5.688000px;}
.ws9_c00386{word-spacing:5.760000px;}
.ws21_c00386{word-spacing:6.480000px;}
.ws27_c00386{word-spacing:7.128000px;}
.ws26_c00386{word-spacing:7.200000px;}
.ws25_c00386{word-spacing:7.560000px;}
.ws2f_c00386{word-spacing:8.640000px;}
.ws17_c00386{word-spacing:10.800000px;}
.ws15_c00386{word-spacing:11.160000px;}
.ws16_c00386{word-spacing:11.376000px;}
.ws24_c00386{word-spacing:11.448000px;}
.ws1d_c00386{word-spacing:11.520000px;}
.ws1e_c00386{word-spacing:11.808000px;}
.ws1c_c00386{word-spacing:11.880000px;}
.ws20_c00386{word-spacing:17.568000px;}
.ws1f_c00386{word-spacing:17.640000px;}
.ws14_c00386{word-spacing:19.728000px;}
.ws13_c00386{word-spacing:19.800000px;}
.ws2d_c00386{word-spacing:21.960000px;}
.ws2c_c00386{word-spacing:22.248000px;}
.ws2b_c00386{word-spacing:24.408000px;}
.ws2a_c00386{word-spacing:24.480000px;}
.ws29_c00386{word-spacing:24.696000px;}
.ws28_c00386{word-spacing:39.600000px;}
._4_c00386{margin-left:-19.800000px;}
._1_c00386{margin-left:-1.058400px;}
._0_c00386{width:1.220400px;}
._3_c00386{width:2.307600px;}
._5_c00386{width:3.880800px;}
._2_c00386{width:6.123600px;}
._8_c00386{width:10.800000px;}
._7_c00386{width:22.132800px;}
._6_c00386{width:24.530400px;}
.fc0_c00386{color:rgb(0,0,0);}
.fs0_c00386{font-size:54.000000px;}
.fs2_c00386{font-size:60.120000px;}
.fs1_c00386{font-size:72.000000px;}
.y0_c00386{bottom:0.000000px;}
.y27_c00386{bottom:57.240000px;}
.y26_c00386{bottom:116.820000px;}
.y25_c00386{bottom:147.870000px;}
.y24_c00386{bottom:178.920000px;}
.y23_c00386{bottom:209.970000px;}
.y22_c00386{bottom:241.020000px;}
.y21_c00386{bottom:272.070000px;}
.y20_c00386{bottom:303.120000px;}
.y1f_c00386{bottom:334.170000px;}
.y1e_c00386{bottom:365.220000px;}
.y1d_c00386{bottom:396.270000px;}
.y1c_c00386{bottom:427.320000px;}
.y1b_c00386{bottom:458.370000px;}
.y1a_c00386{bottom:489.420000px;}
.y19_c00386{bottom:520.470000px;}
.y18_c00386{bottom:551.520000px;}
.y17_c00386{bottom:582.570000px;}
.y16_c00386{bottom:613.620000px;}
.y15_c00386{bottom:644.670000px;}
.y14_c00386{bottom:675.720000px;}
.y13_c00386{bottom:706.770000px;}
.y12_c00386{bottom:737.820000px;}
.y11_c00386{bottom:768.870000px;}
.y10_c00386{bottom:799.920000px;}
.yf_c00386{bottom:830.970000px;}
.ye_c00386{bottom:861.930000px;}
.yd_c00386{bottom:892.980000px;}
.yc_c00386{bottom:924.030000px;}
.yb_c00386{bottom:955.080000px;}
.ya_c00386{bottom:986.130000px;}
.y9_c00386{bottom:1017.180000px;}
.y8_c00386{bottom:1048.230000px;}
.y7_c00386{bottom:1079.280000px;}
.y6_c00386{bottom:1110.330000px;}
.y5_c00386{bottom:1131.030000px;}
.y4_c00386{bottom:1150.920000px;}
.y3_c00386{bottom:1166.404500px;}
.y2_c00386{bottom:1181.970000px;}
.y1_c00386{bottom:1197.450000px;}
.h3_c00386{height:52.971680px;}
.h2_c00386{height:52.998047px;}
.h4_c00386{height:70.664062px;}
.h0_c00386{height:1262.880000px;}
.h1_c00386{height:1263.000000px;}
.w0_c00386{width:893.070000px;}
.w1_c00386{width:893.250000px;}
.x0_c00386{left:0.000000px;}
.x3_c00386{left:127.620000px;}
.x2_c00386{left:425.160000px;}
.x1_c00386{left:446.580000px;}
.x4_c00386{left:738.540000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.lsd_c00386{letter-spacing:-0.512000pt;}
.lse_c00386{letter-spacing:-0.320000pt;}
.ls11_c00386{letter-spacing:-0.192000pt;}
.lsf_c00386{letter-spacing:-0.128000pt;}
.lsc_c00386{letter-spacing:-0.096000pt;}
.ls10_c00386{letter-spacing:-0.064000pt;}
.lsb_c00386{letter-spacing:0.000000pt;}
.ls3_c00386{letter-spacing:0.064000pt;}
.ls6_c00386{letter-spacing:0.128000pt;}
.ls2_c00386{letter-spacing:0.320000pt;}
.lsa_c00386{letter-spacing:3.200000pt;}
.ls4_c00386{letter-spacing:4.160000pt;}
.ls0_c00386{letter-spacing:5.120000pt;}
.ls1_c00386{letter-spacing:5.132800pt;}
.ls7_c00386{letter-spacing:5.440000pt;}
.ls8_c00386{letter-spacing:10.240000pt;}
.ls9_c00386{letter-spacing:15.680000pt;}
.ls5_c00386{letter-spacing:17.600000pt;}
.ws4_c00386{word-spacing:-16.128000pt;}
.ws3_c00386{word-spacing:-16.064000pt;}
.ws0_c00386{word-spacing:-16.000000pt;}
.ws2_c00386{word-spacing:-15.936000pt;}
.ws1_c00386{word-spacing:-15.872000pt;}
.wsd_c00386{word-spacing:-0.320000pt;}
.ws18_c00386{word-spacing:-0.064000pt;}
.ws5_c00386{word-spacing:0.000000pt;}
.ws7_c00386{word-spacing:0.144000pt;}
.ws6_c00386{word-spacing:0.240000pt;}
.wsf_c00386{word-spacing:0.512000pt;}
.ws11_c00386{word-spacing:1.600000pt;}
.ws12_c00386{word-spacing:1.920000pt;}
.ws2e_c00386{word-spacing:2.496000pt;}
.ws22_c00386{word-spacing:3.136000pt;}
.ws23_c00386{word-spacing:3.200000pt;}
.ws1b_c00386{word-spacing:3.456000pt;}
.ws1a_c00386{word-spacing:3.520000pt;}
.ws8_c00386{word-spacing:3.776000pt;}
.wse_c00386{word-spacing:4.096000pt;}
.ws10_c00386{word-spacing:4.160000pt;}
.ws19_c00386{word-spacing:4.416000pt;}
.wsc_c00386{word-spacing:4.736000pt;}
.wsa_c00386{word-spacing:4.800000pt;}
.wsb_c00386{word-spacing:5.056000pt;}
.ws9_c00386{word-spacing:5.120000pt;}
.ws21_c00386{word-spacing:5.760000pt;}
.ws27_c00386{word-spacing:6.336000pt;}
.ws26_c00386{word-spacing:6.400000pt;}
.ws25_c00386{word-spacing:6.720000pt;}
.ws2f_c00386{word-spacing:7.680000pt;}
.ws17_c00386{word-spacing:9.600000pt;}
.ws15_c00386{word-spacing:9.920000pt;}
.ws16_c00386{word-spacing:10.112000pt;}
.ws24_c00386{word-spacing:10.176000pt;}
.ws1d_c00386{word-spacing:10.240000pt;}
.ws1e_c00386{word-spacing:10.496000pt;}
.ws1c_c00386{word-spacing:10.560000pt;}
.ws20_c00386{word-spacing:15.616000pt;}
.ws1f_c00386{word-spacing:15.680000pt;}
.ws14_c00386{word-spacing:17.536000pt;}
.ws13_c00386{word-spacing:17.600000pt;}
.ws2d_c00386{word-spacing:19.520000pt;}
.ws2c_c00386{word-spacing:19.776000pt;}
.ws2b_c00386{word-spacing:21.696000pt;}
.ws2a_c00386{word-spacing:21.760000pt;}
.ws29_c00386{word-spacing:21.952000pt;}
.ws28_c00386{word-spacing:35.200000pt;}
._4_c00386{margin-left:-17.600000pt;}
._1_c00386{margin-left:-0.940800pt;}
._0_c00386{width:1.084800pt;}
._3_c00386{width:2.051200pt;}
._5_c00386{width:3.449600pt;}
._2_c00386{width:5.443200pt;}
._8_c00386{width:9.600000pt;}
._7_c00386{width:19.673600pt;}
._6_c00386{width:21.804800pt;}
.fs0_c00386{font-size:48.000000pt;}
.fs2_c00386{font-size:53.440000pt;}
.fs1_c00386{font-size:64.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y27_c00386{bottom:50.880000pt;}
.y26_c00386{bottom:103.840000pt;}
.y25_c00386{bottom:131.440000pt;}
.y24_c00386{bottom:159.040000pt;}
.y23_c00386{bottom:186.640000pt;}
.y22_c00386{bottom:214.240000pt;}
.y21_c00386{bottom:241.840000pt;}
.y20_c00386{bottom:269.440000pt;}
.y1f_c00386{bottom:297.040000pt;}
.y1e_c00386{bottom:324.640000pt;}
.y1d_c00386{bottom:352.240000pt;}
.y1c_c00386{bottom:379.840000pt;}
.y1b_c00386{bottom:407.440000pt;}
.y1a_c00386{bottom:435.040000pt;}
.y19_c00386{bottom:462.640000pt;}
.y18_c00386{bottom:490.240000pt;}
.y17_c00386{bottom:517.840000pt;}
.y16_c00386{bottom:545.440000pt;}
.y15_c00386{bottom:573.040000pt;}
.y14_c00386{bottom:600.640000pt;}
.y13_c00386{bottom:628.240000pt;}
.y12_c00386{bottom:655.840000pt;}
.y11_c00386{bottom:683.440000pt;}
.y10_c00386{bottom:711.040000pt;}
.yf_c00386{bottom:738.640000pt;}
.ye_c00386{bottom:766.160000pt;}
.yd_c00386{bottom:793.760000pt;}
.yc_c00386{bottom:821.360000pt;}
.yb_c00386{bottom:848.960000pt;}
.ya_c00386{bottom:876.560000pt;}
.y9_c00386{bottom:904.160000pt;}
.y8_c00386{bottom:931.760000pt;}
.y7_c00386{bottom:959.360000pt;}
.y6_c00386{bottom:986.960000pt;}
.y5_c00386{bottom:1005.360000pt;}
.y4_c00386{bottom:1023.040000pt;}
.y3_c00386{bottom:1036.804000pt;}
.y2_c00386{bottom:1050.640000pt;}
.y1_c00386{bottom:1064.400000pt;}
.h3_c00386{height:47.085938pt;}
.h2_c00386{height:47.109375pt;}
.h4_c00386{height:62.812500pt;}
.h0_c00386{height:1122.560000pt;}
.h1_c00386{height:1122.666667pt;}
.w0_c00386{width:793.840000pt;}
.w1_c00386{width:794.000000pt;}
.x0_c00386{left:0.000000pt;}
.x3_c00386{left:113.440000pt;}
.x2_c00386{left:377.920000pt;}
.x1_c00386{left:396.960000pt;}
.x4_c00386{left:656.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_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_9f96730716ca3720f58cf890.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00387{vertical-align:-61.938000px;}
.v0_c00387{vertical-align:0.000000px;}
.ls7_c00387{letter-spacing:-0.288000px;}
.ls6_c00387{letter-spacing:0.000000px;}
.ls3_c00387{letter-spacing:0.072000px;}
.ls5_c00387{letter-spacing:0.144000px;}
.ls4_c00387{letter-spacing:7.560000px;}
.ls1_c00387{letter-spacing:8.640000px;}
.ls2_c00387{letter-spacing:10.814400px;}
.ls0_c00387{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws1_c00387{word-spacing:-18.072000px;}
.ws3_c00387{word-spacing:-18.000000px;}
.ws2_c00387{word-spacing:-17.712000px;}
.ws1a_c00387{word-spacing:-0.432000px;}
.ws5_c00387{word-spacing:-0.162000px;}
.wsc_c00387{word-spacing:-0.144000px;}
.ws9_c00387{word-spacing:-0.072000px;}
.ws4_c00387{word-spacing:0.000000px;}
.ws11_c00387{word-spacing:1.368000px;}
.ws19_c00387{word-spacing:1.800000px;}
.ws28_c00387{word-spacing:2.520000px;}
.wsd_c00387{word-spacing:2.880000px;}
.ws27_c00387{word-spacing:3.168000px;}
.ws26_c00387{word-spacing:3.240000px;}
.ws17_c00387{word-spacing:4.248000px;}
.ws16_c00387{word-spacing:4.320000px;}
.ws20_c00387{word-spacing:4.536000px;}
.ws1f_c00387{word-spacing:5.040000px;}
.ws1d_c00387{word-spacing:5.688000px;}
.wsb_c00387{word-spacing:7.560000px;}
.ws7_c00387{word-spacing:8.280000px;}
.ws15_c00387{word-spacing:8.568000px;}
.ws6_c00387{word-spacing:8.640000px;}
.ws10_c00387{word-spacing:9.360000px;}
.ws12_c00387{word-spacing:10.080000px;}
.ws8_c00387{word-spacing:10.728000px;}
.wsa_c00387{word-spacing:10.800000px;}
.ws25_c00387{word-spacing:11.088000px;}
.ws14_c00387{word-spacing:11.520000px;}
.ws21_c00387{word-spacing:14.328000px;}
.wse_c00387{word-spacing:16.128000px;}
.ws24_c00387{word-spacing:16.560000px;}
.ws1b_c00387{word-spacing:19.008000px;}
.ws23_c00387{word-spacing:23.688000px;}
.ws22_c00387{word-spacing:23.760000px;}
.ws18_c00387{word-spacing:25.560000px;}
.ws1c_c00387{word-spacing:26.280000px;}
.ws1e_c00387{word-spacing:26.640000px;}
.wsf_c00387{word-spacing:28.080000px;}
.ws13_c00387{word-spacing:29.808000px;}
._2_c00387{margin-left:-1.008000px;}
._0_c00387{width:1.008000px;}
._4_c00387{width:2.880000px;}
._1_c00387{width:8.640000px;}
._3_c00387{width:9.993600px;}
.fc0_c00387{color:rgb(0,0,0);}
.fs0_c00387{font-size:54.000000px;}
.fs1_c00387{font-size:72.000000px;}
.y0_c00387{bottom:0.000000px;}
.y25_c00387{bottom:57.240000px;}
.y24_c00387{bottom:147.870000px;}
.y23_c00387{bottom:178.920000px;}
.y22_c00387{bottom:209.970000px;}
.y21_c00387{bottom:241.020000px;}
.y20_c00387{bottom:272.070000px;}
.y1f_c00387{bottom:303.120000px;}
.y1e_c00387{bottom:334.170000px;}
.y1d_c00387{bottom:365.220000px;}
.y1c_c00387{bottom:396.270000px;}
.y1b_c00387{bottom:427.320000px;}
.y1a_c00387{bottom:458.370000px;}
.y19_c00387{bottom:489.420000px;}
.y18_c00387{bottom:520.470000px;}
.y17_c00387{bottom:551.520000px;}
.y16_c00387{bottom:582.570000px;}
.y15_c00387{bottom:613.620000px;}
.y14_c00387{bottom:644.670000px;}
.y13_c00387{bottom:675.720000px;}
.y12_c00387{bottom:706.770000px;}
.y11_c00387{bottom:737.820000px;}
.y10_c00387{bottom:768.870000px;}
.yf_c00387{bottom:799.920000px;}
.ye_c00387{bottom:830.970000px;}
.yd_c00387{bottom:861.930000px;}
.yc_c00387{bottom:892.980000px;}
.yb_c00387{bottom:924.030000px;}
.ya_c00387{bottom:955.080000px;}
.y9_c00387{bottom:986.130000px;}
.y8_c00387{bottom:1017.180000px;}
.y7_c00387{bottom:1048.230000px;}
.y6_c00387{bottom:1079.280000px;}
.y5_c00387{bottom:1110.330000px;}
.y4_c00387{bottom:1131.030000px;}
.y3_c00387{bottom:1150.915500px;}
.y2_c00387{bottom:1166.400000px;}
.y1_c00387{bottom:1197.450000px;}
.h2_c00387{height:52.998047px;}
.h3_c00387{height:70.664062px;}
.h0_c00387{height:1262.880000px;}
.h1_c00387{height:1263.000000px;}
.w0_c00387{width:893.070000px;}
.w1_c00387{width:893.250000px;}
.x0_c00387{left:0.000000px;}
.x2_c00387{left:127.620000px;}
.x1_c00387{left:446.580000px;}
@media print{
.v1_c00387{vertical-align:-55.056000pt;}
.v0_c00387{vertical-align:0.000000pt;}
.ls7_c00387{letter-spacing:-0.256000pt;}
.ls6_c00387{letter-spacing:0.000000pt;}
.ls3_c00387{letter-spacing:0.064000pt;}
.ls5_c00387{letter-spacing:0.128000pt;}
.ls4_c00387{letter-spacing:6.720000pt;}
.ls1_c00387{letter-spacing:7.680000pt;}
.ls2_c00387{letter-spacing:9.612800pt;}
.ls0_c00387{letter-spacing:284.016000pt;}
.ws0_c00387{word-spacing:-16.128000pt;}
.ws1_c00387{word-spacing:-16.064000pt;}
.ws3_c00387{word-spacing:-16.000000pt;}
.ws2_c00387{word-spacing:-15.744000pt;}
.ws1a_c00387{word-spacing:-0.384000pt;}
.ws5_c00387{word-spacing:-0.144000pt;}
.wsc_c00387{word-spacing:-0.128000pt;}
.ws9_c00387{word-spacing:-0.064000pt;}
.ws4_c00387{word-spacing:0.000000pt;}
.ws11_c00387{word-spacing:1.216000pt;}
.ws19_c00387{word-spacing:1.600000pt;}
.ws28_c00387{word-spacing:2.240000pt;}
.wsd_c00387{word-spacing:2.560000pt;}
.ws27_c00387{word-spacing:2.816000pt;}
.ws26_c00387{word-spacing:2.880000pt;}
.ws17_c00387{word-spacing:3.776000pt;}
.ws16_c00387{word-spacing:3.840000pt;}
.ws20_c00387{word-spacing:4.032000pt;}
.ws1f_c00387{word-spacing:4.480000pt;}
.ws1d_c00387{word-spacing:5.056000pt;}
.wsb_c00387{word-spacing:6.720000pt;}
.ws7_c00387{word-spacing:7.360000pt;}
.ws15_c00387{word-spacing:7.616000pt;}
.ws6_c00387{word-spacing:7.680000pt;}
.ws10_c00387{word-spacing:8.320000pt;}
.ws12_c00387{word-spacing:8.960000pt;}
.ws8_c00387{word-spacing:9.536000pt;}
.wsa_c00387{word-spacing:9.600000pt;}
.ws25_c00387{word-spacing:9.856000pt;}
.ws14_c00387{word-spacing:10.240000pt;}
.ws21_c00387{word-spacing:12.736000pt;}
.wse_c00387{word-spacing:14.336000pt;}
.ws24_c00387{word-spacing:14.720000pt;}
.ws1b_c00387{word-spacing:16.896000pt;}
.ws23_c00387{word-spacing:21.056000pt;}
.ws22_c00387{word-spacing:21.120000pt;}
.ws18_c00387{word-spacing:22.720000pt;}
.ws1c_c00387{word-spacing:23.360000pt;}
.ws1e_c00387{word-spacing:23.680000pt;}
.wsf_c00387{word-spacing:24.960000pt;}
.ws13_c00387{word-spacing:26.496000pt;}
._2_c00387{margin-left:-0.896000pt;}
._0_c00387{width:0.896000pt;}
._4_c00387{width:2.560000pt;}
._1_c00387{width:7.680000pt;}
._3_c00387{width:8.883200pt;}
.fs0_c00387{font-size:48.000000pt;}
.fs1_c00387{font-size:64.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y25_c00387{bottom:50.880000pt;}
.y24_c00387{bottom:131.440000pt;}
.y23_c00387{bottom:159.040000pt;}
.y22_c00387{bottom:186.640000pt;}
.y21_c00387{bottom:214.240000pt;}
.y20_c00387{bottom:241.840000pt;}
.y1f_c00387{bottom:269.440000pt;}
.y1e_c00387{bottom:297.040000pt;}
.y1d_c00387{bottom:324.640000pt;}
.y1c_c00387{bottom:352.240000pt;}
.y1b_c00387{bottom:379.840000pt;}
.y1a_c00387{bottom:407.440000pt;}
.y19_c00387{bottom:435.040000pt;}
.y18_c00387{bottom:462.640000pt;}
.y17_c00387{bottom:490.240000pt;}
.y16_c00387{bottom:517.840000pt;}
.y15_c00387{bottom:545.440000pt;}
.y14_c00387{bottom:573.040000pt;}
.y13_c00387{bottom:600.640000pt;}
.y12_c00387{bottom:628.240000pt;}
.y11_c00387{bottom:655.840000pt;}
.y10_c00387{bottom:683.440000pt;}
.yf_c00387{bottom:711.040000pt;}
.ye_c00387{bottom:738.640000pt;}
.yd_c00387{bottom:766.160000pt;}
.yc_c00387{bottom:793.760000pt;}
.yb_c00387{bottom:821.360000pt;}
.ya_c00387{bottom:848.960000pt;}
.y9_c00387{bottom:876.560000pt;}
.y8_c00387{bottom:904.160000pt;}
.y7_c00387{bottom:931.760000pt;}
.y6_c00387{bottom:959.360000pt;}
.y5_c00387{bottom:986.960000pt;}
.y4_c00387{bottom:1005.360000pt;}
.y3_c00387{bottom:1023.036000pt;}
.y2_c00387{bottom:1036.800000pt;}
.y1_c00387{bottom:1064.400000pt;}
.h2_c00387{height:47.109375pt;}
.h3_c00387{height:62.812500pt;}
.h0_c00387{height:1122.560000pt;}
.h1_c00387{height:1122.666667pt;}
.w0_c00387{width:793.840000pt;}
.w1_c00387{width:794.000000pt;}
.x0_c00387{left:0.000000pt;}
.x2_c00387{left:113.440000pt;}
.x1_c00387{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4bde51b55e7d808f36e630c.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.284180;font-style: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;}
.lsa_c00388{letter-spacing:-0.576000px;}
.lsb_c00388{letter-spacing:-0.360000px;}
.ls9_c00388{letter-spacing:-0.108000px;}
.ls8_c00388{letter-spacing:0.000000px;}
.ls1_c00388{letter-spacing:0.072000px;}
.ls4_c00388{letter-spacing:0.144000px;}
.ls5_c00388{letter-spacing:1.080000px;}
.ls0_c00388{letter-spacing:1.800000px;}
.ls3_c00388{letter-spacing:5.040000px;}
.ls6_c00388{letter-spacing:6.480000px;}
.ls2_c00388{letter-spacing:7.560000px;}
.ls7_c00388{letter-spacing:10.800000px;}
.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;}
}
.ws3_c00388{word-spacing:-18.144000px;}
.ws0_c00388{word-spacing:-18.072000px;}
.ws1_c00388{word-spacing:-18.000000px;}
.ws2_c00388{word-spacing:-17.424000px;}
.ws16_c00388{word-spacing:-0.432000px;}
.ws22_c00388{word-spacing:-0.144000px;}
.ws8_c00388{word-spacing:-0.072000px;}
.ws4_c00388{word-spacing:0.000000px;}
.ws6_c00388{word-spacing:0.162000px;}
.ws5_c00388{word-spacing:0.270000px;}
.ws21_c00388{word-spacing:0.360000px;}
.ws20_c00388{word-spacing:1.080000px;}
.ws17_c00388{word-spacing:1.728000px;}
.ws1f_c00388{word-spacing:1.800000px;}
.ws13_c00388{word-spacing:2.088000px;}
.wsc_c00388{word-spacing:2.520000px;}
.wsd_c00388{word-spacing:2.880000px;}
.ws12_c00388{word-spacing:3.240000px;}
.wsf_c00388{word-spacing:3.600000px;}
.ws24_c00388{word-spacing:4.608000px;}
.ws1b_c00388{word-spacing:5.400000px;}
.ws1a_c00388{word-spacing:5.760000px;}
.ws1d_c00388{word-spacing:6.048000px;}
.ws1c_c00388{word-spacing:6.120000px;}
.ws23_c00388{word-spacing:6.480000px;}
.ws19_c00388{word-spacing:7.488000px;}
.ws18_c00388{word-spacing:7.560000px;}
.wsa_c00388{word-spacing:8.640000px;}
.ws25_c00388{word-spacing:8.928000px;}
.wse_c00388{word-spacing:9.000000px;}
.ws14_c00388{word-spacing:10.008000px;}
.ws15_c00388{word-spacing:10.080000px;}
.ws26_c00388{word-spacing:10.728000px;}
.ws27_c00388{word-spacing:10.800000px;}
.ws9_c00388{word-spacing:11.520000px;}
.ws7_c00388{word-spacing:13.608000px;}
.wsb_c00388{word-spacing:15.120000px;}
.ws1e_c00388{word-spacing:16.488000px;}
.ws10_c00388{word-spacing:20.880000px;}
.ws11_c00388{word-spacing:21.240000px;}
._1_c00388{margin-left:-1.058400px;}
._0_c00388{width:1.220400px;}
._4_c00388{width:5.976000px;}
._3_c00388{width:7.128000px;}
._2_c00388{width:10.346400px;}
.fc0_c00388{color:rgb(0,0,0);}
.fs0_c00388{font-size:54.000000px;}
.fs1_c00388{font-size:72.000000px;}
.y0_c00388{bottom:0.000000px;}
.y26_c00388{bottom:57.240000px;}
.y25_c00388{bottom:147.870000px;}
.y24_c00388{bottom:178.920000px;}
.y23_c00388{bottom:209.970000px;}
.y22_c00388{bottom:241.020000px;}
.y21_c00388{bottom:272.070000px;}
.y20_c00388{bottom:303.120000px;}
.y1f_c00388{bottom:334.170000px;}
.y1e_c00388{bottom:365.220000px;}
.y1d_c00388{bottom:396.270000px;}
.y1c_c00388{bottom:427.320000px;}
.y1b_c00388{bottom:458.370000px;}
.y1a_c00388{bottom:489.420000px;}
.y19_c00388{bottom:520.470000px;}
.y18_c00388{bottom:551.520000px;}
.y17_c00388{bottom:582.570000px;}
.y16_c00388{bottom:613.620000px;}
.y15_c00388{bottom:644.670000px;}
.y14_c00388{bottom:675.720000px;}
.y13_c00388{bottom:706.770000px;}
.y12_c00388{bottom:737.820000px;}
.y11_c00388{bottom:768.870000px;}
.y10_c00388{bottom:799.920000px;}
.yf_c00388{bottom:830.970000px;}
.ye_c00388{bottom:861.930000px;}
.yd_c00388{bottom:892.980000px;}
.yc_c00388{bottom:924.030000px;}
.yb_c00388{bottom:955.080000px;}
.ya_c00388{bottom:986.130000px;}
.y9_c00388{bottom:1017.180000px;}
.y8_c00388{bottom:1048.230000px;}
.y7_c00388{bottom:1079.280000px;}
.y6_c00388{bottom:1110.330000px;}
.y5_c00388{bottom:1131.030000px;}
.y4_c00388{bottom:1150.920000px;}
.y3_c00388{bottom:1166.404500px;}
.y2_c00388{bottom:1181.970000px;}
.y1_c00388{bottom:1197.450000px;}
.h3_c00388{height:52.971680px;}
.h2_c00388{height:52.998047px;}
.h4_c00388{height:70.664062px;}
.h0_c00388{height:1262.880000px;}
.h1_c00388{height:1263.000000px;}
.w0_c00388{width:893.070000px;}
.w1_c00388{width:893.250000px;}
.x0_c00388{left:0.000000px;}
.x3_c00388{left:127.620000px;}
.x2_c00388{left:425.160000px;}
.x1_c00388{left:446.580000px;}
.x4_c00388{left:738.540000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.lsa_c00388{letter-spacing:-0.512000pt;}
.lsb_c00388{letter-spacing:-0.320000pt;}
.ls9_c00388{letter-spacing:-0.096000pt;}
.ls8_c00388{letter-spacing:0.000000pt;}
.ls1_c00388{letter-spacing:0.064000pt;}
.ls4_c00388{letter-spacing:0.128000pt;}
.ls5_c00388{letter-spacing:0.960000pt;}
.ls0_c00388{letter-spacing:1.600000pt;}
.ls3_c00388{letter-spacing:4.480000pt;}
.ls6_c00388{letter-spacing:5.760000pt;}
.ls2_c00388{letter-spacing:6.720000pt;}
.ls7_c00388{letter-spacing:9.600000pt;}
.ws3_c00388{word-spacing:-16.128000pt;}
.ws0_c00388{word-spacing:-16.064000pt;}
.ws1_c00388{word-spacing:-16.000000pt;}
.ws2_c00388{word-spacing:-15.488000pt;}
.ws16_c00388{word-spacing:-0.384000pt;}
.ws22_c00388{word-spacing:-0.128000pt;}
.ws8_c00388{word-spacing:-0.064000pt;}
.ws4_c00388{word-spacing:0.000000pt;}
.ws6_c00388{word-spacing:0.144000pt;}
.ws5_c00388{word-spacing:0.240000pt;}
.ws21_c00388{word-spacing:0.320000pt;}
.ws20_c00388{word-spacing:0.960000pt;}
.ws17_c00388{word-spacing:1.536000pt;}
.ws1f_c00388{word-spacing:1.600000pt;}
.ws13_c00388{word-spacing:1.856000pt;}
.wsc_c00388{word-spacing:2.240000pt;}
.wsd_c00388{word-spacing:2.560000pt;}
.ws12_c00388{word-spacing:2.880000pt;}
.wsf_c00388{word-spacing:3.200000pt;}
.ws24_c00388{word-spacing:4.096000pt;}
.ws1b_c00388{word-spacing:4.800000pt;}
.ws1a_c00388{word-spacing:5.120000pt;}
.ws1d_c00388{word-spacing:5.376000pt;}
.ws1c_c00388{word-spacing:5.440000pt;}
.ws23_c00388{word-spacing:5.760000pt;}
.ws19_c00388{word-spacing:6.656000pt;}
.ws18_c00388{word-spacing:6.720000pt;}
.wsa_c00388{word-spacing:7.680000pt;}
.ws25_c00388{word-spacing:7.936000pt;}
.wse_c00388{word-spacing:8.000000pt;}
.ws14_c00388{word-spacing:8.896000pt;}
.ws15_c00388{word-spacing:8.960000pt;}
.ws26_c00388{word-spacing:9.536000pt;}
.ws27_c00388{word-spacing:9.600000pt;}
.ws9_c00388{word-spacing:10.240000pt;}
.ws7_c00388{word-spacing:12.096000pt;}
.wsb_c00388{word-spacing:13.440000pt;}
.ws1e_c00388{word-spacing:14.656000pt;}
.ws10_c00388{word-spacing:18.560000pt;}
.ws11_c00388{word-spacing:18.880000pt;}
._1_c00388{margin-left:-0.940800pt;}
._0_c00388{width:1.084800pt;}
._4_c00388{width:5.312000pt;}
._3_c00388{width:6.336000pt;}
._2_c00388{width:9.196800pt;}
.fs0_c00388{font-size:48.000000pt;}
.fs1_c00388{font-size:64.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y26_c00388{bottom:50.880000pt;}
.y25_c00388{bottom:131.440000pt;}
.y24_c00388{bottom:159.040000pt;}
.y23_c00388{bottom:186.640000pt;}
.y22_c00388{bottom:214.240000pt;}
.y21_c00388{bottom:241.840000pt;}
.y20_c00388{bottom:269.440000pt;}
.y1f_c00388{bottom:297.040000pt;}
.y1e_c00388{bottom:324.640000pt;}
.y1d_c00388{bottom:352.240000pt;}
.y1c_c00388{bottom:379.840000pt;}
.y1b_c00388{bottom:407.440000pt;}
.y1a_c00388{bottom:435.040000pt;}
.y19_c00388{bottom:462.640000pt;}
.y18_c00388{bottom:490.240000pt;}
.y17_c00388{bottom:517.840000pt;}
.y16_c00388{bottom:545.440000pt;}
.y15_c00388{bottom:573.040000pt;}
.y14_c00388{bottom:600.640000pt;}
.y13_c00388{bottom:628.240000pt;}
.y12_c00388{bottom:655.840000pt;}
.y11_c00388{bottom:683.440000pt;}
.y10_c00388{bottom:711.040000pt;}
.yf_c00388{bottom:738.640000pt;}
.ye_c00388{bottom:766.160000pt;}
.yd_c00388{bottom:793.760000pt;}
.yc_c00388{bottom:821.360000pt;}
.yb_c00388{bottom:848.960000pt;}
.ya_c00388{bottom:876.560000pt;}
.y9_c00388{bottom:904.160000pt;}
.y8_c00388{bottom:931.760000pt;}
.y7_c00388{bottom:959.360000pt;}
.y6_c00388{bottom:986.960000pt;}
.y5_c00388{bottom:1005.360000pt;}
.y4_c00388{bottom:1023.040000pt;}
.y3_c00388{bottom:1036.804000pt;}
.y2_c00388{bottom:1050.640000pt;}
.y1_c00388{bottom:1064.400000pt;}
.h3_c00388{height:47.085938pt;}
.h2_c00388{height:47.109375pt;}
.h4_c00388{height:62.812500pt;}
.h0_c00388{height:1122.560000pt;}
.h1_c00388{height:1122.666667pt;}
.w0_c00388{width:793.840000pt;}
.w1_c00388{width:794.000000pt;}
.x0_c00388{left:0.000000pt;}
.x3_c00388{left:113.440000pt;}
.x2_c00388{left:377.920000pt;}
.x1_c00388{left:396.960000pt;}
.x4_c00388{left:656.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_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_68e82a4957748d0b85a2ec24.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00389{vertical-align:-61.938000px;}
.v0_c00389{vertical-align:0.000000px;}
.ls6_c00389{letter-spacing:-0.216000px;}
.ls5_c00389{letter-spacing:0.000000px;}
.ls3_c00389{letter-spacing:0.072000px;}
.ls4_c00389{letter-spacing:0.144000px;}
.ls1_c00389{letter-spacing:2.520000px;}
.ls2_c00389{letter-spacing:27.734400px;}
.ls0_c00389{letter-spacing:319.518000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00389{word-spacing:-18.072000px;}
.ws2_c00389{word-spacing:-18.000000px;}
.ws0_c00389{word-spacing:-17.784000px;}
.ws4_c00389{word-spacing:-0.162000px;}
.wsb_c00389{word-spacing:-0.144000px;}
.ws6_c00389{word-spacing:-0.072000px;}
.ws3_c00389{word-spacing:0.000000px;}
.wsf_c00389{word-spacing:0.216000px;}
.ws21_c00389{word-spacing:0.288000px;}
.ws23_c00389{word-spacing:0.648000px;}
.ws8_c00389{word-spacing:1.008000px;}
.ws7_c00389{word-spacing:1.080000px;}
.ws1b_c00389{word-spacing:2.088000px;}
.ws5_c00389{word-spacing:2.520000px;}
.ws17_c00389{word-spacing:3.960000px;}
.ws28_c00389{word-spacing:5.040000px;}
.ws1e_c00389{word-spacing:6.120000px;}
.wsa_c00389{word-spacing:6.840000px;}
.wsc_c00389{word-spacing:8.568000px;}
.ws24_c00389{word-spacing:8.640000px;}
.ws22_c00389{word-spacing:12.600000px;}
.ws10_c00389{word-spacing:12.960000px;}
.ws1a_c00389{word-spacing:13.680000px;}
.ws18_c00389{word-spacing:16.128000px;}
.ws19_c00389{word-spacing:16.560000px;}
.ws27_c00389{word-spacing:16.848000px;}
.ws26_c00389{word-spacing:17.208000px;}
.ws14_c00389{word-spacing:17.568000px;}
.ws13_c00389{word-spacing:17.640000px;}
.ws9_c00389{word-spacing:20.448000px;}
.ws25_c00389{word-spacing:22.248000px;}
.ws15_c00389{word-spacing:22.608000px;}
.ws16_c00389{word-spacing:22.680000px;}
.ws1d_c00389{word-spacing:23.760000px;}
.ws20_c00389{word-spacing:25.848000px;}
.ws1f_c00389{word-spacing:25.920000px;}
.ws12_c00389{word-spacing:27.000000px;}
.ws11_c00389{word-spacing:27.288000px;}
.wsd_c00389{word-spacing:27.648000px;}
.wse_c00389{word-spacing:27.720000px;}
.ws1c_c00389{word-spacing:28.440000px;}
._1_c00389{margin-left:-1.015200px;}
._0_c00389{width:1.008000px;}
._4_c00389{width:4.464000px;}
._2_c00389{width:13.104000px;}
._3_c00389{width:26.424000px;}
.fc0_c00389{color:rgb(0,0,0);}
.fs0_c00389{font-size:54.000000px;}
.fs1_c00389{font-size:72.000000px;}
.y0_c00389{bottom:0.000000px;}
.y26_c00389{bottom:57.240000px;}
.y25_c00389{bottom:116.820000px;}
.y24_c00389{bottom:147.870000px;}
.y23_c00389{bottom:178.920000px;}
.y22_c00389{bottom:209.970000px;}
.y21_c00389{bottom:241.020000px;}
.y20_c00389{bottom:272.070000px;}
.y1f_c00389{bottom:303.120000px;}
.y1e_c00389{bottom:334.170000px;}
.y1d_c00389{bottom:365.220000px;}
.y1c_c00389{bottom:396.270000px;}
.y1b_c00389{bottom:427.320000px;}
.y1a_c00389{bottom:458.370000px;}
.y19_c00389{bottom:489.420000px;}
.y18_c00389{bottom:520.470000px;}
.y17_c00389{bottom:551.520000px;}
.y16_c00389{bottom:582.570000px;}
.y15_c00389{bottom:613.620000px;}
.y14_c00389{bottom:644.670000px;}
.y13_c00389{bottom:675.720000px;}
.y12_c00389{bottom:706.770000px;}
.y11_c00389{bottom:737.820000px;}
.y10_c00389{bottom:768.870000px;}
.yf_c00389{bottom:799.920000px;}
.ye_c00389{bottom:830.970000px;}
.yd_c00389{bottom:861.930000px;}
.yc_c00389{bottom:892.980000px;}
.yb_c00389{bottom:924.030000px;}
.ya_c00389{bottom:955.080000px;}
.y9_c00389{bottom:986.130000px;}
.y8_c00389{bottom:1017.180000px;}
.y7_c00389{bottom:1048.230000px;}
.y6_c00389{bottom:1079.280000px;}
.y5_c00389{bottom:1110.330000px;}
.y4_c00389{bottom:1131.030000px;}
.y3_c00389{bottom:1150.915500px;}
.y2_c00389{bottom:1166.400000px;}
.y1_c00389{bottom:1197.450000px;}
.h2_c00389{height:52.998047px;}
.h3_c00389{height:70.664062px;}
.h0_c00389{height:1262.880000px;}
.h1_c00389{height:1263.000000px;}
.w0_c00389{width:893.070000px;}
.w1_c00389{width:893.250000px;}
.x0_c00389{left:0.000000px;}
.x2_c00389{left:127.620000px;}
.x1_c00389{left:446.580000px;}
@media print{
.v1_c00389{vertical-align:-55.056000pt;}
.v0_c00389{vertical-align:0.000000pt;}
.ls6_c00389{letter-spacing:-0.192000pt;}
.ls5_c00389{letter-spacing:0.000000pt;}
.ls3_c00389{letter-spacing:0.064000pt;}
.ls4_c00389{letter-spacing:0.128000pt;}
.ls1_c00389{letter-spacing:2.240000pt;}
.ls2_c00389{letter-spacing:24.652800pt;}
.ls0_c00389{letter-spacing:284.016000pt;}
.ws1_c00389{word-spacing:-16.064000pt;}
.ws2_c00389{word-spacing:-16.000000pt;}
.ws0_c00389{word-spacing:-15.808000pt;}
.ws4_c00389{word-spacing:-0.144000pt;}
.wsb_c00389{word-spacing:-0.128000pt;}
.ws6_c00389{word-spacing:-0.064000pt;}
.ws3_c00389{word-spacing:0.000000pt;}
.wsf_c00389{word-spacing:0.192000pt;}
.ws21_c00389{word-spacing:0.256000pt;}
.ws23_c00389{word-spacing:0.576000pt;}
.ws8_c00389{word-spacing:0.896000pt;}
.ws7_c00389{word-spacing:0.960000pt;}
.ws1b_c00389{word-spacing:1.856000pt;}
.ws5_c00389{word-spacing:2.240000pt;}
.ws17_c00389{word-spacing:3.520000pt;}
.ws28_c00389{word-spacing:4.480000pt;}
.ws1e_c00389{word-spacing:5.440000pt;}
.wsa_c00389{word-spacing:6.080000pt;}
.wsc_c00389{word-spacing:7.616000pt;}
.ws24_c00389{word-spacing:7.680000pt;}
.ws22_c00389{word-spacing:11.200000pt;}
.ws10_c00389{word-spacing:11.520000pt;}
.ws1a_c00389{word-spacing:12.160000pt;}
.ws18_c00389{word-spacing:14.336000pt;}
.ws19_c00389{word-spacing:14.720000pt;}
.ws27_c00389{word-spacing:14.976000pt;}
.ws26_c00389{word-spacing:15.296000pt;}
.ws14_c00389{word-spacing:15.616000pt;}
.ws13_c00389{word-spacing:15.680000pt;}
.ws9_c00389{word-spacing:18.176000pt;}
.ws25_c00389{word-spacing:19.776000pt;}
.ws15_c00389{word-spacing:20.096000pt;}
.ws16_c00389{word-spacing:20.160000pt;}
.ws1d_c00389{word-spacing:21.120000pt;}
.ws20_c00389{word-spacing:22.976000pt;}
.ws1f_c00389{word-spacing:23.040000pt;}
.ws12_c00389{word-spacing:24.000000pt;}
.ws11_c00389{word-spacing:24.256000pt;}
.wsd_c00389{word-spacing:24.576000pt;}
.wse_c00389{word-spacing:24.640000pt;}
.ws1c_c00389{word-spacing:25.280000pt;}
._1_c00389{margin-left:-0.902400pt;}
._0_c00389{width:0.896000pt;}
._4_c00389{width:3.968000pt;}
._2_c00389{width:11.648000pt;}
._3_c00389{width:23.488000pt;}
.fs0_c00389{font-size:48.000000pt;}
.fs1_c00389{font-size:64.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y26_c00389{bottom:50.880000pt;}
.y25_c00389{bottom:103.840000pt;}
.y24_c00389{bottom:131.440000pt;}
.y23_c00389{bottom:159.040000pt;}
.y22_c00389{bottom:186.640000pt;}
.y21_c00389{bottom:214.240000pt;}
.y20_c00389{bottom:241.840000pt;}
.y1f_c00389{bottom:269.440000pt;}
.y1e_c00389{bottom:297.040000pt;}
.y1d_c00389{bottom:324.640000pt;}
.y1c_c00389{bottom:352.240000pt;}
.y1b_c00389{bottom:379.840000pt;}
.y1a_c00389{bottom:407.440000pt;}
.y19_c00389{bottom:435.040000pt;}
.y18_c00389{bottom:462.640000pt;}
.y17_c00389{bottom:490.240000pt;}
.y16_c00389{bottom:517.840000pt;}
.y15_c00389{bottom:545.440000pt;}
.y14_c00389{bottom:573.040000pt;}
.y13_c00389{bottom:600.640000pt;}
.y12_c00389{bottom:628.240000pt;}
.y11_c00389{bottom:655.840000pt;}
.y10_c00389{bottom:683.440000pt;}
.yf_c00389{bottom:711.040000pt;}
.ye_c00389{bottom:738.640000pt;}
.yd_c00389{bottom:766.160000pt;}
.yc_c00389{bottom:793.760000pt;}
.yb_c00389{bottom:821.360000pt;}
.ya_c00389{bottom:848.960000pt;}
.y9_c00389{bottom:876.560000pt;}
.y8_c00389{bottom:904.160000pt;}
.y7_c00389{bottom:931.760000pt;}
.y6_c00389{bottom:959.360000pt;}
.y5_c00389{bottom:986.960000pt;}
.y4_c00389{bottom:1005.360000pt;}
.y3_c00389{bottom:1023.036000pt;}
.y2_c00389{bottom:1036.800000pt;}
.y1_c00389{bottom:1064.400000pt;}
.h2_c00389{height:47.109375pt;}
.h3_c00389{height:62.812500pt;}
.h0_c00389{height:1122.560000pt;}
.h1_c00389{height:1122.666667pt;}
.w0_c00389{width:793.840000pt;}
.w1_c00389{width:794.000000pt;}
.x0_c00389{left:0.000000pt;}
.x2_c00389{left:113.440000pt;}
.x1_c00389{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98b2b88607784bde661bec18.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.284180;font-style: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;}
.lse_c00390{letter-spacing:-0.432000px;}
.lsc_c00390{letter-spacing:-0.288000px;}
.lsd_c00390{letter-spacing:-0.216000px;}
.lsa_c00390{letter-spacing:-0.108000px;}
.lsb_c00390{letter-spacing:-0.072000px;}
.ls9_c00390{letter-spacing:0.000000px;}
.ls1_c00390{letter-spacing:0.072000px;}
.ls5_c00390{letter-spacing:0.144000px;}
.ls6_c00390{letter-spacing:2.880000px;}
.ls7_c00390{letter-spacing:5.040000px;}
.ls8_c00390{letter-spacing:6.120000px;}
.ls2_c00390{letter-spacing:7.221600px;}
.ls4_c00390{letter-spacing:8.640000px;}
.ls0_c00390{letter-spacing:13.680000px;}
.ls3_c00390{letter-spacing:21.967200px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00390{word-spacing:-18.144000px;}
.ws0_c00390{word-spacing:-18.072000px;}
.ws2_c00390{word-spacing:-17.568000px;}
.ws1f_c00390{word-spacing:-0.432000px;}
.ws28_c00390{word-spacing:-0.144000px;}
.wsb_c00390{word-spacing:-0.072000px;}
.ws3_c00390{word-spacing:0.000000px;}
.wsd_c00390{word-spacing:0.072000px;}
.ws5_c00390{word-spacing:0.162000px;}
.ws22_c00390{word-spacing:0.216000px;}
.ws4_c00390{word-spacing:0.270000px;}
.wsf_c00390{word-spacing:0.288000px;}
.ws18_c00390{word-spacing:0.360000px;}
.ws6_c00390{word-spacing:0.720000px;}
.ws1c_c00390{word-spacing:2.808000px;}
.ws1b_c00390{word-spacing:2.880000px;}
.ws29_c00390{word-spacing:3.240000px;}
.ws1d_c00390{word-spacing:5.040000px;}
.ws19_c00390{word-spacing:5.328000px;}
.ws1a_c00390{word-spacing:5.400000px;}
.ws1e_c00390{word-spacing:6.408000px;}
.wsa_c00390{word-spacing:6.480000px;}
.ws20_c00390{word-spacing:6.768000px;}
.ws21_c00390{word-spacing:6.840000px;}
.wse_c00390{word-spacing:7.128000px;}
.ws2a_c00390{word-spacing:7.200000px;}
.ws27_c00390{word-spacing:7.488000px;}
.ws26_c00390{word-spacing:7.848000px;}
.ws25_c00390{word-spacing:7.920000px;}
.ws2e_c00390{word-spacing:8.208000px;}
.ws2d_c00390{word-spacing:8.280000px;}
.ws15_c00390{word-spacing:8.496000px;}
.ws16_c00390{word-spacing:8.640000px;}
.ws9_c00390{word-spacing:8.928000px;}
.ws10_c00390{word-spacing:10.080000px;}
.ws14_c00390{word-spacing:11.160000px;}
.ws8_c00390{word-spacing:12.600000px;}
.ws24_c00390{word-spacing:13.248000px;}
.ws23_c00390{word-spacing:13.320000px;}
.ws7_c00390{word-spacing:13.608000px;}
.ws2b_c00390{word-spacing:13.968000px;}
.ws2c_c00390{word-spacing:14.040000px;}
.ws17_c00390{word-spacing:14.400000px;}
.wsc_c00390{word-spacing:16.848000px;}
.ws13_c00390{word-spacing:17.280000px;}
.ws11_c00390{word-spacing:21.888000px;}
.ws12_c00390{word-spacing:21.960000px;}
._1_c00390{margin-left:-1.058400px;}
._0_c00390{width:1.220400px;}
._4_c00390{width:3.168000px;}
._6_c00390{width:4.226400px;}
._3_c00390{width:5.522400px;}
._2_c00390{width:7.272000px;}
._5_c00390{width:12.988800px;}
.fc0_c00390{color:rgb(0,0,0);}
.fs0_c00390{font-size:54.000000px;}
.fs1_c00390{font-size:72.000000px;}
.y0_c00390{bottom:0.000000px;}
.y27_c00390{bottom:57.240000px;}
.y26_c00390{bottom:116.820000px;}
.y25_c00390{bottom:147.870000px;}
.y24_c00390{bottom:178.920000px;}
.y23_c00390{bottom:209.970000px;}
.y22_c00390{bottom:241.020000px;}
.y21_c00390{bottom:272.070000px;}
.y20_c00390{bottom:303.120000px;}
.y1f_c00390{bottom:334.170000px;}
.y1e_c00390{bottom:365.220000px;}
.y1d_c00390{bottom:396.270000px;}
.y1c_c00390{bottom:427.320000px;}
.y1b_c00390{bottom:458.370000px;}
.y1a_c00390{bottom:489.420000px;}
.y19_c00390{bottom:520.470000px;}
.y18_c00390{bottom:551.520000px;}
.y17_c00390{bottom:582.570000px;}
.y16_c00390{bottom:613.620000px;}
.y15_c00390{bottom:644.670000px;}
.y14_c00390{bottom:675.720000px;}
.y13_c00390{bottom:706.770000px;}
.y12_c00390{bottom:737.820000px;}
.y11_c00390{bottom:768.870000px;}
.y10_c00390{bottom:799.920000px;}
.yf_c00390{bottom:830.970000px;}
.ye_c00390{bottom:861.930000px;}
.yd_c00390{bottom:892.980000px;}
.yc_c00390{bottom:924.030000px;}
.yb_c00390{bottom:955.080000px;}
.ya_c00390{bottom:986.130000px;}
.y9_c00390{bottom:1017.180000px;}
.y8_c00390{bottom:1048.230000px;}
.y7_c00390{bottom:1079.280000px;}
.y6_c00390{bottom:1110.330000px;}
.y5_c00390{bottom:1131.030000px;}
.y4_c00390{bottom:1150.920000px;}
.y3_c00390{bottom:1166.404500px;}
.y2_c00390{bottom:1181.970000px;}
.y1_c00390{bottom:1197.450000px;}
.h3_c00390{height:52.971680px;}
.h2_c00390{height:52.998047px;}
.h4_c00390{height:70.664062px;}
.h0_c00390{height:1262.880000px;}
.h1_c00390{height:1263.000000px;}
.w0_c00390{width:893.070000px;}
.w1_c00390{width:893.250000px;}
.x0_c00390{left:0.000000px;}
.x3_c00390{left:127.620000px;}
.x2_c00390{left:425.160000px;}
.x1_c00390{left:446.580000px;}
.x4_c00390{left:738.540000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.lse_c00390{letter-spacing:-0.384000pt;}
.lsc_c00390{letter-spacing:-0.256000pt;}
.lsd_c00390{letter-spacing:-0.192000pt;}
.lsa_c00390{letter-spacing:-0.096000pt;}
.lsb_c00390{letter-spacing:-0.064000pt;}
.ls9_c00390{letter-spacing:0.000000pt;}
.ls1_c00390{letter-spacing:0.064000pt;}
.ls5_c00390{letter-spacing:0.128000pt;}
.ls6_c00390{letter-spacing:2.560000pt;}
.ls7_c00390{letter-spacing:4.480000pt;}
.ls8_c00390{letter-spacing:5.440000pt;}
.ls2_c00390{letter-spacing:6.419200pt;}
.ls4_c00390{letter-spacing:7.680000pt;}
.ls0_c00390{letter-spacing:12.160000pt;}
.ls3_c00390{letter-spacing:19.526400pt;}
.ws1_c00390{word-spacing:-16.128000pt;}
.ws0_c00390{word-spacing:-16.064000pt;}
.ws2_c00390{word-spacing:-15.616000pt;}
.ws1f_c00390{word-spacing:-0.384000pt;}
.ws28_c00390{word-spacing:-0.128000pt;}
.wsb_c00390{word-spacing:-0.064000pt;}
.ws3_c00390{word-spacing:0.000000pt;}
.wsd_c00390{word-spacing:0.064000pt;}
.ws5_c00390{word-spacing:0.144000pt;}
.ws22_c00390{word-spacing:0.192000pt;}
.ws4_c00390{word-spacing:0.240000pt;}
.wsf_c00390{word-spacing:0.256000pt;}
.ws18_c00390{word-spacing:0.320000pt;}
.ws6_c00390{word-spacing:0.640000pt;}
.ws1c_c00390{word-spacing:2.496000pt;}
.ws1b_c00390{word-spacing:2.560000pt;}
.ws29_c00390{word-spacing:2.880000pt;}
.ws1d_c00390{word-spacing:4.480000pt;}
.ws19_c00390{word-spacing:4.736000pt;}
.ws1a_c00390{word-spacing:4.800000pt;}
.ws1e_c00390{word-spacing:5.696000pt;}
.wsa_c00390{word-spacing:5.760000pt;}
.ws20_c00390{word-spacing:6.016000pt;}
.ws21_c00390{word-spacing:6.080000pt;}
.wse_c00390{word-spacing:6.336000pt;}
.ws2a_c00390{word-spacing:6.400000pt;}
.ws27_c00390{word-spacing:6.656000pt;}
.ws26_c00390{word-spacing:6.976000pt;}
.ws25_c00390{word-spacing:7.040000pt;}
.ws2e_c00390{word-spacing:7.296000pt;}
.ws2d_c00390{word-spacing:7.360000pt;}
.ws15_c00390{word-spacing:7.552000pt;}
.ws16_c00390{word-spacing:7.680000pt;}
.ws9_c00390{word-spacing:7.936000pt;}
.ws10_c00390{word-spacing:8.960000pt;}
.ws14_c00390{word-spacing:9.920000pt;}
.ws8_c00390{word-spacing:11.200000pt;}
.ws24_c00390{word-spacing:11.776000pt;}
.ws23_c00390{word-spacing:11.840000pt;}
.ws7_c00390{word-spacing:12.096000pt;}
.ws2b_c00390{word-spacing:12.416000pt;}
.ws2c_c00390{word-spacing:12.480000pt;}
.ws17_c00390{word-spacing:12.800000pt;}
.wsc_c00390{word-spacing:14.976000pt;}
.ws13_c00390{word-spacing:15.360000pt;}
.ws11_c00390{word-spacing:19.456000pt;}
.ws12_c00390{word-spacing:19.520000pt;}
._1_c00390{margin-left:-0.940800pt;}
._0_c00390{width:1.084800pt;}
._4_c00390{width:2.816000pt;}
._6_c00390{width:3.756800pt;}
._3_c00390{width:4.908800pt;}
._2_c00390{width:6.464000pt;}
._5_c00390{width:11.545600pt;}
.fs0_c00390{font-size:48.000000pt;}
.fs1_c00390{font-size:64.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.y27_c00390{bottom:50.880000pt;}
.y26_c00390{bottom:103.840000pt;}
.y25_c00390{bottom:131.440000pt;}
.y24_c00390{bottom:159.040000pt;}
.y23_c00390{bottom:186.640000pt;}
.y22_c00390{bottom:214.240000pt;}
.y21_c00390{bottom:241.840000pt;}
.y20_c00390{bottom:269.440000pt;}
.y1f_c00390{bottom:297.040000pt;}
.y1e_c00390{bottom:324.640000pt;}
.y1d_c00390{bottom:352.240000pt;}
.y1c_c00390{bottom:379.840000pt;}
.y1b_c00390{bottom:407.440000pt;}
.y1a_c00390{bottom:435.040000pt;}
.y19_c00390{bottom:462.640000pt;}
.y18_c00390{bottom:490.240000pt;}
.y17_c00390{bottom:517.840000pt;}
.y16_c00390{bottom:545.440000pt;}
.y15_c00390{bottom:573.040000pt;}
.y14_c00390{bottom:600.640000pt;}
.y13_c00390{bottom:628.240000pt;}
.y12_c00390{bottom:655.840000pt;}
.y11_c00390{bottom:683.440000pt;}
.y10_c00390{bottom:711.040000pt;}
.yf_c00390{bottom:738.640000pt;}
.ye_c00390{bottom:766.160000pt;}
.yd_c00390{bottom:793.760000pt;}
.yc_c00390{bottom:821.360000pt;}
.yb_c00390{bottom:848.960000pt;}
.ya_c00390{bottom:876.560000pt;}
.y9_c00390{bottom:904.160000pt;}
.y8_c00390{bottom:931.760000pt;}
.y7_c00390{bottom:959.360000pt;}
.y6_c00390{bottom:986.960000pt;}
.y5_c00390{bottom:1005.360000pt;}
.y4_c00390{bottom:1023.040000pt;}
.y3_c00390{bottom:1036.804000pt;}
.y2_c00390{bottom:1050.640000pt;}
.y1_c00390{bottom:1064.400000pt;}
.h3_c00390{height:47.085938pt;}
.h2_c00390{height:47.109375pt;}
.h4_c00390{height:62.812500pt;}
.h0_c00390{height:1122.560000pt;}
.h1_c00390{height:1122.666667pt;}
.w0_c00390{width:793.840000pt;}
.w1_c00390{width:794.000000pt;}
.x0_c00390{left:0.000000pt;}
.x3_c00390{left:113.440000pt;}
.x2_c00390{left:377.920000pt;}
.x1_c00390{left:396.960000pt;}
.x4_c00390{left:656.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_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_c7b52566ac49958616674009.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_4d5e4152f4342ad648a58aef.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;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_c00391;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff4_c00391{font-family:ff4_c00391;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00391;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff5_c00391{font-family:ff5_c00391;line-height:3.333984;font-style: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);}
.v1_c00391{vertical-align:-61.938000px;}
.v2_c00391{vertical-align:-14.760000px;}
.v0_c00391{vertical-align:0.000000px;}
.v3_c00391{vertical-align:14.760000px;}
.lsb_c00391{letter-spacing:-0.360000px;}
.lsa_c00391{letter-spacing:-0.144000px;}
.ls9_c00391{letter-spacing:0.000000px;}
.ls5_c00391{letter-spacing:0.072000px;}
.ls6_c00391{letter-spacing:0.144000px;}
.ls3_c00391{letter-spacing:7.200000px;}
.ls7_c00391{letter-spacing:7.920000px;}
.ls1_c00391{letter-spacing:10.440000px;}
.ls4_c00391{letter-spacing:20.016000px;}
.ls8_c00391{letter-spacing:22.601520px;}
.ls2_c00391{letter-spacing:22.961520px;}
.ls0_c00391{letter-spacing:319.518000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00391{word-spacing:-72.000000px;}
.ws3_c00391{word-spacing:-18.144000px;}
.ws0_c00391{word-spacing:-18.000000px;}
.wsc_c00391{word-spacing:-0.360000px;}
.ws6_c00391{word-spacing:-0.162000px;}
.wsa_c00391{word-spacing:-0.144000px;}
.ws9_c00391{word-spacing:-0.072000px;}
.ws5_c00391{word-spacing:0.000000px;}
.ws25_c00391{word-spacing:0.360000px;}
.ws24_c00391{word-spacing:0.720000px;}
.wse_c00391{word-spacing:1.368000px;}
.wsd_c00391{word-spacing:1.440000px;}
.ws17_c00391{word-spacing:1.728000px;}
.ws18_c00391{word-spacing:1.800000px;}
.ws21_c00391{word-spacing:2.448000px;}
.ws22_c00391{word-spacing:2.520000px;}
.ws4_c00391{word-spacing:3.816000px;}
.ws2_c00391{word-spacing:4.176000px;}
.ws26_c00391{word-spacing:4.608000px;}
.ws27_c00391{word-spacing:4.968000px;}
.ws28_c00391{word-spacing:5.040000px;}
.ws1d_c00391{word-spacing:5.976000px;}
.wsb_c00391{word-spacing:6.048000px;}
.ws15_c00391{word-spacing:7.488000px;}
.ws14_c00391{word-spacing:7.560000px;}
.ws16_c00391{word-spacing:8.208000px;}
.ws20_c00391{word-spacing:8.280000px;}
.ws19_c00391{word-spacing:8.568000px;}
.ws13_c00391{word-spacing:9.936000px;}
.ws12_c00391{word-spacing:10.008000px;}
.ws8_c00391{word-spacing:10.368000px;}
.ws7_c00391{word-spacing:10.440000px;}
.ws29_c00391{word-spacing:10.800000px;}
.ws2a_c00391{word-spacing:11.520000px;}
.ws1a_c00391{word-spacing:11.664000px;}
.wsf_c00391{word-spacing:13.968000px;}
.ws1b_c00391{word-spacing:17.928000px;}
.ws1c_c00391{word-spacing:18.000000px;}
.ws1e_c00391{word-spacing:21.528000px;}
.ws1f_c00391{word-spacing:21.960000px;}
.ws23_c00391{word-spacing:27.000000px;}
.ws10_c00391{word-spacing:29.808000px;}
.ws11_c00391{word-spacing:29.880000px;}
._7_c00391{margin-left:-6.264000px;}
._6_c00391{margin-left:-4.320000px;}
._0_c00391{margin-left:-1.008000px;}
._2_c00391{width:1.008000px;}
._3_c00391{width:4.392000px;}
._1_c00391{width:9.993600px;}
._8_c00391{width:11.376000px;}
._4_c00391{width:13.176000px;}
._5_c00391{width:14.392800px;}
._9_c00391{width:21.528000px;}
.fc0_c00391{color:rgb(0,0,0);}
.fs2_c00391{font-size:51.120000px;}
.fs0_c00391{font-size:54.000000px;}
.fs1_c00391{font-size:72.000000px;}
.y0_c00391{bottom:0.000000px;}
.y25_c00391{bottom:57.240000px;}
.y24_c00391{bottom:143.640000px;}
.y23_c00391{bottom:174.870000px;}
.y22_c00391{bottom:206.370000px;}
.y21_c00391{bottom:237.510000px;}
.y20_c00391{bottom:269.010000px;}
.y1f_c00391{bottom:300.060000px;}
.y1e_c00391{bottom:331.290000px;}
.y1d_c00391{bottom:362.790000px;}
.y1c_c00391{bottom:393.840000px;}
.y1b_c00391{bottom:424.890000px;}
.y1a_c00391{bottom:455.940000px;}
.y19_c00391{bottom:486.990000px;}
.y18_c00391{bottom:518.220000px;}
.y17_c00391{bottom:549.720000px;}
.y16_c00391{bottom:580.770000px;}
.y15_c00391{bottom:611.730000px;}
.y14_c00391{bottom:642.780000px;}
.y13_c00391{bottom:673.830000px;}
.y12_c00391{bottom:705.060000px;}
.y11_c00391{bottom:736.560000px;}
.y10_c00391{bottom:767.610000px;}
.yf_c00391{bottom:798.660000px;}
.ye_c00391{bottom:829.890000px;}
.yd_c00391{bottom:861.390000px;}
.yc_c00391{bottom:892.530000px;}
.yb_c00391{bottom:924.030000px;}
.ya_c00391{bottom:955.080000px;}
.y9_c00391{bottom:986.130000px;}
.y8_c00391{bottom:1017.180000px;}
.y7_c00391{bottom:1048.230000px;}
.y6_c00391{bottom:1079.280000px;}
.y5_c00391{bottom:1110.330000px;}
.y4_c00391{bottom:1131.030000px;}
.y3_c00391{bottom:1150.915500px;}
.y2_c00391{bottom:1166.400000px;}
.y1_c00391{bottom:1197.450000px;}
.h4_c00391{height:50.027344px;}
.h2_c00391{height:52.998047px;}
.h3_c00391{height:70.664062px;}
.h5_c00391{height:143.542969px;}
.h0_c00391{height:1262.880000px;}
.h1_c00391{height:1263.000000px;}
.w0_c00391{width:893.070000px;}
.w1_c00391{width:893.250000px;}
.x0_c00391{left:0.000000px;}
.x2_c00391{left:127.620000px;}
.x1_c00391{left:446.580000px;}
@media print{
.v1_c00391{vertical-align:-55.056000pt;}
.v2_c00391{vertical-align:-13.120000pt;}
.v0_c00391{vertical-align:0.000000pt;}
.v3_c00391{vertical-align:13.120000pt;}
.lsb_c00391{letter-spacing:-0.320000pt;}
.lsa_c00391{letter-spacing:-0.128000pt;}
.ls9_c00391{letter-spacing:0.000000pt;}
.ls5_c00391{letter-spacing:0.064000pt;}
.ls6_c00391{letter-spacing:0.128000pt;}
.ls3_c00391{letter-spacing:6.400000pt;}
.ls7_c00391{letter-spacing:7.040000pt;}
.ls1_c00391{letter-spacing:9.280000pt;}
.ls4_c00391{letter-spacing:17.792000pt;}
.ls8_c00391{letter-spacing:20.090240pt;}
.ls2_c00391{letter-spacing:20.410240pt;}
.ls0_c00391{letter-spacing:284.016000pt;}
.ws1_c00391{word-spacing:-64.000000pt;}
.ws3_c00391{word-spacing:-16.128000pt;}
.ws0_c00391{word-spacing:-16.000000pt;}
.wsc_c00391{word-spacing:-0.320000pt;}
.ws6_c00391{word-spacing:-0.144000pt;}
.wsa_c00391{word-spacing:-0.128000pt;}
.ws9_c00391{word-spacing:-0.064000pt;}
.ws5_c00391{word-spacing:0.000000pt;}
.ws25_c00391{word-spacing:0.320000pt;}
.ws24_c00391{word-spacing:0.640000pt;}
.wse_c00391{word-spacing:1.216000pt;}
.wsd_c00391{word-spacing:1.280000pt;}
.ws17_c00391{word-spacing:1.536000pt;}
.ws18_c00391{word-spacing:1.600000pt;}
.ws21_c00391{word-spacing:2.176000pt;}
.ws22_c00391{word-spacing:2.240000pt;}
.ws4_c00391{word-spacing:3.392000pt;}
.ws2_c00391{word-spacing:3.712000pt;}
.ws26_c00391{word-spacing:4.096000pt;}
.ws27_c00391{word-spacing:4.416000pt;}
.ws28_c00391{word-spacing:4.480000pt;}
.ws1d_c00391{word-spacing:5.312000pt;}
.wsb_c00391{word-spacing:5.376000pt;}
.ws15_c00391{word-spacing:6.656000pt;}
.ws14_c00391{word-spacing:6.720000pt;}
.ws16_c00391{word-spacing:7.296000pt;}
.ws20_c00391{word-spacing:7.360000pt;}
.ws19_c00391{word-spacing:7.616000pt;}
.ws13_c00391{word-spacing:8.832000pt;}
.ws12_c00391{word-spacing:8.896000pt;}
.ws8_c00391{word-spacing:9.216000pt;}
.ws7_c00391{word-spacing:9.280000pt;}
.ws29_c00391{word-spacing:9.600000pt;}
.ws2a_c00391{word-spacing:10.240000pt;}
.ws1a_c00391{word-spacing:10.368000pt;}
.wsf_c00391{word-spacing:12.416000pt;}
.ws1b_c00391{word-spacing:15.936000pt;}
.ws1c_c00391{word-spacing:16.000000pt;}
.ws1e_c00391{word-spacing:19.136000pt;}
.ws1f_c00391{word-spacing:19.520000pt;}
.ws23_c00391{word-spacing:24.000000pt;}
.ws10_c00391{word-spacing:26.496000pt;}
.ws11_c00391{word-spacing:26.560000pt;}
._7_c00391{margin-left:-5.568000pt;}
._6_c00391{margin-left:-3.840000pt;}
._0_c00391{margin-left:-0.896000pt;}
._2_c00391{width:0.896000pt;}
._3_c00391{width:3.904000pt;}
._1_c00391{width:8.883200pt;}
._8_c00391{width:10.112000pt;}
._4_c00391{width:11.712000pt;}
._5_c00391{width:12.793600pt;}
._9_c00391{width:19.136000pt;}
.fs2_c00391{font-size:45.440000pt;}
.fs0_c00391{font-size:48.000000pt;}
.fs1_c00391{font-size:64.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y25_c00391{bottom:50.880000pt;}
.y24_c00391{bottom:127.680000pt;}
.y23_c00391{bottom:155.440000pt;}
.y22_c00391{bottom:183.440000pt;}
.y21_c00391{bottom:211.120000pt;}
.y20_c00391{bottom:239.120000pt;}
.y1f_c00391{bottom:266.720000pt;}
.y1e_c00391{bottom:294.480000pt;}
.y1d_c00391{bottom:322.480000pt;}
.y1c_c00391{bottom:350.080000pt;}
.y1b_c00391{bottom:377.680000pt;}
.y1a_c00391{bottom:405.280000pt;}
.y19_c00391{bottom:432.880000pt;}
.y18_c00391{bottom:460.640000pt;}
.y17_c00391{bottom:488.640000pt;}
.y16_c00391{bottom:516.240000pt;}
.y15_c00391{bottom:543.760000pt;}
.y14_c00391{bottom:571.360000pt;}
.y13_c00391{bottom:598.960000pt;}
.y12_c00391{bottom:626.720000pt;}
.y11_c00391{bottom:654.720000pt;}
.y10_c00391{bottom:682.320000pt;}
.yf_c00391{bottom:709.920000pt;}
.ye_c00391{bottom:737.680000pt;}
.yd_c00391{bottom:765.680000pt;}
.yc_c00391{bottom:793.360000pt;}
.yb_c00391{bottom:821.360000pt;}
.ya_c00391{bottom:848.960000pt;}
.y9_c00391{bottom:876.560000pt;}
.y8_c00391{bottom:904.160000pt;}
.y7_c00391{bottom:931.760000pt;}
.y6_c00391{bottom:959.360000pt;}
.y5_c00391{bottom:986.960000pt;}
.y4_c00391{bottom:1005.360000pt;}
.y3_c00391{bottom:1023.036000pt;}
.y2_c00391{bottom:1036.800000pt;}
.y1_c00391{bottom:1064.400000pt;}
.h4_c00391{height:44.468750pt;}
.h2_c00391{height:47.109375pt;}
.h3_c00391{height:62.812500pt;}
.h5_c00391{height:127.593750pt;}
.h0_c00391{height:1122.560000pt;}
.h1_c00391{height:1122.666667pt;}
.w0_c00391{width:793.840000pt;}
.w1_c00391{width:794.000000pt;}
.x0_c00391{left:0.000000pt;}
.x2_c00391{left:113.440000pt;}
.x1_c00391{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e2940cf725474fa48222dc0.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00392;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00392{font-family:ff3_c00392;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00392;src:url('chunks/assets/font_98e568e8f37e97823f0bedd5.woff2')format("woff");}.ff4_c00392{font-family:ff4_c00392;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00392;src:url('chunks/assets/font_a3bbddd17e62b2e730ad3f63.woff2')format("woff");}.ff5_c00392{font-family:ff5_c00392;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:ff6_c00392;src:url('chunks/assets/font_56efc5850d68f69886f6e110.woff2')format("woff");}.ff6_c00392{font-family:ff6_c00392;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:ff7_c00392;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7_c00392{font-family:ff7_c00392;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00392{vertical-align:-14.760000px;}
.v0_c00392{vertical-align:0.000000px;}
.v3_c00392{vertical-align:2.880000px;}
.v2_c00392{vertical-align:14.760000px;}
.ls15_c00392{letter-spacing:-0.576000px;}
.ls13_c00392{letter-spacing:-0.360000px;}
.ls14_c00392{letter-spacing:-0.288000px;}
.ls11_c00392{letter-spacing:-0.108000px;}
.ls10_c00392{letter-spacing:0.000000px;}
.ls8_c00392{letter-spacing:0.072000px;}
.ls12_c00392{letter-spacing:0.144000px;}
.lsd_c00392{letter-spacing:0.360000px;}
.lsc_c00392{letter-spacing:1.368000px;}
.ls7_c00392{letter-spacing:1.440000px;}
.lsa_c00392{letter-spacing:1.807200px;}
.ls2_c00392{letter-spacing:5.760000px;}
.ls5_c00392{letter-spacing:6.840000px;}
.ls3_c00392{letter-spacing:7.588800px;}
.lsb_c00392{letter-spacing:10.440000px;}
.ls9_c00392{letter-spacing:10.447200px;}
.ls6_c00392{letter-spacing:14.400000px;}
.ls1_c00392{letter-spacing:20.016000px;}
.ls0_c00392{letter-spacing:22.961520px;}
.ls4_c00392{letter-spacing:23.321520px;}
.lse_c00392{letter-spacing:28.800000px;}
.lsf_c00392{letter-spacing:30.744000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:-72.000000px;}
.ws4_c00392{word-spacing:-18.072000px;}
.ws3_c00392{word-spacing:-18.000000px;}
.ws1_c00392{word-spacing:-15.840000px;}
.ws19_c00392{word-spacing:-0.144000px;}
.wsa_c00392{word-spacing:-0.072000px;}
.ws5_c00392{word-spacing:0.000000px;}
.ws7_c00392{word-spacing:0.162000px;}
.ws6_c00392{word-spacing:0.270000px;}
.ws1b_c00392{word-spacing:0.360000px;}
.ws2b_c00392{word-spacing:0.576000px;}
.ws1c_c00392{word-spacing:1.080000px;}
.ws1a_c00392{word-spacing:1.368000px;}
.ws23_c00392{word-spacing:1.728000px;}
.ws22_c00392{word-spacing:2.088000px;}
.ws21_c00392{word-spacing:2.160000px;}
.ws20_c00392{word-spacing:2.808000px;}
.ws1f_c00392{word-spacing:2.880000px;}
.ws2_c00392{word-spacing:3.816000px;}
.ws9_c00392{word-spacing:5.688000px;}
.ws17_c00392{word-spacing:6.696000px;}
.wsc_c00392{word-spacing:6.768000px;}
.ws18_c00392{word-spacing:6.840000px;}
.wsb_c00392{word-spacing:7.488000px;}
.wse_c00392{word-spacing:8.208000px;}
.wsf_c00392{word-spacing:8.568000px;}
.ws29_c00392{word-spacing:8.640000px;}
.ws1e_c00392{word-spacing:10.368000px;}
.ws10_c00392{word-spacing:10.440000px;}
.ws2a_c00392{word-spacing:10.728000px;}
.ws25_c00392{word-spacing:10.800000px;}
.ws13_c00392{word-spacing:11.448000px;}
.ws16_c00392{word-spacing:13.896000px;}
.ws14_c00392{word-spacing:13.968000px;}
.ws15_c00392{word-spacing:14.040000px;}
.wsd_c00392{word-spacing:14.328000px;}
.ws24_c00392{word-spacing:17.208000px;}
.ws2d_c00392{word-spacing:19.008000px;}
.ws8_c00392{word-spacing:19.368000px;}
.ws1d_c00392{word-spacing:19.800000px;}
.ws11_c00392{word-spacing:22.896000px;}
.ws12_c00392{word-spacing:23.040000px;}
.ws27_c00392{word-spacing:28.728000px;}
.ws26_c00392{word-spacing:28.800000px;}
.ws28_c00392{word-spacing:29.088000px;}
.ws2c_c00392{word-spacing:34.560000px;}
._2_c00392{margin-left:-5.940000px;}
._9_c00392{margin-left:-3.816000px;}
._1_c00392{margin-left:-1.058400px;}
._0_c00392{width:1.220400px;}
._5_c00392{width:2.736000px;}
._6_c00392{width:3.855600px;}
._4_c00392{width:6.328800px;}
._3_c00392{width:7.488000px;}
._a_c00392{width:11.556000px;}
._7_c00392{width:13.824000px;}
._8_c00392{width:15.120000px;}
._b_c00392{width:19.836000px;}
.fc0_c00392{color:rgb(0,0,0);}
.fs2_c00392{font-size:51.120000px;}
.fs0_c00392{font-size:54.000000px;}
.fs1_c00392{font-size:72.000000px;}
.y0_c00392{bottom:0.000000px;}
.y26_c00392{bottom:57.240000px;}
.y25_c00392{bottom:144.810000px;}
.y24_c00392{bottom:175.860000px;}
.y23_c00392{bottom:206.910000px;}
.y22_c00392{bottom:237.960000px;}
.y21_c00392{bottom:269.010000px;}
.y20_c00392{bottom:300.060000px;}
.y1f_c00392{bottom:331.110000px;}
.y1e_c00392{bottom:362.340000px;}
.y1d_c00392{bottom:393.840000px;}
.y1c_c00392{bottom:424.890000px;}
.y1b_c00392{bottom:455.940000px;}
.y1a_c00392{bottom:486.990000px;}
.y19_c00392{bottom:518.040000px;}
.y18_c00392{bottom:549.090000px;}
.y17_c00392{bottom:580.140000px;}
.y16_c00392{bottom:611.190000px;}
.y15_c00392{bottom:642.240000px;}
.y14_c00392{bottom:673.290000px;}
.y13_c00392{bottom:704.340000px;}
.y12_c00392{bottom:735.390000px;}
.y11_c00392{bottom:766.440000px;}
.y10_c00392{bottom:797.490000px;}
.yf_c00392{bottom:828.630000px;}
.ye_c00392{bottom:860.310000px;}
.yd_c00392{bottom:891.810000px;}
.yc_c00392{bottom:922.860000px;}
.yb_c00392{bottom:953.910000px;}
.ya_c00392{bottom:984.960000px;}
.y9_c00392{bottom:1016.190000px;}
.y8_c00392{bottom:1047.690000px;}
.y7_c00392{bottom:1078.830000px;}
.y6_c00392{bottom:1110.330000px;}
.y5_c00392{bottom:1131.030000px;}
.y4_c00392{bottom:1150.920000px;}
.y3_c00392{bottom:1166.404500px;}
.y2_c00392{bottom:1181.970000px;}
.y1_c00392{bottom:1197.450000px;}
.h6_c00392{height:50.027344px;}
.h3_c00392{height:52.971680px;}
.h2_c00392{height:52.998047px;}
.h4_c00392{height:70.664062px;}
.h7_c00392{height:75.093750px;}
.h5_c00392{height:143.542969px;}
.h0_c00392{height:1262.880000px;}
.h1_c00392{height:1263.000000px;}
.w0_c00392{width:893.070000px;}
.w1_c00392{width:893.250000px;}
.x0_c00392{left:0.000000px;}
.x3_c00392{left:127.620000px;}
.x4_c00392{left:154.620000px;}
.x2_c00392{left:425.160000px;}
.x1_c00392{left:446.580000px;}
.x5_c00392{left:738.540000px;}
@media print{
.v1_c00392{vertical-align:-13.120000pt;}
.v0_c00392{vertical-align:0.000000pt;}
.v3_c00392{vertical-align:2.560000pt;}
.v2_c00392{vertical-align:13.120000pt;}
.ls15_c00392{letter-spacing:-0.512000pt;}
.ls13_c00392{letter-spacing:-0.320000pt;}
.ls14_c00392{letter-spacing:-0.256000pt;}
.ls11_c00392{letter-spacing:-0.096000pt;}
.ls10_c00392{letter-spacing:0.000000pt;}
.ls8_c00392{letter-spacing:0.064000pt;}
.ls12_c00392{letter-spacing:0.128000pt;}
.lsd_c00392{letter-spacing:0.320000pt;}
.lsc_c00392{letter-spacing:1.216000pt;}
.ls7_c00392{letter-spacing:1.280000pt;}
.lsa_c00392{letter-spacing:1.606400pt;}
.ls2_c00392{letter-spacing:5.120000pt;}
.ls5_c00392{letter-spacing:6.080000pt;}
.ls3_c00392{letter-spacing:6.745600pt;}
.lsb_c00392{letter-spacing:9.280000pt;}
.ls9_c00392{letter-spacing:9.286400pt;}
.ls6_c00392{letter-spacing:12.800000pt;}
.ls1_c00392{letter-spacing:17.792000pt;}
.ls0_c00392{letter-spacing:20.410240pt;}
.ls4_c00392{letter-spacing:20.730240pt;}
.lse_c00392{letter-spacing:25.600000pt;}
.lsf_c00392{letter-spacing:27.328000pt;}
.ws0_c00392{word-spacing:-64.000000pt;}
.ws4_c00392{word-spacing:-16.064000pt;}
.ws3_c00392{word-spacing:-16.000000pt;}
.ws1_c00392{word-spacing:-14.080000pt;}
.ws19_c00392{word-spacing:-0.128000pt;}
.wsa_c00392{word-spacing:-0.064000pt;}
.ws5_c00392{word-spacing:0.000000pt;}
.ws7_c00392{word-spacing:0.144000pt;}
.ws6_c00392{word-spacing:0.240000pt;}
.ws1b_c00392{word-spacing:0.320000pt;}
.ws2b_c00392{word-spacing:0.512000pt;}
.ws1c_c00392{word-spacing:0.960000pt;}
.ws1a_c00392{word-spacing:1.216000pt;}
.ws23_c00392{word-spacing:1.536000pt;}
.ws22_c00392{word-spacing:1.856000pt;}
.ws21_c00392{word-spacing:1.920000pt;}
.ws20_c00392{word-spacing:2.496000pt;}
.ws1f_c00392{word-spacing:2.560000pt;}
.ws2_c00392{word-spacing:3.392000pt;}
.ws9_c00392{word-spacing:5.056000pt;}
.ws17_c00392{word-spacing:5.952000pt;}
.wsc_c00392{word-spacing:6.016000pt;}
.ws18_c00392{word-spacing:6.080000pt;}
.wsb_c00392{word-spacing:6.656000pt;}
.wse_c00392{word-spacing:7.296000pt;}
.wsf_c00392{word-spacing:7.616000pt;}
.ws29_c00392{word-spacing:7.680000pt;}
.ws1e_c00392{word-spacing:9.216000pt;}
.ws10_c00392{word-spacing:9.280000pt;}
.ws2a_c00392{word-spacing:9.536000pt;}
.ws25_c00392{word-spacing:9.600000pt;}
.ws13_c00392{word-spacing:10.176000pt;}
.ws16_c00392{word-spacing:12.352000pt;}
.ws14_c00392{word-spacing:12.416000pt;}
.ws15_c00392{word-spacing:12.480000pt;}
.wsd_c00392{word-spacing:12.736000pt;}
.ws24_c00392{word-spacing:15.296000pt;}
.ws2d_c00392{word-spacing:16.896000pt;}
.ws8_c00392{word-spacing:17.216000pt;}
.ws1d_c00392{word-spacing:17.600000pt;}
.ws11_c00392{word-spacing:20.352000pt;}
.ws12_c00392{word-spacing:20.480000pt;}
.ws27_c00392{word-spacing:25.536000pt;}
.ws26_c00392{word-spacing:25.600000pt;}
.ws28_c00392{word-spacing:25.856000pt;}
.ws2c_c00392{word-spacing:30.720000pt;}
._2_c00392{margin-left:-5.280000pt;}
._9_c00392{margin-left:-3.392000pt;}
._1_c00392{margin-left:-0.940800pt;}
._0_c00392{width:1.084800pt;}
._5_c00392{width:2.432000pt;}
._6_c00392{width:3.427200pt;}
._4_c00392{width:5.625600pt;}
._3_c00392{width:6.656000pt;}
._a_c00392{width:10.272000pt;}
._7_c00392{width:12.288000pt;}
._8_c00392{width:13.440000pt;}
._b_c00392{width:17.632000pt;}
.fs2_c00392{font-size:45.440000pt;}
.fs0_c00392{font-size:48.000000pt;}
.fs1_c00392{font-size:64.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y26_c00392{bottom:50.880000pt;}
.y25_c00392{bottom:128.720000pt;}
.y24_c00392{bottom:156.320000pt;}
.y23_c00392{bottom:183.920000pt;}
.y22_c00392{bottom:211.520000pt;}
.y21_c00392{bottom:239.120000pt;}
.y20_c00392{bottom:266.720000pt;}
.y1f_c00392{bottom:294.320000pt;}
.y1e_c00392{bottom:322.080000pt;}
.y1d_c00392{bottom:350.080000pt;}
.y1c_c00392{bottom:377.680000pt;}
.y1b_c00392{bottom:405.280000pt;}
.y1a_c00392{bottom:432.880000pt;}
.y19_c00392{bottom:460.480000pt;}
.y18_c00392{bottom:488.080000pt;}
.y17_c00392{bottom:515.680000pt;}
.y16_c00392{bottom:543.280000pt;}
.y15_c00392{bottom:570.880000pt;}
.y14_c00392{bottom:598.480000pt;}
.y13_c00392{bottom:626.080000pt;}
.y12_c00392{bottom:653.680000pt;}
.y11_c00392{bottom:681.280000pt;}
.y10_c00392{bottom:708.880000pt;}
.yf_c00392{bottom:736.560000pt;}
.ye_c00392{bottom:764.720000pt;}
.yd_c00392{bottom:792.720000pt;}
.yc_c00392{bottom:820.320000pt;}
.yb_c00392{bottom:847.920000pt;}
.ya_c00392{bottom:875.520000pt;}
.y9_c00392{bottom:903.280000pt;}
.y8_c00392{bottom:931.280000pt;}
.y7_c00392{bottom:958.960000pt;}
.y6_c00392{bottom:986.960000pt;}
.y5_c00392{bottom:1005.360000pt;}
.y4_c00392{bottom:1023.040000pt;}
.y3_c00392{bottom:1036.804000pt;}
.y2_c00392{bottom:1050.640000pt;}
.y1_c00392{bottom:1064.400000pt;}
.h6_c00392{height:44.468750pt;}
.h3_c00392{height:47.085938pt;}
.h2_c00392{height:47.109375pt;}
.h4_c00392{height:62.812500pt;}
.h7_c00392{height:66.750000pt;}
.h5_c00392{height:127.593750pt;}
.h0_c00392{height:1122.560000pt;}
.h1_c00392{height:1122.666667pt;}
.w0_c00392{width:793.840000pt;}
.w1_c00392{width:794.000000pt;}
.x0_c00392{left:0.000000pt;}
.x3_c00392{left:113.440000pt;}
.x4_c00392{left:137.440000pt;}
.x2_c00392{left:377.920000pt;}
.x1_c00392{left:396.960000pt;}
.x5_c00392{left:656.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_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_8dd8901c54ae7841908567b1.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00393;src:url('chunks/assets/font_92d03863f4e6eedb12fb4531.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;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_c00393;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00393{font-family:ff4_c00393;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00393;src:url('chunks/assets/font_b255d69e3107f27728813aec.woff2')format("woff");}.ff5_c00393{font-family:ff5_c00393;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:ff6_c00393;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff6_c00393{font-family:ff6_c00393;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00393;src:url('chunks/assets/font_bf6ff5968ac59123ab9df292.woff2')format("woff");}.ff7_c00393{font-family:ff7_c00393;line-height:3.333984;font-style: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);}
.v1_c00393{vertical-align:-61.938000px;}
.v2_c00393{vertical-align:-14.760000px;}
.v0_c00393{vertical-align:0.000000px;}
.v3_c00393{vertical-align:14.760000px;}
.lsb_c00393{letter-spacing:-0.288000px;}
.lsa_c00393{letter-spacing:0.000000px;}
.ls1_c00393{letter-spacing:0.072000px;}
.ls9_c00393{letter-spacing:0.144000px;}
.ls4_c00393{letter-spacing:0.432000px;}
.ls5_c00393{letter-spacing:4.694400px;}
.ls3_c00393{letter-spacing:6.120000px;}
.ls6_c00393{letter-spacing:7.920000px;}
.ls8_c00393{letter-spacing:20.016000px;}
.ls7_c00393{letter-spacing:22.961520px;}
.ls2_c00393{letter-spacing:30.744000px;}
.ls0_c00393{letter-spacing:319.518000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00393{word-spacing:-72.000000px;}
.ws0_c00393{word-spacing:-18.000000px;}
.ws4_c00393{word-spacing:-17.712000px;}
.wsa_c00393{word-spacing:-0.432000px;}
.ws6_c00393{word-spacing:-0.162000px;}
.ws25_c00393{word-spacing:-0.144000px;}
.wsd_c00393{word-spacing:-0.072000px;}
.ws5_c00393{word-spacing:0.000000px;}
.wse_c00393{word-spacing:0.288000px;}
.ws24_c00393{word-spacing:1.008000px;}
.wsc_c00393{word-spacing:1.440000px;}
.ws3_c00393{word-spacing:3.816000px;}
.ws2_c00393{word-spacing:4.176000px;}
.ws9_c00393{word-spacing:4.320000px;}
.wsb_c00393{word-spacing:4.608000px;}
.ws1d_c00393{word-spacing:6.048000px;}
.ws8_c00393{word-spacing:6.120000px;}
.ws1c_c00393{word-spacing:7.128000px;}
.ws13_c00393{word-spacing:7.848000px;}
.ws20_c00393{word-spacing:8.928000px;}
.ws22_c00393{word-spacing:10.080000px;}
.ws21_c00393{word-spacing:10.440000px;}
.ws1b_c00393{word-spacing:10.728000px;}
.ws18_c00393{word-spacing:15.768000px;}
.ws15_c00393{word-spacing:16.128000px;}
.ws14_c00393{word-spacing:16.200000px;}
.ws10_c00393{word-spacing:17.568000px;}
.ws12_c00393{word-spacing:17.640000px;}
.wsf_c00393{word-spacing:17.928000px;}
.ws11_c00393{word-spacing:18.000000px;}
.ws1e_c00393{word-spacing:18.288000px;}
.ws1f_c00393{word-spacing:18.360000px;}
.ws17_c00393{word-spacing:19.656000px;}
.ws16_c00393{word-spacing:19.728000px;}
.ws23_c00393{word-spacing:20.808000px;}
.ws7_c00393{word-spacing:20.880000px;}
.ws19_c00393{word-spacing:56.736000px;}
.ws1a_c00393{word-spacing:56.880000px;}
._5_c00393{margin-left:-6.192000px;}
._4_c00393{margin-left:-4.176000px;}
._1_c00393{margin-left:-1.008000px;}
._0_c00393{width:1.008000px;}
._9_c00393{width:2.664000px;}
._2_c00393{width:3.744000px;}
._3_c00393{width:7.920000px;}
._c_c00393{width:8.928000px;}
._e_c00393{width:10.008000px;}
._d_c00393{width:11.376000px;}
._7_c00393{width:12.520800px;}
._8_c00393{width:13.536000px;}
._6_c00393{width:14.896800px;}
._b_c00393{width:31.442400px;}
._a_c00393{width:32.472000px;}
.fc0_c00393{color:rgb(0,0,0);}
.fs2_c00393{font-size:51.120000px;}
.fs0_c00393{font-size:54.000000px;}
.fs1_c00393{font-size:72.000000px;}
.y0_c00393{bottom:0.000000px;}
.y26_c00393{bottom:57.240000px;}
.y25_c00393{bottom:113.940000px;}
.y24_c00393{bottom:145.440000px;}
.y23_c00393{bottom:176.490000px;}
.y22_c00393{bottom:207.540000px;}
.y21_c00393{bottom:238.590000px;}
.y20_c00393{bottom:269.820000px;}
.y1f_c00393{bottom:301.320000px;}
.y1e_c00393{bottom:332.370000px;}
.y1d_c00393{bottom:363.420000px;}
.y1c_c00393{bottom:394.470000px;}
.y1b_c00393{bottom:425.520000px;}
.y1a_c00393{bottom:456.570000px;}
.y19_c00393{bottom:487.620000px;}
.y18_c00393{bottom:518.760000px;}
.y17_c00393{bottom:550.260000px;}
.y16_c00393{bottom:581.310000px;}
.y15_c00393{bottom:612.360000px;}
.y14_c00393{bottom:643.590000px;}
.y13_c00393{bottom:675.270000px;}
.y12_c00393{bottom:706.770000px;}
.y11_c00393{bottom:737.820000px;}
.y10_c00393{bottom:768.870000px;}
.yf_c00393{bottom:799.920000px;}
.ye_c00393{bottom:830.970000px;}
.yd_c00393{bottom:861.930000px;}
.yc_c00393{bottom:892.980000px;}
.yb_c00393{bottom:924.030000px;}
.ya_c00393{bottom:955.080000px;}
.y9_c00393{bottom:986.130000px;}
.y8_c00393{bottom:1017.180000px;}
.y7_c00393{bottom:1048.230000px;}
.y6_c00393{bottom:1079.280000px;}
.y5_c00393{bottom:1110.330000px;}
.y4_c00393{bottom:1131.030000px;}
.y3_c00393{bottom:1150.915500px;}
.y2_c00393{bottom:1166.400000px;}
.y1_c00393{bottom:1197.450000px;}
.h6_c00393{height:50.027344px;}
.h2_c00393{height:52.998047px;}
.h3_c00393{height:70.664062px;}
.h4_c00393{height:75.093750px;}
.h5_c00393{height:143.542969px;}
.h0_c00393{height:1262.880000px;}
.h1_c00393{height:1263.000000px;}
.w0_c00393{width:893.070000px;}
.w1_c00393{width:893.250000px;}
.x0_c00393{left:0.000000px;}
.x2_c00393{left:127.620000px;}
.x3_c00393{left:154.620000px;}
.x1_c00393{left:446.580000px;}
@media print{
.v1_c00393{vertical-align:-55.056000pt;}
.v2_c00393{vertical-align:-13.120000pt;}
.v0_c00393{vertical-align:0.000000pt;}
.v3_c00393{vertical-align:13.120000pt;}
.lsb_c00393{letter-spacing:-0.256000pt;}
.lsa_c00393{letter-spacing:0.000000pt;}
.ls1_c00393{letter-spacing:0.064000pt;}
.ls9_c00393{letter-spacing:0.128000pt;}
.ls4_c00393{letter-spacing:0.384000pt;}
.ls5_c00393{letter-spacing:4.172800pt;}
.ls3_c00393{letter-spacing:5.440000pt;}
.ls6_c00393{letter-spacing:7.040000pt;}
.ls8_c00393{letter-spacing:17.792000pt;}
.ls7_c00393{letter-spacing:20.410240pt;}
.ls2_c00393{letter-spacing:27.328000pt;}
.ls0_c00393{letter-spacing:284.016000pt;}
.ws1_c00393{word-spacing:-64.000000pt;}
.ws0_c00393{word-spacing:-16.000000pt;}
.ws4_c00393{word-spacing:-15.744000pt;}
.wsa_c00393{word-spacing:-0.384000pt;}
.ws6_c00393{word-spacing:-0.144000pt;}
.ws25_c00393{word-spacing:-0.128000pt;}
.wsd_c00393{word-spacing:-0.064000pt;}
.ws5_c00393{word-spacing:0.000000pt;}
.wse_c00393{word-spacing:0.256000pt;}
.ws24_c00393{word-spacing:0.896000pt;}
.wsc_c00393{word-spacing:1.280000pt;}
.ws3_c00393{word-spacing:3.392000pt;}
.ws2_c00393{word-spacing:3.712000pt;}
.ws9_c00393{word-spacing:3.840000pt;}
.wsb_c00393{word-spacing:4.096000pt;}
.ws1d_c00393{word-spacing:5.376000pt;}
.ws8_c00393{word-spacing:5.440000pt;}
.ws1c_c00393{word-spacing:6.336000pt;}
.ws13_c00393{word-spacing:6.976000pt;}
.ws20_c00393{word-spacing:7.936000pt;}
.ws22_c00393{word-spacing:8.960000pt;}
.ws21_c00393{word-spacing:9.280000pt;}
.ws1b_c00393{word-spacing:9.536000pt;}
.ws18_c00393{word-spacing:14.016000pt;}
.ws15_c00393{word-spacing:14.336000pt;}
.ws14_c00393{word-spacing:14.400000pt;}
.ws10_c00393{word-spacing:15.616000pt;}
.ws12_c00393{word-spacing:15.680000pt;}
.wsf_c00393{word-spacing:15.936000pt;}
.ws11_c00393{word-spacing:16.000000pt;}
.ws1e_c00393{word-spacing:16.256000pt;}
.ws1f_c00393{word-spacing:16.320000pt;}
.ws17_c00393{word-spacing:17.472000pt;}
.ws16_c00393{word-spacing:17.536000pt;}
.ws23_c00393{word-spacing:18.496000pt;}
.ws7_c00393{word-spacing:18.560000pt;}
.ws19_c00393{word-spacing:50.432000pt;}
.ws1a_c00393{word-spacing:50.560000pt;}
._5_c00393{margin-left:-5.504000pt;}
._4_c00393{margin-left:-3.712000pt;}
._1_c00393{margin-left:-0.896000pt;}
._0_c00393{width:0.896000pt;}
._9_c00393{width:2.368000pt;}
._2_c00393{width:3.328000pt;}
._3_c00393{width:7.040000pt;}
._c_c00393{width:7.936000pt;}
._e_c00393{width:8.896000pt;}
._d_c00393{width:10.112000pt;}
._7_c00393{width:11.129600pt;}
._8_c00393{width:12.032000pt;}
._6_c00393{width:13.241600pt;}
._b_c00393{width:27.948800pt;}
._a_c00393{width:28.864000pt;}
.fs2_c00393{font-size:45.440000pt;}
.fs0_c00393{font-size:48.000000pt;}
.fs1_c00393{font-size:64.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y26_c00393{bottom:50.880000pt;}
.y25_c00393{bottom:101.280000pt;}
.y24_c00393{bottom:129.280000pt;}
.y23_c00393{bottom:156.880000pt;}
.y22_c00393{bottom:184.480000pt;}
.y21_c00393{bottom:212.080000pt;}
.y20_c00393{bottom:239.840000pt;}
.y1f_c00393{bottom:267.840000pt;}
.y1e_c00393{bottom:295.440000pt;}
.y1d_c00393{bottom:323.040000pt;}
.y1c_c00393{bottom:350.640000pt;}
.y1b_c00393{bottom:378.240000pt;}
.y1a_c00393{bottom:405.840000pt;}
.y19_c00393{bottom:433.440000pt;}
.y18_c00393{bottom:461.120000pt;}
.y17_c00393{bottom:489.120000pt;}
.y16_c00393{bottom:516.720000pt;}
.y15_c00393{bottom:544.320000pt;}
.y14_c00393{bottom:572.080000pt;}
.y13_c00393{bottom:600.240000pt;}
.y12_c00393{bottom:628.240000pt;}
.y11_c00393{bottom:655.840000pt;}
.y10_c00393{bottom:683.440000pt;}
.yf_c00393{bottom:711.040000pt;}
.ye_c00393{bottom:738.640000pt;}
.yd_c00393{bottom:766.160000pt;}
.yc_c00393{bottom:793.760000pt;}
.yb_c00393{bottom:821.360000pt;}
.ya_c00393{bottom:848.960000pt;}
.y9_c00393{bottom:876.560000pt;}
.y8_c00393{bottom:904.160000pt;}
.y7_c00393{bottom:931.760000pt;}
.y6_c00393{bottom:959.360000pt;}
.y5_c00393{bottom:986.960000pt;}
.y4_c00393{bottom:1005.360000pt;}
.y3_c00393{bottom:1023.036000pt;}
.y2_c00393{bottom:1036.800000pt;}
.y1_c00393{bottom:1064.400000pt;}
.h6_c00393{height:44.468750pt;}
.h2_c00393{height:47.109375pt;}
.h3_c00393{height:62.812500pt;}
.h4_c00393{height:66.750000pt;}
.h5_c00393{height:127.593750pt;}
.h0_c00393{height:1122.560000pt;}
.h1_c00393{height:1122.666667pt;}
.w0_c00393{width:793.840000pt;}
.w1_c00393{width:794.000000pt;}
.x0_c00393{left:0.000000pt;}
.x2_c00393{left:113.440000pt;}
.x3_c00393{left:137.440000pt;}
.x1_c00393{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a617b0d05d87d07cbb4416e2.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_8d18f20ccc6522b8e988ac5c.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_6ca118a67b9663f4c6357845.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:3.333984;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_bfbd615acc59f1c55b48567c.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;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_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);}
.v1_c00394{vertical-align:-14.760000px;}
.v5_c00394{vertical-align:-10.800000px;}
.v0_c00394{vertical-align:0.000000px;}
.v2_c00394{vertical-align:14.760000px;}
.v9_c00394{vertical-align:27.000000px;}
.v4_c00394{vertical-align:31.320000px;}
.v6_c00394{vertical-align:36.360000px;}
.v3_c00394{vertical-align:42.120000px;}
.v8_c00394{vertical-align:67.680000px;}
.v7_c00394{vertical-align:78.480000px;}
.ls12_c00394{letter-spacing:-0.576000px;}
.ls13_c00394{letter-spacing:-0.360000px;}
.lsd_c00394{letter-spacing:-0.108000px;}
.ls11_c00394{letter-spacing:-0.102240px;}
.lsf_c00394{letter-spacing:-0.042120px;}
.lsc_c00394{letter-spacing:0.000000px;}
.ls2_c00394{letter-spacing:0.072000px;}
.ls10_c00394{letter-spacing:0.102240px;}
.lse_c00394{letter-spacing:0.144000px;}
.lsa_c00394{letter-spacing:0.180000px;}
.ls5_c00394{letter-spacing:0.360000px;}
.ls8_c00394{letter-spacing:0.720000px;}
.lsb_c00394{letter-spacing:0.734400px;}
.ls7_c00394{letter-spacing:6.480000px;}
.ls9_c00394{letter-spacing:9.720000px;}
.ls6_c00394{letter-spacing:14.760000px;}
.ls3_c00394{letter-spacing:17.280000px;}
.ls1_c00394{letter-spacing:20.016000px;}
.ls0_c00394{letter-spacing:22.961520px;}
.ls4_c00394{letter-spacing:23.321520px;}
.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:-72.000000px;}
.ws6_c00394{word-spacing:-51.222240px;}
.ws5_c00394{word-spacing:-51.120000px;}
.ws8_c00394{word-spacing:-51.017760px;}
.ws7_c00394{word-spacing:-42.077880px;}
.ws1_c00394{word-spacing:-18.144000px;}
.ws9_c00394{word-spacing:-18.072000px;}
.ws4_c00394{word-spacing:-18.000000px;}
.ws2_c00394{word-spacing:-15.840000px;}
.ws30_c00394{word-spacing:-0.144000px;}
.wse_c00394{word-spacing:-0.072000px;}
.wsa_c00394{word-spacing:0.000000px;}
.ws1b_c00394{word-spacing:0.042120px;}
.wsc_c00394{word-spacing:0.162000px;}
.wsb_c00394{word-spacing:0.270000px;}
.ws28_c00394{word-spacing:0.360000px;}
.ws27_c00394{word-spacing:0.576000px;}
.ws2a_c00394{word-spacing:1.008000px;}
.ws24_c00394{word-spacing:1.368000px;}
.ws23_c00394{word-spacing:1.440000px;}
.wsd_c00394{word-spacing:2.520000px;}
.ws3_c00394{word-spacing:4.176000px;}
.ws13_c00394{word-spacing:4.248000px;}
.wsf_c00394{word-spacing:5.040000px;}
.ws19_c00394{word-spacing:5.256000px;}
.ws18_c00394{word-spacing:5.400000px;}
.ws2b_c00394{word-spacing:6.120000px;}
.ws26_c00394{word-spacing:6.768000px;}
.ws29_c00394{word-spacing:7.128000px;}
.ws22_c00394{word-spacing:7.200000px;}
.ws21_c00394{word-spacing:7.488000px;}
.ws17_c00394{word-spacing:7.920000px;}
.ws20_c00394{word-spacing:9.720000px;}
.ws11_c00394{word-spacing:10.728000px;}
.ws12_c00394{word-spacing:10.800000px;}
.ws25_c00394{word-spacing:13.248000px;}
.ws15_c00394{word-spacing:13.968000px;}
.ws14_c00394{word-spacing:14.040000px;}
.ws1a_c00394{word-spacing:14.328000px;}
.ws1c_c00394{word-spacing:14.688000px;}
.ws1d_c00394{word-spacing:14.760000px;}
.ws2c_c00394{word-spacing:15.120000px;}
.ws16_c00394{word-spacing:15.408000px;}
.ws2d_c00394{word-spacing:15.840000px;}
.ws2f_c00394{word-spacing:16.848000px;}
.ws31_c00394{word-spacing:16.920000px;}
.ws10_c00394{word-spacing:17.208000px;}
.ws2e_c00394{word-spacing:17.280000px;}
.ws1f_c00394{word-spacing:19.080000px;}
.ws1e_c00394{word-spacing:19.368000px;}
._2_c00394{margin-left:-6.300000px;}
._6_c00394{margin-left:-4.032000px;}
._1_c00394{margin-left:-1.058400px;}
._0_c00394{width:1.220400px;}
._3_c00394{width:2.736000px;}
._4_c00394{width:3.855600px;}
._7_c00394{width:7.092000px;}
._5_c00394{width:14.320800px;}
._8_c00394{width:15.480000px;}
._9_c00394{width:16.826400px;}
.fc0_c00394{color:rgb(0,0,0);}
.fs3_c00394{font-size:42.120000px;}
.fs4_c00394{font-size:47.880000px;}
.fs2_c00394{font-size:51.120000px;}
.fs0_c00394{font-size:54.000000px;}
.fs1_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.y28_c00394{bottom:57.240000px;}
.y27_c00394{bottom:116.820000px;}
.y26_c00394{bottom:147.870000px;}
.y25_c00394{bottom:178.920000px;}
.y24_c00394{bottom:209.970000px;}
.y23_c00394{bottom:241.020000px;}
.y22_c00394{bottom:272.070000px;}
.y21_c00394{bottom:303.030000px;}
.y20_c00394{bottom:334.080000px;}
.y1f_c00394{bottom:365.130000px;}
.y1e_c00394{bottom:396.180000px;}
.y1d_c00394{bottom:427.230000px;}
.y1c_c00394{bottom:458.280000px;}
.y1b_c00394{bottom:489.330000px;}
.y1a_c00394{bottom:519.390000px;}
.y19_c00394{bottom:528.480000px;}
.y18_c00394{bottom:565.470000px;}
.y17_c00394{bottom:595.530000px;}
.y16_c00394{bottom:604.620000px;}
.y15_c00394{bottom:641.610000px;}
.y14_c00394{bottom:672.660000px;}
.y13_c00394{bottom:703.710000px;}
.y12_c00394{bottom:734.760000px;}
.y11_c00394{bottom:765.810000px;}
.y10_c00394{bottom:797.040000px;}
.yf_c00394{bottom:828.630000px;}
.ye_c00394{bottom:860.130000px;}
.yd_c00394{bottom:891.180000px;}
.yc_c00394{bottom:922.230000px;}
.yb_c00394{bottom:953.460000px;}
.ya_c00394{bottom:984.960000px;}
.y9_c00394{bottom:1016.190000px;}
.y8_c00394{bottom:1047.690000px;}
.y7_c00394{bottom:1078.830000px;}
.y6_c00394{bottom:1110.330000px;}
.y5_c00394{bottom:1131.030000px;}
.y4_c00394{bottom:1150.920000px;}
.y3_c00394{bottom:1166.404500px;}
.y2_c00394{bottom:1181.970000px;}
.y1_c00394{bottom:1197.450000px;}
.h6_c00394{height:50.027344px;}
.h3_c00394{height:52.971680px;}
.h2_c00394{height:52.998047px;}
.h4_c00394{height:70.664062px;}
.ha_c00394{height:73.991602px;}
.h5_c00394{height:143.542969px;}
.h7_c00394{height:144.035508px;}
.h9_c00394{height:179.902969px;}
.h8_c00394{height:180.395508px;}
.h0_c00394{height:1262.880000px;}
.h1_c00394{height:1263.000000px;}
.w0_c00394{width:893.070000px;}
.w1_c00394{width:893.250000px;}
.x0_c00394{left:0.000000px;}
.x3_c00394{left:127.620000px;}
.x4_c00394{left:318.960000px;}
.x6_c00394{left:413.010000px;}
.x2_c00394{left:425.160000px;}
.x1_c00394{left:446.580000px;}
.x5_c00394{left:594.810000px;}
.x7_c00394{left:738.540000px;}
@media print{
.v1_c00394{vertical-align:-13.120000pt;}
.v5_c00394{vertical-align:-9.600000pt;}
.v0_c00394{vertical-align:0.000000pt;}
.v2_c00394{vertical-align:13.120000pt;}
.v9_c00394{vertical-align:24.000000pt;}
.v4_c00394{vertical-align:27.840000pt;}
.v6_c00394{vertical-align:32.320000pt;}
.v3_c00394{vertical-align:37.440000pt;}
.v8_c00394{vertical-align:60.160000pt;}
.v7_c00394{vertical-align:69.760000pt;}
.ls12_c00394{letter-spacing:-0.512000pt;}
.ls13_c00394{letter-spacing:-0.320000pt;}
.lsd_c00394{letter-spacing:-0.096000pt;}
.ls11_c00394{letter-spacing:-0.090880pt;}
.lsf_c00394{letter-spacing:-0.037440pt;}
.lsc_c00394{letter-spacing:0.000000pt;}
.ls2_c00394{letter-spacing:0.064000pt;}
.ls10_c00394{letter-spacing:0.090880pt;}
.lse_c00394{letter-spacing:0.128000pt;}
.lsa_c00394{letter-spacing:0.160000pt;}
.ls5_c00394{letter-spacing:0.320000pt;}
.ls8_c00394{letter-spacing:0.640000pt;}
.lsb_c00394{letter-spacing:0.652800pt;}
.ls7_c00394{letter-spacing:5.760000pt;}
.ls9_c00394{letter-spacing:8.640000pt;}
.ls6_c00394{letter-spacing:13.120000pt;}
.ls3_c00394{letter-spacing:15.360000pt;}
.ls1_c00394{letter-spacing:17.792000pt;}
.ls0_c00394{letter-spacing:20.410240pt;}
.ls4_c00394{letter-spacing:20.730240pt;}
.ws0_c00394{word-spacing:-64.000000pt;}
.ws6_c00394{word-spacing:-45.530880pt;}
.ws5_c00394{word-spacing:-45.440000pt;}
.ws8_c00394{word-spacing:-45.349120pt;}
.ws7_c00394{word-spacing:-37.402560pt;}
.ws1_c00394{word-spacing:-16.128000pt;}
.ws9_c00394{word-spacing:-16.064000pt;}
.ws4_c00394{word-spacing:-16.000000pt;}
.ws2_c00394{word-spacing:-14.080000pt;}
.ws30_c00394{word-spacing:-0.128000pt;}
.wse_c00394{word-spacing:-0.064000pt;}
.wsa_c00394{word-spacing:0.000000pt;}
.ws1b_c00394{word-spacing:0.037440pt;}
.wsc_c00394{word-spacing:0.144000pt;}
.wsb_c00394{word-spacing:0.240000pt;}
.ws28_c00394{word-spacing:0.320000pt;}
.ws27_c00394{word-spacing:0.512000pt;}
.ws2a_c00394{word-spacing:0.896000pt;}
.ws24_c00394{word-spacing:1.216000pt;}
.ws23_c00394{word-spacing:1.280000pt;}
.wsd_c00394{word-spacing:2.240000pt;}
.ws3_c00394{word-spacing:3.712000pt;}
.ws13_c00394{word-spacing:3.776000pt;}
.wsf_c00394{word-spacing:4.480000pt;}
.ws19_c00394{word-spacing:4.672000pt;}
.ws18_c00394{word-spacing:4.800000pt;}
.ws2b_c00394{word-spacing:5.440000pt;}
.ws26_c00394{word-spacing:6.016000pt;}
.ws29_c00394{word-spacing:6.336000pt;}
.ws22_c00394{word-spacing:6.400000pt;}
.ws21_c00394{word-spacing:6.656000pt;}
.ws17_c00394{word-spacing:7.040000pt;}
.ws20_c00394{word-spacing:8.640000pt;}
.ws11_c00394{word-spacing:9.536000pt;}
.ws12_c00394{word-spacing:9.600000pt;}
.ws25_c00394{word-spacing:11.776000pt;}
.ws15_c00394{word-spacing:12.416000pt;}
.ws14_c00394{word-spacing:12.480000pt;}
.ws1a_c00394{word-spacing:12.736000pt;}
.ws1c_c00394{word-spacing:13.056000pt;}
.ws1d_c00394{word-spacing:13.120000pt;}
.ws2c_c00394{word-spacing:13.440000pt;}
.ws16_c00394{word-spacing:13.696000pt;}
.ws2d_c00394{word-spacing:14.080000pt;}
.ws2f_c00394{word-spacing:14.976000pt;}
.ws31_c00394{word-spacing:15.040000pt;}
.ws10_c00394{word-spacing:15.296000pt;}
.ws2e_c00394{word-spacing:15.360000pt;}
.ws1f_c00394{word-spacing:16.960000pt;}
.ws1e_c00394{word-spacing:17.216000pt;}
._2_c00394{margin-left:-5.600000pt;}
._6_c00394{margin-left:-3.584000pt;}
._1_c00394{margin-left:-0.940800pt;}
._0_c00394{width:1.084800pt;}
._3_c00394{width:2.432000pt;}
._4_c00394{width:3.427200pt;}
._7_c00394{width:6.304000pt;}
._5_c00394{width:12.729600pt;}
._8_c00394{width:13.760000pt;}
._9_c00394{width:14.956800pt;}
.fs3_c00394{font-size:37.440000pt;}
.fs4_c00394{font-size:42.560000pt;}
.fs2_c00394{font-size:45.440000pt;}
.fs0_c00394{font-size:48.000000pt;}
.fs1_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y28_c00394{bottom:50.880000pt;}
.y27_c00394{bottom:103.840000pt;}
.y26_c00394{bottom:131.440000pt;}
.y25_c00394{bottom:159.040000pt;}
.y24_c00394{bottom:186.640000pt;}
.y23_c00394{bottom:214.240000pt;}
.y22_c00394{bottom:241.840000pt;}
.y21_c00394{bottom:269.360000pt;}
.y20_c00394{bottom:296.960000pt;}
.y1f_c00394{bottom:324.560000pt;}
.y1e_c00394{bottom:352.160000pt;}
.y1d_c00394{bottom:379.760000pt;}
.y1c_c00394{bottom:407.360000pt;}
.y1b_c00394{bottom:434.960000pt;}
.y1a_c00394{bottom:461.680000pt;}
.y19_c00394{bottom:469.760000pt;}
.y18_c00394{bottom:502.640000pt;}
.y17_c00394{bottom:529.360000pt;}
.y16_c00394{bottom:537.440000pt;}
.y15_c00394{bottom:570.320000pt;}
.y14_c00394{bottom:597.920000pt;}
.y13_c00394{bottom:625.520000pt;}
.y12_c00394{bottom:653.120000pt;}
.y11_c00394{bottom:680.720000pt;}
.y10_c00394{bottom:708.480000pt;}
.yf_c00394{bottom:736.560000pt;}
.ye_c00394{bottom:764.560000pt;}
.yd_c00394{bottom:792.160000pt;}
.yc_c00394{bottom:819.760000pt;}
.yb_c00394{bottom:847.520000pt;}
.ya_c00394{bottom:875.520000pt;}
.y9_c00394{bottom:903.280000pt;}
.y8_c00394{bottom:931.280000pt;}
.y7_c00394{bottom:958.960000pt;}
.y6_c00394{bottom:986.960000pt;}
.y5_c00394{bottom:1005.360000pt;}
.y4_c00394{bottom:1023.040000pt;}
.y3_c00394{bottom:1036.804000pt;}
.y2_c00394{bottom:1050.640000pt;}
.y1_c00394{bottom:1064.400000pt;}
.h6_c00394{height:44.468750pt;}
.h3_c00394{height:47.085938pt;}
.h2_c00394{height:47.109375pt;}
.h4_c00394{height:62.812500pt;}
.ha_c00394{height:65.770312pt;}
.h5_c00394{height:127.593750pt;}
.h7_c00394{height:128.031563pt;}
.h9_c00394{height:159.913750pt;}
.h8_c00394{height:160.351563pt;}
.h0_c00394{height:1122.560000pt;}
.h1_c00394{height:1122.666667pt;}
.w0_c00394{width:793.840000pt;}
.w1_c00394{width:794.000000pt;}
.x0_c00394{left:0.000000pt;}
.x3_c00394{left:113.440000pt;}
.x4_c00394{left:283.520000pt;}
.x6_c00394{left:367.120000pt;}
.x2_c00394{left:377.920000pt;}
.x1_c00394{left:396.960000pt;}
.x5_c00394{left:528.720000pt;}
.x7_c00394{left:656.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_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_a7ef5a54363c4a8c6d461fac.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.284180;font-style: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);}
.v1_c00395{vertical-align:-61.938000px;}
.v0_c00395{vertical-align:0.000000px;}
.lsa_c00395{letter-spacing:-0.576000px;}
.ls8_c00395{letter-spacing:-0.072000px;}
.ls7_c00395{letter-spacing:0.000000px;}
.ls4_c00395{letter-spacing:0.072000px;}
.ls9_c00395{letter-spacing:0.144000px;}
.ls5_c00395{letter-spacing:0.720000px;}
.ls6_c00395{letter-spacing:3.240000px;}
.ls1_c00395{letter-spacing:4.680000px;}
.ls3_c00395{letter-spacing:4.701600px;}
.ls2_c00395{letter-spacing:12.240000px;}
.ls0_c00395{letter-spacing:319.518000px;}
.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:-17.928000px;}
.ws2_c00395{word-spacing:-0.162000px;}
.wsa_c00395{word-spacing:-0.072000px;}
.ws1_c00395{word-spacing:0.000000px;}
.ws7_c00395{word-spacing:0.360000px;}
.ws20_c00395{word-spacing:0.936000px;}
.ws1f_c00395{word-spacing:1.008000px;}
.ws12_c00395{word-spacing:1.440000px;}
.ws1a_c00395{word-spacing:2.160000px;}
.ws26_c00395{word-spacing:3.168000px;}
.ws25_c00395{word-spacing:3.240000px;}
.ws5_c00395{word-spacing:4.608000px;}
.ws6_c00395{word-spacing:4.680000px;}
.ws10_c00395{word-spacing:4.968000px;}
.ws19_c00395{word-spacing:5.256000px;}
.ws3_c00395{word-spacing:6.408000px;}
.ws4_c00395{word-spacing:6.480000px;}
.ws24_c00395{word-spacing:6.840000px;}
.ws15_c00395{word-spacing:7.488000px;}
.ws14_c00395{word-spacing:7.560000px;}
.ws1b_c00395{word-spacing:7.848000px;}
.wsb_c00395{word-spacing:9.288000px;}
.wsc_c00395{word-spacing:9.360000px;}
.wse_c00395{word-spacing:10.728000px;}
.wsf_c00395{word-spacing:11.160000px;}
.ws11_c00395{word-spacing:11.448000px;}
.ws22_c00395{word-spacing:11.736000px;}
.ws23_c00395{word-spacing:11.808000px;}
.ws8_c00395{word-spacing:12.168000px;}
.ws9_c00395{word-spacing:12.240000px;}
.ws27_c00395{word-spacing:13.320000px;}
.ws1d_c00395{word-spacing:15.480000px;}
.ws1e_c00395{word-spacing:15.840000px;}
.ws13_c00395{word-spacing:17.640000px;}
.ws16_c00395{word-spacing:18.000000px;}
.wsd_c00395{word-spacing:19.728000px;}
.ws21_c00395{word-spacing:23.328000px;}
.ws1c_c00395{word-spacing:29.448000px;}
.ws18_c00395{word-spacing:33.408000px;}
.ws17_c00395{word-spacing:33.696000px;}
._0_c00395{margin-left:-1.087200px;}
._1_c00395{width:1.065600px;}
._2_c00395{width:2.088000px;}
._3_c00395{width:5.839200px;}
.fc0_c00395{color:rgb(0,0,0);}
.fs0_c00395{font-size:54.000000px;}
.fs1_c00395{font-size:72.000000px;}
.y0_c00395{bottom:0.000000px;}
.y26_c00395{bottom:57.240000px;}
.y25_c00395{bottom:116.820000px;}
.y24_c00395{bottom:147.870000px;}
.y23_c00395{bottom:178.920000px;}
.y22_c00395{bottom:209.970000px;}
.y21_c00395{bottom:241.020000px;}
.y20_c00395{bottom:272.070000px;}
.y1f_c00395{bottom:303.120000px;}
.y1e_c00395{bottom:334.170000px;}
.y1d_c00395{bottom:365.220000px;}
.y1c_c00395{bottom:396.270000px;}
.y1b_c00395{bottom:427.320000px;}
.y1a_c00395{bottom:458.370000px;}
.y19_c00395{bottom:489.420000px;}
.y18_c00395{bottom:520.470000px;}
.y17_c00395{bottom:551.520000px;}
.y16_c00395{bottom:582.570000px;}
.y15_c00395{bottom:613.620000px;}
.y14_c00395{bottom:644.670000px;}
.y13_c00395{bottom:675.720000px;}
.y12_c00395{bottom:706.770000px;}
.y11_c00395{bottom:737.820000px;}
.y10_c00395{bottom:768.870000px;}
.yf_c00395{bottom:799.920000px;}
.ye_c00395{bottom:830.970000px;}
.yd_c00395{bottom:861.930000px;}
.yc_c00395{bottom:892.980000px;}
.yb_c00395{bottom:924.030000px;}
.ya_c00395{bottom:955.080000px;}
.y9_c00395{bottom:986.130000px;}
.y8_c00395{bottom:1017.180000px;}
.y7_c00395{bottom:1048.230000px;}
.y6_c00395{bottom:1079.280000px;}
.y5_c00395{bottom:1110.330000px;}
.y4_c00395{bottom:1131.030000px;}
.y3_c00395{bottom:1150.915500px;}
.y2_c00395{bottom:1166.400000px;}
.y1_c00395{bottom:1197.450000px;}
.h2_c00395{height:52.998047px;}
.h3_c00395{height:70.664062px;}
.h0_c00395{height:1262.880000px;}
.h1_c00395{height:1263.000000px;}
.w0_c00395{width:893.070000px;}
.w1_c00395{width:893.250000px;}
.x0_c00395{left:0.000000px;}
.x2_c00395{left:127.620000px;}
.x1_c00395{left:446.580000px;}
@media print{
.v1_c00395{vertical-align:-55.056000pt;}
.v0_c00395{vertical-align:0.000000pt;}
.lsa_c00395{letter-spacing:-0.512000pt;}
.ls8_c00395{letter-spacing:-0.064000pt;}
.ls7_c00395{letter-spacing:0.000000pt;}
.ls4_c00395{letter-spacing:0.064000pt;}
.ls9_c00395{letter-spacing:0.128000pt;}
.ls5_c00395{letter-spacing:0.640000pt;}
.ls6_c00395{letter-spacing:2.880000pt;}
.ls1_c00395{letter-spacing:4.160000pt;}
.ls3_c00395{letter-spacing:4.179200pt;}
.ls2_c00395{letter-spacing:10.880000pt;}
.ls0_c00395{letter-spacing:284.016000pt;}
.ws0_c00395{word-spacing:-15.936000pt;}
.ws2_c00395{word-spacing:-0.144000pt;}
.wsa_c00395{word-spacing:-0.064000pt;}
.ws1_c00395{word-spacing:0.000000pt;}
.ws7_c00395{word-spacing:0.320000pt;}
.ws20_c00395{word-spacing:0.832000pt;}
.ws1f_c00395{word-spacing:0.896000pt;}
.ws12_c00395{word-spacing:1.280000pt;}
.ws1a_c00395{word-spacing:1.920000pt;}
.ws26_c00395{word-spacing:2.816000pt;}
.ws25_c00395{word-spacing:2.880000pt;}
.ws5_c00395{word-spacing:4.096000pt;}
.ws6_c00395{word-spacing:4.160000pt;}
.ws10_c00395{word-spacing:4.416000pt;}
.ws19_c00395{word-spacing:4.672000pt;}
.ws3_c00395{word-spacing:5.696000pt;}
.ws4_c00395{word-spacing:5.760000pt;}
.ws24_c00395{word-spacing:6.080000pt;}
.ws15_c00395{word-spacing:6.656000pt;}
.ws14_c00395{word-spacing:6.720000pt;}
.ws1b_c00395{word-spacing:6.976000pt;}
.wsb_c00395{word-spacing:8.256000pt;}
.wsc_c00395{word-spacing:8.320000pt;}
.wse_c00395{word-spacing:9.536000pt;}
.wsf_c00395{word-spacing:9.920000pt;}
.ws11_c00395{word-spacing:10.176000pt;}
.ws22_c00395{word-spacing:10.432000pt;}
.ws23_c00395{word-spacing:10.496000pt;}
.ws8_c00395{word-spacing:10.816000pt;}
.ws9_c00395{word-spacing:10.880000pt;}
.ws27_c00395{word-spacing:11.840000pt;}
.ws1d_c00395{word-spacing:13.760000pt;}
.ws1e_c00395{word-spacing:14.080000pt;}
.ws13_c00395{word-spacing:15.680000pt;}
.ws16_c00395{word-spacing:16.000000pt;}
.wsd_c00395{word-spacing:17.536000pt;}
.ws21_c00395{word-spacing:20.736000pt;}
.ws1c_c00395{word-spacing:26.176000pt;}
.ws18_c00395{word-spacing:29.696000pt;}
.ws17_c00395{word-spacing:29.952000pt;}
._0_c00395{margin-left:-0.966400pt;}
._1_c00395{width:0.947200pt;}
._2_c00395{width:1.856000pt;}
._3_c00395{width:5.190400pt;}
.fs0_c00395{font-size:48.000000pt;}
.fs1_c00395{font-size:64.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y26_c00395{bottom:50.880000pt;}
.y25_c00395{bottom:103.840000pt;}
.y24_c00395{bottom:131.440000pt;}
.y23_c00395{bottom:159.040000pt;}
.y22_c00395{bottom:186.640000pt;}
.y21_c00395{bottom:214.240000pt;}
.y20_c00395{bottom:241.840000pt;}
.y1f_c00395{bottom:269.440000pt;}
.y1e_c00395{bottom:297.040000pt;}
.y1d_c00395{bottom:324.640000pt;}
.y1c_c00395{bottom:352.240000pt;}
.y1b_c00395{bottom:379.840000pt;}
.y1a_c00395{bottom:407.440000pt;}
.y19_c00395{bottom:435.040000pt;}
.y18_c00395{bottom:462.640000pt;}
.y17_c00395{bottom:490.240000pt;}
.y16_c00395{bottom:517.840000pt;}
.y15_c00395{bottom:545.440000pt;}
.y14_c00395{bottom:573.040000pt;}
.y13_c00395{bottom:600.640000pt;}
.y12_c00395{bottom:628.240000pt;}
.y11_c00395{bottom:655.840000pt;}
.y10_c00395{bottom:683.440000pt;}
.yf_c00395{bottom:711.040000pt;}
.ye_c00395{bottom:738.640000pt;}
.yd_c00395{bottom:766.160000pt;}
.yc_c00395{bottom:793.760000pt;}
.yb_c00395{bottom:821.360000pt;}
.ya_c00395{bottom:848.960000pt;}
.y9_c00395{bottom:876.560000pt;}
.y8_c00395{bottom:904.160000pt;}
.y7_c00395{bottom:931.760000pt;}
.y6_c00395{bottom:959.360000pt;}
.y5_c00395{bottom:986.960000pt;}
.y4_c00395{bottom:1005.360000pt;}
.y3_c00395{bottom:1023.036000pt;}
.y2_c00395{bottom:1036.800000pt;}
.y1_c00395{bottom:1064.400000pt;}
.h2_c00395{height:47.109375pt;}
.h3_c00395{height:62.812500pt;}
.h0_c00395{height:1122.560000pt;}
.h1_c00395{height:1122.666667pt;}
.w0_c00395{width:793.840000pt;}
.w1_c00395{width:794.000000pt;}
.x0_c00395{left:0.000000pt;}
.x2_c00395{left:113.440000pt;}
.x1_c00395{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f24aadde9345500c45a09857.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls8_c00396{letter-spacing:-0.216000px;}
.ls6_c00396{letter-spacing:-0.108000px;}
.ls5_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:0.072000px;}
.ls3_c00396{letter-spacing:0.144000px;}
.ls7_c00396{letter-spacing:0.360000px;}
.ls1_c00396{letter-spacing:3.240000px;}
.ls2_c00396{letter-spacing:9.000000px;}
.ls4_c00396{letter-spacing:32.040000px;}
.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:-18.144000px;}
.ws1_c00396{word-spacing:-18.072000px;}
.ws3_c00396{word-spacing:-18.000000px;}
.ws2_c00396{word-spacing:-17.784000px;}
.wsd_c00396{word-spacing:-0.360000px;}
.ws13_c00396{word-spacing:-0.144000px;}
.wse_c00396{word-spacing:-0.072000px;}
.ws4_c00396{word-spacing:0.000000px;}
.ws6_c00396{word-spacing:0.162000px;}
.ws5_c00396{word-spacing:0.270000px;}
.ws14_c00396{word-spacing:3.168000px;}
.ws12_c00396{word-spacing:3.240000px;}
.ws7_c00396{word-spacing:4.248000px;}
.ws9_c00396{word-spacing:4.320000px;}
.ws15_c00396{word-spacing:8.928000px;}
.wsf_c00396{word-spacing:9.000000px;}
.ws8_c00396{word-spacing:12.888000px;}
.ws11_c00396{word-spacing:17.928000px;}
.ws10_c00396{word-spacing:18.000000px;}
.wsa_c00396{word-spacing:31.248000px;}
.wsc_c00396{word-spacing:31.608000px;}
.wsb_c00396{word-spacing:31.680000px;}
.ws16_c00396{word-spacing:31.968000px;}
.ws17_c00396{word-spacing:32.040000px;}
._1_c00396{margin-left:-1.058400px;}
._0_c00396{width:1.220400px;}
._3_c00396{width:3.384000px;}
._2_c00396{width:8.906400px;}
._4_c00396{width:32.040000px;}
._5_c00396{width:846.000000px;}
.fc0_c00396{color:rgb(0,0,0);}
.fs0_c00396{font-size:54.000000px;}
.fs1_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.y16_c00396{bottom:57.240000px;}
.y15_c00396{bottom:644.670000px;}
.y14_c00396{bottom:675.720000px;}
.y13_c00396{bottom:706.770000px;}
.y12_c00396{bottom:737.820000px;}
.y11_c00396{bottom:768.870000px;}
.y10_c00396{bottom:799.920000px;}
.yf_c00396{bottom:830.970000px;}
.ye_c00396{bottom:861.930000px;}
.yd_c00396{bottom:892.980000px;}
.yc_c00396{bottom:924.030000px;}
.yb_c00396{bottom:955.080000px;}
.ya_c00396{bottom:986.130000px;}
.y9_c00396{bottom:1017.180000px;}
.y8_c00396{bottom:1048.230000px;}
.y7_c00396{bottom:1079.280000px;}
.y6_c00396{bottom:1110.330000px;}
.y5_c00396{bottom:1131.030000px;}
.y4_c00396{bottom:1150.920000px;}
.y3_c00396{bottom:1166.404500px;}
.y2_c00396{bottom:1181.970000px;}
.y1_c00396{bottom:1197.450000px;}
.h3_c00396{height:52.971680px;}
.h2_c00396{height:52.998047px;}
.h4_c00396{height:70.664062px;}
.h0_c00396{height:1262.880000px;}
.h1_c00396{height:1263.000000px;}
.w0_c00396{width:893.070000px;}
.w1_c00396{width:893.250000px;}
.x0_c00396{left:0.000000px;}
.x3_c00396{left:127.620000px;}
.x2_c00396{left:425.160000px;}
.x1_c00396{left:446.580000px;}
.x4_c00396{left:738.540000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls8_c00396{letter-spacing:-0.192000pt;}
.ls6_c00396{letter-spacing:-0.096000pt;}
.ls5_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:0.064000pt;}
.ls3_c00396{letter-spacing:0.128000pt;}
.ls7_c00396{letter-spacing:0.320000pt;}
.ls1_c00396{letter-spacing:2.880000pt;}
.ls2_c00396{letter-spacing:8.000000pt;}
.ls4_c00396{letter-spacing:28.480000pt;}
.ws0_c00396{word-spacing:-16.128000pt;}
.ws1_c00396{word-spacing:-16.064000pt;}
.ws3_c00396{word-spacing:-16.000000pt;}
.ws2_c00396{word-spacing:-15.808000pt;}
.wsd_c00396{word-spacing:-0.320000pt;}
.ws13_c00396{word-spacing:-0.128000pt;}
.wse_c00396{word-spacing:-0.064000pt;}
.ws4_c00396{word-spacing:0.000000pt;}
.ws6_c00396{word-spacing:0.144000pt;}
.ws5_c00396{word-spacing:0.240000pt;}
.ws14_c00396{word-spacing:2.816000pt;}
.ws12_c00396{word-spacing:2.880000pt;}
.ws7_c00396{word-spacing:3.776000pt;}
.ws9_c00396{word-spacing:3.840000pt;}
.ws15_c00396{word-spacing:7.936000pt;}
.wsf_c00396{word-spacing:8.000000pt;}
.ws8_c00396{word-spacing:11.456000pt;}
.ws11_c00396{word-spacing:15.936000pt;}
.ws10_c00396{word-spacing:16.000000pt;}
.wsa_c00396{word-spacing:27.776000pt;}
.wsc_c00396{word-spacing:28.096000pt;}
.wsb_c00396{word-spacing:28.160000pt;}
.ws16_c00396{word-spacing:28.416000pt;}
.ws17_c00396{word-spacing:28.480000pt;}
._1_c00396{margin-left:-0.940800pt;}
._0_c00396{width:1.084800pt;}
._3_c00396{width:3.008000pt;}
._2_c00396{width:7.916800pt;}
._4_c00396{width:28.480000pt;}
._5_c00396{width:752.000000pt;}
.fs0_c00396{font-size:48.000000pt;}
.fs1_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y16_c00396{bottom:50.880000pt;}
.y15_c00396{bottom:573.040000pt;}
.y14_c00396{bottom:600.640000pt;}
.y13_c00396{bottom:628.240000pt;}
.y12_c00396{bottom:655.840000pt;}
.y11_c00396{bottom:683.440000pt;}
.y10_c00396{bottom:711.040000pt;}
.yf_c00396{bottom:738.640000pt;}
.ye_c00396{bottom:766.160000pt;}
.yd_c00396{bottom:793.760000pt;}
.yc_c00396{bottom:821.360000pt;}
.yb_c00396{bottom:848.960000pt;}
.ya_c00396{bottom:876.560000pt;}
.y9_c00396{bottom:904.160000pt;}
.y8_c00396{bottom:931.760000pt;}
.y7_c00396{bottom:959.360000pt;}
.y6_c00396{bottom:986.960000pt;}
.y5_c00396{bottom:1005.360000pt;}
.y4_c00396{bottom:1023.040000pt;}
.y3_c00396{bottom:1036.804000pt;}
.y2_c00396{bottom:1050.640000pt;}
.y1_c00396{bottom:1064.400000pt;}
.h3_c00396{height:47.085938pt;}
.h2_c00396{height:47.109375pt;}
.h4_c00396{height:62.812500pt;}
.h0_c00396{height:1122.560000pt;}
.h1_c00396{height:1122.666667pt;}
.w0_c00396{width:793.840000pt;}
.w1_c00396{width:794.000000pt;}
.x0_c00396{left:0.000000pt;}
.x3_c00396{left:113.440000pt;}
.x2_c00396{left:377.920000pt;}
.x1_c00396{left:396.960000pt;}
.x4_c00396{left:656.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_c00397 {
    display:none;
  }
  .loading-indicator_c00397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00397 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00397 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00397" -> "#page-container .classname_c00397")
 */
.pf_c00397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00397 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00397 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00397 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00397 {overflow:visible;}
  }
}
.c_c00397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00397 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00397:after { /* webkit #35443 */
  content: '';
}
.t_c00397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00397 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00397 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00397 { /* info for Javascript */
  display:none;
}
.l_c00397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00397:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00397;src:url('chunks/assets/font_ea065da2b51fe36894d43e68.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00397{vertical-align:-61.938000px;}
.v0_c00397{vertical-align:0.000000px;}
.ls1_c00397{letter-spacing:0.000000px;}
.ls0_c00397{letter-spacing:319.518000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00397{word-spacing:-0.162000px;}
.ws0_c00397{word-spacing:0.000000px;}
._0_c00397{width:846.000000px;}
.fc0_c00397{color:rgb(0,0,0);}
.fs0_c00397{font-size:54.000000px;}
.fs1_c00397{font-size:72.000000px;}
.y0_c00397{bottom:0.000000px;}
.y7_c00397{bottom:57.240000px;}
.y6_c00397{bottom:1079.280000px;}
.y5_c00397{bottom:1110.330000px;}
.y4_c00397{bottom:1131.030000px;}
.y3_c00397{bottom:1150.915500px;}
.y2_c00397{bottom:1166.400000px;}
.y1_c00397{bottom:1197.450000px;}
.h2_c00397{height:52.998047px;}
.h3_c00397{height:70.664062px;}
.h0_c00397{height:1262.880000px;}
.h1_c00397{height:1263.000000px;}
.w0_c00397{width:893.070000px;}
.w1_c00397{width:893.250000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:127.620000px;}
.x1_c00397{left:446.580000px;}
@media print{
.v1_c00397{vertical-align:-55.056000pt;}
.v0_c00397{vertical-align:0.000000pt;}
.ls1_c00397{letter-spacing:0.000000pt;}
.ls0_c00397{letter-spacing:284.016000pt;}
.ws1_c00397{word-spacing:-0.144000pt;}
.ws0_c00397{word-spacing:0.000000pt;}
._0_c00397{width:752.000000pt;}
.fs0_c00397{font-size:48.000000pt;}
.fs1_c00397{font-size:64.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y7_c00397{bottom:50.880000pt;}
.y6_c00397{bottom:959.360000pt;}
.y5_c00397{bottom:986.960000pt;}
.y4_c00397{bottom:1005.360000pt;}
.y3_c00397{bottom:1023.036000pt;}
.y2_c00397{bottom:1036.800000pt;}
.y1_c00397{bottom:1064.400000pt;}
.h2_c00397{height:47.109375pt;}
.h3_c00397{height:62.812500pt;}
.h0_c00397{height:1122.560000pt;}
.h1_c00397{height:1122.666667pt;}
.w0_c00397{width:793.840000pt;}
.w1_c00397{width:794.000000pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:113.440000pt;}
.x1_c00397{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fabdd4ab2b321af36948212f.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_7ea791c7c13fa0568dcc9847.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00398{vertical-align:-105.840000px;}
.v0_c00398{vertical-align:0.000000px;}
.ls2_c00398{letter-spacing:-0.108000px;}
.ls1_c00398{letter-spacing:0.000000px;}
.ls0_c00398{letter-spacing:1257.840000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:0.000000px;}
.ws2_c00398{word-spacing:0.162000px;}
.ws1_c00398{word-spacing:0.270000px;}
._1_c00398{margin-left:-1.058400px;}
._0_c00398{width:1.220400px;}
._2_c00398{width:846.000000px;}
.fc0_c00398{color:rgb(0,0,0);}
.fs0_c00398{font-size:54.000000px;}
.fs1_c00398{font-size:72.000000px;}
.fs2_c00398{font-size:96.120000px;}
.fs3_c00398{font-size:144.000000px;}
.y0_c00398{bottom:0.000000px;}
.y14_c00398{bottom:57.240000px;}
.y13_c00398{bottom:509.940000px;}
.y12_c00398{bottom:545.752620px;}
.y11_c00398{bottom:587.156310px;}
.y10_c00398{bottom:628.560000px;}
.yf_c00398{bottom:679.500000px;}
.ye_c00398{bottom:732.032910px;}
.yd_c00398{bottom:773.436600px;}
.yc_c00398{bottom:814.840290px;}
.yb_c00398{bottom:856.147860px;}
.ya_c00398{bottom:897.551550px;}
.y9_c00398{bottom:938.955240px;}
.y8_c00398{bottom:980.358930px;}
.y7_c00398{bottom:1021.762620px;}
.y6_c00398{bottom:1063.166310px;}
.y5_c00398{bottom:1131.030000px;}
.y4_c00398{bottom:1150.920000px;}
.y3_c00398{bottom:1166.404500px;}
.y2_c00398{bottom:1181.970000px;}
.y1_c00398{bottom:1197.450000px;}
.h3_c00398{height:52.971680px;}
.h2_c00398{height:52.998047px;}
.h4_c00398{height:70.664062px;}
.h7_c00398{height:72.562500px;}
.h5_c00398{height:96.870938px;}
.h6_c00398{height:145.125000px;}
.h0_c00398{height:1262.880000px;}
.h1_c00398{height:1263.000000px;}
.w0_c00398{width:893.070000px;}
.w1_c00398{width:893.250000px;}
.x0_c00398{left:0.000000px;}
.x3_c00398{left:127.620000px;}
.x4_c00398{left:350.010000px;}
.x2_c00398{left:425.160000px;}
.x1_c00398{left:446.580000px;}
.x5_c00398{left:738.540000px;}
@media print{
.v1_c00398{vertical-align:-94.080000pt;}
.v0_c00398{vertical-align:0.000000pt;}
.ls2_c00398{letter-spacing:-0.096000pt;}
.ls1_c00398{letter-spacing:0.000000pt;}
.ls0_c00398{letter-spacing:1118.080000pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.ws2_c00398{word-spacing:0.144000pt;}
.ws1_c00398{word-spacing:0.240000pt;}
._1_c00398{margin-left:-0.940800pt;}
._0_c00398{width:1.084800pt;}
._2_c00398{width:752.000000pt;}
.fs0_c00398{font-size:48.000000pt;}
.fs1_c00398{font-size:64.000000pt;}
.fs2_c00398{font-size:85.440000pt;}
.fs3_c00398{font-size:128.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y14_c00398{bottom:50.880000pt;}
.y13_c00398{bottom:453.280000pt;}
.y12_c00398{bottom:485.113440pt;}
.y11_c00398{bottom:521.916720pt;}
.y10_c00398{bottom:558.720000pt;}
.yf_c00398{bottom:604.000000pt;}
.ye_c00398{bottom:650.695920pt;}
.yd_c00398{bottom:687.499200pt;}
.yc_c00398{bottom:724.302480pt;}
.yb_c00398{bottom:761.020320pt;}
.ya_c00398{bottom:797.823600pt;}
.y9_c00398{bottom:834.626880pt;}
.y8_c00398{bottom:871.430160pt;}
.y7_c00398{bottom:908.233440pt;}
.y6_c00398{bottom:945.036720pt;}
.y5_c00398{bottom:1005.360000pt;}
.y4_c00398{bottom:1023.040000pt;}
.y3_c00398{bottom:1036.804000pt;}
.y2_c00398{bottom:1050.640000pt;}
.y1_c00398{bottom:1064.400000pt;}
.h3_c00398{height:47.085938pt;}
.h2_c00398{height:47.109375pt;}
.h4_c00398{height:62.812500pt;}
.h7_c00398{height:64.500000pt;}
.h5_c00398{height:86.107500pt;}
.h6_c00398{height:129.000000pt;}
.h0_c00398{height:1122.560000pt;}
.h1_c00398{height:1122.666667pt;}
.w0_c00398{width:793.840000pt;}
.w1_c00398{width:794.000000pt;}
.x0_c00398{left:0.000000pt;}
.x3_c00398{left:113.440000pt;}
.x4_c00398{left:311.120000pt;}
.x2_c00398{left:377.920000pt;}
.x1_c00398{left:396.960000pt;}
.x5_c00398{left:656.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_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_decac642670ea99ef4bca841.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.284668;font-style:normal;font-weight:normal;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_027e8a2f936cf59ee3c3a864.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_7ea791c7c13fa0568dcc9847.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.432129;font-style: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);}
.v1_c00399{vertical-align:-61.938000px;}
.v0_c00399{vertical-align:0.000000px;}
.lsb_c00399{letter-spacing:-0.360000px;}
.lsa_c00399{letter-spacing:-0.288000px;}
.lsc_c00399{letter-spacing:-0.216000px;}
.lsd_c00399{letter-spacing:-0.144000px;}
.ls9_c00399{letter-spacing:-0.072000px;}
.ls8_c00399{letter-spacing:0.000000px;}
.ls7_c00399{letter-spacing:0.072000px;}
.ls1_c00399{letter-spacing:0.144000px;}
.lse_c00399{letter-spacing:0.360000px;}
.ls3_c00399{letter-spacing:1.080000px;}
.ls6_c00399{letter-spacing:3.254400px;}
.ls4_c00399{letter-spacing:8.280000px;}
.ls5_c00399{letter-spacing:33.840000px;}
.ls2_c00399{letter-spacing:63.864000px;}
.ls0_c00399{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws3_c00399{word-spacing:-18.072000px;}
.ws1_c00399{word-spacing:-18.000000px;}
.ws2_c00399{word-spacing:-17.928000px;}
.ws5_c00399{word-spacing:-17.856000px;}
.ws4_c00399{word-spacing:-17.784000px;}
.ws6_c00399{word-spacing:-17.640000px;}
.ws23_c00399{word-spacing:-0.432000px;}
.ws22_c00399{word-spacing:-0.360000px;}
.ws8_c00399{word-spacing:-0.162000px;}
.wsb_c00399{word-spacing:-0.144000px;}
.wse_c00399{word-spacing:-0.072000px;}
.ws7_c00399{word-spacing:0.000000px;}
.ws25_c00399{word-spacing:0.144000px;}
.ws15_c00399{word-spacing:0.288000px;}
.ws14_c00399{word-spacing:0.720000px;}
.ws12_c00399{word-spacing:1.080000px;}
.ws26_c00399{word-spacing:1.224000px;}
.ws13_c00399{word-spacing:1.368000px;}
.ws1b_c00399{word-spacing:3.168000px;}
.ws9_c00399{word-spacing:3.528000px;}
.ws21_c00399{word-spacing:5.688000px;}
.ws20_c00399{word-spacing:5.760000px;}
.ws18_c00399{word-spacing:7.920000px;}
.ws16_c00399{word-spacing:8.136000px;}
.ws10_c00399{word-spacing:8.208000px;}
.ws11_c00399{word-spacing:8.280000px;}
.ws17_c00399{word-spacing:8.640000px;}
.ws2a_c00399{word-spacing:9.360000px;}
.ws24_c00399{word-spacing:12.240000px;}
.ws28_c00399{word-spacing:14.256000px;}
.ws1f_c00399{word-spacing:14.328000px;}
.ws29_c00399{word-spacing:14.400000px;}
.ws1e_c00399{word-spacing:14.688000px;}
.ws1d_c00399{word-spacing:14.760000px;}
.wsa_c00399{word-spacing:15.480000px;}
.ws27_c00399{word-spacing:19.800000px;}
.wsc_c00399{word-spacing:24.840000px;}
.wsd_c00399{word-spacing:25.200000px;}
.ws1c_c00399{word-spacing:31.680000px;}
.ws19_c00399{word-spacing:33.480000px;}
.ws1a_c00399{word-spacing:33.840000px;}
.wsf_c00399{word-spacing:75.240000px;}
._0_c00399{margin-left:-1.008000px;}
._1_c00399{width:1.008000px;}
._6_c00399{width:3.729600px;}
._3_c00399{width:8.064000px;}
._4_c00399{width:9.216000px;}
._8_c00399{width:14.256000px;}
._2_c00399{width:24.552000px;}
._7_c00399{width:31.392000px;}
._5_c00399{width:33.768000px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs0_c00399{font-size:54.000000px;}
.fs1_c00399{font-size:72.000000px;}
.y0_c00399{bottom:0.000000px;}
.y24_c00399{bottom:57.240000px;}
.y23_c00399{bottom:178.920000px;}
.y22_c00399{bottom:209.970000px;}
.y21_c00399{bottom:241.020000px;}
.y20_c00399{bottom:272.070000px;}
.y1f_c00399{bottom:303.120000px;}
.y1e_c00399{bottom:334.170000px;}
.y1d_c00399{bottom:365.220000px;}
.y1c_c00399{bottom:396.270000px;}
.y1b_c00399{bottom:427.320000px;}
.y1a_c00399{bottom:458.370000px;}
.y19_c00399{bottom:489.420000px;}
.y18_c00399{bottom:520.470000px;}
.y17_c00399{bottom:551.520000px;}
.y16_c00399{bottom:582.570000px;}
.y15_c00399{bottom:613.620000px;}
.y14_c00399{bottom:644.670000px;}
.y13_c00399{bottom:675.720000px;}
.y12_c00399{bottom:706.770000px;}
.y11_c00399{bottom:737.820000px;}
.y10_c00399{bottom:768.870000px;}
.yf_c00399{bottom:799.920000px;}
.ye_c00399{bottom:830.970000px;}
.yd_c00399{bottom:861.930000px;}
.yc_c00399{bottom:892.980000px;}
.yb_c00399{bottom:924.030000px;}
.ya_c00399{bottom:955.080000px;}
.y9_c00399{bottom:986.130000px;}
.y8_c00399{bottom:1017.180000px;}
.y7_c00399{bottom:1048.230000px;}
.y6_c00399{bottom:1079.280000px;}
.y5_c00399{bottom:1110.150000px;}
.y4_c00399{bottom:1131.030000px;}
.y3_c00399{bottom:1150.915500px;}
.y2_c00399{bottom:1166.400000px;}
.y1_c00399{bottom:1197.450000px;}
.h2_c00399{height:52.998047px;}
.h3_c00399{height:70.664062px;}
.h4_c00399{height:72.562500px;}
.h5_c00399{height:75.093750px;}
.h0_c00399{height:1262.880000px;}
.h1_c00399{height:1263.000000px;}
.w0_c00399{width:893.070000px;}
.w1_c00399{width:893.250000px;}
.x0_c00399{left:0.000000px;}
.x2_c00399{left:127.620000px;}
.x3_c00399{left:154.620000px;}
.x4_c00399{left:181.620000px;}
.x1_c00399{left:446.580000px;}
@media print{
.v1_c00399{vertical-align:-55.056000pt;}
.v0_c00399{vertical-align:0.000000pt;}
.lsb_c00399{letter-spacing:-0.320000pt;}
.lsa_c00399{letter-spacing:-0.256000pt;}
.lsc_c00399{letter-spacing:-0.192000pt;}
.lsd_c00399{letter-spacing:-0.128000pt;}
.ls9_c00399{letter-spacing:-0.064000pt;}
.ls8_c00399{letter-spacing:0.000000pt;}
.ls7_c00399{letter-spacing:0.064000pt;}
.ls1_c00399{letter-spacing:0.128000pt;}
.lse_c00399{letter-spacing:0.320000pt;}
.ls3_c00399{letter-spacing:0.960000pt;}
.ls6_c00399{letter-spacing:2.892800pt;}
.ls4_c00399{letter-spacing:7.360000pt;}
.ls5_c00399{letter-spacing:30.080000pt;}
.ls2_c00399{letter-spacing:56.768000pt;}
.ls0_c00399{letter-spacing:284.016000pt;}
.ws0_c00399{word-spacing:-16.128000pt;}
.ws3_c00399{word-spacing:-16.064000pt;}
.ws1_c00399{word-spacing:-16.000000pt;}
.ws2_c00399{word-spacing:-15.936000pt;}
.ws5_c00399{word-spacing:-15.872000pt;}
.ws4_c00399{word-spacing:-15.808000pt;}
.ws6_c00399{word-spacing:-15.680000pt;}
.ws23_c00399{word-spacing:-0.384000pt;}
.ws22_c00399{word-spacing:-0.320000pt;}
.ws8_c00399{word-spacing:-0.144000pt;}
.wsb_c00399{word-spacing:-0.128000pt;}
.wse_c00399{word-spacing:-0.064000pt;}
.ws7_c00399{word-spacing:0.000000pt;}
.ws25_c00399{word-spacing:0.128000pt;}
.ws15_c00399{word-spacing:0.256000pt;}
.ws14_c00399{word-spacing:0.640000pt;}
.ws12_c00399{word-spacing:0.960000pt;}
.ws26_c00399{word-spacing:1.088000pt;}
.ws13_c00399{word-spacing:1.216000pt;}
.ws1b_c00399{word-spacing:2.816000pt;}
.ws9_c00399{word-spacing:3.136000pt;}
.ws21_c00399{word-spacing:5.056000pt;}
.ws20_c00399{word-spacing:5.120000pt;}
.ws18_c00399{word-spacing:7.040000pt;}
.ws16_c00399{word-spacing:7.232000pt;}
.ws10_c00399{word-spacing:7.296000pt;}
.ws11_c00399{word-spacing:7.360000pt;}
.ws17_c00399{word-spacing:7.680000pt;}
.ws2a_c00399{word-spacing:8.320000pt;}
.ws24_c00399{word-spacing:10.880000pt;}
.ws28_c00399{word-spacing:12.672000pt;}
.ws1f_c00399{word-spacing:12.736000pt;}
.ws29_c00399{word-spacing:12.800000pt;}
.ws1e_c00399{word-spacing:13.056000pt;}
.ws1d_c00399{word-spacing:13.120000pt;}
.wsa_c00399{word-spacing:13.760000pt;}
.ws27_c00399{word-spacing:17.600000pt;}
.wsc_c00399{word-spacing:22.080000pt;}
.wsd_c00399{word-spacing:22.400000pt;}
.ws1c_c00399{word-spacing:28.160000pt;}
.ws19_c00399{word-spacing:29.760000pt;}
.ws1a_c00399{word-spacing:30.080000pt;}
.wsf_c00399{word-spacing:66.880000pt;}
._0_c00399{margin-left:-0.896000pt;}
._1_c00399{width:0.896000pt;}
._6_c00399{width:3.315200pt;}
._3_c00399{width:7.168000pt;}
._4_c00399{width:8.192000pt;}
._8_c00399{width:12.672000pt;}
._2_c00399{width:21.824000pt;}
._7_c00399{width:27.904000pt;}
._5_c00399{width:30.016000pt;}
.fs0_c00399{font-size:48.000000pt;}
.fs1_c00399{font-size:64.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y24_c00399{bottom:50.880000pt;}
.y23_c00399{bottom:159.040000pt;}
.y22_c00399{bottom:186.640000pt;}
.y21_c00399{bottom:214.240000pt;}
.y20_c00399{bottom:241.840000pt;}
.y1f_c00399{bottom:269.440000pt;}
.y1e_c00399{bottom:297.040000pt;}
.y1d_c00399{bottom:324.640000pt;}
.y1c_c00399{bottom:352.240000pt;}
.y1b_c00399{bottom:379.840000pt;}
.y1a_c00399{bottom:407.440000pt;}
.y19_c00399{bottom:435.040000pt;}
.y18_c00399{bottom:462.640000pt;}
.y17_c00399{bottom:490.240000pt;}
.y16_c00399{bottom:517.840000pt;}
.y15_c00399{bottom:545.440000pt;}
.y14_c00399{bottom:573.040000pt;}
.y13_c00399{bottom:600.640000pt;}
.y12_c00399{bottom:628.240000pt;}
.y11_c00399{bottom:655.840000pt;}
.y10_c00399{bottom:683.440000pt;}
.yf_c00399{bottom:711.040000pt;}
.ye_c00399{bottom:738.640000pt;}
.yd_c00399{bottom:766.160000pt;}
.yc_c00399{bottom:793.760000pt;}
.yb_c00399{bottom:821.360000pt;}
.ya_c00399{bottom:848.960000pt;}
.y9_c00399{bottom:876.560000pt;}
.y8_c00399{bottom:904.160000pt;}
.y7_c00399{bottom:931.760000pt;}
.y6_c00399{bottom:959.360000pt;}
.y5_c00399{bottom:986.800000pt;}
.y4_c00399{bottom:1005.360000pt;}
.y3_c00399{bottom:1023.036000pt;}
.y2_c00399{bottom:1036.800000pt;}
.y1_c00399{bottom:1064.400000pt;}
.h2_c00399{height:47.109375pt;}
.h3_c00399{height:62.812500pt;}
.h4_c00399{height:64.500000pt;}
.h5_c00399{height:66.750000pt;}
.h0_c00399{height:1122.560000pt;}
.h1_c00399{height:1122.666667pt;}
.w0_c00399{width:793.840000pt;}
.w1_c00399{width:794.000000pt;}
.x0_c00399{left:0.000000pt;}
.x2_c00399{left:113.440000pt;}
.x3_c00399{left:137.440000pt;}
.x4_c00399{left:161.440000pt;}
.x1_c00399{left:396.960000pt;}
}





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

.ir_c00400:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00400;src:url('chunks/assets/font_0f600095c23781742760d4f7.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_2b8304211752a1c202bb3057.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00400{vertical-align:-82.800000px;}
.v0_c00400{vertical-align:0.000000px;}
.lsc_c00400{letter-spacing:-0.504000px;}
.lsa_c00400{letter-spacing:-0.360000px;}
.ls9_c00400{letter-spacing:-0.144000px;}
.ls7_c00400{letter-spacing:-0.108000px;}
.lsb_c00400{letter-spacing:-0.072000px;}
.ls6_c00400{letter-spacing:0.000000px;}
.ls8_c00400{letter-spacing:0.072000px;}
.ls1_c00400{letter-spacing:0.144000px;}
.ls4_c00400{letter-spacing:3.240000px;}
.ls3_c00400{letter-spacing:7.560000px;}
.ls5_c00400{letter-spacing:19.440000px;}
.ls2_c00400{letter-spacing:63.864000px;}
.ls0_c00400{letter-spacing:90.000000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00400{word-spacing:-18.144000px;}
.ws2_c00400{word-spacing:-18.072000px;}
.ws0_c00400{word-spacing:-18.000000px;}
.ws5_c00400{word-spacing:-17.928000px;}
.ws1_c00400{word-spacing:-17.856000px;}
.ws4_c00400{word-spacing:-17.496000px;}
.wsf_c00400{word-spacing:-0.360000px;}
.ws17_c00400{word-spacing:-0.144000px;}
.wse_c00400{word-spacing:-0.072000px;}
.ws6_c00400{word-spacing:0.000000px;}
.ws8_c00400{word-spacing:0.162000px;}
.ws7_c00400{word-spacing:0.270000px;}
.ws19_c00400{word-spacing:0.288000px;}
.ws18_c00400{word-spacing:0.360000px;}
.ws26_c00400{word-spacing:1.080000px;}
.ws1e_c00400{word-spacing:2.808000px;}
.ws1c_c00400{word-spacing:2.880000px;}
.ws1d_c00400{word-spacing:3.312000px;}
.ws20_c00400{word-spacing:3.528000px;}
.ws1f_c00400{word-spacing:3.960000px;}
.ws27_c00400{word-spacing:4.968000px;}
.ws16_c00400{word-spacing:5.040000px;}
.wsd_c00400{word-spacing:5.400000px;}
.ws11_c00400{word-spacing:6.480000px;}
.ws28_c00400{word-spacing:6.840000px;}
.ws14_c00400{word-spacing:7.200000px;}
.ws15_c00400{word-spacing:7.488000px;}
.ws25_c00400{word-spacing:9.000000px;}
.ws12_c00400{word-spacing:9.288000px;}
.ws13_c00400{word-spacing:9.360000px;}
.ws9_c00400{word-spacing:10.800000px;}
.wsb_c00400{word-spacing:12.096000px;}
.wsc_c00400{word-spacing:12.456000px;}
.wsa_c00400{word-spacing:12.600000px;}
.ws29_c00400{word-spacing:16.560000px;}
.ws24_c00400{word-spacing:19.440000px;}
.ws21_c00400{word-spacing:20.160000px;}
.ws22_c00400{word-spacing:21.168000px;}
.ws23_c00400{word-spacing:21.240000px;}
.ws1b_c00400{word-spacing:31.896000px;}
.ws1a_c00400{word-spacing:32.400000px;}
.ws10_c00400{word-spacing:34.920000px;}
._1_c00400{margin-left:-1.058400px;}
._0_c00400{width:1.220400px;}
._4_c00400{width:4.968000px;}
._7_c00400{width:8.856000px;}
._2_c00400{width:12.456000px;}
._8_c00400{width:15.984000px;}
._6_c00400{width:19.728000px;}
._5_c00400{width:20.764800px;}
._3_c00400{width:32.112000px;}
.fc0_c00400{color:rgb(0,0,0);}
.fs0_c00400{font-size:54.000000px;}
.fs1_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y26_c00400{bottom:57.240000px;}
.y25_c00400{bottom:116.820000px;}
.y24_c00400{bottom:147.870000px;}
.y23_c00400{bottom:178.920000px;}
.y22_c00400{bottom:209.970000px;}
.y21_c00400{bottom:241.020000px;}
.y20_c00400{bottom:272.070000px;}
.y1f_c00400{bottom:303.120000px;}
.y1e_c00400{bottom:334.170000px;}
.y1d_c00400{bottom:365.220000px;}
.y1c_c00400{bottom:396.270000px;}
.y1b_c00400{bottom:427.320000px;}
.y1a_c00400{bottom:458.370000px;}
.y19_c00400{bottom:489.420000px;}
.y18_c00400{bottom:520.470000px;}
.y17_c00400{bottom:551.520000px;}
.y16_c00400{bottom:582.570000px;}
.y15_c00400{bottom:613.620000px;}
.y14_c00400{bottom:644.670000px;}
.y13_c00400{bottom:675.720000px;}
.y12_c00400{bottom:706.770000px;}
.y11_c00400{bottom:737.820000px;}
.y10_c00400{bottom:768.870000px;}
.yf_c00400{bottom:799.830000px;}
.ye_c00400{bottom:830.970000px;}
.yd_c00400{bottom:861.930000px;}
.yc_c00400{bottom:892.980000px;}
.yb_c00400{bottom:924.030000px;}
.ya_c00400{bottom:955.080000px;}
.y9_c00400{bottom:986.130000px;}
.y8_c00400{bottom:1017.180000px;}
.y7_c00400{bottom:1048.230000px;}
.y6_c00400{bottom:1079.280000px;}
.y5_c00400{bottom:1131.030000px;}
.y4_c00400{bottom:1150.920000px;}
.y3_c00400{bottom:1166.404500px;}
.y2_c00400{bottom:1181.970000px;}
.y1_c00400{bottom:1197.450000px;}
.h3_c00400{height:52.971680px;}
.h2_c00400{height:52.998047px;}
.h6_c00400{height:70.628906px;}
.h4_c00400{height:70.664062px;}
.h5_c00400{height:75.093750px;}
.h0_c00400{height:1262.880000px;}
.h1_c00400{height:1263.000000px;}
.w0_c00400{width:893.070000px;}
.w1_c00400{width:893.250000px;}
.x0_c00400{left:0.000000px;}
.x3_c00400{left:127.620000px;}
.x5_c00400{left:154.620000px;}
.x4_c00400{left:181.620000px;}
.x2_c00400{left:425.160000px;}
.x1_c00400{left:446.580000px;}
.x6_c00400{left:738.540000px;}
@media print{
.v1_c00400{vertical-align:-73.600000pt;}
.v0_c00400{vertical-align:0.000000pt;}
.lsc_c00400{letter-spacing:-0.448000pt;}
.lsa_c00400{letter-spacing:-0.320000pt;}
.ls9_c00400{letter-spacing:-0.128000pt;}
.ls7_c00400{letter-spacing:-0.096000pt;}
.lsb_c00400{letter-spacing:-0.064000pt;}
.ls6_c00400{letter-spacing:0.000000pt;}
.ls8_c00400{letter-spacing:0.064000pt;}
.ls1_c00400{letter-spacing:0.128000pt;}
.ls4_c00400{letter-spacing:2.880000pt;}
.ls3_c00400{letter-spacing:6.720000pt;}
.ls5_c00400{letter-spacing:17.280000pt;}
.ls2_c00400{letter-spacing:56.768000pt;}
.ls0_c00400{letter-spacing:80.000000pt;}
.ws3_c00400{word-spacing:-16.128000pt;}
.ws2_c00400{word-spacing:-16.064000pt;}
.ws0_c00400{word-spacing:-16.000000pt;}
.ws5_c00400{word-spacing:-15.936000pt;}
.ws1_c00400{word-spacing:-15.872000pt;}
.ws4_c00400{word-spacing:-15.552000pt;}
.wsf_c00400{word-spacing:-0.320000pt;}
.ws17_c00400{word-spacing:-0.128000pt;}
.wse_c00400{word-spacing:-0.064000pt;}
.ws6_c00400{word-spacing:0.000000pt;}
.ws8_c00400{word-spacing:0.144000pt;}
.ws7_c00400{word-spacing:0.240000pt;}
.ws19_c00400{word-spacing:0.256000pt;}
.ws18_c00400{word-spacing:0.320000pt;}
.ws26_c00400{word-spacing:0.960000pt;}
.ws1e_c00400{word-spacing:2.496000pt;}
.ws1c_c00400{word-spacing:2.560000pt;}
.ws1d_c00400{word-spacing:2.944000pt;}
.ws20_c00400{word-spacing:3.136000pt;}
.ws1f_c00400{word-spacing:3.520000pt;}
.ws27_c00400{word-spacing:4.416000pt;}
.ws16_c00400{word-spacing:4.480000pt;}
.wsd_c00400{word-spacing:4.800000pt;}
.ws11_c00400{word-spacing:5.760000pt;}
.ws28_c00400{word-spacing:6.080000pt;}
.ws14_c00400{word-spacing:6.400000pt;}
.ws15_c00400{word-spacing:6.656000pt;}
.ws25_c00400{word-spacing:8.000000pt;}
.ws12_c00400{word-spacing:8.256000pt;}
.ws13_c00400{word-spacing:8.320000pt;}
.ws9_c00400{word-spacing:9.600000pt;}
.wsb_c00400{word-spacing:10.752000pt;}
.wsc_c00400{word-spacing:11.072000pt;}
.wsa_c00400{word-spacing:11.200000pt;}
.ws29_c00400{word-spacing:14.720000pt;}
.ws24_c00400{word-spacing:17.280000pt;}
.ws21_c00400{word-spacing:17.920000pt;}
.ws22_c00400{word-spacing:18.816000pt;}
.ws23_c00400{word-spacing:18.880000pt;}
.ws1b_c00400{word-spacing:28.352000pt;}
.ws1a_c00400{word-spacing:28.800000pt;}
.ws10_c00400{word-spacing:31.040000pt;}
._1_c00400{margin-left:-0.940800pt;}
._0_c00400{width:1.084800pt;}
._4_c00400{width:4.416000pt;}
._7_c00400{width:7.872000pt;}
._2_c00400{width:11.072000pt;}
._8_c00400{width:14.208000pt;}
._6_c00400{width:17.536000pt;}
._5_c00400{width:18.457600pt;}
._3_c00400{width:28.544000pt;}
.fs0_c00400{font-size:48.000000pt;}
.fs1_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y26_c00400{bottom:50.880000pt;}
.y25_c00400{bottom:103.840000pt;}
.y24_c00400{bottom:131.440000pt;}
.y23_c00400{bottom:159.040000pt;}
.y22_c00400{bottom:186.640000pt;}
.y21_c00400{bottom:214.240000pt;}
.y20_c00400{bottom:241.840000pt;}
.y1f_c00400{bottom:269.440000pt;}
.y1e_c00400{bottom:297.040000pt;}
.y1d_c00400{bottom:324.640000pt;}
.y1c_c00400{bottom:352.240000pt;}
.y1b_c00400{bottom:379.840000pt;}
.y1a_c00400{bottom:407.440000pt;}
.y19_c00400{bottom:435.040000pt;}
.y18_c00400{bottom:462.640000pt;}
.y17_c00400{bottom:490.240000pt;}
.y16_c00400{bottom:517.840000pt;}
.y15_c00400{bottom:545.440000pt;}
.y14_c00400{bottom:573.040000pt;}
.y13_c00400{bottom:600.640000pt;}
.y12_c00400{bottom:628.240000pt;}
.y11_c00400{bottom:655.840000pt;}
.y10_c00400{bottom:683.440000pt;}
.yf_c00400{bottom:710.960000pt;}
.ye_c00400{bottom:738.640000pt;}
.yd_c00400{bottom:766.160000pt;}
.yc_c00400{bottom:793.760000pt;}
.yb_c00400{bottom:821.360000pt;}
.ya_c00400{bottom:848.960000pt;}
.y9_c00400{bottom:876.560000pt;}
.y8_c00400{bottom:904.160000pt;}
.y7_c00400{bottom:931.760000pt;}
.y6_c00400{bottom:959.360000pt;}
.y5_c00400{bottom:1005.360000pt;}
.y4_c00400{bottom:1023.040000pt;}
.y3_c00400{bottom:1036.804000pt;}
.y2_c00400{bottom:1050.640000pt;}
.y1_c00400{bottom:1064.400000pt;}
.h3_c00400{height:47.085938pt;}
.h2_c00400{height:47.109375pt;}
.h6_c00400{height:62.781250pt;}
.h4_c00400{height:62.812500pt;}
.h5_c00400{height:66.750000pt;}
.h0_c00400{height:1122.560000pt;}
.h1_c00400{height:1122.666667pt;}
.w0_c00400{width:793.840000pt;}
.w1_c00400{width:794.000000pt;}
.x0_c00400{left:0.000000pt;}
.x3_c00400{left:113.440000pt;}
.x5_c00400{left:137.440000pt;}
.x4_c00400{left:161.440000pt;}
.x2_c00400{left:377.920000pt;}
.x1_c00400{left:396.960000pt;}
.x6_c00400{left:656.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_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_4f699003e364097595c3d18a.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_9914205228979df103541135.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.432129;font-style: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);}
.v2_c00401{vertical-align:-82.800000px;}
.v1_c00401{vertical-align:-61.938000px;}
.v0_c00401{vertical-align:0.000000px;}
.lsb_c00401{letter-spacing:-0.504000px;}
.lsc_c00401{letter-spacing:-0.360000px;}
.lse_c00401{letter-spacing:-0.288000px;}
.lsd_c00401{letter-spacing:-0.216000px;}
.lsa_c00401{letter-spacing:-0.144000px;}
.lsf_c00401{letter-spacing:-0.072000px;}
.ls9_c00401{letter-spacing:0.000000px;}
.ls4_c00401{letter-spacing:0.072000px;}
.ls2_c00401{letter-spacing:0.144000px;}
.ls5_c00401{letter-spacing:0.360000px;}
.ls6_c00401{letter-spacing:0.720000px;}
.ls8_c00401{letter-spacing:35.640000px;}
.ls7_c00401{letter-spacing:37.080000px;}
.ls3_c00401{letter-spacing:63.864000px;}
.ls1_c00401{letter-spacing:90.000000px;}
.ls0_c00401{letter-spacing:319.518000px;}
.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:-18.144000px;}
.ws0_c00401{word-spacing:-18.072000px;}
.ws2_c00401{word-spacing:-18.000000px;}
.ws8_c00401{word-spacing:-17.928000px;}
.ws3_c00401{word-spacing:-17.856000px;}
.ws6_c00401{word-spacing:-17.784000px;}
.ws7_c00401{word-spacing:-17.712000px;}
.ws5_c00401{word-spacing:-17.640000px;}
.ws4_c00401{word-spacing:-17.496000px;}
.ws20_c00401{word-spacing:-0.432000px;}
.ws1f_c00401{word-spacing:-0.360000px;}
.wsa_c00401{word-spacing:-0.162000px;}
.ws11_c00401{word-spacing:-0.072000px;}
.ws9_c00401{word-spacing:0.000000px;}
.wsd_c00401{word-spacing:0.288000px;}
.wsc_c00401{word-spacing:0.360000px;}
.ws1a_c00401{word-spacing:0.576000px;}
.ws19_c00401{word-spacing:0.720000px;}
.ws14_c00401{word-spacing:1.440000px;}
.ws17_c00401{word-spacing:2.880000px;}
.ws18_c00401{word-spacing:3.168000px;}
.wse_c00401{word-spacing:3.240000px;}
.wsf_c00401{word-spacing:4.608000px;}
.ws10_c00401{word-spacing:5.040000px;}
.ws22_c00401{word-spacing:5.400000px;}
.ws28_c00401{word-spacing:6.768000px;}
.ws21_c00401{word-spacing:6.840000px;}
.ws1c_c00401{word-spacing:10.440000px;}
.ws26_c00401{word-spacing:10.800000px;}
.ws1e_c00401{word-spacing:11.880000px;}
.ws1d_c00401{word-spacing:15.840000px;}
.ws15_c00401{word-spacing:16.488000px;}
.ws16_c00401{word-spacing:16.560000px;}
.ws24_c00401{word-spacing:21.528000px;}
.ws23_c00401{word-spacing:21.888000px;}
.ws13_c00401{word-spacing:32.328000px;}
.ws12_c00401{word-spacing:32.400000px;}
.ws27_c00401{word-spacing:35.640000px;}
.ws25_c00401{word-spacing:37.008000px;}
.wsb_c00401{word-spacing:64.800000px;}
.ws1b_c00401{word-spacing:109.440000px;}
._1_c00401{margin-left:-1.087200px;}
._0_c00401{width:1.008000px;}
._2_c00401{width:2.304000px;}
._3_c00401{width:3.744000px;}
._5_c00401{width:5.184000px;}
._9_c00401{width:6.840000px;}
._4_c00401{width:12.168000px;}
._6_c00401{width:21.960000px;}
._8_c00401{width:36.072000px;}
._7_c00401{width:37.224000px;}
._a_c00401{width:846.000000px;}
.fc0_c00401{color:rgb(0,0,0);}
.fs0_c00401{font-size:54.000000px;}
.fs1_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y23_c00401{bottom:57.240000px;}
.y22_c00401{bottom:178.920000px;}
.y21_c00401{bottom:209.970000px;}
.y20_c00401{bottom:241.020000px;}
.y1f_c00401{bottom:272.070000px;}
.y1e_c00401{bottom:303.120000px;}
.y1d_c00401{bottom:334.170000px;}
.y1c_c00401{bottom:365.220000px;}
.y1b_c00401{bottom:396.270000px;}
.y1a_c00401{bottom:427.320000px;}
.y19_c00401{bottom:458.370000px;}
.y18_c00401{bottom:489.420000px;}
.y17_c00401{bottom:520.470000px;}
.y16_c00401{bottom:551.520000px;}
.y15_c00401{bottom:582.570000px;}
.y14_c00401{bottom:613.620000px;}
.y13_c00401{bottom:644.670000px;}
.y12_c00401{bottom:675.720000px;}
.y11_c00401{bottom:706.770000px;}
.y10_c00401{bottom:737.820000px;}
.yf_c00401{bottom:768.870000px;}
.ye_c00401{bottom:799.920000px;}
.yd_c00401{bottom:830.970000px;}
.yc_c00401{bottom:861.930000px;}
.yb_c00401{bottom:892.980000px;}
.ya_c00401{bottom:924.030000px;}
.y9_c00401{bottom:955.080000px;}
.y8_c00401{bottom:986.130000px;}
.y7_c00401{bottom:1017.180000px;}
.y6_c00401{bottom:1048.230000px;}
.y5_c00401{bottom:1079.280000px;}
.y4_c00401{bottom:1131.030000px;}
.y3_c00401{bottom:1150.915500px;}
.y2_c00401{bottom:1166.400000px;}
.y1_c00401{bottom:1197.450000px;}
.h2_c00401{height:52.998047px;}
.h3_c00401{height:70.664062px;}
.h4_c00401{height:75.093750px;}
.h0_c00401{height:1262.880000px;}
.h1_c00401{height:1263.000000px;}
.w0_c00401{width:893.070000px;}
.w1_c00401{width:893.250000px;}
.x0_c00401{left:0.000000px;}
.x2_c00401{left:127.620000px;}
.x4_c00401{left:154.620000px;}
.x3_c00401{left:181.620000px;}
.x1_c00401{left:446.580000px;}
@media print{
.v2_c00401{vertical-align:-73.600000pt;}
.v1_c00401{vertical-align:-55.056000pt;}
.v0_c00401{vertical-align:0.000000pt;}
.lsb_c00401{letter-spacing:-0.448000pt;}
.lsc_c00401{letter-spacing:-0.320000pt;}
.lse_c00401{letter-spacing:-0.256000pt;}
.lsd_c00401{letter-spacing:-0.192000pt;}
.lsa_c00401{letter-spacing:-0.128000pt;}
.lsf_c00401{letter-spacing:-0.064000pt;}
.ls9_c00401{letter-spacing:0.000000pt;}
.ls4_c00401{letter-spacing:0.064000pt;}
.ls2_c00401{letter-spacing:0.128000pt;}
.ls5_c00401{letter-spacing:0.320000pt;}
.ls6_c00401{letter-spacing:0.640000pt;}
.ls8_c00401{letter-spacing:31.680000pt;}
.ls7_c00401{letter-spacing:32.960000pt;}
.ls3_c00401{letter-spacing:56.768000pt;}
.ls1_c00401{letter-spacing:80.000000pt;}
.ls0_c00401{letter-spacing:284.016000pt;}
.ws1_c00401{word-spacing:-16.128000pt;}
.ws0_c00401{word-spacing:-16.064000pt;}
.ws2_c00401{word-spacing:-16.000000pt;}
.ws8_c00401{word-spacing:-15.936000pt;}
.ws3_c00401{word-spacing:-15.872000pt;}
.ws6_c00401{word-spacing:-15.808000pt;}
.ws7_c00401{word-spacing:-15.744000pt;}
.ws5_c00401{word-spacing:-15.680000pt;}
.ws4_c00401{word-spacing:-15.552000pt;}
.ws20_c00401{word-spacing:-0.384000pt;}
.ws1f_c00401{word-spacing:-0.320000pt;}
.wsa_c00401{word-spacing:-0.144000pt;}
.ws11_c00401{word-spacing:-0.064000pt;}
.ws9_c00401{word-spacing:0.000000pt;}
.wsd_c00401{word-spacing:0.256000pt;}
.wsc_c00401{word-spacing:0.320000pt;}
.ws1a_c00401{word-spacing:0.512000pt;}
.ws19_c00401{word-spacing:0.640000pt;}
.ws14_c00401{word-spacing:1.280000pt;}
.ws17_c00401{word-spacing:2.560000pt;}
.ws18_c00401{word-spacing:2.816000pt;}
.wse_c00401{word-spacing:2.880000pt;}
.wsf_c00401{word-spacing:4.096000pt;}
.ws10_c00401{word-spacing:4.480000pt;}
.ws22_c00401{word-spacing:4.800000pt;}
.ws28_c00401{word-spacing:6.016000pt;}
.ws21_c00401{word-spacing:6.080000pt;}
.ws1c_c00401{word-spacing:9.280000pt;}
.ws26_c00401{word-spacing:9.600000pt;}
.ws1e_c00401{word-spacing:10.560000pt;}
.ws1d_c00401{word-spacing:14.080000pt;}
.ws15_c00401{word-spacing:14.656000pt;}
.ws16_c00401{word-spacing:14.720000pt;}
.ws24_c00401{word-spacing:19.136000pt;}
.ws23_c00401{word-spacing:19.456000pt;}
.ws13_c00401{word-spacing:28.736000pt;}
.ws12_c00401{word-spacing:28.800000pt;}
.ws27_c00401{word-spacing:31.680000pt;}
.ws25_c00401{word-spacing:32.896000pt;}
.wsb_c00401{word-spacing:57.600000pt;}
.ws1b_c00401{word-spacing:97.280000pt;}
._1_c00401{margin-left:-0.966400pt;}
._0_c00401{width:0.896000pt;}
._2_c00401{width:2.048000pt;}
._3_c00401{width:3.328000pt;}
._5_c00401{width:4.608000pt;}
._9_c00401{width:6.080000pt;}
._4_c00401{width:10.816000pt;}
._6_c00401{width:19.520000pt;}
._8_c00401{width:32.064000pt;}
._7_c00401{width:33.088000pt;}
._a_c00401{width:752.000000pt;}
.fs0_c00401{font-size:48.000000pt;}
.fs1_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y23_c00401{bottom:50.880000pt;}
.y22_c00401{bottom:159.040000pt;}
.y21_c00401{bottom:186.640000pt;}
.y20_c00401{bottom:214.240000pt;}
.y1f_c00401{bottom:241.840000pt;}
.y1e_c00401{bottom:269.440000pt;}
.y1d_c00401{bottom:297.040000pt;}
.y1c_c00401{bottom:324.640000pt;}
.y1b_c00401{bottom:352.240000pt;}
.y1a_c00401{bottom:379.840000pt;}
.y19_c00401{bottom:407.440000pt;}
.y18_c00401{bottom:435.040000pt;}
.y17_c00401{bottom:462.640000pt;}
.y16_c00401{bottom:490.240000pt;}
.y15_c00401{bottom:517.840000pt;}
.y14_c00401{bottom:545.440000pt;}
.y13_c00401{bottom:573.040000pt;}
.y12_c00401{bottom:600.640000pt;}
.y11_c00401{bottom:628.240000pt;}
.y10_c00401{bottom:655.840000pt;}
.yf_c00401{bottom:683.440000pt;}
.ye_c00401{bottom:711.040000pt;}
.yd_c00401{bottom:738.640000pt;}
.yc_c00401{bottom:766.160000pt;}
.yb_c00401{bottom:793.760000pt;}
.ya_c00401{bottom:821.360000pt;}
.y9_c00401{bottom:848.960000pt;}
.y8_c00401{bottom:876.560000pt;}
.y7_c00401{bottom:904.160000pt;}
.y6_c00401{bottom:931.760000pt;}
.y5_c00401{bottom:959.360000pt;}
.y4_c00401{bottom:1005.360000pt;}
.y3_c00401{bottom:1023.036000pt;}
.y2_c00401{bottom:1036.800000pt;}
.y1_c00401{bottom:1064.400000pt;}
.h2_c00401{height:47.109375pt;}
.h3_c00401{height:62.812500pt;}
.h4_c00401{height:66.750000pt;}
.h0_c00401{height:1122.560000pt;}
.h1_c00401{height:1122.666667pt;}
.w0_c00401{width:793.840000pt;}
.w1_c00401{width:794.000000pt;}
.x0_c00401{left:0.000000pt;}
.x2_c00401{left:113.440000pt;}
.x4_c00401{left:137.440000pt;}
.x3_c00401{left:161.440000pt;}
.x1_c00401{left:396.960000pt;}
}





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

.ir_c00402:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00402;src:url('chunks/assets/font_6f08b777d426744188879568.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_35668153d65b6d94523d1b08.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00402{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00402{vertical-align:-82.800000px;}
.v0_c00402{vertical-align:0.000000px;}
.ls10_c00402{letter-spacing:-0.360000px;}
.lsf_c00402{letter-spacing:-0.288000px;}
.lsc_c00402{letter-spacing:-0.216000px;}
.lsd_c00402{letter-spacing:-0.144000px;}
.lsb_c00402{letter-spacing:-0.108000px;}
.lse_c00402{letter-spacing:-0.072000px;}
.lsa_c00402{letter-spacing:0.000000px;}
.ls8_c00402{letter-spacing:0.072000px;}
.ls1_c00402{letter-spacing:0.144000px;}
.ls6_c00402{letter-spacing:0.720000px;}
.ls5_c00402{letter-spacing:2.880000px;}
.ls3_c00402{letter-spacing:3.240000px;}
.ls4_c00402{letter-spacing:4.320000px;}
.ls9_c00402{letter-spacing:12.967200px;}
.ls7_c00402{letter-spacing:13.327200px;}
.ls2_c00402{letter-spacing:63.864000px;}
.ls0_c00402{letter-spacing:90.000000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00402{word-spacing:-18.144000px;}
.ws2_c00402{word-spacing:-18.072000px;}
.ws1_c00402{word-spacing:-18.000000px;}
.ws4_c00402{word-spacing:-17.928000px;}
.ws0_c00402{word-spacing:-17.856000px;}
.ws5_c00402{word-spacing:-17.640000px;}
.ws2e_c00402{word-spacing:-0.432000px;}
.ws24_c00402{word-spacing:-0.360000px;}
.wse_c00402{word-spacing:-0.144000px;}
.ws21_c00402{word-spacing:-0.072000px;}
.ws6_c00402{word-spacing:0.000000px;}
.ws11_c00402{word-spacing:0.072000px;}
.ws14_c00402{word-spacing:0.144000px;}
.ws8_c00402{word-spacing:0.162000px;}
.wsd_c00402{word-spacing:0.216000px;}
.ws7_c00402{word-spacing:0.270000px;}
.ws1b_c00402{word-spacing:0.288000px;}
.ws15_c00402{word-spacing:0.360000px;}
.ws1a_c00402{word-spacing:0.576000px;}
.ws19_c00402{word-spacing:0.720000px;}
.ws22_c00402{word-spacing:2.160000px;}
.ws17_c00402{word-spacing:2.448000px;}
.ws16_c00402{word-spacing:2.808000px;}
.ws18_c00402{word-spacing:2.880000px;}
.ws12_c00402{word-spacing:3.168000px;}
.ws10_c00402{word-spacing:3.240000px;}
.ws23_c00402{word-spacing:3.888000px;}
.wsc_c00402{word-spacing:3.960000px;}
.ws13_c00402{word-spacing:4.320000px;}
.ws20_c00402{word-spacing:6.840000px;}
.ws2b_c00402{word-spacing:10.368000px;}
.ws2a_c00402{word-spacing:10.440000px;}
.ws2c_c00402{word-spacing:12.888000px;}
.ws2d_c00402{word-spacing:12.960000px;}
.ws1f_c00402{word-spacing:13.176000px;}
.ws1e_c00402{word-spacing:13.248000px;}
.ws1d_c00402{word-spacing:13.320000px;}
.wsf_c00402{word-spacing:13.680000px;}
.ws27_c00402{word-spacing:20.448000px;}
.ws26_c00402{word-spacing:20.880000px;}
.wsb_c00402{word-spacing:25.488000px;}
.wsa_c00402{word-spacing:25.848000px;}
.ws9_c00402{word-spacing:32.400000px;}
.ws28_c00402{word-spacing:34.560000px;}
.ws25_c00402{word-spacing:36.360000px;}
.ws29_c00402{word-spacing:38.880000px;}
.ws1c_c00402{word-spacing:359.280000px;}
._1_c00402{margin-left:-1.058400px;}
._0_c00402{width:1.220400px;}
._3_c00402{width:3.240000px;}
._2_c00402{width:4.680000px;}
._4_c00402{width:7.128000px;}
.fc1_c00402{color:rgb(34,34,34);}
.fc0_c00402{color:rgb(0,0,0);}
.fs0_c00402{font-size:54.000000px;}
.fs1_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y26_c00402{bottom:57.240000px;}
.y25_c00402{bottom:116.820000px;}
.y24_c00402{bottom:147.870000px;}
.y23_c00402{bottom:178.920000px;}
.y22_c00402{bottom:209.970000px;}
.y21_c00402{bottom:241.020000px;}
.y20_c00402{bottom:272.070000px;}
.y1f_c00402{bottom:303.120000px;}
.y1e_c00402{bottom:334.170000px;}
.y1d_c00402{bottom:365.220000px;}
.y1c_c00402{bottom:396.270000px;}
.y1b_c00402{bottom:427.320000px;}
.y1a_c00402{bottom:458.370000px;}
.y19_c00402{bottom:489.420000px;}
.y18_c00402{bottom:520.470000px;}
.y17_c00402{bottom:551.520000px;}
.y16_c00402{bottom:582.570000px;}
.y15_c00402{bottom:613.620000px;}
.y14_c00402{bottom:644.670000px;}
.y13_c00402{bottom:675.720000px;}
.y12_c00402{bottom:706.770000px;}
.y11_c00402{bottom:737.820000px;}
.y10_c00402{bottom:768.870000px;}
.yf_c00402{bottom:799.920000px;}
.ye_c00402{bottom:830.970000px;}
.yd_c00402{bottom:861.930000px;}
.yc_c00402{bottom:892.980000px;}
.yb_c00402{bottom:924.030000px;}
.ya_c00402{bottom:955.080000px;}
.y9_c00402{bottom:986.130000px;}
.y8_c00402{bottom:1017.180000px;}
.y7_c00402{bottom:1048.230000px;}
.y6_c00402{bottom:1079.280000px;}
.y5_c00402{bottom:1131.030000px;}
.y4_c00402{bottom:1150.920000px;}
.y3_c00402{bottom:1166.404500px;}
.y2_c00402{bottom:1181.970000px;}
.y1_c00402{bottom:1197.450000px;}
.h3_c00402{height:52.971680px;}
.h2_c00402{height:52.998047px;}
.h4_c00402{height:70.664062px;}
.h5_c00402{height:75.093750px;}
.h0_c00402{height:1262.880000px;}
.h1_c00402{height:1263.000000px;}
.w0_c00402{width:893.070000px;}
.w1_c00402{width:893.250000px;}
.x0_c00402{left:0.000000px;}
.x3_c00402{left:127.620000px;}
.x5_c00402{left:154.620000px;}
.x4_c00402{left:181.620000px;}
.x2_c00402{left:425.160000px;}
.x1_c00402{left:446.580000px;}
.x6_c00402{left:738.540000px;}
@media print{
.v1_c00402{vertical-align:-73.600000pt;}
.v0_c00402{vertical-align:0.000000pt;}
.ls10_c00402{letter-spacing:-0.320000pt;}
.lsf_c00402{letter-spacing:-0.256000pt;}
.lsc_c00402{letter-spacing:-0.192000pt;}
.lsd_c00402{letter-spacing:-0.128000pt;}
.lsb_c00402{letter-spacing:-0.096000pt;}
.lse_c00402{letter-spacing:-0.064000pt;}
.lsa_c00402{letter-spacing:0.000000pt;}
.ls8_c00402{letter-spacing:0.064000pt;}
.ls1_c00402{letter-spacing:0.128000pt;}
.ls6_c00402{letter-spacing:0.640000pt;}
.ls5_c00402{letter-spacing:2.560000pt;}
.ls3_c00402{letter-spacing:2.880000pt;}
.ls4_c00402{letter-spacing:3.840000pt;}
.ls9_c00402{letter-spacing:11.526400pt;}
.ls7_c00402{letter-spacing:11.846400pt;}
.ls2_c00402{letter-spacing:56.768000pt;}
.ls0_c00402{letter-spacing:80.000000pt;}
.ws3_c00402{word-spacing:-16.128000pt;}
.ws2_c00402{word-spacing:-16.064000pt;}
.ws1_c00402{word-spacing:-16.000000pt;}
.ws4_c00402{word-spacing:-15.936000pt;}
.ws0_c00402{word-spacing:-15.872000pt;}
.ws5_c00402{word-spacing:-15.680000pt;}
.ws2e_c00402{word-spacing:-0.384000pt;}
.ws24_c00402{word-spacing:-0.320000pt;}
.wse_c00402{word-spacing:-0.128000pt;}
.ws21_c00402{word-spacing:-0.064000pt;}
.ws6_c00402{word-spacing:0.000000pt;}
.ws11_c00402{word-spacing:0.064000pt;}
.ws14_c00402{word-spacing:0.128000pt;}
.ws8_c00402{word-spacing:0.144000pt;}
.wsd_c00402{word-spacing:0.192000pt;}
.ws7_c00402{word-spacing:0.240000pt;}
.ws1b_c00402{word-spacing:0.256000pt;}
.ws15_c00402{word-spacing:0.320000pt;}
.ws1a_c00402{word-spacing:0.512000pt;}
.ws19_c00402{word-spacing:0.640000pt;}
.ws22_c00402{word-spacing:1.920000pt;}
.ws17_c00402{word-spacing:2.176000pt;}
.ws16_c00402{word-spacing:2.496000pt;}
.ws18_c00402{word-spacing:2.560000pt;}
.ws12_c00402{word-spacing:2.816000pt;}
.ws10_c00402{word-spacing:2.880000pt;}
.ws23_c00402{word-spacing:3.456000pt;}
.wsc_c00402{word-spacing:3.520000pt;}
.ws13_c00402{word-spacing:3.840000pt;}
.ws20_c00402{word-spacing:6.080000pt;}
.ws2b_c00402{word-spacing:9.216000pt;}
.ws2a_c00402{word-spacing:9.280000pt;}
.ws2c_c00402{word-spacing:11.456000pt;}
.ws2d_c00402{word-spacing:11.520000pt;}
.ws1f_c00402{word-spacing:11.712000pt;}
.ws1e_c00402{word-spacing:11.776000pt;}
.ws1d_c00402{word-spacing:11.840000pt;}
.wsf_c00402{word-spacing:12.160000pt;}
.ws27_c00402{word-spacing:18.176000pt;}
.ws26_c00402{word-spacing:18.560000pt;}
.wsb_c00402{word-spacing:22.656000pt;}
.wsa_c00402{word-spacing:22.976000pt;}
.ws9_c00402{word-spacing:28.800000pt;}
.ws28_c00402{word-spacing:30.720000pt;}
.ws25_c00402{word-spacing:32.320000pt;}
.ws29_c00402{word-spacing:34.560000pt;}
.ws1c_c00402{word-spacing:319.360000pt;}
._1_c00402{margin-left:-0.940800pt;}
._0_c00402{width:1.084800pt;}
._3_c00402{width:2.880000pt;}
._2_c00402{width:4.160000pt;}
._4_c00402{width:6.336000pt;}
.fs0_c00402{font-size:48.000000pt;}
.fs1_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y26_c00402{bottom:50.880000pt;}
.y25_c00402{bottom:103.840000pt;}
.y24_c00402{bottom:131.440000pt;}
.y23_c00402{bottom:159.040000pt;}
.y22_c00402{bottom:186.640000pt;}
.y21_c00402{bottom:214.240000pt;}
.y20_c00402{bottom:241.840000pt;}
.y1f_c00402{bottom:269.440000pt;}
.y1e_c00402{bottom:297.040000pt;}
.y1d_c00402{bottom:324.640000pt;}
.y1c_c00402{bottom:352.240000pt;}
.y1b_c00402{bottom:379.840000pt;}
.y1a_c00402{bottom:407.440000pt;}
.y19_c00402{bottom:435.040000pt;}
.y18_c00402{bottom:462.640000pt;}
.y17_c00402{bottom:490.240000pt;}
.y16_c00402{bottom:517.840000pt;}
.y15_c00402{bottom:545.440000pt;}
.y14_c00402{bottom:573.040000pt;}
.y13_c00402{bottom:600.640000pt;}
.y12_c00402{bottom:628.240000pt;}
.y11_c00402{bottom:655.840000pt;}
.y10_c00402{bottom:683.440000pt;}
.yf_c00402{bottom:711.040000pt;}
.ye_c00402{bottom:738.640000pt;}
.yd_c00402{bottom:766.160000pt;}
.yc_c00402{bottom:793.760000pt;}
.yb_c00402{bottom:821.360000pt;}
.ya_c00402{bottom:848.960000pt;}
.y9_c00402{bottom:876.560000pt;}
.y8_c00402{bottom:904.160000pt;}
.y7_c00402{bottom:931.760000pt;}
.y6_c00402{bottom:959.360000pt;}
.y5_c00402{bottom:1005.360000pt;}
.y4_c00402{bottom:1023.040000pt;}
.y3_c00402{bottom:1036.804000pt;}
.y2_c00402{bottom:1050.640000pt;}
.y1_c00402{bottom:1064.400000pt;}
.h3_c00402{height:47.085938pt;}
.h2_c00402{height:47.109375pt;}
.h4_c00402{height:62.812500pt;}
.h5_c00402{height:66.750000pt;}
.h0_c00402{height:1122.560000pt;}
.h1_c00402{height:1122.666667pt;}
.w0_c00402{width:793.840000pt;}
.w1_c00402{width:794.000000pt;}
.x0_c00402{left:0.000000pt;}
.x3_c00402{left:113.440000pt;}
.x5_c00402{left:137.440000pt;}
.x4_c00402{left:161.440000pt;}
.x2_c00402{left:377.920000pt;}
.x1_c00402{left:396.960000pt;}
.x6_c00402{left:656.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_c00403 {
    display:none;
  }
  .loading-indicator_c00403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00403 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00403 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00403" -> "#page-container .classname_c00403")
 */
.pf_c00403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00403 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00403 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00403 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00403 {overflow:visible;}
  }
}
.c_c00403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00403 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00403:after { /* webkit #35443 */
  content: '';
}
.t_c00403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00403 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00403 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00403 { /* info for Javascript */
  display:none;
}
.l_c00403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00403:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00403;src:url('chunks/assets/font_8d8284166c9ef620fb217fc5.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_1fdf3f9e93a0255b5e8c65cf.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00403{vertical-align:-82.800000px;}
.v1_c00403{vertical-align:-61.938000px;}
.v0_c00403{vertical-align:0.000000px;}
.lsb_c00403{letter-spacing:-0.360000px;}
.lsa_c00403{letter-spacing:-0.144000px;}
.lsd_c00403{letter-spacing:-0.072000px;}
.ls9_c00403{letter-spacing:0.000000px;}
.ls4_c00403{letter-spacing:0.072000px;}
.ls2_c00403{letter-spacing:0.144000px;}
.ls7_c00403{letter-spacing:0.216000px;}
.lsc_c00403{letter-spacing:0.360000px;}
.ls6_c00403{letter-spacing:8.640000px;}
.ls5_c00403{letter-spacing:17.280000px;}
.ls8_c00403{letter-spacing:31.680000px;}
.ls3_c00403{letter-spacing:63.864000px;}
.ls1_c00403{letter-spacing:90.000000px;}
.ls0_c00403{letter-spacing:319.518000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00403{word-spacing:-18.144000px;}
.ws1_c00403{word-spacing:-18.072000px;}
.ws0_c00403{word-spacing:-18.000000px;}
.ws5_c00403{word-spacing:-17.928000px;}
.ws2_c00403{word-spacing:-17.856000px;}
.ws3_c00403{word-spacing:-17.640000px;}
.ws15_c00403{word-spacing:-0.360000px;}
.ws7_c00403{word-spacing:-0.162000px;}
.wse_c00403{word-spacing:-0.144000px;}
.wsd_c00403{word-spacing:-0.072000px;}
.ws6_c00403{word-spacing:0.000000px;}
.ws1f_c00403{word-spacing:0.072000px;}
.ws23_c00403{word-spacing:0.144000px;}
.ws17_c00403{word-spacing:0.360000px;}
.ws2a_c00403{word-spacing:0.720000px;}
.ws1b_c00403{word-spacing:4.680000px;}
.ws1c_c00403{word-spacing:5.040000px;}
.ws1d_c00403{word-spacing:5.184000px;}
.ws16_c00403{word-spacing:7.488000px;}
.ws18_c00403{word-spacing:7.560000px;}
.ws22_c00403{word-spacing:8.208000px;}
.ws21_c00403{word-spacing:8.280000px;}
.ws13_c00403{word-spacing:8.928000px;}
.ws14_c00403{word-spacing:9.000000px;}
.ws1a_c00403{word-spacing:12.600000px;}
.ws2d_c00403{word-spacing:15.480000px;}
.ws2c_c00403{word-spacing:15.768000px;}
.ws2b_c00403{word-spacing:15.840000px;}
.wsb_c00403{word-spacing:17.208000px;}
.wsc_c00403{word-spacing:17.280000px;}
.ws19_c00403{word-spacing:19.440000px;}
.ws29_c00403{word-spacing:20.808000px;}
.ws28_c00403{word-spacing:20.880000px;}
.wsa_c00403{word-spacing:24.408000px;}
.ws9_c00403{word-spacing:28.368000px;}
.ws8_c00403{word-spacing:28.440000px;}
.ws12_c00403{word-spacing:29.448000px;}
.ws11_c00403{word-spacing:29.520000px;}
.ws25_c00403{word-spacing:30.240000px;}
.ws24_c00403{word-spacing:30.600000px;}
.ws27_c00403{word-spacing:31.248000px;}
.ws26_c00403{word-spacing:31.680000px;}
.ws10_c00403{word-spacing:37.080000px;}
.wsf_c00403{word-spacing:37.440000px;}
.ws20_c00403{word-spacing:38.016000px;}
.ws1e_c00403{word-spacing:38.160000px;}
._1_c00403{margin-left:-1.296000px;}
._0_c00403{width:1.008000px;}
._5_c00403{width:7.560000px;}
._4_c00403{width:8.856000px;}
._2_c00403{width:16.992000px;}
._6_c00403{width:19.224000px;}
._3_c00403{width:29.592000px;}
._8_c00403{width:31.752000px;}
._7_c00403{width:38.448000px;}
.fc0_c00403{color:rgb(0,0,0);}
.fs0_c00403{font-size:54.000000px;}
.fs1_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.y25_c00403{bottom:57.240000px;}
.y24_c00403{bottom:116.820000px;}
.y23_c00403{bottom:147.870000px;}
.y22_c00403{bottom:178.920000px;}
.y21_c00403{bottom:209.970000px;}
.y20_c00403{bottom:241.020000px;}
.y1f_c00403{bottom:272.070000px;}
.y1e_c00403{bottom:303.120000px;}
.y1d_c00403{bottom:334.170000px;}
.y1c_c00403{bottom:365.220000px;}
.y1b_c00403{bottom:396.270000px;}
.y1a_c00403{bottom:427.320000px;}
.y19_c00403{bottom:458.370000px;}
.y18_c00403{bottom:489.420000px;}
.y17_c00403{bottom:520.470000px;}
.y16_c00403{bottom:551.520000px;}
.y15_c00403{bottom:582.570000px;}
.y14_c00403{bottom:613.620000px;}
.y13_c00403{bottom:644.670000px;}
.y12_c00403{bottom:675.720000px;}
.y11_c00403{bottom:706.770000px;}
.y10_c00403{bottom:737.820000px;}
.yf_c00403{bottom:768.870000px;}
.ye_c00403{bottom:799.920000px;}
.yd_c00403{bottom:830.970000px;}
.yc_c00403{bottom:861.930000px;}
.yb_c00403{bottom:892.980000px;}
.ya_c00403{bottom:924.030000px;}
.y9_c00403{bottom:955.080000px;}
.y8_c00403{bottom:986.130000px;}
.y7_c00403{bottom:1017.180000px;}
.y6_c00403{bottom:1048.230000px;}
.y5_c00403{bottom:1079.280000px;}
.y4_c00403{bottom:1131.030000px;}
.y3_c00403{bottom:1150.915500px;}
.y2_c00403{bottom:1166.400000px;}
.y1_c00403{bottom:1197.450000px;}
.h2_c00403{height:52.998047px;}
.h3_c00403{height:70.664062px;}
.h4_c00403{height:75.093750px;}
.h0_c00403{height:1262.880000px;}
.h1_c00403{height:1263.000000px;}
.w0_c00403{width:893.070000px;}
.w1_c00403{width:893.250000px;}
.x0_c00403{left:0.000000px;}
.x2_c00403{left:127.620000px;}
.x4_c00403{left:154.620000px;}
.x3_c00403{left:181.620000px;}
.x1_c00403{left:446.580000px;}
@media print{
.v2_c00403{vertical-align:-73.600000pt;}
.v1_c00403{vertical-align:-55.056000pt;}
.v0_c00403{vertical-align:0.000000pt;}
.lsb_c00403{letter-spacing:-0.320000pt;}
.lsa_c00403{letter-spacing:-0.128000pt;}
.lsd_c00403{letter-spacing:-0.064000pt;}
.ls9_c00403{letter-spacing:0.000000pt;}
.ls4_c00403{letter-spacing:0.064000pt;}
.ls2_c00403{letter-spacing:0.128000pt;}
.ls7_c00403{letter-spacing:0.192000pt;}
.lsc_c00403{letter-spacing:0.320000pt;}
.ls6_c00403{letter-spacing:7.680000pt;}
.ls5_c00403{letter-spacing:15.360000pt;}
.ls8_c00403{letter-spacing:28.160000pt;}
.ls3_c00403{letter-spacing:56.768000pt;}
.ls1_c00403{letter-spacing:80.000000pt;}
.ls0_c00403{letter-spacing:284.016000pt;}
.ws4_c00403{word-spacing:-16.128000pt;}
.ws1_c00403{word-spacing:-16.064000pt;}
.ws0_c00403{word-spacing:-16.000000pt;}
.ws5_c00403{word-spacing:-15.936000pt;}
.ws2_c00403{word-spacing:-15.872000pt;}
.ws3_c00403{word-spacing:-15.680000pt;}
.ws15_c00403{word-spacing:-0.320000pt;}
.ws7_c00403{word-spacing:-0.144000pt;}
.wse_c00403{word-spacing:-0.128000pt;}
.wsd_c00403{word-spacing:-0.064000pt;}
.ws6_c00403{word-spacing:0.000000pt;}
.ws1f_c00403{word-spacing:0.064000pt;}
.ws23_c00403{word-spacing:0.128000pt;}
.ws17_c00403{word-spacing:0.320000pt;}
.ws2a_c00403{word-spacing:0.640000pt;}
.ws1b_c00403{word-spacing:4.160000pt;}
.ws1c_c00403{word-spacing:4.480000pt;}
.ws1d_c00403{word-spacing:4.608000pt;}
.ws16_c00403{word-spacing:6.656000pt;}
.ws18_c00403{word-spacing:6.720000pt;}
.ws22_c00403{word-spacing:7.296000pt;}
.ws21_c00403{word-spacing:7.360000pt;}
.ws13_c00403{word-spacing:7.936000pt;}
.ws14_c00403{word-spacing:8.000000pt;}
.ws1a_c00403{word-spacing:11.200000pt;}
.ws2d_c00403{word-spacing:13.760000pt;}
.ws2c_c00403{word-spacing:14.016000pt;}
.ws2b_c00403{word-spacing:14.080000pt;}
.wsb_c00403{word-spacing:15.296000pt;}
.wsc_c00403{word-spacing:15.360000pt;}
.ws19_c00403{word-spacing:17.280000pt;}
.ws29_c00403{word-spacing:18.496000pt;}
.ws28_c00403{word-spacing:18.560000pt;}
.wsa_c00403{word-spacing:21.696000pt;}
.ws9_c00403{word-spacing:25.216000pt;}
.ws8_c00403{word-spacing:25.280000pt;}
.ws12_c00403{word-spacing:26.176000pt;}
.ws11_c00403{word-spacing:26.240000pt;}
.ws25_c00403{word-spacing:26.880000pt;}
.ws24_c00403{word-spacing:27.200000pt;}
.ws27_c00403{word-spacing:27.776000pt;}
.ws26_c00403{word-spacing:28.160000pt;}
.ws10_c00403{word-spacing:32.960000pt;}
.wsf_c00403{word-spacing:33.280000pt;}
.ws20_c00403{word-spacing:33.792000pt;}
.ws1e_c00403{word-spacing:33.920000pt;}
._1_c00403{margin-left:-1.152000pt;}
._0_c00403{width:0.896000pt;}
._5_c00403{width:6.720000pt;}
._4_c00403{width:7.872000pt;}
._2_c00403{width:15.104000pt;}
._6_c00403{width:17.088000pt;}
._3_c00403{width:26.304000pt;}
._8_c00403{width:28.224000pt;}
._7_c00403{width:34.176000pt;}
.fs0_c00403{font-size:48.000000pt;}
.fs1_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y25_c00403{bottom:50.880000pt;}
.y24_c00403{bottom:103.840000pt;}
.y23_c00403{bottom:131.440000pt;}
.y22_c00403{bottom:159.040000pt;}
.y21_c00403{bottom:186.640000pt;}
.y20_c00403{bottom:214.240000pt;}
.y1f_c00403{bottom:241.840000pt;}
.y1e_c00403{bottom:269.440000pt;}
.y1d_c00403{bottom:297.040000pt;}
.y1c_c00403{bottom:324.640000pt;}
.y1b_c00403{bottom:352.240000pt;}
.y1a_c00403{bottom:379.840000pt;}
.y19_c00403{bottom:407.440000pt;}
.y18_c00403{bottom:435.040000pt;}
.y17_c00403{bottom:462.640000pt;}
.y16_c00403{bottom:490.240000pt;}
.y15_c00403{bottom:517.840000pt;}
.y14_c00403{bottom:545.440000pt;}
.y13_c00403{bottom:573.040000pt;}
.y12_c00403{bottom:600.640000pt;}
.y11_c00403{bottom:628.240000pt;}
.y10_c00403{bottom:655.840000pt;}
.yf_c00403{bottom:683.440000pt;}
.ye_c00403{bottom:711.040000pt;}
.yd_c00403{bottom:738.640000pt;}
.yc_c00403{bottom:766.160000pt;}
.yb_c00403{bottom:793.760000pt;}
.ya_c00403{bottom:821.360000pt;}
.y9_c00403{bottom:848.960000pt;}
.y8_c00403{bottom:876.560000pt;}
.y7_c00403{bottom:904.160000pt;}
.y6_c00403{bottom:931.760000pt;}
.y5_c00403{bottom:959.360000pt;}
.y4_c00403{bottom:1005.360000pt;}
.y3_c00403{bottom:1023.036000pt;}
.y2_c00403{bottom:1036.800000pt;}
.y1_c00403{bottom:1064.400000pt;}
.h2_c00403{height:47.109375pt;}
.h3_c00403{height:62.812500pt;}
.h4_c00403{height:66.750000pt;}
.h0_c00403{height:1122.560000pt;}
.h1_c00403{height:1122.666667pt;}
.w0_c00403{width:793.840000pt;}
.w1_c00403{width:794.000000pt;}
.x0_c00403{left:0.000000pt;}
.x2_c00403{left:113.440000pt;}
.x4_c00403{left:137.440000pt;}
.x3_c00403{left:161.440000pt;}
.x1_c00403{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c717f13f1c62299be22ad60f.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_23aa00d53bac335070d7a79d.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.432129;font-style: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);}
.v1_c00404{vertical-align:-82.800000px;}
.v0_c00404{vertical-align:0.000000px;}
.lsb_c00404{letter-spacing:-0.360000px;}
.lsc_c00404{letter-spacing:-0.288000px;}
.lsa_c00404{letter-spacing:-0.144000px;}
.ls9_c00404{letter-spacing:-0.108000px;}
.ls8_c00404{letter-spacing:0.000000px;}
.ls4_c00404{letter-spacing:0.072000px;}
.ls1_c00404{letter-spacing:0.144000px;}
.ls3_c00404{letter-spacing:0.360000px;}
.ls6_c00404{letter-spacing:7.200000px;}
.ls7_c00404{letter-spacing:9.720000px;}
.ls5_c00404{letter-spacing:18.720000px;}
.ls2_c00404{letter-spacing:63.864000px;}
.ls0_c00404{letter-spacing:90.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00404{word-spacing:-18.144000px;}
.ws2_c00404{word-spacing:-18.072000px;}
.ws0_c00404{word-spacing:-18.000000px;}
.ws1_c00404{word-spacing:-17.856000px;}
.ws12_c00404{word-spacing:-0.144000px;}
.wse_c00404{word-spacing:-0.072000px;}
.ws4_c00404{word-spacing:0.000000px;}
.ws6_c00404{word-spacing:0.162000px;}
.ws5_c00404{word-spacing:0.270000px;}
.ws15_c00404{word-spacing:0.288000px;}
.wsa_c00404{word-spacing:0.360000px;}
.ws1d_c00404{word-spacing:2.520000px;}
.ws1e_c00404{word-spacing:2.808000px;}
.ws17_c00404{word-spacing:5.328000px;}
.ws1f_c00404{word-spacing:6.840000px;}
.ws23_c00404{word-spacing:7.128000px;}
.ws13_c00404{word-spacing:7.200000px;}
.ws22_c00404{word-spacing:7.560000px;}
.ws25_c00404{word-spacing:9.648000px;}
.ws24_c00404{word-spacing:9.720000px;}
.ws8_c00404{word-spacing:11.520000px;}
.ws9_c00404{word-spacing:11.880000px;}
.ws16_c00404{word-spacing:12.960000px;}
.wsb_c00404{word-spacing:13.608000px;}
.wsc_c00404{word-spacing:13.680000px;}
.ws19_c00404{word-spacing:18.648000px;}
.ws1b_c00404{word-spacing:18.720000px;}
.ws1a_c00404{word-spacing:19.080000px;}
.ws10_c00404{word-spacing:19.368000px;}
.wsf_c00404{word-spacing:19.440000px;}
.ws7_c00404{word-spacing:21.960000px;}
.wsd_c00404{word-spacing:24.840000px;}
.ws21_c00404{word-spacing:26.928000px;}
.ws20_c00404{word-spacing:27.000000px;}
.ws11_c00404{word-spacing:34.200000px;}
.ws26_c00404{word-spacing:46.008000px;}
.ws27_c00404{word-spacing:46.080000px;}
.ws1c_c00404{word-spacing:60.840000px;}
.ws14_c00404{word-spacing:109.440000px;}
.ws18_c00404{word-spacing:168.840000px;}
._1_c00404{margin-left:-1.058400px;}
._0_c00404{width:1.220400px;}
._4_c00404{width:4.903200px;}
._3_c00404{width:7.128000px;}
._2_c00404{width:11.523600px;}
.fc0_c00404{color:rgb(0,0,0);}
.fs0_c00404{font-size:54.000000px;}
.fs1_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.y26_c00404{bottom:57.240000px;}
.y25_c00404{bottom:116.820000px;}
.y24_c00404{bottom:147.870000px;}
.y23_c00404{bottom:178.920000px;}
.y22_c00404{bottom:209.970000px;}
.y21_c00404{bottom:241.020000px;}
.y20_c00404{bottom:272.070000px;}
.y1f_c00404{bottom:303.120000px;}
.y1e_c00404{bottom:334.170000px;}
.y1d_c00404{bottom:365.220000px;}
.y1c_c00404{bottom:396.270000px;}
.y1b_c00404{bottom:427.320000px;}
.y1a_c00404{bottom:458.370000px;}
.y19_c00404{bottom:489.420000px;}
.y18_c00404{bottom:520.470000px;}
.y17_c00404{bottom:551.520000px;}
.y16_c00404{bottom:582.570000px;}
.y15_c00404{bottom:613.530000px;}
.y14_c00404{bottom:644.670000px;}
.y13_c00404{bottom:675.720000px;}
.y12_c00404{bottom:706.770000px;}
.y11_c00404{bottom:737.820000px;}
.y10_c00404{bottom:768.870000px;}
.yf_c00404{bottom:799.830000px;}
.ye_c00404{bottom:830.970000px;}
.yd_c00404{bottom:861.930000px;}
.yc_c00404{bottom:892.980000px;}
.yb_c00404{bottom:924.030000px;}
.ya_c00404{bottom:955.080000px;}
.y9_c00404{bottom:986.130000px;}
.y8_c00404{bottom:1017.180000px;}
.y7_c00404{bottom:1048.230000px;}
.y6_c00404{bottom:1079.280000px;}
.y5_c00404{bottom:1131.030000px;}
.y4_c00404{bottom:1150.920000px;}
.y3_c00404{bottom:1166.404500px;}
.y2_c00404{bottom:1181.970000px;}
.y1_c00404{bottom:1197.450000px;}
.h3_c00404{height:52.971680px;}
.h2_c00404{height:52.998047px;}
.h6_c00404{height:70.628906px;}
.h4_c00404{height:70.664062px;}
.h5_c00404{height:75.093750px;}
.h0_c00404{height:1262.880000px;}
.h1_c00404{height:1263.000000px;}
.w0_c00404{width:893.070000px;}
.w1_c00404{width:893.250000px;}
.x0_c00404{left:0.000000px;}
.x3_c00404{left:127.620000px;}
.x5_c00404{left:154.620000px;}
.x4_c00404{left:181.620000px;}
.x2_c00404{left:425.160000px;}
.x1_c00404{left:446.580000px;}
.x6_c00404{left:738.540000px;}
@media print{
.v1_c00404{vertical-align:-73.600000pt;}
.v0_c00404{vertical-align:0.000000pt;}
.lsb_c00404{letter-spacing:-0.320000pt;}
.lsc_c00404{letter-spacing:-0.256000pt;}
.lsa_c00404{letter-spacing:-0.128000pt;}
.ls9_c00404{letter-spacing:-0.096000pt;}
.ls8_c00404{letter-spacing:0.000000pt;}
.ls4_c00404{letter-spacing:0.064000pt;}
.ls1_c00404{letter-spacing:0.128000pt;}
.ls3_c00404{letter-spacing:0.320000pt;}
.ls6_c00404{letter-spacing:6.400000pt;}
.ls7_c00404{letter-spacing:8.640000pt;}
.ls5_c00404{letter-spacing:16.640000pt;}
.ls2_c00404{letter-spacing:56.768000pt;}
.ls0_c00404{letter-spacing:80.000000pt;}
.ws3_c00404{word-spacing:-16.128000pt;}
.ws2_c00404{word-spacing:-16.064000pt;}
.ws0_c00404{word-spacing:-16.000000pt;}
.ws1_c00404{word-spacing:-15.872000pt;}
.ws12_c00404{word-spacing:-0.128000pt;}
.wse_c00404{word-spacing:-0.064000pt;}
.ws4_c00404{word-spacing:0.000000pt;}
.ws6_c00404{word-spacing:0.144000pt;}
.ws5_c00404{word-spacing:0.240000pt;}
.ws15_c00404{word-spacing:0.256000pt;}
.wsa_c00404{word-spacing:0.320000pt;}
.ws1d_c00404{word-spacing:2.240000pt;}
.ws1e_c00404{word-spacing:2.496000pt;}
.ws17_c00404{word-spacing:4.736000pt;}
.ws1f_c00404{word-spacing:6.080000pt;}
.ws23_c00404{word-spacing:6.336000pt;}
.ws13_c00404{word-spacing:6.400000pt;}
.ws22_c00404{word-spacing:6.720000pt;}
.ws25_c00404{word-spacing:8.576000pt;}
.ws24_c00404{word-spacing:8.640000pt;}
.ws8_c00404{word-spacing:10.240000pt;}
.ws9_c00404{word-spacing:10.560000pt;}
.ws16_c00404{word-spacing:11.520000pt;}
.wsb_c00404{word-spacing:12.096000pt;}
.wsc_c00404{word-spacing:12.160000pt;}
.ws19_c00404{word-spacing:16.576000pt;}
.ws1b_c00404{word-spacing:16.640000pt;}
.ws1a_c00404{word-spacing:16.960000pt;}
.ws10_c00404{word-spacing:17.216000pt;}
.wsf_c00404{word-spacing:17.280000pt;}
.ws7_c00404{word-spacing:19.520000pt;}
.wsd_c00404{word-spacing:22.080000pt;}
.ws21_c00404{word-spacing:23.936000pt;}
.ws20_c00404{word-spacing:24.000000pt;}
.ws11_c00404{word-spacing:30.400000pt;}
.ws26_c00404{word-spacing:40.896000pt;}
.ws27_c00404{word-spacing:40.960000pt;}
.ws1c_c00404{word-spacing:54.080000pt;}
.ws14_c00404{word-spacing:97.280000pt;}
.ws18_c00404{word-spacing:150.080000pt;}
._1_c00404{margin-left:-0.940800pt;}
._0_c00404{width:1.084800pt;}
._4_c00404{width:4.358400pt;}
._3_c00404{width:6.336000pt;}
._2_c00404{width:10.243200pt;}
.fs0_c00404{font-size:48.000000pt;}
.fs1_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y26_c00404{bottom:50.880000pt;}
.y25_c00404{bottom:103.840000pt;}
.y24_c00404{bottom:131.440000pt;}
.y23_c00404{bottom:159.040000pt;}
.y22_c00404{bottom:186.640000pt;}
.y21_c00404{bottom:214.240000pt;}
.y20_c00404{bottom:241.840000pt;}
.y1f_c00404{bottom:269.440000pt;}
.y1e_c00404{bottom:297.040000pt;}
.y1d_c00404{bottom:324.640000pt;}
.y1c_c00404{bottom:352.240000pt;}
.y1b_c00404{bottom:379.840000pt;}
.y1a_c00404{bottom:407.440000pt;}
.y19_c00404{bottom:435.040000pt;}
.y18_c00404{bottom:462.640000pt;}
.y17_c00404{bottom:490.240000pt;}
.y16_c00404{bottom:517.840000pt;}
.y15_c00404{bottom:545.360000pt;}
.y14_c00404{bottom:573.040000pt;}
.y13_c00404{bottom:600.640000pt;}
.y12_c00404{bottom:628.240000pt;}
.y11_c00404{bottom:655.840000pt;}
.y10_c00404{bottom:683.440000pt;}
.yf_c00404{bottom:710.960000pt;}
.ye_c00404{bottom:738.640000pt;}
.yd_c00404{bottom:766.160000pt;}
.yc_c00404{bottom:793.760000pt;}
.yb_c00404{bottom:821.360000pt;}
.ya_c00404{bottom:848.960000pt;}
.y9_c00404{bottom:876.560000pt;}
.y8_c00404{bottom:904.160000pt;}
.y7_c00404{bottom:931.760000pt;}
.y6_c00404{bottom:959.360000pt;}
.y5_c00404{bottom:1005.360000pt;}
.y4_c00404{bottom:1023.040000pt;}
.y3_c00404{bottom:1036.804000pt;}
.y2_c00404{bottom:1050.640000pt;}
.y1_c00404{bottom:1064.400000pt;}
.h3_c00404{height:47.085938pt;}
.h2_c00404{height:47.109375pt;}
.h6_c00404{height:62.781250pt;}
.h4_c00404{height:62.812500pt;}
.h5_c00404{height:66.750000pt;}
.h0_c00404{height:1122.560000pt;}
.h1_c00404{height:1122.666667pt;}
.w0_c00404{width:793.840000pt;}
.w1_c00404{width:794.000000pt;}
.x0_c00404{left:0.000000pt;}
.x3_c00404{left:113.440000pt;}
.x5_c00404{left:137.440000pt;}
.x4_c00404{left:161.440000pt;}
.x2_c00404{left:377.920000pt;}
.x1_c00404{left:396.960000pt;}
.x6_c00404{left:656.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_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_0c6cdc7dfafe3662f9539f31.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_2280c96a28a42e31eadcf37d.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.432129;font-style: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);}
.v2_c00405{vertical-align:-82.800000px;}
.v1_c00405{vertical-align:-61.938000px;}
.v0_c00405{vertical-align:0.000000px;}
.lsa_c00405{letter-spacing:-0.360000px;}
.ls9_c00405{letter-spacing:-0.216000px;}
.ls7_c00405{letter-spacing:-0.144000px;}
.ls8_c00405{letter-spacing:-0.072000px;}
.ls4_c00405{letter-spacing:0.000000px;}
.ls6_c00405{letter-spacing:0.072000px;}
.ls2_c00405{letter-spacing:0.144000px;}
.ls5_c00405{letter-spacing:0.360000px;}
.ls3_c00405{letter-spacing:63.864000px;}
.ls1_c00405{letter-spacing:90.000000px;}
.ls0_c00405{letter-spacing:319.518000px;}
.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;}
}
.ws2_c00405{word-spacing:-18.144000px;}
.ws1_c00405{word-spacing:-18.072000px;}
.ws0_c00405{word-spacing:-18.000000px;}
.ws3_c00405{word-spacing:-17.928000px;}
.ws5_c00405{word-spacing:-17.856000px;}
.ws4_c00405{word-spacing:-17.784000px;}
.ws6_c00405{word-spacing:-17.640000px;}
.wsa_c00405{word-spacing:-0.360000px;}
.ws8_c00405{word-spacing:-0.162000px;}
.ws16_c00405{word-spacing:-0.072000px;}
.ws7_c00405{word-spacing:0.000000px;}
.ws15_c00405{word-spacing:0.288000px;}
.ws20_c00405{word-spacing:0.360000px;}
.ws14_c00405{word-spacing:0.648000px;}
.ws13_c00405{word-spacing:0.720000px;}
.ws10_c00405{word-spacing:1.368000px;}
.ws22_c00405{word-spacing:2.880000px;}
.ws21_c00405{word-spacing:3.240000px;}
.ws2d_c00405{word-spacing:5.400000px;}
.ws12_c00405{word-spacing:7.848000px;}
.wsf_c00405{word-spacing:8.928000px;}
.wse_c00405{word-spacing:9.000000px;}
.ws1f_c00405{word-spacing:11.088000px;}
.ws1e_c00405{word-spacing:11.160000px;}
.ws25_c00405{word-spacing:11.736000px;}
.ws24_c00405{word-spacing:11.808000px;}
.ws23_c00405{word-spacing:11.880000px;}
.ws30_c00405{word-spacing:12.240000px;}
.ws27_c00405{word-spacing:15.768000px;}
.ws26_c00405{word-spacing:16.200000px;}
.ws11_c00405{word-spacing:16.560000px;}
.ws1a_c00405{word-spacing:17.208000px;}
.ws1b_c00405{word-spacing:17.280000px;}
.wsc_c00405{word-spacing:22.680000px;}
.wsd_c00405{word-spacing:22.824000px;}
.ws1c_c00405{word-spacing:23.328000px;}
.ws1d_c00405{word-spacing:23.400000px;}
.ws19_c00405{word-spacing:25.416000px;}
.ws17_c00405{word-spacing:25.488000px;}
.ws18_c00405{word-spacing:25.704000px;}
.ws28_c00405{word-spacing:28.368000px;}
.ws29_c00405{word-spacing:28.440000px;}
.ws9_c00405{word-spacing:29.880000px;}
.ws2f_c00405{word-spacing:36.000000px;}
.ws2e_c00405{word-spacing:36.288000px;}
.ws2c_c00405{word-spacing:41.400000px;}
.ws2a_c00405{word-spacing:42.120000px;}
.ws2b_c00405{word-spacing:42.840000px;}
.wsb_c00405{word-spacing:64.296000px;}
._0_c00405{margin-left:-1.008000px;}
._1_c00405{width:1.008000px;}
._5_c00405{width:2.736000px;}
._3_c00405{width:7.488000px;}
._2_c00405{width:9.360000px;}
._4_c00405{width:11.520000px;}
._6_c00405{width:15.624000px;}
._8_c00405{width:35.568000px;}
._7_c00405{width:41.760000px;}
.fc0_c00405{color:rgb(0,0,0);}
.fs0_c00405{font-size:54.000000px;}
.fs1_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y25_c00405{bottom:57.240000px;}
.y24_c00405{bottom:116.820000px;}
.y23_c00405{bottom:147.870000px;}
.y22_c00405{bottom:178.920000px;}
.y21_c00405{bottom:209.970000px;}
.y20_c00405{bottom:241.020000px;}
.y1f_c00405{bottom:272.070000px;}
.y1e_c00405{bottom:303.120000px;}
.y1d_c00405{bottom:334.170000px;}
.y1c_c00405{bottom:365.220000px;}
.y1b_c00405{bottom:396.270000px;}
.y1a_c00405{bottom:427.320000px;}
.y19_c00405{bottom:458.370000px;}
.y18_c00405{bottom:489.420000px;}
.y17_c00405{bottom:520.470000px;}
.y16_c00405{bottom:551.520000px;}
.y15_c00405{bottom:582.570000px;}
.y14_c00405{bottom:613.620000px;}
.y13_c00405{bottom:644.670000px;}
.y12_c00405{bottom:675.720000px;}
.y11_c00405{bottom:706.770000px;}
.y10_c00405{bottom:737.820000px;}
.yf_c00405{bottom:768.870000px;}
.ye_c00405{bottom:799.920000px;}
.yd_c00405{bottom:830.970000px;}
.yc_c00405{bottom:861.930000px;}
.yb_c00405{bottom:892.980000px;}
.ya_c00405{bottom:923.940000px;}
.y9_c00405{bottom:955.080000px;}
.y8_c00405{bottom:986.130000px;}
.y7_c00405{bottom:1017.180000px;}
.y6_c00405{bottom:1048.230000px;}
.y5_c00405{bottom:1079.280000px;}
.y4_c00405{bottom:1131.030000px;}
.y3_c00405{bottom:1150.915500px;}
.y2_c00405{bottom:1166.400000px;}
.y1_c00405{bottom:1197.450000px;}
.h2_c00405{height:52.998047px;}
.h5_c00405{height:70.628906px;}
.h3_c00405{height:70.664062px;}
.h4_c00405{height:75.093750px;}
.h0_c00405{height:1262.880000px;}
.h1_c00405{height:1263.000000px;}
.w0_c00405{width:893.070000px;}
.w1_c00405{width:893.250000px;}
.x0_c00405{left:0.000000px;}
.x2_c00405{left:127.620000px;}
.x4_c00405{left:154.620000px;}
.x3_c00405{left:181.620000px;}
.x1_c00405{left:446.580000px;}
@media print{
.v2_c00405{vertical-align:-73.600000pt;}
.v1_c00405{vertical-align:-55.056000pt;}
.v0_c00405{vertical-align:0.000000pt;}
.lsa_c00405{letter-spacing:-0.320000pt;}
.ls9_c00405{letter-spacing:-0.192000pt;}
.ls7_c00405{letter-spacing:-0.128000pt;}
.ls8_c00405{letter-spacing:-0.064000pt;}
.ls4_c00405{letter-spacing:0.000000pt;}
.ls6_c00405{letter-spacing:0.064000pt;}
.ls2_c00405{letter-spacing:0.128000pt;}
.ls5_c00405{letter-spacing:0.320000pt;}
.ls3_c00405{letter-spacing:56.768000pt;}
.ls1_c00405{letter-spacing:80.000000pt;}
.ls0_c00405{letter-spacing:284.016000pt;}
.ws2_c00405{word-spacing:-16.128000pt;}
.ws1_c00405{word-spacing:-16.064000pt;}
.ws0_c00405{word-spacing:-16.000000pt;}
.ws3_c00405{word-spacing:-15.936000pt;}
.ws5_c00405{word-spacing:-15.872000pt;}
.ws4_c00405{word-spacing:-15.808000pt;}
.ws6_c00405{word-spacing:-15.680000pt;}
.wsa_c00405{word-spacing:-0.320000pt;}
.ws8_c00405{word-spacing:-0.144000pt;}
.ws16_c00405{word-spacing:-0.064000pt;}
.ws7_c00405{word-spacing:0.000000pt;}
.ws15_c00405{word-spacing:0.256000pt;}
.ws20_c00405{word-spacing:0.320000pt;}
.ws14_c00405{word-spacing:0.576000pt;}
.ws13_c00405{word-spacing:0.640000pt;}
.ws10_c00405{word-spacing:1.216000pt;}
.ws22_c00405{word-spacing:2.560000pt;}
.ws21_c00405{word-spacing:2.880000pt;}
.ws2d_c00405{word-spacing:4.800000pt;}
.ws12_c00405{word-spacing:6.976000pt;}
.wsf_c00405{word-spacing:7.936000pt;}
.wse_c00405{word-spacing:8.000000pt;}
.ws1f_c00405{word-spacing:9.856000pt;}
.ws1e_c00405{word-spacing:9.920000pt;}
.ws25_c00405{word-spacing:10.432000pt;}
.ws24_c00405{word-spacing:10.496000pt;}
.ws23_c00405{word-spacing:10.560000pt;}
.ws30_c00405{word-spacing:10.880000pt;}
.ws27_c00405{word-spacing:14.016000pt;}
.ws26_c00405{word-spacing:14.400000pt;}
.ws11_c00405{word-spacing:14.720000pt;}
.ws1a_c00405{word-spacing:15.296000pt;}
.ws1b_c00405{word-spacing:15.360000pt;}
.wsc_c00405{word-spacing:20.160000pt;}
.wsd_c00405{word-spacing:20.288000pt;}
.ws1c_c00405{word-spacing:20.736000pt;}
.ws1d_c00405{word-spacing:20.800000pt;}
.ws19_c00405{word-spacing:22.592000pt;}
.ws17_c00405{word-spacing:22.656000pt;}
.ws18_c00405{word-spacing:22.848000pt;}
.ws28_c00405{word-spacing:25.216000pt;}
.ws29_c00405{word-spacing:25.280000pt;}
.ws9_c00405{word-spacing:26.560000pt;}
.ws2f_c00405{word-spacing:32.000000pt;}
.ws2e_c00405{word-spacing:32.256000pt;}
.ws2c_c00405{word-spacing:36.800000pt;}
.ws2a_c00405{word-spacing:37.440000pt;}
.ws2b_c00405{word-spacing:38.080000pt;}
.wsb_c00405{word-spacing:57.152000pt;}
._0_c00405{margin-left:-0.896000pt;}
._1_c00405{width:0.896000pt;}
._5_c00405{width:2.432000pt;}
._3_c00405{width:6.656000pt;}
._2_c00405{width:8.320000pt;}
._4_c00405{width:10.240000pt;}
._6_c00405{width:13.888000pt;}
._8_c00405{width:31.616000pt;}
._7_c00405{width:37.120000pt;}
.fs0_c00405{font-size:48.000000pt;}
.fs1_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y25_c00405{bottom:50.880000pt;}
.y24_c00405{bottom:103.840000pt;}
.y23_c00405{bottom:131.440000pt;}
.y22_c00405{bottom:159.040000pt;}
.y21_c00405{bottom:186.640000pt;}
.y20_c00405{bottom:214.240000pt;}
.y1f_c00405{bottom:241.840000pt;}
.y1e_c00405{bottom:269.440000pt;}
.y1d_c00405{bottom:297.040000pt;}
.y1c_c00405{bottom:324.640000pt;}
.y1b_c00405{bottom:352.240000pt;}
.y1a_c00405{bottom:379.840000pt;}
.y19_c00405{bottom:407.440000pt;}
.y18_c00405{bottom:435.040000pt;}
.y17_c00405{bottom:462.640000pt;}
.y16_c00405{bottom:490.240000pt;}
.y15_c00405{bottom:517.840000pt;}
.y14_c00405{bottom:545.440000pt;}
.y13_c00405{bottom:573.040000pt;}
.y12_c00405{bottom:600.640000pt;}
.y11_c00405{bottom:628.240000pt;}
.y10_c00405{bottom:655.840000pt;}
.yf_c00405{bottom:683.440000pt;}
.ye_c00405{bottom:711.040000pt;}
.yd_c00405{bottom:738.640000pt;}
.yc_c00405{bottom:766.160000pt;}
.yb_c00405{bottom:793.760000pt;}
.ya_c00405{bottom:821.280000pt;}
.y9_c00405{bottom:848.960000pt;}
.y8_c00405{bottom:876.560000pt;}
.y7_c00405{bottom:904.160000pt;}
.y6_c00405{bottom:931.760000pt;}
.y5_c00405{bottom:959.360000pt;}
.y4_c00405{bottom:1005.360000pt;}
.y3_c00405{bottom:1023.036000pt;}
.y2_c00405{bottom:1036.800000pt;}
.y1_c00405{bottom:1064.400000pt;}
.h2_c00405{height:47.109375pt;}
.h5_c00405{height:62.781250pt;}
.h3_c00405{height:62.812500pt;}
.h4_c00405{height:66.750000pt;}
.h0_c00405{height:1122.560000pt;}
.h1_c00405{height:1122.666667pt;}
.w0_c00405{width:793.840000pt;}
.w1_c00405{width:794.000000pt;}
.x0_c00405{left:0.000000pt;}
.x2_c00405{left:113.440000pt;}
.x4_c00405{left:137.440000pt;}
.x3_c00405{left:161.440000pt;}
.x1_c00405{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4bed418ee0a0eb9de827000.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_98d3612d926cfd3169fbe1dc.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.432129;font-style: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);}
.v1_c00406{vertical-align:-82.800000px;}
.v0_c00406{vertical-align:0.000000px;}
.lsf_c00406{letter-spacing:-0.504000px;}
.ls10_c00406{letter-spacing:-0.360000px;}
.lsd_c00406{letter-spacing:-0.216000px;}
.lsc_c00406{letter-spacing:-0.108000px;}
.lsb_c00406{letter-spacing:0.000000px;}
.ls7_c00406{letter-spacing:0.072000px;}
.ls1_c00406{letter-spacing:0.144000px;}
.lse_c00406{letter-spacing:0.360000px;}
.ls8_c00406{letter-spacing:1.440000px;}
.ls3_c00406{letter-spacing:7.920000px;}
.lsa_c00406{letter-spacing:14.040000px;}
.ls4_c00406{letter-spacing:14.400000px;}
.ls6_c00406{letter-spacing:25.560000px;}
.ls5_c00406{letter-spacing:45.360000px;}
.ls9_c00406{letter-spacing:46.800000px;}
.ls2_c00406{letter-spacing:63.864000px;}
.ls0_c00406{letter-spacing:90.000000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00406{word-spacing:-18.144000px;}
.ws0_c00406{word-spacing:-18.072000px;}
.ws2_c00406{word-spacing:-18.000000px;}
.ws1_c00406{word-spacing:-17.784000px;}
.ws3_c00406{word-spacing:-17.496000px;}
.ws19_c00406{word-spacing:-0.360000px;}
.wsc_c00406{word-spacing:-0.144000px;}
.ws10_c00406{word-spacing:-0.072000px;}
.ws5_c00406{word-spacing:0.000000px;}
.ws7_c00406{word-spacing:0.162000px;}
.ws6_c00406{word-spacing:0.270000px;}
.ws20_c00406{word-spacing:0.360000px;}
.ws22_c00406{word-spacing:1.080000px;}
.ws21_c00406{word-spacing:1.440000px;}
.ws13_c00406{word-spacing:2.520000px;}
.ws17_c00406{word-spacing:2.880000px;}
.ws15_c00406{word-spacing:5.328000px;}
.wsb_c00406{word-spacing:5.400000px;}
.wsa_c00406{word-spacing:7.488000px;}
.ws9_c00406{word-spacing:7.920000px;}
.ws24_c00406{word-spacing:10.368000px;}
.ws25_c00406{word-spacing:14.040000px;}
.wsf_c00406{word-spacing:14.328000px;}
.ws11_c00406{word-spacing:14.400000px;}
.ws18_c00406{word-spacing:15.840000px;}
.ws1e_c00406{word-spacing:18.000000px;}
.ws1f_c00406{word-spacing:18.288000px;}
.ws1d_c00406{word-spacing:18.360000px;}
.ws1a_c00406{word-spacing:19.080000px;}
.ws1c_c00406{word-spacing:22.680000px;}
.ws1b_c00406{word-spacing:23.040000px;}
.wse_c00406{word-spacing:23.688000px;}
.wsd_c00406{word-spacing:23.760000px;}
.ws8_c00406{word-spacing:24.840000px;}
.ws14_c00406{word-spacing:25.560000px;}
.ws16_c00406{word-spacing:28.800000px;}
.ws12_c00406{word-spacing:45.288000px;}
.ws23_c00406{word-spacing:46.800000px;}
._1_c00406{margin-left:-1.058400px;}
._0_c00406{width:1.220400px;}
._4_c00406{width:5.162400px;}
._2_c00406{width:14.378400px;}
._5_c00406{width:16.056000px;}
._3_c00406{width:44.618400px;}
.fc0_c00406{color:rgb(0,0,0);}
.fs0_c00406{font-size:54.000000px;}
.fs1_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y25_c00406{bottom:57.240000px;}
.y24_c00406{bottom:147.870000px;}
.y23_c00406{bottom:178.920000px;}
.y22_c00406{bottom:209.970000px;}
.y21_c00406{bottom:241.020000px;}
.y20_c00406{bottom:272.070000px;}
.y1f_c00406{bottom:303.120000px;}
.y1e_c00406{bottom:334.170000px;}
.y1d_c00406{bottom:365.220000px;}
.y1c_c00406{bottom:396.270000px;}
.y1b_c00406{bottom:427.320000px;}
.y1a_c00406{bottom:458.370000px;}
.y19_c00406{bottom:489.420000px;}
.y18_c00406{bottom:520.470000px;}
.y17_c00406{bottom:551.520000px;}
.y16_c00406{bottom:582.570000px;}
.y15_c00406{bottom:613.620000px;}
.y14_c00406{bottom:644.670000px;}
.y13_c00406{bottom:675.720000px;}
.y12_c00406{bottom:706.770000px;}
.y11_c00406{bottom:737.820000px;}
.y10_c00406{bottom:768.870000px;}
.yf_c00406{bottom:799.920000px;}
.ye_c00406{bottom:830.970000px;}
.yd_c00406{bottom:861.930000px;}
.yc_c00406{bottom:892.980000px;}
.yb_c00406{bottom:924.030000px;}
.ya_c00406{bottom:955.080000px;}
.y9_c00406{bottom:986.130000px;}
.y8_c00406{bottom:1017.180000px;}
.y7_c00406{bottom:1048.230000px;}
.y6_c00406{bottom:1079.280000px;}
.y5_c00406{bottom:1131.030000px;}
.y4_c00406{bottom:1150.920000px;}
.y3_c00406{bottom:1166.404500px;}
.y2_c00406{bottom:1181.970000px;}
.y1_c00406{bottom:1197.450000px;}
.h3_c00406{height:52.971680px;}
.h2_c00406{height:52.998047px;}
.h4_c00406{height:70.664062px;}
.h5_c00406{height:75.093750px;}
.h0_c00406{height:1262.880000px;}
.h1_c00406{height:1263.000000px;}
.w0_c00406{width:893.070000px;}
.w1_c00406{width:893.250000px;}
.x0_c00406{left:0.000000px;}
.x3_c00406{left:127.620000px;}
.x5_c00406{left:154.620000px;}
.x4_c00406{left:181.620000px;}
.x2_c00406{left:425.160000px;}
.x1_c00406{left:446.580000px;}
.x6_c00406{left:738.540000px;}
@media print{
.v1_c00406{vertical-align:-73.600000pt;}
.v0_c00406{vertical-align:0.000000pt;}
.lsf_c00406{letter-spacing:-0.448000pt;}
.ls10_c00406{letter-spacing:-0.320000pt;}
.lsd_c00406{letter-spacing:-0.192000pt;}
.lsc_c00406{letter-spacing:-0.096000pt;}
.lsb_c00406{letter-spacing:0.000000pt;}
.ls7_c00406{letter-spacing:0.064000pt;}
.ls1_c00406{letter-spacing:0.128000pt;}
.lse_c00406{letter-spacing:0.320000pt;}
.ls8_c00406{letter-spacing:1.280000pt;}
.ls3_c00406{letter-spacing:7.040000pt;}
.lsa_c00406{letter-spacing:12.480000pt;}
.ls4_c00406{letter-spacing:12.800000pt;}
.ls6_c00406{letter-spacing:22.720000pt;}
.ls5_c00406{letter-spacing:40.320000pt;}
.ls9_c00406{letter-spacing:41.600000pt;}
.ls2_c00406{letter-spacing:56.768000pt;}
.ls0_c00406{letter-spacing:80.000000pt;}
.ws4_c00406{word-spacing:-16.128000pt;}
.ws0_c00406{word-spacing:-16.064000pt;}
.ws2_c00406{word-spacing:-16.000000pt;}
.ws1_c00406{word-spacing:-15.808000pt;}
.ws3_c00406{word-spacing:-15.552000pt;}
.ws19_c00406{word-spacing:-0.320000pt;}
.wsc_c00406{word-spacing:-0.128000pt;}
.ws10_c00406{word-spacing:-0.064000pt;}
.ws5_c00406{word-spacing:0.000000pt;}
.ws7_c00406{word-spacing:0.144000pt;}
.ws6_c00406{word-spacing:0.240000pt;}
.ws20_c00406{word-spacing:0.320000pt;}
.ws22_c00406{word-spacing:0.960000pt;}
.ws21_c00406{word-spacing:1.280000pt;}
.ws13_c00406{word-spacing:2.240000pt;}
.ws17_c00406{word-spacing:2.560000pt;}
.ws15_c00406{word-spacing:4.736000pt;}
.wsb_c00406{word-spacing:4.800000pt;}
.wsa_c00406{word-spacing:6.656000pt;}
.ws9_c00406{word-spacing:7.040000pt;}
.ws24_c00406{word-spacing:9.216000pt;}
.ws25_c00406{word-spacing:12.480000pt;}
.wsf_c00406{word-spacing:12.736000pt;}
.ws11_c00406{word-spacing:12.800000pt;}
.ws18_c00406{word-spacing:14.080000pt;}
.ws1e_c00406{word-spacing:16.000000pt;}
.ws1f_c00406{word-spacing:16.256000pt;}
.ws1d_c00406{word-spacing:16.320000pt;}
.ws1a_c00406{word-spacing:16.960000pt;}
.ws1c_c00406{word-spacing:20.160000pt;}
.ws1b_c00406{word-spacing:20.480000pt;}
.wse_c00406{word-spacing:21.056000pt;}
.wsd_c00406{word-spacing:21.120000pt;}
.ws8_c00406{word-spacing:22.080000pt;}
.ws14_c00406{word-spacing:22.720000pt;}
.ws16_c00406{word-spacing:25.600000pt;}
.ws12_c00406{word-spacing:40.256000pt;}
.ws23_c00406{word-spacing:41.600000pt;}
._1_c00406{margin-left:-0.940800pt;}
._0_c00406{width:1.084800pt;}
._4_c00406{width:4.588800pt;}
._2_c00406{width:12.780800pt;}
._5_c00406{width:14.272000pt;}
._3_c00406{width:39.660800pt;}
.fs0_c00406{font-size:48.000000pt;}
.fs1_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y25_c00406{bottom:50.880000pt;}
.y24_c00406{bottom:131.440000pt;}
.y23_c00406{bottom:159.040000pt;}
.y22_c00406{bottom:186.640000pt;}
.y21_c00406{bottom:214.240000pt;}
.y20_c00406{bottom:241.840000pt;}
.y1f_c00406{bottom:269.440000pt;}
.y1e_c00406{bottom:297.040000pt;}
.y1d_c00406{bottom:324.640000pt;}
.y1c_c00406{bottom:352.240000pt;}
.y1b_c00406{bottom:379.840000pt;}
.y1a_c00406{bottom:407.440000pt;}
.y19_c00406{bottom:435.040000pt;}
.y18_c00406{bottom:462.640000pt;}
.y17_c00406{bottom:490.240000pt;}
.y16_c00406{bottom:517.840000pt;}
.y15_c00406{bottom:545.440000pt;}
.y14_c00406{bottom:573.040000pt;}
.y13_c00406{bottom:600.640000pt;}
.y12_c00406{bottom:628.240000pt;}
.y11_c00406{bottom:655.840000pt;}
.y10_c00406{bottom:683.440000pt;}
.yf_c00406{bottom:711.040000pt;}
.ye_c00406{bottom:738.640000pt;}
.yd_c00406{bottom:766.160000pt;}
.yc_c00406{bottom:793.760000pt;}
.yb_c00406{bottom:821.360000pt;}
.ya_c00406{bottom:848.960000pt;}
.y9_c00406{bottom:876.560000pt;}
.y8_c00406{bottom:904.160000pt;}
.y7_c00406{bottom:931.760000pt;}
.y6_c00406{bottom:959.360000pt;}
.y5_c00406{bottom:1005.360000pt;}
.y4_c00406{bottom:1023.040000pt;}
.y3_c00406{bottom:1036.804000pt;}
.y2_c00406{bottom:1050.640000pt;}
.y1_c00406{bottom:1064.400000pt;}
.h3_c00406{height:47.085938pt;}
.h2_c00406{height:47.109375pt;}
.h4_c00406{height:62.812500pt;}
.h5_c00406{height:66.750000pt;}
.h0_c00406{height:1122.560000pt;}
.h1_c00406{height:1122.666667pt;}
.w0_c00406{width:793.840000pt;}
.w1_c00406{width:794.000000pt;}
.x0_c00406{left:0.000000pt;}
.x3_c00406{left:113.440000pt;}
.x5_c00406{left:137.440000pt;}
.x4_c00406{left:161.440000pt;}
.x2_c00406{left:377.920000pt;}
.x1_c00406{left:396.960000pt;}
.x6_c00406{left:656.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_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_431a18a56d7a36db5a4c5e94.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_db7d848fc914addd931b8fd8.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2_c00407{vertical-align:-82.800000px;}
.v1_c00407{vertical-align:-61.938000px;}
.v0_c00407{vertical-align:0.000000px;}
.ls9_c00407{letter-spacing:-0.504000px;}
.ls8_c00407{letter-spacing:-0.360000px;}
.lsb_c00407{letter-spacing:-0.216000px;}
.lsc_c00407{letter-spacing:-0.144000px;}
.lsa_c00407{letter-spacing:-0.072000px;}
.ls7_c00407{letter-spacing:0.000000px;}
.ls5_c00407{letter-spacing:0.072000px;}
.ls2_c00407{letter-spacing:0.144000px;}
.ls4_c00407{letter-spacing:3.960000px;}
.ls6_c00407{letter-spacing:7.200000px;}
.ls3_c00407{letter-spacing:63.864000px;}
.ls1_c00407{letter-spacing:90.000000px;}
.ls0_c00407{letter-spacing:319.518000px;}
.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;}
}
.ws3_c00407{word-spacing:-18.144000px;}
.ws2_c00407{word-spacing:-18.072000px;}
.ws0_c00407{word-spacing:-18.000000px;}
.ws5_c00407{word-spacing:-17.856000px;}
.ws4_c00407{word-spacing:-17.784000px;}
.ws1_c00407{word-spacing:-17.496000px;}
.ws10_c00407{word-spacing:-0.432000px;}
.ws7_c00407{word-spacing:-0.162000px;}
.ws18_c00407{word-spacing:-0.144000px;}
.ws1c_c00407{word-spacing:-0.072000px;}
.ws6_c00407{word-spacing:0.000000px;}
.ws12_c00407{word-spacing:0.072000px;}
.wsc_c00407{word-spacing:0.360000px;}
.ws1a_c00407{word-spacing:1.368000px;}
.ws19_c00407{word-spacing:1.440000px;}
.wse_c00407{word-spacing:3.888000px;}
.wsd_c00407{word-spacing:3.960000px;}
.ws27_c00407{word-spacing:5.328000px;}
.ws28_c00407{word-spacing:5.400000px;}
.ws17_c00407{word-spacing:6.048000px;}
.wsf_c00407{word-spacing:6.120000px;}
.ws1e_c00407{word-spacing:7.056000px;}
.ws11_c00407{word-spacing:7.200000px;}
.ws26_c00407{word-spacing:8.568000px;}
.ws25_c00407{word-spacing:8.640000px;}
.ws9_c00407{word-spacing:9.648000px;}
.wsa_c00407{word-spacing:9.720000px;}
.ws15_c00407{word-spacing:12.528000px;}
.ws16_c00407{word-spacing:12.600000px;}
.ws20_c00407{word-spacing:13.248000px;}
.ws21_c00407{word-spacing:13.680000px;}
.ws14_c00407{word-spacing:13.968000px;}
.ws13_c00407{word-spacing:14.040000px;}
.ws23_c00407{word-spacing:16.200000px;}
.ws24_c00407{word-spacing:16.560000px;}
.ws1f_c00407{word-spacing:17.280000px;}
.wsb_c00407{word-spacing:18.288000px;}
.ws1d_c00407{word-spacing:21.600000px;}
.ws22_c00407{word-spacing:22.320000px;}
.ws1b_c00407{word-spacing:28.008000px;}
.ws8_c00407{word-spacing:29.880000px;}
._1_c00407{margin-left:-1.015200px;}
._0_c00407{width:1.000800px;}
._2_c00407{width:5.184000px;}
._3_c00407{width:7.077600px;}
._4_c00407{width:846.000000px;}
.fc1_c00407{color:rgb(0,0,255);}
.fc0_c00407{color:rgb(0,0,0);}
.fs0_c00407{font-size:54.000000px;}
.fs1_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y24_c00407{bottom:57.240000px;}
.y23_c00407{bottom:147.870000px;}
.y22_c00407{bottom:178.920000px;}
.y21_c00407{bottom:209.970000px;}
.y20_c00407{bottom:241.020000px;}
.y1f_c00407{bottom:272.070000px;}
.y1e_c00407{bottom:303.120000px;}
.y1d_c00407{bottom:334.170000px;}
.y1c_c00407{bottom:365.220000px;}
.y1b_c00407{bottom:396.270000px;}
.y1a_c00407{bottom:427.320000px;}
.y19_c00407{bottom:458.370000px;}
.y18_c00407{bottom:489.420000px;}
.y17_c00407{bottom:520.470000px;}
.y16_c00407{bottom:551.520000px;}
.y15_c00407{bottom:582.570000px;}
.y14_c00407{bottom:613.620000px;}
.y13_c00407{bottom:644.670000px;}
.y12_c00407{bottom:675.720000px;}
.y11_c00407{bottom:706.770000px;}
.y10_c00407{bottom:737.820000px;}
.yf_c00407{bottom:768.870000px;}
.ye_c00407{bottom:799.920000px;}
.yd_c00407{bottom:830.970000px;}
.yc_c00407{bottom:861.930000px;}
.yb_c00407{bottom:892.980000px;}
.ya_c00407{bottom:924.030000px;}
.y9_c00407{bottom:955.080000px;}
.y8_c00407{bottom:986.130000px;}
.y7_c00407{bottom:1017.180000px;}
.y6_c00407{bottom:1048.230000px;}
.y5_c00407{bottom:1079.280000px;}
.y4_c00407{bottom:1131.030000px;}
.y3_c00407{bottom:1150.915500px;}
.y2_c00407{bottom:1166.400000px;}
.y1_c00407{bottom:1197.450000px;}
.h2_c00407{height:52.998047px;}
.h3_c00407{height:70.664062px;}
.h4_c00407{height:75.093750px;}
.h0_c00407{height:1262.880000px;}
.h1_c00407{height:1263.000000px;}
.w0_c00407{width:893.070000px;}
.w1_c00407{width:893.250000px;}
.x0_c00407{left:0.000000px;}
.x2_c00407{left:127.620000px;}
.x4_c00407{left:154.620000px;}
.x3_c00407{left:181.620000px;}
.x1_c00407{left:446.580000px;}
@media print{
.v2_c00407{vertical-align:-73.600000pt;}
.v1_c00407{vertical-align:-55.056000pt;}
.v0_c00407{vertical-align:0.000000pt;}
.ls9_c00407{letter-spacing:-0.448000pt;}
.ls8_c00407{letter-spacing:-0.320000pt;}
.lsb_c00407{letter-spacing:-0.192000pt;}
.lsc_c00407{letter-spacing:-0.128000pt;}
.lsa_c00407{letter-spacing:-0.064000pt;}
.ls7_c00407{letter-spacing:0.000000pt;}
.ls5_c00407{letter-spacing:0.064000pt;}
.ls2_c00407{letter-spacing:0.128000pt;}
.ls4_c00407{letter-spacing:3.520000pt;}
.ls6_c00407{letter-spacing:6.400000pt;}
.ls3_c00407{letter-spacing:56.768000pt;}
.ls1_c00407{letter-spacing:80.000000pt;}
.ls0_c00407{letter-spacing:284.016000pt;}
.ws3_c00407{word-spacing:-16.128000pt;}
.ws2_c00407{word-spacing:-16.064000pt;}
.ws0_c00407{word-spacing:-16.000000pt;}
.ws5_c00407{word-spacing:-15.872000pt;}
.ws4_c00407{word-spacing:-15.808000pt;}
.ws1_c00407{word-spacing:-15.552000pt;}
.ws10_c00407{word-spacing:-0.384000pt;}
.ws7_c00407{word-spacing:-0.144000pt;}
.ws18_c00407{word-spacing:-0.128000pt;}
.ws1c_c00407{word-spacing:-0.064000pt;}
.ws6_c00407{word-spacing:0.000000pt;}
.ws12_c00407{word-spacing:0.064000pt;}
.wsc_c00407{word-spacing:0.320000pt;}
.ws1a_c00407{word-spacing:1.216000pt;}
.ws19_c00407{word-spacing:1.280000pt;}
.wse_c00407{word-spacing:3.456000pt;}
.wsd_c00407{word-spacing:3.520000pt;}
.ws27_c00407{word-spacing:4.736000pt;}
.ws28_c00407{word-spacing:4.800000pt;}
.ws17_c00407{word-spacing:5.376000pt;}
.wsf_c00407{word-spacing:5.440000pt;}
.ws1e_c00407{word-spacing:6.272000pt;}
.ws11_c00407{word-spacing:6.400000pt;}
.ws26_c00407{word-spacing:7.616000pt;}
.ws25_c00407{word-spacing:7.680000pt;}
.ws9_c00407{word-spacing:8.576000pt;}
.wsa_c00407{word-spacing:8.640000pt;}
.ws15_c00407{word-spacing:11.136000pt;}
.ws16_c00407{word-spacing:11.200000pt;}
.ws20_c00407{word-spacing:11.776000pt;}
.ws21_c00407{word-spacing:12.160000pt;}
.ws14_c00407{word-spacing:12.416000pt;}
.ws13_c00407{word-spacing:12.480000pt;}
.ws23_c00407{word-spacing:14.400000pt;}
.ws24_c00407{word-spacing:14.720000pt;}
.ws1f_c00407{word-spacing:15.360000pt;}
.wsb_c00407{word-spacing:16.256000pt;}
.ws1d_c00407{word-spacing:19.200000pt;}
.ws22_c00407{word-spacing:19.840000pt;}
.ws1b_c00407{word-spacing:24.896000pt;}
.ws8_c00407{word-spacing:26.560000pt;}
._1_c00407{margin-left:-0.902400pt;}
._0_c00407{width:0.889600pt;}
._2_c00407{width:4.608000pt;}
._3_c00407{width:6.291200pt;}
._4_c00407{width:752.000000pt;}
.fs0_c00407{font-size:48.000000pt;}
.fs1_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y24_c00407{bottom:50.880000pt;}
.y23_c00407{bottom:131.440000pt;}
.y22_c00407{bottom:159.040000pt;}
.y21_c00407{bottom:186.640000pt;}
.y20_c00407{bottom:214.240000pt;}
.y1f_c00407{bottom:241.840000pt;}
.y1e_c00407{bottom:269.440000pt;}
.y1d_c00407{bottom:297.040000pt;}
.y1c_c00407{bottom:324.640000pt;}
.y1b_c00407{bottom:352.240000pt;}
.y1a_c00407{bottom:379.840000pt;}
.y19_c00407{bottom:407.440000pt;}
.y18_c00407{bottom:435.040000pt;}
.y17_c00407{bottom:462.640000pt;}
.y16_c00407{bottom:490.240000pt;}
.y15_c00407{bottom:517.840000pt;}
.y14_c00407{bottom:545.440000pt;}
.y13_c00407{bottom:573.040000pt;}
.y12_c00407{bottom:600.640000pt;}
.y11_c00407{bottom:628.240000pt;}
.y10_c00407{bottom:655.840000pt;}
.yf_c00407{bottom:683.440000pt;}
.ye_c00407{bottom:711.040000pt;}
.yd_c00407{bottom:738.640000pt;}
.yc_c00407{bottom:766.160000pt;}
.yb_c00407{bottom:793.760000pt;}
.ya_c00407{bottom:821.360000pt;}
.y9_c00407{bottom:848.960000pt;}
.y8_c00407{bottom:876.560000pt;}
.y7_c00407{bottom:904.160000pt;}
.y6_c00407{bottom:931.760000pt;}
.y5_c00407{bottom:959.360000pt;}
.y4_c00407{bottom:1005.360000pt;}
.y3_c00407{bottom:1023.036000pt;}
.y2_c00407{bottom:1036.800000pt;}
.y1_c00407{bottom:1064.400000pt;}
.h2_c00407{height:47.109375pt;}
.h3_c00407{height:62.812500pt;}
.h4_c00407{height:66.750000pt;}
.h0_c00407{height:1122.560000pt;}
.h1_c00407{height:1122.666667pt;}
.w0_c00407{width:793.840000pt;}
.w1_c00407{width:794.000000pt;}
.x0_c00407{left:0.000000pt;}
.x2_c00407{left:113.440000pt;}
.x4_c00407{left:137.440000pt;}
.x3_c00407{left:161.440000pt;}
.x1_c00407{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73248435db891569dfc5cdee.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_9cc2b1e39140c2215fb7845f.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.432129;font-style: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);}
.v1_c00408{vertical-align:-82.800000px;}
.v0_c00408{vertical-align:0.000000px;}
.lsd_c00408{letter-spacing:-0.504000px;}
.lsb_c00408{letter-spacing:-0.360000px;}
.lsc_c00408{letter-spacing:-0.288000px;}
.lsa_c00408{letter-spacing:-0.144000px;}
.ls8_c00408{letter-spacing:-0.108000px;}
.ls7_c00408{letter-spacing:0.000000px;}
.ls9_c00408{letter-spacing:0.072000px;}
.ls1_c00408{letter-spacing:0.144000px;}
.ls4_c00408{letter-spacing:1.440000px;}
.ls5_c00408{letter-spacing:3.240000px;}
.ls6_c00408{letter-spacing:6.480000px;}
.ls3_c00408{letter-spacing:23.760000px;}
.ls2_c00408{letter-spacing:63.864000px;}
.ls0_c00408{letter-spacing:90.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00408{word-spacing:-18.144000px;}
.ws1_c00408{word-spacing:-18.072000px;}
.ws0_c00408{word-spacing:-18.000000px;}
.ws2_c00408{word-spacing:-17.856000px;}
.ws4_c00408{word-spacing:-17.712000px;}
.ws3_c00408{word-spacing:-17.640000px;}
.ws6_c00408{word-spacing:-17.496000px;}
.ws1f_c00408{word-spacing:-0.072000px;}
.ws7_c00408{word-spacing:0.000000px;}
.wsd_c00408{word-spacing:0.144000px;}
.ws9_c00408{word-spacing:0.162000px;}
.ws8_c00408{word-spacing:0.270000px;}
.ws20_c00408{word-spacing:0.360000px;}
.ws17_c00408{word-spacing:1.008000px;}
.ws16_c00408{word-spacing:1.368000px;}
.ws18_c00408{word-spacing:1.440000px;}
.ws2a_c00408{word-spacing:1.728000px;}
.ws2b_c00408{word-spacing:2.160000px;}
.ws1e_c00408{word-spacing:3.240000px;}
.ws26_c00408{word-spacing:3.528000px;}
.ws11_c00408{word-spacing:3.600000px;}
.ws12_c00408{word-spacing:3.888000px;}
.ws13_c00408{word-spacing:3.960000px;}
.wsa_c00408{word-spacing:4.320000px;}
.ws15_c00408{word-spacing:4.968000px;}
.ws14_c00408{word-spacing:5.040000px;}
.ws1b_c00408{word-spacing:5.256000px;}
.ws1a_c00408{word-spacing:5.328000px;}
.ws19_c00408{word-spacing:5.400000px;}
.ws28_c00408{word-spacing:6.408000px;}
.ws27_c00408{word-spacing:6.480000px;}
.ws10_c00408{word-spacing:7.128000px;}
.wsf_c00408{word-spacing:7.200000px;}
.ws1c_c00408{word-spacing:11.088000px;}
.ws1d_c00408{word-spacing:11.160000px;}
.ws2c_c00408{word-spacing:11.520000px;}
.ws25_c00408{word-spacing:12.960000px;}
.ws23_c00408{word-spacing:15.480000px;}
.ws24_c00408{word-spacing:17.280000px;}
.ws2d_c00408{word-spacing:17.424000px;}
.ws22_c00408{word-spacing:18.000000px;}
.ws21_c00408{word-spacing:18.360000px;}
.wsc_c00408{word-spacing:23.328000px;}
.wsb_c00408{word-spacing:23.760000px;}
.wse_c00408{word-spacing:27.360000px;}
.ws29_c00408{word-spacing:52.200000px;}
._1_c00408{margin-left:-1.058400px;}
._0_c00408{width:1.220400px;}
._3_c00408{width:3.531600px;}
._4_c00408{width:11.217600px;}
._2_c00408{width:23.832000px;}
.fc0_c00408{color:rgb(0,0,0);}
.fs0_c00408{font-size:54.000000px;}
.fs1_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y25_c00408{bottom:57.240000px;}
.y24_c00408{bottom:147.870000px;}
.y23_c00408{bottom:178.920000px;}
.y22_c00408{bottom:209.970000px;}
.y21_c00408{bottom:241.020000px;}
.y20_c00408{bottom:272.070000px;}
.y1f_c00408{bottom:303.120000px;}
.y1e_c00408{bottom:334.170000px;}
.y1d_c00408{bottom:365.220000px;}
.y1c_c00408{bottom:396.270000px;}
.y1b_c00408{bottom:427.320000px;}
.y1a_c00408{bottom:458.370000px;}
.y19_c00408{bottom:489.420000px;}
.y18_c00408{bottom:520.470000px;}
.y17_c00408{bottom:551.520000px;}
.y16_c00408{bottom:582.570000px;}
.y15_c00408{bottom:613.620000px;}
.y14_c00408{bottom:644.670000px;}
.y13_c00408{bottom:675.720000px;}
.y12_c00408{bottom:706.770000px;}
.y11_c00408{bottom:737.820000px;}
.y10_c00408{bottom:768.870000px;}
.yf_c00408{bottom:799.920000px;}
.ye_c00408{bottom:830.970000px;}
.yd_c00408{bottom:861.930000px;}
.yc_c00408{bottom:892.980000px;}
.yb_c00408{bottom:924.030000px;}
.ya_c00408{bottom:955.080000px;}
.y9_c00408{bottom:986.130000px;}
.y8_c00408{bottom:1017.180000px;}
.y7_c00408{bottom:1048.140000px;}
.y6_c00408{bottom:1079.280000px;}
.y5_c00408{bottom:1131.030000px;}
.y4_c00408{bottom:1150.920000px;}
.y3_c00408{bottom:1166.404500px;}
.y2_c00408{bottom:1181.970000px;}
.y1_c00408{bottom:1197.450000px;}
.h3_c00408{height:52.971680px;}
.h2_c00408{height:52.998047px;}
.h5_c00408{height:70.628906px;}
.h4_c00408{height:70.664062px;}
.h6_c00408{height:75.093750px;}
.h0_c00408{height:1262.880000px;}
.h1_c00408{height:1263.000000px;}
.w0_c00408{width:893.070000px;}
.w1_c00408{width:893.250000px;}
.x0_c00408{left:0.000000px;}
.x3_c00408{left:127.620000px;}
.x5_c00408{left:154.620000px;}
.x4_c00408{left:181.620000px;}
.x2_c00408{left:425.160000px;}
.x1_c00408{left:446.580000px;}
.x6_c00408{left:738.540000px;}
@media print{
.v1_c00408{vertical-align:-73.600000pt;}
.v0_c00408{vertical-align:0.000000pt;}
.lsd_c00408{letter-spacing:-0.448000pt;}
.lsb_c00408{letter-spacing:-0.320000pt;}
.lsc_c00408{letter-spacing:-0.256000pt;}
.lsa_c00408{letter-spacing:-0.128000pt;}
.ls8_c00408{letter-spacing:-0.096000pt;}
.ls7_c00408{letter-spacing:0.000000pt;}
.ls9_c00408{letter-spacing:0.064000pt;}
.ls1_c00408{letter-spacing:0.128000pt;}
.ls4_c00408{letter-spacing:1.280000pt;}
.ls5_c00408{letter-spacing:2.880000pt;}
.ls6_c00408{letter-spacing:5.760000pt;}
.ls3_c00408{letter-spacing:21.120000pt;}
.ls2_c00408{letter-spacing:56.768000pt;}
.ls0_c00408{letter-spacing:80.000000pt;}
.ws5_c00408{word-spacing:-16.128000pt;}
.ws1_c00408{word-spacing:-16.064000pt;}
.ws0_c00408{word-spacing:-16.000000pt;}
.ws2_c00408{word-spacing:-15.872000pt;}
.ws4_c00408{word-spacing:-15.744000pt;}
.ws3_c00408{word-spacing:-15.680000pt;}
.ws6_c00408{word-spacing:-15.552000pt;}
.ws1f_c00408{word-spacing:-0.064000pt;}
.ws7_c00408{word-spacing:0.000000pt;}
.wsd_c00408{word-spacing:0.128000pt;}
.ws9_c00408{word-spacing:0.144000pt;}
.ws8_c00408{word-spacing:0.240000pt;}
.ws20_c00408{word-spacing:0.320000pt;}
.ws17_c00408{word-spacing:0.896000pt;}
.ws16_c00408{word-spacing:1.216000pt;}
.ws18_c00408{word-spacing:1.280000pt;}
.ws2a_c00408{word-spacing:1.536000pt;}
.ws2b_c00408{word-spacing:1.920000pt;}
.ws1e_c00408{word-spacing:2.880000pt;}
.ws26_c00408{word-spacing:3.136000pt;}
.ws11_c00408{word-spacing:3.200000pt;}
.ws12_c00408{word-spacing:3.456000pt;}
.ws13_c00408{word-spacing:3.520000pt;}
.wsa_c00408{word-spacing:3.840000pt;}
.ws15_c00408{word-spacing:4.416000pt;}
.ws14_c00408{word-spacing:4.480000pt;}
.ws1b_c00408{word-spacing:4.672000pt;}
.ws1a_c00408{word-spacing:4.736000pt;}
.ws19_c00408{word-spacing:4.800000pt;}
.ws28_c00408{word-spacing:5.696000pt;}
.ws27_c00408{word-spacing:5.760000pt;}
.ws10_c00408{word-spacing:6.336000pt;}
.wsf_c00408{word-spacing:6.400000pt;}
.ws1c_c00408{word-spacing:9.856000pt;}
.ws1d_c00408{word-spacing:9.920000pt;}
.ws2c_c00408{word-spacing:10.240000pt;}
.ws25_c00408{word-spacing:11.520000pt;}
.ws23_c00408{word-spacing:13.760000pt;}
.ws24_c00408{word-spacing:15.360000pt;}
.ws2d_c00408{word-spacing:15.488000pt;}
.ws22_c00408{word-spacing:16.000000pt;}
.ws21_c00408{word-spacing:16.320000pt;}
.wsc_c00408{word-spacing:20.736000pt;}
.wsb_c00408{word-spacing:21.120000pt;}
.wse_c00408{word-spacing:24.320000pt;}
.ws29_c00408{word-spacing:46.400000pt;}
._1_c00408{margin-left:-0.940800pt;}
._0_c00408{width:1.084800pt;}
._3_c00408{width:3.139200pt;}
._4_c00408{width:9.971200pt;}
._2_c00408{width:21.184000pt;}
.fs0_c00408{font-size:48.000000pt;}
.fs1_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y25_c00408{bottom:50.880000pt;}
.y24_c00408{bottom:131.440000pt;}
.y23_c00408{bottom:159.040000pt;}
.y22_c00408{bottom:186.640000pt;}
.y21_c00408{bottom:214.240000pt;}
.y20_c00408{bottom:241.840000pt;}
.y1f_c00408{bottom:269.440000pt;}
.y1e_c00408{bottom:297.040000pt;}
.y1d_c00408{bottom:324.640000pt;}
.y1c_c00408{bottom:352.240000pt;}
.y1b_c00408{bottom:379.840000pt;}
.y1a_c00408{bottom:407.440000pt;}
.y19_c00408{bottom:435.040000pt;}
.y18_c00408{bottom:462.640000pt;}
.y17_c00408{bottom:490.240000pt;}
.y16_c00408{bottom:517.840000pt;}
.y15_c00408{bottom:545.440000pt;}
.y14_c00408{bottom:573.040000pt;}
.y13_c00408{bottom:600.640000pt;}
.y12_c00408{bottom:628.240000pt;}
.y11_c00408{bottom:655.840000pt;}
.y10_c00408{bottom:683.440000pt;}
.yf_c00408{bottom:711.040000pt;}
.ye_c00408{bottom:738.640000pt;}
.yd_c00408{bottom:766.160000pt;}
.yc_c00408{bottom:793.760000pt;}
.yb_c00408{bottom:821.360000pt;}
.ya_c00408{bottom:848.960000pt;}
.y9_c00408{bottom:876.560000pt;}
.y8_c00408{bottom:904.160000pt;}
.y7_c00408{bottom:931.680000pt;}
.y6_c00408{bottom:959.360000pt;}
.y5_c00408{bottom:1005.360000pt;}
.y4_c00408{bottom:1023.040000pt;}
.y3_c00408{bottom:1036.804000pt;}
.y2_c00408{bottom:1050.640000pt;}
.y1_c00408{bottom:1064.400000pt;}
.h3_c00408{height:47.085938pt;}
.h2_c00408{height:47.109375pt;}
.h5_c00408{height:62.781250pt;}
.h4_c00408{height:62.812500pt;}
.h6_c00408{height:66.750000pt;}
.h0_c00408{height:1122.560000pt;}
.h1_c00408{height:1122.666667pt;}
.w0_c00408{width:793.840000pt;}
.w1_c00408{width:794.000000pt;}
.x0_c00408{left:0.000000pt;}
.x3_c00408{left:113.440000pt;}
.x5_c00408{left:137.440000pt;}
.x4_c00408{left:161.440000pt;}
.x2_c00408{left:377.920000pt;}
.x1_c00408{left:396.960000pt;}
.x6_c00408{left:656.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_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_1ff1bf767c2dc667f7f96a51.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_4192bcf67b6ab40150bcfd15.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00409{vertical-align:-82.800000px;}
.v1_c00409{vertical-align:-61.938000px;}
.v0_c00409{vertical-align:0.000000px;}
.ls9_c00409{letter-spacing:-0.360000px;}
.ls8_c00409{letter-spacing:-0.144000px;}
.lsa_c00409{letter-spacing:-0.072000px;}
.ls7_c00409{letter-spacing:0.000000px;}
.ls5_c00409{letter-spacing:0.072000px;}
.ls2_c00409{letter-spacing:0.144000px;}
.ls4_c00409{letter-spacing:1.080000px;}
.ls3_c00409{letter-spacing:63.864000px;}
.ls1_c00409{letter-spacing:90.000000px;}
.ls0_c00409{letter-spacing:319.518000px;}
.ls6_c00409{letter-spacing:846.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;}
}
.ws3_c00409{word-spacing:-18.144000px;}
.ws4_c00409{word-spacing:-18.072000px;}
.ws1_c00409{word-spacing:-18.000000px;}
.ws2_c00409{word-spacing:-17.928000px;}
.ws0_c00409{word-spacing:-17.856000px;}
.ws6_c00409{word-spacing:-0.162000px;}
.wse_c00409{word-spacing:-0.072000px;}
.ws5_c00409{word-spacing:0.000000px;}
.wsd_c00409{word-spacing:0.360000px;}
.ws8_c00409{word-spacing:0.720000px;}
.ws7_c00409{word-spacing:1.080000px;}
.ws13_c00409{word-spacing:6.048000px;}
.ws12_c00409{word-spacing:6.120000px;}
.ws15_c00409{word-spacing:8.928000px;}
.ws16_c00409{word-spacing:9.000000px;}
.ws11_c00409{word-spacing:20.448000px;}
.ws10_c00409{word-spacing:20.520000px;}
.ws14_c00409{word-spacing:22.320000px;}
.wsc_c00409{word-spacing:23.976000px;}
.wsb_c00409{word-spacing:24.048000px;}
.ws9_c00409{word-spacing:27.000000px;}
.wsa_c00409{word-spacing:27.288000px;}
.wsf_c00409{word-spacing:34.200000px;}
._0_c00409{margin-left:-1.008000px;}
._1_c00409{width:1.008000px;}
._2_c00409{width:8.856000px;}
.fc0_c00409{color:rgb(0,0,0);}
.fs0_c00409{font-size:54.000000px;}
.fs1_c00409{font-size:72.000000px;}
.fs2_c00409{font-size:96.120000px;}
.y0_c00409{bottom:0.000000px;}
.y13_c00409{bottom:57.240000px;}
.y12_c00409{bottom:669.960000px;}
.y11_c00409{bottom:706.770000px;}
.y10_c00409{bottom:737.820000px;}
.yf_c00409{bottom:768.870000px;}
.ye_c00409{bottom:799.920000px;}
.yd_c00409{bottom:830.970000px;}
.yc_c00409{bottom:861.930000px;}
.yb_c00409{bottom:892.980000px;}
.ya_c00409{bottom:924.030000px;}
.y9_c00409{bottom:955.080000px;}
.y8_c00409{bottom:986.130000px;}
.y7_c00409{bottom:1017.180000px;}
.y6_c00409{bottom:1048.230000px;}
.y5_c00409{bottom:1079.280000px;}
.y4_c00409{bottom:1131.030000px;}
.y3_c00409{bottom:1150.915500px;}
.y2_c00409{bottom:1166.400000px;}
.y1_c00409{bottom:1197.450000px;}
.h2_c00409{height:52.998047px;}
.h3_c00409{height:70.664062px;}
.h4_c00409{height:75.093750px;}
.h5_c00409{height:96.870938px;}
.h0_c00409{height:1262.880000px;}
.h1_c00409{height:1263.000000px;}
.w0_c00409{width:893.070000px;}
.w1_c00409{width:893.250000px;}
.x0_c00409{left:0.000000px;}
.x2_c00409{left:127.620000px;}
.x4_c00409{left:154.620000px;}
.x3_c00409{left:181.620000px;}
.x1_c00409{left:446.580000px;}
@media print{
.v2_c00409{vertical-align:-73.600000pt;}
.v1_c00409{vertical-align:-55.056000pt;}
.v0_c00409{vertical-align:0.000000pt;}
.ls9_c00409{letter-spacing:-0.320000pt;}
.ls8_c00409{letter-spacing:-0.128000pt;}
.lsa_c00409{letter-spacing:-0.064000pt;}
.ls7_c00409{letter-spacing:0.000000pt;}
.ls5_c00409{letter-spacing:0.064000pt;}
.ls2_c00409{letter-spacing:0.128000pt;}
.ls4_c00409{letter-spacing:0.960000pt;}
.ls3_c00409{letter-spacing:56.768000pt;}
.ls1_c00409{letter-spacing:80.000000pt;}
.ls0_c00409{letter-spacing:284.016000pt;}
.ls6_c00409{letter-spacing:752.000000pt;}
.ws3_c00409{word-spacing:-16.128000pt;}
.ws4_c00409{word-spacing:-16.064000pt;}
.ws1_c00409{word-spacing:-16.000000pt;}
.ws2_c00409{word-spacing:-15.936000pt;}
.ws0_c00409{word-spacing:-15.872000pt;}
.ws6_c00409{word-spacing:-0.144000pt;}
.wse_c00409{word-spacing:-0.064000pt;}
.ws5_c00409{word-spacing:0.000000pt;}
.wsd_c00409{word-spacing:0.320000pt;}
.ws8_c00409{word-spacing:0.640000pt;}
.ws7_c00409{word-spacing:0.960000pt;}
.ws13_c00409{word-spacing:5.376000pt;}
.ws12_c00409{word-spacing:5.440000pt;}
.ws15_c00409{word-spacing:7.936000pt;}
.ws16_c00409{word-spacing:8.000000pt;}
.ws11_c00409{word-spacing:18.176000pt;}
.ws10_c00409{word-spacing:18.240000pt;}
.ws14_c00409{word-spacing:19.840000pt;}
.wsc_c00409{word-spacing:21.312000pt;}
.wsb_c00409{word-spacing:21.376000pt;}
.ws9_c00409{word-spacing:24.000000pt;}
.wsa_c00409{word-spacing:24.256000pt;}
.wsf_c00409{word-spacing:30.400000pt;}
._0_c00409{margin-left:-0.896000pt;}
._1_c00409{width:0.896000pt;}
._2_c00409{width:7.872000pt;}
.fs0_c00409{font-size:48.000000pt;}
.fs1_c00409{font-size:64.000000pt;}
.fs2_c00409{font-size:85.440000pt;}
.y0_c00409{bottom:0.000000pt;}
.y13_c00409{bottom:50.880000pt;}
.y12_c00409{bottom:595.520000pt;}
.y11_c00409{bottom:628.240000pt;}
.y10_c00409{bottom:655.840000pt;}
.yf_c00409{bottom:683.440000pt;}
.ye_c00409{bottom:711.040000pt;}
.yd_c00409{bottom:738.640000pt;}
.yc_c00409{bottom:766.160000pt;}
.yb_c00409{bottom:793.760000pt;}
.ya_c00409{bottom:821.360000pt;}
.y9_c00409{bottom:848.960000pt;}
.y8_c00409{bottom:876.560000pt;}
.y7_c00409{bottom:904.160000pt;}
.y6_c00409{bottom:931.760000pt;}
.y5_c00409{bottom:959.360000pt;}
.y4_c00409{bottom:1005.360000pt;}
.y3_c00409{bottom:1023.036000pt;}
.y2_c00409{bottom:1036.800000pt;}
.y1_c00409{bottom:1064.400000pt;}
.h2_c00409{height:47.109375pt;}
.h3_c00409{height:62.812500pt;}
.h4_c00409{height:66.750000pt;}
.h5_c00409{height:86.107500pt;}
.h0_c00409{height:1122.560000pt;}
.h1_c00409{height:1122.666667pt;}
.w0_c00409{width:793.840000pt;}
.w1_c00409{width:794.000000pt;}
.x0_c00409{left:0.000000pt;}
.x2_c00409{left:113.440000pt;}
.x4_c00409{left:137.440000pt;}
.x3_c00409{left:161.440000pt;}
.x1_c00409{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9846c8428a24bd7d4bed8a83.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_197a73d20e5388cbd87029f6.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00410{vertical-align:-105.840000px;}
.v0_c00410{vertical-align:0.000000px;}
.ls2_c00410{letter-spacing:-0.108000px;}
.ls1_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:1257.840000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:0.000000px;}
.ws2_c00410{word-spacing:0.162000px;}
.ws1_c00410{word-spacing:0.270000px;}
._1_c00410{margin-left:-1.058400px;}
._0_c00410{width:1.220400px;}
._2_c00410{width:839.992680px;}
.fc0_c00410{color:rgb(0,0,0);}
.fs0_c00410{font-size:54.000000px;}
.fs1_c00410{font-size:72.000000px;}
.fs2_c00410{font-size:96.120000px;}
.fs3_c00410{font-size:144.000000px;}
.y0_c00410{bottom:0.000000px;}
.y15_c00410{bottom:57.240000px;}
.y14_c00410{bottom:462.945240px;}
.y13_c00410{bottom:504.348930px;}
.y12_c00410{bottom:545.752620px;}
.y11_c00410{bottom:587.156310px;}
.y10_c00410{bottom:628.560000px;}
.yf_c00410{bottom:679.500000px;}
.ye_c00410{bottom:732.032910px;}
.yd_c00410{bottom:773.436600px;}
.yc_c00410{bottom:814.840290px;}
.yb_c00410{bottom:856.147860px;}
.ya_c00410{bottom:897.551550px;}
.y9_c00410{bottom:938.955240px;}
.y8_c00410{bottom:980.358930px;}
.y7_c00410{bottom:1021.762620px;}
.y6_c00410{bottom:1063.166310px;}
.y5_c00410{bottom:1131.030000px;}
.y4_c00410{bottom:1150.920000px;}
.y3_c00410{bottom:1166.404500px;}
.y2_c00410{bottom:1181.970000px;}
.y1_c00410{bottom:1197.450000px;}
.h3_c00410{height:52.971680px;}
.h2_c00410{height:52.998047px;}
.h4_c00410{height:70.664062px;}
.h5_c00410{height:96.870938px;}
.h6_c00410{height:145.125000px;}
.h0_c00410{height:1262.880000px;}
.h1_c00410{height:1263.000000px;}
.w0_c00410{width:893.070000px;}
.w1_c00410{width:893.250000px;}
.x0_c00410{left:0.000000px;}
.x3_c00410{left:127.620000px;}
.x4_c00410{left:386.010000px;}
.x2_c00410{left:425.160000px;}
.x1_c00410{left:446.580000px;}
.x5_c00410{left:738.540000px;}
@media print{
.v1_c00410{vertical-align:-94.080000pt;}
.v0_c00410{vertical-align:0.000000pt;}
.ls2_c00410{letter-spacing:-0.096000pt;}
.ls1_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:1118.080000pt;}
.ws0_c00410{word-spacing:0.000000pt;}
.ws2_c00410{word-spacing:0.144000pt;}
.ws1_c00410{word-spacing:0.240000pt;}
._1_c00410{margin-left:-0.940800pt;}
._0_c00410{width:1.084800pt;}
._2_c00410{width:746.660160pt;}
.fs0_c00410{font-size:48.000000pt;}
.fs1_c00410{font-size:64.000000pt;}
.fs2_c00410{font-size:85.440000pt;}
.fs3_c00410{font-size:128.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y15_c00410{bottom:50.880000pt;}
.y14_c00410{bottom:411.506880pt;}
.y13_c00410{bottom:448.310160pt;}
.y12_c00410{bottom:485.113440pt;}
.y11_c00410{bottom:521.916720pt;}
.y10_c00410{bottom:558.720000pt;}
.yf_c00410{bottom:604.000000pt;}
.ye_c00410{bottom:650.695920pt;}
.yd_c00410{bottom:687.499200pt;}
.yc_c00410{bottom:724.302480pt;}
.yb_c00410{bottom:761.020320pt;}
.ya_c00410{bottom:797.823600pt;}
.y9_c00410{bottom:834.626880pt;}
.y8_c00410{bottom:871.430160pt;}
.y7_c00410{bottom:908.233440pt;}
.y6_c00410{bottom:945.036720pt;}
.y5_c00410{bottom:1005.360000pt;}
.y4_c00410{bottom:1023.040000pt;}
.y3_c00410{bottom:1036.804000pt;}
.y2_c00410{bottom:1050.640000pt;}
.y1_c00410{bottom:1064.400000pt;}
.h3_c00410{height:47.085938pt;}
.h2_c00410{height:47.109375pt;}
.h4_c00410{height:62.812500pt;}
.h5_c00410{height:86.107500pt;}
.h6_c00410{height:129.000000pt;}
.h0_c00410{height:1122.560000pt;}
.h1_c00410{height:1122.666667pt;}
.w0_c00410{width:793.840000pt;}
.w1_c00410{width:794.000000pt;}
.x0_c00410{left:0.000000pt;}
.x3_c00410{left:113.440000pt;}
.x4_c00410{left:343.120000pt;}
.x2_c00410{left:377.920000pt;}
.x1_c00410{left:396.960000pt;}
.x5_c00410{left:656.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_c00411 {
    display:none;
  }
  .loading-indicator_c00411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00411 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00411 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00411" -> "#page-container .classname_c00411")
 */
.pf_c00411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00411 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00411 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00411 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00411 {overflow:visible;}
  }
}
.c_c00411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00411 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00411:after { /* webkit #35443 */
  content: '';
}
.t_c00411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00411 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00411 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00411 { /* info for Javascript */
  display:none;
}
.l_c00411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00411:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00411;src:url('chunks/assets/font_2c0c5edcc7360ec17a5fa799.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00411{vertical-align:-105.840000px;}
.v1_c00411{vertical-align:-61.938000px;}
.v0_c00411{vertical-align:0.000000px;}
.ls3_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:319.518000px;}
.ls2_c00411{letter-spacing:828.000000px;}
.ls1_c00411{letter-spacing:1257.840000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00411{word-spacing:-0.162000px;}
.ws0_c00411{word-spacing:0.000000px;}
.fc0_c00411{color:rgb(0,0,0);}
.fs0_c00411{font-size:54.000000px;}
.fs1_c00411{font-size:72.000000px;}
.fs2_c00411{font-size:96.120000px;}
.fs3_c00411{font-size:144.000000px;}
.y0_c00411{bottom:0.000000px;}
.y6_c00411{bottom:57.240000px;}
.y5_c00411{bottom:1063.170000px;}
.y4_c00411{bottom:1131.030000px;}
.y3_c00411{bottom:1150.915500px;}
.y2_c00411{bottom:1166.400000px;}
.y1_c00411{bottom:1197.450000px;}
.h2_c00411{height:52.998047px;}
.h3_c00411{height:70.664062px;}
.h4_c00411{height:145.125000px;}
.h0_c00411{height:1262.880000px;}
.h1_c00411{height:1263.000000px;}
.w0_c00411{width:893.070000px;}
.w1_c00411{width:893.250000px;}
.x0_c00411{left:0.000000px;}
.x2_c00411{left:127.620000px;}
.x1_c00411{left:446.580000px;}
@media print{
.v2_c00411{vertical-align:-94.080000pt;}
.v1_c00411{vertical-align:-55.056000pt;}
.v0_c00411{vertical-align:0.000000pt;}
.ls3_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:284.016000pt;}
.ls2_c00411{letter-spacing:736.000000pt;}
.ls1_c00411{letter-spacing:1118.080000pt;}
.ws1_c00411{word-spacing:-0.144000pt;}
.ws0_c00411{word-spacing:0.000000pt;}
.fs0_c00411{font-size:48.000000pt;}
.fs1_c00411{font-size:64.000000pt;}
.fs2_c00411{font-size:85.440000pt;}
.fs3_c00411{font-size:128.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y6_c00411{bottom:50.880000pt;}
.y5_c00411{bottom:945.040000pt;}
.y4_c00411{bottom:1005.360000pt;}
.y3_c00411{bottom:1023.036000pt;}
.y2_c00411{bottom:1036.800000pt;}
.y1_c00411{bottom:1064.400000pt;}
.h2_c00411{height:47.109375pt;}
.h3_c00411{height:62.812500pt;}
.h4_c00411{height:129.000000pt;}
.h0_c00411{height:1122.560000pt;}
.h1_c00411{height:1122.666667pt;}
.w0_c00411{width:793.840000pt;}
.w1_c00411{width:794.000000pt;}
.x0_c00411{left:0.000000pt;}
.x2_c00411{left:113.440000pt;}
.x1_c00411{left:396.960000pt;}
}





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

.ir_c00412:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00412;src:url('chunks/assets/font_6efe14f08be419ebbd265e46.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_3430487b23888f48271f18b8.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00412{vertical-align:-105.840000px;}
.v0_c00412{vertical-align:0.000000px;}
.ls3_c00412{letter-spacing:-0.108000px;}
.ls2_c00412{letter-spacing:0.000000px;}
.ls1_c00412{letter-spacing:0.108000px;}
.ls0_c00412{letter-spacing:1257.840000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00412{word-spacing:-0.108000px;}
.ws0_c00412{word-spacing:0.000000px;}
.ws2_c00412{word-spacing:0.162000px;}
.ws1_c00412{word-spacing:0.270000px;}
._1_c00412{margin-left:-1.058400px;}
._0_c00412{width:1.220400px;}
.fc0_c00412{color:rgb(0,0,0);}
.fs0_c00412{font-size:54.000000px;}
.fs1_c00412{font-size:72.000000px;}
.fs2_c00412{font-size:96.120000px;}
.fs3_c00412{font-size:108.000000px;}
.y0_c00412{bottom:0.000000px;}
.y11_c00412{bottom:57.240000px;}
.y10_c00412{bottom:677.520000px;}
.yf_c00412{bottom:708.570000px;}
.ye_c00412{bottom:739.620000px;}
.yd_c00412{bottom:770.670000px;}
.yc_c00412{bottom:814.840290px;}
.yb_c00412{bottom:856.147860px;}
.ya_c00412{bottom:897.551550px;}
.y9_c00412{bottom:938.955240px;}
.y8_c00412{bottom:980.358930px;}
.y7_c00412{bottom:1021.762620px;}
.y6_c00412{bottom:1063.166310px;}
.y5_c00412{bottom:1131.030000px;}
.y4_c00412{bottom:1150.920000px;}
.y3_c00412{bottom:1166.404500px;}
.y2_c00412{bottom:1181.970000px;}
.y1_c00412{bottom:1197.450000px;}
.h3_c00412{height:52.971680px;}
.h2_c00412{height:52.998047px;}
.h4_c00412{height:70.664062px;}
.h5_c00412{height:96.870938px;}
.h6_c00412{height:108.843750px;}
.h0_c00412{height:1262.880000px;}
.h1_c00412{height:1263.000000px;}
.w0_c00412{width:893.070000px;}
.w1_c00412{width:893.250000px;}
.x0_c00412{left:0.000000px;}
.x3_c00412{left:127.620000px;}
.x6_c00412{left:138.231000px;}
.x5_c00412{left:170.631000px;}
.x7_c00412{left:355.770000px;}
.x4_c00412{left:396.270000px;}
.x2_c00412{left:425.160000px;}
.x1_c00412{left:446.580000px;}
.x8_c00412{left:738.540000px;}
@media print{
.v1_c00412{vertical-align:-94.080000pt;}
.v0_c00412{vertical-align:0.000000pt;}
.ls3_c00412{letter-spacing:-0.096000pt;}
.ls2_c00412{letter-spacing:0.000000pt;}
.ls1_c00412{letter-spacing:0.096000pt;}
.ls0_c00412{letter-spacing:1118.080000pt;}
.ws3_c00412{word-spacing:-0.096000pt;}
.ws0_c00412{word-spacing:0.000000pt;}
.ws2_c00412{word-spacing:0.144000pt;}
.ws1_c00412{word-spacing:0.240000pt;}
._1_c00412{margin-left:-0.940800pt;}
._0_c00412{width:1.084800pt;}
.fs0_c00412{font-size:48.000000pt;}
.fs1_c00412{font-size:64.000000pt;}
.fs2_c00412{font-size:85.440000pt;}
.fs3_c00412{font-size:96.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y11_c00412{bottom:50.880000pt;}
.y10_c00412{bottom:602.240000pt;}
.yf_c00412{bottom:629.840000pt;}
.ye_c00412{bottom:657.440000pt;}
.yd_c00412{bottom:685.040000pt;}
.yc_c00412{bottom:724.302480pt;}
.yb_c00412{bottom:761.020320pt;}
.ya_c00412{bottom:797.823600pt;}
.y9_c00412{bottom:834.626880pt;}
.y8_c00412{bottom:871.430160pt;}
.y7_c00412{bottom:908.233440pt;}
.y6_c00412{bottom:945.036720pt;}
.y5_c00412{bottom:1005.360000pt;}
.y4_c00412{bottom:1023.040000pt;}
.y3_c00412{bottom:1036.804000pt;}
.y2_c00412{bottom:1050.640000pt;}
.y1_c00412{bottom:1064.400000pt;}
.h3_c00412{height:47.085938pt;}
.h2_c00412{height:47.109375pt;}
.h4_c00412{height:62.812500pt;}
.h5_c00412{height:86.107500pt;}
.h6_c00412{height:96.750000pt;}
.h0_c00412{height:1122.560000pt;}
.h1_c00412{height:1122.666667pt;}
.w0_c00412{width:793.840000pt;}
.w1_c00412{width:794.000000pt;}
.x0_c00412{left:0.000000pt;}
.x3_c00412{left:113.440000pt;}
.x6_c00412{left:122.872000pt;}
.x5_c00412{left:151.672000pt;}
.x7_c00412{left:316.240000pt;}
.x4_c00412{left:352.240000pt;}
.x2_c00412{left:377.920000pt;}
.x1_c00412{left:396.960000pt;}
.x8_c00412{left:656.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_c00413 {
    display:none;
  }
  .loading-indicator_c00413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00413 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00413 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00413" -> "#page-container .classname_c00413")
 */
.pf_c00413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00413 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00413 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00413 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00413 {overflow:visible;}
  }
}
.c_c00413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00413 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00413:after { /* webkit #35443 */
  content: '';
}
.t_c00413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00413 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00413 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00413 { /* info for Javascript */
  display:none;
}
.l_c00413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00413:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00413;src:url('chunks/assets/font_cfdef3a95c22d970d4078bf2.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_93f84fcbc8107501eccb193f.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00413;src:url('chunks/assets/font_a3320aef42d8e1557d30e980.woff2')format("woff");}.ff5_c00413{font-family:ff5_c00413;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00413;src:url('chunks/assets/font_c8630a3622f68da7defb75a8.woff2')format("woff");}.ff6_c00413{font-family:ff6_c00413;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.330798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330798,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330800,0.000000,0.000000,0.250000,0,0);}
.v1_c00413{vertical-align:-61.938000px;}
.v5_c00413{vertical-align:-16.718100px;}
.v4_c00413{vertical-align:-8.359050px;}
.v3_c00413{vertical-align:-5.558788px;}
.v2_c00413{vertical-align:-2.764072px;}
.v0_c00413{vertical-align:0.000000px;}
.ls7_c00413{letter-spacing:-0.961294px;}
.ls13_c00413{letter-spacing:-0.936211px;}
.ls12_c00413{letter-spacing:-0.905565px;}
.lsc_c00413{letter-spacing:-0.902777px;}
.ls15_c00413{letter-spacing:-0.877698px;}
.lsa_c00413{letter-spacing:-0.668724px;}
.ls8_c00413{letter-spacing:-0.652007px;}
.ls11_c00413{letter-spacing:-0.234053px;}
.lse_c00413{letter-spacing:-0.144890px;}
.ls5_c00413{letter-spacing:0.000000px;}
.lsd_c00413{letter-spacing:0.033436px;}
.ls6_c00413{letter-spacing:0.624145px;}
.lsb_c00413{letter-spacing:0.702160px;}
.ls10_c00413{letter-spacing:1.237139px;}
.ls1_c00413{letter-spacing:1.379248px;}
.ls3_c00413{letter-spacing:1.394570px;}
.ls14_c00413{letter-spacing:1.404317px;}
.lsf_c00413{letter-spacing:1.404320px;}
.ls9_c00413{letter-spacing:1.412681px;}
.ls4_c00413{letter-spacing:190.856879px;}
.ls2_c00413{letter-spacing:231.278195px;}
.ls0_c00413{letter-spacing:1144.260000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00413{word-spacing:-239.637245px;}
.ws2e_c00413{word-spacing:-2.106475px;}
.ws29_c00413{word-spacing:-0.702160px;}
.ws2a_c00413{word-spacing:-0.543339px;}
.ws26_c00413{word-spacing:-0.162000px;}
.ws28_c00413{word-spacing:-0.036223px;}
.ws25_c00413{word-spacing:0.000000px;}
.ws2f_c00413{word-spacing:0.175540px;}
.ws2c_c00413{word-spacing:0.217336px;}
.ws2b_c00413{word-spacing:0.234053px;}
.ws2d_c00413{word-spacing:0.902777px;}
.ws27_c00413{word-spacing:1.671816px;}
.ws3_c00413{word-spacing:57.903347px;}
.ws1c_c00413{word-spacing:57.911706px;}
.ws1b_c00413{word-spacing:57.928424px;}
.ws1d_c00413{word-spacing:84.242901px;}
.ws20_c00413{word-spacing:84.246523px;}
.ws10_c00413{word-spacing:84.250145px;}
.ws2_c00413{word-spacing:91.348026px;}
.ws22_c00413{word-spacing:105.879071px;}
.ws5_c00413{word-spacing:112.105325px;}
.ws4_c00413{word-spacing:112.108947px;}
.ws24_c00413{word-spacing:112.123436px;}
.wsf_c00413{word-spacing:112.145170px;}
.ws12_c00413{word-spacing:130.956221px;}
.ws8_c00413{word-spacing:130.969595px;}
.ws1a_c00413{word-spacing:131.611195px;}
.ws15_c00413{word-spacing:131.614817px;}
.ws7_c00413{word-spacing:147.674321px;}
.ws1_c00413{word-spacing:147.677212px;}
.ws17_c00413{word-spacing:147.677665px;}
.wsc_c00413{word-spacing:147.687695px;}
.ws19_c00413{word-spacing:151.120687px;}
.wsb_c00413{word-spacing:164.405795px;}
.ws14_c00413{word-spacing:189.482945px;}
.ws18_c00413{word-spacing:217.983985px;}
.wsd_c00413{word-spacing:434.369674px;}
.ws21_c00413{word-spacing:448.356037px;}
.ws23_c00413{word-spacing:476.549441px;}
.ws16_c00413{word-spacing:486.031947px;}
.ws11_c00413{word-spacing:490.151287px;}
.ws13_c00413{word-spacing:535.062791px;}
.ws1e_c00413{word-spacing:550.005428px;}
.ws1f_c00413{word-spacing:563.968385px;}
.ws6_c00413{word-spacing:566.723528px;}
.wsa_c00413{word-spacing:572.738701px;}
.ws9_c00413{word-spacing:580.686485px;}
.ws0_c00413{word-spacing:625.950763px;}
._a_c00413{margin-left:-58.513350px;}
._7_c00413{margin-left:-3.105666px;}
._1_c00413{margin-left:-1.248290px;}
._2_c00413{width:1.421044px;}
._3_c00413{width:2.854626px;}
._20_c00413{width:6.620285px;}
._18_c00413{width:94.191860px;}
._19_c00413{width:95.596453px;}
._d_c00413{width:113.592815px;}
._c_c00413{width:123.129656px;}
._12_c00413{width:139.619520px;}
._6_c00413{width:141.143594px;}
._14_c00413{width:142.979236px;}
._1b_c00413{width:148.922240px;}
._8_c00413{width:155.984027px;}
._1d_c00413{width:172.708075px;}
._b_c00413{width:176.813642px;}
._15_c00413{width:190.362019px;}
._1e_c00413{width:197.898766px;}
._e_c00413{width:214.706691px;}
._1a_c00413{width:321.294041px;}
._17_c00413{width:336.923096px;}
._5_c00413{width:356.410854px;}
._f_c00413{width:378.102632px;}
._1f_c00413{width:382.442356px;}
._9_c00413{width:396.525491px;}
._13_c00413{width:401.966337px;}
._11_c00413{width:419.854486px;}
._16_c00413{width:503.078691px;}
._1c_c00413{width:509.617817px;}
._4_c00413{width:536.515011px;}
._10_c00413{width:584.849267px;}
._0_c00413{width:839.970000px;}
.fc1_c00413{color:transparent;}
.fc0_c00413{color:rgb(0,0,0);}
.fs6_c00413{font-size:33.436200px;}
.fs5_c00413{font-size:36.222600px;}
.fs4_c00413{font-size:41.795400px;}
.fs3_c00413{font-size:44.581800px;}
.fs0_c00413{font-size:54.000000px;}
.fs7_c00413{font-size:58.513200px;}
.fs1_c00413{font-size:72.000000px;}
.fs2_c00413{font-size:96.120000px;}
.y0_c00413{bottom:0.000000px;}
.y46_c00413{bottom:2.785650px;}
.y3d_c00413{bottom:2.786700px;}
.y3f_c00413{bottom:3.482550px;}
.y41_c00413{bottom:3.483300px;}
.y48_c00413{bottom:4.179900px;}
.y44_c00413{bottom:4.180050px;}
.y25_c00413{bottom:4.875750px;}
.y7_c00413{bottom:4.877400px;}
.y9_c00413{bottom:5.571900px;}
.y27_c00413{bottom:5.573250px;}
.y37_c00413{bottom:6.268650px;}
.y33_c00413{bottom:6.268950px;}
.y29_c00413{bottom:6.269250px;}
.yb_c00413{bottom:6.269400px;}
.y23_c00413{bottom:6.269550px;}
.y1c_c00413{bottom:6.270300px;}
.y17_c00413{bottom:6.270600px;}
.y19_c00413{bottom:6.964950px;}
.y2f_c00413{bottom:6.965100px;}
.y21_c00413{bottom:6.965250px;}
.y11_c00413{bottom:6.965850px;}
.y31_c00413{bottom:6.966000px;}
.y15_c00413{bottom:6.966150px;}
.y1e_c00413{bottom:6.966300px;}
.yf_c00413{bottom:6.966450px;}
.y13_c00413{bottom:6.966750px;}
.yd_c00413{bottom:6.966900px;}
.y2d_c00413{bottom:6.967200px;}
.y49_c00413{bottom:57.330000px;}
.y5_c00413{bottom:76.500000px;}
.y3c_c00413{bottom:77.908500px;}
.y47_c00413{bottom:90.447000px;}
.y3b_c00413{bottom:104.379000px;}
.y3a_c00413{bottom:121.098000px;}
.y39_c00413{bottom:137.814000px;}
.y38_c00413{bottom:154.533000px;}
.y36_c00413{bottom:171.252000px;}
.y35_c00413{bottom:187.969500px;}
.y34_c00413{bottom:204.687000px;}
.y32_c00413{bottom:221.406000px;}
.y30_c00413{bottom:238.123500px;}
.y2e_c00413{bottom:254.842500px;}
.y2c_c00413{bottom:271.558500px;}
.y2b_c00413{bottom:288.277500px;}
.y2a_c00413{bottom:304.996500px;}
.y28_c00413{bottom:321.714000px;}
.y26_c00413{bottom:338.431500px;}
.y24_c00413{bottom:355.150500px;}
.y45_c00413{bottom:388.587000px;}
.y43_c00413{bottom:402.517500px;}
.y22_c00413{bottom:416.449500px;}
.y20_c00413{bottom:433.168500px;}
.y1f_c00413{bottom:449.886000px;}
.y1d_c00413{bottom:466.603500px;}
.y1b_c00413{bottom:483.321000px;}
.y1a_c00413{bottom:500.040000px;}
.y18_c00413{bottom:516.759000px;}
.y16_c00413{bottom:533.475000px;}
.y14_c00413{bottom:550.194000px;}
.y12_c00413{bottom:566.911500px;}
.y10_c00413{bottom:583.630500px;}
.ye_c00413{bottom:600.348000px;}
.yc_c00413{bottom:617.065500px;}
.ya_c00413{bottom:633.784500px;}
.y8_c00413{bottom:650.503500px;}
.y6_c00413{bottom:667.219500px;}
.y42_c00413{bottom:697.174500px;}
.y40_c00413{bottom:715.981500px;}
.y3e_c00413{bottom:734.790000px;}
.y4_c00413{bottom:761.220000px;}
.y3_c00413{bottom:781.105500px;}
.y2_c00413{bottom:796.590000px;}
.y1_c00413{bottom:827.640000px;}
.hb_c00413{height:11.842500px;}
.h10_c00413{height:13.234500px;}
.hf_c00413{height:13.236000px;}
.ha_c00413{height:16.020000px;}
.h5_c00413{height:16.021500px;}
.he_c00413{height:18.111000px;}
.hc_c00413{height:21.592500px;}
.h9_c00413{height:24.342468px;}
.h8_c00413{height:26.317983px;}
.h7_c00413{height:30.366970px;}
.h6_c00413{height:32.391464px;}
.hd_c00413{height:42.513497px;}
.h2_c00413{height:52.998047px;}
.h3_c00413{height:70.664062px;}
.h4_c00413{height:96.870938px;}
.h0_c00413{height:893.070000px;}
.h1_c00413{height:893.250000px;}
.w3_c00413{width:1047.075000px;}
.w2_c00413{width:1047.997500px;}
.w0_c00413{width:1262.880000px;}
.w1_c00413{width:1263.000000px;}
.x0_c00413{left:0.000000px;}
.x4_c00413{left:1.842750px;}
.x5_c00413{left:23.964000px;}
.x6_c00413{left:35.024700px;}
.x2_c00413{left:106.380000px;}
.x8_c00413{left:239.646750px;}
.x9_c00413{left:407.400150px;}
.x7_c00413{left:470.998950px;}
.x1_c00413{left:631.440000px;}
.x3_c00413{left:1156.230000px;}
@media print{
.v1_c00413{vertical-align:-55.056000pt;}
.v5_c00413{vertical-align:-14.860533pt;}
.v4_c00413{vertical-align:-7.430267pt;}
.v3_c00413{vertical-align:-4.941145pt;}
.v2_c00413{vertical-align:-2.456953pt;}
.v0_c00413{vertical-align:0.000000pt;}
.ls7_c00413{letter-spacing:-0.854484pt;}
.ls13_c00413{letter-spacing:-0.832188pt;}
.ls12_c00413{letter-spacing:-0.804947pt;}
.lsc_c00413{letter-spacing:-0.802469pt;}
.ls15_c00413{letter-spacing:-0.780176pt;}
.lsa_c00413{letter-spacing:-0.594421pt;}
.ls8_c00413{letter-spacing:-0.579562pt;}
.ls11_c00413{letter-spacing:-0.208047pt;}
.lse_c00413{letter-spacing:-0.128791pt;}
.ls5_c00413{letter-spacing:0.000000pt;}
.lsd_c00413{letter-spacing:0.029721pt;}
.ls6_c00413{letter-spacing:0.554796pt;}
.lsb_c00413{letter-spacing:0.624142pt;}
.ls10_c00413{letter-spacing:1.099679pt;}
.ls1_c00413{letter-spacing:1.225998pt;}
.ls3_c00413{letter-spacing:1.239618pt;}
.ls14_c00413{letter-spacing:1.248282pt;}
.lsf_c00413{letter-spacing:1.248285pt;}
.ls9_c00413{letter-spacing:1.255717pt;}
.ls4_c00413{letter-spacing:169.650559pt;}
.ls2_c00413{letter-spacing:205.580618pt;}
.ls0_c00413{letter-spacing:1017.120000pt;}
.wse_c00413{word-spacing:-213.010885pt;}
.ws2e_c00413{word-spacing:-1.872422pt;}
.ws29_c00413{word-spacing:-0.624142pt;}
.ws2a_c00413{word-spacing:-0.482968pt;}
.ws26_c00413{word-spacing:-0.144000pt;}
.ws28_c00413{word-spacing:-0.032198pt;}
.ws25_c00413{word-spacing:0.000000pt;}
.ws2f_c00413{word-spacing:0.156035pt;}
.ws2c_c00413{word-spacing:0.193187pt;}
.ws2b_c00413{word-spacing:0.208047pt;}
.ws2d_c00413{word-spacing:0.802469pt;}
.ws27_c00413{word-spacing:1.486059pt;}
.ws3_c00413{word-spacing:51.469642pt;}
.ws1c_c00413{word-spacing:51.477072pt;}
.ws1b_c00413{word-spacing:51.491933pt;}
.ws1d_c00413{word-spacing:74.882579pt;}
.ws20_c00413{word-spacing:74.885798pt;}
.ws10_c00413{word-spacing:74.889018pt;}
.ws2_c00413{word-spacing:81.198246pt;}
.ws22_c00413{word-spacing:94.114730pt;}
.ws5_c00413{word-spacing:99.649178pt;}
.ws4_c00413{word-spacing:99.652397pt;}
.ws24_c00413{word-spacing:99.665276pt;}
.wsf_c00413{word-spacing:99.684595pt;}
.ws12_c00413{word-spacing:116.405530pt;}
.ws8_c00413{word-spacing:116.417418pt;}
.ws1a_c00413{word-spacing:116.987729pt;}
.ws15_c00413{word-spacing:116.990949pt;}
.ws7_c00413{word-spacing:131.266063pt;}
.ws1_c00413{word-spacing:131.268633pt;}
.ws17_c00413{word-spacing:131.269035pt;}
.wsc_c00413{word-spacing:131.277951pt;}
.ws19_c00413{word-spacing:134.329500pt;}
.wsb_c00413{word-spacing:146.138485pt;}
.ws14_c00413{word-spacing:168.429285pt;}
.ws18_c00413{word-spacing:193.763542pt;}
.wsd_c00413{word-spacing:386.106377pt;}
.ws21_c00413{word-spacing:398.538699pt;}
.ws23_c00413{word-spacing:423.599503pt;}
.ws16_c00413{word-spacing:432.028397pt;}
.ws11_c00413{word-spacing:435.690033pt;}
.ws13_c00413{word-spacing:475.611369pt;}
.ws1e_c00413{word-spacing:488.893714pt;}
.ws1f_c00413{word-spacing:501.305231pt;}
.ws6_c00413{word-spacing:503.754247pt;}
.wsa_c00413{word-spacing:509.101067pt;}
.ws9_c00413{word-spacing:516.165765pt;}
.ws0_c00413{word-spacing:556.400678pt;}
._a_c00413{margin-left:-52.011867pt;}
._7_c00413{margin-left:-2.760592pt;}
._1_c00413{margin-left:-1.109591pt;}
._2_c00413{width:1.263150pt;}
._3_c00413{width:2.537445pt;}
._20_c00413{width:5.884698pt;}
._18_c00413{width:83.726098pt;}
._19_c00413{width:84.974625pt;}
._d_c00413{width:100.971391pt;}
._c_c00413{width:109.448583pt;}
._12_c00413{width:124.106240pt;}
._6_c00413{width:125.460972pt;}
._14_c00413{width:127.092654pt;}
._1b_c00413{width:132.375324pt;}
._8_c00413{width:138.652468pt;}
._1d_c00413{width:153.518289pt;}
._b_c00413{width:157.167682pt;}
._15_c00413{width:169.210684pt;}
._1e_c00413{width:175.910014pt;}
._e_c00413{width:190.850392pt;}
._1a_c00413{width:285.594703pt;}
._17_c00413{width:299.487196pt;}
._5_c00413{width:316.809648pt;}
._f_c00413{width:336.091229pt;}
._1f_c00413{width:339.948761pt;}
._9_c00413{width:352.467103pt;}
._13_c00413{width:357.303411pt;}
._11_c00413{width:373.203988pt;}
._16_c00413{width:447.181059pt;}
._1c_c00413{width:452.993615pt;}
._4_c00413{width:476.902232pt;}
._10_c00413{width:519.866015pt;}
._0_c00413{width:746.640000pt;}
.fs6_c00413{font-size:29.721067pt;}
.fs5_c00413{font-size:32.197867pt;}
.fs4_c00413{font-size:37.151467pt;}
.fs3_c00413{font-size:39.628267pt;}
.fs0_c00413{font-size:48.000000pt;}
.fs7_c00413{font-size:52.011733pt;}
.fs1_c00413{font-size:64.000000pt;}
.fs2_c00413{font-size:85.440000pt;}
.y0_c00413{bottom:0.000000pt;}
.y46_c00413{bottom:2.476133pt;}
.y3d_c00413{bottom:2.477067pt;}
.y3f_c00413{bottom:3.095600pt;}
.y41_c00413{bottom:3.096267pt;}
.y48_c00413{bottom:3.715467pt;}
.y44_c00413{bottom:3.715600pt;}
.y25_c00413{bottom:4.334000pt;}
.y7_c00413{bottom:4.335467pt;}
.y9_c00413{bottom:4.952800pt;}
.y27_c00413{bottom:4.954000pt;}
.y37_c00413{bottom:5.572133pt;}
.y33_c00413{bottom:5.572400pt;}
.y29_c00413{bottom:5.572667pt;}
.yb_c00413{bottom:5.572800pt;}
.y23_c00413{bottom:5.572933pt;}
.y1c_c00413{bottom:5.573600pt;}
.y17_c00413{bottom:5.573867pt;}
.y19_c00413{bottom:6.191067pt;}
.y2f_c00413{bottom:6.191200pt;}
.y21_c00413{bottom:6.191333pt;}
.y11_c00413{bottom:6.191867pt;}
.y31_c00413{bottom:6.192000pt;}
.y15_c00413{bottom:6.192133pt;}
.y1e_c00413{bottom:6.192267pt;}
.yf_c00413{bottom:6.192400pt;}
.y13_c00413{bottom:6.192667pt;}
.yd_c00413{bottom:6.192800pt;}
.y2d_c00413{bottom:6.193067pt;}
.y49_c00413{bottom:50.960000pt;}
.y5_c00413{bottom:68.000000pt;}
.y3c_c00413{bottom:69.252000pt;}
.y47_c00413{bottom:80.397333pt;}
.y3b_c00413{bottom:92.781333pt;}
.y3a_c00413{bottom:107.642667pt;}
.y39_c00413{bottom:122.501333pt;}
.y38_c00413{bottom:137.362667pt;}
.y36_c00413{bottom:152.224000pt;}
.y35_c00413{bottom:167.084000pt;}
.y34_c00413{bottom:181.944000pt;}
.y32_c00413{bottom:196.805333pt;}
.y30_c00413{bottom:211.665333pt;}
.y2e_c00413{bottom:226.526667pt;}
.y2c_c00413{bottom:241.385333pt;}
.y2b_c00413{bottom:256.246667pt;}
.y2a_c00413{bottom:271.108000pt;}
.y28_c00413{bottom:285.968000pt;}
.y26_c00413{bottom:300.828000pt;}
.y24_c00413{bottom:315.689333pt;}
.y45_c00413{bottom:345.410667pt;}
.y43_c00413{bottom:357.793333pt;}
.y22_c00413{bottom:370.177333pt;}
.y20_c00413{bottom:385.038667pt;}
.y1f_c00413{bottom:399.898667pt;}
.y1d_c00413{bottom:414.758667pt;}
.y1b_c00413{bottom:429.618667pt;}
.y1a_c00413{bottom:444.480000pt;}
.y18_c00413{bottom:459.341333pt;}
.y16_c00413{bottom:474.200000pt;}
.y14_c00413{bottom:489.061333pt;}
.y12_c00413{bottom:503.921333pt;}
.y10_c00413{bottom:518.782667pt;}
.ye_c00413{bottom:533.642667pt;}
.yc_c00413{bottom:548.502667pt;}
.ya_c00413{bottom:563.364000pt;}
.y8_c00413{bottom:578.225333pt;}
.y6_c00413{bottom:593.084000pt;}
.y42_c00413{bottom:619.710667pt;}
.y40_c00413{bottom:636.428000pt;}
.y3e_c00413{bottom:653.146667pt;}
.y4_c00413{bottom:676.640000pt;}
.y3_c00413{bottom:694.316000pt;}
.y2_c00413{bottom:708.080000pt;}
.y1_c00413{bottom:735.680000pt;}
.hb_c00413{height:10.526667pt;}
.h10_c00413{height:11.764000pt;}
.hf_c00413{height:11.765333pt;}
.ha_c00413{height:14.240000pt;}
.h5_c00413{height:14.241333pt;}
.he_c00413{height:16.098667pt;}
.hc_c00413{height:19.193333pt;}
.h9_c00413{height:21.637749pt;}
.h8_c00413{height:23.393762pt;}
.h7_c00413{height:26.992863pt;}
.h6_c00413{height:28.792412pt;}
.hd_c00413{height:37.789775pt;}
.h2_c00413{height:47.109375pt;}
.h3_c00413{height:62.812500pt;}
.h4_c00413{height:86.107500pt;}
.h0_c00413{height:793.840000pt;}
.h1_c00413{height:794.000000pt;}
.w3_c00413{width:930.733333pt;}
.w2_c00413{width:931.553333pt;}
.w0_c00413{width:1122.560000pt;}
.w1_c00413{width:1122.666667pt;}
.x0_c00413{left:0.000000pt;}
.x4_c00413{left:1.638000pt;}
.x5_c00413{left:21.301333pt;}
.x6_c00413{left:31.133067pt;}
.x2_c00413{left:94.560000pt;}
.x8_c00413{left:213.019333pt;}
.x9_c00413{left:362.133467pt;}
.x7_c00413{left:418.665733pt;}
.x1_c00413{left:561.280000pt;}
.x3_c00413{left:1027.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_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_86ee1954f9f47000725e2dc7.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_93f84fcbc8107501eccb193f.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00414;src:url('chunks/assets/font_274dbf063a60eda63fd5416d.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_c8630a3622f68da7defb75a8.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2_c00414{transform:matrix(0.328566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328566,0.000000,0.000000,0.250000,0,0);}
.m3_c00414{transform:matrix(0.328567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328567,0.000000,0.000000,0.250000,0,0);}
.m1_c00414{transform:matrix(0.328569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328569,0.000000,0.000000,0.250000,0,0);}
.v1_c00414{vertical-align:-61.920000px;}
.v3_c00414{vertical-align:-5.607466px;}
.v2_c00414{vertical-align:-2.788252px;}
.v0_c00414{vertical-align:0.000000px;}
.ls5_c00414{letter-spacing:-0.969712px;}
.ls10_c00414{letter-spacing:-0.944410px;}
.lsf_c00414{letter-spacing:-0.913500px;}
.lsa_c00414{letter-spacing:-0.910683px;}
.ls8_c00414{letter-spacing:-0.674580px;}
.ls6_c00414{letter-spacing:-0.657720px;}
.lse_c00414{letter-spacing:-0.236103px;}
.ls2_c00414{letter-spacing:-0.108000px;}
.ls3_c00414{letter-spacing:0.000000px;}
.lsb_c00414{letter-spacing:0.033729px;}
.ls4_c00414{letter-spacing:0.629605px;}
.ls9_c00414{letter-spacing:0.708309px;}
.lsd_c00414{letter-spacing:1.247973px;}
.ls1_c00414{letter-spacing:1.391326px;}
.ls11_c00414{letter-spacing:1.416614px;}
.lsc_c00414{letter-spacing:1.416618px;}
.ls7_c00414{letter-spacing:1.425060px;}
.ls0_c00414{letter-spacing:725.580000px;}
.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;}
}
.ws15_c00414{word-spacing:-2.124922px;}
.ws12_c00414{word-spacing:-2.119320px;}
.ws10_c00414{word-spacing:-1.425060px;}
.wse_c00414{word-spacing:-1.391326px;}
.ws11_c00414{word-spacing:-0.708309px;}
.wsf_c00414{word-spacing:-0.036540px;}
.wsa_c00414{word-spacing:0.000000px;}
.wsc_c00414{word-spacing:0.162000px;}
.ws14_c00414{word-spacing:0.219240px;}
.ws13_c00414{word-spacing:0.236103px;}
.wsb_c00414{word-spacing:0.270000px;}
.wsd_c00414{word-spacing:1.686456px;}
.ws1_c00414{word-spacing:148.969087px;}
.ws5_c00414{word-spacing:432.574425px;}
.ws6_c00414{word-spacing:471.980016px;}
.ws8_c00414{word-spacing:484.689103px;}
.ws9_c00414{word-spacing:500.420308px;}
.ws7_c00414{word-spacing:534.149308px;}
.ws2_c00414{word-spacing:566.087299px;}
.ws4_c00414{word-spacing:572.155146px;}
.ws3_c00414{word-spacing:580.172529px;}
.ws0_c00414{word-spacing:625.850055px;}
._26_c00414{margin-left:-3.305416px;}
._7_c00414{margin-left:-2.188746px;}
._1_c00414{margin-left:-1.058400px;}
._0_c00414{width:1.225800px;}
._19_c00414{width:2.283453px;}
._3_c00414{width:3.294999px;}
._27_c00414{width:6.641781px;}
._1f_c00414{width:59.122931px;}
._20_c00414{width:60.637095px;}
._22_c00414{width:86.373252px;}
._5_c00414{width:92.852051px;}
._8_c00414{width:114.479820px;}
._11_c00414{width:131.447839px;}
._10_c00414{width:132.758164px;}
._15_c00414{width:134.174880px;}
._9_c00414{width:148.258404px;}
._a_c00414{width:149.676599px;}
._1d_c00414{width:153.789552px;}
._b_c00414{width:165.598483px;}
._c_c00414{width:166.799804px;}
._f_c00414{width:169.739136px;}
._1c_c00414{width:181.976508px;}
._13_c00414{width:190.906226px;}
._18_c00414{width:192.067120px;}
._12_c00414{width:208.242760px;}
._1b_c00414{width:221.319126px;}
._e_c00414{width:224.871243px;}
._21_c00414{width:318.819009px;}
._6_c00414{width:334.248282px;}
._14_c00414{width:374.966172px;}
._25_c00414{width:379.336788px;}
._24_c00414{width:392.343345px;}
._d_c00414{width:394.709259px;}
._1a_c00414{width:399.031848px;}
._17_c00414{width:417.640095px;}
._23_c00414{width:526.384452px;}
._4_c00414{width:534.367329px;}
._1e_c00414{width:535.378874px;}
._16_c00414{width:585.410202px;}
._2_c00414{width:839.970000px;}
.fc1_c00414{color:transparent;}
.fc0_c00414{color:rgb(0,0,0);}
.fs6_c00414{font-size:33.729000px;}
.fs5_c00414{font-size:36.540000px;}
.fs4_c00414{font-size:42.161400px;}
.fs3_c00414{font-size:44.971800px;}
.fs0_c00414{font-size:54.000000px;}
.fs7_c00414{font-size:59.025600px;}
.fs1_c00414{font-size:72.000000px;}
.fs2_c00414{font-size:96.120000px;}
.y0_c00414{bottom:0.000000px;}
.y40_c00414{bottom:2.810850px;}
.y36_c00414{bottom:2.811000px;}
.y3c_c00414{bottom:3.513450px;}
.y3a_c00414{bottom:3.514050px;}
.y38_c00414{bottom:3.514650px;}
.y3e_c00414{bottom:4.215150px;}
.y42_c00414{bottom:4.216800px;}
.y21_c00414{bottom:4.917900px;}
.y7_c00414{bottom:4.919250px;}
.y9_c00414{bottom:5.620500px;}
.y23_c00414{bottom:5.622150px;}
.y19_c00414{bottom:6.323250px;}
.y1f_c00414{bottom:6.323400px;}
.yb_c00414{bottom:6.324600px;}
.y25_c00414{bottom:6.324750px;}
.y15_c00414{bottom:6.324900px;}
.y34_c00414{bottom:6.325050px;}
.y12_c00414{bottom:7.026000px;}
.y2d_c00414{bottom:7.026150px;}
.yd_c00414{bottom:7.027350px;}
.y10_c00414{bottom:7.027500px;}
.y1d_c00414{bottom:7.027650px;}
.y43_c00414{bottom:57.330000px;}
.y5_c00414{bottom:77.580000px;}
.y35_c00414{bottom:78.987000px;}
.y41_c00414{bottom:91.635000px;}
.y33_c00414{bottom:105.688500px;}
.y32_c00414{bottom:122.554500px;}
.y31_c00414{bottom:139.419000px;}
.y30_c00414{bottom:156.283500px;}
.y2f_c00414{bottom:173.146500px;}
.y2e_c00414{bottom:190.011000px;}
.y2c_c00414{bottom:206.877000px;}
.y2b_c00414{bottom:223.741500px;}
.y2a_c00414{bottom:240.604500px;}
.y29_c00414{bottom:257.469000px;}
.y28_c00414{bottom:274.333500px;}
.y27_c00414{bottom:291.199500px;}
.y26_c00414{bottom:308.064000px;}
.y24_c00414{bottom:324.927000px;}
.y22_c00414{bottom:341.791500px;}
.y20_c00414{bottom:358.657500px;}
.y3f_c00414{bottom:388.872000px;}
.y3d_c00414{bottom:401.521500px;}
.y1e_c00414{bottom:415.575000px;}
.y1c_c00414{bottom:432.438000px;}
.y1b_c00414{bottom:449.302500px;}
.y1a_c00414{bottom:466.167000px;}
.y18_c00414{bottom:483.033000px;}
.y17_c00414{bottom:499.897500px;}
.y16_c00414{bottom:516.760500px;}
.y14_c00414{bottom:533.625000px;}
.y13_c00414{bottom:550.489500px;}
.y11_c00414{bottom:567.355500px;}
.yf_c00414{bottom:584.218500px;}
.ye_c00414{bottom:601.083000px;}
.yc_c00414{bottom:617.947500px;}
.ya_c00414{bottom:634.812000px;}
.y8_c00414{bottom:651.678000px;}
.y6_c00414{bottom:668.541000px;}
.y3b_c00414{bottom:698.757000px;}
.y39_c00414{bottom:717.729000px;}
.y37_c00414{bottom:736.701000px;}
.y4_c00414{bottom:761.220000px;}
.y3_c00414{bottom:781.110000px;}
.y2_c00414{bottom:796.594500px;}
.y1_c00414{bottom:827.640000px;}
.hb_c00414{height:11.946000px;}
.h10_c00414{height:13.350000px;}
.h11_c00414{height:13.351500px;}
.h7_c00414{height:16.161000px;}
.h5_c00414{height:16.162500px;}
.hf_c00414{height:18.270000px;}
.he_c00414{height:18.271500px;}
.hc_c00414{height:19.675500px;}
.ha_c00414{height:24.555634px;}
.h9_c00414{height:26.548594px;}
.h8_c00414{height:30.632892px;}
.h6_c00414{height:32.674823px;}
.hd_c00414{height:42.885787px;}
.h2_c00414{height:52.998047px;}
.h3_c00414{height:70.664062px;}
.h4_c00414{height:96.870938px;}
.h0_c00414{height:893.070000px;}
.h1_c00414{height:893.250000px;}
.w3_c00414{width:1047.274500px;}
.w2_c00414{width:1048.200000px;}
.w0_c00414{width:1262.880000px;}
.w1_c00414{width:1263.000000px;}
.x0_c00414{left:0.000000px;}
.x4_c00414{left:1.846500px;}
.x5_c00414{left:24.011100px;}
.x6_c00414{left:35.093400px;}
.x2_c00414{left:106.380000px;}
.x8_c00414{left:239.191950px;}
.x9_c00414{left:368.485200px;}
.x7_c00414{left:470.996250px;}
.x1_c00414{left:631.440000px;}
.xa_c00414{left:1129.590000px;}
.x3_c00414{left:1156.410000px;}
@media print{
.v1_c00414{vertical-align:-55.040000pt;}
.v3_c00414{vertical-align:-4.984414pt;}
.v2_c00414{vertical-align:-2.478446pt;}
.v0_c00414{vertical-align:0.000000pt;}
.ls5_c00414{letter-spacing:-0.861966pt;}
.ls10_c00414{letter-spacing:-0.839475pt;}
.lsf_c00414{letter-spacing:-0.812000pt;}
.lsa_c00414{letter-spacing:-0.809496pt;}
.ls8_c00414{letter-spacing:-0.599627pt;}
.ls6_c00414{letter-spacing:-0.584640pt;}
.lse_c00414{letter-spacing:-0.209869pt;}
.ls2_c00414{letter-spacing:-0.096000pt;}
.ls3_c00414{letter-spacing:0.000000pt;}
.lsb_c00414{letter-spacing:0.029981pt;}
.ls4_c00414{letter-spacing:0.559649pt;}
.ls9_c00414{letter-spacing:0.629608pt;}
.lsd_c00414{letter-spacing:1.109309pt;}
.ls1_c00414{letter-spacing:1.236734pt;}
.ls11_c00414{letter-spacing:1.259213pt;}
.lsc_c00414{letter-spacing:1.259216pt;}
.ls7_c00414{letter-spacing:1.266720pt;}
.ls0_c00414{letter-spacing:644.960000pt;}
.ws15_c00414{word-spacing:-1.888819pt;}
.ws12_c00414{word-spacing:-1.883840pt;}
.ws10_c00414{word-spacing:-1.266720pt;}
.wse_c00414{word-spacing:-1.236734pt;}
.ws11_c00414{word-spacing:-0.629608pt;}
.wsf_c00414{word-spacing:-0.032480pt;}
.wsa_c00414{word-spacing:0.000000pt;}
.wsc_c00414{word-spacing:0.144000pt;}
.ws14_c00414{word-spacing:0.194880pt;}
.ws13_c00414{word-spacing:0.209869pt;}
.wsb_c00414{word-spacing:0.240000pt;}
.wsd_c00414{word-spacing:1.499072pt;}
.ws1_c00414{word-spacing:132.416967pt;}
.ws5_c00414{word-spacing:384.510600pt;}
.ws6_c00414{word-spacing:419.537792pt;}
.ws8_c00414{word-spacing:430.834758pt;}
.ws9_c00414{word-spacing:444.818052pt;}
.ws7_c00414{word-spacing:474.799385pt;}
.ws2_c00414{word-spacing:503.188710pt;}
.ws4_c00414{word-spacing:508.582352pt;}
.ws3_c00414{word-spacing:515.708915pt;}
.ws0_c00414{word-spacing:556.311160pt;}
._26_c00414{margin-left:-2.938147pt;}
._7_c00414{margin-left:-1.945552pt;}
._1_c00414{margin-left:-0.940800pt;}
._0_c00414{width:1.089600pt;}
._19_c00414{width:2.029736pt;}
._3_c00414{width:2.928888pt;}
._27_c00414{width:5.903805pt;}
._1f_c00414{width:52.553717pt;}
._20_c00414{width:53.899640pt;}
._22_c00414{width:76.776224pt;}
._5_c00414{width:82.535157pt;}
._8_c00414{width:101.759840pt;}
._11_c00414{width:116.842524pt;}
._10_c00414{width:118.007257pt;}
._15_c00414{width:119.266560pt;}
._9_c00414{width:131.785248pt;}
._a_c00414{width:133.045866pt;}
._1d_c00414{width:136.701824pt;}
._b_c00414{width:147.198652pt;}
._c_c00414{width:148.266493pt;}
._f_c00414{width:150.879232pt;}
._1c_c00414{width:161.756896pt;}
._13_c00414{width:169.694423pt;}
._18_c00414{width:170.726329pt;}
._12_c00414{width:185.104676pt;}
._1b_c00414{width:196.728112pt;}
._e_c00414{width:199.885549pt;}
._21_c00414{width:283.394675pt;}
._6_c00414{width:297.109584pt;}
._14_c00414{width:333.303264pt;}
._25_c00414{width:337.188256pt;}
._24_c00414{width:348.749640pt;}
._d_c00414{width:350.852675pt;}
._1a_c00414{width:354.694976pt;}
._17_c00414{width:371.235640pt;}
._23_c00414{width:467.897291pt;}
._4_c00414{width:474.993181pt;}
._1e_c00414{width:475.892333pt;}
._16_c00414{width:520.364624pt;}
._2_c00414{width:746.640000pt;}
.fs6_c00414{font-size:29.981333pt;}
.fs5_c00414{font-size:32.480000pt;}
.fs4_c00414{font-size:37.476800pt;}
.fs3_c00414{font-size:39.974933pt;}
.fs0_c00414{font-size:48.000000pt;}
.fs7_c00414{font-size:52.467200pt;}
.fs1_c00414{font-size:64.000000pt;}
.fs2_c00414{font-size:85.440000pt;}
.y0_c00414{bottom:0.000000pt;}
.y40_c00414{bottom:2.498533pt;}
.y36_c00414{bottom:2.498667pt;}
.y3c_c00414{bottom:3.123067pt;}
.y3a_c00414{bottom:3.123600pt;}
.y38_c00414{bottom:3.124133pt;}
.y3e_c00414{bottom:3.746800pt;}
.y42_c00414{bottom:3.748267pt;}
.y21_c00414{bottom:4.371467pt;}
.y7_c00414{bottom:4.372667pt;}
.y9_c00414{bottom:4.996000pt;}
.y23_c00414{bottom:4.997467pt;}
.y19_c00414{bottom:5.620667pt;}
.y1f_c00414{bottom:5.620800pt;}
.yb_c00414{bottom:5.621867pt;}
.y25_c00414{bottom:5.622000pt;}
.y15_c00414{bottom:5.622133pt;}
.y34_c00414{bottom:5.622267pt;}
.y12_c00414{bottom:6.245333pt;}
.y2d_c00414{bottom:6.245467pt;}
.yd_c00414{bottom:6.246533pt;}
.y10_c00414{bottom:6.246667pt;}
.y1d_c00414{bottom:6.246800pt;}
.y43_c00414{bottom:50.960000pt;}
.y5_c00414{bottom:68.960000pt;}
.y35_c00414{bottom:70.210667pt;}
.y41_c00414{bottom:81.453333pt;}
.y33_c00414{bottom:93.945333pt;}
.y32_c00414{bottom:108.937333pt;}
.y31_c00414{bottom:123.928000pt;}
.y30_c00414{bottom:138.918667pt;}
.y2f_c00414{bottom:153.908000pt;}
.y2e_c00414{bottom:168.898667pt;}
.y2c_c00414{bottom:183.890667pt;}
.y2b_c00414{bottom:198.881333pt;}
.y2a_c00414{bottom:213.870667pt;}
.y29_c00414{bottom:228.861333pt;}
.y28_c00414{bottom:243.852000pt;}
.y27_c00414{bottom:258.844000pt;}
.y26_c00414{bottom:273.834667pt;}
.y24_c00414{bottom:288.824000pt;}
.y22_c00414{bottom:303.814667pt;}
.y20_c00414{bottom:318.806667pt;}
.y3f_c00414{bottom:345.664000pt;}
.y3d_c00414{bottom:356.908000pt;}
.y1e_c00414{bottom:369.400000pt;}
.y1c_c00414{bottom:384.389333pt;}
.y1b_c00414{bottom:399.380000pt;}
.y1a_c00414{bottom:414.370667pt;}
.y18_c00414{bottom:429.362667pt;}
.y17_c00414{bottom:444.353333pt;}
.y16_c00414{bottom:459.342667pt;}
.y14_c00414{bottom:474.333333pt;}
.y13_c00414{bottom:489.324000pt;}
.y11_c00414{bottom:504.316000pt;}
.yf_c00414{bottom:519.305333pt;}
.ye_c00414{bottom:534.296000pt;}
.yc_c00414{bottom:549.286667pt;}
.ya_c00414{bottom:564.277333pt;}
.y8_c00414{bottom:579.269333pt;}
.y6_c00414{bottom:594.258667pt;}
.y3b_c00414{bottom:621.117333pt;}
.y39_c00414{bottom:637.981333pt;}
.y37_c00414{bottom:654.845333pt;}
.y4_c00414{bottom:676.640000pt;}
.y3_c00414{bottom:694.320000pt;}
.y2_c00414{bottom:708.084000pt;}
.y1_c00414{bottom:735.680000pt;}
.hb_c00414{height:10.618667pt;}
.h10_c00414{height:11.866667pt;}
.h11_c00414{height:11.868000pt;}
.h7_c00414{height:14.365333pt;}
.h5_c00414{height:14.366667pt;}
.hf_c00414{height:16.240000pt;}
.he_c00414{height:16.241333pt;}
.hc_c00414{height:17.489333pt;}
.ha_c00414{height:21.827230pt;}
.h9_c00414{height:23.598750pt;}
.h8_c00414{height:27.229237pt;}
.h6_c00414{height:29.044287pt;}
.hd_c00414{height:38.120700pt;}
.h2_c00414{height:47.109375pt;}
.h3_c00414{height:62.812500pt;}
.h4_c00414{height:86.107500pt;}
.h0_c00414{height:793.840000pt;}
.h1_c00414{height:794.000000pt;}
.w3_c00414{width:930.910667pt;}
.w2_c00414{width:931.733333pt;}
.w0_c00414{width:1122.560000pt;}
.w1_c00414{width:1122.666667pt;}
.x0_c00414{left:0.000000pt;}
.x4_c00414{left:1.641333pt;}
.x5_c00414{left:21.343200pt;}
.x6_c00414{left:31.194133pt;}
.x2_c00414{left:94.560000pt;}
.x8_c00414{left:212.615067pt;}
.x9_c00414{left:327.542400pt;}
.x7_c00414{left:418.663333pt;}
.x1_c00414{left:561.280000pt;}
.xa_c00414{left:1004.080000pt;}
.x3_c00414{left:1027.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f710d4c138ffe93bdce215a.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_fa00c3dfb7ccb89f7d0b0687.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00415;src:url('chunks/assets/font_118ca97baf0760d07b18271d.woff2')format("woff");}.ff5_c00415{font-family:ff5_c00415;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00415;src:url('chunks/assets/font_c8630a3622f68da7defb75a8.woff2')format("woff");}.ff6_c00415{font-family:ff6_c00415;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2_c00415{transform:matrix(0.364446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364446,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.364450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364450,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.364452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364452,0.000000,0.000000,0.250000,0,0);}
.v1_c00415{vertical-align:-61.938000px;}
.v4_c00415{vertical-align:-8.574750px;}
.v3_c00415{vertical-align:-5.702269px;}
.v2_c00415{vertical-align:-2.835384px;}
.v0_c00415{vertical-align:0.000000px;}
.ls4_c00415{letter-spacing:-0.986107px;}
.ls11_c00415{letter-spacing:-0.960374px;}
.lsf_c00415{letter-spacing:-0.928935px;}
.ls9_c00415{letter-spacing:-0.926073px;}
.lsb_c00415{letter-spacing:-0.788877px;}
.ls7_c00415{letter-spacing:-0.685980px;}
.ls5_c00415{letter-spacing:-0.668833px;}
.ls10_c00415{letter-spacing:-0.334417px;}
.lse_c00415{letter-spacing:-0.240093px;}
.ls2_c00415{letter-spacing:0.000000px;}
.lsa_c00415{letter-spacing:0.034299px;}
.ls3_c00415{letter-spacing:0.640248px;}
.ls8_c00415{letter-spacing:0.720279px;}
.lsd_c00415{letter-spacing:1.269063px;}
.ls1_c00415{letter-spacing:1.414849px;}
.lsc_c00415{letter-spacing:1.440558px;}
.ls12_c00415{letter-spacing:1.440562px;}
.ls6_c00415{letter-spacing:1.449139px;}
.ls0_c00415{letter-spacing:1144.260000px;}
.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;}
}
.ws13_c00415{word-spacing:-10.738489px;}
.ws31_c00415{word-spacing:-2.160842px;}
.ws2e_c00415{word-spacing:-2.155129px;}
.ws2d_c00415{word-spacing:-0.720279px;}
.ws2a_c00415{word-spacing:-0.162000px;}
.ws2c_c00415{word-spacing:-0.037157px;}
.ws29_c00415{word-spacing:0.000000px;}
.ws30_c00415{word-spacing:0.222944px;}
.ws2f_c00415{word-spacing:0.240093px;}
.ws2b_c00415{word-spacing:1.714968px;}
.ws17_c00415{word-spacing:29.101676px;}
.ws14_c00415{word-spacing:45.504483px;}
.ws27_c00415{word-spacing:45.514773px;}
.ws1a_c00415{word-spacing:48.417834px;}
.ws2_c00415{word-spacing:48.430696px;}
.ws28_c00415{word-spacing:49.103504px;}
.ws19_c00415{word-spacing:60.533120px;}
.ws10_c00415{word-spacing:68.368197px;}
.ws16_c00415{word-spacing:68.378486px;}
.ws11_c00415{word-spacing:71.970168px;}
.ws12_c00415{word-spacing:74.080695px;}
.ws26_c00415{word-spacing:79.813773px;}
.wsb_c00415{word-spacing:80.671248px;}
.ws3_c00415{word-spacing:83.399784px;}
.ws7_c00415{word-spacing:85.527986px;}
.ws18_c00415{word-spacing:89.660806px;}
.ws9_c00415{word-spacing:91.245630px;}
.ws1f_c00415{word-spacing:91.249060px;}
.wsc_c00415{word-spacing:102.667197px;}
.ws25_c00415{word-spacing:102.670627px;}
.ws5_c00415{word-spacing:102.680916px;}
.ws1b_c00415{word-spacing:103.409044px;}
.ws21_c00415{word-spacing:103.412760px;}
.ws23_c00415{word-spacing:108.384840px;}
.ws1_c00415{word-spacing:114.330000px;}
.wse_c00415{word-spacing:119.816697px;}
.ws1d_c00415{word-spacing:119.830416px;}
.ws20_c00415{word-spacing:368.405559px;}
.wsa_c00415{word-spacing:379.861425px;}
.wsd_c00415{word-spacing:425.626581px;}
.ws15_c00415{word-spacing:432.856810px;}
.ws22_c00415{word-spacing:454.231947px;}
.wsf_c00415{word-spacing:454.547497px;}
.ws24_c00415{word-spacing:466.003364px;}
.ws8_c00415{word-spacing:510.345111px;}
.ws4_c00415{word-spacing:515.630587px;}
.ws6_c00415{word-spacing:529.953849px;}
.ws1c_c00415{word-spacing:532.780087px;}
.ws1e_c00415{word-spacing:547.103349px;}
.ws0_c00415{word-spacing:587.816262px;}
._f_c00415{margin-left:-2.389221px;}
._1_c00415{margin-left:-1.280496px;}
._5_c00415{width:1.457723px;}
._6_c00415{width:2.928308px;}
._31_c00415{width:6.675308px;}
._1e_c00415{width:60.395186px;}
._1b_c00415{width:68.446570px;}
._23_c00415{width:71.505891px;}
._8_c00415{width:74.020864px;}
._14_c00415{width:76.209065px;}
._20_c00415{width:77.271275px;}
._11_c00415{width:80.273741px;}
._a_c00415{width:82.717194px;}
._12_c00415{width:85.729553px;}
._19_c00415{width:87.858794px;}
._c_c00415{width:91.426387px;}
._2f_c00415{width:93.392803px;}
._18_c00415{width:94.603502px;}
._1f_c00415{width:97.144307px;}
._b_c00415{width:100.331318px;}
._e_c00415{width:101.768969px;}
._3_c00415{width:102.892427px;}
._2a_c00415{width:106.459834px;}
._16_c00415{width:110.344721px;}
._10_c00415{width:111.453621px;}
._9_c00415{width:114.173995px;}
._13_c00415{width:116.881483px;}
._1d_c00415{width:119.294093px;}
._29_c00415{width:120.341993px;}
._17_c00415{width:127.506938px;}
._4_c00415{width:128.621250px;}
._21_c00415{width:131.258843px;}
._2b_c00415{width:134.102230px;}
._1c_c00415{width:137.127371px;}
._2_c00415{width:142.615242px;}
._25_c00415{width:144.711919px;}
._15_c00415{width:146.435745px;}
._1a_c00415{width:189.952704px;}
._2c_c00415{width:264.278637px;}
._26_c00415{width:288.116473px;}
._27_c00415{width:292.284292px;}
._30_c00415{width:303.728771px;}
._d_c00415{width:317.044011px;}
._22_c00415{width:318.175948px;}
._2e_c00415{width:322.415473px;}
._24_c00415{width:382.725315px;}
._2d_c00415{width:457.051248px;}
._28_c00415{width:504.616472px;}
._7_c00415{width:513.191312px;}
._0_c00415{width:839.970000px;}
.fc1_c00415{color:transparent;}
.fc0_c00415{color:rgb(0,0,0);}
.fs6_c00415{font-size:34.299000px;}
.fs5_c00415{font-size:37.157400px;}
.fs4_c00415{font-size:42.874200px;}
.fs3_c00415{font-size:45.732000px;}
.fs0_c00415{font-size:54.000000px;}
.fs7_c00415{font-size:60.023400px;}
.fs1_c00415{font-size:72.000000px;}
.fs2_c00415{font-size:96.120000px;}
.y0_c00415{bottom:0.000000px;}
.y40_c00415{bottom:3.572400px;}
.y46_c00415{bottom:3.573000px;}
.y48_c00415{bottom:3.573300px;}
.y44_c00415{bottom:3.573600px;}
.y42_c00415{bottom:3.574050px;}
.y26_c00415{bottom:5.001600px;}
.y7_c00415{bottom:5.001750px;}
.y9_c00415{bottom:5.716350px;}
.y28_c00415{bottom:5.717550px;}
.y2a_c00415{bottom:6.430650px;}
.yb_c00415{bottom:6.430800px;}
.y3e_c00415{bottom:6.430950px;}
.y24_c00415{bottom:6.431100px;}
.y38_c00415{bottom:6.431250px;}
.y1c_c00415{bottom:6.431400px;}
.y33_c00415{bottom:6.431550px;}
.y16_c00415{bottom:6.431700px;}
.y1e_c00415{bottom:7.144350px;}
.y18_c00415{bottom:7.144650px;}
.y13_c00415{bottom:7.144950px;}
.yf_c00415{bottom:7.145100px;}
.yd_c00415{bottom:7.145250px;}
.y3c_c00415{bottom:7.145550px;}
.y22_c00415{bottom:7.145700px;}
.y20_c00415{bottom:7.145850px;}
.y35_c00415{bottom:7.146000px;}
.y1a_c00415{bottom:7.146150px;}
.y30_c00415{bottom:7.146300px;}
.y11_c00415{bottom:7.146450px;}
.y2c_c00415{bottom:7.146600px;}
.y49_c00415{bottom:57.330000px;}
.y5_c00415{bottom:83.250000px;}
.y3f_c00415{bottom:84.673500px;}
.y3d_c00415{bottom:98.250000px;}
.y3b_c00415{bottom:115.399500px;}
.y3a_c00415{bottom:132.549000px;}
.y39_c00415{bottom:149.698500px;}
.y37_c00415{bottom:166.848000px;}
.y36_c00415{bottom:183.997500px;}
.y34_c00415{bottom:201.147000px;}
.y32_c00415{bottom:218.296500px;}
.y31_c00415{bottom:235.446000px;}
.y2f_c00415{bottom:252.595500px;}
.y2e_c00415{bottom:269.746500px;}
.y2d_c00415{bottom:286.896000px;}
.y2b_c00415{bottom:304.044000px;}
.y29_c00415{bottom:321.195000px;}
.y27_c00415{bottom:338.343000px;}
.y25_c00415{bottom:355.494000px;}
.y41_c00415{bottom:399.081000px;}
.y23_c00415{bottom:412.659000px;}
.y21_c00415{bottom:429.808500px;}
.y1f_c00415{bottom:446.958000px;}
.y1d_c00415{bottom:464.109000px;}
.y1b_c00415{bottom:481.257000px;}
.y19_c00415{bottom:498.406500px;}
.y17_c00415{bottom:515.557500px;}
.y15_c00415{bottom:532.705500px;}
.y14_c00415{bottom:549.856500px;}
.y12_c00415{bottom:567.006000px;}
.y10_c00415{bottom:584.154000px;}
.ye_c00415{bottom:601.305000px;}
.yc_c00415{bottom:618.454500px;}
.ya_c00415{bottom:635.604000px;}
.y8_c00415{bottom:652.753500px;}
.y6_c00415{bottom:669.903000px;}
.y45_c00415{bottom:700.629000px;}
.y47_c00415{bottom:719.922000px;}
.y43_c00415{bottom:739.215000px;}
.y4_c00415{bottom:761.220000px;}
.y3_c00415{bottom:781.105500px;}
.y2_c00415{bottom:796.590000px;}
.y1_c00415{bottom:827.640000px;}
.hb_c00415{height:12.861000px;}
.hc_c00415{height:12.862500px;}
.h5_c00415{height:16.435500px;}
.ha_c00415{height:16.437000px;}
.hd_c00415{height:17.151000px;}
.hf_c00415{height:18.579000px;}
.h9_c00415{height:24.970610px;}
.h8_c00415{height:26.997173px;}
.h7_c00415{height:31.150786px;}
.h6_c00415{height:33.227156px;}
.he_c00415{height:43.610752px;}
.h2_c00415{height:52.998047px;}
.h3_c00415{height:70.664062px;}
.h4_c00415{height:96.870938px;}
.h0_c00415{height:893.070000px;}
.h1_c00415{height:893.250000px;}
.w3_c00415{width:1046.898000px;}
.w2_c00415{width:1047.939000px;}
.w0_c00415{width:1262.880000px;}
.w1_c00415{width:1263.000000px;}
.x0_c00415{left:0.000000px;}
.x5_c00415{left:2.082600px;}
.x6_c00415{left:27.083100px;}
.x7_c00415{left:39.583350px;}
.x2_c00415{left:106.380000px;}
.x4_c00415{left:107.422500px;}
.xa_c00415{left:202.087050px;}
.x9_c00415{left:408.341700px;}
.x8_c00415{left:463.551150px;}
.x1_c00415{left:631.440000px;}
.x3_c00415{left:1156.410000px;}
@media print{
.v1_c00415{vertical-align:-55.056000pt;}
.v4_c00415{vertical-align:-7.622000pt;}
.v3_c00415{vertical-align:-5.068683pt;}
.v2_c00415{vertical-align:-2.520341pt;}
.v0_c00415{vertical-align:0.000000pt;}
.ls4_c00415{letter-spacing:-0.876539pt;}
.ls11_c00415{letter-spacing:-0.853666pt;}
.lsf_c00415{letter-spacing:-0.825720pt;}
.ls9_c00415{letter-spacing:-0.823176pt;}
.lsb_c00415{letter-spacing:-0.701224pt;}
.ls7_c00415{letter-spacing:-0.609760pt;}
.ls5_c00415{letter-spacing:-0.594518pt;}
.ls10_c00415{letter-spacing:-0.297259pt;}
.lse_c00415{letter-spacing:-0.213416pt;}
.ls2_c00415{letter-spacing:0.000000pt;}
.lsa_c00415{letter-spacing:0.030488pt;}
.ls3_c00415{letter-spacing:0.569109pt;}
.ls8_c00415{letter-spacing:0.640248pt;}
.lsd_c00415{letter-spacing:1.128056pt;}
.ls1_c00415{letter-spacing:1.257643pt;}
.lsc_c00415{letter-spacing:1.280496pt;}
.ls12_c00415{letter-spacing:1.280499pt;}
.ls6_c00415{letter-spacing:1.288123pt;}
.ls0_c00415{letter-spacing:1017.120000pt;}
.ws13_c00415{word-spacing:-9.545323pt;}
.ws31_c00415{word-spacing:-1.920749pt;}
.ws2e_c00415{word-spacing:-1.915670pt;}
.ws2d_c00415{word-spacing:-0.640248pt;}
.ws2a_c00415{word-spacing:-0.144000pt;}
.ws2c_c00415{word-spacing:-0.033029pt;}
.ws29_c00415{word-spacing:0.000000pt;}
.ws30_c00415{word-spacing:0.198173pt;}
.ws2f_c00415{word-spacing:0.213416pt;}
.ws2b_c00415{word-spacing:1.524416pt;}
.ws17_c00415{word-spacing:25.868156pt;}
.ws14_c00415{word-spacing:40.448430pt;}
.ws27_c00415{word-spacing:40.457576pt;}
.ws1a_c00415{word-spacing:43.038075pt;}
.ws2_c00415{word-spacing:43.049508pt;}
.ws28_c00415{word-spacing:43.647559pt;}
.ws19_c00415{word-spacing:53.807218pt;}
.ws10_c00415{word-spacing:60.771730pt;}
.ws16_c00415{word-spacing:60.780877pt;}
.ws11_c00415{word-spacing:63.973483pt;}
.ws12_c00415{word-spacing:65.849507pt;}
.ws26_c00415{word-spacing:70.945576pt;}
.wsb_c00415{word-spacing:71.707776pt;}
.ws3_c00415{word-spacing:74.133142pt;}
.ws7_c00415{word-spacing:76.024877pt;}
.ws18_c00415{word-spacing:79.698494pt;}
.ws9_c00415{word-spacing:81.107226pt;}
.ws1f_c00415{word-spacing:81.110275pt;}
.wsc_c00415{word-spacing:91.259730pt;}
.ws25_c00415{word-spacing:91.262779pt;}
.ws5_c00415{word-spacing:91.271926pt;}
.ws1b_c00415{word-spacing:91.919150pt;}
.ws21_c00415{word-spacing:91.922453pt;}
.ws23_c00415{word-spacing:96.342080pt;}
.ws1_c00415{word-spacing:101.626667pt;}
.wse_c00415{word-spacing:106.503730pt;}
.ws1d_c00415{word-spacing:106.515926pt;}
.ws20_c00415{word-spacing:327.471608pt;}
.wsa_c00415{word-spacing:337.654600pt;}
.wsd_c00415{word-spacing:378.334738pt;}
.ws15_c00415{word-spacing:384.761609pt;}
.ws22_c00415{word-spacing:403.761730pt;}
.wsf_c00415{word-spacing:404.042220pt;}
.ws24_c00415{word-spacing:414.225212pt;}
.ws8_c00415{word-spacing:453.640098pt;}
.ws4_c00415{word-spacing:458.338299pt;}
.ws6_c00415{word-spacing:471.070088pt;}
.ws1c_c00415{word-spacing:473.582299pt;}
.ws1e_c00415{word-spacing:486.314088pt;}
.ws0_c00415{word-spacing:522.503344pt;}
._f_c00415{margin-left:-2.123752pt;}
._1_c00415{margin-left:-1.138219pt;}
._5_c00415{width:1.295754pt;}
._6_c00415{width:2.602940pt;}
._31_c00415{width:5.933607pt;}
._1e_c00415{width:53.684610pt;}
._1b_c00415{width:60.841396pt;}
._23_c00415{width:63.560792pt;}
._8_c00415{width:65.796323pt;}
._14_c00415{width:67.741391pt;}
._20_c00415{width:68.685578pt;}
._11_c00415{width:71.354436pt;}
._a_c00415{width:73.526395pt;}
._12_c00415{width:76.204047pt;}
._19_c00415{width:78.096706pt;}
._c_c00415{width:81.267899pt;}
._2f_c00415{width:83.015825pt;}
._18_c00415{width:84.092002pt;}
._1f_c00415{width:86.350495pt;}
._b_c00415{width:89.183393pt;}
._e_c00415{width:90.461305pt;}
._3_c00415{width:91.459935pt;}
._2a_c00415{width:94.630964pt;}
._16_c00415{width:98.084196pt;}
._10_c00415{width:99.069886pt;}
._9_c00415{width:101.487995pt;}
._13_c00415{width:103.894652pt;}
._1d_c00415{width:106.039193pt;}
._29_c00415{width:106.970661pt;}
._17_c00415{width:113.339501pt;}
._4_c00415{width:114.330000pt;}
._21_c00415{width:116.674527pt;}
._2b_c00415{width:119.201982pt;}
._1c_c00415{width:121.890997pt;}
._2_c00415{width:126.769104pt;}
._25_c00415{width:128.632817pt;}
._15_c00415{width:130.165107pt;}
._1a_c00415{width:168.846848pt;}
._2c_c00415{width:234.914344pt;}
._26_c00415{width:256.103531pt;}
._27_c00415{width:259.808260pt;}
._30_c00415{width:269.981130pt;}
._d_c00415{width:281.816899pt;}
._22_c00415{width:282.823065pt;}
._2e_c00415{width:286.591531pt;}
._24_c00415{width:340.200280pt;}
._2d_c00415{width:406.267776pt;}
._28_c00415{width:448.547975pt;}
._7_c00415{width:456.170055pt;}
._0_c00415{width:746.640000pt;}
.fs6_c00415{font-size:30.488000pt;}
.fs5_c00415{font-size:33.028800pt;}
.fs4_c00415{font-size:38.110400pt;}
.fs3_c00415{font-size:40.650667pt;}
.fs0_c00415{font-size:48.000000pt;}
.fs7_c00415{font-size:53.354133pt;}
.fs1_c00415{font-size:64.000000pt;}
.fs2_c00415{font-size:85.440000pt;}
.y0_c00415{bottom:0.000000pt;}
.y40_c00415{bottom:3.175467pt;}
.y46_c00415{bottom:3.176000pt;}
.y48_c00415{bottom:3.176267pt;}
.y44_c00415{bottom:3.176533pt;}
.y42_c00415{bottom:3.176933pt;}
.y26_c00415{bottom:4.445867pt;}
.y7_c00415{bottom:4.446000pt;}
.y9_c00415{bottom:5.081200pt;}
.y28_c00415{bottom:5.082267pt;}
.y2a_c00415{bottom:5.716133pt;}
.yb_c00415{bottom:5.716267pt;}
.y3e_c00415{bottom:5.716400pt;}
.y24_c00415{bottom:5.716533pt;}
.y38_c00415{bottom:5.716667pt;}
.y1c_c00415{bottom:5.716800pt;}
.y33_c00415{bottom:5.716933pt;}
.y16_c00415{bottom:5.717067pt;}
.y1e_c00415{bottom:6.350533pt;}
.y18_c00415{bottom:6.350800pt;}
.y13_c00415{bottom:6.351067pt;}
.yf_c00415{bottom:6.351200pt;}
.yd_c00415{bottom:6.351333pt;}
.y3c_c00415{bottom:6.351600pt;}
.y22_c00415{bottom:6.351733pt;}
.y20_c00415{bottom:6.351867pt;}
.y35_c00415{bottom:6.352000pt;}
.y1a_c00415{bottom:6.352133pt;}
.y30_c00415{bottom:6.352267pt;}
.y11_c00415{bottom:6.352400pt;}
.y2c_c00415{bottom:6.352533pt;}
.y49_c00415{bottom:50.960000pt;}
.y5_c00415{bottom:74.000000pt;}
.y3f_c00415{bottom:75.265333pt;}
.y3d_c00415{bottom:87.333333pt;}
.y3b_c00415{bottom:102.577333pt;}
.y3a_c00415{bottom:117.821333pt;}
.y39_c00415{bottom:133.065333pt;}
.y37_c00415{bottom:148.309333pt;}
.y36_c00415{bottom:163.553333pt;}
.y34_c00415{bottom:178.797333pt;}
.y32_c00415{bottom:194.041333pt;}
.y31_c00415{bottom:209.285333pt;}
.y2f_c00415{bottom:224.529333pt;}
.y2e_c00415{bottom:239.774667pt;}
.y2d_c00415{bottom:255.018667pt;}
.y2b_c00415{bottom:270.261333pt;}
.y29_c00415{bottom:285.506667pt;}
.y27_c00415{bottom:300.749333pt;}
.y25_c00415{bottom:315.994667pt;}
.y41_c00415{bottom:354.738667pt;}
.y23_c00415{bottom:366.808000pt;}
.y21_c00415{bottom:382.052000pt;}
.y1f_c00415{bottom:397.296000pt;}
.y1d_c00415{bottom:412.541333pt;}
.y1b_c00415{bottom:427.784000pt;}
.y19_c00415{bottom:443.028000pt;}
.y17_c00415{bottom:458.273333pt;}
.y15_c00415{bottom:473.516000pt;}
.y14_c00415{bottom:488.761333pt;}
.y12_c00415{bottom:504.005333pt;}
.y10_c00415{bottom:519.248000pt;}
.ye_c00415{bottom:534.493333pt;}
.yc_c00415{bottom:549.737333pt;}
.ya_c00415{bottom:564.981333pt;}
.y8_c00415{bottom:580.225333pt;}
.y6_c00415{bottom:595.469333pt;}
.y45_c00415{bottom:622.781333pt;}
.y47_c00415{bottom:639.930667pt;}
.y43_c00415{bottom:657.080000pt;}
.y4_c00415{bottom:676.640000pt;}
.y3_c00415{bottom:694.316000pt;}
.y2_c00415{bottom:708.080000pt;}
.y1_c00415{bottom:735.680000pt;}
.hb_c00415{height:11.432000pt;}
.hc_c00415{height:11.433333pt;}
.h5_c00415{height:14.609333pt;}
.ha_c00415{height:14.610667pt;}
.hd_c00415{height:15.245333pt;}
.hf_c00415{height:16.514667pt;}
.h9_c00415{height:22.196098pt;}
.h8_c00415{height:23.997487pt;}
.h7_c00415{height:27.689587pt;}
.h6_c00415{height:29.535250pt;}
.he_c00415{height:38.765112pt;}
.h2_c00415{height:47.109375pt;}
.h3_c00415{height:62.812500pt;}
.h4_c00415{height:86.107500pt;}
.h0_c00415{height:793.840000pt;}
.h1_c00415{height:794.000000pt;}
.w3_c00415{width:930.576000pt;}
.w2_c00415{width:931.501333pt;}
.w0_c00415{width:1122.560000pt;}
.w1_c00415{width:1122.666667pt;}
.x0_c00415{left:0.000000pt;}
.x5_c00415{left:1.851200pt;}
.x6_c00415{left:24.073867pt;}
.x7_c00415{left:35.185200pt;}
.x2_c00415{left:94.560000pt;}
.x4_c00415{left:95.486667pt;}
.xa_c00415{left:179.632933pt;}
.x9_c00415{left:362.970400pt;}
.x8_c00415{left:412.045467pt;}
.x1_c00415{left:561.280000pt;}
.x3_c00415{left:1027.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f1734944249abbf2177e358.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_59041507f3c614bcd81db6d6.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00416;src:url('chunks/assets/font_c1827bdfacbb4f4ff6ea6158.woff2')format("woff");}.ff5_c00416{font-family:ff5_c00416;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00416;src:url('chunks/assets/font_c8630a3622f68da7defb75a8.woff2')format("woff");}.ff6_c00416{font-family:ff6_c00416;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m3_c00416{transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303675,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.303677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303677,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303678,0.000000,0.000000,0.250000,0,0);}
.v1_c00416{vertical-align:-61.920000px;}
.v4_c00416{vertical-align:-8.609100px;}
.v3_c00416{vertical-align:-5.725012px;}
.v2_c00416{vertical-align:-2.846730px;}
.v0_c00416{vertical-align:0.000000px;}
.ls5_c00416{letter-spacing:-0.990040px;}
.ls10_c00416{letter-spacing:-0.964214px;}
.lsf_c00416{letter-spacing:-0.932640px;}
.lsa_c00416{letter-spacing:-0.929783px;}
.ls8_c00416{letter-spacing:-0.688728px;}
.ls6_c00416{letter-spacing:-0.671501px;}
.lse_c00416{letter-spacing:-0.241055px;}
.ls2_c00416{letter-spacing:-0.108000px;}
.ls3_c00416{letter-spacing:0.000000px;}
.lsb_c00416{letter-spacing:0.034436px;}
.ls12_c00416{letter-spacing:0.482107px;}
.ls4_c00416{letter-spacing:0.642810px;}
.ls9_c00416{letter-spacing:0.723164px;}
.lsd_c00416{letter-spacing:1.274147px;}
.ls1_c00416{letter-spacing:1.420492px;}
.ls11_c00416{letter-spacing:1.446322px;}
.lsc_c00416{letter-spacing:1.446329px;}
.ls7_c00416{letter-spacing:1.454918px;}
.ls0_c00416{letter-spacing:725.580000px;}
.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;}
}
.ws1a_c00416{word-spacing:-2.169482px;}
.ws16_c00416{word-spacing:-2.163725px;}
.ws1b_c00416{word-spacing:-1.205268px;}
.ws15_c00416{word-spacing:-0.723164px;}
.ws14_c00416{word-spacing:-0.037306px;}
.ws10_c00416{word-spacing:0.000000px;}
.ws12_c00416{word-spacing:0.162000px;}
.ws18_c00416{word-spacing:0.223834px;}
.ws19_c00416{word-spacing:0.241054px;}
.ws17_c00416{word-spacing:0.241055px;}
.ws11_c00416{word-spacing:0.270000px;}
.ws13_c00416{word-spacing:1.721808px;}
.ws2_c00416{word-spacing:97.428506px;}
.ws3_c00416{word-spacing:141.142007px;}
.ws5_c00416{word-spacing:160.473624px;}
.wsd_c00416{word-spacing:161.231073px;}
.ws1_c00416{word-spacing:172.181250px;}
.ws7_c00416{word-spacing:177.691824px;}
.ws9_c00416{word-spacing:461.723251px;}
.wsc_c00416{word-spacing:497.712733px;}
.wsa_c00416{word-spacing:501.955297px;}
.wsf_c00416{word-spacing:514.930933px;}
.wse_c00416{word-spacing:530.992070px;}
.wsb_c00416{word-spacing:548.210270px;}
.ws4_c00416{word-spacing:598.036297px;}
.ws8_c00416{word-spacing:604.231405px;}
.ws6_c00416{word-spacing:612.416938px;}
.ws0_c00416{word-spacing:653.301577px;}
._b_c00416{margin-left:-3.368696px;}
._6_c00416{margin-left:-2.212222px;}
._1_c00416{margin-left:-1.058400px;}
._0_c00416{width:1.225800px;}
._7_c00416{width:2.410548px;}
._3_c00416{width:3.415461px;}
._16_c00416{width:6.187207px;}
._15_c00416{width:152.277252px;}
._11_c00416{width:168.988048px;}
._e_c00416{width:171.825863px;}
._d_c00416{width:172.945031px;}
._8_c00416{width:186.280534px;}
._a_c00416{width:194.095148px;}
._14_c00416{width:195.256925px;}
._9_c00416{width:346.434971px;}
._5_c00416{width:361.321878px;}
._c_c00416{width:382.654731px;}
._10_c00416{width:403.366197px;}
._12_c00416{width:407.313156px;}
._f_c00416{width:540.411104px;}
._4_c00416{width:545.594594px;}
._13_c00416{width:546.599506px;}
._2_c00416{width:839.970000px;}
.fc1_c00416{color:transparent;}
.fc0_c00416{color:rgb(0,0,0);}
.fs6_c00416{font-size:34.436400px;}
.fs5_c00416{font-size:37.305600px;}
.fs4_c00416{font-size:43.045200px;}
.fs3_c00416{font-size:45.915000px;}
.fs0_c00416{font-size:54.000000px;}
.fs7_c00416{font-size:60.263400px;}
.fs1_c00416{font-size:72.000000px;}
.fs2_c00416{font-size:96.120000px;}
.y0_c00416{bottom:0.000000px;}
.y42_c00416{bottom:3.587400px;}
.y3e_c00416{bottom:3.587550px;}
.y40_c00416{bottom:3.588150px;}
.y46_c00416{bottom:4.304250px;}
.y44_c00416{bottom:4.305300px;}
.y7_c00416{bottom:5.022000px;}
.y25_c00416{bottom:5.022600px;}
.y9_c00416{bottom:5.738400px;}
.y27_c00416{bottom:5.740350px;}
.y36_c00416{bottom:6.455700px;}
.yb_c00416{bottom:6.456150px;}
.y29_c00416{bottom:6.456750px;}
.y1d_c00416{bottom:6.456900px;}
.y17_c00416{bottom:6.457200px;}
.y3c_c00416{bottom:6.457350px;}
.y31_c00416{bottom:6.457500px;}
.y19_c00416{bottom:7.173450px;}
.y38_c00416{bottom:7.173600px;}
.y13_c00416{bottom:7.173750px;}
.y22_c00416{bottom:7.173900px;}
.y15_c00416{bottom:7.174050px;}
.y2e_c00416{bottom:7.174200px;}
.y34_c00416{bottom:7.174350px;}
.yf_c00416{bottom:7.174500px;}
.y1f_c00416{bottom:7.174650px;}
.y11_c00416{bottom:7.174800px;}
.y1b_c00416{bottom:7.175400px;}
.yd_c00416{bottom:7.175550px;}
.y47_c00416{bottom:57.330000px;}
.y5_c00416{bottom:79.830000px;}
.y45_c00416{bottom:81.270000px;}
.y3b_c00416{bottom:95.617500px;}
.y3a_c00416{bottom:112.836000px;}
.y39_c00416{bottom:130.054500px;}
.y37_c00416{bottom:147.273000px;}
.y35_c00416{bottom:164.491500px;}
.y33_c00416{bottom:181.708500px;}
.y32_c00416{bottom:198.927000px;}
.y30_c00416{bottom:216.144000px;}
.y2f_c00416{bottom:233.362500px;}
.y2d_c00416{bottom:250.581000px;}
.y2c_c00416{bottom:267.799500px;}
.y2b_c00416{bottom:285.018000px;}
.y2a_c00416{bottom:302.235000px;}
.y28_c00416{bottom:319.453500px;}
.y26_c00416{bottom:336.670500px;}
.y24_c00416{bottom:353.889000px;}
.y43_c00416{bottom:397.651500px;}
.y23_c00416{bottom:412.000500px;}
.y21_c00416{bottom:429.219000px;}
.y20_c00416{bottom:446.437500px;}
.y1e_c00416{bottom:463.654500px;}
.y1c_c00416{bottom:480.873000px;}
.y1a_c00416{bottom:498.090000px;}
.y18_c00416{bottom:515.310000px;}
.y16_c00416{bottom:532.527000px;}
.y14_c00416{bottom:549.745500px;}
.y12_c00416{bottom:566.964000px;}
.y10_c00416{bottom:584.181000px;}
.ye_c00416{bottom:601.399500px;}
.yc_c00416{bottom:618.616500px;}
.ya_c00416{bottom:635.836500px;}
.y8_c00416{bottom:653.055000px;}
.y6_c00416{bottom:670.272000px;}
.y41_c00416{bottom:701.121000px;}
.y3f_c00416{bottom:720.490500px;}
.y3d_c00416{bottom:739.861500px;}
.y4_c00416{bottom:761.220000px;}
.y3_c00416{bottom:781.110000px;}
.y2_c00416{bottom:796.594500px;}
.y1_c00416{bottom:827.640000px;}
.hd_c00416{height:13.630500px;}
.h7_c00416{height:16.500000px;}
.h5_c00416{height:16.501500px;}
.hc_c00416{height:18.652500px;}
.ha_c00416{height:25.070641px;}
.h9_c00416{height:27.104850px;}
.h8_c00416{height:31.275028px;}
.h6_c00416{height:33.360117px;}
.hb_c00416{height:43.785127px;}
.h2_c00416{height:52.998047px;}
.h3_c00416{height:70.664062px;}
.h4_c00416{height:96.870938px;}
.h0_c00416{height:893.070000px;}
.h1_c00416{height:893.250000px;}
.w3_c00416{width:1047.487500px;}
.w2_c00416{width:1048.360500px;}
.w0_c00416{width:1262.880000px;}
.w1_c00416{width:1263.000000px;}
.x0_c00416{left:0.000000px;}
.x4_c00416{left:1.742850px;}
.x5_c00416{left:22.657800px;}
.x6_c00416{left:33.115200px;}
.x2_c00416{left:106.380000px;}
.x8_c00416{left:255.336300px;}
.x9_c00416{left:420.912750px;}
.x7_c00416{left:474.071700px;}
.x1_c00416{left:631.440000px;}
.xa_c00416{left:1129.590000px;}
.x3_c00416{left:1156.500000px;}
@media print{
.v1_c00416{vertical-align:-55.040000pt;}
.v4_c00416{vertical-align:-7.652533pt;}
.v3_c00416{vertical-align:-5.088899pt;}
.v2_c00416{vertical-align:-2.530427pt;}
.v0_c00416{vertical-align:0.000000pt;}
.ls5_c00416{letter-spacing:-0.880035pt;}
.ls10_c00416{letter-spacing:-0.857079pt;}
.lsf_c00416{letter-spacing:-0.829013pt;}
.lsa_c00416{letter-spacing:-0.826474pt;}
.ls8_c00416{letter-spacing:-0.612203pt;}
.ls6_c00416{letter-spacing:-0.596890pt;}
.lse_c00416{letter-spacing:-0.214271pt;}
.ls2_c00416{letter-spacing:-0.096000pt;}
.ls3_c00416{letter-spacing:0.000000pt;}
.lsb_c00416{letter-spacing:0.030610pt;}
.ls12_c00416{letter-spacing:0.428540pt;}
.ls4_c00416{letter-spacing:0.571387pt;}
.ls9_c00416{letter-spacing:0.642813pt;}
.lsd_c00416{letter-spacing:1.132575pt;}
.ls1_c00416{letter-spacing:1.262659pt;}
.ls11_c00416{letter-spacing:1.285619pt;}
.lsc_c00416{letter-spacing:1.285626pt;}
.ls7_c00416{letter-spacing:1.293261pt;}
.ls0_c00416{letter-spacing:644.960000pt;}
.ws1a_c00416{word-spacing:-1.928429pt;}
.ws16_c00416{word-spacing:-1.923311pt;}
.ws1b_c00416{word-spacing:-1.071349pt;}
.ws15_c00416{word-spacing:-0.642813pt;}
.ws14_c00416{word-spacing:-0.033161pt;}
.ws10_c00416{word-spacing:0.000000pt;}
.ws12_c00416{word-spacing:0.144000pt;}
.ws18_c00416{word-spacing:0.198963pt;}
.ws19_c00416{word-spacing:0.214270pt;}
.ws17_c00416{word-spacing:0.214271pt;}
.ws11_c00416{word-spacing:0.240000pt;}
.ws13_c00416{word-spacing:1.530496pt;}
.ws2_c00416{word-spacing:86.603116pt;}
.ws3_c00416{word-spacing:125.459562pt;}
.ws5_c00416{word-spacing:142.643221pt;}
.wsd_c00416{word-spacing:143.316509pt;}
.ws1_c00416{word-spacing:153.050000pt;}
.ws7_c00416{word-spacing:157.948288pt;}
.ws9_c00416{word-spacing:410.420668pt;}
.wsc_c00416{word-spacing:442.411318pt;}
.wsa_c00416{word-spacing:446.182487pt;}
.wsf_c00416{word-spacing:457.716385pt;}
.wse_c00416{word-spacing:471.992951pt;}
.wsb_c00416{word-spacing:487.298018pt;}
.ws4_c00416{word-spacing:531.587820pt;}
.ws8_c00416{word-spacing:537.094583pt;}
.ws6_c00416{word-spacing:544.370611pt;}
.ws0_c00416{word-spacing:580.712513pt;}
._b_c00416{margin-left:-2.994396pt;}
._6_c00416{margin-left:-1.966420pt;}
._1_c00416{margin-left:-0.940800pt;}
._0_c00416{width:1.089600pt;}
._7_c00416{width:2.142709pt;}
._3_c00416{width:3.035965pt;}
._16_c00416{width:5.499739pt;}
._15_c00416{width:135.357558pt;}
._11_c00416{width:150.211598pt;}
._e_c00416{width:152.734100pt;}
._d_c00416{width:153.728916pt;}
._8_c00416{width:165.582697pt;}
._a_c00416{width:172.529021pt;}
._14_c00416{width:173.561711pt;}
._9_c00416{width:307.942196pt;}
._5_c00416{width:321.175003pt;}
._c_c00416{width:340.137539pt;}
._10_c00416{width:358.547731pt;}
._12_c00416{width:362.056139pt;}
._f_c00416{width:480.365426pt;}
._4_c00416{width:484.972972pt;}
._13_c00416{width:485.866228pt;}
._2_c00416{width:746.640000pt;}
.fs6_c00416{font-size:30.610133pt;}
.fs5_c00416{font-size:33.160533pt;}
.fs4_c00416{font-size:38.262400pt;}
.fs3_c00416{font-size:40.813333pt;}
.fs0_c00416{font-size:48.000000pt;}
.fs7_c00416{font-size:53.567467pt;}
.fs1_c00416{font-size:64.000000pt;}
.fs2_c00416{font-size:85.440000pt;}
.y0_c00416{bottom:0.000000pt;}
.y42_c00416{bottom:3.188800pt;}
.y3e_c00416{bottom:3.188933pt;}
.y40_c00416{bottom:3.189467pt;}
.y46_c00416{bottom:3.826000pt;}
.y44_c00416{bottom:3.826933pt;}
.y7_c00416{bottom:4.464000pt;}
.y25_c00416{bottom:4.464533pt;}
.y9_c00416{bottom:5.100800pt;}
.y27_c00416{bottom:5.102533pt;}
.y36_c00416{bottom:5.738400pt;}
.yb_c00416{bottom:5.738800pt;}
.y29_c00416{bottom:5.739333pt;}
.y1d_c00416{bottom:5.739467pt;}
.y17_c00416{bottom:5.739733pt;}
.y3c_c00416{bottom:5.739867pt;}
.y31_c00416{bottom:5.740000pt;}
.y19_c00416{bottom:6.376400pt;}
.y38_c00416{bottom:6.376533pt;}
.y13_c00416{bottom:6.376667pt;}
.y22_c00416{bottom:6.376800pt;}
.y15_c00416{bottom:6.376933pt;}
.y2e_c00416{bottom:6.377067pt;}
.y34_c00416{bottom:6.377200pt;}
.yf_c00416{bottom:6.377333pt;}
.y1f_c00416{bottom:6.377467pt;}
.y11_c00416{bottom:6.377600pt;}
.y1b_c00416{bottom:6.378133pt;}
.yd_c00416{bottom:6.378267pt;}
.y47_c00416{bottom:50.960000pt;}
.y5_c00416{bottom:70.960000pt;}
.y45_c00416{bottom:72.240000pt;}
.y3b_c00416{bottom:84.993333pt;}
.y3a_c00416{bottom:100.298667pt;}
.y39_c00416{bottom:115.604000pt;}
.y37_c00416{bottom:130.909333pt;}
.y35_c00416{bottom:146.214667pt;}
.y33_c00416{bottom:161.518667pt;}
.y32_c00416{bottom:176.824000pt;}
.y30_c00416{bottom:192.128000pt;}
.y2f_c00416{bottom:207.433333pt;}
.y2d_c00416{bottom:222.738667pt;}
.y2c_c00416{bottom:238.044000pt;}
.y2b_c00416{bottom:253.349333pt;}
.y2a_c00416{bottom:268.653333pt;}
.y28_c00416{bottom:283.958667pt;}
.y26_c00416{bottom:299.262667pt;}
.y24_c00416{bottom:314.568000pt;}
.y43_c00416{bottom:353.468000pt;}
.y23_c00416{bottom:366.222667pt;}
.y21_c00416{bottom:381.528000pt;}
.y20_c00416{bottom:396.833333pt;}
.y1e_c00416{bottom:412.137333pt;}
.y1c_c00416{bottom:427.442667pt;}
.y1a_c00416{bottom:442.746667pt;}
.y18_c00416{bottom:458.053333pt;}
.y16_c00416{bottom:473.357333pt;}
.y14_c00416{bottom:488.662667pt;}
.y12_c00416{bottom:503.968000pt;}
.y10_c00416{bottom:519.272000pt;}
.ye_c00416{bottom:534.577333pt;}
.yc_c00416{bottom:549.881333pt;}
.ya_c00416{bottom:565.188000pt;}
.y8_c00416{bottom:580.493333pt;}
.y6_c00416{bottom:595.797333pt;}
.y41_c00416{bottom:623.218667pt;}
.y3f_c00416{bottom:640.436000pt;}
.y3d_c00416{bottom:657.654667pt;}
.y4_c00416{bottom:676.640000pt;}
.y3_c00416{bottom:694.320000pt;}
.y2_c00416{bottom:708.084000pt;}
.y1_c00416{bottom:735.680000pt;}
.hd_c00416{height:12.116000pt;}
.h7_c00416{height:14.666667pt;}
.h5_c00416{height:14.668000pt;}
.hc_c00416{height:16.580000pt;}
.ha_c00416{height:22.285014pt;}
.h9_c00416{height:24.093200pt;}
.h8_c00416{height:27.800025pt;}
.h6_c00416{height:29.653437pt;}
.hb_c00416{height:38.920112pt;}
.h2_c00416{height:47.109375pt;}
.h3_c00416{height:62.812500pt;}
.h4_c00416{height:86.107500pt;}
.h0_c00416{height:793.840000pt;}
.h1_c00416{height:794.000000pt;}
.w3_c00416{width:931.100000pt;}
.w2_c00416{width:931.876000pt;}
.w0_c00416{width:1122.560000pt;}
.w1_c00416{width:1122.666667pt;}
.x0_c00416{left:0.000000pt;}
.x4_c00416{left:1.549200pt;}
.x5_c00416{left:20.140267pt;}
.x6_c00416{left:29.435733pt;}
.x2_c00416{left:94.560000pt;}
.x8_c00416{left:226.965600pt;}
.x9_c00416{left:374.144667pt;}
.x7_c00416{left:421.397067pt;}
.x1_c00416{left:561.280000pt;}
.xa_c00416{left:1004.080000pt;}
.x3_c00416{left:1028.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_c00417 {
    display:none;
  }
  .loading-indicator_c00417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00417 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00417 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00417" -> "#page-container .classname_c00417")
 */
.pf_c00417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00417 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00417 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00417 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00417 {overflow:visible;}
  }
}
.c_c00417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00417 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00417:after { /* webkit #35443 */
  content: '';
}
.t_c00417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00417 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00417 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00417 { /* info for Javascript */
  display:none;
}
.l_c00417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00417:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00417;src:url('chunks/assets/font_cba0931944926950290c72c7.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_0f59edd643cd6fabab077d97.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00417;src:url('chunks/assets/font_a770cb793ca2ec4b6f143238.woff2')format("woff");}.ff5_c00417{font-family:ff5_c00417;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00417;src:url('chunks/assets/font_c8630a3622f68da7defb75a8.woff2')format("woff");}.ff6_c00417{font-family:ff6_c00417;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.296722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296722,0.000000,0.000000,0.250000,0,0);}
.v1_c00417{vertical-align:-61.938000px;}
.v4_c00417{vertical-align:-8.514150px;}
.v3_c00417{vertical-align:-5.661890px;}
.v2_c00417{vertical-align:-2.815333px;}
.v0_c00417{vertical-align:0.000000px;}
.ls5_c00417{letter-spacing:-0.979124px;}
.ls12_c00417{letter-spacing:-0.953578px;}
.lsf_c00417{letter-spacing:-0.922365px;}
.ls9_c00417{letter-spacing:-0.919528px;}
.ls11_c00417{letter-spacing:-0.700997px;}
.ls7_c00417{letter-spacing:-0.681132px;}
.ls6_c00417{letter-spacing:-0.664103px;}
.ls10_c00417{letter-spacing:-0.258262px;}
.lse_c00417{letter-spacing:-0.238396px;}
.ls3_c00417{letter-spacing:0.000000px;}
.lsa_c00417{letter-spacing:0.034057px;}
.ls4_c00417{letter-spacing:0.635720px;}
.ls8_c00417{letter-spacing:0.715189px;}
.lsd_c00417{letter-spacing:1.260094px;}
.ls1_c00417{letter-spacing:1.404830px;}
.ls2_c00417{letter-spacing:1.420442px;}
.ls13_c00417{letter-spacing:1.430366px;}
.lsc_c00417{letter-spacing:1.430377px;}
.lsb_c00417{letter-spacing:1.438889px;}
.ls0_c00417{letter-spacing:1144.260000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16_c00417{word-spacing:-2.145550px;}
.ws11_c00417{word-spacing:-2.139887px;}
.ws10_c00417{word-spacing:-0.715189px;}
.ws14_c00417{word-spacing:-0.442735px;}
.wsd_c00417{word-spacing:-0.162000px;}
.wsf_c00417{word-spacing:-0.036895px;}
.wsc_c00417{word-spacing:0.000000px;}
.ws13_c00417{word-spacing:0.221368px;}
.ws15_c00417{word-spacing:0.238394px;}
.ws12_c00417{word-spacing:0.238396px;}
.wse_c00417{word-spacing:1.702824px;}
.ws2_c00417{word-spacing:67.529743px;}
.ws3_c00417{word-spacing:94.376387px;}
.ws5_c00417{word-spacing:119.198100px;}
.ws1_c00417{word-spacing:170.282250px;}
.ws8_c00417{word-spacing:519.056641px;}
.wsb_c00417{word-spacing:571.677493px;}
.ws9_c00417{word-spacing:575.873266px;}
.wsa_c00417{word-spacing:604.589791px;}
.ws4_c00417{word-spacing:653.866286px;}
.ws7_c00417{word-spacing:659.993068px;}
.ws6_c00417{word-spacing:668.088322px;}
.ws0_c00417{word-spacing:765.293840px;}
._6_c00417{margin-left:-3.000954px;}
._1_c00417{margin-left:-1.271441px;}
._2_c00417{width:1.447400px;}
._3_c00417{width:2.907572px;}
._d_c00417{width:5.430105px;}
._8_c00417{width:266.640120px;}
._7_c00417{width:404.623058px;}
._5_c00417{width:431.130454px;}
._9_c00417{width:451.508736px;}
._c_c00417{width:457.644910px;}
._b_c00417{width:461.538993px;}
._a_c00417{width:595.701044px;}
._4_c00417{width:628.754991px;}
._0_c00417{width:839.970000px;}
.fc1_c00417{color:transparent;}
.fc0_c00417{color:rgb(0,0,0);}
.fs6_c00417{font-size:34.056600px;}
.fs5_c00417{font-size:36.894600px;}
.fs4_c00417{font-size:42.570600px;}
.fs3_c00417{font-size:45.408600px;}
.fs0_c00417{font-size:54.000000px;}
.fs7_c00417{font-size:59.598600px;}
.fs1_c00417{font-size:72.000000px;}
.fs2_c00417{font-size:96.120000px;}
.y0_c00417{bottom:0.000000px;}
.y3e_c00417{bottom:2.837400px;}
.y3c_c00417{bottom:2.838600px;}
.y44_c00417{bottom:3.546900px;}
.y42_c00417{bottom:3.547200px;}
.y40_c00417{bottom:3.547350px;}
.y24_c00417{bottom:4.965450px;}
.y7_c00417{bottom:4.967100px;}
.y26_c00417{bottom:5.676300px;}
.y9_c00417{bottom:5.676450px;}
.y16_c00417{bottom:6.384750px;}
.y28_c00417{bottom:6.385500px;}
.yb_c00417{bottom:6.385800px;}
.y32_c00417{bottom:6.385950px;}
.y22_c00417{bottom:6.386550px;}
.y2e_c00417{bottom:7.094400px;}
.y12_c00417{bottom:7.094550px;}
.y20_c00417{bottom:7.094700px;}
.yf_c00417{bottom:7.094850px;}
.y1d_c00417{bottom:7.095000px;}
.yd_c00417{bottom:7.095150px;}
.y34_c00417{bottom:7.095300px;}
.y1a_c00417{bottom:7.095450px;}
.y18_c00417{bottom:7.095600px;}
.y30_c00417{bottom:7.095750px;}
.y14_c00417{bottom:7.095900px;}
.y2c_c00417{bottom:7.096050px;}
.y45_c00417{bottom:57.330000px;}
.y5_c00417{bottom:86.580000px;}
.y3b_c00417{bottom:88.014000px;}
.y3a_c00417{bottom:101.496000px;}
.y39_c00417{bottom:118.524000px;}
.y38_c00417{bottom:135.552000px;}
.y37_c00417{bottom:152.580000px;}
.y36_c00417{bottom:169.608000px;}
.y35_c00417{bottom:186.636000px;}
.y33_c00417{bottom:203.664000px;}
.y31_c00417{bottom:220.692000px;}
.y2f_c00417{bottom:237.720000px;}
.y2d_c00417{bottom:254.749500px;}
.y2b_c00417{bottom:271.776000px;}
.y2a_c00417{bottom:288.805500px;}
.y29_c00417{bottom:305.833500px;}
.y27_c00417{bottom:322.861500px;}
.y25_c00417{bottom:339.889500px;}
.y23_c00417{bottom:356.919000px;}
.y3d_c00417{bottom:400.198500px;}
.y21_c00417{bottom:413.677500px;}
.y1f_c00417{bottom:430.707000px;}
.y1e_c00417{bottom:447.735000px;}
.y1c_c00417{bottom:464.763000px;}
.y1b_c00417{bottom:481.791000px;}
.y19_c00417{bottom:498.819000px;}
.y17_c00417{bottom:515.847000px;}
.y15_c00417{bottom:532.876500px;}
.y13_c00417{bottom:549.903000px;}
.y11_c00417{bottom:566.932500px;}
.y10_c00417{bottom:583.960500px;}
.ye_c00417{bottom:600.988500px;}
.yc_c00417{bottom:618.016500px;}
.ya_c00417{bottom:635.044500px;}
.y8_c00417{bottom:652.072500px;}
.y6_c00417{bottom:669.100500px;}
.y43_c00417{bottom:699.610500px;}
.y41_c00417{bottom:718.767000px;}
.y3f_c00417{bottom:737.923500px;}
.y4_c00417{bottom:761.220000px;}
.y3_c00417{bottom:781.105500px;}
.y2_c00417{bottom:796.590000px;}
.y1_c00417{bottom:827.640000px;}
.hb_c00417{height:12.771000px;}
.ha_c00417{height:16.317000px;}
.h5_c00417{height:16.318500px;}
.hd_c00417{height:18.447000px;}
.h9_c00417{height:24.794136px;}
.h8_c00417{height:26.806233px;}
.hc_c00417{height:26.860278px;}
.h7_c00417{height:30.930202px;}
.h6_c00417{height:32.992186px;}
.he_c00417{height:43.302108px;}
.h2_c00417{height:52.998047px;}
.h3_c00417{height:70.664062px;}
.h4_c00417{height:96.870938px;}
.h0_c00417{height:893.070000px;}
.h1_c00417{height:893.250000px;}
.w3_c00417{width:1047.583500px;}
.w2_c00417{width:1048.425000px;}
.w0_c00417{width:1262.880000px;}
.w1_c00417{width:1263.000000px;}
.x0_c00417{left:0.000000px;}
.x4_c00417{left:1.683300px;}
.x5_c00417{left:21.894000px;}
.x6_c00417{left:31.999200px;}
.x2_c00417{left:106.380000px;}
.x8_c00417{left:217.263300px;}
.x9_c00417{left:385.684950px;}
.x7_c00417{left:475.790700px;}
.x1_c00417{left:631.440000px;}
.x3_c00417{left:1156.500000px;}
@media print{
.v1_c00417{vertical-align:-55.056000pt;}
.v4_c00417{vertical-align:-7.568133pt;}
.v3_c00417{vertical-align:-5.032791pt;}
.v2_c00417{vertical-align:-2.502518pt;}
.v0_c00417{vertical-align:0.000000pt;}
.ls5_c00417{letter-spacing:-0.870332pt;}
.ls12_c00417{letter-spacing:-0.847625pt;}
.lsf_c00417{letter-spacing:-0.819880pt;}
.ls9_c00417{letter-spacing:-0.817358pt;}
.ls11_c00417{letter-spacing:-0.623109pt;}
.ls7_c00417{letter-spacing:-0.605451pt;}
.ls6_c00417{letter-spacing:-0.590314pt;}
.ls10_c00417{letter-spacing:-0.229566pt;}
.lse_c00417{letter-spacing:-0.211908pt;}
.ls3_c00417{letter-spacing:0.000000pt;}
.lsa_c00417{letter-spacing:0.030273pt;}
.ls4_c00417{letter-spacing:0.565085pt;}
.ls8_c00417{letter-spacing:0.635723pt;}
.lsd_c00417{letter-spacing:1.120084pt;}
.ls1_c00417{letter-spacing:1.248738pt;}
.ls2_c00417{letter-spacing:1.262615pt;}
.ls13_c00417{letter-spacing:1.271437pt;}
.lsc_c00417{letter-spacing:1.271446pt;}
.lsb_c00417{letter-spacing:1.279013pt;}
.ls0_c00417{letter-spacing:1017.120000pt;}
.ws16_c00417{word-spacing:-1.907155pt;}
.ws11_c00417{word-spacing:-1.902122pt;}
.ws10_c00417{word-spacing:-0.635723pt;}
.ws14_c00417{word-spacing:-0.393542pt;}
.wsd_c00417{word-spacing:-0.144000pt;}
.wsf_c00417{word-spacing:-0.032795pt;}
.wsc_c00417{word-spacing:0.000000pt;}
.ws13_c00417{word-spacing:0.196771pt;}
.ws15_c00417{word-spacing:0.211906pt;}
.ws12_c00417{word-spacing:0.211908pt;}
.wse_c00417{word-spacing:1.513621pt;}
.ws2_c00417{word-spacing:60.026438pt;}
.ws3_c00417{word-spacing:83.890122pt;}
.ws5_c00417{word-spacing:105.953867pt;}
.ws1_c00417{word-spacing:151.362000pt;}
.ws8_c00417{word-spacing:461.383681pt;}
.wsb_c00417{word-spacing:508.157772pt;}
.ws9_c00417{word-spacing:511.887348pt;}
.wsa_c00417{word-spacing:537.413148pt;}
.ws4_c00417{word-spacing:581.214476pt;}
.ws7_c00417{word-spacing:586.660505pt;}
.ws6_c00417{word-spacing:593.856286pt;}
.ws0_c00417{word-spacing:680.261191pt;}
._6_c00417{margin-left:-2.667515pt;}
._1_c00417{margin-left:-1.130170pt;}
._2_c00417{width:1.286578pt;}
._3_c00417{width:2.584508pt;}
._d_c00417{width:4.826760pt;}
._8_c00417{width:237.013440pt;}
._7_c00417{width:359.664940pt;}
._5_c00417{width:383.227071pt;}
._9_c00417{width:401.341099pt;}
._c_c00417{width:406.795476pt;}
._b_c00417{width:410.256883pt;}
._a_c00417{width:529.512039pt;}
._4_c00417{width:558.893325pt;}
._0_c00417{width:746.640000pt;}
.fs6_c00417{font-size:30.272533pt;}
.fs5_c00417{font-size:32.795200pt;}
.fs4_c00417{font-size:37.840533pt;}
.fs3_c00417{font-size:40.363200pt;}
.fs0_c00417{font-size:48.000000pt;}
.fs7_c00417{font-size:52.976533pt;}
.fs1_c00417{font-size:64.000000pt;}
.fs2_c00417{font-size:85.440000pt;}
.y0_c00417{bottom:0.000000pt;}
.y3e_c00417{bottom:2.522133pt;}
.y3c_c00417{bottom:2.523200pt;}
.y44_c00417{bottom:3.152800pt;}
.y42_c00417{bottom:3.153067pt;}
.y40_c00417{bottom:3.153200pt;}
.y24_c00417{bottom:4.413733pt;}
.y7_c00417{bottom:4.415200pt;}
.y26_c00417{bottom:5.045600pt;}
.y9_c00417{bottom:5.045733pt;}
.y16_c00417{bottom:5.675333pt;}
.y28_c00417{bottom:5.676000pt;}
.yb_c00417{bottom:5.676267pt;}
.y32_c00417{bottom:5.676400pt;}
.y22_c00417{bottom:5.676933pt;}
.y2e_c00417{bottom:6.306133pt;}
.y12_c00417{bottom:6.306267pt;}
.y20_c00417{bottom:6.306400pt;}
.yf_c00417{bottom:6.306533pt;}
.y1d_c00417{bottom:6.306667pt;}
.yd_c00417{bottom:6.306800pt;}
.y34_c00417{bottom:6.306933pt;}
.y1a_c00417{bottom:6.307067pt;}
.y18_c00417{bottom:6.307200pt;}
.y30_c00417{bottom:6.307333pt;}
.y14_c00417{bottom:6.307467pt;}
.y2c_c00417{bottom:6.307600pt;}
.y45_c00417{bottom:50.960000pt;}
.y5_c00417{bottom:76.960000pt;}
.y3b_c00417{bottom:78.234667pt;}
.y3a_c00417{bottom:90.218667pt;}
.y39_c00417{bottom:105.354667pt;}
.y38_c00417{bottom:120.490667pt;}
.y37_c00417{bottom:135.626667pt;}
.y36_c00417{bottom:150.762667pt;}
.y35_c00417{bottom:165.898667pt;}
.y33_c00417{bottom:181.034667pt;}
.y31_c00417{bottom:196.170667pt;}
.y2f_c00417{bottom:211.306667pt;}
.y2d_c00417{bottom:226.444000pt;}
.y2b_c00417{bottom:241.578667pt;}
.y2a_c00417{bottom:256.716000pt;}
.y29_c00417{bottom:271.852000pt;}
.y27_c00417{bottom:286.988000pt;}
.y25_c00417{bottom:302.124000pt;}
.y23_c00417{bottom:317.261333pt;}
.y3d_c00417{bottom:355.732000pt;}
.y21_c00417{bottom:367.713333pt;}
.y1f_c00417{bottom:382.850667pt;}
.y1e_c00417{bottom:397.986667pt;}
.y1c_c00417{bottom:413.122667pt;}
.y1b_c00417{bottom:428.258667pt;}
.y19_c00417{bottom:443.394667pt;}
.y17_c00417{bottom:458.530667pt;}
.y15_c00417{bottom:473.668000pt;}
.y13_c00417{bottom:488.802667pt;}
.y11_c00417{bottom:503.940000pt;}
.y10_c00417{bottom:519.076000pt;}
.ye_c00417{bottom:534.212000pt;}
.yc_c00417{bottom:549.348000pt;}
.ya_c00417{bottom:564.484000pt;}
.y8_c00417{bottom:579.620000pt;}
.y6_c00417{bottom:594.756000pt;}
.y43_c00417{bottom:621.876000pt;}
.y41_c00417{bottom:638.904000pt;}
.y3f_c00417{bottom:655.932000pt;}
.y4_c00417{bottom:676.640000pt;}
.y3_c00417{bottom:694.316000pt;}
.y2_c00417{bottom:708.080000pt;}
.y1_c00417{bottom:735.680000pt;}
.hb_c00417{height:11.352000pt;}
.ha_c00417{height:14.504000pt;}
.h5_c00417{height:14.505333pt;}
.hd_c00417{height:16.397333pt;}
.h9_c00417{height:22.039232pt;}
.h8_c00417{height:23.827762pt;}
.hc_c00417{height:23.875802pt;}
.h7_c00417{height:27.493512pt;}
.h6_c00417{height:29.326387pt;}
.he_c00417{height:38.490762pt;}
.h2_c00417{height:47.109375pt;}
.h3_c00417{height:62.812500pt;}
.h4_c00417{height:86.107500pt;}
.h0_c00417{height:793.840000pt;}
.h1_c00417{height:794.000000pt;}
.w3_c00417{width:931.185333pt;}
.w2_c00417{width:931.933333pt;}
.w0_c00417{width:1122.560000pt;}
.w1_c00417{width:1122.666667pt;}
.x0_c00417{left:0.000000pt;}
.x4_c00417{left:1.496267pt;}
.x5_c00417{left:19.461333pt;}
.x6_c00417{left:28.443733pt;}
.x2_c00417{left:94.560000pt;}
.x8_c00417{left:193.122933pt;}
.x9_c00417{left:342.831067pt;}
.x7_c00417{left:422.925067pt;}
.x1_c00417{left:561.280000pt;}
.x3_c00417{left:1028.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_668bc000da23a127c3fc214d.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_83357bba17dc4113e57167c4.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_118ca97baf0760d07b18271d.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00418;src:url('chunks/assets/font_c8630a3622f68da7defb75a8.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2_c00418{transform:matrix(0.356849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356849,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.356850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356850,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.356851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356851,0.000000,0.000000,0.250000,0,0);}
.v1_c00418{vertical-align:-61.920000px;}
.v4_c00418{vertical-align:-8.595450px;}
.v3_c00418{vertical-align:-5.715994px;}
.v2_c00418{vertical-align:-2.888071px;}
.v0_c00418{vertical-align:0.000000px;}
.ls5_c00418{letter-spacing:-0.988480px;}
.ls12_c00418{letter-spacing:-0.962688px;}
.ls10_c00418{letter-spacing:-0.931170px;}
.lsa_c00418{letter-spacing:-0.928309px;}
.lsc_c00418{letter-spacing:-0.790781px;}
.ls8_c00418{letter-spacing:-0.687636px;}
.ls6_c00418{letter-spacing:-0.670442px;}
.ls11_c00418{letter-spacing:-0.335221px;}
.lsf_c00418{letter-spacing:-0.240673px;}
.ls2_c00418{letter-spacing:-0.108000px;}
.ls3_c00418{letter-spacing:0.000000px;}
.lsb_c00418{letter-spacing:0.034382px;}
.ls4_c00418{letter-spacing:0.641794px;}
.ls9_c00418{letter-spacing:0.722018px;}
.lse_c00418{letter-spacing:1.272127px;}
.ls1_c00418{letter-spacing:1.418254px;}
.ls13_c00418{letter-spacing:1.444032px;}
.lsd_c00418{letter-spacing:1.444036px;}
.ls7_c00418{letter-spacing:1.452625px;}
.ls0_c00418{letter-spacing:725.580000px;}
.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;}
}
.ws2f_c00418{word-spacing:-2.166048px;}
.ws2c_c00418{word-spacing:-2.160314px;}
.ws2b_c00418{word-spacing:-0.722018px;}
.ws2a_c00418{word-spacing:-0.037247px;}
.ws26_c00418{word-spacing:0.000000px;}
.ws28_c00418{word-spacing:0.162000px;}
.ws2e_c00418{word-spacing:0.223481px;}
.ws2d_c00418{word-spacing:0.240673px;}
.ws27_c00418{word-spacing:0.270000px;}
.ws29_c00418{word-spacing:1.719096px;}
.ws16_c00418{word-spacing:29.171694px;}
.ws19_c00418{word-spacing:62.875936px;}
.ws18_c00418{word-spacing:63.546765px;}
.ws11_c00418{word-spacing:68.546995px;}
.ws23_c00418{word-spacing:71.410999px;}
.ws25_c00418{word-spacing:75.007606px;}
.wsb_c00418{word-spacing:80.865994px;}
.ws9_c00418{word-spacing:82.870453px;}
.ws24_c00418{word-spacing:82.873891px;}
.wsd_c00418{word-spacing:83.604167px;}
.ws2_c00418{word-spacing:85.782890px;}
.ws12_c00418{word-spacing:89.336450px;}
.ws17_c00418{word-spacing:89.876528px;}
.ws15_c00418{word-spacing:91.455588px;}
.ws1f_c00418{word-spacing:92.200729px;}
.ws1e_c00418{word-spacing:94.319592px;}
.ws3_c00418{word-spacing:95.065008px;}
.ws1c_c00418{word-spacing:100.051038px;}
.ws5_c00418{word-spacing:102.928795px;}
.ws1a_c00418{word-spacing:103.657844px;}
.wsc_c00418{word-spacing:108.646488px;}
.ws13_c00418{word-spacing:108.656803px;}
.ws1_c00418{word-spacing:114.606000px;}
.wsf_c00418{word-spacing:120.105942px;}
.ws7_c00418{word-spacing:120.109380px;}
.ws22_c00418{word-spacing:137.296842px;}
.ws1d_c00418{word-spacing:369.294914px;}
.wsa_c00418{word-spacing:380.778435px;}
.wse_c00418{word-spacing:426.654071px;}
.ws14_c00418{word-spacing:433.901754px;}
.ws20_c00418{word-spacing:455.328492px;}
.ws10_c00418{word-spacing:455.644805px;}
.ws21_c00418{word-spacing:467.128326px;}
.ws8_c00418{word-spacing:511.577117px;}
.ws4_c00418{word-spacing:516.875352px;}
.ws1b_c00418{word-spacing:534.066252px;}
.ws6_c00418{word-spacing:548.424092px;}
.ws0_c00418{word-spacing:589.235288px;}
._21_c00418{margin-left:-3.213808px;}
._10_c00418{margin-left:-2.190112px;}
._1_c00418{margin-left:-1.058400px;}
._0_c00418{width:1.225800px;}
._1e_c00418{width:2.270161px;}
._8_c00418{width:3.406220px;}
._3b_c00418{width:6.044599px;}
._b_c00418{width:74.320818px;}
._2c_c00418{width:77.887392px;}
._2d_c00418{width:79.996134px;}
._1f_c00418{width:83.729998px;}
._c_c00418{width:85.789500px;}
._32_c00418{width:87.144935px;}
._31_c00418{width:88.645185px;}
._e_c00418{width:91.518387px;}
._13_c00418{width:94.030993px;}
._25_c00418{width:95.101668px;}
._27_c00418{width:98.068733px;}
._15_c00418{width:99.253606px;}
._1b_c00418{width:100.348652px;}
._33_c00418{width:101.730932px;}
._11_c00418{width:102.924082px;}
._d_c00418{width:106.547584px;}
._1c_c00418{width:108.571452px;}
._12_c00418{width:111.312062px;}
._23_c00418{width:112.483005px;}
._a_c00418{width:114.442533px;}
._30_c00418{width:115.934099px;}
._4_c00418{width:117.471150px;}
._36_c00418{width:119.210656px;}
._1a_c00418{width:120.687932px;}
._16_c00418{width:122.699838px;}
._39_c00418{width:123.744747px;}
._28_c00418{width:125.823415px;}
._5_c00418{width:128.927166px;}
._14_c00418{width:131.170316px;}
._18_c00418{width:132.174429px;}
._19_c00418{width:134.432838px;}
._22_c00418{width:137.702202px;}
._34_c00418{width:140.334979px;}
._3_c00418{width:142.509150px;}
._7_c00418{width:144.005850px;}
._17_c00418{width:145.892292px;}
._6_c00418{width:148.987800px;}
._24_c00418{width:151.476311px;}
._2a_c00418{width:157.245176px;}
._20_c00418{width:169.464276px;}
._1d_c00418{width:191.110983px;}
._35_c00418{width:265.616344px;}
._2b_c00418{width:288.055754px;}
._2e_c00418{width:292.457063px;}
._3a_c00418{width:303.929077px;}
._f_c00418{width:317.806800px;}
._26_c00418{width:319.586945px;}
._38_c00418{width:322.437554px;}
._29_c00418{width:384.826448px;}
._37_c00418{width:459.331808px;}
._2f_c00418{width:505.728470px;}
._9_c00418{width:513.187892px;}
._2_c00418{width:839.970000px;}
.fc1_c00418{color:transparent;}
.fc0_c00418{color:rgb(0,0,0);}
.fs6_c00418{font-size:34.381800px;}
.fs5_c00418{font-size:37.246800px;}
.fs4_c00418{font-size:42.977400px;}
.fs3_c00418{font-size:45.842400px;}
.fs0_c00418{font-size:54.000000px;}
.fs7_c00418{font-size:60.168000px;}
.fs1_c00418{font-size:72.000000px;}
.fs2_c00418{font-size:96.120000px;}
.y0_c00418{bottom:0.000000px;}
.y40_c00418{bottom:3.580650px;}
.y42_c00418{bottom:3.580950px;}
.y3e_c00418{bottom:3.581250px;}
.y46_c00418{bottom:4.297800px;}
.y44_c00418{bottom:4.298400px;}
.y7_c00418{bottom:5.013900px;}
.y22_c00418{bottom:5.014650px;}
.y9_c00418{bottom:5.729250px;}
.y24_c00418{bottom:5.731650px;}
.y1b_c00418{bottom:6.445650px;}
.y3c_c00418{bottom:6.445800px;}
.y32_c00418{bottom:6.446100px;}
.yb_c00418{bottom:6.446250px;}
.y36_c00418{bottom:6.446400px;}
.y20_c00418{bottom:6.446550px;}
.y17_c00418{bottom:6.446850px;}
.y26_c00418{bottom:6.447000px;}
.y3a_c00418{bottom:7.161600px;}
.y30_c00418{bottom:7.161750px;}
.y13_c00418{bottom:7.161900px;}
.yf_c00418{bottom:7.162200px;}
.y15_c00418{bottom:7.162500px;}
.y2e_c00418{bottom:7.162650px;}
.y11_c00418{bottom:7.162800px;}
.y2a_c00418{bottom:7.162950px;}
.yd_c00418{bottom:7.163100px;}
.y2c_c00418{bottom:7.163550px;}
.y28_c00418{bottom:7.164000px;}
.y47_c00418{bottom:57.330000px;}
.y5_c00418{bottom:78.750000px;}
.y45_c00418{bottom:80.188500px;}
.y3b_c00418{bottom:94.515000px;}
.y39_c00418{bottom:111.706500px;}
.y38_c00418{bottom:128.896500px;}
.y37_c00418{bottom:146.088000px;}
.y35_c00418{bottom:163.278000px;}
.y34_c00418{bottom:180.469500px;}
.y33_c00418{bottom:197.659500px;}
.y31_c00418{bottom:214.851000px;}
.y2f_c00418{bottom:232.042500px;}
.y2d_c00418{bottom:249.232500px;}
.y2b_c00418{bottom:266.422500px;}
.y29_c00418{bottom:283.614000px;}
.y27_c00418{bottom:300.804000px;}
.y25_c00418{bottom:317.995500px;}
.y23_c00418{bottom:335.185500px;}
.y21_c00418{bottom:352.377000px;}
.y43_c00418{bottom:396.070500px;}
.y1f_c00418{bottom:410.397000px;}
.y1e_c00418{bottom:427.588500px;}
.y1d_c00418{bottom:444.778500px;}
.y1c_c00418{bottom:461.970000px;}
.y1a_c00418{bottom:479.161500px;}
.y19_c00418{bottom:496.351500px;}
.y18_c00418{bottom:513.543000px;}
.y16_c00418{bottom:530.733000px;}
.y14_c00418{bottom:547.924500px;}
.y12_c00418{bottom:565.116000px;}
.y10_c00418{bottom:582.306000px;}
.ye_c00418{bottom:599.497500px;}
.yc_c00418{bottom:616.687500px;}
.ya_c00418{bottom:633.879000px;}
.y8_c00418{bottom:651.070500px;}
.y6_c00418{bottom:668.260500px;}
.y3f_c00418{bottom:699.061500px;}
.y41_c00418{bottom:718.401000px;}
.y3d_c00418{bottom:737.740500px;}
.y4_c00418{bottom:761.220000px;}
.y3_c00418{bottom:781.110000px;}
.y2_c00418{bottom:796.594500px;}
.y1_c00418{bottom:827.640000px;}
.he_c00418{height:13.609500px;}
.h5_c00418{height:16.474500px;}
.ha_c00418{height:16.476000px;}
.hb_c00418{height:18.622500px;}
.hd_c00418{height:18.624000px;}
.h9_c00418{height:25.030891px;}
.h8_c00418{height:27.062128px;}
.h7_c00418{height:31.225767px;}
.h6_c00418{height:33.307369px;}
.hc_c00418{height:43.715812px;}
.h2_c00418{height:52.998047px;}
.h3_c00418{height:70.664062px;}
.h4_c00418{height:96.870938px;}
.h0_c00418{height:893.070000px;}
.h1_c00418{height:893.250000px;}
.w3_c00418{width:1046.965500px;}
.w2_c00418{width:1047.987000px;}
.w0_c00418{width:1262.880000px;}
.w1_c00418{width:1263.000000px;}
.x0_c00418{left:0.000000px;}
.x5_c00418{left:2.045700px;}
.x6_c00418{left:26.583900px;}
.x7_c00418{left:38.853150px;}
.x2_c00418{left:106.380000px;}
.x4_c00418{left:107.401500px;}
.xa_c00418{left:151.320000px;}
.x9_c00418{left:409.993800px;}
.x8_c00418{left:465.204750px;}
.x1_c00418{left:631.440000px;}
.xb_c00418{left:1129.590000px;}
.x3_c00418{left:1156.410000px;}
@media print{
.v1_c00418{vertical-align:-55.040000pt;}
.v4_c00418{vertical-align:-7.640400pt;}
.v3_c00418{vertical-align:-5.080884pt;}
.v2_c00418{vertical-align:-2.567174pt;}
.v0_c00418{vertical-align:0.000000pt;}
.ls5_c00418{letter-spacing:-0.878649pt;}
.ls12_c00418{letter-spacing:-0.855723pt;}
.ls10_c00418{letter-spacing:-0.827707pt;}
.lsa_c00418{letter-spacing:-0.825163pt;}
.lsc_c00418{letter-spacing:-0.702917pt;}
.ls8_c00418{letter-spacing:-0.611232pt;}
.ls6_c00418{letter-spacing:-0.595949pt;}
.ls11_c00418{letter-spacing:-0.297974pt;}
.lsf_c00418{letter-spacing:-0.213931pt;}
.ls2_c00418{letter-spacing:-0.096000pt;}
.ls3_c00418{letter-spacing:0.000000pt;}
.lsb_c00418{letter-spacing:0.030562pt;}
.ls4_c00418{letter-spacing:0.570483pt;}
.ls9_c00418{letter-spacing:0.641794pt;}
.lse_c00418{letter-spacing:1.130779pt;}
.ls1_c00418{letter-spacing:1.260670pt;}
.ls13_c00418{letter-spacing:1.283584pt;}
.lsd_c00418{letter-spacing:1.283587pt;}
.ls7_c00418{letter-spacing:1.291222pt;}
.ls0_c00418{letter-spacing:644.960000pt;}
.ws2f_c00418{word-spacing:-1.925376pt;}
.ws2c_c00418{word-spacing:-1.920279pt;}
.ws2b_c00418{word-spacing:-0.641794pt;}
.ws2a_c00418{word-spacing:-0.033108pt;}
.ws26_c00418{word-spacing:0.000000pt;}
.ws28_c00418{word-spacing:0.144000pt;}
.ws2e_c00418{word-spacing:0.198650pt;}
.ws2d_c00418{word-spacing:0.213931pt;}
.ws27_c00418{word-spacing:0.240000pt;}
.ws29_c00418{word-spacing:1.528085pt;}
.ws16_c00418{word-spacing:25.930394pt;}
.ws19_c00418{word-spacing:55.889721pt;}
.ws18_c00418{word-spacing:56.486014pt;}
.ws11_c00418{word-spacing:60.930662pt;}
.ws23_c00418{word-spacing:63.476443pt;}
.ws25_c00418{word-spacing:66.673427pt;}
.wsb_c00418{word-spacing:71.880883pt;}
.ws9_c00418{word-spacing:73.662624pt;}
.ws24_c00418{word-spacing:73.665681pt;}
.wsd_c00418{word-spacing:74.314815pt;}
.ws2_c00418{word-spacing:76.251458pt;}
.ws12_c00418{word-spacing:79.410178pt;}
.ws17_c00418{word-spacing:79.890247pt;}
.ws15_c00418{word-spacing:81.293856pt;}
.ws1f_c00418{word-spacing:81.956203pt;}
.ws1e_c00418{word-spacing:83.839637pt;}
.ws3_c00418{word-spacing:84.502229pt;}
.ws1c_c00418{word-spacing:88.934256pt;}
.ws5_c00418{word-spacing:91.492262pt;}
.ws1a_c00418{word-spacing:92.140306pt;}
.wsc_c00418{word-spacing:96.574656pt;}
.ws13_c00418{word-spacing:96.583824pt;}
.ws1_c00418{word-spacing:101.872000pt;}
.wsf_c00418{word-spacing:106.760837pt;}
.ws7_c00418{word-spacing:106.763893pt;}
.ws22_c00418{word-spacing:122.041637pt;}
.ws1d_c00418{word-spacing:328.262146pt;}
.wsa_c00418{word-spacing:338.469720pt;}
.wse_c00418{word-spacing:379.248063pt;}
.ws14_c00418{word-spacing:385.690448pt;}
.ws20_c00418{word-spacing:404.736437pt;}
.ws10_c00418{word-spacing:405.017604pt;}
.ws21_c00418{word-spacing:415.225178pt;}
.ws8_c00418{word-spacing:454.735215pt;}
.ws4_c00418{word-spacing:459.444757pt;}
.ws1b_c00418{word-spacing:474.725557pt;}
.ws6_c00418{word-spacing:487.488082pt;}
.ws0_c00418{word-spacing:523.764701pt;}
._21_c00418{margin-left:-2.856718pt;}
._10_c00418{margin-left:-1.946766pt;}
._1_c00418{margin-left:-0.940800pt;}
._0_c00418{width:1.089600pt;}
._1e_c00418{width:2.017921pt;}
._8_c00418{width:3.027751pt;}
._3b_c00418{width:5.372977pt;}
._b_c00418{width:66.062949pt;}
._2c_c00418{width:69.233237pt;}
._2d_c00418{width:71.107675pt;}
._1f_c00418{width:74.426664pt;}
._c_c00418{width:76.257333pt;}
._32_c00418{width:77.462164pt;}
._31_c00418{width:78.795720pt;}
._e_c00418{width:81.349678pt;}
._13_c00418{width:83.583105pt;}
._25_c00418{width:84.534816pt;}
._27_c00418{width:87.172207pt;}
._15_c00418{width:88.225427pt;}
._1b_c00418{width:89.198802pt;}
._33_c00418{width:90.427495pt;}
._11_c00418{width:91.488073pt;}
._d_c00418{width:94.708964pt;}
._1c_c00418{width:96.507958pt;}
._12_c00418{width:98.944055pt;}
._23_c00418{width:99.984894pt;}
._a_c00418{width:101.726696pt;}
._30_c00418{width:103.052532pt;}
._4_c00418{width:104.418800pt;}
._36_c00418{width:105.965027pt;}
._1a_c00418{width:107.278162pt;}
._16_c00418{width:109.066522pt;}
._39_c00418{width:109.995330pt;}
._28_c00418{width:111.843036pt;}
._5_c00418{width:114.601925pt;}
._14_c00418{width:116.595836pt;}
._18_c00418{width:117.488381pt;}
._19_c00418{width:119.495856pt;}
._22_c00418{width:122.401958pt;}
._34_c00418{width:124.742204pt;}
._3_c00418{width:126.674800pt;}
._7_c00418{width:128.005200pt;}
._17_c00418{width:129.682037pt;}
._6_c00418{width:132.433600pt;}
._24_c00418{width:134.645610pt;}
._2a_c00418{width:139.773490pt;}
._20_c00418{width:150.634912pt;}
._1d_c00418{width:169.876429pt;}
._35_c00418{width:236.103417pt;}
._2b_c00418{width:256.049559pt;}
._2e_c00418{width:259.961834pt;}
._3a_c00418{width:270.159180pt;}
._f_c00418{width:282.494934pt;}
._26_c00418{width:284.077285pt;}
._38_c00418{width:286.611159pt;}
._29_c00418{width:342.067954pt;}
._37_c00418{width:408.294941pt;}
._2f_c00418{width:449.536418pt;}
._9_c00418{width:456.167015pt;}
._2_c00418{width:746.640000pt;}
.fs6_c00418{font-size:30.561600pt;}
.fs5_c00418{font-size:33.108267pt;}
.fs4_c00418{font-size:38.202133pt;}
.fs3_c00418{font-size:40.748800pt;}
.fs0_c00418{font-size:48.000000pt;}
.fs7_c00418{font-size:53.482667pt;}
.fs1_c00418{font-size:64.000000pt;}
.fs2_c00418{font-size:85.440000pt;}
.y0_c00418{bottom:0.000000pt;}
.y40_c00418{bottom:3.182800pt;}
.y42_c00418{bottom:3.183067pt;}
.y3e_c00418{bottom:3.183333pt;}
.y46_c00418{bottom:3.820267pt;}
.y44_c00418{bottom:3.820800pt;}
.y7_c00418{bottom:4.456800pt;}
.y22_c00418{bottom:4.457467pt;}
.y9_c00418{bottom:5.092667pt;}
.y24_c00418{bottom:5.094800pt;}
.y1b_c00418{bottom:5.729467pt;}
.y3c_c00418{bottom:5.729600pt;}
.y32_c00418{bottom:5.729867pt;}
.yb_c00418{bottom:5.730000pt;}
.y36_c00418{bottom:5.730133pt;}
.y20_c00418{bottom:5.730267pt;}
.y17_c00418{bottom:5.730533pt;}
.y26_c00418{bottom:5.730667pt;}
.y3a_c00418{bottom:6.365867pt;}
.y30_c00418{bottom:6.366000pt;}
.y13_c00418{bottom:6.366133pt;}
.yf_c00418{bottom:6.366400pt;}
.y15_c00418{bottom:6.366667pt;}
.y2e_c00418{bottom:6.366800pt;}
.y11_c00418{bottom:6.366933pt;}
.y2a_c00418{bottom:6.367067pt;}
.yd_c00418{bottom:6.367200pt;}
.y2c_c00418{bottom:6.367600pt;}
.y28_c00418{bottom:6.368000pt;}
.y47_c00418{bottom:50.960000pt;}
.y5_c00418{bottom:70.000000pt;}
.y45_c00418{bottom:71.278667pt;}
.y3b_c00418{bottom:84.013333pt;}
.y39_c00418{bottom:99.294667pt;}
.y38_c00418{bottom:114.574667pt;}
.y37_c00418{bottom:129.856000pt;}
.y35_c00418{bottom:145.136000pt;}
.y34_c00418{bottom:160.417333pt;}
.y33_c00418{bottom:175.697333pt;}
.y31_c00418{bottom:190.978667pt;}
.y2f_c00418{bottom:206.260000pt;}
.y2d_c00418{bottom:221.540000pt;}
.y2b_c00418{bottom:236.820000pt;}
.y29_c00418{bottom:252.101333pt;}
.y27_c00418{bottom:267.381333pt;}
.y25_c00418{bottom:282.662667pt;}
.y23_c00418{bottom:297.942667pt;}
.y21_c00418{bottom:313.224000pt;}
.y43_c00418{bottom:352.062667pt;}
.y1f_c00418{bottom:364.797333pt;}
.y1e_c00418{bottom:380.078667pt;}
.y1d_c00418{bottom:395.358667pt;}
.y1c_c00418{bottom:410.640000pt;}
.y1a_c00418{bottom:425.921333pt;}
.y19_c00418{bottom:441.201333pt;}
.y18_c00418{bottom:456.482667pt;}
.y16_c00418{bottom:471.762667pt;}
.y14_c00418{bottom:487.044000pt;}
.y12_c00418{bottom:502.325333pt;}
.y10_c00418{bottom:517.605333pt;}
.ye_c00418{bottom:532.886667pt;}
.yc_c00418{bottom:548.166667pt;}
.ya_c00418{bottom:563.448000pt;}
.y8_c00418{bottom:578.729333pt;}
.y6_c00418{bottom:594.009333pt;}
.y3f_c00418{bottom:621.388000pt;}
.y41_c00418{bottom:638.578667pt;}
.y3d_c00418{bottom:655.769333pt;}
.y4_c00418{bottom:676.640000pt;}
.y3_c00418{bottom:694.320000pt;}
.y2_c00418{bottom:708.084000pt;}
.y1_c00418{bottom:735.680000pt;}
.he_c00418{height:12.097333pt;}
.h5_c00418{height:14.644000pt;}
.ha_c00418{height:14.645333pt;}
.hb_c00418{height:16.553333pt;}
.hd_c00418{height:16.554667pt;}
.h9_c00418{height:22.249680pt;}
.h8_c00418{height:24.055225pt;}
.h7_c00418{height:27.756237pt;}
.h6_c00418{height:29.606550pt;}
.hc_c00418{height:38.858500pt;}
.h2_c00418{height:47.109375pt;}
.h3_c00418{height:62.812500pt;}
.h4_c00418{height:86.107500pt;}
.h0_c00418{height:793.840000pt;}
.h1_c00418{height:794.000000pt;}
.w3_c00418{width:930.636000pt;}
.w2_c00418{width:931.544000pt;}
.w0_c00418{width:1122.560000pt;}
.w1_c00418{width:1122.666667pt;}
.x0_c00418{left:0.000000pt;}
.x5_c00418{left:1.818400pt;}
.x6_c00418{left:23.630133pt;}
.x7_c00418{left:34.536133pt;}
.x2_c00418{left:94.560000pt;}
.x4_c00418{left:95.468000pt;}
.xa_c00418{left:134.506667pt;}
.x9_c00418{left:364.438933pt;}
.x8_c00418{left:413.515333pt;}
.x1_c00418{left:561.280000pt;}
.xb_c00418{left:1004.080000pt;}
.x3_c00418{left:1027.920000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c3b2b3577c275568422323e.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_77e65469ebf2b27a4022bdd5.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00419;src:url('chunks/assets/font_f8ef63661cb9cc5528c9ba56.woff2')format("woff");}.ff5_c00419{font-family:ff5_c00419;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00419;src:url('chunks/assets/font_c8630a3622f68da7defb75a8.woff2')format("woff");}.ff6_c00419{font-family:ff6_c00419;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2_c00419{transform:matrix(0.291792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291792,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291794,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.291796,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291796,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291796,0.000000,0.000000,0.250000,0,0);}
.v1_c00419{vertical-align:-61.938000px;}
.v2_c00419{vertical-align:-2.510591px;}
.v0_c00419{vertical-align:0.000000px;}
.ls5_c00419{letter-spacing:-0.873140px;}
.lsc_c00419{letter-spacing:-0.850368px;}
.lsb_c00419{letter-spacing:-0.625119px;}
.ls8_c00419{letter-spacing:-0.417589px;}
.lsa_c00419{letter-spacing:-0.230307px;}
.ls3_c00419{letter-spacing:0.000000px;}
.ls9_c00419{letter-spacing:0.417589px;}
.lsd_c00419{letter-spacing:0.425184px;}
.ls4_c00419{letter-spacing:0.566908px;}
.ls7_c00419{letter-spacing:1.252766px;}
.ls1_c00419{letter-spacing:1.266689px;}
.ls2_c00419{letter-spacing:1.275552px;}
.ls6_c00419{letter-spacing:1.283139px;}
.ls0_c00419{letter-spacing:1144.260000px;}
.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;}
}
.ws4_c00419{word-spacing:-9.508389px;}
.ws3_c00419{word-spacing:-9.491939px;}
.ws13_c00419{word-spacing:-1.913328px;}
.ws10_c00419{word-spacing:-1.908258px;}
.wsa_c00419{word-spacing:-1.283139px;}
.ws12_c00419{word-spacing:-1.062960px;}
.wsb_c00419{word-spacing:-0.607402px;}
.wsf_c00419{word-spacing:-0.394812px;}
.ws8_c00419{word-spacing:-0.162000px;}
.ws7_c00419{word-spacing:0.000000px;}
.ws11_c00419{word-spacing:0.212592px;}
.wse_c00419{word-spacing:0.227776px;}
.wsd_c00419{word-spacing:0.645364px;}
.wsc_c00419{word-spacing:1.062953px;}
.ws9_c00419{word-spacing:1.518504px;}
.ws5_c00419{word-spacing:132.058034px;}
.ws2_c00419{word-spacing:142.181672px;}
.ws6_c00419{word-spacing:159.895570px;}
.ws1_c00419{word-spacing:169.566112px;}
.ws0_c00419{word-spacing:965.909317px;}
._4_c00419{margin-left:-2.191709px;}
._0_c00419{margin-left:-1.133815px;}
._1_c00419{width:1.290728px;}
._2_c00419{width:2.592846px;}
._d_c00419{width:5.561516px;}
._7_c00419{width:103.431376px;}
._c_c00419{width:113.416829px;}
._3_c00419{width:137.676255px;}
._a_c00419{width:138.734149px;}
._6_c00419{width:142.064734px;}
._8_c00419{width:151.983883px;}
._5_c00419{width:159.504550px;}
._b_c00419{width:168.763170px;}
._9_c00419{width:170.173062px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs5_c00419{font-size:32.901000px;}
.fs4_c00419{font-size:37.962600px;}
.fs3_c00419{font-size:40.493400px;}
.fs6_c00419{font-size:53.148000px;}
.fs0_c00419{font-size:54.000000px;}
.fs1_c00419{font-size:72.000000px;}
.fs2_c00419{font-size:96.120000px;}
.y0_c00419{bottom:0.000000px;}
.y5a_c00419{bottom:1.897800px;}
.y58_c00419{bottom:1.898250px;}
.y62_c00419{bottom:3.163050px;}
.y5c_c00419{bottom:3.163650px;}
.y5e_c00419{bottom:3.163950px;}
.y60_c00419{bottom:3.164250px;}
.ye_c00419{bottom:4.427700px;}
.y1d_c00419{bottom:4.428000px;}
.y28_c00419{bottom:4.428150px;}
.y3c_c00419{bottom:4.428300px;}
.yb_c00419{bottom:4.428450px;}
.y1a_c00419{bottom:4.428600px;}
.y25_c00419{bottom:4.428750px;}
.y7_c00419{bottom:4.428900px;}
.y45_c00419{bottom:4.429050px;}
.y17_c00419{bottom:4.429200px;}
.y22_c00419{bottom:4.429350px;}
.y30_c00419{bottom:4.429500px;}
.y14_c00419{bottom:4.429650px;}
.y2d_c00419{bottom:4.430100px;}
.y11_c00419{bottom:4.430250px;}
.y56_c00419{bottom:15.817650px;}
.y55_c00419{bottom:15.817800px;}
.y53_c00419{bottom:29.737350px;}
.y51_c00419{bottom:44.922450px;}
.y63_c00419{bottom:57.330000px;}
.y4f_c00419{bottom:60.107550px;}
.y4e_c00419{bottom:75.925200px;}
.y4d_c00419{bottom:75.925350px;}
.y5_c00419{bottom:83.250000px;}
.y8_c00419{bottom:83.875500px;}
.y59_c00419{bottom:84.508500px;}
.y4b_c00419{bottom:90.477600px;}
.y49_c00419{bottom:105.662700px;}
.y54_c00419{bottom:111.082500px;}
.y47_c00419{bottom:120.847650px;}
.y52_c00419{bottom:126.267000px;}
.y50_c00419{bottom:141.451500px;}
.y46_c00419{bottom:151.850550px;}
.y43_c00419{bottom:166.402950px;}
.y4c_c00419{bottom:171.822000px;}
.y41_c00419{bottom:181.588050px;}
.y4a_c00419{bottom:187.008000px;}
.y3f_c00419{bottom:196.773000px;}
.y48_c00419{bottom:202.192500px;}
.y3d_c00419{bottom:211.958100px;}
.y3a_c00419{bottom:227.143200px;}
.y38_c00419{bottom:242.328150px;}
.y44_c00419{bottom:247.747500px;}
.y36_c00419{bottom:257.513250px;}
.y42_c00419{bottom:262.932000px;}
.y40_c00419{bottom:278.118000px;}
.y3e_c00419{bottom:293.302500px;}
.y3b_c00419{bottom:308.488500px;}
.y34_c00419{bottom:323.315100px;}
.y33_c00419{bottom:323.315250px;}
.y39_c00419{bottom:323.673000px;}
.y31_c00419{bottom:337.867500px;}
.y37_c00419{bottom:338.857500px;}
.y2e_c00419{bottom:353.052600px;}
.y35_c00419{bottom:354.043500px;}
.y2b_c00419{bottom:367.604850px;}
.y2a_c00419{bottom:383.422650px;}
.y29_c00419{bottom:383.422800px;}
.y57_c00419{bottom:392.005500px;}
.y26_c00419{bottom:398.607750px;}
.y23_c00419{bottom:413.792850px;}
.y32_c00419{bottom:418.579500px;}
.y20_c00419{bottom:428.344950px;}
.y2f_c00419{bottom:433.764000px;}
.y2c_c00419{bottom:448.948500px;}
.y1f_c00419{bottom:459.347850px;}
.y1e_c00419{bottom:459.348000px;}
.y1b_c00419{bottom:473.900400px;}
.y27_c00419{bottom:479.320500px;}
.y18_c00419{bottom:489.085350px;}
.y24_c00419{bottom:494.505000px;}
.y15_c00419{bottom:504.270450px;}
.y21_c00419{bottom:509.689500px;}
.y12_c00419{bottom:519.455550px;}
.yf_c00419{bottom:534.640650px;}
.yc_c00419{bottom:549.825750px;}
.y1c_c00419{bottom:555.246000px;}
.y9_c00419{bottom:565.010850px;}
.y19_c00419{bottom:570.430500px;}
.y16_c00419{bottom:585.615000px;}
.y13_c00419{bottom:600.799500px;}
.y10_c00419{bottom:615.984000px;}
.yd_c00419{bottom:631.171500px;}
.ya_c00419{bottom:646.356000px;}
.y6_c00419{bottom:661.540500px;}
.y61_c00419{bottom:688.747500px;}
.y5f_c00419{bottom:705.829500px;}
.y5d_c00419{bottom:722.913000px;}
.y5b_c00419{bottom:739.996500px;}
.y4_c00419{bottom:761.220000px;}
.y3_c00419{bottom:781.105500px;}
.y2_c00419{bottom:796.590000px;}
.y1_c00419{bottom:827.640000px;}
.hb_c00419{height:10.755000px;}
.h9_c00419{height:14.551500px;}
.h5_c00419{height:14.553000px;}
.hd_c00419{height:16.449000px;}
.hf_c00419{height:16.450500px;}
.ha_c00419{height:23.904633px;}
.hc_c00419{height:23.952828px;}
.h8_c00419{height:27.582202px;}
.h6_c00419{height:29.420986px;}
.he_c00419{height:38.615344px;}
.h2_c00419{height:52.998047px;}
.h3_c00419{height:70.664062px;}
.h4_c00419{height:96.870938px;}
.h7_c00419{height:672.571500px;}
.h0_c00419{height:893.070000px;}
.h1_c00419{height:893.250000px;}
.w3_c00419{width:1047.910500px;}
.w2_c00419{width:1048.648500px;}
.w0_c00419{width:1262.880000px;}
.w1_c00419{width:1263.000000px;}
.x0_c00419{left:0.000000px;}
.x4_c00419{left:1.477350px;}
.x2_c00419{left:106.380000px;}
.x9_c00419{left:318.287400px;}
.x5_c00419{left:328.626300px;}
.xe_c00419{left:330.103200px;}
.xd_c00419{left:335.272650px;}
.x11_c00419{left:336.749550px;}
.xb_c00419{left:403.213200px;}
.x6_c00419{left:411.336600px;}
.x12_c00419{left:427.583250px;}
.x10_c00419{left:481.492650px;}
.x1_c00419{left:631.440000px;}
.xa_c00419{left:1002.862800px;}
.xf_c00419{left:1005.816750px;}
.x7_c00419{left:1013.201550px;}
.xc_c00419{left:1014.678450px;}
.x8_c00419{left:1019.847900px;}
.x3_c00419{left:1156.500000px;}
@media print{
.v1_c00419{vertical-align:-55.056000pt;}
.v2_c00419{vertical-align:-2.231636pt;}
.v0_c00419{vertical-align:0.000000pt;}
.ls5_c00419{letter-spacing:-0.776124pt;}
.lsc_c00419{letter-spacing:-0.755883pt;}
.lsb_c00419{letter-spacing:-0.555661pt;}
.ls8_c00419{letter-spacing:-0.371190pt;}
.lsa_c00419{letter-spacing:-0.204717pt;}
.ls3_c00419{letter-spacing:0.000000pt;}
.ls9_c00419{letter-spacing:0.371190pt;}
.lsd_c00419{letter-spacing:0.377941pt;}
.ls4_c00419{letter-spacing:0.503918pt;}
.ls7_c00419{letter-spacing:1.113570pt;}
.ls1_c00419{letter-spacing:1.125945pt;}
.ls2_c00419{letter-spacing:1.133824pt;}
.ls6_c00419{letter-spacing:1.140568pt;}
.ls0_c00419{letter-spacing:1017.120000pt;}
.ws4_c00419{word-spacing:-8.451901pt;}
.ws3_c00419{word-spacing:-8.437279pt;}
.ws13_c00419{word-spacing:-1.700736pt;}
.ws10_c00419{word-spacing:-1.696229pt;}
.wsa_c00419{word-spacing:-1.140568pt;}
.ws12_c00419{word-spacing:-0.944853pt;}
.wsb_c00419{word-spacing:-0.539913pt;}
.wsf_c00419{word-spacing:-0.350944pt;}
.ws8_c00419{word-spacing:-0.144000pt;}
.ws7_c00419{word-spacing:0.000000pt;}
.ws11_c00419{word-spacing:0.188971pt;}
.wse_c00419{word-spacing:0.202467pt;}
.wsd_c00419{word-spacing:0.573657pt;}
.wsc_c00419{word-spacing:0.944847pt;}
.ws9_c00419{word-spacing:1.349781pt;}
.ws5_c00419{word-spacing:117.384919pt;}
.ws2_c00419{word-spacing:126.383708pt;}
.ws6_c00419{word-spacing:142.129395pt;}
.ws1_c00419{word-spacing:150.725433pt;}
.ws0_c00419{word-spacing:858.586059pt;}
._4_c00419{margin-left:-1.948185pt;}
._0_c00419{margin-left:-1.007836pt;}
._1_c00419{width:1.147314pt;}
._2_c00419{width:2.304752pt;}
._d_c00419{width:4.943569pt;}
._7_c00419{width:91.939001pt;}
._c_c00419{width:100.814959pt;}
._3_c00419{width:122.378894pt;}
._a_c00419{width:123.319243pt;}
._6_c00419{width:126.279763pt;}
._8_c00419{width:135.096785pt;}
._5_c00419{width:141.781822pt;}
._b_c00419{width:150.011706pt;}
._9_c00419{width:151.264944pt;}
.fs5_c00419{font-size:29.245333pt;}
.fs4_c00419{font-size:33.744533pt;}
.fs3_c00419{font-size:35.994133pt;}
.fs6_c00419{font-size:47.242667pt;}
.fs0_c00419{font-size:48.000000pt;}
.fs1_c00419{font-size:64.000000pt;}
.fs2_c00419{font-size:85.440000pt;}
.y0_c00419{bottom:0.000000pt;}
.y5a_c00419{bottom:1.686933pt;}
.y58_c00419{bottom:1.687333pt;}
.y62_c00419{bottom:2.811600pt;}
.y5c_c00419{bottom:2.812133pt;}
.y5e_c00419{bottom:2.812400pt;}
.y60_c00419{bottom:2.812667pt;}
.ye_c00419{bottom:3.935733pt;}
.y1d_c00419{bottom:3.936000pt;}
.y28_c00419{bottom:3.936133pt;}
.y3c_c00419{bottom:3.936267pt;}
.yb_c00419{bottom:3.936400pt;}
.y1a_c00419{bottom:3.936533pt;}
.y25_c00419{bottom:3.936667pt;}
.y7_c00419{bottom:3.936800pt;}
.y45_c00419{bottom:3.936933pt;}
.y17_c00419{bottom:3.937067pt;}
.y22_c00419{bottom:3.937200pt;}
.y30_c00419{bottom:3.937333pt;}
.y14_c00419{bottom:3.937467pt;}
.y2d_c00419{bottom:3.937867pt;}
.y11_c00419{bottom:3.938000pt;}
.y56_c00419{bottom:14.060133pt;}
.y55_c00419{bottom:14.060267pt;}
.y53_c00419{bottom:26.433200pt;}
.y51_c00419{bottom:39.931067pt;}
.y63_c00419{bottom:50.960000pt;}
.y4f_c00419{bottom:53.428933pt;}
.y4e_c00419{bottom:67.489067pt;}
.y4d_c00419{bottom:67.489200pt;}
.y5_c00419{bottom:74.000000pt;}
.y8_c00419{bottom:74.556000pt;}
.y59_c00419{bottom:75.118667pt;}
.y4b_c00419{bottom:80.424533pt;}
.y49_c00419{bottom:93.922400pt;}
.y54_c00419{bottom:98.740000pt;}
.y47_c00419{bottom:107.420133pt;}
.y52_c00419{bottom:112.237333pt;}
.y50_c00419{bottom:125.734667pt;}
.y46_c00419{bottom:134.978267pt;}
.y43_c00419{bottom:147.913733pt;}
.y4c_c00419{bottom:152.730667pt;}
.y41_c00419{bottom:161.411600pt;}
.y4a_c00419{bottom:166.229333pt;}
.y3f_c00419{bottom:174.909333pt;}
.y48_c00419{bottom:179.726667pt;}
.y3d_c00419{bottom:188.407200pt;}
.y3a_c00419{bottom:201.905067pt;}
.y38_c00419{bottom:215.402800pt;}
.y44_c00419{bottom:220.220000pt;}
.y36_c00419{bottom:228.900667pt;}
.y42_c00419{bottom:233.717333pt;}
.y40_c00419{bottom:247.216000pt;}
.y3e_c00419{bottom:260.713333pt;}
.y3b_c00419{bottom:274.212000pt;}
.y34_c00419{bottom:287.391200pt;}
.y33_c00419{bottom:287.391333pt;}
.y39_c00419{bottom:287.709333pt;}
.y31_c00419{bottom:300.326667pt;}
.y37_c00419{bottom:301.206667pt;}
.y2e_c00419{bottom:313.824533pt;}
.y35_c00419{bottom:314.705333pt;}
.y2b_c00419{bottom:326.759867pt;}
.y2a_c00419{bottom:340.820133pt;}
.y29_c00419{bottom:340.820267pt;}
.y57_c00419{bottom:348.449333pt;}
.y26_c00419{bottom:354.318000pt;}
.y23_c00419{bottom:367.815867pt;}
.y32_c00419{bottom:372.070667pt;}
.y20_c00419{bottom:380.751067pt;}
.y2f_c00419{bottom:385.568000pt;}
.y2c_c00419{bottom:399.065333pt;}
.y1f_c00419{bottom:408.309200pt;}
.y1e_c00419{bottom:408.309333pt;}
.y1b_c00419{bottom:421.244800pt;}
.y27_c00419{bottom:426.062667pt;}
.y18_c00419{bottom:434.742533pt;}
.y24_c00419{bottom:439.560000pt;}
.y15_c00419{bottom:448.240400pt;}
.y21_c00419{bottom:453.057333pt;}
.y12_c00419{bottom:461.738267pt;}
.yf_c00419{bottom:475.236133pt;}
.yc_c00419{bottom:488.734000pt;}
.y1c_c00419{bottom:493.552000pt;}
.y9_c00419{bottom:502.231867pt;}
.y19_c00419{bottom:507.049333pt;}
.y16_c00419{bottom:520.546667pt;}
.y13_c00419{bottom:534.044000pt;}
.y10_c00419{bottom:547.541333pt;}
.yd_c00419{bottom:561.041333pt;}
.ya_c00419{bottom:574.538667pt;}
.y6_c00419{bottom:588.036000pt;}
.y61_c00419{bottom:612.220000pt;}
.y5f_c00419{bottom:627.404000pt;}
.y5d_c00419{bottom:642.589333pt;}
.y5b_c00419{bottom:657.774667pt;}
.y4_c00419{bottom:676.640000pt;}
.y3_c00419{bottom:694.316000pt;}
.y2_c00419{bottom:708.080000pt;}
.y1_c00419{bottom:735.680000pt;}
.hb_c00419{height:9.560000pt;}
.h9_c00419{height:12.934667pt;}
.h5_c00419{height:12.936000pt;}
.hd_c00419{height:14.621333pt;}
.hf_c00419{height:14.622667pt;}
.ha_c00419{height:21.248562pt;}
.hc_c00419{height:21.291402pt;}
.h8_c00419{height:24.517512pt;}
.h6_c00419{height:26.151987pt;}
.he_c00419{height:34.324750pt;}
.h2_c00419{height:47.109375pt;}
.h3_c00419{height:62.812500pt;}
.h4_c00419{height:86.107500pt;}
.h7_c00419{height:597.841333pt;}
.h0_c00419{height:793.840000pt;}
.h1_c00419{height:794.000000pt;}
.w3_c00419{width:931.476000pt;}
.w2_c00419{width:932.132000pt;}
.w0_c00419{width:1122.560000pt;}
.w1_c00419{width:1122.666667pt;}
.x0_c00419{left:0.000000pt;}
.x4_c00419{left:1.313200pt;}
.x2_c00419{left:94.560000pt;}
.x9_c00419{left:282.922133pt;}
.x5_c00419{left:292.112267pt;}
.xe_c00419{left:293.425067pt;}
.xd_c00419{left:298.020133pt;}
.x11_c00419{left:299.332933pt;}
.xb_c00419{left:358.411733pt;}
.x6_c00419{left:365.632533pt;}
.x12_c00419{left:380.074000pt;}
.x10_c00419{left:427.993467pt;}
.x1_c00419{left:561.280000pt;}
.xa_c00419{left:891.433600pt;}
.xf_c00419{left:894.059333pt;}
.x7_c00419{left:900.623600pt;}
.xc_c00419{left:901.936400pt;}
.x8_c00419{left:906.531467pt;}
.x3_c00419{left:1028.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_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_9d47f2ea5cc881bda125e03f.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_3091dfda915b8919b3813ed9.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_3db8fe046fcd4d3d9d2f1919.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.v1_c00420{vertical-align:-4.496507px;}
.v0_c00420{vertical-align:0.000000px;}
.ls6_c00420{letter-spacing:-1.549740px;}
.lsa_c00420{letter-spacing:-1.509312px;}
.ls5_c00420{letter-spacing:-1.459905px;}
.ls8_c00420{letter-spacing:-0.741180px;}
.ls2_c00420{letter-spacing:-0.108000px;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls9_c00420{letter-spacing:0.741180px;}
.lsb_c00420{letter-spacing:0.754656px;}
.ls3_c00420{letter-spacing:1.006211px;}
.ls7_c00420{letter-spacing:2.223540px;}
.ls0_c00420{letter-spacing:2.248254px;}
.lsc_c00420{letter-spacing:2.263968px;}
.ls4_c00420{letter-spacing:2.277452px;}
.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:-18.974261px;}
.ws1_c00420{word-spacing:-16.876502px;}
.ws5_c00420{word-spacing:-16.847304px;}
.ws15_c00420{word-spacing:-3.395952px;}
.wsc_c00420{word-spacing:-2.277452px;}
.ws14_c00420{word-spacing:-1.886640px;}
.wsf_c00420{word-spacing:-1.078080px;}
.ws9_c00420{word-spacing:0.000000px;}
.wsb_c00420{word-spacing:0.162000px;}
.wsa_c00420{word-spacing:0.270000px;}
.ws13_c00420{word-spacing:0.377328px;}
.ws12_c00420{word-spacing:0.404280px;}
.ws11_c00420{word-spacing:1.145460px;}
.wsd_c00420{word-spacing:1.459905px;}
.ws10_c00420{word-spacing:1.886640px;}
.wse_c00420{word-spacing:2.695200px;}
.ws8_c00420{word-spacing:153.768874px;}
.ws3_c00420{word-spacing:198.733948px;}
.ws6_c00420{word-spacing:212.270187px;}
.ws2_c00420{word-spacing:265.842861px;}
.ws7_c00420{word-spacing:315.246046px;}
.ws4_c00420{word-spacing:315.275244px;}
._4_c00420{margin-left:-3.891595px;}
._3_c00420{margin-left:-2.226611px;}
._1_c00420{margin-left:-1.058400px;}
._0_c00420{width:1.220400px;}
._6_c00420{width:2.290920px;}
._5_c00420{width:3.416258px;}
._7_c00420{width:4.602054px;}
._b_c00420{width:156.810293px;}
._8_c00420{width:201.775367px;}
._9_c00420{width:214.760274px;}
._c_c00420{width:511.057133px;}
._a_c00420{width:542.501133px;}
._2_c00420{width:839.992680px;}
.fc0_c00420{color:rgb(0,0,0);}
.fs7_c00420{font-size:53.904000px;}
.fs0_c00420{font-size:54.000000px;}
.fs4_c00420{font-size:58.396200px;}
.fs5_c00420{font-size:67.380000px;}
.fs3_c00420{font-size:71.872200px;}
.fs1_c00420{font-size:72.000000px;}
.fs6_c00420{font-size:94.332000px;}
.fs2_c00420{font-size:96.120000px;}
.y0_c00420{bottom:0.000000px;}
.y3b_c00420{bottom:5.614500px;}
.y39_c00420{bottom:5.614800px;}
.y36_c00420{bottom:5.614950px;}
.y34_c00420{bottom:5.615100px;}
.y16_c00420{bottom:6.736950px;}
.y2a_c00420{bottom:6.738000px;}
.y20_c00420{bottom:6.738150px;}
.y19_c00420{bottom:6.738300px;}
.y13_c00420{bottom:6.738450px;}
.yf_c00420{bottom:17.974661px;}
.y32_c00420{bottom:29.197950px;}
.ye_c00420{bottom:40.428000px;}
.yd_c00420{bottom:50.535000px;}
.y30_c00420{bottom:52.780950px;}
.y3c_c00420{bottom:57.240000px;}
.y2e_c00420{bottom:76.363950px;}
.y2c_c00420{bottom:99.946950px;}
.y2b_c00420{bottom:123.529950px;}
.y28_c00420{bottom:147.113100px;}
.y26_c00420{bottom:170.696100px;}
.y24_c00420{bottom:194.279100px;}
.y23_c00420{bottom:241.445100px;}
.y21_c00420{bottom:265.028250px;}
.y1e_c00420{bottom:288.611250px;}
.y1c_c00420{bottom:312.194250px;}
.y1a_c00420{bottom:335.777250px;}
.yb_c00420{bottom:355.218480px;}
.y17_c00420{bottom:359.360250px;}
.ya_c00420{bottom:382.756860px;}
.y14_c00420{bottom:382.943400px;}
.y11_c00420{bottom:406.526400px;}
.y9_c00420{bottom:410.391360px;}
.y8_c00420{bottom:438.025860px;}
.y7_c00420{bottom:460.349730px;}
.y10_c00420{bottom:461.485500px;}
.y3a_c00420{bottom:462.609000px;}
.y31_c00420{bottom:508.651500px;}
.y2f_c00420{bottom:532.234500px;}
.y2d_c00420{bottom:555.817500px;}
.y29_c00420{bottom:602.983500px;}
.y27_c00420{bottom:626.566500px;}
.y25_c00420{bottom:650.149500px;}
.y22_c00420{bottom:720.898500px;}
.y1f_c00420{bottom:744.481500px;}
.y1d_c00420{bottom:768.064500px;}
.y1b_c00420{bottom:791.647500px;}
.y18_c00420{bottom:815.230500px;}
.y15_c00420{bottom:838.815000px;}
.y12_c00420{bottom:862.396500px;}
.yc_c00420{bottom:887.103000px;}
.y38_c00420{bottom:978.066000px;}
.y37_c00420{bottom:1008.387000px;}
.y35_c00420{bottom:1038.708000px;}
.y33_c00420{bottom:1069.029000px;}
.y6_c00420{bottom:1104.570000px;}
.y5_c00420{bottom:1131.030000px;}
.y4_c00420{bottom:1150.920000px;}
.y3_c00420{bottom:1166.404500px;}
.y2_c00420{bottom:1181.970000px;}
.y1_c00420{bottom:1197.450000px;}
.hf_c00420{height:20.214000px;}
.hc_c00420{height:22.459500px;}
.hb_c00420{height:23.583000px;}
.hd_c00420{height:29.197500px;}
.h10_c00420{height:39.243586px;}
.h8_c00420{height:42.428489px;}
.ha_c00420{height:48.955781px;}
.h7_c00420{height:52.219645px;}
.h3_c00420{height:52.971680px;}
.h2_c00420{height:52.998047px;}
.h6_c00420{height:68.503500px;}
.he_c00420{height:68.538094px;}
.h4_c00420{height:70.664062px;}
.h5_c00420{height:96.870938px;}
.h9_c00420{height:636.741000px;}
.h0_c00420{height:1262.880000px;}
.h1_c00420{height:1263.000000px;}
.w3_c00420{width:122.412000px;}
.w4_c00420{width:605.323500px;}
.w2_c00420{width:606.447000px;}
.w0_c00420{width:893.070000px;}
.w1_c00420{width:893.250000px;}
.x0_c00420{left:0.000000px;}
.xb_c00420{left:2.246700px;}
.x8_c00420{left:4.492950px;}
.x12_c00420{left:19.091400px;}
.x9_c00420{left:26.947212px;}
.xc_c00420{left:28.073481px;}
.x13_c00420{left:111.181500px;}
.x14_c00420{left:119.042700px;}
.x3_c00420{left:127.620000px;}
.x6_c00420{left:139.257600px;}
.x5_c00420{left:143.323500px;}
.x11_c00420{left:238.085850px;}
.xd_c00420{left:409.912350px;}
.x10_c00420{left:413.281500px;}
.x2_c00420{left:425.160000px;}
.xe_c00420{left:431.250300px;}
.xf_c00420{left:439.111650px;}
.x1_c00420{left:446.580000px;}
.x7_c00420{left:502.698000px;}
.xa_c00420{left:626.233500px;}
.x15_c00420{left:738.540000px;}
.x4_c00420{left:750.862080px;}
@media print{
.v1_c00420{vertical-align:-3.996895pt;}
.v0_c00420{vertical-align:0.000000pt;}
.ls6_c00420{letter-spacing:-1.377547pt;}
.lsa_c00420{letter-spacing:-1.341611pt;}
.ls5_c00420{letter-spacing:-1.297693pt;}
.ls8_c00420{letter-spacing:-0.658827pt;}
.ls2_c00420{letter-spacing:-0.096000pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls9_c00420{letter-spacing:0.658827pt;}
.lsb_c00420{letter-spacing:0.670805pt;}
.ls3_c00420{letter-spacing:0.894410pt;}
.ls7_c00420{letter-spacing:1.976480pt;}
.ls0_c00420{letter-spacing:1.998448pt;}
.lsc_c00420{letter-spacing:2.012416pt;}
.ls4_c00420{letter-spacing:2.024402pt;}
.ws0_c00420{word-spacing:-16.866010pt;}
.ws1_c00420{word-spacing:-15.001335pt;}
.ws5_c00420{word-spacing:-14.975381pt;}
.ws15_c00420{word-spacing:-3.018624pt;}
.wsc_c00420{word-spacing:-2.024402pt;}
.ws14_c00420{word-spacing:-1.677013pt;}
.wsf_c00420{word-spacing:-0.958293pt;}
.ws9_c00420{word-spacing:0.000000pt;}
.wsb_c00420{word-spacing:0.144000pt;}
.wsa_c00420{word-spacing:0.240000pt;}
.ws13_c00420{word-spacing:0.335403pt;}
.ws12_c00420{word-spacing:0.359360pt;}
.ws11_c00420{word-spacing:1.018187pt;}
.wsd_c00420{word-spacing:1.297693pt;}
.ws10_c00420{word-spacing:1.677013pt;}
.wse_c00420{word-spacing:2.395733pt;}
.ws8_c00420{word-spacing:136.683443pt;}
.ws3_c00420{word-spacing:176.652398pt;}
.ws6_c00420{word-spacing:188.684611pt;}
.ws2_c00420{word-spacing:236.304765pt;}
.ws7_c00420{word-spacing:280.218708pt;}
.ws4_c00420{word-spacing:280.244661pt;}
._4_c00420{margin-left:-3.459196pt;}
._3_c00420{margin-left:-1.979210pt;}
._1_c00420{margin-left:-0.940800pt;}
._0_c00420{width:1.084800pt;}
._6_c00420{width:2.036373pt;}
._5_c00420{width:3.036674pt;}
._7_c00420{width:4.090715pt;}
._b_c00420{width:139.386927pt;}
._8_c00420{width:179.355882pt;}
._9_c00420{width:190.898021pt;}
._c_c00420{width:454.273007pt;}
._a_c00420{width:482.223229pt;}
._2_c00420{width:746.660160pt;}
.fs7_c00420{font-size:47.914667pt;}
.fs0_c00420{font-size:48.000000pt;}
.fs4_c00420{font-size:51.907733pt;}
.fs5_c00420{font-size:59.893333pt;}
.fs3_c00420{font-size:63.886400pt;}
.fs1_c00420{font-size:64.000000pt;}
.fs6_c00420{font-size:83.850667pt;}
.fs2_c00420{font-size:85.440000pt;}
.y0_c00420{bottom:0.000000pt;}
.y3b_c00420{bottom:4.990667pt;}
.y39_c00420{bottom:4.990933pt;}
.y36_c00420{bottom:4.991067pt;}
.y34_c00420{bottom:4.991200pt;}
.y16_c00420{bottom:5.988400pt;}
.y2a_c00420{bottom:5.989333pt;}
.y20_c00420{bottom:5.989467pt;}
.y19_c00420{bottom:5.989600pt;}
.y13_c00420{bottom:5.989733pt;}
.yf_c00420{bottom:15.977477pt;}
.y32_c00420{bottom:25.953733pt;}
.ye_c00420{bottom:35.936000pt;}
.yd_c00420{bottom:44.920000pt;}
.y30_c00420{bottom:46.916400pt;}
.y3c_c00420{bottom:50.880000pt;}
.y2e_c00420{bottom:67.879067pt;}
.y2c_c00420{bottom:88.841733pt;}
.y2b_c00420{bottom:109.804400pt;}
.y28_c00420{bottom:130.767200pt;}
.y26_c00420{bottom:151.729867pt;}
.y24_c00420{bottom:172.692533pt;}
.y23_c00420{bottom:214.617867pt;}
.y21_c00420{bottom:235.580667pt;}
.y1e_c00420{bottom:256.543333pt;}
.y1c_c00420{bottom:277.506000pt;}
.y1a_c00420{bottom:298.468667pt;}
.yb_c00420{bottom:315.749760pt;}
.y17_c00420{bottom:319.431333pt;}
.ya_c00420{bottom:340.228320pt;}
.y14_c00420{bottom:340.394133pt;}
.y11_c00420{bottom:361.356800pt;}
.y9_c00420{bottom:364.792320pt;}
.y8_c00420{bottom:389.356320pt;}
.y7_c00420{bottom:409.199760pt;}
.y10_c00420{bottom:410.209333pt;}
.y3a_c00420{bottom:411.208000pt;}
.y31_c00420{bottom:452.134667pt;}
.y2f_c00420{bottom:473.097333pt;}
.y2d_c00420{bottom:494.060000pt;}
.y29_c00420{bottom:535.985333pt;}
.y27_c00420{bottom:556.948000pt;}
.y25_c00420{bottom:577.910667pt;}
.y22_c00420{bottom:640.798667pt;}
.y1f_c00420{bottom:661.761333pt;}
.y1d_c00420{bottom:682.724000pt;}
.y1b_c00420{bottom:703.686667pt;}
.y18_c00420{bottom:724.649333pt;}
.y15_c00420{bottom:745.613333pt;}
.y12_c00420{bottom:766.574667pt;}
.yc_c00420{bottom:788.536000pt;}
.y38_c00420{bottom:869.392000pt;}
.y37_c00420{bottom:896.344000pt;}
.y35_c00420{bottom:923.296000pt;}
.y33_c00420{bottom:950.248000pt;}
.y6_c00420{bottom:981.840000pt;}
.y5_c00420{bottom:1005.360000pt;}
.y4_c00420{bottom:1023.040000pt;}
.y3_c00420{bottom:1036.804000pt;}
.y2_c00420{bottom:1050.640000pt;}
.y1_c00420{bottom:1064.400000pt;}
.hf_c00420{height:17.968000pt;}
.hc_c00420{height:19.964000pt;}
.hb_c00420{height:20.962667pt;}
.hd_c00420{height:25.953333pt;}
.h10_c00420{height:34.883187pt;}
.h8_c00420{height:37.714212pt;}
.ha_c00420{height:43.516250pt;}
.h7_c00420{height:46.417462pt;}
.h3_c00420{height:47.085938pt;}
.h2_c00420{height:47.109375pt;}
.h6_c00420{height:60.892000pt;}
.he_c00420{height:60.922750pt;}
.h4_c00420{height:62.812500pt;}
.h5_c00420{height:86.107500pt;}
.h9_c00420{height:565.992000pt;}
.h0_c00420{height:1122.560000pt;}
.h1_c00420{height:1122.666667pt;}
.w3_c00420{width:108.810667pt;}
.w4_c00420{width:538.065333pt;}
.w2_c00420{width:539.064000pt;}
.w0_c00420{width:793.840000pt;}
.w1_c00420{width:794.000000pt;}
.x0_c00420{left:0.000000pt;}
.xb_c00420{left:1.997067pt;}
.x8_c00420{left:3.993733pt;}
.x12_c00420{left:16.970133pt;}
.x9_c00420{left:23.953077pt;}
.xc_c00420{left:24.954205pt;}
.x13_c00420{left:98.828000pt;}
.x14_c00420{left:105.815733pt;}
.x3_c00420{left:113.440000pt;}
.x6_c00420{left:123.784533pt;}
.x5_c00420{left:127.398667pt;}
.x11_c00420{left:211.631867pt;}
.xd_c00420{left:364.366533pt;}
.x10_c00420{left:367.361333pt;}
.x2_c00420{left:377.920000pt;}
.xe_c00420{left:383.333600pt;}
.xf_c00420{left:390.321467pt;}
.x1_c00420{left:396.960000pt;}
.x7_c00420{left:446.842667pt;}
.xa_c00420{left:556.652000pt;}
.x15_c00420{left:656.480000pt;}
.x4_c00420{left:667.432960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7c056277730828075019fb9.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00421{vertical-align:-61.938000px;}
.v0_c00421{vertical-align:0.000000px;}
.ls1_c00421{letter-spacing:0.000000px;}
.ls0_c00421{letter-spacing:319.518000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00421{word-spacing:-0.162000px;}
.ws0_c00421{word-spacing:0.000000px;}
._0_c00421{width:839.992680px;}
.fc0_c00421{color:rgb(0,0,0);}
.fs0_c00421{font-size:54.000000px;}
.fs1_c00421{font-size:72.000000px;}
.fs2_c00421{font-size:96.120000px;}
.y0_c00421{bottom:0.000000px;}
.y7_c00421{bottom:57.240000px;}
.y6_c00421{bottom:1077.031620px;}
.y5_c00421{bottom:1104.570000px;}
.y4_c00421{bottom:1131.030000px;}
.y3_c00421{bottom:1150.915500px;}
.y2_c00421{bottom:1166.400000px;}
.y1_c00421{bottom:1197.450000px;}
.h2_c00421{height:52.998047px;}
.h3_c00421{height:70.664062px;}
.h4_c00421{height:96.870938px;}
.h0_c00421{height:1262.880000px;}
.h1_c00421{height:1263.000000px;}
.w0_c00421{width:893.070000px;}
.w1_c00421{width:893.250000px;}
.x0_c00421{left:0.000000px;}
.x2_c00421{left:127.620000px;}
.x1_c00421{left:446.580000px;}
@media print{
.v1_c00421{vertical-align:-55.056000pt;}
.v0_c00421{vertical-align:0.000000pt;}
.ls1_c00421{letter-spacing:0.000000pt;}
.ls0_c00421{letter-spacing:284.016000pt;}
.ws1_c00421{word-spacing:-0.144000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
._0_c00421{width:746.660160pt;}
.fs0_c00421{font-size:48.000000pt;}
.fs1_c00421{font-size:64.000000pt;}
.fs2_c00421{font-size:85.440000pt;}
.y0_c00421{bottom:0.000000pt;}
.y7_c00421{bottom:50.880000pt;}
.y6_c00421{bottom:957.361440pt;}
.y5_c00421{bottom:981.840000pt;}
.y4_c00421{bottom:1005.360000pt;}
.y3_c00421{bottom:1023.036000pt;}
.y2_c00421{bottom:1036.800000pt;}
.y1_c00421{bottom:1064.400000pt;}
.h2_c00421{height:47.109375pt;}
.h3_c00421{height:62.812500pt;}
.h4_c00421{height:86.107500pt;}
.h0_c00421{height:1122.560000pt;}
.h1_c00421{height:1122.666667pt;}
.w0_c00421{width:793.840000pt;}
.w1_c00421{width:794.000000pt;}
.x0_c00421{left:0.000000pt;}
.x2_c00421{left:113.440000pt;}
.x1_c00421{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfdef3a95c22d970d4078bf2.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_28dd41d6328e357aa28e37b0.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00422{vertical-align:-105.840000px;}
.v0_c00422{vertical-align:0.000000px;}
.ls2_c00422{letter-spacing:-0.108000px;}
.ls1_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:1257.840000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00422{word-spacing:0.000000px;}
.ws2_c00422{word-spacing:0.162000px;}
.ws1_c00422{word-spacing:0.270000px;}
._1_c00422{margin-left:-1.058400px;}
._0_c00422{width:1.220400px;}
._2_c00422{width:846.000000px;}
.fc0_c00422{color:rgb(0,0,0);}
.fs0_c00422{font-size:54.000000px;}
.fs1_c00422{font-size:72.000000px;}
.fs2_c00422{font-size:96.120000px;}
.fs3_c00422{font-size:108.000000px;}
.y0_c00422{bottom:0.000000px;}
.y11_c00422{bottom:57.240000px;}
.y10_c00422{bottom:644.670000px;}
.yf_c00422{bottom:682.560000px;}
.ye_c00422{bottom:726.840000px;}
.yd_c00422{bottom:770.580000px;}
.yc_c00422{bottom:814.840290px;}
.yb_c00422{bottom:856.147860px;}
.ya_c00422{bottom:897.551550px;}
.y9_c00422{bottom:938.955240px;}
.y8_c00422{bottom:980.358930px;}
.y7_c00422{bottom:1021.762620px;}
.y6_c00422{bottom:1063.166310px;}
.y5_c00422{bottom:1131.030000px;}
.y4_c00422{bottom:1150.920000px;}
.y3_c00422{bottom:1166.404500px;}
.y2_c00422{bottom:1181.970000px;}
.y1_c00422{bottom:1197.450000px;}
.h3_c00422{height:52.971680px;}
.h2_c00422{height:52.998047px;}
.h4_c00422{height:70.664062px;}
.h5_c00422{height:96.870938px;}
.h6_c00422{height:108.843750px;}
.h0_c00422{height:1262.880000px;}
.h1_c00422{height:1263.000000px;}
.w0_c00422{width:893.070000px;}
.w1_c00422{width:893.250000px;}
.x0_c00422{left:0.000000px;}
.x3_c00422{left:127.620000px;}
.x5_c00422{left:252.360000px;}
.x4_c00422{left:396.270000px;}
.x2_c00422{left:425.160000px;}
.x1_c00422{left:446.580000px;}
.x6_c00422{left:738.540000px;}
@media print{
.v1_c00422{vertical-align:-94.080000pt;}
.v0_c00422{vertical-align:0.000000pt;}
.ls2_c00422{letter-spacing:-0.096000pt;}
.ls1_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:1118.080000pt;}
.ws0_c00422{word-spacing:0.000000pt;}
.ws2_c00422{word-spacing:0.144000pt;}
.ws1_c00422{word-spacing:0.240000pt;}
._1_c00422{margin-left:-0.940800pt;}
._0_c00422{width:1.084800pt;}
._2_c00422{width:752.000000pt;}
.fs0_c00422{font-size:48.000000pt;}
.fs1_c00422{font-size:64.000000pt;}
.fs2_c00422{font-size:85.440000pt;}
.fs3_c00422{font-size:96.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y11_c00422{bottom:50.880000pt;}
.y10_c00422{bottom:573.040000pt;}
.yf_c00422{bottom:606.720000pt;}
.ye_c00422{bottom:646.080000pt;}
.yd_c00422{bottom:684.960000pt;}
.yc_c00422{bottom:724.302480pt;}
.yb_c00422{bottom:761.020320pt;}
.ya_c00422{bottom:797.823600pt;}
.y9_c00422{bottom:834.626880pt;}
.y8_c00422{bottom:871.430160pt;}
.y7_c00422{bottom:908.233440pt;}
.y6_c00422{bottom:945.036720pt;}
.y5_c00422{bottom:1005.360000pt;}
.y4_c00422{bottom:1023.040000pt;}
.y3_c00422{bottom:1036.804000pt;}
.y2_c00422{bottom:1050.640000pt;}
.y1_c00422{bottom:1064.400000pt;}
.h3_c00422{height:47.085938pt;}
.h2_c00422{height:47.109375pt;}
.h4_c00422{height:62.812500pt;}
.h5_c00422{height:86.107500pt;}
.h6_c00422{height:96.750000pt;}
.h0_c00422{height:1122.560000pt;}
.h1_c00422{height:1122.666667pt;}
.w0_c00422{width:793.840000pt;}
.w1_c00422{width:794.000000pt;}
.x0_c00422{left:0.000000pt;}
.x3_c00422{left:113.440000pt;}
.x5_c00422{left:224.320000pt;}
.x4_c00422{left:352.240000pt;}
.x2_c00422{left:377.920000pt;}
.x1_c00422{left:396.960000pt;}
.x6_c00422{left:656.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_a1b0dff2c857f1c729d1039c.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00423{vertical-align:-82.800000px;}
.v1_c00423{vertical-align:-61.938000px;}
.v0_c00423{vertical-align:0.000000px;}
.v3_c00423{vertical-align:67.680000px;}
.lsa_c00423{letter-spacing:-0.360000px;}
.ls7_c00423{letter-spacing:-0.192240px;}
.lsb_c00423{letter-spacing:-0.096120px;}
.ls8_c00423{letter-spacing:-0.072000px;}
.lsc_c00423{letter-spacing:-0.065880px;}
.ls6_c00423{letter-spacing:0.000000px;}
.ls4_c00423{letter-spacing:0.021960px;}
.lsd_c00423{letter-spacing:0.065880px;}
.ls9_c00423{letter-spacing:0.072000px;}
.ls3_c00423{letter-spacing:0.144000px;}
.lse_c00423{letter-spacing:0.191520px;}
.ls2_c00423{letter-spacing:0.197640px;}
.ls0_c00423{letter-spacing:319.518000px;}
.ls5_c00423{letter-spacing:703.092924px;}
.ls1_c00423{letter-spacing:2233.800000px;}
.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;}
}
.ws7_c00423{word-spacing:-23.837760px;}
.ws2_c00423{word-spacing:-18.072000px;}
.ws0_c00423{word-spacing:-17.928000px;}
.ws3_c00423{word-spacing:-17.640000px;}
.ws1_c00423{word-spacing:-16.667640px;}
.ws5_c00423{word-spacing:-16.470000px;}
.ws6_c00423{word-spacing:-16.404120px;}
.ws4_c00423{word-spacing:-11.970000px;}
.ws12_c00423{word-spacing:-0.287280px;}
.wsc_c00423{word-spacing:-0.197640px;}
.wsf_c00423{word-spacing:-0.192240px;}
.ws9_c00423{word-spacing:-0.162000px;}
.wsb_c00423{word-spacing:-0.144000px;}
.wsa_c00423{word-spacing:-0.096120px;}
.wse_c00423{word-spacing:-0.095760px;}
.wsd_c00423{word-spacing:-0.072000px;}
.ws8_c00423{word-spacing:0.000000px;}
.ws10_c00423{word-spacing:0.065880px;}
.ws11_c00423{word-spacing:0.131760px;}
._2_c00423{margin-left:-1.224000px;}
._1_c00423{width:1.239948px;}
._0_c00423{width:846.000000px;}
.fc1_c00423{color:transparent;}
.fc0_c00423{color:rgb(0,0,0);}
.fs4_c00423{font-size:47.880000px;}
.fs0_c00423{font-size:54.000000px;}
.fs3_c00423{font-size:65.880000px;}
.fs1_c00423{font-size:72.000000px;}
.fs2_c00423{font-size:96.120000px;}
.y48_c00423{bottom:-15.210000px;}
.y0_c00423{bottom:0.000000px;}
.y58_c00423{bottom:2.880000px;}
.y45_c00423{bottom:2.970000px;}
.y4e_c00423{bottom:3.690000px;}
.y3c_c00423{bottom:3.780000px;}
.y3a_c00423{bottom:4.140000px;}
.y36_c00423{bottom:5.220000px;}
.y4a_c00423{bottom:5.310000px;}
.y47_c00423{bottom:22.680000px;}
.y5a_c00423{bottom:22.770000px;}
.y4d_c00423{bottom:41.670000px;}
.y39_c00423{bottom:45.540000px;}
.y69_c00423{bottom:57.240000px;}
.y34_c00423{bottom:116.820000px;}
.y33_c00423{bottom:137.520000px;}
.y32_c00423{bottom:158.220000px;}
.y68_c00423{bottom:165.870000px;}
.y31_c00423{bottom:178.920000px;}
.y67_c00423{bottom:181.890000px;}
.y30_c00423{bottom:199.620000px;}
.y66_c00423{bottom:205.560000px;}
.y2f_c00423{bottom:220.320000px;}
.y65_c00423{bottom:228.060000px;}
.y2e_c00423{bottom:241.020000px;}
.y64_c00423{bottom:250.560000px;}
.y2d_c00423{bottom:261.720000px;}
.y63_c00423{bottom:273.060000px;}
.y2c_c00423{bottom:282.420000px;}
.y62_c00423{bottom:295.560000px;}
.y2b_c00423{bottom:303.120000px;}
.y61_c00423{bottom:318.060000px;}
.y2a_c00423{bottom:323.820000px;}
.y60_c00423{bottom:340.560000px;}
.y29_c00423{bottom:344.520000px;}
.y5e_c00423{bottom:361.800000px;}
.y28_c00423{bottom:365.220000px;}
.y5d_c00423{bottom:384.480090px;}
.y27_c00423{bottom:385.920000px;}
.y5c_c00423{bottom:386.550000px;}
.y5f_c00423{bottom:403.470000px;}
.y26_c00423{bottom:406.620000px;}
.y5b_c00423{bottom:424.980000px;}
.y25_c00423{bottom:427.320000px;}
.y24_c00423{bottom:448.020000px;}
.y59_c00423{bottom:452.610000px;}
.y23_c00423{bottom:468.720000px;}
.y22_c00423{bottom:489.420000px;}
.y57_c00423{bottom:490.590000px;}
.y56_c00423{bottom:509.040000px;}
.y21_c00423{bottom:510.120000px;}
.y20_c00423{bottom:530.820000px;}
.y55_c00423{bottom:532.620000px;}
.y1f_c00423{bottom:551.520000px;}
.y54_c00423{bottom:555.120000px;}
.y1e_c00423{bottom:572.220000px;}
.y53_c00423{bottom:577.620000px;}
.y1d_c00423{bottom:592.920000px;}
.y52_c00423{bottom:600.120000px;}
.y1c_c00423{bottom:613.620000px;}
.y51_c00423{bottom:622.620000px;}
.y1b_c00423{bottom:634.320000px;}
.y50_c00423{bottom:645.120000px;}
.y1a_c00423{bottom:655.020000px;}
.y4f_c00423{bottom:667.620000px;}
.y19_c00423{bottom:675.720000px;}
.y4c_c00423{bottom:693.540000px;}
.y18_c00423{bottom:696.420000px;}
.y4b_c00423{bottom:716.220000px;}
.y17_c00423{bottom:717.120000px;}
.y16_c00423{bottom:737.820000px;}
.y49_c00423{bottom:752.670000px;}
.y15_c00423{bottom:758.520000px;}
.y14_c00423{bottom:779.220000px;}
.y46_c00423{bottom:784.260000px;}
.y13_c00423{bottom:799.920000px;}
.y12_c00423{bottom:820.620000px;}
.y44_c00423{bottom:822.150000px;}
.y11_c00423{bottom:841.230000px;}
.y43_c00423{bottom:841.410000px;}
.y10_c00423{bottom:861.930000px;}
.y42_c00423{bottom:866.160000px;}
.yf_c00423{bottom:882.630000px;}
.y41_c00423{bottom:889.740000px;}
.ye_c00423{bottom:903.330000px;}
.y40_c00423{bottom:913.410000px;}
.yd_c00423{bottom:924.030000px;}
.y3f_c00423{bottom:936.990000px;}
.yc_c00423{bottom:944.730000px;}
.y3e_c00423{bottom:960.660000px;}
.yb_c00423{bottom:965.430000px;}
.y3d_c00423{bottom:984.240000px;}
.ya_c00423{bottom:986.130000px;}
.y9_c00423{bottom:1006.830000px;}
.y3b_c00423{bottom:1007.910000px;}
.y8_c00423{bottom:1027.530000px;}
.y38_c00423{bottom:1034.910000px;}
.y7_c00423{bottom:1048.230000px;}
.y37_c00423{bottom:1059.750000px;}
.y6_c00423{bottom:1068.930000px;}
.y5_c00423{bottom:1089.630000px;}
.y35_c00423{bottom:1099.260000px;}
.y4_c00423{bottom:1131.030000px;}
.y3_c00423{bottom:1150.915500px;}
.y2_c00423{bottom:1166.400000px;}
.y1_c00423{bottom:1197.450000px;}
.h1a_c00423{height:13.770000px;}
.h14_c00423{height:16.200000px;}
.hb_c00423{height:17.010000px;}
.h19_c00423{height:18.988500px;}
.h11_c00423{height:22.498500px;}
.h12_c00423{height:22.500000px;}
.h13_c00423{height:23.578500px;}
.ha_c00423{height:23.580000px;}
.h9_c00423{height:23.670000px;}
.h10_c00423{height:23.671500px;}
.h7_c00423{height:24.750000px;}
.h4_c00423{height:27.540000px;}
.h16_c00423{height:27.630000px;}
.he_c00423{height:31.590000px;}
.hd_c00423{height:37.890000px;}
.h15_c00423{height:37.980000px;}
.hc_c00423{height:46.991602px;}
.h2_c00423{height:52.998047px;}
.hf_c00423{height:56.881500px;}
.h18_c00423{height:60.930000px;}
.h6_c00423{height:62.100000px;}
.h8_c00423{height:64.657617px;}
.h3_c00423{height:70.664062px;}
.h5_c00423{height:96.870938px;}
.h17_c00423{height:132.337617px;}
.h0_c00423{height:1262.880000px;}
.h1_c00423{height:1263.000000px;}
.w4_c00423{width:104.580000px;}
.w3_c00423{width:104.940000px;}
.w7_c00423{width:105.750000px;}
.w8_c00423{width:105.751500px;}
.w5_c00423{width:342.718500px;}
.w6_c00423{width:345.060000px;}
.w2_c00423{width:556.560000px;}
.w0_c00423{width:893.070000px;}
.w1_c00423{width:893.250000px;}
.x0_c00423{left:0.000000px;}
.xf_c00423{left:4.140000px;}
.x15_c00423{left:5.310000px;}
.xa_c00423{left:13.770000px;}
.x1a_c00423{left:17.100000px;}
.x13_c00423{left:30.240000px;}
.xc_c00423{left:34.290000px;}
.x1b_c00423{left:35.820000px;}
.x8_c00423{left:37.800000px;}
.x18_c00423{left:39.060000px;}
.x1d_c00423{left:44.100000px;}
.x12_c00423{left:49.590000px;}
.x14_c00423{left:52.290000px;}
.x10_c00423{left:54.990000px;}
.x11_c00423{left:57.780000px;}
.x1e_c00423{left:108.990000px;}
.x4_c00423{left:122.310000px;}
.xe_c00423{left:123.480000px;}
.x2_c00423{left:127.620000px;}
.x16_c00423{left:148.590000px;}
.x5_c00423{left:149.940000px;}
.x6_c00423{left:260.370000px;}
.x17_c00423{left:263.250000px;}
.x1_c00423{left:446.580000px;}
.x7_c00423{left:467.370000px;}
.x9_c00423{left:474.660000px;}
.x19_c00423{left:478.530000px;}
.xb_c00423{left:573.120000px;}
.xd_c00423{left:580.410000px;}
.x1c_c00423{left:584.280000px;}
.x1f_c00423{left:608.940000px;}
.x3_c00423{left:690.570000px;}
@media print{
.v2_c00423{vertical-align:-73.600000pt;}
.v1_c00423{vertical-align:-55.056000pt;}
.v0_c00423{vertical-align:0.000000pt;}
.v3_c00423{vertical-align:60.160000pt;}
.lsa_c00423{letter-spacing:-0.320000pt;}
.ls7_c00423{letter-spacing:-0.170880pt;}
.lsb_c00423{letter-spacing:-0.085440pt;}
.ls8_c00423{letter-spacing:-0.064000pt;}
.lsc_c00423{letter-spacing:-0.058560pt;}
.ls6_c00423{letter-spacing:0.000000pt;}
.ls4_c00423{letter-spacing:0.019520pt;}
.lsd_c00423{letter-spacing:0.058560pt;}
.ls9_c00423{letter-spacing:0.064000pt;}
.ls3_c00423{letter-spacing:0.128000pt;}
.lse_c00423{letter-spacing:0.170240pt;}
.ls2_c00423{letter-spacing:0.175680pt;}
.ls0_c00423{letter-spacing:284.016000pt;}
.ls5_c00423{letter-spacing:624.971488pt;}
.ls1_c00423{letter-spacing:1985.600000pt;}
.ws7_c00423{word-spacing:-21.189120pt;}
.ws2_c00423{word-spacing:-16.064000pt;}
.ws0_c00423{word-spacing:-15.936000pt;}
.ws3_c00423{word-spacing:-15.680000pt;}
.ws1_c00423{word-spacing:-14.815680pt;}
.ws5_c00423{word-spacing:-14.640000pt;}
.ws6_c00423{word-spacing:-14.581440pt;}
.ws4_c00423{word-spacing:-10.640000pt;}
.ws12_c00423{word-spacing:-0.255360pt;}
.wsc_c00423{word-spacing:-0.175680pt;}
.wsf_c00423{word-spacing:-0.170880pt;}
.ws9_c00423{word-spacing:-0.144000pt;}
.wsb_c00423{word-spacing:-0.128000pt;}
.wsa_c00423{word-spacing:-0.085440pt;}
.wse_c00423{word-spacing:-0.085120pt;}
.wsd_c00423{word-spacing:-0.064000pt;}
.ws8_c00423{word-spacing:0.000000pt;}
.ws10_c00423{word-spacing:0.058560pt;}
.ws11_c00423{word-spacing:0.117120pt;}
._2_c00423{margin-left:-1.088000pt;}
._1_c00423{width:1.102176pt;}
._0_c00423{width:752.000000pt;}
.fs4_c00423{font-size:42.560000pt;}
.fs0_c00423{font-size:48.000000pt;}
.fs3_c00423{font-size:58.560000pt;}
.fs1_c00423{font-size:64.000000pt;}
.fs2_c00423{font-size:85.440000pt;}
.y48_c00423{bottom:-13.520000pt;}
.y0_c00423{bottom:0.000000pt;}
.y58_c00423{bottom:2.560000pt;}
.y45_c00423{bottom:2.640000pt;}
.y4e_c00423{bottom:3.280000pt;}
.y3c_c00423{bottom:3.360000pt;}
.y3a_c00423{bottom:3.680000pt;}
.y36_c00423{bottom:4.640000pt;}
.y4a_c00423{bottom:4.720000pt;}
.y47_c00423{bottom:20.160000pt;}
.y5a_c00423{bottom:20.240000pt;}
.y4d_c00423{bottom:37.040000pt;}
.y39_c00423{bottom:40.480000pt;}
.y69_c00423{bottom:50.880000pt;}
.y34_c00423{bottom:103.840000pt;}
.y33_c00423{bottom:122.240000pt;}
.y32_c00423{bottom:140.640000pt;}
.y68_c00423{bottom:147.440000pt;}
.y31_c00423{bottom:159.040000pt;}
.y67_c00423{bottom:161.680000pt;}
.y30_c00423{bottom:177.440000pt;}
.y66_c00423{bottom:182.720000pt;}
.y2f_c00423{bottom:195.840000pt;}
.y65_c00423{bottom:202.720000pt;}
.y2e_c00423{bottom:214.240000pt;}
.y64_c00423{bottom:222.720000pt;}
.y2d_c00423{bottom:232.640000pt;}
.y63_c00423{bottom:242.720000pt;}
.y2c_c00423{bottom:251.040000pt;}
.y62_c00423{bottom:262.720000pt;}
.y2b_c00423{bottom:269.440000pt;}
.y61_c00423{bottom:282.720000pt;}
.y2a_c00423{bottom:287.840000pt;}
.y60_c00423{bottom:302.720000pt;}
.y29_c00423{bottom:306.240000pt;}
.y5e_c00423{bottom:321.600000pt;}
.y28_c00423{bottom:324.640000pt;}
.y5d_c00423{bottom:341.760080pt;}
.y27_c00423{bottom:343.040000pt;}
.y5c_c00423{bottom:343.600000pt;}
.y5f_c00423{bottom:358.640000pt;}
.y26_c00423{bottom:361.440000pt;}
.y5b_c00423{bottom:377.760000pt;}
.y25_c00423{bottom:379.840000pt;}
.y24_c00423{bottom:398.240000pt;}
.y59_c00423{bottom:402.320000pt;}
.y23_c00423{bottom:416.640000pt;}
.y22_c00423{bottom:435.040000pt;}
.y57_c00423{bottom:436.080000pt;}
.y56_c00423{bottom:452.480000pt;}
.y21_c00423{bottom:453.440000pt;}
.y20_c00423{bottom:471.840000pt;}
.y55_c00423{bottom:473.440000pt;}
.y1f_c00423{bottom:490.240000pt;}
.y54_c00423{bottom:493.440000pt;}
.y1e_c00423{bottom:508.640000pt;}
.y53_c00423{bottom:513.440000pt;}
.y1d_c00423{bottom:527.040000pt;}
.y52_c00423{bottom:533.440000pt;}
.y1c_c00423{bottom:545.440000pt;}
.y51_c00423{bottom:553.440000pt;}
.y1b_c00423{bottom:563.840000pt;}
.y50_c00423{bottom:573.440000pt;}
.y1a_c00423{bottom:582.240000pt;}
.y4f_c00423{bottom:593.440000pt;}
.y19_c00423{bottom:600.640000pt;}
.y4c_c00423{bottom:616.480000pt;}
.y18_c00423{bottom:619.040000pt;}
.y4b_c00423{bottom:636.640000pt;}
.y17_c00423{bottom:637.440000pt;}
.y16_c00423{bottom:655.840000pt;}
.y49_c00423{bottom:669.040000pt;}
.y15_c00423{bottom:674.240000pt;}
.y14_c00423{bottom:692.640000pt;}
.y46_c00423{bottom:697.120000pt;}
.y13_c00423{bottom:711.040000pt;}
.y12_c00423{bottom:729.440000pt;}
.y44_c00423{bottom:730.800000pt;}
.y11_c00423{bottom:747.760000pt;}
.y43_c00423{bottom:747.920000pt;}
.y10_c00423{bottom:766.160000pt;}
.y42_c00423{bottom:769.920000pt;}
.yf_c00423{bottom:784.560000pt;}
.y41_c00423{bottom:790.880000pt;}
.ye_c00423{bottom:802.960000pt;}
.y40_c00423{bottom:811.920000pt;}
.yd_c00423{bottom:821.360000pt;}
.y3f_c00423{bottom:832.880000pt;}
.yc_c00423{bottom:839.760000pt;}
.y3e_c00423{bottom:853.920000pt;}
.yb_c00423{bottom:858.160000pt;}
.y3d_c00423{bottom:874.880000pt;}
.ya_c00423{bottom:876.560000pt;}
.y9_c00423{bottom:894.960000pt;}
.y3b_c00423{bottom:895.920000pt;}
.y8_c00423{bottom:913.360000pt;}
.y38_c00423{bottom:919.920000pt;}
.y7_c00423{bottom:931.760000pt;}
.y37_c00423{bottom:942.000000pt;}
.y6_c00423{bottom:950.160000pt;}
.y5_c00423{bottom:968.560000pt;}
.y35_c00423{bottom:977.120000pt;}
.y4_c00423{bottom:1005.360000pt;}
.y3_c00423{bottom:1023.036000pt;}
.y2_c00423{bottom:1036.800000pt;}
.y1_c00423{bottom:1064.400000pt;}
.h1a_c00423{height:12.240000pt;}
.h14_c00423{height:14.400000pt;}
.hb_c00423{height:15.120000pt;}
.h19_c00423{height:16.878667pt;}
.h11_c00423{height:19.998667pt;}
.h12_c00423{height:20.000000pt;}
.h13_c00423{height:20.958667pt;}
.ha_c00423{height:20.960000pt;}
.h9_c00423{height:21.040000pt;}
.h10_c00423{height:21.041333pt;}
.h7_c00423{height:22.000000pt;}
.h4_c00423{height:24.480000pt;}
.h16_c00423{height:24.560000pt;}
.he_c00423{height:28.080000pt;}
.hd_c00423{height:33.680000pt;}
.h15_c00423{height:33.760000pt;}
.hc_c00423{height:41.770312pt;}
.h2_c00423{height:47.109375pt;}
.hf_c00423{height:50.561333pt;}
.h18_c00423{height:54.160000pt;}
.h6_c00423{height:55.200000pt;}
.h8_c00423{height:57.473437pt;}
.h3_c00423{height:62.812500pt;}
.h5_c00423{height:86.107500pt;}
.h17_c00423{height:117.633437pt;}
.h0_c00423{height:1122.560000pt;}
.h1_c00423{height:1122.666667pt;}
.w4_c00423{width:92.960000pt;}
.w3_c00423{width:93.280000pt;}
.w7_c00423{width:94.000000pt;}
.w8_c00423{width:94.001333pt;}
.w5_c00423{width:304.638667pt;}
.w6_c00423{width:306.720000pt;}
.w2_c00423{width:494.720000pt;}
.w0_c00423{width:793.840000pt;}
.w1_c00423{width:794.000000pt;}
.x0_c00423{left:0.000000pt;}
.xf_c00423{left:3.680000pt;}
.x15_c00423{left:4.720000pt;}
.xa_c00423{left:12.240000pt;}
.x1a_c00423{left:15.200000pt;}
.x13_c00423{left:26.880000pt;}
.xc_c00423{left:30.480000pt;}
.x1b_c00423{left:31.840000pt;}
.x8_c00423{left:33.600000pt;}
.x18_c00423{left:34.720000pt;}
.x1d_c00423{left:39.200000pt;}
.x12_c00423{left:44.080000pt;}
.x14_c00423{left:46.480000pt;}
.x10_c00423{left:48.880000pt;}
.x11_c00423{left:51.360000pt;}
.x1e_c00423{left:96.880000pt;}
.x4_c00423{left:108.720000pt;}
.xe_c00423{left:109.760000pt;}
.x2_c00423{left:113.440000pt;}
.x16_c00423{left:132.080000pt;}
.x5_c00423{left:133.280000pt;}
.x6_c00423{left:231.440000pt;}
.x17_c00423{left:234.000000pt;}
.x1_c00423{left:396.960000pt;}
.x7_c00423{left:415.440000pt;}
.x9_c00423{left:421.920000pt;}
.x19_c00423{left:425.360000pt;}
.xb_c00423{left:509.440000pt;}
.xd_c00423{left:515.920000pt;}
.x1c_c00423{left:519.360000pt;}
.x1f_c00423{left:541.280000pt;}
.x3_c00423{left:613.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_6b365bad2d1edbd8abe4abca.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00424{vertical-align:-82.800000px;}
.v0_c00424{vertical-align:0.000000px;}
.ls6_c00424{letter-spacing:-0.192240px;}
.ls5_c00424{letter-spacing:-0.108000px;}
.ls7_c00424{letter-spacing:-0.065880px;}
.ls4_c00424{letter-spacing:0.000000px;}
.ls3_c00424{letter-spacing:0.021960px;}
.ls8_c00424{letter-spacing:0.065880px;}
.ls2_c00424{letter-spacing:0.090000px;}
.ls9_c00424{letter-spacing:0.192240px;}
.ls1_c00424{letter-spacing:0.197640px;}
.ls0_c00424{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws3_c00424{word-spacing:-16.535880px;}
.ws1_c00424{word-spacing:-16.470000px;}
.ws2_c00424{word-spacing:-16.404120px;}
.ws4_c00424{word-spacing:-11.970000px;}
.wsd_c00424{word-spacing:-0.480600px;}
.wsb_c00424{word-spacing:-0.197640px;}
.ws8_c00424{word-spacing:-0.096120px;}
.wsc_c00424{word-spacing:-0.095760px;}
.ws5_c00424{word-spacing:0.000000px;}
.ws9_c00424{word-spacing:0.065880px;}
.wsa_c00424{word-spacing:0.131760px;}
.ws7_c00424{word-spacing:0.162000px;}
.ws6_c00424{word-spacing:0.270000px;}
._1_c00424{margin-left:-1.058400px;}
._0_c00424{width:1.220400px;}
.fc1_c00424{color:transparent;}
.fc0_c00424{color:rgb(0,0,0);}
.fs4_c00424{font-size:47.880000px;}
.fs0_c00424{font-size:54.000000px;}
.fs3_c00424{font-size:65.880000px;}
.fs1_c00424{font-size:72.000000px;}
.fs2_c00424{font-size:96.120000px;}
.y46_c00424{bottom:-15.210000px;}
.y0_c00424{bottom:0.000000px;}
.y43_c00424{bottom:2.880000px;}
.y39_c00424{bottom:3.780000px;}
.y35_c00424{bottom:5.220000px;}
.y45_c00424{bottom:22.770000px;}
.y38_c00424{bottom:41.760000px;}
.y60_c00424{bottom:57.240000px;}
.y5f_c00424{bottom:156.150000px;}
.y33_c00424{bottom:158.220000px;}
.y32_c00424{bottom:178.920000px;}
.y5e_c00424{bottom:180.900000px;}
.y31_c00424{bottom:199.620000px;}
.y5d_c00424{bottom:204.480000px;}
.y30_c00424{bottom:220.320000px;}
.y5c_c00424{bottom:226.980000px;}
.y2f_c00424{bottom:241.020000px;}
.y5b_c00424{bottom:249.480000px;}
.y2e_c00424{bottom:261.720000px;}
.y5a_c00424{bottom:271.980000px;}
.y2d_c00424{bottom:282.420000px;}
.y59_c00424{bottom:294.480000px;}
.y2c_c00424{bottom:303.120000px;}
.y58_c00424{bottom:316.980000px;}
.y2b_c00424{bottom:323.820000px;}
.y57_c00424{bottom:339.480000px;}
.y2a_c00424{bottom:344.520000px;}
.y56_c00424{bottom:360.720000px;}
.y29_c00424{bottom:365.220000px;}
.y55_c00424{bottom:383.490000px;}
.y28_c00424{bottom:385.920000px;}
.y27_c00424{bottom:406.620000px;}
.y54_c00424{bottom:419.940000px;}
.y26_c00424{bottom:427.320000px;}
.y53_c00424{bottom:447.480000px;}
.y25_c00424{bottom:448.020000px;}
.y24_c00424{bottom:468.720000px;}
.y52_c00424{bottom:485.460000px;}
.y23_c00424{bottom:489.420000px;}
.y22_c00424{bottom:510.120000px;}
.y51_c00424{bottom:510.210000px;}
.y21_c00424{bottom:530.820000px;}
.y50_c00424{bottom:533.790000px;}
.y20_c00424{bottom:551.520000px;}
.y4f_c00424{bottom:556.290000px;}
.y1f_c00424{bottom:572.220000px;}
.y4e_c00424{bottom:578.790000px;}
.y1e_c00424{bottom:592.920000px;}
.y4d_c00424{bottom:601.290000px;}
.y1d_c00424{bottom:613.620000px;}
.y4c_c00424{bottom:623.790000px;}
.y1c_c00424{bottom:634.320000px;}
.y4b_c00424{bottom:646.290000px;}
.y1b_c00424{bottom:655.020000px;}
.y4a_c00424{bottom:668.790000px;}
.y1a_c00424{bottom:675.720000px;}
.y49_c00424{bottom:690.030000px;}
.y19_c00424{bottom:696.420000px;}
.y48_c00424{bottom:712.800000px;}
.y18_c00424{bottom:717.120000px;}
.y17_c00424{bottom:737.820000px;}
.y47_c00424{bottom:749.250000px;}
.y16_c00424{bottom:758.520000px;}
.y44_c00424{bottom:776.790000px;}
.y15_c00424{bottom:779.220000px;}
.y14_c00424{bottom:799.920000px;}
.y42_c00424{bottom:814.770000px;}
.y13_c00424{bottom:820.620000px;}
.y41_c00424{bottom:839.520000px;}
.y12_c00424{bottom:841.230000px;}
.y11_c00424{bottom:861.930000px;}
.y40_c00424{bottom:863.100000px;}
.y10_c00424{bottom:882.630000px;}
.y3f_c00424{bottom:885.600000px;}
.yf_c00424{bottom:903.330000px;}
.y3e_c00424{bottom:908.100000px;}
.ye_c00424{bottom:924.030000px;}
.y3d_c00424{bottom:930.600000px;}
.yd_c00424{bottom:944.730000px;}
.y3c_c00424{bottom:953.100000px;}
.yc_c00424{bottom:965.430000px;}
.y3b_c00424{bottom:975.600000px;}
.yb_c00424{bottom:986.130000px;}
.y3a_c00424{bottom:998.100000px;}
.ya_c00424{bottom:1006.830000px;}
.y37_c00424{bottom:1019.340000px;}
.y9_c00424{bottom:1027.530000px;}
.y36_c00424{bottom:1042.110000px;}
.y8_c00424{bottom:1048.230000px;}
.y7_c00424{bottom:1068.930000px;}
.y34_c00424{bottom:1078.560000px;}
.y6_c00424{bottom:1110.330000px;}
.y5_c00424{bottom:1131.030000px;}
.y4_c00424{bottom:1150.920000px;}
.y3_c00424{bottom:1166.404500px;}
.y2_c00424{bottom:1181.970000px;}
.y1_c00424{bottom:1197.450000px;}
.h10_c00424{height:18.988500px;}
.h9_c00424{height:18.990000px;}
.ha_c00424{height:22.498500px;}
.hb_c00424{height:22.500000px;}
.hc_c00424{height:23.578500px;}
.hf_c00424{height:23.580000px;}
.h5_c00424{height:27.540000px;}
.he_c00424{height:37.980000px;}
.hd_c00424{height:46.991602px;}
.h3_c00424{height:52.971680px;}
.h2_c00424{height:52.998047px;}
.h8_c00424{height:56.970000px;}
.h7_c00424{height:64.657617px;}
.h4_c00424{height:70.664062px;}
.h6_c00424{height:96.870938px;}
.h0_c00424{height:1262.880000px;}
.h1_c00424{height:1263.000000px;}
.w5_c00424{width:104.580000px;}
.w4_c00424{width:104.940000px;}
.w8_c00424{width:105.750000px;}
.w9_c00424{width:105.751500px;}
.w6_c00424{width:342.718500px;}
.w7_c00424{width:345.060000px;}
.w3_c00424{width:556.560000px;}
.w2_c00424{width:893.031000px;}
.w0_c00424{width:893.070000px;}
.w1_c00424{width:893.250000px;}
.x0_c00424{left:0.000000px;}
.x11_c00424{left:4.140000px;}
.x17_c00424{left:5.310000px;}
.xc_c00424{left:17.100000px;}
.x16_c00424{left:30.240000px;}
.xe_c00424{left:35.820000px;}
.xa_c00424{left:39.060000px;}
.x15_c00424{left:41.310000px;}
.x13_c00424{left:42.660000px;}
.x1b_c00424{left:44.100000px;}
.x14_c00424{left:49.590000px;}
.x19_c00424{left:52.290000px;}
.x12_c00424{left:54.990000px;}
.x1a_c00424{left:57.780000px;}
.x7_c00424{left:118.620000px;}
.x6_c00424{left:122.310000px;}
.x10_c00424{left:123.480000px;}
.x3_c00424{left:127.620000px;}
.x1c_c00424{left:133.290000px;}
.x18_c00424{left:134.640000px;}
.x8_c00424{left:263.250000px;}
.x2_c00424{left:425.160000px;}
.x1_c00424{left:446.580000px;}
.x9_c00424{left:467.370000px;}
.xb_c00424{left:478.530000px;}
.xd_c00424{left:573.120000px;}
.xf_c00424{left:584.280000px;}
.x4_c00424{left:690.570000px;}
.x1d_c00424{left:738.540000px;}
.x5_c00424{left:906.570000px;}
@media print{
.v1_c00424{vertical-align:-73.600000pt;}
.v0_c00424{vertical-align:0.000000pt;}
.ls6_c00424{letter-spacing:-0.170880pt;}
.ls5_c00424{letter-spacing:-0.096000pt;}
.ls7_c00424{letter-spacing:-0.058560pt;}
.ls4_c00424{letter-spacing:0.000000pt;}
.ls3_c00424{letter-spacing:0.019520pt;}
.ls8_c00424{letter-spacing:0.058560pt;}
.ls2_c00424{letter-spacing:0.080000pt;}
.ls9_c00424{letter-spacing:0.170880pt;}
.ls1_c00424{letter-spacing:0.175680pt;}
.ls0_c00424{letter-spacing:1985.600000pt;}
.ws0_c00424{word-spacing:-14.815680pt;}
.ws3_c00424{word-spacing:-14.698560pt;}
.ws1_c00424{word-spacing:-14.640000pt;}
.ws2_c00424{word-spacing:-14.581440pt;}
.ws4_c00424{word-spacing:-10.640000pt;}
.wsd_c00424{word-spacing:-0.427200pt;}
.wsb_c00424{word-spacing:-0.175680pt;}
.ws8_c00424{word-spacing:-0.085440pt;}
.wsc_c00424{word-spacing:-0.085120pt;}
.ws5_c00424{word-spacing:0.000000pt;}
.ws9_c00424{word-spacing:0.058560pt;}
.wsa_c00424{word-spacing:0.117120pt;}
.ws7_c00424{word-spacing:0.144000pt;}
.ws6_c00424{word-spacing:0.240000pt;}
._1_c00424{margin-left:-0.940800pt;}
._0_c00424{width:1.084800pt;}
.fs4_c00424{font-size:42.560000pt;}
.fs0_c00424{font-size:48.000000pt;}
.fs3_c00424{font-size:58.560000pt;}
.fs1_c00424{font-size:64.000000pt;}
.fs2_c00424{font-size:85.440000pt;}
.y46_c00424{bottom:-13.520000pt;}
.y0_c00424{bottom:0.000000pt;}
.y43_c00424{bottom:2.560000pt;}
.y39_c00424{bottom:3.360000pt;}
.y35_c00424{bottom:4.640000pt;}
.y45_c00424{bottom:20.240000pt;}
.y38_c00424{bottom:37.120000pt;}
.y60_c00424{bottom:50.880000pt;}
.y5f_c00424{bottom:138.800000pt;}
.y33_c00424{bottom:140.640000pt;}
.y32_c00424{bottom:159.040000pt;}
.y5e_c00424{bottom:160.800000pt;}
.y31_c00424{bottom:177.440000pt;}
.y5d_c00424{bottom:181.760000pt;}
.y30_c00424{bottom:195.840000pt;}
.y5c_c00424{bottom:201.760000pt;}
.y2f_c00424{bottom:214.240000pt;}
.y5b_c00424{bottom:221.760000pt;}
.y2e_c00424{bottom:232.640000pt;}
.y5a_c00424{bottom:241.760000pt;}
.y2d_c00424{bottom:251.040000pt;}
.y59_c00424{bottom:261.760000pt;}
.y2c_c00424{bottom:269.440000pt;}
.y58_c00424{bottom:281.760000pt;}
.y2b_c00424{bottom:287.840000pt;}
.y57_c00424{bottom:301.760000pt;}
.y2a_c00424{bottom:306.240000pt;}
.y56_c00424{bottom:320.640000pt;}
.y29_c00424{bottom:324.640000pt;}
.y55_c00424{bottom:340.880000pt;}
.y28_c00424{bottom:343.040000pt;}
.y27_c00424{bottom:361.440000pt;}
.y54_c00424{bottom:373.280000pt;}
.y26_c00424{bottom:379.840000pt;}
.y53_c00424{bottom:397.760000pt;}
.y25_c00424{bottom:398.240000pt;}
.y24_c00424{bottom:416.640000pt;}
.y52_c00424{bottom:431.520000pt;}
.y23_c00424{bottom:435.040000pt;}
.y22_c00424{bottom:453.440000pt;}
.y51_c00424{bottom:453.520000pt;}
.y21_c00424{bottom:471.840000pt;}
.y50_c00424{bottom:474.480000pt;}
.y20_c00424{bottom:490.240000pt;}
.y4f_c00424{bottom:494.480000pt;}
.y1f_c00424{bottom:508.640000pt;}
.y4e_c00424{bottom:514.480000pt;}
.y1e_c00424{bottom:527.040000pt;}
.y4d_c00424{bottom:534.480000pt;}
.y1d_c00424{bottom:545.440000pt;}
.y4c_c00424{bottom:554.480000pt;}
.y1c_c00424{bottom:563.840000pt;}
.y4b_c00424{bottom:574.480000pt;}
.y1b_c00424{bottom:582.240000pt;}
.y4a_c00424{bottom:594.480000pt;}
.y1a_c00424{bottom:600.640000pt;}
.y49_c00424{bottom:613.360000pt;}
.y19_c00424{bottom:619.040000pt;}
.y48_c00424{bottom:633.600000pt;}
.y18_c00424{bottom:637.440000pt;}
.y17_c00424{bottom:655.840000pt;}
.y47_c00424{bottom:666.000000pt;}
.y16_c00424{bottom:674.240000pt;}
.y44_c00424{bottom:690.480000pt;}
.y15_c00424{bottom:692.640000pt;}
.y14_c00424{bottom:711.040000pt;}
.y42_c00424{bottom:724.240000pt;}
.y13_c00424{bottom:729.440000pt;}
.y41_c00424{bottom:746.240000pt;}
.y12_c00424{bottom:747.760000pt;}
.y11_c00424{bottom:766.160000pt;}
.y40_c00424{bottom:767.200000pt;}
.y10_c00424{bottom:784.560000pt;}
.y3f_c00424{bottom:787.200000pt;}
.yf_c00424{bottom:802.960000pt;}
.y3e_c00424{bottom:807.200000pt;}
.ye_c00424{bottom:821.360000pt;}
.y3d_c00424{bottom:827.200000pt;}
.yd_c00424{bottom:839.760000pt;}
.y3c_c00424{bottom:847.200000pt;}
.yc_c00424{bottom:858.160000pt;}
.y3b_c00424{bottom:867.200000pt;}
.yb_c00424{bottom:876.560000pt;}
.y3a_c00424{bottom:887.200000pt;}
.ya_c00424{bottom:894.960000pt;}
.y37_c00424{bottom:906.080000pt;}
.y9_c00424{bottom:913.360000pt;}
.y36_c00424{bottom:926.320000pt;}
.y8_c00424{bottom:931.760000pt;}
.y7_c00424{bottom:950.160000pt;}
.y34_c00424{bottom:958.720000pt;}
.y6_c00424{bottom:986.960000pt;}
.y5_c00424{bottom:1005.360000pt;}
.y4_c00424{bottom:1023.040000pt;}
.y3_c00424{bottom:1036.804000pt;}
.y2_c00424{bottom:1050.640000pt;}
.y1_c00424{bottom:1064.400000pt;}
.h10_c00424{height:16.878667pt;}
.h9_c00424{height:16.880000pt;}
.ha_c00424{height:19.998667pt;}
.hb_c00424{height:20.000000pt;}
.hc_c00424{height:20.958667pt;}
.hf_c00424{height:20.960000pt;}
.h5_c00424{height:24.480000pt;}
.he_c00424{height:33.760000pt;}
.hd_c00424{height:41.770312pt;}
.h3_c00424{height:47.085938pt;}
.h2_c00424{height:47.109375pt;}
.h8_c00424{height:50.640000pt;}
.h7_c00424{height:57.473437pt;}
.h4_c00424{height:62.812500pt;}
.h6_c00424{height:86.107500pt;}
.h0_c00424{height:1122.560000pt;}
.h1_c00424{height:1122.666667pt;}
.w5_c00424{width:92.960000pt;}
.w4_c00424{width:93.280000pt;}
.w8_c00424{width:94.000000pt;}
.w9_c00424{width:94.001333pt;}
.w6_c00424{width:304.638667pt;}
.w7_c00424{width:306.720000pt;}
.w3_c00424{width:494.720000pt;}
.w2_c00424{width:793.805333pt;}
.w0_c00424{width:793.840000pt;}
.w1_c00424{width:794.000000pt;}
.x0_c00424{left:0.000000pt;}
.x11_c00424{left:3.680000pt;}
.x17_c00424{left:4.720000pt;}
.xc_c00424{left:15.200000pt;}
.x16_c00424{left:26.880000pt;}
.xe_c00424{left:31.840000pt;}
.xa_c00424{left:34.720000pt;}
.x15_c00424{left:36.720000pt;}
.x13_c00424{left:37.920000pt;}
.x1b_c00424{left:39.200000pt;}
.x14_c00424{left:44.080000pt;}
.x19_c00424{left:46.480000pt;}
.x12_c00424{left:48.880000pt;}
.x1a_c00424{left:51.360000pt;}
.x7_c00424{left:105.440000pt;}
.x6_c00424{left:108.720000pt;}
.x10_c00424{left:109.760000pt;}
.x3_c00424{left:113.440000pt;}
.x1c_c00424{left:118.480000pt;}
.x18_c00424{left:119.680000pt;}
.x8_c00424{left:234.000000pt;}
.x2_c00424{left:377.920000pt;}
.x1_c00424{left:396.960000pt;}
.x9_c00424{left:415.440000pt;}
.xb_c00424{left:425.360000pt;}
.xd_c00424{left:509.440000pt;}
.xf_c00424{left:519.360000pt;}
.x4_c00424{left:613.840000pt;}
.x1d_c00424{left:656.480000pt;}
.x5_c00424{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_26dbc3f1d08fd61baf5bb9b5.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00425{vertical-align:-82.800000px;}
.v1_c00425{vertical-align:-61.938000px;}
.v0_c00425{vertical-align:0.000000px;}
.ls5_c00425{letter-spacing:-0.192240px;}
.ls6_c00425{letter-spacing:-0.065880px;}
.ls4_c00425{letter-spacing:0.000000px;}
.ls3_c00425{letter-spacing:0.021960px;}
.ls7_c00425{letter-spacing:0.065880px;}
.ls8_c00425{letter-spacing:0.192240px;}
.ls2_c00425{letter-spacing:0.197640px;}
.ls0_c00425{letter-spacing:319.518000px;}
.ls1_c00425{letter-spacing:2233.800000px;}
.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:-24.030000px;}
.ws1_c00425{word-spacing:-23.837760px;}
.ws2_c00425{word-spacing:-16.667640px;}
.ws3_c00425{word-spacing:-16.470000px;}
.ws4_c00425{word-spacing:-16.404120px;}
.ws5_c00425{word-spacing:-11.970000px;}
.wsd_c00425{word-spacing:-0.480600px;}
.wsb_c00425{word-spacing:-0.197640px;}
.ws7_c00425{word-spacing:-0.162000px;}
.ws8_c00425{word-spacing:-0.096120px;}
.wsc_c00425{word-spacing:-0.095760px;}
.ws6_c00425{word-spacing:0.000000px;}
.ws9_c00425{word-spacing:0.065880px;}
.wsa_c00425{word-spacing:0.131760px;}
._2_c00425{margin-left:-1.199160px;}
._1_c00425{width:1.131120px;}
._0_c00425{width:846.000000px;}
.fc1_c00425{color:transparent;}
.fc0_c00425{color:rgb(0,0,0);}
.fs4_c00425{font-size:47.880000px;}
.fs0_c00425{font-size:54.000000px;}
.fs3_c00425{font-size:65.880000px;}
.fs1_c00425{font-size:72.000000px;}
.fs2_c00425{font-size:96.120000px;}
.y45_c00425{bottom:-15.210000px;}
.y0_c00425{bottom:0.000000px;}
.y42_c00425{bottom:2.880000px;}
.y54_c00425{bottom:2.970000px;}
.y52_c00425{bottom:3.690000px;}
.y38_c00425{bottom:3.780000px;}
.y34_c00425{bottom:5.220000px;}
.y47_c00425{bottom:5.310000px;}
.y56_c00425{bottom:22.680000px;}
.y44_c00425{bottom:22.770000px;}
.y4a_c00425{bottom:41.670000px;}
.y37_c00425{bottom:41.760000px;}
.y63_c00425{bottom:57.240000px;}
.y32_c00425{bottom:158.220000px;}
.y31_c00425{bottom:178.920000px;}
.y62_c00425{bottom:180.450000px;}
.y61_c00425{bottom:196.470000px;}
.y30_c00425{bottom:199.620000px;}
.y60_c00425{bottom:220.140000px;}
.y2f_c00425{bottom:220.320000px;}
.y2e_c00425{bottom:241.020000px;}
.y5f_c00425{bottom:242.640000px;}
.y2d_c00425{bottom:261.720000px;}
.y5e_c00425{bottom:265.140000px;}
.y2c_c00425{bottom:282.420000px;}
.y5d_c00425{bottom:287.640000px;}
.y2b_c00425{bottom:303.120000px;}
.y5c_c00425{bottom:310.140000px;}
.y2a_c00425{bottom:323.820000px;}
.y5b_c00425{bottom:332.640000px;}
.y29_c00425{bottom:344.520000px;}
.y5a_c00425{bottom:355.140000px;}
.y28_c00425{bottom:365.220000px;}
.y59_c00425{bottom:376.380000px;}
.y27_c00425{bottom:385.920000px;}
.y58_c00425{bottom:399.060000px;}
.y26_c00425{bottom:406.620000px;}
.y25_c00425{bottom:427.320000px;}
.y57_c00425{bottom:435.510000px;}
.y24_c00425{bottom:448.020000px;}
.y55_c00425{bottom:463.140000px;}
.y23_c00425{bottom:468.720000px;}
.y22_c00425{bottom:489.420000px;}
.y53_c00425{bottom:501.030000px;}
.y21_c00425{bottom:510.120000px;}
.y51_c00425{bottom:517.140000px;}
.y20_c00425{bottom:530.820000px;}
.y50_c00425{bottom:540.720000px;}
.y1f_c00425{bottom:551.520000px;}
.y4f_c00425{bottom:563.220000px;}
.y1e_c00425{bottom:572.220000px;}
.y4e_c00425{bottom:585.720000px;}
.y1d_c00425{bottom:592.920000px;}
.y4d_c00425{bottom:608.220000px;}
.y1c_c00425{bottom:613.620000px;}
.y4c_c00425{bottom:630.720000px;}
.y1b_c00425{bottom:634.320000px;}
.y4b_c00425{bottom:653.220000px;}
.y1a_c00425{bottom:655.020000px;}
.y19_c00425{bottom:675.720000px;}
.y18_c00425{bottom:696.420000px;}
.y49_c00425{bottom:696.960000px;}
.y17_c00425{bottom:717.120000px;}
.y48_c00425{bottom:719.730000px;}
.y16_c00425{bottom:737.820000px;}
.y46_c00425{bottom:756.090000px;}
.y15_c00425{bottom:758.520000px;}
.y14_c00425{bottom:779.220000px;}
.y43_c00425{bottom:783.720000px;}
.y13_c00425{bottom:799.920000px;}
.y12_c00425{bottom:820.620000px;}
.y41_c00425{bottom:821.700000px;}
.y40_c00425{bottom:839.520000px;}
.y11_c00425{bottom:841.230000px;}
.y10_c00425{bottom:861.930000px;}
.y3f_c00425{bottom:863.100000px;}
.yf_c00425{bottom:882.630000px;}
.y3e_c00425{bottom:885.600000px;}
.ye_c00425{bottom:903.330000px;}
.y3d_c00425{bottom:908.100000px;}
.yd_c00425{bottom:924.030000px;}
.y3c_c00425{bottom:930.600000px;}
.yc_c00425{bottom:944.730000px;}
.y3b_c00425{bottom:953.100000px;}
.yb_c00425{bottom:965.430000px;}
.y3a_c00425{bottom:975.600000px;}
.ya_c00425{bottom:986.130000px;}
.y39_c00425{bottom:998.100000px;}
.y9_c00425{bottom:1006.830000px;}
.y36_c00425{bottom:1019.340000px;}
.y8_c00425{bottom:1027.530000px;}
.y35_c00425{bottom:1042.110000px;}
.y7_c00425{bottom:1048.230000px;}
.y6_c00425{bottom:1068.930000px;}
.y33_c00425{bottom:1078.560000px;}
.y5_c00425{bottom:1110.330000px;}
.y4_c00425{bottom:1131.030000px;}
.y3_c00425{bottom:1150.915500px;}
.y2_c00425{bottom:1166.400000px;}
.y1_c00425{bottom:1197.450000px;}
.h16_c00425{height:13.770000px;}
.h11_c00425{height:13.860000px;}
.hc_c00425{height:15.570000px;}
.h14_c00425{height:18.988500px;}
.h8_c00425{height:18.990000px;}
.h9_c00425{height:22.498500px;}
.ha_c00425{height:22.500000px;}
.hb_c00425{height:23.578500px;}
.h15_c00425{height:23.671500px;}
.h4_c00425{height:27.540000px;}
.hf_c00425{height:27.628500px;}
.h13_c00425{height:27.630000px;}
.h12_c00425{height:37.888500px;}
.he_c00425{height:37.981500px;}
.hd_c00425{height:46.991602px;}
.h2_c00425{height:52.998047px;}
.h10_c00425{height:56.880000px;}
.h7_c00425{height:56.970000px;}
.h6_c00425{height:64.657617px;}
.h3_c00425{height:70.664062px;}
.h5_c00425{height:96.870938px;}
.h0_c00425{height:1262.880000px;}
.h1_c00425{height:1263.000000px;}
.w4_c00425{width:104.580000px;}
.w3_c00425{width:104.940000px;}
.w7_c00425{width:105.750000px;}
.w8_c00425{width:105.751500px;}
.w5_c00425{width:342.718500px;}
.w6_c00425{width:345.060000px;}
.w2_c00425{width:556.560000px;}
.w0_c00425{width:893.070000px;}
.w1_c00425{width:893.250000px;}
.x0_c00425{left:0.000000px;}
.xf_c00425{left:4.140000px;}
.x15_c00425{left:5.310000px;}
.xa_c00425{left:17.100000px;}
.x13_c00425{left:30.240000px;}
.xc_c00425{left:35.820000px;}
.x8_c00425{left:39.060000px;}
.x18_c00425{left:42.660000px;}
.x1a_c00425{left:44.100000px;}
.x12_c00425{left:49.590000px;}
.x19_c00425{left:52.290000px;}
.x11_c00425{left:55.080000px;}
.x14_c00425{left:57.780000px;}
.x10_c00425{left:63.270000px;}
.x17_c00425{left:112.680000px;}
.x4_c00425{left:122.310000px;}
.xe_c00425{left:123.480000px;}
.x2_c00425{left:127.620000px;}
.x16_c00425{left:157.950000px;}
.x5_c00425{left:159.930000px;}
.x6_c00425{left:263.250000px;}
.x1_c00425{left:446.580000px;}
.x7_c00425{left:467.370000px;}
.x9_c00425{left:478.530000px;}
.xb_c00425{left:573.120000px;}
.xd_c00425{left:584.280000px;}
.x3_c00425{left:690.570000px;}
@media print{
.v2_c00425{vertical-align:-73.600000pt;}
.v1_c00425{vertical-align:-55.056000pt;}
.v0_c00425{vertical-align:0.000000pt;}
.ls5_c00425{letter-spacing:-0.170880pt;}
.ls6_c00425{letter-spacing:-0.058560pt;}
.ls4_c00425{letter-spacing:0.000000pt;}
.ls3_c00425{letter-spacing:0.019520pt;}
.ls7_c00425{letter-spacing:0.058560pt;}
.ls8_c00425{letter-spacing:0.170880pt;}
.ls2_c00425{letter-spacing:0.175680pt;}
.ls0_c00425{letter-spacing:284.016000pt;}
.ls1_c00425{letter-spacing:1985.600000pt;}
.ws0_c00425{word-spacing:-21.360000pt;}
.ws1_c00425{word-spacing:-21.189120pt;}
.ws2_c00425{word-spacing:-14.815680pt;}
.ws3_c00425{word-spacing:-14.640000pt;}
.ws4_c00425{word-spacing:-14.581440pt;}
.ws5_c00425{word-spacing:-10.640000pt;}
.wsd_c00425{word-spacing:-0.427200pt;}
.wsb_c00425{word-spacing:-0.175680pt;}
.ws7_c00425{word-spacing:-0.144000pt;}
.ws8_c00425{word-spacing:-0.085440pt;}
.wsc_c00425{word-spacing:-0.085120pt;}
.ws6_c00425{word-spacing:0.000000pt;}
.ws9_c00425{word-spacing:0.058560pt;}
.wsa_c00425{word-spacing:0.117120pt;}
._2_c00425{margin-left:-1.065920pt;}
._1_c00425{width:1.005440pt;}
._0_c00425{width:752.000000pt;}
.fs4_c00425{font-size:42.560000pt;}
.fs0_c00425{font-size:48.000000pt;}
.fs3_c00425{font-size:58.560000pt;}
.fs1_c00425{font-size:64.000000pt;}
.fs2_c00425{font-size:85.440000pt;}
.y45_c00425{bottom:-13.520000pt;}
.y0_c00425{bottom:0.000000pt;}
.y42_c00425{bottom:2.560000pt;}
.y54_c00425{bottom:2.640000pt;}
.y52_c00425{bottom:3.280000pt;}
.y38_c00425{bottom:3.360000pt;}
.y34_c00425{bottom:4.640000pt;}
.y47_c00425{bottom:4.720000pt;}
.y56_c00425{bottom:20.160000pt;}
.y44_c00425{bottom:20.240000pt;}
.y4a_c00425{bottom:37.040000pt;}
.y37_c00425{bottom:37.120000pt;}
.y63_c00425{bottom:50.880000pt;}
.y32_c00425{bottom:140.640000pt;}
.y31_c00425{bottom:159.040000pt;}
.y62_c00425{bottom:160.400000pt;}
.y61_c00425{bottom:174.640000pt;}
.y30_c00425{bottom:177.440000pt;}
.y60_c00425{bottom:195.680000pt;}
.y2f_c00425{bottom:195.840000pt;}
.y2e_c00425{bottom:214.240000pt;}
.y5f_c00425{bottom:215.680000pt;}
.y2d_c00425{bottom:232.640000pt;}
.y5e_c00425{bottom:235.680000pt;}
.y2c_c00425{bottom:251.040000pt;}
.y5d_c00425{bottom:255.680000pt;}
.y2b_c00425{bottom:269.440000pt;}
.y5c_c00425{bottom:275.680000pt;}
.y2a_c00425{bottom:287.840000pt;}
.y5b_c00425{bottom:295.680000pt;}
.y29_c00425{bottom:306.240000pt;}
.y5a_c00425{bottom:315.680000pt;}
.y28_c00425{bottom:324.640000pt;}
.y59_c00425{bottom:334.560000pt;}
.y27_c00425{bottom:343.040000pt;}
.y58_c00425{bottom:354.720000pt;}
.y26_c00425{bottom:361.440000pt;}
.y25_c00425{bottom:379.840000pt;}
.y57_c00425{bottom:387.120000pt;}
.y24_c00425{bottom:398.240000pt;}
.y55_c00425{bottom:411.680000pt;}
.y23_c00425{bottom:416.640000pt;}
.y22_c00425{bottom:435.040000pt;}
.y53_c00425{bottom:445.360000pt;}
.y21_c00425{bottom:453.440000pt;}
.y51_c00425{bottom:459.680000pt;}
.y20_c00425{bottom:471.840000pt;}
.y50_c00425{bottom:480.640000pt;}
.y1f_c00425{bottom:490.240000pt;}
.y4f_c00425{bottom:500.640000pt;}
.y1e_c00425{bottom:508.640000pt;}
.y4e_c00425{bottom:520.640000pt;}
.y1d_c00425{bottom:527.040000pt;}
.y4d_c00425{bottom:540.640000pt;}
.y1c_c00425{bottom:545.440000pt;}
.y4c_c00425{bottom:560.640000pt;}
.y1b_c00425{bottom:563.840000pt;}
.y4b_c00425{bottom:580.640000pt;}
.y1a_c00425{bottom:582.240000pt;}
.y19_c00425{bottom:600.640000pt;}
.y18_c00425{bottom:619.040000pt;}
.y49_c00425{bottom:619.520000pt;}
.y17_c00425{bottom:637.440000pt;}
.y48_c00425{bottom:639.760000pt;}
.y16_c00425{bottom:655.840000pt;}
.y46_c00425{bottom:672.080000pt;}
.y15_c00425{bottom:674.240000pt;}
.y14_c00425{bottom:692.640000pt;}
.y43_c00425{bottom:696.640000pt;}
.y13_c00425{bottom:711.040000pt;}
.y12_c00425{bottom:729.440000pt;}
.y41_c00425{bottom:730.400000pt;}
.y40_c00425{bottom:746.240000pt;}
.y11_c00425{bottom:747.760000pt;}
.y10_c00425{bottom:766.160000pt;}
.y3f_c00425{bottom:767.200000pt;}
.yf_c00425{bottom:784.560000pt;}
.y3e_c00425{bottom:787.200000pt;}
.ye_c00425{bottom:802.960000pt;}
.y3d_c00425{bottom:807.200000pt;}
.yd_c00425{bottom:821.360000pt;}
.y3c_c00425{bottom:827.200000pt;}
.yc_c00425{bottom:839.760000pt;}
.y3b_c00425{bottom:847.200000pt;}
.yb_c00425{bottom:858.160000pt;}
.y3a_c00425{bottom:867.200000pt;}
.ya_c00425{bottom:876.560000pt;}
.y39_c00425{bottom:887.200000pt;}
.y9_c00425{bottom:894.960000pt;}
.y36_c00425{bottom:906.080000pt;}
.y8_c00425{bottom:913.360000pt;}
.y35_c00425{bottom:926.320000pt;}
.y7_c00425{bottom:931.760000pt;}
.y6_c00425{bottom:950.160000pt;}
.y33_c00425{bottom:958.720000pt;}
.y5_c00425{bottom:986.960000pt;}
.y4_c00425{bottom:1005.360000pt;}
.y3_c00425{bottom:1023.036000pt;}
.y2_c00425{bottom:1036.800000pt;}
.y1_c00425{bottom:1064.400000pt;}
.h16_c00425{height:12.240000pt;}
.h11_c00425{height:12.320000pt;}
.hc_c00425{height:13.840000pt;}
.h14_c00425{height:16.878667pt;}
.h8_c00425{height:16.880000pt;}
.h9_c00425{height:19.998667pt;}
.ha_c00425{height:20.000000pt;}
.hb_c00425{height:20.958667pt;}
.h15_c00425{height:21.041333pt;}
.h4_c00425{height:24.480000pt;}
.hf_c00425{height:24.558667pt;}
.h13_c00425{height:24.560000pt;}
.h12_c00425{height:33.678667pt;}
.he_c00425{height:33.761333pt;}
.hd_c00425{height:41.770312pt;}
.h2_c00425{height:47.109375pt;}
.h10_c00425{height:50.560000pt;}
.h7_c00425{height:50.640000pt;}
.h6_c00425{height:57.473437pt;}
.h3_c00425{height:62.812500pt;}
.h5_c00425{height:86.107500pt;}
.h0_c00425{height:1122.560000pt;}
.h1_c00425{height:1122.666667pt;}
.w4_c00425{width:92.960000pt;}
.w3_c00425{width:93.280000pt;}
.w7_c00425{width:94.000000pt;}
.w8_c00425{width:94.001333pt;}
.w5_c00425{width:304.638667pt;}
.w6_c00425{width:306.720000pt;}
.w2_c00425{width:494.720000pt;}
.w0_c00425{width:793.840000pt;}
.w1_c00425{width:794.000000pt;}
.x0_c00425{left:0.000000pt;}
.xf_c00425{left:3.680000pt;}
.x15_c00425{left:4.720000pt;}
.xa_c00425{left:15.200000pt;}
.x13_c00425{left:26.880000pt;}
.xc_c00425{left:31.840000pt;}
.x8_c00425{left:34.720000pt;}
.x18_c00425{left:37.920000pt;}
.x1a_c00425{left:39.200000pt;}
.x12_c00425{left:44.080000pt;}
.x19_c00425{left:46.480000pt;}
.x11_c00425{left:48.960000pt;}
.x14_c00425{left:51.360000pt;}
.x10_c00425{left:56.240000pt;}
.x17_c00425{left:100.160000pt;}
.x4_c00425{left:108.720000pt;}
.xe_c00425{left:109.760000pt;}
.x2_c00425{left:113.440000pt;}
.x16_c00425{left:140.400000pt;}
.x5_c00425{left:142.160000pt;}
.x6_c00425{left:234.000000pt;}
.x1_c00425{left:396.960000pt;}
.x7_c00425{left:415.440000pt;}
.x9_c00425{left:425.360000pt;}
.xb_c00425{left:509.440000pt;}
.xd_c00425{left:519.360000pt;}
.x3_c00425{left:613.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_a3bf32ec423703a2d1bc91e3.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00426{vertical-align:-82.800000px;}
.v0_c00426{vertical-align:0.000000px;}
.lsa_c00426{letter-spacing:-0.263520px;}
.ls6_c00426{letter-spacing:-0.192240px;}
.ls5_c00426{letter-spacing:-0.108000px;}
.ls7_c00426{letter-spacing:-0.065880px;}
.ls4_c00426{letter-spacing:0.000000px;}
.ls2_c00426{letter-spacing:0.021960px;}
.ls8_c00426{letter-spacing:0.065880px;}
.ls3_c00426{letter-spacing:0.090000px;}
.ls9_c00426{letter-spacing:0.192240px;}
.ls1_c00426{letter-spacing:0.197640px;}
.ls0_c00426{letter-spacing:2233.800000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:-16.667640px;}
.ws1_c00426{word-spacing:-16.470000px;}
.ws2_c00426{word-spacing:-16.404120px;}
.ws4_c00426{word-spacing:-16.206480px;}
.ws3_c00426{word-spacing:-11.970000px;}
.wsd_c00426{word-spacing:-0.480600px;}
.wsb_c00426{word-spacing:-0.197640px;}
.ws8_c00426{word-spacing:-0.096120px;}
.wsc_c00426{word-spacing:-0.095760px;}
.ws5_c00426{word-spacing:0.000000px;}
.ws9_c00426{word-spacing:0.065880px;}
.wsa_c00426{word-spacing:0.131760px;}
.ws7_c00426{word-spacing:0.162000px;}
.ws6_c00426{word-spacing:0.270000px;}
.wse_c00426{word-spacing:0.527040px;}
._1_c00426{margin-left:-1.058400px;}
._0_c00426{width:1.220400px;}
.fc1_c00426{color:transparent;}
.fc0_c00426{color:rgb(0,0,0);}
.fs4_c00426{font-size:47.880000px;}
.fs0_c00426{font-size:54.000000px;}
.fs3_c00426{font-size:65.880000px;}
.fs1_c00426{font-size:72.000000px;}
.fs2_c00426{font-size:96.120000px;}
.y47_c00426{bottom:-15.210000px;}
.y0_c00426{bottom:0.000000px;}
.y44_c00426{bottom:2.880000px;}
.y54_c00426{bottom:2.970000px;}
.y57_c00426{bottom:3.690000px;}
.y3a_c00426{bottom:3.780000px;}
.y36_c00426{bottom:5.220000px;}
.y56_c00426{bottom:22.680000px;}
.y46_c00426{bottom:22.770000px;}
.y39_c00426{bottom:41.760000px;}
.y65_c00426{bottom:57.240000px;}
.y34_c00426{bottom:137.520000px;}
.y64_c00426{bottom:143.820000px;}
.y33_c00426{bottom:158.220000px;}
.y63_c00426{bottom:160.020000px;}
.y62_c00426{bottom:178.470000px;}
.y32_c00426{bottom:178.920000px;}
.y31_c00426{bottom:199.620000px;}
.y61_c00426{bottom:202.140000px;}
.y30_c00426{bottom:220.320000px;}
.y60_c00426{bottom:224.640000px;}
.y2f_c00426{bottom:241.020000px;}
.y5f_c00426{bottom:247.140000px;}
.y2e_c00426{bottom:261.720000px;}
.y5e_c00426{bottom:269.640000px;}
.y2d_c00426{bottom:282.420000px;}
.y5d_c00426{bottom:292.140000px;}
.y2c_c00426{bottom:303.120000px;}
.y5c_c00426{bottom:314.640000px;}
.y2b_c00426{bottom:323.820000px;}
.y5b_c00426{bottom:337.140000px;}
.y2a_c00426{bottom:344.520000px;}
.y5a_c00426{bottom:362.970000px;}
.y29_c00426{bottom:365.220000px;}
.y59_c00426{bottom:385.740000px;}
.y28_c00426{bottom:385.920000px;}
.y27_c00426{bottom:406.620000px;}
.y58_c00426{bottom:422.190000px;}
.y26_c00426{bottom:427.320000px;}
.y25_c00426{bottom:448.020000px;}
.y55_c00426{bottom:452.340000px;}
.y24_c00426{bottom:468.720000px;}
.y23_c00426{bottom:489.420000px;}
.y53_c00426{bottom:490.230000px;}
.y52_c00426{bottom:509.580000px;}
.y22_c00426{bottom:510.120000px;}
.y21_c00426{bottom:530.820000px;}
.y51_c00426{bottom:533.250000px;}
.y20_c00426{bottom:551.520000px;}
.y50_c00426{bottom:555.750000px;}
.y1f_c00426{bottom:572.220000px;}
.y4f_c00426{bottom:578.250000px;}
.y1e_c00426{bottom:592.920000px;}
.y4e_c00426{bottom:600.750000px;}
.y1d_c00426{bottom:613.620000px;}
.y4d_c00426{bottom:623.250000px;}
.y1c_c00426{bottom:634.320000px;}
.y4c_c00426{bottom:645.750000px;}
.y1b_c00426{bottom:655.020000px;}
.y4b_c00426{bottom:668.250000px;}
.y1a_c00426{bottom:675.720000px;}
.y4a_c00426{bottom:694.080000px;}
.y19_c00426{bottom:696.420000px;}
.y49_c00426{bottom:716.850000px;}
.y18_c00426{bottom:717.120000px;}
.y17_c00426{bottom:737.820000px;}
.y48_c00426{bottom:753.300000px;}
.y16_c00426{bottom:758.520000px;}
.y15_c00426{bottom:779.220000px;}
.y45_c00426{bottom:780.840000px;}
.y14_c00426{bottom:799.920000px;}
.y43_c00426{bottom:818.820000px;}
.y13_c00426{bottom:820.620000px;}
.y42_c00426{bottom:834.840000px;}
.y12_c00426{bottom:841.230000px;}
.y41_c00426{bottom:858.510000px;}
.y11_c00426{bottom:861.930000px;}
.y40_c00426{bottom:881.010000px;}
.y10_c00426{bottom:882.630000px;}
.yf_c00426{bottom:903.330000px;}
.y3f_c00426{bottom:903.510000px;}
.ye_c00426{bottom:924.030000px;}
.y3e_c00426{bottom:926.010000px;}
.yd_c00426{bottom:944.730000px;}
.y3d_c00426{bottom:948.510000px;}
.yc_c00426{bottom:965.430000px;}
.y3c_c00426{bottom:971.010000px;}
.yb_c00426{bottom:986.130000px;}
.y3b_c00426{bottom:993.510000px;}
.ya_c00426{bottom:1006.830000px;}
.y38_c00426{bottom:1019.340000px;}
.y9_c00426{bottom:1027.530000px;}
.y37_c00426{bottom:1042.110000px;}
.y8_c00426{bottom:1048.230000px;}
.y7_c00426{bottom:1068.930000px;}
.y35_c00426{bottom:1078.560000px;}
.y6_c00426{bottom:1110.330000px;}
.y5_c00426{bottom:1131.030000px;}
.y4_c00426{bottom:1150.920000px;}
.y3_c00426{bottom:1166.404500px;}
.y2_c00426{bottom:1181.970000px;}
.y1_c00426{bottom:1197.450000px;}
.hd_c00426{height:13.770000px;}
.h13_c00426{height:16.200000px;}
.h10_c00426{height:17.100000px;}
.ha_c00426{height:22.498500px;}
.hb_c00426{height:22.500000px;}
.h9_c00426{height:23.580000px;}
.hc_c00426{height:23.670000px;}
.h5_c00426{height:27.540000px;}
.h12_c00426{height:30.151500px;}
.h11_c00426{height:37.888500px;}
.hf_c00426{height:37.980000px;}
.he_c00426{height:46.991602px;}
.h3_c00426{height:52.971680px;}
.h2_c00426{height:52.998047px;}
.h8_c00426{height:56.970000px;}
.h7_c00426{height:64.657617px;}
.h4_c00426{height:70.664062px;}
.h6_c00426{height:96.870938px;}
.h0_c00426{height:1262.880000px;}
.h1_c00426{height:1263.000000px;}
.w5_c00426{width:104.580000px;}
.w4_c00426{width:104.940000px;}
.w8_c00426{width:105.750000px;}
.w9_c00426{width:105.751500px;}
.w6_c00426{width:342.718500px;}
.w7_c00426{width:345.060000px;}
.w3_c00426{width:556.560000px;}
.w2_c00426{width:893.031000px;}
.w0_c00426{width:893.070000px;}
.w1_c00426{width:893.250000px;}
.x0_c00426{left:0.000000px;}
.x11_c00426{left:4.140000px;}
.x17_c00426{left:5.310000px;}
.xc_c00426{left:17.100000px;}
.x15_c00426{left:30.240000px;}
.xe_c00426{left:35.820000px;}
.xa_c00426{left:39.060000px;}
.x1b_c00426{left:42.660000px;}
.x13_c00426{left:44.100000px;}
.x14_c00426{left:49.590000px;}
.x19_c00426{left:52.290000px;}
.x12_c00426{left:54.990000px;}
.x16_c00426{left:57.780000px;}
.x6_c00426{left:122.310000px;}
.x10_c00426{left:123.480000px;}
.x3_c00426{left:127.620000px;}
.x1a_c00426{left:135.900000px;}
.x18_c00426{left:148.590000px;}
.x7_c00426{left:151.290000px;}
.x8_c00426{left:263.250000px;}
.x2_c00426{left:425.160000px;}
.x1_c00426{left:446.580000px;}
.x9_c00426{left:467.370000px;}
.xb_c00426{left:478.530000px;}
.xd_c00426{left:573.120000px;}
.xf_c00426{left:584.280000px;}
.x4_c00426{left:690.570000px;}
.x1c_c00426{left:738.540000px;}
.x5_c00426{left:906.570000px;}
@media print{
.v1_c00426{vertical-align:-73.600000pt;}
.v0_c00426{vertical-align:0.000000pt;}
.lsa_c00426{letter-spacing:-0.234240pt;}
.ls6_c00426{letter-spacing:-0.170880pt;}
.ls5_c00426{letter-spacing:-0.096000pt;}
.ls7_c00426{letter-spacing:-0.058560pt;}
.ls4_c00426{letter-spacing:0.000000pt;}
.ls2_c00426{letter-spacing:0.019520pt;}
.ls8_c00426{letter-spacing:0.058560pt;}
.ls3_c00426{letter-spacing:0.080000pt;}
.ls9_c00426{letter-spacing:0.170880pt;}
.ls1_c00426{letter-spacing:0.175680pt;}
.ls0_c00426{letter-spacing:1985.600000pt;}
.ws0_c00426{word-spacing:-14.815680pt;}
.ws1_c00426{word-spacing:-14.640000pt;}
.ws2_c00426{word-spacing:-14.581440pt;}
.ws4_c00426{word-spacing:-14.405760pt;}
.ws3_c00426{word-spacing:-10.640000pt;}
.wsd_c00426{word-spacing:-0.427200pt;}
.wsb_c00426{word-spacing:-0.175680pt;}
.ws8_c00426{word-spacing:-0.085440pt;}
.wsc_c00426{word-spacing:-0.085120pt;}
.ws5_c00426{word-spacing:0.000000pt;}
.ws9_c00426{word-spacing:0.058560pt;}
.wsa_c00426{word-spacing:0.117120pt;}
.ws7_c00426{word-spacing:0.144000pt;}
.ws6_c00426{word-spacing:0.240000pt;}
.wse_c00426{word-spacing:0.468480pt;}
._1_c00426{margin-left:-0.940800pt;}
._0_c00426{width:1.084800pt;}
.fs4_c00426{font-size:42.560000pt;}
.fs0_c00426{font-size:48.000000pt;}
.fs3_c00426{font-size:58.560000pt;}
.fs1_c00426{font-size:64.000000pt;}
.fs2_c00426{font-size:85.440000pt;}
.y47_c00426{bottom:-13.520000pt;}
.y0_c00426{bottom:0.000000pt;}
.y44_c00426{bottom:2.560000pt;}
.y54_c00426{bottom:2.640000pt;}
.y57_c00426{bottom:3.280000pt;}
.y3a_c00426{bottom:3.360000pt;}
.y36_c00426{bottom:4.640000pt;}
.y56_c00426{bottom:20.160000pt;}
.y46_c00426{bottom:20.240000pt;}
.y39_c00426{bottom:37.120000pt;}
.y65_c00426{bottom:50.880000pt;}
.y34_c00426{bottom:122.240000pt;}
.y64_c00426{bottom:127.840000pt;}
.y33_c00426{bottom:140.640000pt;}
.y63_c00426{bottom:142.240000pt;}
.y62_c00426{bottom:158.640000pt;}
.y32_c00426{bottom:159.040000pt;}
.y31_c00426{bottom:177.440000pt;}
.y61_c00426{bottom:179.680000pt;}
.y30_c00426{bottom:195.840000pt;}
.y60_c00426{bottom:199.680000pt;}
.y2f_c00426{bottom:214.240000pt;}
.y5f_c00426{bottom:219.680000pt;}
.y2e_c00426{bottom:232.640000pt;}
.y5e_c00426{bottom:239.680000pt;}
.y2d_c00426{bottom:251.040000pt;}
.y5d_c00426{bottom:259.680000pt;}
.y2c_c00426{bottom:269.440000pt;}
.y5c_c00426{bottom:279.680000pt;}
.y2b_c00426{bottom:287.840000pt;}
.y5b_c00426{bottom:299.680000pt;}
.y2a_c00426{bottom:306.240000pt;}
.y5a_c00426{bottom:322.640000pt;}
.y29_c00426{bottom:324.640000pt;}
.y59_c00426{bottom:342.880000pt;}
.y28_c00426{bottom:343.040000pt;}
.y27_c00426{bottom:361.440000pt;}
.y58_c00426{bottom:375.280000pt;}
.y26_c00426{bottom:379.840000pt;}
.y25_c00426{bottom:398.240000pt;}
.y55_c00426{bottom:402.080000pt;}
.y24_c00426{bottom:416.640000pt;}
.y23_c00426{bottom:435.040000pt;}
.y53_c00426{bottom:435.760000pt;}
.y52_c00426{bottom:452.960000pt;}
.y22_c00426{bottom:453.440000pt;}
.y21_c00426{bottom:471.840000pt;}
.y51_c00426{bottom:474.000000pt;}
.y20_c00426{bottom:490.240000pt;}
.y50_c00426{bottom:494.000000pt;}
.y1f_c00426{bottom:508.640000pt;}
.y4f_c00426{bottom:514.000000pt;}
.y1e_c00426{bottom:527.040000pt;}
.y4e_c00426{bottom:534.000000pt;}
.y1d_c00426{bottom:545.440000pt;}
.y4d_c00426{bottom:554.000000pt;}
.y1c_c00426{bottom:563.840000pt;}
.y4c_c00426{bottom:574.000000pt;}
.y1b_c00426{bottom:582.240000pt;}
.y4b_c00426{bottom:594.000000pt;}
.y1a_c00426{bottom:600.640000pt;}
.y4a_c00426{bottom:616.960000pt;}
.y19_c00426{bottom:619.040000pt;}
.y49_c00426{bottom:637.200000pt;}
.y18_c00426{bottom:637.440000pt;}
.y17_c00426{bottom:655.840000pt;}
.y48_c00426{bottom:669.600000pt;}
.y16_c00426{bottom:674.240000pt;}
.y15_c00426{bottom:692.640000pt;}
.y45_c00426{bottom:694.080000pt;}
.y14_c00426{bottom:711.040000pt;}
.y43_c00426{bottom:727.840000pt;}
.y13_c00426{bottom:729.440000pt;}
.y42_c00426{bottom:742.080000pt;}
.y12_c00426{bottom:747.760000pt;}
.y41_c00426{bottom:763.120000pt;}
.y11_c00426{bottom:766.160000pt;}
.y40_c00426{bottom:783.120000pt;}
.y10_c00426{bottom:784.560000pt;}
.yf_c00426{bottom:802.960000pt;}
.y3f_c00426{bottom:803.120000pt;}
.ye_c00426{bottom:821.360000pt;}
.y3e_c00426{bottom:823.120000pt;}
.yd_c00426{bottom:839.760000pt;}
.y3d_c00426{bottom:843.120000pt;}
.yc_c00426{bottom:858.160000pt;}
.y3c_c00426{bottom:863.120000pt;}
.yb_c00426{bottom:876.560000pt;}
.y3b_c00426{bottom:883.120000pt;}
.ya_c00426{bottom:894.960000pt;}
.y38_c00426{bottom:906.080000pt;}
.y9_c00426{bottom:913.360000pt;}
.y37_c00426{bottom:926.320000pt;}
.y8_c00426{bottom:931.760000pt;}
.y7_c00426{bottom:950.160000pt;}
.y35_c00426{bottom:958.720000pt;}
.y6_c00426{bottom:986.960000pt;}
.y5_c00426{bottom:1005.360000pt;}
.y4_c00426{bottom:1023.040000pt;}
.y3_c00426{bottom:1036.804000pt;}
.y2_c00426{bottom:1050.640000pt;}
.y1_c00426{bottom:1064.400000pt;}
.hd_c00426{height:12.240000pt;}
.h13_c00426{height:14.400000pt;}
.h10_c00426{height:15.200000pt;}
.ha_c00426{height:19.998667pt;}
.hb_c00426{height:20.000000pt;}
.h9_c00426{height:20.960000pt;}
.hc_c00426{height:21.040000pt;}
.h5_c00426{height:24.480000pt;}
.h12_c00426{height:26.801333pt;}
.h11_c00426{height:33.678667pt;}
.hf_c00426{height:33.760000pt;}
.he_c00426{height:41.770312pt;}
.h3_c00426{height:47.085938pt;}
.h2_c00426{height:47.109375pt;}
.h8_c00426{height:50.640000pt;}
.h7_c00426{height:57.473437pt;}
.h4_c00426{height:62.812500pt;}
.h6_c00426{height:86.107500pt;}
.h0_c00426{height:1122.560000pt;}
.h1_c00426{height:1122.666667pt;}
.w5_c00426{width:92.960000pt;}
.w4_c00426{width:93.280000pt;}
.w8_c00426{width:94.000000pt;}
.w9_c00426{width:94.001333pt;}
.w6_c00426{width:304.638667pt;}
.w7_c00426{width:306.720000pt;}
.w3_c00426{width:494.720000pt;}
.w2_c00426{width:793.805333pt;}
.w0_c00426{width:793.840000pt;}
.w1_c00426{width:794.000000pt;}
.x0_c00426{left:0.000000pt;}
.x11_c00426{left:3.680000pt;}
.x17_c00426{left:4.720000pt;}
.xc_c00426{left:15.200000pt;}
.x15_c00426{left:26.880000pt;}
.xe_c00426{left:31.840000pt;}
.xa_c00426{left:34.720000pt;}
.x1b_c00426{left:37.920000pt;}
.x13_c00426{left:39.200000pt;}
.x14_c00426{left:44.080000pt;}
.x19_c00426{left:46.480000pt;}
.x12_c00426{left:48.880000pt;}
.x16_c00426{left:51.360000pt;}
.x6_c00426{left:108.720000pt;}
.x10_c00426{left:109.760000pt;}
.x3_c00426{left:113.440000pt;}
.x1a_c00426{left:120.800000pt;}
.x18_c00426{left:132.080000pt;}
.x7_c00426{left:134.480000pt;}
.x8_c00426{left:234.000000pt;}
.x2_c00426{left:377.920000pt;}
.x1_c00426{left:396.960000pt;}
.x9_c00426{left:415.440000pt;}
.xb_c00426{left:425.360000pt;}
.xd_c00426{left:509.440000pt;}
.xf_c00426{left:519.360000pt;}
.x4_c00426{left:613.840000pt;}
.x1c_c00426{left:656.480000pt;}
.x5_c00426{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_69359ebfda0faf80b79146dc.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00427{vertical-align:-82.800000px;}
.v1_c00427{vertical-align:-61.938000px;}
.v0_c00427{vertical-align:0.000000px;}
.ls8_c00427{letter-spacing:-0.263520px;}
.ls5_c00427{letter-spacing:-0.192240px;}
.ls6_c00427{letter-spacing:-0.065880px;}
.ls4_c00427{letter-spacing:0.000000px;}
.ls3_c00427{letter-spacing:0.021960px;}
.ls7_c00427{letter-spacing:0.065880px;}
.ls2_c00427{letter-spacing:0.197640px;}
.ls0_c00427{letter-spacing:319.518000px;}
.ls1_c00427{letter-spacing:2233.800000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:-16.667640px;}
.ws1_c00427{word-spacing:-16.470000px;}
.ws2_c00427{word-spacing:-16.404120px;}
.ws3_c00427{word-spacing:-16.206480px;}
.ws4_c00427{word-spacing:-11.970000px;}
.wsa_c00427{word-spacing:-0.197640px;}
.ws6_c00427{word-spacing:-0.162000px;}
.ws7_c00427{word-spacing:-0.096120px;}
.wsb_c00427{word-spacing:-0.095760px;}
.ws5_c00427{word-spacing:0.000000px;}
.ws8_c00427{word-spacing:0.065880px;}
.ws9_c00427{word-spacing:0.131760px;}
._1_c00427{margin-left:-1.199160px;}
._0_c00427{width:1.239948px;}
.fc1_c00427{color:transparent;}
.fc0_c00427{color:rgb(0,0,0);}
.fs4_c00427{font-size:47.880000px;}
.fs0_c00427{font-size:54.000000px;}
.fs3_c00427{font-size:65.880000px;}
.fs1_c00427{font-size:72.000000px;}
.fs2_c00427{font-size:96.120000px;}
.y45_c00427{bottom:-15.210000px;}
.y0_c00427{bottom:0.000000px;}
.y42_c00427{bottom:2.880000px;}
.y61_c00427{bottom:2.970000px;}
.y38_c00427{bottom:3.780000px;}
.y34_c00427{bottom:5.220000px;}
.y47_c00427{bottom:5.310000px;}
.y44_c00427{bottom:22.770000px;}
.y4a_c00427{bottom:41.670000px;}
.y37_c00427{bottom:41.760000px;}
.y63_c00427{bottom:57.240000px;}
.y62_c00427{bottom:146.970000px;}
.y32_c00427{bottom:158.220000px;}
.y60_c00427{bottom:162.090000px;}
.y31_c00427{bottom:178.920000px;}
.y5f_c00427{bottom:179.550000px;}
.y30_c00427{bottom:199.620000px;}
.y5e_c00427{bottom:203.130000px;}
.y2f_c00427{bottom:220.320000px;}
.y5d_c00427{bottom:225.630000px;}
.y2e_c00427{bottom:241.020000px;}
.y5c_c00427{bottom:248.130000px;}
.y2d_c00427{bottom:261.720000px;}
.y5b_c00427{bottom:270.630000px;}
.y2c_c00427{bottom:282.420000px;}
.y5a_c00427{bottom:293.130000px;}
.y2b_c00427{bottom:303.120000px;}
.y59_c00427{bottom:315.630000px;}
.y2a_c00427{bottom:323.820000px;}
.y58_c00427{bottom:338.130000px;}
.y29_c00427{bottom:344.520000px;}
.y57_c00427{bottom:364.050000px;}
.y28_c00427{bottom:365.220000px;}
.y27_c00427{bottom:385.920000px;}
.y56_c00427{bottom:386.730000px;}
.y26_c00427{bottom:406.620000px;}
.y55_c00427{bottom:423.180000px;}
.y25_c00427{bottom:427.320000px;}
.y24_c00427{bottom:448.020000px;}
.y54_c00427{bottom:450.810000px;}
.y23_c00427{bottom:468.720000px;}
.y53_c00427{bottom:488.790000px;}
.y22_c00427{bottom:489.420000px;}
.y52_c00427{bottom:507.060000px;}
.y21_c00427{bottom:510.120000px;}
.y51_c00427{bottom:530.640000px;}
.y20_c00427{bottom:530.820000px;}
.y1f_c00427{bottom:551.520000px;}
.y50_c00427{bottom:553.140000px;}
.y1e_c00427{bottom:572.220000px;}
.y4f_c00427{bottom:575.640000px;}
.y1d_c00427{bottom:592.920000px;}
.y4e_c00427{bottom:598.140000px;}
.y1c_c00427{bottom:613.620000px;}
.y4d_c00427{bottom:620.640000px;}
.y1b_c00427{bottom:634.320000px;}
.y4c_c00427{bottom:643.140000px;}
.y1a_c00427{bottom:655.020000px;}
.y4b_c00427{bottom:665.640000px;}
.y19_c00427{bottom:675.720000px;}
.y49_c00427{bottom:691.560000px;}
.y18_c00427{bottom:696.420000px;}
.y48_c00427{bottom:714.240000px;}
.y17_c00427{bottom:717.120000px;}
.y16_c00427{bottom:737.820000px;}
.y46_c00427{bottom:750.690000px;}
.y15_c00427{bottom:758.520000px;}
.y14_c00427{bottom:779.220000px;}
.y43_c00427{bottom:780.840000px;}
.y13_c00427{bottom:799.920000px;}
.y41_c00427{bottom:818.820000px;}
.y12_c00427{bottom:820.620000px;}
.y40_c00427{bottom:834.840000px;}
.y11_c00427{bottom:841.230000px;}
.y3f_c00427{bottom:858.510000px;}
.y10_c00427{bottom:861.930000px;}
.y3e_c00427{bottom:881.010000px;}
.yf_c00427{bottom:882.630000px;}
.ye_c00427{bottom:903.330000px;}
.y3d_c00427{bottom:903.510000px;}
.yd_c00427{bottom:924.030000px;}
.y3c_c00427{bottom:926.010000px;}
.yc_c00427{bottom:944.730000px;}
.y3b_c00427{bottom:948.510000px;}
.yb_c00427{bottom:965.430000px;}
.y3a_c00427{bottom:971.010000px;}
.ya_c00427{bottom:986.130000px;}
.y39_c00427{bottom:993.510000px;}
.y9_c00427{bottom:1006.830000px;}
.y36_c00427{bottom:1019.340000px;}
.y8_c00427{bottom:1027.530000px;}
.y35_c00427{bottom:1042.110000px;}
.y7_c00427{bottom:1048.230000px;}
.y6_c00427{bottom:1068.930000px;}
.y33_c00427{bottom:1078.560000px;}
.y5_c00427{bottom:1110.330000px;}
.y4_c00427{bottom:1131.030000px;}
.y3_c00427{bottom:1150.915500px;}
.y2_c00427{bottom:1166.400000px;}
.y1_c00427{bottom:1197.450000px;}
.hc_c00427{height:13.770000px;}
.h15_c00427{height:15.120000px;}
.h14_c00427{height:15.208500px;}
.h11_c00427{height:16.018500px;}
.h9_c00427{height:22.498500px;}
.ha_c00427{height:22.500000px;}
.h8_c00427{height:23.580000px;}
.hb_c00427{height:23.670000px;}
.h4_c00427{height:27.540000px;}
.h13_c00427{height:27.628500px;}
.hf_c00427{height:30.150000px;}
.he_c00427{height:37.980000px;}
.h12_c00427{height:37.981500px;}
.hd_c00427{height:46.991602px;}
.h2_c00427{height:52.998047px;}
.h10_c00427{height:56.880000px;}
.h7_c00427{height:56.970000px;}
.h6_c00427{height:64.657617px;}
.h3_c00427{height:70.664062px;}
.h5_c00427{height:96.870938px;}
.h0_c00427{height:1262.880000px;}
.h1_c00427{height:1263.000000px;}
.w5_c00427{width:104.580000px;}
.w4_c00427{width:104.940000px;}
.w8_c00427{width:105.750000px;}
.w9_c00427{width:105.751500px;}
.w6_c00427{width:342.718500px;}
.w7_c00427{width:345.060000px;}
.w3_c00427{width:556.560000px;}
.w2_c00427{width:893.031000px;}
.w0_c00427{width:893.070000px;}
.w1_c00427{width:893.250000px;}
.x0_c00427{left:0.000000px;}
.x10_c00427{left:4.140000px;}
.x15_c00427{left:5.310000px;}
.xb_c00427{left:17.100000px;}
.x14_c00427{left:30.240000px;}
.xd_c00427{left:35.820000px;}
.x9_c00427{left:39.060000px;}
.x18_c00427{left:42.660000px;}
.x13_c00427{left:44.100000px;}
.x12_c00427{left:49.590000px;}
.x19_c00427{left:52.290000px;}
.x11_c00427{left:54.990000px;}
.x16_c00427{left:57.780000px;}
.x5_c00427{left:122.310000px;}
.xf_c00427{left:123.480000px;}
.x2_c00427{left:127.620000px;}
.x17_c00427{left:134.640000px;}
.x6_c00427{left:137.250000px;}
.x7_c00427{left:263.250000px;}
.x1_c00427{left:446.580000px;}
.x8_c00427{left:467.370000px;}
.xa_c00427{left:478.530000px;}
.xc_c00427{left:573.120000px;}
.xe_c00427{left:584.280000px;}
.x3_c00427{left:690.570000px;}
.x4_c00427{left:906.570000px;}
@media print{
.v2_c00427{vertical-align:-73.600000pt;}
.v1_c00427{vertical-align:-55.056000pt;}
.v0_c00427{vertical-align:0.000000pt;}
.ls8_c00427{letter-spacing:-0.234240pt;}
.ls5_c00427{letter-spacing:-0.170880pt;}
.ls6_c00427{letter-spacing:-0.058560pt;}
.ls4_c00427{letter-spacing:0.000000pt;}
.ls3_c00427{letter-spacing:0.019520pt;}
.ls7_c00427{letter-spacing:0.058560pt;}
.ls2_c00427{letter-spacing:0.175680pt;}
.ls0_c00427{letter-spacing:284.016000pt;}
.ls1_c00427{letter-spacing:1985.600000pt;}
.ws0_c00427{word-spacing:-14.815680pt;}
.ws1_c00427{word-spacing:-14.640000pt;}
.ws2_c00427{word-spacing:-14.581440pt;}
.ws3_c00427{word-spacing:-14.405760pt;}
.ws4_c00427{word-spacing:-10.640000pt;}
.wsa_c00427{word-spacing:-0.175680pt;}
.ws6_c00427{word-spacing:-0.144000pt;}
.ws7_c00427{word-spacing:-0.085440pt;}
.wsb_c00427{word-spacing:-0.085120pt;}
.ws5_c00427{word-spacing:0.000000pt;}
.ws8_c00427{word-spacing:0.058560pt;}
.ws9_c00427{word-spacing:0.117120pt;}
._1_c00427{margin-left:-1.065920pt;}
._0_c00427{width:1.102176pt;}
.fs4_c00427{font-size:42.560000pt;}
.fs0_c00427{font-size:48.000000pt;}
.fs3_c00427{font-size:58.560000pt;}
.fs1_c00427{font-size:64.000000pt;}
.fs2_c00427{font-size:85.440000pt;}
.y45_c00427{bottom:-13.520000pt;}
.y0_c00427{bottom:0.000000pt;}
.y42_c00427{bottom:2.560000pt;}
.y61_c00427{bottom:2.640000pt;}
.y38_c00427{bottom:3.360000pt;}
.y34_c00427{bottom:4.640000pt;}
.y47_c00427{bottom:4.720000pt;}
.y44_c00427{bottom:20.240000pt;}
.y4a_c00427{bottom:37.040000pt;}
.y37_c00427{bottom:37.120000pt;}
.y63_c00427{bottom:50.880000pt;}
.y62_c00427{bottom:130.640000pt;}
.y32_c00427{bottom:140.640000pt;}
.y60_c00427{bottom:144.080000pt;}
.y31_c00427{bottom:159.040000pt;}
.y5f_c00427{bottom:159.600000pt;}
.y30_c00427{bottom:177.440000pt;}
.y5e_c00427{bottom:180.560000pt;}
.y2f_c00427{bottom:195.840000pt;}
.y5d_c00427{bottom:200.560000pt;}
.y2e_c00427{bottom:214.240000pt;}
.y5c_c00427{bottom:220.560000pt;}
.y2d_c00427{bottom:232.640000pt;}
.y5b_c00427{bottom:240.560000pt;}
.y2c_c00427{bottom:251.040000pt;}
.y5a_c00427{bottom:260.560000pt;}
.y2b_c00427{bottom:269.440000pt;}
.y59_c00427{bottom:280.560000pt;}
.y2a_c00427{bottom:287.840000pt;}
.y58_c00427{bottom:300.560000pt;}
.y29_c00427{bottom:306.240000pt;}
.y57_c00427{bottom:323.600000pt;}
.y28_c00427{bottom:324.640000pt;}
.y27_c00427{bottom:343.040000pt;}
.y56_c00427{bottom:343.760000pt;}
.y26_c00427{bottom:361.440000pt;}
.y55_c00427{bottom:376.160000pt;}
.y25_c00427{bottom:379.840000pt;}
.y24_c00427{bottom:398.240000pt;}
.y54_c00427{bottom:400.720000pt;}
.y23_c00427{bottom:416.640000pt;}
.y53_c00427{bottom:434.480000pt;}
.y22_c00427{bottom:435.040000pt;}
.y52_c00427{bottom:450.720000pt;}
.y21_c00427{bottom:453.440000pt;}
.y51_c00427{bottom:471.680000pt;}
.y20_c00427{bottom:471.840000pt;}
.y1f_c00427{bottom:490.240000pt;}
.y50_c00427{bottom:491.680000pt;}
.y1e_c00427{bottom:508.640000pt;}
.y4f_c00427{bottom:511.680000pt;}
.y1d_c00427{bottom:527.040000pt;}
.y4e_c00427{bottom:531.680000pt;}
.y1c_c00427{bottom:545.440000pt;}
.y4d_c00427{bottom:551.680000pt;}
.y1b_c00427{bottom:563.840000pt;}
.y4c_c00427{bottom:571.680000pt;}
.y1a_c00427{bottom:582.240000pt;}
.y4b_c00427{bottom:591.680000pt;}
.y19_c00427{bottom:600.640000pt;}
.y49_c00427{bottom:614.720000pt;}
.y18_c00427{bottom:619.040000pt;}
.y48_c00427{bottom:634.880000pt;}
.y17_c00427{bottom:637.440000pt;}
.y16_c00427{bottom:655.840000pt;}
.y46_c00427{bottom:667.280000pt;}
.y15_c00427{bottom:674.240000pt;}
.y14_c00427{bottom:692.640000pt;}
.y43_c00427{bottom:694.080000pt;}
.y13_c00427{bottom:711.040000pt;}
.y41_c00427{bottom:727.840000pt;}
.y12_c00427{bottom:729.440000pt;}
.y40_c00427{bottom:742.080000pt;}
.y11_c00427{bottom:747.760000pt;}
.y3f_c00427{bottom:763.120000pt;}
.y10_c00427{bottom:766.160000pt;}
.y3e_c00427{bottom:783.120000pt;}
.yf_c00427{bottom:784.560000pt;}
.ye_c00427{bottom:802.960000pt;}
.y3d_c00427{bottom:803.120000pt;}
.yd_c00427{bottom:821.360000pt;}
.y3c_c00427{bottom:823.120000pt;}
.yc_c00427{bottom:839.760000pt;}
.y3b_c00427{bottom:843.120000pt;}
.yb_c00427{bottom:858.160000pt;}
.y3a_c00427{bottom:863.120000pt;}
.ya_c00427{bottom:876.560000pt;}
.y39_c00427{bottom:883.120000pt;}
.y9_c00427{bottom:894.960000pt;}
.y36_c00427{bottom:906.080000pt;}
.y8_c00427{bottom:913.360000pt;}
.y35_c00427{bottom:926.320000pt;}
.y7_c00427{bottom:931.760000pt;}
.y6_c00427{bottom:950.160000pt;}
.y33_c00427{bottom:958.720000pt;}
.y5_c00427{bottom:986.960000pt;}
.y4_c00427{bottom:1005.360000pt;}
.y3_c00427{bottom:1023.036000pt;}
.y2_c00427{bottom:1036.800000pt;}
.y1_c00427{bottom:1064.400000pt;}
.hc_c00427{height:12.240000pt;}
.h15_c00427{height:13.440000pt;}
.h14_c00427{height:13.518667pt;}
.h11_c00427{height:14.238667pt;}
.h9_c00427{height:19.998667pt;}
.ha_c00427{height:20.000000pt;}
.h8_c00427{height:20.960000pt;}
.hb_c00427{height:21.040000pt;}
.h4_c00427{height:24.480000pt;}
.h13_c00427{height:24.558667pt;}
.hf_c00427{height:26.800000pt;}
.he_c00427{height:33.760000pt;}
.h12_c00427{height:33.761333pt;}
.hd_c00427{height:41.770312pt;}
.h2_c00427{height:47.109375pt;}
.h10_c00427{height:50.560000pt;}
.h7_c00427{height:50.640000pt;}
.h6_c00427{height:57.473437pt;}
.h3_c00427{height:62.812500pt;}
.h5_c00427{height:86.107500pt;}
.h0_c00427{height:1122.560000pt;}
.h1_c00427{height:1122.666667pt;}
.w5_c00427{width:92.960000pt;}
.w4_c00427{width:93.280000pt;}
.w8_c00427{width:94.000000pt;}
.w9_c00427{width:94.001333pt;}
.w6_c00427{width:304.638667pt;}
.w7_c00427{width:306.720000pt;}
.w3_c00427{width:494.720000pt;}
.w2_c00427{width:793.805333pt;}
.w0_c00427{width:793.840000pt;}
.w1_c00427{width:794.000000pt;}
.x0_c00427{left:0.000000pt;}
.x10_c00427{left:3.680000pt;}
.x15_c00427{left:4.720000pt;}
.xb_c00427{left:15.200000pt;}
.x14_c00427{left:26.880000pt;}
.xd_c00427{left:31.840000pt;}
.x9_c00427{left:34.720000pt;}
.x18_c00427{left:37.920000pt;}
.x13_c00427{left:39.200000pt;}
.x12_c00427{left:44.080000pt;}
.x19_c00427{left:46.480000pt;}
.x11_c00427{left:48.880000pt;}
.x16_c00427{left:51.360000pt;}
.x5_c00427{left:108.720000pt;}
.xf_c00427{left:109.760000pt;}
.x2_c00427{left:113.440000pt;}
.x17_c00427{left:119.680000pt;}
.x6_c00427{left:122.000000pt;}
.x7_c00427{left:234.000000pt;}
.x1_c00427{left:396.960000pt;}
.x8_c00427{left:415.440000pt;}
.xa_c00427{left:425.360000pt;}
.xc_c00427{left:509.440000pt;}
.xe_c00427{left:519.360000pt;}
.x3_c00427{left:613.840000pt;}
.x4_c00427{left:805.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_c00428 {
    display:none;
  }
  .loading-indicator_c00428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00428 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00428 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00428" -> "#page-container .classname_c00428")
 */
.pf_c00428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00428 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00428 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00428 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00428 {overflow:visible;}
  }
}
.c_c00428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00428 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00428:after { /* webkit #35443 */
  content: '';
}
.t_c00428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00428 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00428 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00428 { /* info for Javascript */
  display:none;
}
.l_c00428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00428:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00428;src:url('chunks/assets/font_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_9cee0e420ff7b97a5bad7b9a.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00428{vertical-align:-82.800000px;}
.v0_c00428{vertical-align:0.000000px;}
.ls5_c00428{letter-spacing:-0.192240px;}
.ls4_c00428{letter-spacing:-0.108000px;}
.ls6_c00428{letter-spacing:-0.065880px;}
.ls3_c00428{letter-spacing:0.000000px;}
.ls2_c00428{letter-spacing:0.021960px;}
.ls7_c00428{letter-spacing:0.065880px;}
.ls1_c00428{letter-spacing:0.197640px;}
.ls0_c00428{letter-spacing:2233.800000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:-16.667640px;}
.ws1_c00428{word-spacing:-16.470000px;}
.ws2_c00428{word-spacing:-16.404120px;}
.ws3_c00428{word-spacing:-11.970000px;}
.wsa_c00428{word-spacing:-0.197640px;}
.ws7_c00428{word-spacing:-0.096120px;}
.wsb_c00428{word-spacing:-0.095760px;}
.ws4_c00428{word-spacing:0.000000px;}
.ws8_c00428{word-spacing:0.065880px;}
.ws9_c00428{word-spacing:0.131760px;}
.ws6_c00428{word-spacing:0.162000px;}
.ws5_c00428{word-spacing:0.270000px;}
._1_c00428{margin-left:-1.058400px;}
._0_c00428{width:1.220400px;}
.fc1_c00428{color:transparent;}
.fc0_c00428{color:rgb(0,0,0);}
.fs4_c00428{font-size:47.880000px;}
.fs0_c00428{font-size:54.000000px;}
.fs3_c00428{font-size:65.880000px;}
.fs1_c00428{font-size:72.000000px;}
.fs2_c00428{font-size:96.120000px;}
.y47_c00428{bottom:-15.210000px;}
.y0_c00428{bottom:0.000000px;}
.y44_c00428{bottom:2.880000px;}
.y55_c00428{bottom:2.970000px;}
.y3a_c00428{bottom:3.780000px;}
.y36_c00428{bottom:5.310000px;}
.y57_c00428{bottom:22.680000px;}
.y46_c00428{bottom:22.770000px;}
.y39_c00428{bottom:41.670000px;}
.y4b_c00428{bottom:41.760000px;}
.y65_c00428{bottom:57.240000px;}
.y64_c00428{bottom:128.700000px;}
.y34_c00428{bottom:137.520000px;}
.y63_c00428{bottom:151.200000px;}
.y33_c00428{bottom:158.220000px;}
.y62_c00428{bottom:175.950000px;}
.y32_c00428{bottom:178.920000px;}
.y61_c00428{bottom:199.530000px;}
.y31_c00428{bottom:199.620000px;}
.y30_c00428{bottom:220.320000px;}
.y60_c00428{bottom:222.030000px;}
.y2f_c00428{bottom:241.020000px;}
.y5f_c00428{bottom:244.530000px;}
.y2e_c00428{bottom:261.720000px;}
.y5e_c00428{bottom:267.030000px;}
.y2d_c00428{bottom:282.420000px;}
.y5d_c00428{bottom:289.530000px;}
.y2c_c00428{bottom:303.120000px;}
.y5c_c00428{bottom:312.030000px;}
.y2b_c00428{bottom:323.820000px;}
.y5b_c00428{bottom:334.530000px;}
.y2a_c00428{bottom:344.520000px;}
.y5a_c00428{bottom:360.450000px;}
.y29_c00428{bottom:365.220000px;}
.y59_c00428{bottom:383.130000px;}
.y28_c00428{bottom:385.920000px;}
.y27_c00428{bottom:406.620000px;}
.y58_c00428{bottom:419.580000px;}
.y26_c00428{bottom:427.320000px;}
.y56_c00428{bottom:447.210000px;}
.y25_c00428{bottom:448.020000px;}
.y24_c00428{bottom:468.720000px;}
.y54_c00428{bottom:485.100000px;}
.y23_c00428{bottom:489.420000px;}
.y53_c00428{bottom:504.450000px;}
.y22_c00428{bottom:510.120000px;}
.y52_c00428{bottom:528.120000px;}
.y21_c00428{bottom:530.820000px;}
.y51_c00428{bottom:550.620000px;}
.y20_c00428{bottom:551.520000px;}
.y1f_c00428{bottom:572.220000px;}
.y50_c00428{bottom:573.120000px;}
.y1e_c00428{bottom:592.920000px;}
.y4f_c00428{bottom:595.620000px;}
.y1d_c00428{bottom:613.620000px;}
.y4e_c00428{bottom:618.120000px;}
.y1c_c00428{bottom:634.320000px;}
.y4d_c00428{bottom:640.620000px;}
.y1b_c00428{bottom:655.020000px;}
.y4c_c00428{bottom:663.120000px;}
.y1a_c00428{bottom:675.720000px;}
.y4a_c00428{bottom:688.950000px;}
.y19_c00428{bottom:696.420000px;}
.y49_c00428{bottom:711.720000px;}
.y18_c00428{bottom:717.120000px;}
.y17_c00428{bottom:737.820000px;}
.y48_c00428{bottom:748.170000px;}
.y16_c00428{bottom:758.520000px;}
.y45_c00428{bottom:778.320000px;}
.y15_c00428{bottom:779.220000px;}
.y14_c00428{bottom:799.920000px;}
.y43_c00428{bottom:816.300000px;}
.y13_c00428{bottom:820.620000px;}
.y42_c00428{bottom:832.320000px;}
.y12_c00428{bottom:841.230000px;}
.y41_c00428{bottom:855.900000px;}
.y11_c00428{bottom:861.930000px;}
.y40_c00428{bottom:878.400000px;}
.y10_c00428{bottom:882.630000px;}
.y3f_c00428{bottom:900.900000px;}
.yf_c00428{bottom:903.330000px;}
.y3e_c00428{bottom:923.400000px;}
.ye_c00428{bottom:924.030000px;}
.yd_c00428{bottom:944.730000px;}
.y3d_c00428{bottom:945.900000px;}
.yc_c00428{bottom:965.430000px;}
.y3c_c00428{bottom:968.400000px;}
.yb_c00428{bottom:986.130000px;}
.y3b_c00428{bottom:990.900000px;}
.ya_c00428{bottom:1006.830000px;}
.y38_c00428{bottom:1016.820000px;}
.y9_c00428{bottom:1027.530000px;}
.y37_c00428{bottom:1039.500000px;}
.y8_c00428{bottom:1048.230000px;}
.y7_c00428{bottom:1068.930000px;}
.y35_c00428{bottom:1075.950000px;}
.y6_c00428{bottom:1110.330000px;}
.y5_c00428{bottom:1131.030000px;}
.y4_c00428{bottom:1150.920000px;}
.y3_c00428{bottom:1166.404500px;}
.y2_c00428{bottom:1181.970000px;}
.y1_c00428{bottom:1197.450000px;}
.hd_c00428{height:13.770000px;}
.h11_c00428{height:17.100000px;}
.hb_c00428{height:22.498500px;}
.ha_c00428{height:22.500000px;}
.hc_c00428{height:23.580000px;}
.h9_c00428{height:23.670000px;}
.h13_c00428{height:27.630000px;}
.h5_c00428{height:30.150000px;}
.h12_c00428{height:37.888500px;}
.hf_c00428{height:37.981500px;}
.he_c00428{height:46.991602px;}
.h3_c00428{height:52.971680px;}
.h2_c00428{height:52.998047px;}
.h8_c00428{height:56.880000px;}
.h10_c00428{height:56.970000px;}
.h7_c00428{height:64.657617px;}
.h4_c00428{height:70.664062px;}
.h6_c00428{height:96.870938px;}
.h0_c00428{height:1262.880000px;}
.h1_c00428{height:1263.000000px;}
.w5_c00428{width:104.580000px;}
.w4_c00428{width:104.940000px;}
.w8_c00428{width:105.750000px;}
.w9_c00428{width:105.751500px;}
.w6_c00428{width:342.718500px;}
.w7_c00428{width:345.060000px;}
.w3_c00428{width:556.560000px;}
.w2_c00428{width:893.031000px;}
.w0_c00428{width:893.070000px;}
.w1_c00428{width:893.250000px;}
.x0_c00428{left:0.000000px;}
.x11_c00428{left:4.140000px;}
.x17_c00428{left:5.310000px;}
.xc_c00428{left:17.100000px;}
.x16_c00428{left:30.240000px;}
.xe_c00428{left:35.820000px;}
.xa_c00428{left:39.060000px;}
.x1c_c00428{left:41.310000px;}
.x13_c00428{left:42.660000px;}
.x15_c00428{left:44.100000px;}
.x14_c00428{left:49.590000px;}
.x1a_c00428{left:52.290000px;}
.x12_c00428{left:54.990000px;}
.x19_c00428{left:57.780000px;}
.x6_c00428{left:122.310000px;}
.x10_c00428{left:123.480000px;}
.x3_c00428{left:127.620000px;}
.x1b_c00428{left:134.640000px;}
.x18_c00428{left:144.630000px;}
.x7_c00428{left:154.620000px;}
.x8_c00428{left:263.250000px;}
.x2_c00428{left:425.160000px;}
.x1_c00428{left:446.580000px;}
.x9_c00428{left:467.370000px;}
.xb_c00428{left:478.530000px;}
.xd_c00428{left:573.120000px;}
.xf_c00428{left:584.280000px;}
.x4_c00428{left:690.570000px;}
.x1d_c00428{left:738.540000px;}
.x5_c00428{left:906.570000px;}
@media print{
.v1_c00428{vertical-align:-73.600000pt;}
.v0_c00428{vertical-align:0.000000pt;}
.ls5_c00428{letter-spacing:-0.170880pt;}
.ls4_c00428{letter-spacing:-0.096000pt;}
.ls6_c00428{letter-spacing:-0.058560pt;}
.ls3_c00428{letter-spacing:0.000000pt;}
.ls2_c00428{letter-spacing:0.019520pt;}
.ls7_c00428{letter-spacing:0.058560pt;}
.ls1_c00428{letter-spacing:0.175680pt;}
.ls0_c00428{letter-spacing:1985.600000pt;}
.ws0_c00428{word-spacing:-14.815680pt;}
.ws1_c00428{word-spacing:-14.640000pt;}
.ws2_c00428{word-spacing:-14.581440pt;}
.ws3_c00428{word-spacing:-10.640000pt;}
.wsa_c00428{word-spacing:-0.175680pt;}
.ws7_c00428{word-spacing:-0.085440pt;}
.wsb_c00428{word-spacing:-0.085120pt;}
.ws4_c00428{word-spacing:0.000000pt;}
.ws8_c00428{word-spacing:0.058560pt;}
.ws9_c00428{word-spacing:0.117120pt;}
.ws6_c00428{word-spacing:0.144000pt;}
.ws5_c00428{word-spacing:0.240000pt;}
._1_c00428{margin-left:-0.940800pt;}
._0_c00428{width:1.084800pt;}
.fs4_c00428{font-size:42.560000pt;}
.fs0_c00428{font-size:48.000000pt;}
.fs3_c00428{font-size:58.560000pt;}
.fs1_c00428{font-size:64.000000pt;}
.fs2_c00428{font-size:85.440000pt;}
.y47_c00428{bottom:-13.520000pt;}
.y0_c00428{bottom:0.000000pt;}
.y44_c00428{bottom:2.560000pt;}
.y55_c00428{bottom:2.640000pt;}
.y3a_c00428{bottom:3.360000pt;}
.y36_c00428{bottom:4.720000pt;}
.y57_c00428{bottom:20.160000pt;}
.y46_c00428{bottom:20.240000pt;}
.y39_c00428{bottom:37.040000pt;}
.y4b_c00428{bottom:37.120000pt;}
.y65_c00428{bottom:50.880000pt;}
.y64_c00428{bottom:114.400000pt;}
.y34_c00428{bottom:122.240000pt;}
.y63_c00428{bottom:134.400000pt;}
.y33_c00428{bottom:140.640000pt;}
.y62_c00428{bottom:156.400000pt;}
.y32_c00428{bottom:159.040000pt;}
.y61_c00428{bottom:177.360000pt;}
.y31_c00428{bottom:177.440000pt;}
.y30_c00428{bottom:195.840000pt;}
.y60_c00428{bottom:197.360000pt;}
.y2f_c00428{bottom:214.240000pt;}
.y5f_c00428{bottom:217.360000pt;}
.y2e_c00428{bottom:232.640000pt;}
.y5e_c00428{bottom:237.360000pt;}
.y2d_c00428{bottom:251.040000pt;}
.y5d_c00428{bottom:257.360000pt;}
.y2c_c00428{bottom:269.440000pt;}
.y5c_c00428{bottom:277.360000pt;}
.y2b_c00428{bottom:287.840000pt;}
.y5b_c00428{bottom:297.360000pt;}
.y2a_c00428{bottom:306.240000pt;}
.y5a_c00428{bottom:320.400000pt;}
.y29_c00428{bottom:324.640000pt;}
.y59_c00428{bottom:340.560000pt;}
.y28_c00428{bottom:343.040000pt;}
.y27_c00428{bottom:361.440000pt;}
.y58_c00428{bottom:372.960000pt;}
.y26_c00428{bottom:379.840000pt;}
.y56_c00428{bottom:397.520000pt;}
.y25_c00428{bottom:398.240000pt;}
.y24_c00428{bottom:416.640000pt;}
.y54_c00428{bottom:431.200000pt;}
.y23_c00428{bottom:435.040000pt;}
.y53_c00428{bottom:448.400000pt;}
.y22_c00428{bottom:453.440000pt;}
.y52_c00428{bottom:469.440000pt;}
.y21_c00428{bottom:471.840000pt;}
.y51_c00428{bottom:489.440000pt;}
.y20_c00428{bottom:490.240000pt;}
.y1f_c00428{bottom:508.640000pt;}
.y50_c00428{bottom:509.440000pt;}
.y1e_c00428{bottom:527.040000pt;}
.y4f_c00428{bottom:529.440000pt;}
.y1d_c00428{bottom:545.440000pt;}
.y4e_c00428{bottom:549.440000pt;}
.y1c_c00428{bottom:563.840000pt;}
.y4d_c00428{bottom:569.440000pt;}
.y1b_c00428{bottom:582.240000pt;}
.y4c_c00428{bottom:589.440000pt;}
.y1a_c00428{bottom:600.640000pt;}
.y4a_c00428{bottom:612.400000pt;}
.y19_c00428{bottom:619.040000pt;}
.y49_c00428{bottom:632.640000pt;}
.y18_c00428{bottom:637.440000pt;}
.y17_c00428{bottom:655.840000pt;}
.y48_c00428{bottom:665.040000pt;}
.y16_c00428{bottom:674.240000pt;}
.y45_c00428{bottom:691.840000pt;}
.y15_c00428{bottom:692.640000pt;}
.y14_c00428{bottom:711.040000pt;}
.y43_c00428{bottom:725.600000pt;}
.y13_c00428{bottom:729.440000pt;}
.y42_c00428{bottom:739.840000pt;}
.y12_c00428{bottom:747.760000pt;}
.y41_c00428{bottom:760.800000pt;}
.y11_c00428{bottom:766.160000pt;}
.y40_c00428{bottom:780.800000pt;}
.y10_c00428{bottom:784.560000pt;}
.y3f_c00428{bottom:800.800000pt;}
.yf_c00428{bottom:802.960000pt;}
.y3e_c00428{bottom:820.800000pt;}
.ye_c00428{bottom:821.360000pt;}
.yd_c00428{bottom:839.760000pt;}
.y3d_c00428{bottom:840.800000pt;}
.yc_c00428{bottom:858.160000pt;}
.y3c_c00428{bottom:860.800000pt;}
.yb_c00428{bottom:876.560000pt;}
.y3b_c00428{bottom:880.800000pt;}
.ya_c00428{bottom:894.960000pt;}
.y38_c00428{bottom:903.840000pt;}
.y9_c00428{bottom:913.360000pt;}
.y37_c00428{bottom:924.000000pt;}
.y8_c00428{bottom:931.760000pt;}
.y7_c00428{bottom:950.160000pt;}
.y35_c00428{bottom:956.400000pt;}
.y6_c00428{bottom:986.960000pt;}
.y5_c00428{bottom:1005.360000pt;}
.y4_c00428{bottom:1023.040000pt;}
.y3_c00428{bottom:1036.804000pt;}
.y2_c00428{bottom:1050.640000pt;}
.y1_c00428{bottom:1064.400000pt;}
.hd_c00428{height:12.240000pt;}
.h11_c00428{height:15.200000pt;}
.hb_c00428{height:19.998667pt;}
.ha_c00428{height:20.000000pt;}
.hc_c00428{height:20.960000pt;}
.h9_c00428{height:21.040000pt;}
.h13_c00428{height:24.560000pt;}
.h5_c00428{height:26.800000pt;}
.h12_c00428{height:33.678667pt;}
.hf_c00428{height:33.761333pt;}
.he_c00428{height:41.770312pt;}
.h3_c00428{height:47.085938pt;}
.h2_c00428{height:47.109375pt;}
.h8_c00428{height:50.560000pt;}
.h10_c00428{height:50.640000pt;}
.h7_c00428{height:57.473437pt;}
.h4_c00428{height:62.812500pt;}
.h6_c00428{height:86.107500pt;}
.h0_c00428{height:1122.560000pt;}
.h1_c00428{height:1122.666667pt;}
.w5_c00428{width:92.960000pt;}
.w4_c00428{width:93.280000pt;}
.w8_c00428{width:94.000000pt;}
.w9_c00428{width:94.001333pt;}
.w6_c00428{width:304.638667pt;}
.w7_c00428{width:306.720000pt;}
.w3_c00428{width:494.720000pt;}
.w2_c00428{width:793.805333pt;}
.w0_c00428{width:793.840000pt;}
.w1_c00428{width:794.000000pt;}
.x0_c00428{left:0.000000pt;}
.x11_c00428{left:3.680000pt;}
.x17_c00428{left:4.720000pt;}
.xc_c00428{left:15.200000pt;}
.x16_c00428{left:26.880000pt;}
.xe_c00428{left:31.840000pt;}
.xa_c00428{left:34.720000pt;}
.x1c_c00428{left:36.720000pt;}
.x13_c00428{left:37.920000pt;}
.x15_c00428{left:39.200000pt;}
.x14_c00428{left:44.080000pt;}
.x1a_c00428{left:46.480000pt;}
.x12_c00428{left:48.880000pt;}
.x19_c00428{left:51.360000pt;}
.x6_c00428{left:108.720000pt;}
.x10_c00428{left:109.760000pt;}
.x3_c00428{left:113.440000pt;}
.x1b_c00428{left:119.680000pt;}
.x18_c00428{left:128.560000pt;}
.x7_c00428{left:137.440000pt;}
.x8_c00428{left:234.000000pt;}
.x2_c00428{left:377.920000pt;}
.x1_c00428{left:396.960000pt;}
.x9_c00428{left:415.440000pt;}
.xb_c00428{left:425.360000pt;}
.xd_c00428{left:509.440000pt;}
.xf_c00428{left:519.360000pt;}
.x4_c00428{left:613.840000pt;}
.x1d_c00428{left:656.480000pt;}
.x5_c00428{left:805.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_c00429 {
    display:none;
  }
  .loading-indicator_c00429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00429 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00429 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00429" -> "#page-container .classname_c00429")
 */
.pf_c00429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00429 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00429 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00429 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00429 {overflow:visible;}
  }
}
.c_c00429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00429 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00429:after { /* webkit #35443 */
  content: '';
}
.t_c00429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00429 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00429 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00429 { /* info for Javascript */
  display:none;
}
.l_c00429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00429:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00429;src:url('chunks/assets/font_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_6a9ad60e8f9aa65589ef74eb.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00429{vertical-align:-82.800000px;}
.v1_c00429{vertical-align:-61.938000px;}
.v0_c00429{vertical-align:0.000000px;}
.ls5_c00429{letter-spacing:-0.192240px;}
.ls6_c00429{letter-spacing:-0.065880px;}
.ls4_c00429{letter-spacing:0.000000px;}
.ls3_c00429{letter-spacing:0.021960px;}
.ls7_c00429{letter-spacing:0.065880px;}
.ls2_c00429{letter-spacing:0.197640px;}
.ls0_c00429{letter-spacing:319.518000px;}
.ls1_c00429{letter-spacing:2233.800000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:-16.667640px;}
.ws1_c00429{word-spacing:-16.470000px;}
.ws2_c00429{word-spacing:-16.404120px;}
.ws3_c00429{word-spacing:-11.970000px;}
.ws9_c00429{word-spacing:-0.197640px;}
.ws5_c00429{word-spacing:-0.162000px;}
.ws6_c00429{word-spacing:-0.096120px;}
.wsa_c00429{word-spacing:-0.095760px;}
.ws4_c00429{word-spacing:0.000000px;}
.ws7_c00429{word-spacing:0.065880px;}
.ws8_c00429{word-spacing:0.131760px;}
._1_c00429{margin-left:-1.199160px;}
._0_c00429{width:1.239948px;}
.fc1_c00429{color:transparent;}
.fc0_c00429{color:rgb(0,0,0);}
.fs4_c00429{font-size:47.880000px;}
.fs0_c00429{font-size:54.000000px;}
.fs3_c00429{font-size:65.880000px;}
.fs1_c00429{font-size:72.000000px;}
.fs2_c00429{font-size:96.120000px;}
.y46_c00429{bottom:-15.210000px;}
.y0_c00429{bottom:0.000000px;}
.y43_c00429{bottom:2.880000px;}
.y39_c00429{bottom:3.780000px;}
.y35_c00429{bottom:5.310000px;}
.y45_c00429{bottom:22.770000px;}
.y38_c00429{bottom:41.670000px;}
.y4a_c00429{bottom:41.760000px;}
.y62_c00429{bottom:57.240000px;}
.y33_c00429{bottom:137.520000px;}
.y61_c00429{bottom:150.300000px;}
.y32_c00429{bottom:158.220000px;}
.y60_c00429{bottom:164.070000px;}
.y31_c00429{bottom:178.920000px;}
.y5f_c00429{bottom:180.090000px;}
.y30_c00429{bottom:199.620000px;}
.y5e_c00429{bottom:203.760000px;}
.y2f_c00429{bottom:220.320000px;}
.y5d_c00429{bottom:226.260000px;}
.y2e_c00429{bottom:241.020000px;}
.y5c_c00429{bottom:248.760000px;}
.y2d_c00429{bottom:261.720000px;}
.y5b_c00429{bottom:271.260000px;}
.y2c_c00429{bottom:282.420000px;}
.y5a_c00429{bottom:293.760000px;}
.y2b_c00429{bottom:303.120000px;}
.y59_c00429{bottom:316.260000px;}
.y2a_c00429{bottom:323.820000px;}
.y58_c00429{bottom:338.760000px;}
.y29_c00429{bottom:344.520000px;}
.y57_c00429{bottom:360.000000px;}
.y28_c00429{bottom:365.220000px;}
.y56_c00429{bottom:382.680000px;}
.y27_c00429{bottom:385.920000px;}
.y26_c00429{bottom:406.620000px;}
.y55_c00429{bottom:419.130000px;}
.y25_c00429{bottom:427.320000px;}
.y24_c00429{bottom:448.020000px;}
.y54_c00429{bottom:449.280000px;}
.y23_c00429{bottom:468.720000px;}
.y53_c00429{bottom:487.260000px;}
.y22_c00429{bottom:489.420000px;}
.y52_c00429{bottom:504.450000px;}
.y21_c00429{bottom:510.120000px;}
.y51_c00429{bottom:528.120000px;}
.y20_c00429{bottom:530.820000px;}
.y50_c00429{bottom:550.620000px;}
.y1f_c00429{bottom:551.520000px;}
.y1e_c00429{bottom:572.220000px;}
.y4f_c00429{bottom:573.120000px;}
.y1d_c00429{bottom:592.920000px;}
.y4e_c00429{bottom:595.620000px;}
.y1c_c00429{bottom:613.620000px;}
.y4d_c00429{bottom:618.120000px;}
.y1b_c00429{bottom:634.320000px;}
.y4c_c00429{bottom:640.620000px;}
.y1a_c00429{bottom:655.020000px;}
.y4b_c00429{bottom:663.120000px;}
.y19_c00429{bottom:675.720000px;}
.y49_c00429{bottom:688.950000px;}
.y18_c00429{bottom:696.420000px;}
.y48_c00429{bottom:711.720000px;}
.y17_c00429{bottom:717.120000px;}
.y16_c00429{bottom:737.820000px;}
.y47_c00429{bottom:748.170000px;}
.y15_c00429{bottom:758.520000px;}
.y44_c00429{bottom:778.320000px;}
.y14_c00429{bottom:779.220000px;}
.y13_c00429{bottom:799.920000px;}
.y42_c00429{bottom:816.300000px;}
.y12_c00429{bottom:820.620000px;}
.y41_c00429{bottom:832.320000px;}
.y11_c00429{bottom:841.230000px;}
.y40_c00429{bottom:855.900000px;}
.y10_c00429{bottom:861.930000px;}
.y3f_c00429{bottom:878.400000px;}
.yf_c00429{bottom:882.630000px;}
.y3e_c00429{bottom:900.900000px;}
.ye_c00429{bottom:903.330000px;}
.y3d_c00429{bottom:923.400000px;}
.yd_c00429{bottom:924.030000px;}
.yc_c00429{bottom:944.730000px;}
.y3c_c00429{bottom:945.900000px;}
.yb_c00429{bottom:965.430000px;}
.y3b_c00429{bottom:968.400000px;}
.ya_c00429{bottom:986.130000px;}
.y3a_c00429{bottom:990.900000px;}
.y9_c00429{bottom:1006.830000px;}
.y37_c00429{bottom:1016.820000px;}
.y8_c00429{bottom:1027.530000px;}
.y36_c00429{bottom:1039.590000px;}
.y7_c00429{bottom:1048.230000px;}
.y6_c00429{bottom:1068.930000px;}
.y34_c00429{bottom:1075.950000px;}
.y5_c00429{bottom:1110.330000px;}
.y4_c00429{bottom:1131.030000px;}
.y3_c00429{bottom:1150.915500px;}
.y2_c00429{bottom:1166.400000px;}
.y1_c00429{bottom:1197.450000px;}
.hc_c00429{height:13.770000px;}
.h10_c00429{height:14.940000px;}
.h12_c00429{height:18.990000px;}
.ha_c00429{height:22.498500px;}
.h9_c00429{height:22.500000px;}
.hb_c00429{height:23.580000px;}
.h8_c00429{height:23.670000px;}
.h4_c00429{height:30.150000px;}
.h11_c00429{height:37.980000px;}
.he_c00429{height:37.981500px;}
.hd_c00429{height:46.991602px;}
.h2_c00429{height:52.998047px;}
.h7_c00429{height:56.880000px;}
.hf_c00429{height:56.970000px;}
.h6_c00429{height:64.657617px;}
.h3_c00429{height:70.664062px;}
.h5_c00429{height:96.870938px;}
.h0_c00429{height:1262.880000px;}
.h1_c00429{height:1263.000000px;}
.w5_c00429{width:104.580000px;}
.w4_c00429{width:104.940000px;}
.w8_c00429{width:105.750000px;}
.w9_c00429{width:105.751500px;}
.w6_c00429{width:342.718500px;}
.w7_c00429{width:345.060000px;}
.w3_c00429{width:556.560000px;}
.w2_c00429{width:893.031000px;}
.w0_c00429{width:893.070000px;}
.w1_c00429{width:893.250000px;}
.x0_c00429{left:0.000000px;}
.x10_c00429{left:4.140000px;}
.x18_c00429{left:5.310000px;}
.xb_c00429{left:17.100000px;}
.x17_c00429{left:30.240000px;}
.xd_c00429{left:35.820000px;}
.x9_c00429{left:39.060000px;}
.x11_c00429{left:42.660000px;}
.x13_c00429{left:44.100000px;}
.x16_c00429{left:49.590000px;}
.x12_c00429{left:52.290000px;}
.x14_c00429{left:55.080000px;}
.x15_c00429{left:57.780000px;}
.x1b_c00429{left:63.270000px;}
.x5_c00429{left:122.310000px;}
.xf_c00429{left:123.480000px;}
.x2_c00429{left:127.620000px;}
.x1a_c00429{left:140.580000px;}
.x19_c00429{left:153.270000px;}
.x6_c00429{left:160.650000px;}
.x7_c00429{left:263.250000px;}
.x1_c00429{left:446.580000px;}
.x8_c00429{left:467.370000px;}
.xa_c00429{left:478.530000px;}
.xc_c00429{left:573.120000px;}
.xe_c00429{left:584.280000px;}
.x3_c00429{left:690.570000px;}
.x4_c00429{left:906.570000px;}
@media print{
.v2_c00429{vertical-align:-73.600000pt;}
.v1_c00429{vertical-align:-55.056000pt;}
.v0_c00429{vertical-align:0.000000pt;}
.ls5_c00429{letter-spacing:-0.170880pt;}
.ls6_c00429{letter-spacing:-0.058560pt;}
.ls4_c00429{letter-spacing:0.000000pt;}
.ls3_c00429{letter-spacing:0.019520pt;}
.ls7_c00429{letter-spacing:0.058560pt;}
.ls2_c00429{letter-spacing:0.175680pt;}
.ls0_c00429{letter-spacing:284.016000pt;}
.ls1_c00429{letter-spacing:1985.600000pt;}
.ws0_c00429{word-spacing:-14.815680pt;}
.ws1_c00429{word-spacing:-14.640000pt;}
.ws2_c00429{word-spacing:-14.581440pt;}
.ws3_c00429{word-spacing:-10.640000pt;}
.ws9_c00429{word-spacing:-0.175680pt;}
.ws5_c00429{word-spacing:-0.144000pt;}
.ws6_c00429{word-spacing:-0.085440pt;}
.wsa_c00429{word-spacing:-0.085120pt;}
.ws4_c00429{word-spacing:0.000000pt;}
.ws7_c00429{word-spacing:0.058560pt;}
.ws8_c00429{word-spacing:0.117120pt;}
._1_c00429{margin-left:-1.065920pt;}
._0_c00429{width:1.102176pt;}
.fs4_c00429{font-size:42.560000pt;}
.fs0_c00429{font-size:48.000000pt;}
.fs3_c00429{font-size:58.560000pt;}
.fs1_c00429{font-size:64.000000pt;}
.fs2_c00429{font-size:85.440000pt;}
.y46_c00429{bottom:-13.520000pt;}
.y0_c00429{bottom:0.000000pt;}
.y43_c00429{bottom:2.560000pt;}
.y39_c00429{bottom:3.360000pt;}
.y35_c00429{bottom:4.720000pt;}
.y45_c00429{bottom:20.240000pt;}
.y38_c00429{bottom:37.040000pt;}
.y4a_c00429{bottom:37.120000pt;}
.y62_c00429{bottom:50.880000pt;}
.y33_c00429{bottom:122.240000pt;}
.y61_c00429{bottom:133.600000pt;}
.y32_c00429{bottom:140.640000pt;}
.y60_c00429{bottom:145.840000pt;}
.y31_c00429{bottom:159.040000pt;}
.y5f_c00429{bottom:160.080000pt;}
.y30_c00429{bottom:177.440000pt;}
.y5e_c00429{bottom:181.120000pt;}
.y2f_c00429{bottom:195.840000pt;}
.y5d_c00429{bottom:201.120000pt;}
.y2e_c00429{bottom:214.240000pt;}
.y5c_c00429{bottom:221.120000pt;}
.y2d_c00429{bottom:232.640000pt;}
.y5b_c00429{bottom:241.120000pt;}
.y2c_c00429{bottom:251.040000pt;}
.y5a_c00429{bottom:261.120000pt;}
.y2b_c00429{bottom:269.440000pt;}
.y59_c00429{bottom:281.120000pt;}
.y2a_c00429{bottom:287.840000pt;}
.y58_c00429{bottom:301.120000pt;}
.y29_c00429{bottom:306.240000pt;}
.y57_c00429{bottom:320.000000pt;}
.y28_c00429{bottom:324.640000pt;}
.y56_c00429{bottom:340.160000pt;}
.y27_c00429{bottom:343.040000pt;}
.y26_c00429{bottom:361.440000pt;}
.y55_c00429{bottom:372.560000pt;}
.y25_c00429{bottom:379.840000pt;}
.y24_c00429{bottom:398.240000pt;}
.y54_c00429{bottom:399.360000pt;}
.y23_c00429{bottom:416.640000pt;}
.y53_c00429{bottom:433.120000pt;}
.y22_c00429{bottom:435.040000pt;}
.y52_c00429{bottom:448.400000pt;}
.y21_c00429{bottom:453.440000pt;}
.y51_c00429{bottom:469.440000pt;}
.y20_c00429{bottom:471.840000pt;}
.y50_c00429{bottom:489.440000pt;}
.y1f_c00429{bottom:490.240000pt;}
.y1e_c00429{bottom:508.640000pt;}
.y4f_c00429{bottom:509.440000pt;}
.y1d_c00429{bottom:527.040000pt;}
.y4e_c00429{bottom:529.440000pt;}
.y1c_c00429{bottom:545.440000pt;}
.y4d_c00429{bottom:549.440000pt;}
.y1b_c00429{bottom:563.840000pt;}
.y4c_c00429{bottom:569.440000pt;}
.y1a_c00429{bottom:582.240000pt;}
.y4b_c00429{bottom:589.440000pt;}
.y19_c00429{bottom:600.640000pt;}
.y49_c00429{bottom:612.400000pt;}
.y18_c00429{bottom:619.040000pt;}
.y48_c00429{bottom:632.640000pt;}
.y17_c00429{bottom:637.440000pt;}
.y16_c00429{bottom:655.840000pt;}
.y47_c00429{bottom:665.040000pt;}
.y15_c00429{bottom:674.240000pt;}
.y44_c00429{bottom:691.840000pt;}
.y14_c00429{bottom:692.640000pt;}
.y13_c00429{bottom:711.040000pt;}
.y42_c00429{bottom:725.600000pt;}
.y12_c00429{bottom:729.440000pt;}
.y41_c00429{bottom:739.840000pt;}
.y11_c00429{bottom:747.760000pt;}
.y40_c00429{bottom:760.800000pt;}
.y10_c00429{bottom:766.160000pt;}
.y3f_c00429{bottom:780.800000pt;}
.yf_c00429{bottom:784.560000pt;}
.y3e_c00429{bottom:800.800000pt;}
.ye_c00429{bottom:802.960000pt;}
.y3d_c00429{bottom:820.800000pt;}
.yd_c00429{bottom:821.360000pt;}
.yc_c00429{bottom:839.760000pt;}
.y3c_c00429{bottom:840.800000pt;}
.yb_c00429{bottom:858.160000pt;}
.y3b_c00429{bottom:860.800000pt;}
.ya_c00429{bottom:876.560000pt;}
.y3a_c00429{bottom:880.800000pt;}
.y9_c00429{bottom:894.960000pt;}
.y37_c00429{bottom:903.840000pt;}
.y8_c00429{bottom:913.360000pt;}
.y36_c00429{bottom:924.080000pt;}
.y7_c00429{bottom:931.760000pt;}
.y6_c00429{bottom:950.160000pt;}
.y34_c00429{bottom:956.400000pt;}
.y5_c00429{bottom:986.960000pt;}
.y4_c00429{bottom:1005.360000pt;}
.y3_c00429{bottom:1023.036000pt;}
.y2_c00429{bottom:1036.800000pt;}
.y1_c00429{bottom:1064.400000pt;}
.hc_c00429{height:12.240000pt;}
.h10_c00429{height:13.280000pt;}
.h12_c00429{height:16.880000pt;}
.ha_c00429{height:19.998667pt;}
.h9_c00429{height:20.000000pt;}
.hb_c00429{height:20.960000pt;}
.h8_c00429{height:21.040000pt;}
.h4_c00429{height:26.800000pt;}
.h11_c00429{height:33.760000pt;}
.he_c00429{height:33.761333pt;}
.hd_c00429{height:41.770312pt;}
.h2_c00429{height:47.109375pt;}
.h7_c00429{height:50.560000pt;}
.hf_c00429{height:50.640000pt;}
.h6_c00429{height:57.473437pt;}
.h3_c00429{height:62.812500pt;}
.h5_c00429{height:86.107500pt;}
.h0_c00429{height:1122.560000pt;}
.h1_c00429{height:1122.666667pt;}
.w5_c00429{width:92.960000pt;}
.w4_c00429{width:93.280000pt;}
.w8_c00429{width:94.000000pt;}
.w9_c00429{width:94.001333pt;}
.w6_c00429{width:304.638667pt;}
.w7_c00429{width:306.720000pt;}
.w3_c00429{width:494.720000pt;}
.w2_c00429{width:793.805333pt;}
.w0_c00429{width:793.840000pt;}
.w1_c00429{width:794.000000pt;}
.x0_c00429{left:0.000000pt;}
.x10_c00429{left:3.680000pt;}
.x18_c00429{left:4.720000pt;}
.xb_c00429{left:15.200000pt;}
.x17_c00429{left:26.880000pt;}
.xd_c00429{left:31.840000pt;}
.x9_c00429{left:34.720000pt;}
.x11_c00429{left:37.920000pt;}
.x13_c00429{left:39.200000pt;}
.x16_c00429{left:44.080000pt;}
.x12_c00429{left:46.480000pt;}
.x14_c00429{left:48.960000pt;}
.x15_c00429{left:51.360000pt;}
.x1b_c00429{left:56.240000pt;}
.x5_c00429{left:108.720000pt;}
.xf_c00429{left:109.760000pt;}
.x2_c00429{left:113.440000pt;}
.x1a_c00429{left:124.960000pt;}
.x19_c00429{left:136.240000pt;}
.x6_c00429{left:142.800000pt;}
.x7_c00429{left:234.000000pt;}
.x1_c00429{left:396.960000pt;}
.x8_c00429{left:415.440000pt;}
.xa_c00429{left:425.360000pt;}
.xc_c00429{left:509.440000pt;}
.xe_c00429{left:519.360000pt;}
.x3_c00429{left:613.840000pt;}
.x4_c00429{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_c135447ecbebb08c731bc780.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00430{vertical-align:-82.800000px;}
.v0_c00430{vertical-align:0.000000px;}
.ls8_c00430{letter-spacing:-0.263520px;}
.ls5_c00430{letter-spacing:-0.192240px;}
.ls4_c00430{letter-spacing:-0.108000px;}
.ls6_c00430{letter-spacing:-0.065880px;}
.ls3_c00430{letter-spacing:0.000000px;}
.ls2_c00430{letter-spacing:0.021960px;}
.ls7_c00430{letter-spacing:0.065880px;}
.ls1_c00430{letter-spacing:0.197640px;}
.ls0_c00430{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00430{word-spacing:-16.470000px;}
.ws2_c00430{word-spacing:-16.404120px;}
.ws3_c00430{word-spacing:-16.206480px;}
.ws4_c00430{word-spacing:-11.970000px;}
.wsb_c00430{word-spacing:-0.197640px;}
.ws8_c00430{word-spacing:-0.096120px;}
.wsc_c00430{word-spacing:-0.095760px;}
.ws5_c00430{word-spacing:0.000000px;}
.ws9_c00430{word-spacing:0.065880px;}
.wsa_c00430{word-spacing:0.131760px;}
.ws7_c00430{word-spacing:0.162000px;}
.ws6_c00430{word-spacing:0.270000px;}
._1_c00430{margin-left:-1.058400px;}
._0_c00430{width:1.220400px;}
.fc1_c00430{color:transparent;}
.fc0_c00430{color:rgb(0,0,0);}
.fs4_c00430{font-size:47.880000px;}
.fs0_c00430{font-size:54.000000px;}
.fs3_c00430{font-size:65.880000px;}
.fs1_c00430{font-size:72.000000px;}
.fs2_c00430{font-size:96.120000px;}
.y46_c00430{bottom:-15.210000px;}
.y0_c00430{bottom:0.000000px;}
.y43_c00430{bottom:2.880000px;}
.y53_c00430{bottom:2.970000px;}
.y39_c00430{bottom:3.780000px;}
.y57_c00430{bottom:5.220000px;}
.y35_c00430{bottom:5.310000px;}
.y55_c00430{bottom:22.680000px;}
.y45_c00430{bottom:22.770000px;}
.y38_c00430{bottom:41.670000px;}
.y4a_c00430{bottom:41.760000px;}
.y64_c00430{bottom:57.240000px;}
.y63_c00430{bottom:142.650000px;}
.y62_c00430{bottom:156.420000px;}
.y33_c00430{bottom:158.220000px;}
.y61_c00430{bottom:172.440000px;}
.y32_c00430{bottom:178.920000px;}
.y60_c00430{bottom:196.110000px;}
.y31_c00430{bottom:199.620000px;}
.y5f_c00430{bottom:218.610000px;}
.y30_c00430{bottom:220.320000px;}
.y2f_c00430{bottom:241.020000px;}
.y5e_c00430{bottom:241.110000px;}
.y2e_c00430{bottom:261.720000px;}
.y5d_c00430{bottom:263.610000px;}
.y2d_c00430{bottom:282.420000px;}
.y5c_c00430{bottom:286.110000px;}
.y2c_c00430{bottom:303.120000px;}
.y5b_c00430{bottom:308.610000px;}
.y2b_c00430{bottom:323.820000px;}
.y5a_c00430{bottom:331.110000px;}
.y2a_c00430{bottom:344.520000px;}
.y59_c00430{bottom:356.940000px;}
.y29_c00430{bottom:365.220000px;}
.y58_c00430{bottom:379.710000px;}
.y28_c00430{bottom:385.920000px;}
.y27_c00430{bottom:406.620000px;}
.y56_c00430{bottom:416.160000px;}
.y26_c00430{bottom:427.320000px;}
.y54_c00430{bottom:447.660000px;}
.y25_c00430{bottom:448.020000px;}
.y24_c00430{bottom:468.720000px;}
.y52_c00430{bottom:485.550000px;}
.y23_c00430{bottom:489.420000px;}
.y51_c00430{bottom:501.750000px;}
.y22_c00430{bottom:510.120000px;}
.y50_c00430{bottom:525.420000px;}
.y21_c00430{bottom:530.820000px;}
.y4f_c00430{bottom:547.920000px;}
.y20_c00430{bottom:551.520000px;}
.y4e_c00430{bottom:570.420000px;}
.y1f_c00430{bottom:572.220000px;}
.y1e_c00430{bottom:592.920000px;}
.y1d_c00430{bottom:613.620000px;}
.y4d_c00430{bottom:615.420000px;}
.y1c_c00430{bottom:634.320000px;}
.y4c_c00430{bottom:637.920000px;}
.y1b_c00430{bottom:655.020000px;}
.y4b_c00430{bottom:660.420000px;}
.y1a_c00430{bottom:675.720000px;}
.y49_c00430{bottom:686.250000px;}
.y19_c00430{bottom:696.420000px;}
.y48_c00430{bottom:709.020000px;}
.y18_c00430{bottom:717.120000px;}
.y17_c00430{bottom:737.820000px;}
.y47_c00430{bottom:745.470000px;}
.y16_c00430{bottom:758.520000px;}
.y44_c00430{bottom:776.970000px;}
.y15_c00430{bottom:779.220000px;}
.y14_c00430{bottom:799.920000px;}
.y42_c00430{bottom:814.950000px;}
.y13_c00430{bottom:820.620000px;}
.y41_c00430{bottom:830.970000px;}
.y12_c00430{bottom:841.230000px;}
.y40_c00430{bottom:854.550000px;}
.y11_c00430{bottom:861.930000px;}
.y3f_c00430{bottom:877.050000px;}
.y10_c00430{bottom:882.630000px;}
.y3e_c00430{bottom:899.550000px;}
.yf_c00430{bottom:903.330000px;}
.y3d_c00430{bottom:922.050000px;}
.ye_c00430{bottom:924.030000px;}
.y3c_c00430{bottom:944.550000px;}
.yd_c00430{bottom:944.730000px;}
.yc_c00430{bottom:965.430000px;}
.y3b_c00430{bottom:967.050000px;}
.yb_c00430{bottom:986.130000px;}
.y3a_c00430{bottom:989.550000px;}
.ya_c00430{bottom:1006.830000px;}
.y37_c00430{bottom:1015.470000px;}
.y9_c00430{bottom:1027.530000px;}
.y36_c00430{bottom:1038.240000px;}
.y8_c00430{bottom:1048.230000px;}
.y7_c00430{bottom:1068.930000px;}
.y34_c00430{bottom:1074.600000px;}
.y6_c00430{bottom:1110.330000px;}
.y5_c00430{bottom:1131.030000px;}
.y4_c00430{bottom:1150.920000px;}
.y3_c00430{bottom:1166.404500px;}
.y2_c00430{bottom:1181.970000px;}
.y1_c00430{bottom:1197.450000px;}
.hd_c00430{height:13.770000px;}
.h11_c00430{height:13.950000px;}
.hb_c00430{height:22.498500px;}
.ha_c00430{height:22.500000px;}
.h13_c00430{height:23.578500px;}
.hc_c00430{height:23.580000px;}
.h9_c00430{height:23.670000px;}
.h14_c00430{height:23.671500px;}
.h5_c00430{height:31.500000px;}
.h12_c00430{height:37.890000px;}
.hf_c00430{height:37.981500px;}
.he_c00430{height:46.991602px;}
.h3_c00430{height:52.971680px;}
.h2_c00430{height:52.998047px;}
.h8_c00430{height:56.880000px;}
.h10_c00430{height:56.970000px;}
.h7_c00430{height:64.657617px;}
.h4_c00430{height:70.664062px;}
.h6_c00430{height:96.870938px;}
.h0_c00430{height:1262.880000px;}
.h1_c00430{height:1263.000000px;}
.wa_c00430{width:103.500000px;}
.w5_c00430{width:104.580000px;}
.w4_c00430{width:104.940000px;}
.w8_c00430{width:105.750000px;}
.w9_c00430{width:105.751500px;}
.w6_c00430{width:342.718500px;}
.wb_c00430{width:343.890000px;}
.w7_c00430{width:345.060000px;}
.w3_c00430{width:556.560000px;}
.w2_c00430{width:893.031000px;}
.w0_c00430{width:893.070000px;}
.w1_c00430{width:893.250000px;}
.x0_c00430{left:0.000000px;}
.x11_c00430{left:4.140000px;}
.x17_c00430{left:5.310000px;}
.x1b_c00430{left:16.020000px;}
.xc_c00430{left:17.100000px;}
.x20_c00430{left:29.160000px;}
.x16_c00430{left:30.240000px;}
.xe_c00430{left:35.820000px;}
.x1a_c00430{left:37.980000px;}
.xa_c00430{left:39.060000px;}
.x14_c00430{left:41.310000px;}
.x13_c00430{left:42.660000px;}
.x22_c00430{left:44.100000px;}
.x1d_c00430{left:48.510000px;}
.x15_c00430{left:49.590000px;}
.x1c_c00430{left:53.910000px;}
.x12_c00430{left:54.990000px;}
.x1f_c00430{left:56.700000px;}
.x1e_c00430{left:57.780000px;}
.x6_c00430{left:122.310000px;}
.x10_c00430{left:123.480000px;}
.x3_c00430{left:127.620000px;}
.x18_c00430{left:142.650000px;}
.x21_c00430{left:153.990000px;}
.x7_c00430{left:159.930000px;}
.x8_c00430{left:263.250000px;}
.x2_c00430{left:425.160000px;}
.x1_c00430{left:446.580000px;}
.x9_c00430{left:467.370000px;}
.x19_c00430{left:468.450000px;}
.xb_c00430{left:478.530000px;}
.xd_c00430{left:573.120000px;}
.xf_c00430{left:584.280000px;}
.x4_c00430{left:690.570000px;}
.x23_c00430{left:738.540000px;}
.x5_c00430{left:906.570000px;}
@media print{
.v1_c00430{vertical-align:-73.600000pt;}
.v0_c00430{vertical-align:0.000000pt;}
.ls8_c00430{letter-spacing:-0.234240pt;}
.ls5_c00430{letter-spacing:-0.170880pt;}
.ls4_c00430{letter-spacing:-0.096000pt;}
.ls6_c00430{letter-spacing:-0.058560pt;}
.ls3_c00430{letter-spacing:0.000000pt;}
.ls2_c00430{letter-spacing:0.019520pt;}
.ls7_c00430{letter-spacing:0.058560pt;}
.ls1_c00430{letter-spacing:0.175680pt;}
.ls0_c00430{letter-spacing:1985.600000pt;}
.ws0_c00430{word-spacing:-14.815680pt;}
.ws1_c00430{word-spacing:-14.640000pt;}
.ws2_c00430{word-spacing:-14.581440pt;}
.ws3_c00430{word-spacing:-14.405760pt;}
.ws4_c00430{word-spacing:-10.640000pt;}
.wsb_c00430{word-spacing:-0.175680pt;}
.ws8_c00430{word-spacing:-0.085440pt;}
.wsc_c00430{word-spacing:-0.085120pt;}
.ws5_c00430{word-spacing:0.000000pt;}
.ws9_c00430{word-spacing:0.058560pt;}
.wsa_c00430{word-spacing:0.117120pt;}
.ws7_c00430{word-spacing:0.144000pt;}
.ws6_c00430{word-spacing:0.240000pt;}
._1_c00430{margin-left:-0.940800pt;}
._0_c00430{width:1.084800pt;}
.fs4_c00430{font-size:42.560000pt;}
.fs0_c00430{font-size:48.000000pt;}
.fs3_c00430{font-size:58.560000pt;}
.fs1_c00430{font-size:64.000000pt;}
.fs2_c00430{font-size:85.440000pt;}
.y46_c00430{bottom:-13.520000pt;}
.y0_c00430{bottom:0.000000pt;}
.y43_c00430{bottom:2.560000pt;}
.y53_c00430{bottom:2.640000pt;}
.y39_c00430{bottom:3.360000pt;}
.y57_c00430{bottom:4.640000pt;}
.y35_c00430{bottom:4.720000pt;}
.y55_c00430{bottom:20.160000pt;}
.y45_c00430{bottom:20.240000pt;}
.y38_c00430{bottom:37.040000pt;}
.y4a_c00430{bottom:37.120000pt;}
.y64_c00430{bottom:50.880000pt;}
.y63_c00430{bottom:126.800000pt;}
.y62_c00430{bottom:139.040000pt;}
.y33_c00430{bottom:140.640000pt;}
.y61_c00430{bottom:153.280000pt;}
.y32_c00430{bottom:159.040000pt;}
.y60_c00430{bottom:174.320000pt;}
.y31_c00430{bottom:177.440000pt;}
.y5f_c00430{bottom:194.320000pt;}
.y30_c00430{bottom:195.840000pt;}
.y2f_c00430{bottom:214.240000pt;}
.y5e_c00430{bottom:214.320000pt;}
.y2e_c00430{bottom:232.640000pt;}
.y5d_c00430{bottom:234.320000pt;}
.y2d_c00430{bottom:251.040000pt;}
.y5c_c00430{bottom:254.320000pt;}
.y2c_c00430{bottom:269.440000pt;}
.y5b_c00430{bottom:274.320000pt;}
.y2b_c00430{bottom:287.840000pt;}
.y5a_c00430{bottom:294.320000pt;}
.y2a_c00430{bottom:306.240000pt;}
.y59_c00430{bottom:317.280000pt;}
.y29_c00430{bottom:324.640000pt;}
.y58_c00430{bottom:337.520000pt;}
.y28_c00430{bottom:343.040000pt;}
.y27_c00430{bottom:361.440000pt;}
.y56_c00430{bottom:369.920000pt;}
.y26_c00430{bottom:379.840000pt;}
.y54_c00430{bottom:397.920000pt;}
.y25_c00430{bottom:398.240000pt;}
.y24_c00430{bottom:416.640000pt;}
.y52_c00430{bottom:431.600000pt;}
.y23_c00430{bottom:435.040000pt;}
.y51_c00430{bottom:446.000000pt;}
.y22_c00430{bottom:453.440000pt;}
.y50_c00430{bottom:467.040000pt;}
.y21_c00430{bottom:471.840000pt;}
.y4f_c00430{bottom:487.040000pt;}
.y20_c00430{bottom:490.240000pt;}
.y4e_c00430{bottom:507.040000pt;}
.y1f_c00430{bottom:508.640000pt;}
.y1e_c00430{bottom:527.040000pt;}
.y1d_c00430{bottom:545.440000pt;}
.y4d_c00430{bottom:547.040000pt;}
.y1c_c00430{bottom:563.840000pt;}
.y4c_c00430{bottom:567.040000pt;}
.y1b_c00430{bottom:582.240000pt;}
.y4b_c00430{bottom:587.040000pt;}
.y1a_c00430{bottom:600.640000pt;}
.y49_c00430{bottom:610.000000pt;}
.y19_c00430{bottom:619.040000pt;}
.y48_c00430{bottom:630.240000pt;}
.y18_c00430{bottom:637.440000pt;}
.y17_c00430{bottom:655.840000pt;}
.y47_c00430{bottom:662.640000pt;}
.y16_c00430{bottom:674.240000pt;}
.y44_c00430{bottom:690.640000pt;}
.y15_c00430{bottom:692.640000pt;}
.y14_c00430{bottom:711.040000pt;}
.y42_c00430{bottom:724.400000pt;}
.y13_c00430{bottom:729.440000pt;}
.y41_c00430{bottom:738.640000pt;}
.y12_c00430{bottom:747.760000pt;}
.y40_c00430{bottom:759.600000pt;}
.y11_c00430{bottom:766.160000pt;}
.y3f_c00430{bottom:779.600000pt;}
.y10_c00430{bottom:784.560000pt;}
.y3e_c00430{bottom:799.600000pt;}
.yf_c00430{bottom:802.960000pt;}
.y3d_c00430{bottom:819.600000pt;}
.ye_c00430{bottom:821.360000pt;}
.y3c_c00430{bottom:839.600000pt;}
.yd_c00430{bottom:839.760000pt;}
.yc_c00430{bottom:858.160000pt;}
.y3b_c00430{bottom:859.600000pt;}
.yb_c00430{bottom:876.560000pt;}
.y3a_c00430{bottom:879.600000pt;}
.ya_c00430{bottom:894.960000pt;}
.y37_c00430{bottom:902.640000pt;}
.y9_c00430{bottom:913.360000pt;}
.y36_c00430{bottom:922.880000pt;}
.y8_c00430{bottom:931.760000pt;}
.y7_c00430{bottom:950.160000pt;}
.y34_c00430{bottom:955.200000pt;}
.y6_c00430{bottom:986.960000pt;}
.y5_c00430{bottom:1005.360000pt;}
.y4_c00430{bottom:1023.040000pt;}
.y3_c00430{bottom:1036.804000pt;}
.y2_c00430{bottom:1050.640000pt;}
.y1_c00430{bottom:1064.400000pt;}
.hd_c00430{height:12.240000pt;}
.h11_c00430{height:12.400000pt;}
.hb_c00430{height:19.998667pt;}
.ha_c00430{height:20.000000pt;}
.h13_c00430{height:20.958667pt;}
.hc_c00430{height:20.960000pt;}
.h9_c00430{height:21.040000pt;}
.h14_c00430{height:21.041333pt;}
.h5_c00430{height:28.000000pt;}
.h12_c00430{height:33.680000pt;}
.hf_c00430{height:33.761333pt;}
.he_c00430{height:41.770312pt;}
.h3_c00430{height:47.085938pt;}
.h2_c00430{height:47.109375pt;}
.h8_c00430{height:50.560000pt;}
.h10_c00430{height:50.640000pt;}
.h7_c00430{height:57.473437pt;}
.h4_c00430{height:62.812500pt;}
.h6_c00430{height:86.107500pt;}
.h0_c00430{height:1122.560000pt;}
.h1_c00430{height:1122.666667pt;}
.wa_c00430{width:92.000000pt;}
.w5_c00430{width:92.960000pt;}
.w4_c00430{width:93.280000pt;}
.w8_c00430{width:94.000000pt;}
.w9_c00430{width:94.001333pt;}
.w6_c00430{width:304.638667pt;}
.wb_c00430{width:305.680000pt;}
.w7_c00430{width:306.720000pt;}
.w3_c00430{width:494.720000pt;}
.w2_c00430{width:793.805333pt;}
.w0_c00430{width:793.840000pt;}
.w1_c00430{width:794.000000pt;}
.x0_c00430{left:0.000000pt;}
.x11_c00430{left:3.680000pt;}
.x17_c00430{left:4.720000pt;}
.x1b_c00430{left:14.240000pt;}
.xc_c00430{left:15.200000pt;}
.x20_c00430{left:25.920000pt;}
.x16_c00430{left:26.880000pt;}
.xe_c00430{left:31.840000pt;}
.x1a_c00430{left:33.760000pt;}
.xa_c00430{left:34.720000pt;}
.x14_c00430{left:36.720000pt;}
.x13_c00430{left:37.920000pt;}
.x22_c00430{left:39.200000pt;}
.x1d_c00430{left:43.120000pt;}
.x15_c00430{left:44.080000pt;}
.x1c_c00430{left:47.920000pt;}
.x12_c00430{left:48.880000pt;}
.x1f_c00430{left:50.400000pt;}
.x1e_c00430{left:51.360000pt;}
.x6_c00430{left:108.720000pt;}
.x10_c00430{left:109.760000pt;}
.x3_c00430{left:113.440000pt;}
.x18_c00430{left:126.800000pt;}
.x21_c00430{left:136.880000pt;}
.x7_c00430{left:142.160000pt;}
.x8_c00430{left:234.000000pt;}
.x2_c00430{left:377.920000pt;}
.x1_c00430{left:396.960000pt;}
.x9_c00430{left:415.440000pt;}
.x19_c00430{left:416.400000pt;}
.xb_c00430{left:425.360000pt;}
.xd_c00430{left:509.440000pt;}
.xf_c00430{left:519.360000pt;}
.x4_c00430{left:613.840000pt;}
.x23_c00430{left:656.480000pt;}
.x5_c00430{left:805.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_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_ad428c0492b92a744147f96d.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_b70e7f80a27881939b5dcbe5.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00431{vertical-align:-82.800000px;}
.v1_c00431{vertical-align:-61.938000px;}
.v0_c00431{vertical-align:0.000000px;}
.ls5_c00431{letter-spacing:-0.192240px;}
.ls6_c00431{letter-spacing:-0.065880px;}
.ls4_c00431{letter-spacing:0.000000px;}
.ls3_c00431{letter-spacing:0.021960px;}
.ls7_c00431{letter-spacing:0.065880px;}
.ls2_c00431{letter-spacing:0.197640px;}
.ls0_c00431{letter-spacing:319.518000px;}
.ls1_c00431{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00431{word-spacing:-16.470000px;}
.ws2_c00431{word-spacing:-16.404120px;}
.ws3_c00431{word-spacing:-11.970000px;}
.ws9_c00431{word-spacing:-0.197640px;}
.ws5_c00431{word-spacing:-0.162000px;}
.ws6_c00431{word-spacing:-0.096120px;}
.wsa_c00431{word-spacing:-0.095760px;}
.ws4_c00431{word-spacing:0.000000px;}
.ws7_c00431{word-spacing:0.065880px;}
.ws8_c00431{word-spacing:0.131760px;}
._1_c00431{margin-left:-1.199160px;}
._0_c00431{width:1.239948px;}
.fc1_c00431{color:transparent;}
.fc0_c00431{color:rgb(0,0,0);}
.fs4_c00431{font-size:47.880000px;}
.fs0_c00431{font-size:54.000000px;}
.fs3_c00431{font-size:65.880000px;}
.fs1_c00431{font-size:72.000000px;}
.fs2_c00431{font-size:96.120000px;}
.y46_c00431{bottom:-15.210000px;}
.y0_c00431{bottom:0.000000px;}
.y43_c00431{bottom:2.880000px;}
.y39_c00431{bottom:3.780000px;}
.y35_c00431{bottom:5.310000px;}
.y45_c00431{bottom:22.770000px;}
.y38_c00431{bottom:41.670000px;}
.y4a_c00431{bottom:41.760000px;}
.y62_c00431{bottom:57.240000px;}
.y33_c00431{bottom:137.520000px;}
.y61_c00431{bottom:140.850000px;}
.y60_c00431{bottom:157.050000px;}
.y32_c00431{bottom:158.220000px;}
.y5f_c00431{bottom:175.500000px;}
.y31_c00431{bottom:178.920000px;}
.y5e_c00431{bottom:199.080000px;}
.y30_c00431{bottom:199.620000px;}
.y2f_c00431{bottom:220.320000px;}
.y5d_c00431{bottom:221.580000px;}
.y2e_c00431{bottom:241.020000px;}
.y5c_c00431{bottom:244.080000px;}
.y2d_c00431{bottom:261.720000px;}
.y5b_c00431{bottom:266.580000px;}
.y2c_c00431{bottom:282.420000px;}
.y5a_c00431{bottom:289.080000px;}
.y2b_c00431{bottom:303.120000px;}
.y59_c00431{bottom:311.580000px;}
.y2a_c00431{bottom:323.820000px;}
.y58_c00431{bottom:334.080000px;}
.y29_c00431{bottom:344.520000px;}
.y57_c00431{bottom:360.000000px;}
.y28_c00431{bottom:365.220000px;}
.y56_c00431{bottom:382.680000px;}
.y27_c00431{bottom:385.920000px;}
.y26_c00431{bottom:406.620000px;}
.y55_c00431{bottom:419.130000px;}
.y25_c00431{bottom:427.320000px;}
.y24_c00431{bottom:448.020000px;}
.y54_c00431{bottom:449.280000px;}
.y23_c00431{bottom:468.720000px;}
.y53_c00431{bottom:487.260000px;}
.y22_c00431{bottom:489.420000px;}
.y52_c00431{bottom:504.450000px;}
.y21_c00431{bottom:510.120000px;}
.y51_c00431{bottom:528.120000px;}
.y20_c00431{bottom:530.820000px;}
.y50_c00431{bottom:550.620000px;}
.y1f_c00431{bottom:551.520000px;}
.y1e_c00431{bottom:572.220000px;}
.y4f_c00431{bottom:573.120000px;}
.y1d_c00431{bottom:592.920000px;}
.y4e_c00431{bottom:595.620000px;}
.y1c_c00431{bottom:613.620000px;}
.y4d_c00431{bottom:618.120000px;}
.y1b_c00431{bottom:634.320000px;}
.y4c_c00431{bottom:640.620000px;}
.y1a_c00431{bottom:655.020000px;}
.y4b_c00431{bottom:663.120000px;}
.y19_c00431{bottom:675.720000px;}
.y49_c00431{bottom:688.950000px;}
.y18_c00431{bottom:696.420000px;}
.y48_c00431{bottom:711.720000px;}
.y17_c00431{bottom:717.120000px;}
.y16_c00431{bottom:737.820000px;}
.y47_c00431{bottom:748.170000px;}
.y15_c00431{bottom:758.520000px;}
.y44_c00431{bottom:778.320000px;}
.y14_c00431{bottom:779.220000px;}
.y13_c00431{bottom:799.920000px;}
.y42_c00431{bottom:816.300000px;}
.y12_c00431{bottom:820.620000px;}
.y41_c00431{bottom:832.320000px;}
.y11_c00431{bottom:841.230000px;}
.y40_c00431{bottom:855.900000px;}
.y10_c00431{bottom:861.930000px;}
.y3f_c00431{bottom:878.400000px;}
.yf_c00431{bottom:882.630000px;}
.y3e_c00431{bottom:900.900000px;}
.ye_c00431{bottom:903.330000px;}
.y3d_c00431{bottom:923.400000px;}
.yd_c00431{bottom:924.030000px;}
.yc_c00431{bottom:944.730000px;}
.y3c_c00431{bottom:945.900000px;}
.yb_c00431{bottom:965.430000px;}
.y3b_c00431{bottom:968.400000px;}
.ya_c00431{bottom:986.130000px;}
.y3a_c00431{bottom:990.900000px;}
.y9_c00431{bottom:1006.830000px;}
.y37_c00431{bottom:1016.820000px;}
.y8_c00431{bottom:1027.530000px;}
.y36_c00431{bottom:1039.590000px;}
.y7_c00431{bottom:1048.230000px;}
.y6_c00431{bottom:1068.930000px;}
.y34_c00431{bottom:1075.950000px;}
.y5_c00431{bottom:1110.330000px;}
.y4_c00431{bottom:1131.030000px;}
.y3_c00431{bottom:1150.915500px;}
.y2_c00431{bottom:1166.400000px;}
.y1_c00431{bottom:1197.450000px;}
.hc_c00431{height:13.770000px;}
.h10_c00431{height:14.940000px;}
.h12_c00431{height:16.200000px;}
.ha_c00431{height:22.498500px;}
.h9_c00431{height:22.500000px;}
.hb_c00431{height:23.580000px;}
.h8_c00431{height:23.670000px;}
.h4_c00431{height:30.150000px;}
.h11_c00431{height:37.980000px;}
.he_c00431{height:37.981500px;}
.hd_c00431{height:46.991602px;}
.h2_c00431{height:52.998047px;}
.h7_c00431{height:56.880000px;}
.hf_c00431{height:56.970000px;}
.h6_c00431{height:64.657617px;}
.h3_c00431{height:70.664062px;}
.h5_c00431{height:96.870938px;}
.h0_c00431{height:1262.880000px;}
.h1_c00431{height:1263.000000px;}
.w5_c00431{width:104.580000px;}
.w4_c00431{width:104.940000px;}
.w8_c00431{width:105.750000px;}
.w9_c00431{width:105.751500px;}
.w6_c00431{width:342.718500px;}
.w7_c00431{width:345.060000px;}
.w3_c00431{width:556.560000px;}
.w2_c00431{width:893.031000px;}
.w0_c00431{width:893.070000px;}
.w1_c00431{width:893.250000px;}
.x0_c00431{left:0.000000px;}
.x10_c00431{left:4.140000px;}
.x16_c00431{left:5.310000px;}
.xb_c00431{left:17.100000px;}
.x12_c00431{left:22.140000px;}
.x15_c00431{left:30.240000px;}
.xd_c00431{left:35.820000px;}
.x9_c00431{left:39.060000px;}
.x1a_c00431{left:41.310000px;}
.x11_c00431{left:42.660000px;}
.x18_c00431{left:44.100000px;}
.x13_c00431{left:49.590000px;}
.x14_c00431{left:55.080000px;}
.x19_c00431{left:63.360000px;}
.x5_c00431{left:122.310000px;}
.xf_c00431{left:123.480000px;}
.x2_c00431{left:127.620000px;}
.x1b_c00431{left:131.310000px;}
.x17_c00431{left:139.320000px;}
.x6_c00431{left:142.650000px;}
.x7_c00431{left:263.250000px;}
.x1_c00431{left:446.580000px;}
.x8_c00431{left:467.370000px;}
.xa_c00431{left:478.530000px;}
.xc_c00431{left:573.120000px;}
.xe_c00431{left:584.280000px;}
.x3_c00431{left:690.570000px;}
.x4_c00431{left:906.570000px;}
@media print{
.v2_c00431{vertical-align:-73.600000pt;}
.v1_c00431{vertical-align:-55.056000pt;}
.v0_c00431{vertical-align:0.000000pt;}
.ls5_c00431{letter-spacing:-0.170880pt;}
.ls6_c00431{letter-spacing:-0.058560pt;}
.ls4_c00431{letter-spacing:0.000000pt;}
.ls3_c00431{letter-spacing:0.019520pt;}
.ls7_c00431{letter-spacing:0.058560pt;}
.ls2_c00431{letter-spacing:0.175680pt;}
.ls0_c00431{letter-spacing:284.016000pt;}
.ls1_c00431{letter-spacing:1985.600000pt;}
.ws0_c00431{word-spacing:-14.815680pt;}
.ws1_c00431{word-spacing:-14.640000pt;}
.ws2_c00431{word-spacing:-14.581440pt;}
.ws3_c00431{word-spacing:-10.640000pt;}
.ws9_c00431{word-spacing:-0.175680pt;}
.ws5_c00431{word-spacing:-0.144000pt;}
.ws6_c00431{word-spacing:-0.085440pt;}
.wsa_c00431{word-spacing:-0.085120pt;}
.ws4_c00431{word-spacing:0.000000pt;}
.ws7_c00431{word-spacing:0.058560pt;}
.ws8_c00431{word-spacing:0.117120pt;}
._1_c00431{margin-left:-1.065920pt;}
._0_c00431{width:1.102176pt;}
.fs4_c00431{font-size:42.560000pt;}
.fs0_c00431{font-size:48.000000pt;}
.fs3_c00431{font-size:58.560000pt;}
.fs1_c00431{font-size:64.000000pt;}
.fs2_c00431{font-size:85.440000pt;}
.y46_c00431{bottom:-13.520000pt;}
.y0_c00431{bottom:0.000000pt;}
.y43_c00431{bottom:2.560000pt;}
.y39_c00431{bottom:3.360000pt;}
.y35_c00431{bottom:4.720000pt;}
.y45_c00431{bottom:20.240000pt;}
.y38_c00431{bottom:37.040000pt;}
.y4a_c00431{bottom:37.120000pt;}
.y62_c00431{bottom:50.880000pt;}
.y33_c00431{bottom:122.240000pt;}
.y61_c00431{bottom:125.200000pt;}
.y60_c00431{bottom:139.600000pt;}
.y32_c00431{bottom:140.640000pt;}
.y5f_c00431{bottom:156.000000pt;}
.y31_c00431{bottom:159.040000pt;}
.y5e_c00431{bottom:176.960000pt;}
.y30_c00431{bottom:177.440000pt;}
.y2f_c00431{bottom:195.840000pt;}
.y5d_c00431{bottom:196.960000pt;}
.y2e_c00431{bottom:214.240000pt;}
.y5c_c00431{bottom:216.960000pt;}
.y2d_c00431{bottom:232.640000pt;}
.y5b_c00431{bottom:236.960000pt;}
.y2c_c00431{bottom:251.040000pt;}
.y5a_c00431{bottom:256.960000pt;}
.y2b_c00431{bottom:269.440000pt;}
.y59_c00431{bottom:276.960000pt;}
.y2a_c00431{bottom:287.840000pt;}
.y58_c00431{bottom:296.960000pt;}
.y29_c00431{bottom:306.240000pt;}
.y57_c00431{bottom:320.000000pt;}
.y28_c00431{bottom:324.640000pt;}
.y56_c00431{bottom:340.160000pt;}
.y27_c00431{bottom:343.040000pt;}
.y26_c00431{bottom:361.440000pt;}
.y55_c00431{bottom:372.560000pt;}
.y25_c00431{bottom:379.840000pt;}
.y24_c00431{bottom:398.240000pt;}
.y54_c00431{bottom:399.360000pt;}
.y23_c00431{bottom:416.640000pt;}
.y53_c00431{bottom:433.120000pt;}
.y22_c00431{bottom:435.040000pt;}
.y52_c00431{bottom:448.400000pt;}
.y21_c00431{bottom:453.440000pt;}
.y51_c00431{bottom:469.440000pt;}
.y20_c00431{bottom:471.840000pt;}
.y50_c00431{bottom:489.440000pt;}
.y1f_c00431{bottom:490.240000pt;}
.y1e_c00431{bottom:508.640000pt;}
.y4f_c00431{bottom:509.440000pt;}
.y1d_c00431{bottom:527.040000pt;}
.y4e_c00431{bottom:529.440000pt;}
.y1c_c00431{bottom:545.440000pt;}
.y4d_c00431{bottom:549.440000pt;}
.y1b_c00431{bottom:563.840000pt;}
.y4c_c00431{bottom:569.440000pt;}
.y1a_c00431{bottom:582.240000pt;}
.y4b_c00431{bottom:589.440000pt;}
.y19_c00431{bottom:600.640000pt;}
.y49_c00431{bottom:612.400000pt;}
.y18_c00431{bottom:619.040000pt;}
.y48_c00431{bottom:632.640000pt;}
.y17_c00431{bottom:637.440000pt;}
.y16_c00431{bottom:655.840000pt;}
.y47_c00431{bottom:665.040000pt;}
.y15_c00431{bottom:674.240000pt;}
.y44_c00431{bottom:691.840000pt;}
.y14_c00431{bottom:692.640000pt;}
.y13_c00431{bottom:711.040000pt;}
.y42_c00431{bottom:725.600000pt;}
.y12_c00431{bottom:729.440000pt;}
.y41_c00431{bottom:739.840000pt;}
.y11_c00431{bottom:747.760000pt;}
.y40_c00431{bottom:760.800000pt;}
.y10_c00431{bottom:766.160000pt;}
.y3f_c00431{bottom:780.800000pt;}
.yf_c00431{bottom:784.560000pt;}
.y3e_c00431{bottom:800.800000pt;}
.ye_c00431{bottom:802.960000pt;}
.y3d_c00431{bottom:820.800000pt;}
.yd_c00431{bottom:821.360000pt;}
.yc_c00431{bottom:839.760000pt;}
.y3c_c00431{bottom:840.800000pt;}
.yb_c00431{bottom:858.160000pt;}
.y3b_c00431{bottom:860.800000pt;}
.ya_c00431{bottom:876.560000pt;}
.y3a_c00431{bottom:880.800000pt;}
.y9_c00431{bottom:894.960000pt;}
.y37_c00431{bottom:903.840000pt;}
.y8_c00431{bottom:913.360000pt;}
.y36_c00431{bottom:924.080000pt;}
.y7_c00431{bottom:931.760000pt;}
.y6_c00431{bottom:950.160000pt;}
.y34_c00431{bottom:956.400000pt;}
.y5_c00431{bottom:986.960000pt;}
.y4_c00431{bottom:1005.360000pt;}
.y3_c00431{bottom:1023.036000pt;}
.y2_c00431{bottom:1036.800000pt;}
.y1_c00431{bottom:1064.400000pt;}
.hc_c00431{height:12.240000pt;}
.h10_c00431{height:13.280000pt;}
.h12_c00431{height:14.400000pt;}
.ha_c00431{height:19.998667pt;}
.h9_c00431{height:20.000000pt;}
.hb_c00431{height:20.960000pt;}
.h8_c00431{height:21.040000pt;}
.h4_c00431{height:26.800000pt;}
.h11_c00431{height:33.760000pt;}
.he_c00431{height:33.761333pt;}
.hd_c00431{height:41.770312pt;}
.h2_c00431{height:47.109375pt;}
.h7_c00431{height:50.560000pt;}
.hf_c00431{height:50.640000pt;}
.h6_c00431{height:57.473437pt;}
.h3_c00431{height:62.812500pt;}
.h5_c00431{height:86.107500pt;}
.h0_c00431{height:1122.560000pt;}
.h1_c00431{height:1122.666667pt;}
.w5_c00431{width:92.960000pt;}
.w4_c00431{width:93.280000pt;}
.w8_c00431{width:94.000000pt;}
.w9_c00431{width:94.001333pt;}
.w6_c00431{width:304.638667pt;}
.w7_c00431{width:306.720000pt;}
.w3_c00431{width:494.720000pt;}
.w2_c00431{width:793.805333pt;}
.w0_c00431{width:793.840000pt;}
.w1_c00431{width:794.000000pt;}
.x0_c00431{left:0.000000pt;}
.x10_c00431{left:3.680000pt;}
.x16_c00431{left:4.720000pt;}
.xb_c00431{left:15.200000pt;}
.x12_c00431{left:19.680000pt;}
.x15_c00431{left:26.880000pt;}
.xd_c00431{left:31.840000pt;}
.x9_c00431{left:34.720000pt;}
.x1a_c00431{left:36.720000pt;}
.x11_c00431{left:37.920000pt;}
.x18_c00431{left:39.200000pt;}
.x13_c00431{left:44.080000pt;}
.x14_c00431{left:48.960000pt;}
.x19_c00431{left:56.320000pt;}
.x5_c00431{left:108.720000pt;}
.xf_c00431{left:109.760000pt;}
.x2_c00431{left:113.440000pt;}
.x1b_c00431{left:116.720000pt;}
.x17_c00431{left:123.840000pt;}
.x6_c00431{left:126.800000pt;}
.x7_c00431{left:234.000000pt;}
.x1_c00431{left:396.960000pt;}
.x8_c00431{left:415.440000pt;}
.xa_c00431{left:425.360000pt;}
.xc_c00431{left:509.440000pt;}
.xe_c00431{left:519.360000pt;}
.x3_c00431{left:613.840000pt;}
.x4_c00431{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_4edcb6b946f80630fe3b4c8a.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00432{vertical-align:-82.800000px;}
.v0_c00432{vertical-align:0.000000px;}
.ls6_c00432{letter-spacing:-0.192240px;}
.ls5_c00432{letter-spacing:-0.108000px;}
.ls7_c00432{letter-spacing:-0.065880px;}
.ls4_c00432{letter-spacing:0.000000px;}
.ls2_c00432{letter-spacing:0.021960px;}
.ls8_c00432{letter-spacing:0.065880px;}
.ls3_c00432{letter-spacing:0.090000px;}
.ls1_c00432{letter-spacing:0.197640px;}
.ls0_c00432{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws4_c00432{word-spacing:-16.535880px;}
.ws1_c00432{word-spacing:-16.470000px;}
.ws2_c00432{word-spacing:-16.404120px;}
.ws3_c00432{word-spacing:-11.970000px;}
.wsb_c00432{word-spacing:-0.197640px;}
.ws8_c00432{word-spacing:-0.096120px;}
.wsc_c00432{word-spacing:-0.095760px;}
.ws5_c00432{word-spacing:0.000000px;}
.ws9_c00432{word-spacing:0.065880px;}
.wsa_c00432{word-spacing:0.131760px;}
.ws7_c00432{word-spacing:0.162000px;}
.ws6_c00432{word-spacing:0.270000px;}
._1_c00432{margin-left:-1.058400px;}
._0_c00432{width:1.220400px;}
.fc1_c00432{color:transparent;}
.fc0_c00432{color:rgb(0,0,0);}
.fs4_c00432{font-size:47.880000px;}
.fs0_c00432{font-size:54.000000px;}
.fs3_c00432{font-size:65.880000px;}
.fs1_c00432{font-size:72.000000px;}
.fs2_c00432{font-size:96.120000px;}
.y47_c00432{bottom:-15.210000px;}
.y0_c00432{bottom:0.000000px;}
.y44_c00432{bottom:2.880000px;}
.y63_c00432{bottom:2.970000px;}
.y3a_c00432{bottom:3.780000px;}
.y36_c00432{bottom:5.310000px;}
.y46_c00432{bottom:22.770000px;}
.y39_c00432{bottom:41.670000px;}
.y4b_c00432{bottom:41.760000px;}
.y64_c00432{bottom:57.240000px;}
.y62_c00432{bottom:137.340000px;}
.y34_c00432{bottom:137.520000px;}
.y61_c00432{bottom:154.620000px;}
.y33_c00432{bottom:158.220000px;}
.y60_c00432{bottom:174.150000px;}
.y32_c00432{bottom:178.920000px;}
.y5f_c00432{bottom:197.730000px;}
.y31_c00432{bottom:199.620000px;}
.y5e_c00432{bottom:220.230000px;}
.y30_c00432{bottom:220.320000px;}
.y2f_c00432{bottom:241.020000px;}
.y5d_c00432{bottom:242.730000px;}
.y2e_c00432{bottom:261.720000px;}
.y5c_c00432{bottom:265.230000px;}
.y2d_c00432{bottom:282.420000px;}
.y5b_c00432{bottom:287.730000px;}
.y2c_c00432{bottom:303.120000px;}
.y5a_c00432{bottom:310.230000px;}
.y2b_c00432{bottom:323.820000px;}
.y59_c00432{bottom:332.730000px;}
.y2a_c00432{bottom:344.520000px;}
.y58_c00432{bottom:358.650000px;}
.y29_c00432{bottom:365.220000px;}
.y57_c00432{bottom:381.330000px;}
.y28_c00432{bottom:385.920000px;}
.y27_c00432{bottom:406.620000px;}
.y56_c00432{bottom:417.780000px;}
.y26_c00432{bottom:427.320000px;}
.y55_c00432{bottom:447.930000px;}
.y25_c00432{bottom:448.020000px;}
.y24_c00432{bottom:468.720000px;}
.y54_c00432{bottom:485.910000px;}
.y23_c00432{bottom:489.420000px;}
.y53_c00432{bottom:503.100000px;}
.y22_c00432{bottom:510.120000px;}
.y52_c00432{bottom:526.770000px;}
.y21_c00432{bottom:530.820000px;}
.y51_c00432{bottom:549.270000px;}
.y20_c00432{bottom:551.520000px;}
.y50_c00432{bottom:571.770000px;}
.y1f_c00432{bottom:572.220000px;}
.y1e_c00432{bottom:592.920000px;}
.y4f_c00432{bottom:594.270000px;}
.y1d_c00432{bottom:613.620000px;}
.y4e_c00432{bottom:616.770000px;}
.y1c_c00432{bottom:634.320000px;}
.y4d_c00432{bottom:639.270000px;}
.y1b_c00432{bottom:655.020000px;}
.y4c_c00432{bottom:661.770000px;}
.y1a_c00432{bottom:675.720000px;}
.y4a_c00432{bottom:687.600000px;}
.y19_c00432{bottom:696.420000px;}
.y49_c00432{bottom:710.370000px;}
.y18_c00432{bottom:717.120000px;}
.y17_c00432{bottom:737.820000px;}
.y48_c00432{bottom:746.820000px;}
.y16_c00432{bottom:758.520000px;}
.y45_c00432{bottom:776.970000px;}
.y15_c00432{bottom:779.220000px;}
.y14_c00432{bottom:799.920000px;}
.y43_c00432{bottom:814.950000px;}
.y13_c00432{bottom:820.620000px;}
.y42_c00432{bottom:830.970000px;}
.y12_c00432{bottom:841.230000px;}
.y41_c00432{bottom:854.550000px;}
.y11_c00432{bottom:861.930000px;}
.y40_c00432{bottom:877.050000px;}
.y10_c00432{bottom:882.630000px;}
.y3f_c00432{bottom:899.550000px;}
.yf_c00432{bottom:903.330000px;}
.y3e_c00432{bottom:922.050000px;}
.ye_c00432{bottom:924.030000px;}
.y3d_c00432{bottom:944.550000px;}
.yd_c00432{bottom:944.730000px;}
.yc_c00432{bottom:965.430000px;}
.y3c_c00432{bottom:967.050000px;}
.yb_c00432{bottom:986.130000px;}
.y3b_c00432{bottom:989.550000px;}
.ya_c00432{bottom:1006.830000px;}
.y38_c00432{bottom:1015.470000px;}
.y9_c00432{bottom:1027.530000px;}
.y37_c00432{bottom:1038.240000px;}
.y8_c00432{bottom:1048.230000px;}
.y7_c00432{bottom:1068.930000px;}
.y35_c00432{bottom:1074.600000px;}
.y6_c00432{bottom:1110.330000px;}
.y5_c00432{bottom:1131.030000px;}
.y4_c00432{bottom:1150.920000px;}
.y3_c00432{bottom:1166.404500px;}
.y2_c00432{bottom:1181.970000px;}
.y1_c00432{bottom:1197.450000px;}
.hd_c00432{height:13.770000px;}
.h12_c00432{height:14.940000px;}
.h14_c00432{height:17.280000px;}
.hb_c00432{height:22.498500px;}
.ha_c00432{height:22.500000px;}
.hc_c00432{height:23.580000px;}
.h9_c00432{height:23.670000px;}
.h10_c00432{height:30.150000px;}
.h5_c00432{height:31.500000px;}
.h13_c00432{height:37.980000px;}
.hf_c00432{height:37.981500px;}
.he_c00432{height:46.991602px;}
.h3_c00432{height:52.971680px;}
.h2_c00432{height:52.998047px;}
.h8_c00432{height:56.880000px;}
.h11_c00432{height:56.970000px;}
.h7_c00432{height:64.657617px;}
.h4_c00432{height:70.664062px;}
.h6_c00432{height:96.870938px;}
.h0_c00432{height:1262.880000px;}
.h1_c00432{height:1263.000000px;}
.w5_c00432{width:104.580000px;}
.w4_c00432{width:104.940000px;}
.w8_c00432{width:105.750000px;}
.w9_c00432{width:105.751500px;}
.w6_c00432{width:342.718500px;}
.w7_c00432{width:345.060000px;}
.w3_c00432{width:556.560000px;}
.w2_c00432{width:893.031000px;}
.w0_c00432{width:893.070000px;}
.w1_c00432{width:893.250000px;}
.x0_c00432{left:0.000000px;}
.x11_c00432{left:4.140000px;}
.x17_c00432{left:5.310000px;}
.xc_c00432{left:17.100000px;}
.x16_c00432{left:30.240000px;}
.xe_c00432{left:35.820000px;}
.xa_c00432{left:39.060000px;}
.x19_c00432{left:41.310000px;}
.x1b_c00432{left:42.660000px;}
.x14_c00432{left:44.100000px;}
.x15_c00432{left:49.590000px;}
.x12_c00432{left:54.990000px;}
.x13_c00432{left:57.780000px;}
.x1a_c00432{left:63.360000px;}
.x6_c00432{left:122.310000px;}
.x10_c00432{left:123.480000px;}
.x3_c00432{left:127.620000px;}
.x18_c00432{left:130.590000px;}
.x7_c00432{left:136.620000px;}
.x8_c00432{left:263.250000px;}
.x2_c00432{left:425.160000px;}
.x1_c00432{left:446.580000px;}
.x9_c00432{left:467.370000px;}
.xb_c00432{left:478.530000px;}
.xd_c00432{left:573.120000px;}
.xf_c00432{left:584.280000px;}
.x4_c00432{left:690.570000px;}
.x1c_c00432{left:738.540000px;}
.x5_c00432{left:906.570000px;}
@media print{
.v1_c00432{vertical-align:-73.600000pt;}
.v0_c00432{vertical-align:0.000000pt;}
.ls6_c00432{letter-spacing:-0.170880pt;}
.ls5_c00432{letter-spacing:-0.096000pt;}
.ls7_c00432{letter-spacing:-0.058560pt;}
.ls4_c00432{letter-spacing:0.000000pt;}
.ls2_c00432{letter-spacing:0.019520pt;}
.ls8_c00432{letter-spacing:0.058560pt;}
.ls3_c00432{letter-spacing:0.080000pt;}
.ls1_c00432{letter-spacing:0.175680pt;}
.ls0_c00432{letter-spacing:1985.600000pt;}
.ws0_c00432{word-spacing:-14.815680pt;}
.ws4_c00432{word-spacing:-14.698560pt;}
.ws1_c00432{word-spacing:-14.640000pt;}
.ws2_c00432{word-spacing:-14.581440pt;}
.ws3_c00432{word-spacing:-10.640000pt;}
.wsb_c00432{word-spacing:-0.175680pt;}
.ws8_c00432{word-spacing:-0.085440pt;}
.wsc_c00432{word-spacing:-0.085120pt;}
.ws5_c00432{word-spacing:0.000000pt;}
.ws9_c00432{word-spacing:0.058560pt;}
.wsa_c00432{word-spacing:0.117120pt;}
.ws7_c00432{word-spacing:0.144000pt;}
.ws6_c00432{word-spacing:0.240000pt;}
._1_c00432{margin-left:-0.940800pt;}
._0_c00432{width:1.084800pt;}
.fs4_c00432{font-size:42.560000pt;}
.fs0_c00432{font-size:48.000000pt;}
.fs3_c00432{font-size:58.560000pt;}
.fs1_c00432{font-size:64.000000pt;}
.fs2_c00432{font-size:85.440000pt;}
.y47_c00432{bottom:-13.520000pt;}
.y0_c00432{bottom:0.000000pt;}
.y44_c00432{bottom:2.560000pt;}
.y63_c00432{bottom:2.640000pt;}
.y3a_c00432{bottom:3.360000pt;}
.y36_c00432{bottom:4.720000pt;}
.y46_c00432{bottom:20.240000pt;}
.y39_c00432{bottom:37.040000pt;}
.y4b_c00432{bottom:37.120000pt;}
.y64_c00432{bottom:50.880000pt;}
.y62_c00432{bottom:122.080000pt;}
.y34_c00432{bottom:122.240000pt;}
.y61_c00432{bottom:137.440000pt;}
.y33_c00432{bottom:140.640000pt;}
.y60_c00432{bottom:154.800000pt;}
.y32_c00432{bottom:159.040000pt;}
.y5f_c00432{bottom:175.760000pt;}
.y31_c00432{bottom:177.440000pt;}
.y5e_c00432{bottom:195.760000pt;}
.y30_c00432{bottom:195.840000pt;}
.y2f_c00432{bottom:214.240000pt;}
.y5d_c00432{bottom:215.760000pt;}
.y2e_c00432{bottom:232.640000pt;}
.y5c_c00432{bottom:235.760000pt;}
.y2d_c00432{bottom:251.040000pt;}
.y5b_c00432{bottom:255.760000pt;}
.y2c_c00432{bottom:269.440000pt;}
.y5a_c00432{bottom:275.760000pt;}
.y2b_c00432{bottom:287.840000pt;}
.y59_c00432{bottom:295.760000pt;}
.y2a_c00432{bottom:306.240000pt;}
.y58_c00432{bottom:318.800000pt;}
.y29_c00432{bottom:324.640000pt;}
.y57_c00432{bottom:338.960000pt;}
.y28_c00432{bottom:343.040000pt;}
.y27_c00432{bottom:361.440000pt;}
.y56_c00432{bottom:371.360000pt;}
.y26_c00432{bottom:379.840000pt;}
.y55_c00432{bottom:398.160000pt;}
.y25_c00432{bottom:398.240000pt;}
.y24_c00432{bottom:416.640000pt;}
.y54_c00432{bottom:431.920000pt;}
.y23_c00432{bottom:435.040000pt;}
.y53_c00432{bottom:447.200000pt;}
.y22_c00432{bottom:453.440000pt;}
.y52_c00432{bottom:468.240000pt;}
.y21_c00432{bottom:471.840000pt;}
.y51_c00432{bottom:488.240000pt;}
.y20_c00432{bottom:490.240000pt;}
.y50_c00432{bottom:508.240000pt;}
.y1f_c00432{bottom:508.640000pt;}
.y1e_c00432{bottom:527.040000pt;}
.y4f_c00432{bottom:528.240000pt;}
.y1d_c00432{bottom:545.440000pt;}
.y4e_c00432{bottom:548.240000pt;}
.y1c_c00432{bottom:563.840000pt;}
.y4d_c00432{bottom:568.240000pt;}
.y1b_c00432{bottom:582.240000pt;}
.y4c_c00432{bottom:588.240000pt;}
.y1a_c00432{bottom:600.640000pt;}
.y4a_c00432{bottom:611.200000pt;}
.y19_c00432{bottom:619.040000pt;}
.y49_c00432{bottom:631.440000pt;}
.y18_c00432{bottom:637.440000pt;}
.y17_c00432{bottom:655.840000pt;}
.y48_c00432{bottom:663.840000pt;}
.y16_c00432{bottom:674.240000pt;}
.y45_c00432{bottom:690.640000pt;}
.y15_c00432{bottom:692.640000pt;}
.y14_c00432{bottom:711.040000pt;}
.y43_c00432{bottom:724.400000pt;}
.y13_c00432{bottom:729.440000pt;}
.y42_c00432{bottom:738.640000pt;}
.y12_c00432{bottom:747.760000pt;}
.y41_c00432{bottom:759.600000pt;}
.y11_c00432{bottom:766.160000pt;}
.y40_c00432{bottom:779.600000pt;}
.y10_c00432{bottom:784.560000pt;}
.y3f_c00432{bottom:799.600000pt;}
.yf_c00432{bottom:802.960000pt;}
.y3e_c00432{bottom:819.600000pt;}
.ye_c00432{bottom:821.360000pt;}
.y3d_c00432{bottom:839.600000pt;}
.yd_c00432{bottom:839.760000pt;}
.yc_c00432{bottom:858.160000pt;}
.y3c_c00432{bottom:859.600000pt;}
.yb_c00432{bottom:876.560000pt;}
.y3b_c00432{bottom:879.600000pt;}
.ya_c00432{bottom:894.960000pt;}
.y38_c00432{bottom:902.640000pt;}
.y9_c00432{bottom:913.360000pt;}
.y37_c00432{bottom:922.880000pt;}
.y8_c00432{bottom:931.760000pt;}
.y7_c00432{bottom:950.160000pt;}
.y35_c00432{bottom:955.200000pt;}
.y6_c00432{bottom:986.960000pt;}
.y5_c00432{bottom:1005.360000pt;}
.y4_c00432{bottom:1023.040000pt;}
.y3_c00432{bottom:1036.804000pt;}
.y2_c00432{bottom:1050.640000pt;}
.y1_c00432{bottom:1064.400000pt;}
.hd_c00432{height:12.240000pt;}
.h12_c00432{height:13.280000pt;}
.h14_c00432{height:15.360000pt;}
.hb_c00432{height:19.998667pt;}
.ha_c00432{height:20.000000pt;}
.hc_c00432{height:20.960000pt;}
.h9_c00432{height:21.040000pt;}
.h10_c00432{height:26.800000pt;}
.h5_c00432{height:28.000000pt;}
.h13_c00432{height:33.760000pt;}
.hf_c00432{height:33.761333pt;}
.he_c00432{height:41.770312pt;}
.h3_c00432{height:47.085938pt;}
.h2_c00432{height:47.109375pt;}
.h8_c00432{height:50.560000pt;}
.h11_c00432{height:50.640000pt;}
.h7_c00432{height:57.473437pt;}
.h4_c00432{height:62.812500pt;}
.h6_c00432{height:86.107500pt;}
.h0_c00432{height:1122.560000pt;}
.h1_c00432{height:1122.666667pt;}
.w5_c00432{width:92.960000pt;}
.w4_c00432{width:93.280000pt;}
.w8_c00432{width:94.000000pt;}
.w9_c00432{width:94.001333pt;}
.w6_c00432{width:304.638667pt;}
.w7_c00432{width:306.720000pt;}
.w3_c00432{width:494.720000pt;}
.w2_c00432{width:793.805333pt;}
.w0_c00432{width:793.840000pt;}
.w1_c00432{width:794.000000pt;}
.x0_c00432{left:0.000000pt;}
.x11_c00432{left:3.680000pt;}
.x17_c00432{left:4.720000pt;}
.xc_c00432{left:15.200000pt;}
.x16_c00432{left:26.880000pt;}
.xe_c00432{left:31.840000pt;}
.xa_c00432{left:34.720000pt;}
.x19_c00432{left:36.720000pt;}
.x1b_c00432{left:37.920000pt;}
.x14_c00432{left:39.200000pt;}
.x15_c00432{left:44.080000pt;}
.x12_c00432{left:48.880000pt;}
.x13_c00432{left:51.360000pt;}
.x1a_c00432{left:56.320000pt;}
.x6_c00432{left:108.720000pt;}
.x10_c00432{left:109.760000pt;}
.x3_c00432{left:113.440000pt;}
.x18_c00432{left:116.080000pt;}
.x7_c00432{left:121.440000pt;}
.x8_c00432{left:234.000000pt;}
.x2_c00432{left:377.920000pt;}
.x1_c00432{left:396.960000pt;}
.x9_c00432{left:415.440000pt;}
.xb_c00432{left:425.360000pt;}
.xd_c00432{left:509.440000pt;}
.xf_c00432{left:519.360000pt;}
.x4_c00432{left:613.840000pt;}
.x1c_c00432{left:656.480000pt;}
.x5_c00432{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_750555ed5871138e9cc90fc8.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00433{vertical-align:-82.800000px;}
.v1_c00433{vertical-align:-61.938000px;}
.v0_c00433{vertical-align:0.000000px;}
.ls5_c00433{letter-spacing:-0.192240px;}
.ls6_c00433{letter-spacing:-0.065880px;}
.ls4_c00433{letter-spacing:0.000000px;}
.ls3_c00433{letter-spacing:0.021960px;}
.ls7_c00433{letter-spacing:0.065880px;}
.ls2_c00433{letter-spacing:0.197640px;}
.ls0_c00433{letter-spacing:319.518000px;}
.ls1_c00433{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00433{word-spacing:-16.470000px;}
.ws2_c00433{word-spacing:-16.404120px;}
.ws3_c00433{word-spacing:-11.970000px;}
.ws9_c00433{word-spacing:-0.197640px;}
.ws5_c00433{word-spacing:-0.162000px;}
.ws6_c00433{word-spacing:-0.096120px;}
.wsa_c00433{word-spacing:-0.095760px;}
.ws4_c00433{word-spacing:0.000000px;}
.ws7_c00433{word-spacing:0.065880px;}
.ws8_c00433{word-spacing:0.131760px;}
._1_c00433{margin-left:-1.199160px;}
._0_c00433{width:1.239948px;}
.fc1_c00433{color:transparent;}
.fc0_c00433{color:rgb(0,0,0);}
.fs4_c00433{font-size:47.880000px;}
.fs0_c00433{font-size:54.000000px;}
.fs3_c00433{font-size:65.880000px;}
.fs1_c00433{font-size:72.000000px;}
.fs2_c00433{font-size:96.120000px;}
.y45_c00433{bottom:-15.210000px;}
.y0_c00433{bottom:0.000000px;}
.y42_c00433{bottom:2.880000px;}
.y53_c00433{bottom:2.970000px;}
.y38_c00433{bottom:3.780000px;}
.y57_c00433{bottom:5.220000px;}
.y34_c00433{bottom:5.310000px;}
.y55_c00433{bottom:22.680000px;}
.y44_c00433{bottom:22.770000px;}
.y37_c00433{bottom:41.670000px;}
.y49_c00433{bottom:41.760000px;}
.y64_c00433{bottom:57.240000px;}
.y63_c00433{bottom:142.650000px;}
.y62_c00433{bottom:157.770000px;}
.y32_c00433{bottom:158.220000px;}
.y61_c00433{bottom:175.140000px;}
.y31_c00433{bottom:178.920000px;}
.y60_c00433{bottom:198.810000px;}
.y30_c00433{bottom:199.620000px;}
.y2f_c00433{bottom:220.320000px;}
.y5f_c00433{bottom:221.310000px;}
.y2e_c00433{bottom:241.020000px;}
.y5e_c00433{bottom:243.810000px;}
.y2d_c00433{bottom:261.720000px;}
.y5d_c00433{bottom:266.310000px;}
.y2c_c00433{bottom:282.420000px;}
.y5c_c00433{bottom:288.810000px;}
.y2b_c00433{bottom:303.120000px;}
.y5b_c00433{bottom:311.310000px;}
.y2a_c00433{bottom:323.820000px;}
.y5a_c00433{bottom:333.810000px;}
.y29_c00433{bottom:344.520000px;}
.y59_c00433{bottom:359.640000px;}
.y28_c00433{bottom:365.220000px;}
.y58_c00433{bottom:382.410000px;}
.y27_c00433{bottom:385.920000px;}
.y26_c00433{bottom:406.620000px;}
.y56_c00433{bottom:418.860000px;}
.y25_c00433{bottom:427.320000px;}
.y24_c00433{bottom:448.020000px;}
.y54_c00433{bottom:449.010000px;}
.y23_c00433{bottom:468.720000px;}
.y52_c00433{bottom:486.900000px;}
.y22_c00433{bottom:489.420000px;}
.y51_c00433{bottom:503.100000px;}
.y21_c00433{bottom:510.120000px;}
.y50_c00433{bottom:526.770000px;}
.y20_c00433{bottom:530.820000px;}
.y4f_c00433{bottom:549.270000px;}
.y1f_c00433{bottom:551.520000px;}
.y4e_c00433{bottom:571.770000px;}
.y1e_c00433{bottom:572.220000px;}
.y1d_c00433{bottom:592.920000px;}
.y4d_c00433{bottom:594.270000px;}
.y1c_c00433{bottom:613.620000px;}
.y4c_c00433{bottom:616.770000px;}
.y1b_c00433{bottom:634.320000px;}
.y4b_c00433{bottom:639.270000px;}
.y1a_c00433{bottom:655.020000px;}
.y4a_c00433{bottom:661.770000px;}
.y19_c00433{bottom:675.720000px;}
.y48_c00433{bottom:687.600000px;}
.y18_c00433{bottom:696.420000px;}
.y47_c00433{bottom:710.370000px;}
.y17_c00433{bottom:717.120000px;}
.y16_c00433{bottom:737.820000px;}
.y46_c00433{bottom:746.820000px;}
.y15_c00433{bottom:758.520000px;}
.y43_c00433{bottom:778.320000px;}
.y14_c00433{bottom:779.220000px;}
.y13_c00433{bottom:799.920000px;}
.y41_c00433{bottom:816.300000px;}
.y12_c00433{bottom:820.620000px;}
.y40_c00433{bottom:832.320000px;}
.y11_c00433{bottom:841.230000px;}
.y3f_c00433{bottom:855.900000px;}
.y10_c00433{bottom:861.930000px;}
.y3e_c00433{bottom:878.400000px;}
.yf_c00433{bottom:882.630000px;}
.y3d_c00433{bottom:900.900000px;}
.ye_c00433{bottom:903.330000px;}
.y3c_c00433{bottom:923.400000px;}
.yd_c00433{bottom:924.030000px;}
.yc_c00433{bottom:944.730000px;}
.y3b_c00433{bottom:945.900000px;}
.yb_c00433{bottom:965.430000px;}
.y3a_c00433{bottom:968.400000px;}
.ya_c00433{bottom:986.130000px;}
.y39_c00433{bottom:990.900000px;}
.y9_c00433{bottom:1006.830000px;}
.y36_c00433{bottom:1016.820000px;}
.y8_c00433{bottom:1027.530000px;}
.y35_c00433{bottom:1039.590000px;}
.y7_c00433{bottom:1048.230000px;}
.y6_c00433{bottom:1068.930000px;}
.y33_c00433{bottom:1075.950000px;}
.y5_c00433{bottom:1110.330000px;}
.y4_c00433{bottom:1131.030000px;}
.y3_c00433{bottom:1150.915500px;}
.y2_c00433{bottom:1166.400000px;}
.y1_c00433{bottom:1197.450000px;}
.hc_c00433{height:13.770000px;}
.h11_c00433{height:13.950000px;}
.h15_c00433{height:15.120000px;}
.ha_c00433{height:22.498500px;}
.h9_c00433{height:22.500000px;}
.h13_c00433{height:23.578500px;}
.hb_c00433{height:23.580000px;}
.h8_c00433{height:23.670000px;}
.h14_c00433{height:23.671500px;}
.h4_c00433{height:30.150000px;}
.hf_c00433{height:31.500000px;}
.h12_c00433{height:37.890000px;}
.he_c00433{height:37.981500px;}
.hd_c00433{height:46.991602px;}
.h2_c00433{height:52.998047px;}
.h7_c00433{height:56.880000px;}
.h10_c00433{height:56.970000px;}
.h6_c00433{height:64.657617px;}
.h3_c00433{height:70.664062px;}
.h5_c00433{height:96.870938px;}
.h0_c00433{height:1262.880000px;}
.h1_c00433{height:1263.000000px;}
.w5_c00433{width:104.580000px;}
.w4_c00433{width:104.940000px;}
.w8_c00433{width:105.750000px;}
.w9_c00433{width:105.751500px;}
.w6_c00433{width:342.718500px;}
.w7_c00433{width:345.060000px;}
.w3_c00433{width:556.560000px;}
.w2_c00433{width:893.031000px;}
.w0_c00433{width:893.070000px;}
.w1_c00433{width:893.250000px;}
.x0_c00433{left:0.000000px;}
.x10_c00433{left:4.140000px;}
.x16_c00433{left:5.310000px;}
.xb_c00433{left:17.100000px;}
.x15_c00433{left:30.240000px;}
.xd_c00433{left:35.820000px;}
.x9_c00433{left:39.060000px;}
.x12_c00433{left:41.310000px;}
.x13_c00433{left:49.590000px;}
.x18_c00433{left:52.290000px;}
.x11_c00433{left:54.990000px;}
.x14_c00433{left:57.780000px;}
.x1a_c00433{left:71.460000px;}
.x19_c00433{left:108.990000px;}
.x6_c00433{left:110.250000px;}
.x17_c00433{left:116.640000px;}
.x5_c00433{left:122.310000px;}
.xf_c00433{left:123.480000px;}
.x2_c00433{left:127.620000px;}
.x7_c00433{left:263.250000px;}
.x1_c00433{left:446.580000px;}
.x8_c00433{left:467.370000px;}
.xa_c00433{left:478.530000px;}
.xc_c00433{left:573.120000px;}
.xe_c00433{left:584.280000px;}
.x3_c00433{left:690.570000px;}
.x4_c00433{left:906.570000px;}
@media print{
.v2_c00433{vertical-align:-73.600000pt;}
.v1_c00433{vertical-align:-55.056000pt;}
.v0_c00433{vertical-align:0.000000pt;}
.ls5_c00433{letter-spacing:-0.170880pt;}
.ls6_c00433{letter-spacing:-0.058560pt;}
.ls4_c00433{letter-spacing:0.000000pt;}
.ls3_c00433{letter-spacing:0.019520pt;}
.ls7_c00433{letter-spacing:0.058560pt;}
.ls2_c00433{letter-spacing:0.175680pt;}
.ls0_c00433{letter-spacing:284.016000pt;}
.ls1_c00433{letter-spacing:1985.600000pt;}
.ws0_c00433{word-spacing:-14.815680pt;}
.ws1_c00433{word-spacing:-14.640000pt;}
.ws2_c00433{word-spacing:-14.581440pt;}
.ws3_c00433{word-spacing:-10.640000pt;}
.ws9_c00433{word-spacing:-0.175680pt;}
.ws5_c00433{word-spacing:-0.144000pt;}
.ws6_c00433{word-spacing:-0.085440pt;}
.wsa_c00433{word-spacing:-0.085120pt;}
.ws4_c00433{word-spacing:0.000000pt;}
.ws7_c00433{word-spacing:0.058560pt;}
.ws8_c00433{word-spacing:0.117120pt;}
._1_c00433{margin-left:-1.065920pt;}
._0_c00433{width:1.102176pt;}
.fs4_c00433{font-size:42.560000pt;}
.fs0_c00433{font-size:48.000000pt;}
.fs3_c00433{font-size:58.560000pt;}
.fs1_c00433{font-size:64.000000pt;}
.fs2_c00433{font-size:85.440000pt;}
.y45_c00433{bottom:-13.520000pt;}
.y0_c00433{bottom:0.000000pt;}
.y42_c00433{bottom:2.560000pt;}
.y53_c00433{bottom:2.640000pt;}
.y38_c00433{bottom:3.360000pt;}
.y57_c00433{bottom:4.640000pt;}
.y34_c00433{bottom:4.720000pt;}
.y55_c00433{bottom:20.160000pt;}
.y44_c00433{bottom:20.240000pt;}
.y37_c00433{bottom:37.040000pt;}
.y49_c00433{bottom:37.120000pt;}
.y64_c00433{bottom:50.880000pt;}
.y63_c00433{bottom:126.800000pt;}
.y62_c00433{bottom:140.240000pt;}
.y32_c00433{bottom:140.640000pt;}
.y61_c00433{bottom:155.680000pt;}
.y31_c00433{bottom:159.040000pt;}
.y60_c00433{bottom:176.720000pt;}
.y30_c00433{bottom:177.440000pt;}
.y2f_c00433{bottom:195.840000pt;}
.y5f_c00433{bottom:196.720000pt;}
.y2e_c00433{bottom:214.240000pt;}
.y5e_c00433{bottom:216.720000pt;}
.y2d_c00433{bottom:232.640000pt;}
.y5d_c00433{bottom:236.720000pt;}
.y2c_c00433{bottom:251.040000pt;}
.y5c_c00433{bottom:256.720000pt;}
.y2b_c00433{bottom:269.440000pt;}
.y5b_c00433{bottom:276.720000pt;}
.y2a_c00433{bottom:287.840000pt;}
.y5a_c00433{bottom:296.720000pt;}
.y29_c00433{bottom:306.240000pt;}
.y59_c00433{bottom:319.680000pt;}
.y28_c00433{bottom:324.640000pt;}
.y58_c00433{bottom:339.920000pt;}
.y27_c00433{bottom:343.040000pt;}
.y26_c00433{bottom:361.440000pt;}
.y56_c00433{bottom:372.320000pt;}
.y25_c00433{bottom:379.840000pt;}
.y24_c00433{bottom:398.240000pt;}
.y54_c00433{bottom:399.120000pt;}
.y23_c00433{bottom:416.640000pt;}
.y52_c00433{bottom:432.800000pt;}
.y22_c00433{bottom:435.040000pt;}
.y51_c00433{bottom:447.200000pt;}
.y21_c00433{bottom:453.440000pt;}
.y50_c00433{bottom:468.240000pt;}
.y20_c00433{bottom:471.840000pt;}
.y4f_c00433{bottom:488.240000pt;}
.y1f_c00433{bottom:490.240000pt;}
.y4e_c00433{bottom:508.240000pt;}
.y1e_c00433{bottom:508.640000pt;}
.y1d_c00433{bottom:527.040000pt;}
.y4d_c00433{bottom:528.240000pt;}
.y1c_c00433{bottom:545.440000pt;}
.y4c_c00433{bottom:548.240000pt;}
.y1b_c00433{bottom:563.840000pt;}
.y4b_c00433{bottom:568.240000pt;}
.y1a_c00433{bottom:582.240000pt;}
.y4a_c00433{bottom:588.240000pt;}
.y19_c00433{bottom:600.640000pt;}
.y48_c00433{bottom:611.200000pt;}
.y18_c00433{bottom:619.040000pt;}
.y47_c00433{bottom:631.440000pt;}
.y17_c00433{bottom:637.440000pt;}
.y16_c00433{bottom:655.840000pt;}
.y46_c00433{bottom:663.840000pt;}
.y15_c00433{bottom:674.240000pt;}
.y43_c00433{bottom:691.840000pt;}
.y14_c00433{bottom:692.640000pt;}
.y13_c00433{bottom:711.040000pt;}
.y41_c00433{bottom:725.600000pt;}
.y12_c00433{bottom:729.440000pt;}
.y40_c00433{bottom:739.840000pt;}
.y11_c00433{bottom:747.760000pt;}
.y3f_c00433{bottom:760.800000pt;}
.y10_c00433{bottom:766.160000pt;}
.y3e_c00433{bottom:780.800000pt;}
.yf_c00433{bottom:784.560000pt;}
.y3d_c00433{bottom:800.800000pt;}
.ye_c00433{bottom:802.960000pt;}
.y3c_c00433{bottom:820.800000pt;}
.yd_c00433{bottom:821.360000pt;}
.yc_c00433{bottom:839.760000pt;}
.y3b_c00433{bottom:840.800000pt;}
.yb_c00433{bottom:858.160000pt;}
.y3a_c00433{bottom:860.800000pt;}
.ya_c00433{bottom:876.560000pt;}
.y39_c00433{bottom:880.800000pt;}
.y9_c00433{bottom:894.960000pt;}
.y36_c00433{bottom:903.840000pt;}
.y8_c00433{bottom:913.360000pt;}
.y35_c00433{bottom:924.080000pt;}
.y7_c00433{bottom:931.760000pt;}
.y6_c00433{bottom:950.160000pt;}
.y33_c00433{bottom:956.400000pt;}
.y5_c00433{bottom:986.960000pt;}
.y4_c00433{bottom:1005.360000pt;}
.y3_c00433{bottom:1023.036000pt;}
.y2_c00433{bottom:1036.800000pt;}
.y1_c00433{bottom:1064.400000pt;}
.hc_c00433{height:12.240000pt;}
.h11_c00433{height:12.400000pt;}
.h15_c00433{height:13.440000pt;}
.ha_c00433{height:19.998667pt;}
.h9_c00433{height:20.000000pt;}
.h13_c00433{height:20.958667pt;}
.hb_c00433{height:20.960000pt;}
.h8_c00433{height:21.040000pt;}
.h14_c00433{height:21.041333pt;}
.h4_c00433{height:26.800000pt;}
.hf_c00433{height:28.000000pt;}
.h12_c00433{height:33.680000pt;}
.he_c00433{height:33.761333pt;}
.hd_c00433{height:41.770312pt;}
.h2_c00433{height:47.109375pt;}
.h7_c00433{height:50.560000pt;}
.h10_c00433{height:50.640000pt;}
.h6_c00433{height:57.473437pt;}
.h3_c00433{height:62.812500pt;}
.h5_c00433{height:86.107500pt;}
.h0_c00433{height:1122.560000pt;}
.h1_c00433{height:1122.666667pt;}
.w5_c00433{width:92.960000pt;}
.w4_c00433{width:93.280000pt;}
.w8_c00433{width:94.000000pt;}
.w9_c00433{width:94.001333pt;}
.w6_c00433{width:304.638667pt;}
.w7_c00433{width:306.720000pt;}
.w3_c00433{width:494.720000pt;}
.w2_c00433{width:793.805333pt;}
.w0_c00433{width:793.840000pt;}
.w1_c00433{width:794.000000pt;}
.x0_c00433{left:0.000000pt;}
.x10_c00433{left:3.680000pt;}
.x16_c00433{left:4.720000pt;}
.xb_c00433{left:15.200000pt;}
.x15_c00433{left:26.880000pt;}
.xd_c00433{left:31.840000pt;}
.x9_c00433{left:34.720000pt;}
.x12_c00433{left:36.720000pt;}
.x13_c00433{left:44.080000pt;}
.x18_c00433{left:46.480000pt;}
.x11_c00433{left:48.880000pt;}
.x14_c00433{left:51.360000pt;}
.x1a_c00433{left:63.520000pt;}
.x19_c00433{left:96.880000pt;}
.x6_c00433{left:98.000000pt;}
.x17_c00433{left:103.680000pt;}
.x5_c00433{left:108.720000pt;}
.xf_c00433{left:109.760000pt;}
.x2_c00433{left:113.440000pt;}
.x7_c00433{left:234.000000pt;}
.x1_c00433{left:396.960000pt;}
.x8_c00433{left:415.440000pt;}
.xa_c00433{left:425.360000pt;}
.xc_c00433{left:509.440000pt;}
.xe_c00433{left:519.360000pt;}
.x3_c00433{left:613.840000pt;}
.x4_c00433{left:805.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_c00434 {
    display:none;
  }
  .loading-indicator_c00434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00434 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00434 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00434" -> "#page-container .classname_c00434")
 */
.pf_c00434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00434 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00434 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00434 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00434 {overflow:visible;}
  }
}
.c_c00434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00434 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00434:after { /* webkit #35443 */
  content: '';
}
.t_c00434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00434 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00434 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00434 { /* info for Javascript */
  display:none;
}
.l_c00434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00434:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_d223e813cd5653351a70afe4.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00434{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00434{vertical-align:-82.800000px;}
.v0_c00434{vertical-align:0.000000px;}
.ls5_c00434{letter-spacing:-0.192240px;}
.ls4_c00434{letter-spacing:-0.108000px;}
.ls6_c00434{letter-spacing:-0.065880px;}
.ls3_c00434{letter-spacing:0.000000px;}
.ls2_c00434{letter-spacing:0.021960px;}
.ls7_c00434{letter-spacing:0.065880px;}
.ls1_c00434{letter-spacing:0.197640px;}
.ls0_c00434{letter-spacing:2233.800000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:-16.667640px;}
.ws1_c00434{word-spacing:-16.470000px;}
.ws2_c00434{word-spacing:-16.404120px;}
.ws3_c00434{word-spacing:-11.970000px;}
.wsa_c00434{word-spacing:-0.197640px;}
.ws7_c00434{word-spacing:-0.096120px;}
.wsb_c00434{word-spacing:-0.095760px;}
.ws4_c00434{word-spacing:0.000000px;}
.ws8_c00434{word-spacing:0.065880px;}
.ws9_c00434{word-spacing:0.131760px;}
.ws6_c00434{word-spacing:0.162000px;}
.ws5_c00434{word-spacing:0.270000px;}
._1_c00434{margin-left:-1.058400px;}
._0_c00434{width:1.220400px;}
.fc1_c00434{color:transparent;}
.fc0_c00434{color:rgb(0,0,0);}
.fs4_c00434{font-size:47.880000px;}
.fs0_c00434{font-size:54.000000px;}
.fs3_c00434{font-size:65.880000px;}
.fs1_c00434{font-size:72.000000px;}
.fs2_c00434{font-size:96.120000px;}
.y47_c00434{bottom:-15.210000px;}
.y0_c00434{bottom:0.000000px;}
.y44_c00434{bottom:2.880000px;}
.y55_c00434{bottom:2.970000px;}
.y3a_c00434{bottom:3.780000px;}
.y59_c00434{bottom:5.220000px;}
.y36_c00434{bottom:5.310000px;}
.y57_c00434{bottom:22.680000px;}
.y46_c00434{bottom:22.770000px;}
.y39_c00434{bottom:41.670000px;}
.y4b_c00434{bottom:41.760000px;}
.y66_c00434{bottom:57.240000px;}
.y34_c00434{bottom:137.520000px;}
.y65_c00434{bottom:138.690000px;}
.y64_c00434{bottom:154.890000px;}
.y33_c00434{bottom:158.220000px;}
.y63_c00434{bottom:173.340000px;}
.y32_c00434{bottom:178.920000px;}
.y62_c00434{bottom:197.010000px;}
.y31_c00434{bottom:199.620000px;}
.y61_c00434{bottom:219.510000px;}
.y30_c00434{bottom:220.320000px;}
.y2f_c00434{bottom:241.020000px;}
.y60_c00434{bottom:242.010000px;}
.y2e_c00434{bottom:261.720000px;}
.y5f_c00434{bottom:264.510000px;}
.y2d_c00434{bottom:282.420000px;}
.y5e_c00434{bottom:287.010000px;}
.y2c_c00434{bottom:303.120000px;}
.y5d_c00434{bottom:309.510000px;}
.y2b_c00434{bottom:323.820000px;}
.y5c_c00434{bottom:332.010000px;}
.y2a_c00434{bottom:344.520000px;}
.y5b_c00434{bottom:357.840000px;}
.y29_c00434{bottom:365.220000px;}
.y5a_c00434{bottom:380.610000px;}
.y28_c00434{bottom:385.920000px;}
.y27_c00434{bottom:406.620000px;}
.y58_c00434{bottom:417.060000px;}
.y26_c00434{bottom:427.320000px;}
.y56_c00434{bottom:447.210000px;}
.y25_c00434{bottom:448.020000px;}
.y24_c00434{bottom:468.720000px;}
.y54_c00434{bottom:485.100000px;}
.y23_c00434{bottom:489.420000px;}
.y53_c00434{bottom:504.450000px;}
.y22_c00434{bottom:510.120000px;}
.y52_c00434{bottom:528.120000px;}
.y21_c00434{bottom:530.820000px;}
.y51_c00434{bottom:550.620000px;}
.y20_c00434{bottom:551.520000px;}
.y1f_c00434{bottom:572.220000px;}
.y50_c00434{bottom:573.120000px;}
.y1e_c00434{bottom:592.920000px;}
.y4f_c00434{bottom:595.620000px;}
.y1d_c00434{bottom:613.620000px;}
.y4e_c00434{bottom:618.120000px;}
.y1c_c00434{bottom:634.320000px;}
.y4d_c00434{bottom:640.620000px;}
.y1b_c00434{bottom:655.020000px;}
.y4c_c00434{bottom:663.120000px;}
.y1a_c00434{bottom:675.720000px;}
.y4a_c00434{bottom:688.950000px;}
.y19_c00434{bottom:696.420000px;}
.y49_c00434{bottom:711.720000px;}
.y18_c00434{bottom:717.120000px;}
.y17_c00434{bottom:737.820000px;}
.y48_c00434{bottom:748.170000px;}
.y16_c00434{bottom:758.520000px;}
.y45_c00434{bottom:778.320000px;}
.y15_c00434{bottom:779.220000px;}
.y14_c00434{bottom:799.920000px;}
.y43_c00434{bottom:816.300000px;}
.y13_c00434{bottom:820.620000px;}
.y42_c00434{bottom:832.320000px;}
.y12_c00434{bottom:841.230000px;}
.y41_c00434{bottom:855.900000px;}
.y11_c00434{bottom:861.930000px;}
.y40_c00434{bottom:878.400000px;}
.y10_c00434{bottom:882.630000px;}
.y3f_c00434{bottom:900.900000px;}
.yf_c00434{bottom:903.330000px;}
.y3e_c00434{bottom:923.400000px;}
.ye_c00434{bottom:924.030000px;}
.yd_c00434{bottom:944.730000px;}
.y3d_c00434{bottom:945.900000px;}
.yc_c00434{bottom:965.430000px;}
.y3c_c00434{bottom:968.400000px;}
.yb_c00434{bottom:986.130000px;}
.y3b_c00434{bottom:990.900000px;}
.ya_c00434{bottom:1006.830000px;}
.y38_c00434{bottom:1016.820000px;}
.y9_c00434{bottom:1027.530000px;}
.y37_c00434{bottom:1039.500000px;}
.y8_c00434{bottom:1048.230000px;}
.y7_c00434{bottom:1068.930000px;}
.y35_c00434{bottom:1075.950000px;}
.y6_c00434{bottom:1110.330000px;}
.y5_c00434{bottom:1131.030000px;}
.y4_c00434{bottom:1150.920000px;}
.y3_c00434{bottom:1166.404500px;}
.y2_c00434{bottom:1181.970000px;}
.y1_c00434{bottom:1197.450000px;}
.hd_c00434{height:13.770000px;}
.h14_c00434{height:16.200000px;}
.h11_c00434{height:17.100000px;}
.hb_c00434{height:22.498500px;}
.ha_c00434{height:22.500000px;}
.hc_c00434{height:23.580000px;}
.h9_c00434{height:23.670000px;}
.h5_c00434{height:30.150000px;}
.h13_c00434{height:30.151500px;}
.h12_c00434{height:37.888500px;}
.hf_c00434{height:37.981500px;}
.he_c00434{height:46.991602px;}
.h3_c00434{height:52.971680px;}
.h2_c00434{height:52.998047px;}
.h8_c00434{height:56.880000px;}
.h10_c00434{height:56.970000px;}
.h7_c00434{height:64.657617px;}
.h4_c00434{height:70.664062px;}
.h6_c00434{height:96.870938px;}
.h0_c00434{height:1262.880000px;}
.h1_c00434{height:1263.000000px;}
.w5_c00434{width:104.580000px;}
.w4_c00434{width:104.940000px;}
.w8_c00434{width:105.750000px;}
.w9_c00434{width:105.751500px;}
.w6_c00434{width:342.718500px;}
.w7_c00434{width:345.060000px;}
.w3_c00434{width:556.560000px;}
.w2_c00434{width:893.031000px;}
.w0_c00434{width:893.070000px;}
.w1_c00434{width:893.250000px;}
.x0_c00434{left:0.000000px;}
.x11_c00434{left:4.140000px;}
.x16_c00434{left:5.310000px;}
.xc_c00434{left:17.100000px;}
.x15_c00434{left:30.240000px;}
.xe_c00434{left:35.820000px;}
.xa_c00434{left:39.060000px;}
.x12_c00434{left:42.660000px;}
.x1a_c00434{left:44.100000px;}
.x19_c00434{left:49.590000px;}
.x14_c00434{left:52.290000px;}
.x18_c00434{left:54.990000px;}
.x13_c00434{left:57.780000px;}
.x6_c00434{left:122.310000px;}
.x10_c00434{left:123.480000px;}
.x3_c00434{left:127.620000px;}
.x17_c00434{left:129.600000px;}
.x7_c00434{left:151.920000px;}
.x8_c00434{left:263.250000px;}
.x2_c00434{left:425.160000px;}
.x1_c00434{left:446.580000px;}
.x9_c00434{left:467.370000px;}
.xb_c00434{left:478.530000px;}
.xd_c00434{left:573.120000px;}
.xf_c00434{left:584.280000px;}
.x4_c00434{left:690.570000px;}
.x1b_c00434{left:738.540000px;}
.x5_c00434{left:906.570000px;}
@media print{
.v1_c00434{vertical-align:-73.600000pt;}
.v0_c00434{vertical-align:0.000000pt;}
.ls5_c00434{letter-spacing:-0.170880pt;}
.ls4_c00434{letter-spacing:-0.096000pt;}
.ls6_c00434{letter-spacing:-0.058560pt;}
.ls3_c00434{letter-spacing:0.000000pt;}
.ls2_c00434{letter-spacing:0.019520pt;}
.ls7_c00434{letter-spacing:0.058560pt;}
.ls1_c00434{letter-spacing:0.175680pt;}
.ls0_c00434{letter-spacing:1985.600000pt;}
.ws0_c00434{word-spacing:-14.815680pt;}
.ws1_c00434{word-spacing:-14.640000pt;}
.ws2_c00434{word-spacing:-14.581440pt;}
.ws3_c00434{word-spacing:-10.640000pt;}
.wsa_c00434{word-spacing:-0.175680pt;}
.ws7_c00434{word-spacing:-0.085440pt;}
.wsb_c00434{word-spacing:-0.085120pt;}
.ws4_c00434{word-spacing:0.000000pt;}
.ws8_c00434{word-spacing:0.058560pt;}
.ws9_c00434{word-spacing:0.117120pt;}
.ws6_c00434{word-spacing:0.144000pt;}
.ws5_c00434{word-spacing:0.240000pt;}
._1_c00434{margin-left:-0.940800pt;}
._0_c00434{width:1.084800pt;}
.fs4_c00434{font-size:42.560000pt;}
.fs0_c00434{font-size:48.000000pt;}
.fs3_c00434{font-size:58.560000pt;}
.fs1_c00434{font-size:64.000000pt;}
.fs2_c00434{font-size:85.440000pt;}
.y47_c00434{bottom:-13.520000pt;}
.y0_c00434{bottom:0.000000pt;}
.y44_c00434{bottom:2.560000pt;}
.y55_c00434{bottom:2.640000pt;}
.y3a_c00434{bottom:3.360000pt;}
.y59_c00434{bottom:4.640000pt;}
.y36_c00434{bottom:4.720000pt;}
.y57_c00434{bottom:20.160000pt;}
.y46_c00434{bottom:20.240000pt;}
.y39_c00434{bottom:37.040000pt;}
.y4b_c00434{bottom:37.120000pt;}
.y66_c00434{bottom:50.880000pt;}
.y34_c00434{bottom:122.240000pt;}
.y65_c00434{bottom:123.280000pt;}
.y64_c00434{bottom:137.680000pt;}
.y33_c00434{bottom:140.640000pt;}
.y63_c00434{bottom:154.080000pt;}
.y32_c00434{bottom:159.040000pt;}
.y62_c00434{bottom:175.120000pt;}
.y31_c00434{bottom:177.440000pt;}
.y61_c00434{bottom:195.120000pt;}
.y30_c00434{bottom:195.840000pt;}
.y2f_c00434{bottom:214.240000pt;}
.y60_c00434{bottom:215.120000pt;}
.y2e_c00434{bottom:232.640000pt;}
.y5f_c00434{bottom:235.120000pt;}
.y2d_c00434{bottom:251.040000pt;}
.y5e_c00434{bottom:255.120000pt;}
.y2c_c00434{bottom:269.440000pt;}
.y5d_c00434{bottom:275.120000pt;}
.y2b_c00434{bottom:287.840000pt;}
.y5c_c00434{bottom:295.120000pt;}
.y2a_c00434{bottom:306.240000pt;}
.y5b_c00434{bottom:318.080000pt;}
.y29_c00434{bottom:324.640000pt;}
.y5a_c00434{bottom:338.320000pt;}
.y28_c00434{bottom:343.040000pt;}
.y27_c00434{bottom:361.440000pt;}
.y58_c00434{bottom:370.720000pt;}
.y26_c00434{bottom:379.840000pt;}
.y56_c00434{bottom:397.520000pt;}
.y25_c00434{bottom:398.240000pt;}
.y24_c00434{bottom:416.640000pt;}
.y54_c00434{bottom:431.200000pt;}
.y23_c00434{bottom:435.040000pt;}
.y53_c00434{bottom:448.400000pt;}
.y22_c00434{bottom:453.440000pt;}
.y52_c00434{bottom:469.440000pt;}
.y21_c00434{bottom:471.840000pt;}
.y51_c00434{bottom:489.440000pt;}
.y20_c00434{bottom:490.240000pt;}
.y1f_c00434{bottom:508.640000pt;}
.y50_c00434{bottom:509.440000pt;}
.y1e_c00434{bottom:527.040000pt;}
.y4f_c00434{bottom:529.440000pt;}
.y1d_c00434{bottom:545.440000pt;}
.y4e_c00434{bottom:549.440000pt;}
.y1c_c00434{bottom:563.840000pt;}
.y4d_c00434{bottom:569.440000pt;}
.y1b_c00434{bottom:582.240000pt;}
.y4c_c00434{bottom:589.440000pt;}
.y1a_c00434{bottom:600.640000pt;}
.y4a_c00434{bottom:612.400000pt;}
.y19_c00434{bottom:619.040000pt;}
.y49_c00434{bottom:632.640000pt;}
.y18_c00434{bottom:637.440000pt;}
.y17_c00434{bottom:655.840000pt;}
.y48_c00434{bottom:665.040000pt;}
.y16_c00434{bottom:674.240000pt;}
.y45_c00434{bottom:691.840000pt;}
.y15_c00434{bottom:692.640000pt;}
.y14_c00434{bottom:711.040000pt;}
.y43_c00434{bottom:725.600000pt;}
.y13_c00434{bottom:729.440000pt;}
.y42_c00434{bottom:739.840000pt;}
.y12_c00434{bottom:747.760000pt;}
.y41_c00434{bottom:760.800000pt;}
.y11_c00434{bottom:766.160000pt;}
.y40_c00434{bottom:780.800000pt;}
.y10_c00434{bottom:784.560000pt;}
.y3f_c00434{bottom:800.800000pt;}
.yf_c00434{bottom:802.960000pt;}
.y3e_c00434{bottom:820.800000pt;}
.ye_c00434{bottom:821.360000pt;}
.yd_c00434{bottom:839.760000pt;}
.y3d_c00434{bottom:840.800000pt;}
.yc_c00434{bottom:858.160000pt;}
.y3c_c00434{bottom:860.800000pt;}
.yb_c00434{bottom:876.560000pt;}
.y3b_c00434{bottom:880.800000pt;}
.ya_c00434{bottom:894.960000pt;}
.y38_c00434{bottom:903.840000pt;}
.y9_c00434{bottom:913.360000pt;}
.y37_c00434{bottom:924.000000pt;}
.y8_c00434{bottom:931.760000pt;}
.y7_c00434{bottom:950.160000pt;}
.y35_c00434{bottom:956.400000pt;}
.y6_c00434{bottom:986.960000pt;}
.y5_c00434{bottom:1005.360000pt;}
.y4_c00434{bottom:1023.040000pt;}
.y3_c00434{bottom:1036.804000pt;}
.y2_c00434{bottom:1050.640000pt;}
.y1_c00434{bottom:1064.400000pt;}
.hd_c00434{height:12.240000pt;}
.h14_c00434{height:14.400000pt;}
.h11_c00434{height:15.200000pt;}
.hb_c00434{height:19.998667pt;}
.ha_c00434{height:20.000000pt;}
.hc_c00434{height:20.960000pt;}
.h9_c00434{height:21.040000pt;}
.h5_c00434{height:26.800000pt;}
.h13_c00434{height:26.801333pt;}
.h12_c00434{height:33.678667pt;}
.hf_c00434{height:33.761333pt;}
.he_c00434{height:41.770312pt;}
.h3_c00434{height:47.085938pt;}
.h2_c00434{height:47.109375pt;}
.h8_c00434{height:50.560000pt;}
.h10_c00434{height:50.640000pt;}
.h7_c00434{height:57.473437pt;}
.h4_c00434{height:62.812500pt;}
.h6_c00434{height:86.107500pt;}
.h0_c00434{height:1122.560000pt;}
.h1_c00434{height:1122.666667pt;}
.w5_c00434{width:92.960000pt;}
.w4_c00434{width:93.280000pt;}
.w8_c00434{width:94.000000pt;}
.w9_c00434{width:94.001333pt;}
.w6_c00434{width:304.638667pt;}
.w7_c00434{width:306.720000pt;}
.w3_c00434{width:494.720000pt;}
.w2_c00434{width:793.805333pt;}
.w0_c00434{width:793.840000pt;}
.w1_c00434{width:794.000000pt;}
.x0_c00434{left:0.000000pt;}
.x11_c00434{left:3.680000pt;}
.x16_c00434{left:4.720000pt;}
.xc_c00434{left:15.200000pt;}
.x15_c00434{left:26.880000pt;}
.xe_c00434{left:31.840000pt;}
.xa_c00434{left:34.720000pt;}
.x12_c00434{left:37.920000pt;}
.x1a_c00434{left:39.200000pt;}
.x19_c00434{left:44.080000pt;}
.x14_c00434{left:46.480000pt;}
.x18_c00434{left:48.880000pt;}
.x13_c00434{left:51.360000pt;}
.x6_c00434{left:108.720000pt;}
.x10_c00434{left:109.760000pt;}
.x3_c00434{left:113.440000pt;}
.x17_c00434{left:115.200000pt;}
.x7_c00434{left:135.040000pt;}
.x8_c00434{left:234.000000pt;}
.x2_c00434{left:377.920000pt;}
.x1_c00434{left:396.960000pt;}
.x9_c00434{left:415.440000pt;}
.xb_c00434{left:425.360000pt;}
.xd_c00434{left:509.440000pt;}
.xf_c00434{left:519.360000pt;}
.x4_c00434{left:613.840000pt;}
.x1b_c00434{left:656.480000pt;}
.x5_c00434{left:805.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_c00435 {
    display:none;
  }
  .loading-indicator_c00435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00435 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00435 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00435" -> "#page-container .classname_c00435")
 */
.pf_c00435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00435 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00435 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00435 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00435 {overflow:visible;}
  }
}
.c_c00435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00435 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00435:after { /* webkit #35443 */
  content: '';
}
.t_c00435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00435 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00435 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00435 { /* info for Javascript */
  display:none;
}
.l_c00435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00435:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_114d05dbdf2980c2a0ceaba0.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00435{vertical-align:-82.800000px;}
.v1_c00435{vertical-align:-61.938000px;}
.v0_c00435{vertical-align:0.000000px;}
.ls9_c00435{letter-spacing:-0.263520px;}
.ls6_c00435{letter-spacing:-0.192240px;}
.ls7_c00435{letter-spacing:-0.065880px;}
.ls5_c00435{letter-spacing:0.000000px;}
.ls3_c00435{letter-spacing:0.021960px;}
.ls8_c00435{letter-spacing:0.065880px;}
.ls4_c00435{letter-spacing:0.090000px;}
.ls2_c00435{letter-spacing:0.197640px;}
.ls0_c00435{letter-spacing:319.518000px;}
.ls1_c00435{letter-spacing:2233.800000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:-16.667640px;}
.ws1_c00435{word-spacing:-16.470000px;}
.ws2_c00435{word-spacing:-16.404120px;}
.ws3_c00435{word-spacing:-11.970000px;}
.ws9_c00435{word-spacing:-0.197640px;}
.ws5_c00435{word-spacing:-0.162000px;}
.ws6_c00435{word-spacing:-0.096120px;}
.wsa_c00435{word-spacing:-0.095760px;}
.ws4_c00435{word-spacing:0.000000px;}
.ws7_c00435{word-spacing:0.065880px;}
.ws8_c00435{word-spacing:0.131760px;}
.wsc_c00435{word-spacing:0.329400px;}
.wsb_c00435{word-spacing:0.527040px;}
._1_c00435{margin-left:-1.199160px;}
._0_c00435{width:1.239948px;}
.fc1_c00435{color:transparent;}
.fc0_c00435{color:rgb(0,0,0);}
.fs4_c00435{font-size:47.880000px;}
.fs0_c00435{font-size:54.000000px;}
.fs3_c00435{font-size:65.880000px;}
.fs1_c00435{font-size:72.000000px;}
.fs2_c00435{font-size:96.120000px;}
.y46_c00435{bottom:-15.210000px;}
.y0_c00435{bottom:0.000000px;}
.y43_c00435{bottom:2.880000px;}
.y39_c00435{bottom:3.780000px;}
.y35_c00435{bottom:5.310000px;}
.y45_c00435{bottom:22.770000px;}
.y38_c00435{bottom:41.670000px;}
.y4a_c00435{bottom:41.760000px;}
.y62_c00435{bottom:57.240000px;}
.y33_c00435{bottom:137.520000px;}
.y61_c00435{bottom:144.000000px;}
.y32_c00435{bottom:158.220000px;}
.y60_c00435{bottom:160.200000px;}
.y5f_c00435{bottom:178.650000px;}
.y31_c00435{bottom:178.920000px;}
.y30_c00435{bottom:199.620000px;}
.y5e_c00435{bottom:202.230000px;}
.y2f_c00435{bottom:220.320000px;}
.y5d_c00435{bottom:224.730000px;}
.y2e_c00435{bottom:241.020000px;}
.y5c_c00435{bottom:247.230000px;}
.y2d_c00435{bottom:261.720000px;}
.y5b_c00435{bottom:269.730000px;}
.y2c_c00435{bottom:282.420000px;}
.y5a_c00435{bottom:292.230000px;}
.y2b_c00435{bottom:303.120000px;}
.y59_c00435{bottom:314.730000px;}
.y2a_c00435{bottom:323.820000px;}
.y58_c00435{bottom:337.230000px;}
.y29_c00435{bottom:344.520000px;}
.y57_c00435{bottom:358.470000px;}
.y28_c00435{bottom:365.220000px;}
.y56_c00435{bottom:381.240000px;}
.y27_c00435{bottom:385.920000px;}
.y26_c00435{bottom:406.620000px;}
.y55_c00435{bottom:417.600000px;}
.y25_c00435{bottom:427.320000px;}
.y54_c00435{bottom:447.750000px;}
.y24_c00435{bottom:448.020000px;}
.y23_c00435{bottom:468.720000px;}
.y53_c00435{bottom:485.730000px;}
.y22_c00435{bottom:489.420000px;}
.y52_c00435{bottom:501.750000px;}
.y21_c00435{bottom:510.120000px;}
.y51_c00435{bottom:525.420000px;}
.y20_c00435{bottom:530.820000px;}
.y50_c00435{bottom:547.920000px;}
.y1f_c00435{bottom:551.520000px;}
.y4f_c00435{bottom:570.420000px;}
.y1e_c00435{bottom:572.220000px;}
.y1d_c00435{bottom:592.920000px;}
.y1c_c00435{bottom:613.620000px;}
.y4e_c00435{bottom:615.420000px;}
.y1b_c00435{bottom:634.320000px;}
.y4d_c00435{bottom:637.920000px;}
.y1a_c00435{bottom:655.020000px;}
.y4c_c00435{bottom:660.420000px;}
.y19_c00435{bottom:675.720000px;}
.y49_c00435{bottom:686.250000px;}
.y18_c00435{bottom:696.420000px;}
.y4b_c00435{bottom:709.020000px;}
.y48_c00435{bottom:709.740000px;}
.y17_c00435{bottom:717.120000px;}
.y16_c00435{bottom:737.820000px;}
.y47_c00435{bottom:746.820000px;}
.y15_c00435{bottom:758.520000px;}
.y44_c00435{bottom:776.970000px;}
.y14_c00435{bottom:779.220000px;}
.y13_c00435{bottom:799.920000px;}
.y42_c00435{bottom:814.950000px;}
.y12_c00435{bottom:820.620000px;}
.y41_c00435{bottom:830.970000px;}
.y11_c00435{bottom:841.230000px;}
.y40_c00435{bottom:854.550000px;}
.y10_c00435{bottom:861.930000px;}
.y3f_c00435{bottom:877.050000px;}
.yf_c00435{bottom:882.630000px;}
.y3e_c00435{bottom:899.550000px;}
.ye_c00435{bottom:903.330000px;}
.y3d_c00435{bottom:922.050000px;}
.yd_c00435{bottom:924.030000px;}
.y3c_c00435{bottom:944.550000px;}
.yc_c00435{bottom:944.730000px;}
.yb_c00435{bottom:965.430000px;}
.y3b_c00435{bottom:967.050000px;}
.ya_c00435{bottom:986.130000px;}
.y3a_c00435{bottom:989.550000px;}
.y9_c00435{bottom:1006.830000px;}
.y37_c00435{bottom:1015.470000px;}
.y8_c00435{bottom:1027.530000px;}
.y36_c00435{bottom:1038.240000px;}
.y7_c00435{bottom:1048.230000px;}
.y6_c00435{bottom:1068.930000px;}
.y34_c00435{bottom:1074.600000px;}
.y5_c00435{bottom:1110.330000px;}
.y4_c00435{bottom:1131.030000px;}
.y3_c00435{bottom:1150.915500px;}
.y2_c00435{bottom:1166.400000px;}
.y1_c00435{bottom:1197.450000px;}
.hc_c00435{height:13.770000px;}
.h15_c00435{height:16.200000px;}
.h14_c00435{height:18.990000px;}
.ha_c00435{height:22.498500px;}
.h9_c00435{height:22.500000px;}
.hb_c00435{height:23.580000px;}
.h8_c00435{height:23.670000px;}
.hf_c00435{height:30.150000px;}
.h12_c00435{height:30.151500px;}
.h4_c00435{height:31.500000px;}
.h11_c00435{height:37.980000px;}
.he_c00435{height:37.981500px;}
.hd_c00435{height:46.991602px;}
.h2_c00435{height:52.998047px;}
.h7_c00435{height:56.880000px;}
.h13_c00435{height:56.881500px;}
.h10_c00435{height:58.320000px;}
.h6_c00435{height:64.657617px;}
.h3_c00435{height:70.664062px;}
.h5_c00435{height:96.870938px;}
.h0_c00435{height:1262.880000px;}
.h1_c00435{height:1263.000000px;}
.wa_c00435{width:103.860000px;}
.w5_c00435{width:104.580000px;}
.w4_c00435{width:104.940000px;}
.w8_c00435{width:105.750000px;}
.w9_c00435{width:105.751500px;}
.w6_c00435{width:342.718500px;}
.w7_c00435{width:345.060000px;}
.w3_c00435{width:556.560000px;}
.w2_c00435{width:893.031000px;}
.w0_c00435{width:893.070000px;}
.w1_c00435{width:893.250000px;}
.x0_c00435{left:0.000000px;}
.x10_c00435{left:4.140000px;}
.x16_c00435{left:5.310000px;}
.xb_c00435{left:17.100000px;}
.x15_c00435{left:30.240000px;}
.xd_c00435{left:35.820000px;}
.x9_c00435{left:39.060000px;}
.x18_c00435{left:41.940000px;}
.x12_c00435{left:44.100000px;}
.x13_c00435{left:49.590000px;}
.x11_c00435{left:54.990000px;}
.x14_c00435{left:57.780000px;}
.x1a_c00435{left:63.270000px;}
.x5_c00435{left:122.310000px;}
.xf_c00435{left:123.480000px;}
.x2_c00435{left:127.620000px;}
.x6_c00435{left:135.900000px;}
.x19_c00435{left:139.230000px;}
.x17_c00435{left:145.350000px;}
.x7_c00435{left:263.250000px;}
.x1_c00435{left:446.580000px;}
.x8_c00435{left:467.370000px;}
.xa_c00435{left:478.530000px;}
.xc_c00435{left:573.120000px;}
.xe_c00435{left:584.280000px;}
.x3_c00435{left:690.570000px;}
.x4_c00435{left:906.570000px;}
@media print{
.v2_c00435{vertical-align:-73.600000pt;}
.v1_c00435{vertical-align:-55.056000pt;}
.v0_c00435{vertical-align:0.000000pt;}
.ls9_c00435{letter-spacing:-0.234240pt;}
.ls6_c00435{letter-spacing:-0.170880pt;}
.ls7_c00435{letter-spacing:-0.058560pt;}
.ls5_c00435{letter-spacing:0.000000pt;}
.ls3_c00435{letter-spacing:0.019520pt;}
.ls8_c00435{letter-spacing:0.058560pt;}
.ls4_c00435{letter-spacing:0.080000pt;}
.ls2_c00435{letter-spacing:0.175680pt;}
.ls0_c00435{letter-spacing:284.016000pt;}
.ls1_c00435{letter-spacing:1985.600000pt;}
.ws0_c00435{word-spacing:-14.815680pt;}
.ws1_c00435{word-spacing:-14.640000pt;}
.ws2_c00435{word-spacing:-14.581440pt;}
.ws3_c00435{word-spacing:-10.640000pt;}
.ws9_c00435{word-spacing:-0.175680pt;}
.ws5_c00435{word-spacing:-0.144000pt;}
.ws6_c00435{word-spacing:-0.085440pt;}
.wsa_c00435{word-spacing:-0.085120pt;}
.ws4_c00435{word-spacing:0.000000pt;}
.ws7_c00435{word-spacing:0.058560pt;}
.ws8_c00435{word-spacing:0.117120pt;}
.wsc_c00435{word-spacing:0.292800pt;}
.wsb_c00435{word-spacing:0.468480pt;}
._1_c00435{margin-left:-1.065920pt;}
._0_c00435{width:1.102176pt;}
.fs4_c00435{font-size:42.560000pt;}
.fs0_c00435{font-size:48.000000pt;}
.fs3_c00435{font-size:58.560000pt;}
.fs1_c00435{font-size:64.000000pt;}
.fs2_c00435{font-size:85.440000pt;}
.y46_c00435{bottom:-13.520000pt;}
.y0_c00435{bottom:0.000000pt;}
.y43_c00435{bottom:2.560000pt;}
.y39_c00435{bottom:3.360000pt;}
.y35_c00435{bottom:4.720000pt;}
.y45_c00435{bottom:20.240000pt;}
.y38_c00435{bottom:37.040000pt;}
.y4a_c00435{bottom:37.120000pt;}
.y62_c00435{bottom:50.880000pt;}
.y33_c00435{bottom:122.240000pt;}
.y61_c00435{bottom:128.000000pt;}
.y32_c00435{bottom:140.640000pt;}
.y60_c00435{bottom:142.400000pt;}
.y5f_c00435{bottom:158.800000pt;}
.y31_c00435{bottom:159.040000pt;}
.y30_c00435{bottom:177.440000pt;}
.y5e_c00435{bottom:179.760000pt;}
.y2f_c00435{bottom:195.840000pt;}
.y5d_c00435{bottom:199.760000pt;}
.y2e_c00435{bottom:214.240000pt;}
.y5c_c00435{bottom:219.760000pt;}
.y2d_c00435{bottom:232.640000pt;}
.y5b_c00435{bottom:239.760000pt;}
.y2c_c00435{bottom:251.040000pt;}
.y5a_c00435{bottom:259.760000pt;}
.y2b_c00435{bottom:269.440000pt;}
.y59_c00435{bottom:279.760000pt;}
.y2a_c00435{bottom:287.840000pt;}
.y58_c00435{bottom:299.760000pt;}
.y29_c00435{bottom:306.240000pt;}
.y57_c00435{bottom:318.640000pt;}
.y28_c00435{bottom:324.640000pt;}
.y56_c00435{bottom:338.880000pt;}
.y27_c00435{bottom:343.040000pt;}
.y26_c00435{bottom:361.440000pt;}
.y55_c00435{bottom:371.200000pt;}
.y25_c00435{bottom:379.840000pt;}
.y54_c00435{bottom:398.000000pt;}
.y24_c00435{bottom:398.240000pt;}
.y23_c00435{bottom:416.640000pt;}
.y53_c00435{bottom:431.760000pt;}
.y22_c00435{bottom:435.040000pt;}
.y52_c00435{bottom:446.000000pt;}
.y21_c00435{bottom:453.440000pt;}
.y51_c00435{bottom:467.040000pt;}
.y20_c00435{bottom:471.840000pt;}
.y50_c00435{bottom:487.040000pt;}
.y1f_c00435{bottom:490.240000pt;}
.y4f_c00435{bottom:507.040000pt;}
.y1e_c00435{bottom:508.640000pt;}
.y1d_c00435{bottom:527.040000pt;}
.y1c_c00435{bottom:545.440000pt;}
.y4e_c00435{bottom:547.040000pt;}
.y1b_c00435{bottom:563.840000pt;}
.y4d_c00435{bottom:567.040000pt;}
.y1a_c00435{bottom:582.240000pt;}
.y4c_c00435{bottom:587.040000pt;}
.y19_c00435{bottom:600.640000pt;}
.y49_c00435{bottom:610.000000pt;}
.y18_c00435{bottom:619.040000pt;}
.y4b_c00435{bottom:630.240000pt;}
.y48_c00435{bottom:630.880000pt;}
.y17_c00435{bottom:637.440000pt;}
.y16_c00435{bottom:655.840000pt;}
.y47_c00435{bottom:663.840000pt;}
.y15_c00435{bottom:674.240000pt;}
.y44_c00435{bottom:690.640000pt;}
.y14_c00435{bottom:692.640000pt;}
.y13_c00435{bottom:711.040000pt;}
.y42_c00435{bottom:724.400000pt;}
.y12_c00435{bottom:729.440000pt;}
.y41_c00435{bottom:738.640000pt;}
.y11_c00435{bottom:747.760000pt;}
.y40_c00435{bottom:759.600000pt;}
.y10_c00435{bottom:766.160000pt;}
.y3f_c00435{bottom:779.600000pt;}
.yf_c00435{bottom:784.560000pt;}
.y3e_c00435{bottom:799.600000pt;}
.ye_c00435{bottom:802.960000pt;}
.y3d_c00435{bottom:819.600000pt;}
.yd_c00435{bottom:821.360000pt;}
.y3c_c00435{bottom:839.600000pt;}
.yc_c00435{bottom:839.760000pt;}
.yb_c00435{bottom:858.160000pt;}
.y3b_c00435{bottom:859.600000pt;}
.ya_c00435{bottom:876.560000pt;}
.y3a_c00435{bottom:879.600000pt;}
.y9_c00435{bottom:894.960000pt;}
.y37_c00435{bottom:902.640000pt;}
.y8_c00435{bottom:913.360000pt;}
.y36_c00435{bottom:922.880000pt;}
.y7_c00435{bottom:931.760000pt;}
.y6_c00435{bottom:950.160000pt;}
.y34_c00435{bottom:955.200000pt;}
.y5_c00435{bottom:986.960000pt;}
.y4_c00435{bottom:1005.360000pt;}
.y3_c00435{bottom:1023.036000pt;}
.y2_c00435{bottom:1036.800000pt;}
.y1_c00435{bottom:1064.400000pt;}
.hc_c00435{height:12.240000pt;}
.h15_c00435{height:14.400000pt;}
.h14_c00435{height:16.880000pt;}
.ha_c00435{height:19.998667pt;}
.h9_c00435{height:20.000000pt;}
.hb_c00435{height:20.960000pt;}
.h8_c00435{height:21.040000pt;}
.hf_c00435{height:26.800000pt;}
.h12_c00435{height:26.801333pt;}
.h4_c00435{height:28.000000pt;}
.h11_c00435{height:33.760000pt;}
.he_c00435{height:33.761333pt;}
.hd_c00435{height:41.770312pt;}
.h2_c00435{height:47.109375pt;}
.h7_c00435{height:50.560000pt;}
.h13_c00435{height:50.561333pt;}
.h10_c00435{height:51.840000pt;}
.h6_c00435{height:57.473437pt;}
.h3_c00435{height:62.812500pt;}
.h5_c00435{height:86.107500pt;}
.h0_c00435{height:1122.560000pt;}
.h1_c00435{height:1122.666667pt;}
.wa_c00435{width:92.320000pt;}
.w5_c00435{width:92.960000pt;}
.w4_c00435{width:93.280000pt;}
.w8_c00435{width:94.000000pt;}
.w9_c00435{width:94.001333pt;}
.w6_c00435{width:304.638667pt;}
.w7_c00435{width:306.720000pt;}
.w3_c00435{width:494.720000pt;}
.w2_c00435{width:793.805333pt;}
.w0_c00435{width:793.840000pt;}
.w1_c00435{width:794.000000pt;}
.x0_c00435{left:0.000000pt;}
.x10_c00435{left:3.680000pt;}
.x16_c00435{left:4.720000pt;}
.xb_c00435{left:15.200000pt;}
.x15_c00435{left:26.880000pt;}
.xd_c00435{left:31.840000pt;}
.x9_c00435{left:34.720000pt;}
.x18_c00435{left:37.280000pt;}
.x12_c00435{left:39.200000pt;}
.x13_c00435{left:44.080000pt;}
.x11_c00435{left:48.880000pt;}
.x14_c00435{left:51.360000pt;}
.x1a_c00435{left:56.240000pt;}
.x5_c00435{left:108.720000pt;}
.xf_c00435{left:109.760000pt;}
.x2_c00435{left:113.440000pt;}
.x6_c00435{left:120.800000pt;}
.x19_c00435{left:123.760000pt;}
.x17_c00435{left:129.200000pt;}
.x7_c00435{left:234.000000pt;}
.x1_c00435{left:396.960000pt;}
.x8_c00435{left:415.440000pt;}
.xa_c00435{left:425.360000pt;}
.xc_c00435{left:509.440000pt;}
.xe_c00435{left:519.360000pt;}
.x3_c00435{left:613.840000pt;}
.x4_c00435{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_2bfb778f5cec3e2382a07924.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00436{vertical-align:-82.800000px;}
.v0_c00436{vertical-align:0.000000px;}
.ls6_c00436{letter-spacing:-0.192240px;}
.ls5_c00436{letter-spacing:-0.108000px;}
.ls7_c00436{letter-spacing:-0.065880px;}
.ls4_c00436{letter-spacing:0.000000px;}
.ls2_c00436{letter-spacing:0.021960px;}
.ls8_c00436{letter-spacing:0.065880px;}
.ls3_c00436{letter-spacing:0.090000px;}
.ls9_c00436{letter-spacing:0.192240px;}
.ls1_c00436{letter-spacing:0.197640px;}
.ls0_c00436{letter-spacing:2233.800000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:-16.667640px;}
.ws1_c00436{word-spacing:-16.470000px;}
.ws2_c00436{word-spacing:-16.404120px;}
.ws3_c00436{word-spacing:-11.970000px;}
.wsc_c00436{word-spacing:-0.480600px;}
.wsa_c00436{word-spacing:-0.197640px;}
.ws7_c00436{word-spacing:-0.096120px;}
.wsb_c00436{word-spacing:-0.095760px;}
.ws4_c00436{word-spacing:0.000000px;}
.ws8_c00436{word-spacing:0.065880px;}
.ws9_c00436{word-spacing:0.131760px;}
.ws6_c00436{word-spacing:0.162000px;}
.ws5_c00436{word-spacing:0.270000px;}
._1_c00436{margin-left:-1.058400px;}
._0_c00436{width:1.220400px;}
.fc1_c00436{color:transparent;}
.fc0_c00436{color:rgb(0,0,0);}
.fs4_c00436{font-size:47.880000px;}
.fs0_c00436{font-size:54.000000px;}
.fs3_c00436{font-size:65.880000px;}
.fs1_c00436{font-size:72.000000px;}
.fs2_c00436{font-size:96.120000px;}
.y47_c00436{bottom:-15.210000px;}
.y0_c00436{bottom:0.000000px;}
.y44_c00436{bottom:2.880000px;}
.y54_c00436{bottom:2.970000px;}
.y5c_c00436{bottom:3.690000px;}
.y3a_c00436{bottom:3.780000px;}
.y58_c00436{bottom:5.220000px;}
.y36_c00436{bottom:5.310000px;}
.y56_c00436{bottom:22.680000px;}
.y46_c00436{bottom:22.770000px;}
.y39_c00436{bottom:41.670000px;}
.y4b_c00436{bottom:41.760000px;}
.y66_c00436{bottom:57.240000px;}
.y34_c00436{bottom:137.520000px;}
.y65_c00436{bottom:141.750000px;}
.y33_c00436{bottom:158.220000px;}
.y64_c00436{bottom:158.940000px;}
.y63_c00436{bottom:178.470000px;}
.y32_c00436{bottom:178.920000px;}
.y31_c00436{bottom:199.620000px;}
.y62_c00436{bottom:202.140000px;}
.y30_c00436{bottom:220.320000px;}
.y61_c00436{bottom:224.640000px;}
.y2f_c00436{bottom:241.020000px;}
.y60_c00436{bottom:247.140000px;}
.y2e_c00436{bottom:261.720000px;}
.y5f_c00436{bottom:269.640000px;}
.y2d_c00436{bottom:282.420000px;}
.y5e_c00436{bottom:292.140000px;}
.y2c_c00436{bottom:303.120000px;}
.y5d_c00436{bottom:314.640000px;}
.y2b_c00436{bottom:323.820000px;}
.y5b_c00436{bottom:337.140000px;}
.y2a_c00436{bottom:344.520000px;}
.y5a_c00436{bottom:358.290000px;}
.y29_c00436{bottom:365.220000px;}
.y59_c00436{bottom:381.060000px;}
.y28_c00436{bottom:385.920000px;}
.y27_c00436{bottom:406.620000px;}
.y57_c00436{bottom:417.510000px;}
.y26_c00436{bottom:427.320000px;}
.y55_c00436{bottom:447.660000px;}
.y25_c00436{bottom:448.020000px;}
.y24_c00436{bottom:468.720000px;}
.y53_c00436{bottom:485.550000px;}
.y23_c00436{bottom:489.420000px;}
.y52_c00436{bottom:501.750000px;}
.y22_c00436{bottom:510.120000px;}
.y51_c00436{bottom:525.420000px;}
.y21_c00436{bottom:530.820000px;}
.y50_c00436{bottom:547.920000px;}
.y20_c00436{bottom:551.520000px;}
.y4f_c00436{bottom:570.420000px;}
.y1f_c00436{bottom:572.220000px;}
.y1e_c00436{bottom:592.920000px;}
.y1d_c00436{bottom:613.620000px;}
.y4e_c00436{bottom:615.420000px;}
.y1c_c00436{bottom:634.320000px;}
.y4d_c00436{bottom:637.920000px;}
.y1b_c00436{bottom:655.020000px;}
.y4c_c00436{bottom:660.420000px;}
.y1a_c00436{bottom:675.720000px;}
.y4a_c00436{bottom:686.250000px;}
.y19_c00436{bottom:696.420000px;}
.y49_c00436{bottom:709.020000px;}
.y18_c00436{bottom:717.120000px;}
.y17_c00436{bottom:737.820000px;}
.y48_c00436{bottom:745.470000px;}
.y16_c00436{bottom:758.520000px;}
.y45_c00436{bottom:776.970000px;}
.y15_c00436{bottom:779.220000px;}
.y14_c00436{bottom:799.920000px;}
.y43_c00436{bottom:814.950000px;}
.y13_c00436{bottom:820.620000px;}
.y42_c00436{bottom:830.970000px;}
.y12_c00436{bottom:841.230000px;}
.y41_c00436{bottom:854.550000px;}
.y11_c00436{bottom:861.930000px;}
.y40_c00436{bottom:877.050000px;}
.y10_c00436{bottom:882.630000px;}
.y3f_c00436{bottom:899.550000px;}
.yf_c00436{bottom:903.330000px;}
.y3e_c00436{bottom:922.050000px;}
.ye_c00436{bottom:924.030000px;}
.y3d_c00436{bottom:944.550000px;}
.yd_c00436{bottom:944.730000px;}
.yc_c00436{bottom:965.430000px;}
.y3c_c00436{bottom:967.050000px;}
.yb_c00436{bottom:986.130000px;}
.y3b_c00436{bottom:989.550000px;}
.ya_c00436{bottom:1006.830000px;}
.y38_c00436{bottom:1015.470000px;}
.y9_c00436{bottom:1027.530000px;}
.y37_c00436{bottom:1038.240000px;}
.y8_c00436{bottom:1048.230000px;}
.y7_c00436{bottom:1068.930000px;}
.y35_c00436{bottom:1074.600000px;}
.y6_c00436{bottom:1110.330000px;}
.y5_c00436{bottom:1131.030000px;}
.y4_c00436{bottom:1150.920000px;}
.y3_c00436{bottom:1166.404500px;}
.y2_c00436{bottom:1181.970000px;}
.y1_c00436{bottom:1197.450000px;}
.hd_c00436{height:13.770000px;}
.h11_c00436{height:13.950000px;}
.h16_c00436{height:17.190000px;}
.h15_c00436{height:17.280000px;}
.h14_c00436{height:18.900000px;}
.hb_c00436{height:22.498500px;}
.ha_c00436{height:22.500000px;}
.hc_c00436{height:23.580000px;}
.h9_c00436{height:23.670000px;}
.h13_c00436{height:30.150000px;}
.h5_c00436{height:31.500000px;}
.h12_c00436{height:37.890000px;}
.hf_c00436{height:37.981500px;}
.he_c00436{height:46.991602px;}
.h3_c00436{height:52.971680px;}
.h2_c00436{height:52.998047px;}
.h8_c00436{height:56.880000px;}
.h10_c00436{height:56.970000px;}
.h7_c00436{height:64.657617px;}
.h4_c00436{height:70.664062px;}
.h6_c00436{height:96.870938px;}
.h0_c00436{height:1262.880000px;}
.h1_c00436{height:1263.000000px;}
.w5_c00436{width:104.580000px;}
.w4_c00436{width:104.940000px;}
.w8_c00436{width:105.750000px;}
.w9_c00436{width:105.751500px;}
.w6_c00436{width:342.718500px;}
.w7_c00436{width:345.060000px;}
.w3_c00436{width:556.560000px;}
.w2_c00436{width:893.031000px;}
.w0_c00436{width:893.070000px;}
.w1_c00436{width:893.250000px;}
.x0_c00436{left:0.000000px;}
.x10_c00436{left:4.140000px;}
.x16_c00436{left:5.310000px;}
.xb_c00436{left:17.100000px;}
.x15_c00436{left:30.240000px;}
.xd_c00436{left:35.820000px;}
.x9_c00436{left:39.060000px;}
.x19_c00436{left:41.310000px;}
.x18_c00436{left:42.660000px;}
.x13_c00436{left:44.100000px;}
.x12_c00436{left:49.590000px;}
.x1b_c00436{left:52.290000px;}
.x11_c00436{left:54.990000px;}
.x14_c00436{left:57.780000px;}
.x6_c00436{left:122.310000px;}
.xf_c00436{left:123.480000px;}
.x3_c00436{left:127.620000px;}
.x17_c00436{left:156.600000px;}
.x1a_c00436{left:161.910000px;}
.x7_c00436{left:263.250000px;}
.x2_c00436{left:425.160000px;}
.x1_c00436{left:446.580000px;}
.x8_c00436{left:467.370000px;}
.xa_c00436{left:478.530000px;}
.xc_c00436{left:573.120000px;}
.xe_c00436{left:584.280000px;}
.x4_c00436{left:690.570000px;}
.x1c_c00436{left:738.540000px;}
.x5_c00436{left:906.570000px;}
@media print{
.v1_c00436{vertical-align:-73.600000pt;}
.v0_c00436{vertical-align:0.000000pt;}
.ls6_c00436{letter-spacing:-0.170880pt;}
.ls5_c00436{letter-spacing:-0.096000pt;}
.ls7_c00436{letter-spacing:-0.058560pt;}
.ls4_c00436{letter-spacing:0.000000pt;}
.ls2_c00436{letter-spacing:0.019520pt;}
.ls8_c00436{letter-spacing:0.058560pt;}
.ls3_c00436{letter-spacing:0.080000pt;}
.ls9_c00436{letter-spacing:0.170880pt;}
.ls1_c00436{letter-spacing:0.175680pt;}
.ls0_c00436{letter-spacing:1985.600000pt;}
.ws0_c00436{word-spacing:-14.815680pt;}
.ws1_c00436{word-spacing:-14.640000pt;}
.ws2_c00436{word-spacing:-14.581440pt;}
.ws3_c00436{word-spacing:-10.640000pt;}
.wsc_c00436{word-spacing:-0.427200pt;}
.wsa_c00436{word-spacing:-0.175680pt;}
.ws7_c00436{word-spacing:-0.085440pt;}
.wsb_c00436{word-spacing:-0.085120pt;}
.ws4_c00436{word-spacing:0.000000pt;}
.ws8_c00436{word-spacing:0.058560pt;}
.ws9_c00436{word-spacing:0.117120pt;}
.ws6_c00436{word-spacing:0.144000pt;}
.ws5_c00436{word-spacing:0.240000pt;}
._1_c00436{margin-left:-0.940800pt;}
._0_c00436{width:1.084800pt;}
.fs4_c00436{font-size:42.560000pt;}
.fs0_c00436{font-size:48.000000pt;}
.fs3_c00436{font-size:58.560000pt;}
.fs1_c00436{font-size:64.000000pt;}
.fs2_c00436{font-size:85.440000pt;}
.y47_c00436{bottom:-13.520000pt;}
.y0_c00436{bottom:0.000000pt;}
.y44_c00436{bottom:2.560000pt;}
.y54_c00436{bottom:2.640000pt;}
.y5c_c00436{bottom:3.280000pt;}
.y3a_c00436{bottom:3.360000pt;}
.y58_c00436{bottom:4.640000pt;}
.y36_c00436{bottom:4.720000pt;}
.y56_c00436{bottom:20.160000pt;}
.y46_c00436{bottom:20.240000pt;}
.y39_c00436{bottom:37.040000pt;}
.y4b_c00436{bottom:37.120000pt;}
.y66_c00436{bottom:50.880000pt;}
.y34_c00436{bottom:122.240000pt;}
.y65_c00436{bottom:126.000000pt;}
.y33_c00436{bottom:140.640000pt;}
.y64_c00436{bottom:141.280000pt;}
.y63_c00436{bottom:158.640000pt;}
.y32_c00436{bottom:159.040000pt;}
.y31_c00436{bottom:177.440000pt;}
.y62_c00436{bottom:179.680000pt;}
.y30_c00436{bottom:195.840000pt;}
.y61_c00436{bottom:199.680000pt;}
.y2f_c00436{bottom:214.240000pt;}
.y60_c00436{bottom:219.680000pt;}
.y2e_c00436{bottom:232.640000pt;}
.y5f_c00436{bottom:239.680000pt;}
.y2d_c00436{bottom:251.040000pt;}
.y5e_c00436{bottom:259.680000pt;}
.y2c_c00436{bottom:269.440000pt;}
.y5d_c00436{bottom:279.680000pt;}
.y2b_c00436{bottom:287.840000pt;}
.y5b_c00436{bottom:299.680000pt;}
.y2a_c00436{bottom:306.240000pt;}
.y5a_c00436{bottom:318.480000pt;}
.y29_c00436{bottom:324.640000pt;}
.y59_c00436{bottom:338.720000pt;}
.y28_c00436{bottom:343.040000pt;}
.y27_c00436{bottom:361.440000pt;}
.y57_c00436{bottom:371.120000pt;}
.y26_c00436{bottom:379.840000pt;}
.y55_c00436{bottom:397.920000pt;}
.y25_c00436{bottom:398.240000pt;}
.y24_c00436{bottom:416.640000pt;}
.y53_c00436{bottom:431.600000pt;}
.y23_c00436{bottom:435.040000pt;}
.y52_c00436{bottom:446.000000pt;}
.y22_c00436{bottom:453.440000pt;}
.y51_c00436{bottom:467.040000pt;}
.y21_c00436{bottom:471.840000pt;}
.y50_c00436{bottom:487.040000pt;}
.y20_c00436{bottom:490.240000pt;}
.y4f_c00436{bottom:507.040000pt;}
.y1f_c00436{bottom:508.640000pt;}
.y1e_c00436{bottom:527.040000pt;}
.y1d_c00436{bottom:545.440000pt;}
.y4e_c00436{bottom:547.040000pt;}
.y1c_c00436{bottom:563.840000pt;}
.y4d_c00436{bottom:567.040000pt;}
.y1b_c00436{bottom:582.240000pt;}
.y4c_c00436{bottom:587.040000pt;}
.y1a_c00436{bottom:600.640000pt;}
.y4a_c00436{bottom:610.000000pt;}
.y19_c00436{bottom:619.040000pt;}
.y49_c00436{bottom:630.240000pt;}
.y18_c00436{bottom:637.440000pt;}
.y17_c00436{bottom:655.840000pt;}
.y48_c00436{bottom:662.640000pt;}
.y16_c00436{bottom:674.240000pt;}
.y45_c00436{bottom:690.640000pt;}
.y15_c00436{bottom:692.640000pt;}
.y14_c00436{bottom:711.040000pt;}
.y43_c00436{bottom:724.400000pt;}
.y13_c00436{bottom:729.440000pt;}
.y42_c00436{bottom:738.640000pt;}
.y12_c00436{bottom:747.760000pt;}
.y41_c00436{bottom:759.600000pt;}
.y11_c00436{bottom:766.160000pt;}
.y40_c00436{bottom:779.600000pt;}
.y10_c00436{bottom:784.560000pt;}
.y3f_c00436{bottom:799.600000pt;}
.yf_c00436{bottom:802.960000pt;}
.y3e_c00436{bottom:819.600000pt;}
.ye_c00436{bottom:821.360000pt;}
.y3d_c00436{bottom:839.600000pt;}
.yd_c00436{bottom:839.760000pt;}
.yc_c00436{bottom:858.160000pt;}
.y3c_c00436{bottom:859.600000pt;}
.yb_c00436{bottom:876.560000pt;}
.y3b_c00436{bottom:879.600000pt;}
.ya_c00436{bottom:894.960000pt;}
.y38_c00436{bottom:902.640000pt;}
.y9_c00436{bottom:913.360000pt;}
.y37_c00436{bottom:922.880000pt;}
.y8_c00436{bottom:931.760000pt;}
.y7_c00436{bottom:950.160000pt;}
.y35_c00436{bottom:955.200000pt;}
.y6_c00436{bottom:986.960000pt;}
.y5_c00436{bottom:1005.360000pt;}
.y4_c00436{bottom:1023.040000pt;}
.y3_c00436{bottom:1036.804000pt;}
.y2_c00436{bottom:1050.640000pt;}
.y1_c00436{bottom:1064.400000pt;}
.hd_c00436{height:12.240000pt;}
.h11_c00436{height:12.400000pt;}
.h16_c00436{height:15.280000pt;}
.h15_c00436{height:15.360000pt;}
.h14_c00436{height:16.800000pt;}
.hb_c00436{height:19.998667pt;}
.ha_c00436{height:20.000000pt;}
.hc_c00436{height:20.960000pt;}
.h9_c00436{height:21.040000pt;}
.h13_c00436{height:26.800000pt;}
.h5_c00436{height:28.000000pt;}
.h12_c00436{height:33.680000pt;}
.hf_c00436{height:33.761333pt;}
.he_c00436{height:41.770312pt;}
.h3_c00436{height:47.085938pt;}
.h2_c00436{height:47.109375pt;}
.h8_c00436{height:50.560000pt;}
.h10_c00436{height:50.640000pt;}
.h7_c00436{height:57.473437pt;}
.h4_c00436{height:62.812500pt;}
.h6_c00436{height:86.107500pt;}
.h0_c00436{height:1122.560000pt;}
.h1_c00436{height:1122.666667pt;}
.w5_c00436{width:92.960000pt;}
.w4_c00436{width:93.280000pt;}
.w8_c00436{width:94.000000pt;}
.w9_c00436{width:94.001333pt;}
.w6_c00436{width:304.638667pt;}
.w7_c00436{width:306.720000pt;}
.w3_c00436{width:494.720000pt;}
.w2_c00436{width:793.805333pt;}
.w0_c00436{width:793.840000pt;}
.w1_c00436{width:794.000000pt;}
.x0_c00436{left:0.000000pt;}
.x10_c00436{left:3.680000pt;}
.x16_c00436{left:4.720000pt;}
.xb_c00436{left:15.200000pt;}
.x15_c00436{left:26.880000pt;}
.xd_c00436{left:31.840000pt;}
.x9_c00436{left:34.720000pt;}
.x19_c00436{left:36.720000pt;}
.x18_c00436{left:37.920000pt;}
.x13_c00436{left:39.200000pt;}
.x12_c00436{left:44.080000pt;}
.x1b_c00436{left:46.480000pt;}
.x11_c00436{left:48.880000pt;}
.x14_c00436{left:51.360000pt;}
.x6_c00436{left:108.720000pt;}
.xf_c00436{left:109.760000pt;}
.x3_c00436{left:113.440000pt;}
.x17_c00436{left:139.200000pt;}
.x1a_c00436{left:143.920000pt;}
.x7_c00436{left:234.000000pt;}
.x2_c00436{left:377.920000pt;}
.x1_c00436{left:396.960000pt;}
.x8_c00436{left:415.440000pt;}
.xa_c00436{left:425.360000pt;}
.xc_c00436{left:509.440000pt;}
.xe_c00436{left:519.360000pt;}
.x4_c00436{left:613.840000pt;}
.x1c_c00436{left:656.480000pt;}
.x5_c00436{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_e0529276dd79fee7d9fbc41f.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00437{vertical-align:-82.800000px;}
.v1_c00437{vertical-align:-61.938000px;}
.v0_c00437{vertical-align:0.000000px;}
.ls5_c00437{letter-spacing:-0.192240px;}
.ls6_c00437{letter-spacing:-0.065880px;}
.ls4_c00437{letter-spacing:0.000000px;}
.ls3_c00437{letter-spacing:0.021960px;}
.ls7_c00437{letter-spacing:0.065880px;}
.ls8_c00437{letter-spacing:0.191520px;}
.ls2_c00437{letter-spacing:0.197640px;}
.ls0_c00437{letter-spacing:319.518000px;}
.ls1_c00437{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00437{word-spacing:-16.470000px;}
.ws2_c00437{word-spacing:-16.404120px;}
.ws3_c00437{word-spacing:-11.970000px;}
.wsb_c00437{word-spacing:-0.287280px;}
.ws9_c00437{word-spacing:-0.197640px;}
.ws5_c00437{word-spacing:-0.162000px;}
.ws6_c00437{word-spacing:-0.096120px;}
.wsa_c00437{word-spacing:-0.095760px;}
.ws4_c00437{word-spacing:0.000000px;}
.ws7_c00437{word-spacing:0.065880px;}
.ws8_c00437{word-spacing:0.131760px;}
._1_c00437{margin-left:-1.199160px;}
._0_c00437{width:1.239948px;}
.fc1_c00437{color:transparent;}
.fc0_c00437{color:rgb(0,0,0);}
.fs4_c00437{font-size:47.880000px;}
.fs0_c00437{font-size:54.000000px;}
.fs3_c00437{font-size:65.880000px;}
.fs1_c00437{font-size:72.000000px;}
.fs2_c00437{font-size:96.120000px;}
.y46_c00437{bottom:-15.210000px;}
.y0_c00437{bottom:0.000000px;}
.y43_c00437{bottom:2.880000px;}
.y39_c00437{bottom:3.780000px;}
.y35_c00437{bottom:5.310000px;}
.y45_c00437{bottom:22.770000px;}
.y38_c00437{bottom:41.670000px;}
.y4a_c00437{bottom:41.760000px;}
.y62_c00437{bottom:57.240000px;}
.y33_c00437{bottom:137.520000px;}
.y61_c00437{bottom:140.850000px;}
.y60_c00437{bottom:157.050000px;}
.y32_c00437{bottom:158.220000px;}
.y5f_c00437{bottom:175.500000px;}
.y31_c00437{bottom:178.920000px;}
.y5e_c00437{bottom:199.080000px;}
.y30_c00437{bottom:199.620000px;}
.y2f_c00437{bottom:220.320000px;}
.y5d_c00437{bottom:221.580000px;}
.y2e_c00437{bottom:241.020000px;}
.y5c_c00437{bottom:244.080000px;}
.y2d_c00437{bottom:261.720000px;}
.y5b_c00437{bottom:266.580000px;}
.y2c_c00437{bottom:282.420000px;}
.y5a_c00437{bottom:289.080000px;}
.y2b_c00437{bottom:303.120000px;}
.y59_c00437{bottom:311.580000px;}
.y2a_c00437{bottom:323.820000px;}
.y58_c00437{bottom:334.080000px;}
.y29_c00437{bottom:344.520000px;}
.y57_c00437{bottom:360.000000px;}
.y28_c00437{bottom:365.220000px;}
.y56_c00437{bottom:382.680000px;}
.y27_c00437{bottom:385.920000px;}
.y26_c00437{bottom:406.620000px;}
.y55_c00437{bottom:419.130000px;}
.y25_c00437{bottom:427.320000px;}
.y24_c00437{bottom:448.020000px;}
.y54_c00437{bottom:449.280000px;}
.y23_c00437{bottom:468.720000px;}
.y53_c00437{bottom:487.260000px;}
.y22_c00437{bottom:489.420000px;}
.y52_c00437{bottom:504.450000px;}
.y21_c00437{bottom:510.120000px;}
.y51_c00437{bottom:528.120000px;}
.y20_c00437{bottom:530.820000px;}
.y50_c00437{bottom:550.620000px;}
.y1f_c00437{bottom:551.520000px;}
.y1e_c00437{bottom:572.220000px;}
.y4f_c00437{bottom:573.120000px;}
.y1d_c00437{bottom:592.920000px;}
.y4e_c00437{bottom:595.620000px;}
.y1c_c00437{bottom:613.620000px;}
.y4d_c00437{bottom:618.120000px;}
.y1b_c00437{bottom:634.320000px;}
.y4c_c00437{bottom:640.620000px;}
.y1a_c00437{bottom:655.020000px;}
.y4b_c00437{bottom:663.120000px;}
.y19_c00437{bottom:675.720000px;}
.y49_c00437{bottom:688.950000px;}
.y18_c00437{bottom:696.420000px;}
.y48_c00437{bottom:711.720000px;}
.y17_c00437{bottom:717.120000px;}
.y16_c00437{bottom:737.820000px;}
.y47_c00437{bottom:748.170000px;}
.y15_c00437{bottom:758.520000px;}
.y44_c00437{bottom:778.320000px;}
.y14_c00437{bottom:779.220000px;}
.y13_c00437{bottom:799.920000px;}
.y42_c00437{bottom:816.300000px;}
.y12_c00437{bottom:820.620000px;}
.y41_c00437{bottom:832.320000px;}
.y11_c00437{bottom:841.230000px;}
.y40_c00437{bottom:855.900000px;}
.y10_c00437{bottom:861.930000px;}
.y3f_c00437{bottom:878.400000px;}
.yf_c00437{bottom:882.630000px;}
.y3e_c00437{bottom:900.900000px;}
.ye_c00437{bottom:903.330000px;}
.y3d_c00437{bottom:923.400000px;}
.yd_c00437{bottom:924.030000px;}
.yc_c00437{bottom:944.730000px;}
.y3c_c00437{bottom:945.900000px;}
.yb_c00437{bottom:965.430000px;}
.y3b_c00437{bottom:968.400000px;}
.ya_c00437{bottom:986.130000px;}
.y3a_c00437{bottom:990.900000px;}
.y9_c00437{bottom:1006.830000px;}
.y37_c00437{bottom:1016.820000px;}
.y8_c00437{bottom:1027.530000px;}
.y36_c00437{bottom:1039.590000px;}
.y7_c00437{bottom:1048.230000px;}
.y6_c00437{bottom:1068.930000px;}
.y34_c00437{bottom:1075.950000px;}
.y5_c00437{bottom:1110.330000px;}
.y4_c00437{bottom:1131.030000px;}
.y3_c00437{bottom:1150.915500px;}
.y2_c00437{bottom:1166.400000px;}
.y1_c00437{bottom:1197.450000px;}
.hc_c00437{height:13.770000px;}
.h10_c00437{height:14.940000px;}
.h12_c00437{height:16.200000px;}
.ha_c00437{height:22.498500px;}
.h9_c00437{height:22.500000px;}
.hb_c00437{height:23.580000px;}
.h8_c00437{height:23.670000px;}
.h4_c00437{height:30.150000px;}
.h11_c00437{height:37.980000px;}
.he_c00437{height:37.981500px;}
.hd_c00437{height:46.991602px;}
.h2_c00437{height:52.998047px;}
.h7_c00437{height:56.880000px;}
.hf_c00437{height:56.970000px;}
.h6_c00437{height:64.657617px;}
.h3_c00437{height:70.664062px;}
.h5_c00437{height:96.870938px;}
.h0_c00437{height:1262.880000px;}
.h1_c00437{height:1263.000000px;}
.w5_c00437{width:104.580000px;}
.w4_c00437{width:104.940000px;}
.w8_c00437{width:105.750000px;}
.w9_c00437{width:105.751500px;}
.w6_c00437{width:342.718500px;}
.w7_c00437{width:345.060000px;}
.w3_c00437{width:556.560000px;}
.w2_c00437{width:893.031000px;}
.w0_c00437{width:893.070000px;}
.w1_c00437{width:893.250000px;}
.x0_c00437{left:0.000000px;}
.x10_c00437{left:4.140000px;}
.x16_c00437{left:5.310000px;}
.xb_c00437{left:17.100000px;}
.x15_c00437{left:30.240000px;}
.xd_c00437{left:35.820000px;}
.x9_c00437{left:39.060000px;}
.x11_c00437{left:42.660000px;}
.x1b_c00437{left:44.100000px;}
.x13_c00437{left:49.590000px;}
.x12_c00437{left:52.290000px;}
.x19_c00437{left:55.080000px;}
.x14_c00437{left:57.780000px;}
.x18_c00437{left:71.460000px;}
.x5_c00437{left:122.310000px;}
.xf_c00437{left:123.480000px;}
.x2_c00437{left:127.620000px;}
.x1a_c00437{left:146.610000px;}
.x17_c00437{left:150.660000px;}
.x6_c00437{left:156.600000px;}
.x7_c00437{left:263.250000px;}
.x1_c00437{left:446.580000px;}
.x8_c00437{left:467.370000px;}
.xa_c00437{left:478.530000px;}
.xc_c00437{left:573.120000px;}
.xe_c00437{left:584.280000px;}
.x3_c00437{left:690.570000px;}
.x4_c00437{left:906.570000px;}
@media print{
.v2_c00437{vertical-align:-73.600000pt;}
.v1_c00437{vertical-align:-55.056000pt;}
.v0_c00437{vertical-align:0.000000pt;}
.ls5_c00437{letter-spacing:-0.170880pt;}
.ls6_c00437{letter-spacing:-0.058560pt;}
.ls4_c00437{letter-spacing:0.000000pt;}
.ls3_c00437{letter-spacing:0.019520pt;}
.ls7_c00437{letter-spacing:0.058560pt;}
.ls8_c00437{letter-spacing:0.170240pt;}
.ls2_c00437{letter-spacing:0.175680pt;}
.ls0_c00437{letter-spacing:284.016000pt;}
.ls1_c00437{letter-spacing:1985.600000pt;}
.ws0_c00437{word-spacing:-14.815680pt;}
.ws1_c00437{word-spacing:-14.640000pt;}
.ws2_c00437{word-spacing:-14.581440pt;}
.ws3_c00437{word-spacing:-10.640000pt;}
.wsb_c00437{word-spacing:-0.255360pt;}
.ws9_c00437{word-spacing:-0.175680pt;}
.ws5_c00437{word-spacing:-0.144000pt;}
.ws6_c00437{word-spacing:-0.085440pt;}
.wsa_c00437{word-spacing:-0.085120pt;}
.ws4_c00437{word-spacing:0.000000pt;}
.ws7_c00437{word-spacing:0.058560pt;}
.ws8_c00437{word-spacing:0.117120pt;}
._1_c00437{margin-left:-1.065920pt;}
._0_c00437{width:1.102176pt;}
.fs4_c00437{font-size:42.560000pt;}
.fs0_c00437{font-size:48.000000pt;}
.fs3_c00437{font-size:58.560000pt;}
.fs1_c00437{font-size:64.000000pt;}
.fs2_c00437{font-size:85.440000pt;}
.y46_c00437{bottom:-13.520000pt;}
.y0_c00437{bottom:0.000000pt;}
.y43_c00437{bottom:2.560000pt;}
.y39_c00437{bottom:3.360000pt;}
.y35_c00437{bottom:4.720000pt;}
.y45_c00437{bottom:20.240000pt;}
.y38_c00437{bottom:37.040000pt;}
.y4a_c00437{bottom:37.120000pt;}
.y62_c00437{bottom:50.880000pt;}
.y33_c00437{bottom:122.240000pt;}
.y61_c00437{bottom:125.200000pt;}
.y60_c00437{bottom:139.600000pt;}
.y32_c00437{bottom:140.640000pt;}
.y5f_c00437{bottom:156.000000pt;}
.y31_c00437{bottom:159.040000pt;}
.y5e_c00437{bottom:176.960000pt;}
.y30_c00437{bottom:177.440000pt;}
.y2f_c00437{bottom:195.840000pt;}
.y5d_c00437{bottom:196.960000pt;}
.y2e_c00437{bottom:214.240000pt;}
.y5c_c00437{bottom:216.960000pt;}
.y2d_c00437{bottom:232.640000pt;}
.y5b_c00437{bottom:236.960000pt;}
.y2c_c00437{bottom:251.040000pt;}
.y5a_c00437{bottom:256.960000pt;}
.y2b_c00437{bottom:269.440000pt;}
.y59_c00437{bottom:276.960000pt;}
.y2a_c00437{bottom:287.840000pt;}
.y58_c00437{bottom:296.960000pt;}
.y29_c00437{bottom:306.240000pt;}
.y57_c00437{bottom:320.000000pt;}
.y28_c00437{bottom:324.640000pt;}
.y56_c00437{bottom:340.160000pt;}
.y27_c00437{bottom:343.040000pt;}
.y26_c00437{bottom:361.440000pt;}
.y55_c00437{bottom:372.560000pt;}
.y25_c00437{bottom:379.840000pt;}
.y24_c00437{bottom:398.240000pt;}
.y54_c00437{bottom:399.360000pt;}
.y23_c00437{bottom:416.640000pt;}
.y53_c00437{bottom:433.120000pt;}
.y22_c00437{bottom:435.040000pt;}
.y52_c00437{bottom:448.400000pt;}
.y21_c00437{bottom:453.440000pt;}
.y51_c00437{bottom:469.440000pt;}
.y20_c00437{bottom:471.840000pt;}
.y50_c00437{bottom:489.440000pt;}
.y1f_c00437{bottom:490.240000pt;}
.y1e_c00437{bottom:508.640000pt;}
.y4f_c00437{bottom:509.440000pt;}
.y1d_c00437{bottom:527.040000pt;}
.y4e_c00437{bottom:529.440000pt;}
.y1c_c00437{bottom:545.440000pt;}
.y4d_c00437{bottom:549.440000pt;}
.y1b_c00437{bottom:563.840000pt;}
.y4c_c00437{bottom:569.440000pt;}
.y1a_c00437{bottom:582.240000pt;}
.y4b_c00437{bottom:589.440000pt;}
.y19_c00437{bottom:600.640000pt;}
.y49_c00437{bottom:612.400000pt;}
.y18_c00437{bottom:619.040000pt;}
.y48_c00437{bottom:632.640000pt;}
.y17_c00437{bottom:637.440000pt;}
.y16_c00437{bottom:655.840000pt;}
.y47_c00437{bottom:665.040000pt;}
.y15_c00437{bottom:674.240000pt;}
.y44_c00437{bottom:691.840000pt;}
.y14_c00437{bottom:692.640000pt;}
.y13_c00437{bottom:711.040000pt;}
.y42_c00437{bottom:725.600000pt;}
.y12_c00437{bottom:729.440000pt;}
.y41_c00437{bottom:739.840000pt;}
.y11_c00437{bottom:747.760000pt;}
.y40_c00437{bottom:760.800000pt;}
.y10_c00437{bottom:766.160000pt;}
.y3f_c00437{bottom:780.800000pt;}
.yf_c00437{bottom:784.560000pt;}
.y3e_c00437{bottom:800.800000pt;}
.ye_c00437{bottom:802.960000pt;}
.y3d_c00437{bottom:820.800000pt;}
.yd_c00437{bottom:821.360000pt;}
.yc_c00437{bottom:839.760000pt;}
.y3c_c00437{bottom:840.800000pt;}
.yb_c00437{bottom:858.160000pt;}
.y3b_c00437{bottom:860.800000pt;}
.ya_c00437{bottom:876.560000pt;}
.y3a_c00437{bottom:880.800000pt;}
.y9_c00437{bottom:894.960000pt;}
.y37_c00437{bottom:903.840000pt;}
.y8_c00437{bottom:913.360000pt;}
.y36_c00437{bottom:924.080000pt;}
.y7_c00437{bottom:931.760000pt;}
.y6_c00437{bottom:950.160000pt;}
.y34_c00437{bottom:956.400000pt;}
.y5_c00437{bottom:986.960000pt;}
.y4_c00437{bottom:1005.360000pt;}
.y3_c00437{bottom:1023.036000pt;}
.y2_c00437{bottom:1036.800000pt;}
.y1_c00437{bottom:1064.400000pt;}
.hc_c00437{height:12.240000pt;}
.h10_c00437{height:13.280000pt;}
.h12_c00437{height:14.400000pt;}
.ha_c00437{height:19.998667pt;}
.h9_c00437{height:20.000000pt;}
.hb_c00437{height:20.960000pt;}
.h8_c00437{height:21.040000pt;}
.h4_c00437{height:26.800000pt;}
.h11_c00437{height:33.760000pt;}
.he_c00437{height:33.761333pt;}
.hd_c00437{height:41.770312pt;}
.h2_c00437{height:47.109375pt;}
.h7_c00437{height:50.560000pt;}
.hf_c00437{height:50.640000pt;}
.h6_c00437{height:57.473437pt;}
.h3_c00437{height:62.812500pt;}
.h5_c00437{height:86.107500pt;}
.h0_c00437{height:1122.560000pt;}
.h1_c00437{height:1122.666667pt;}
.w5_c00437{width:92.960000pt;}
.w4_c00437{width:93.280000pt;}
.w8_c00437{width:94.000000pt;}
.w9_c00437{width:94.001333pt;}
.w6_c00437{width:304.638667pt;}
.w7_c00437{width:306.720000pt;}
.w3_c00437{width:494.720000pt;}
.w2_c00437{width:793.805333pt;}
.w0_c00437{width:793.840000pt;}
.w1_c00437{width:794.000000pt;}
.x0_c00437{left:0.000000pt;}
.x10_c00437{left:3.680000pt;}
.x16_c00437{left:4.720000pt;}
.xb_c00437{left:15.200000pt;}
.x15_c00437{left:26.880000pt;}
.xd_c00437{left:31.840000pt;}
.x9_c00437{left:34.720000pt;}
.x11_c00437{left:37.920000pt;}
.x1b_c00437{left:39.200000pt;}
.x13_c00437{left:44.080000pt;}
.x12_c00437{left:46.480000pt;}
.x19_c00437{left:48.960000pt;}
.x14_c00437{left:51.360000pt;}
.x18_c00437{left:63.520000pt;}
.x5_c00437{left:108.720000pt;}
.xf_c00437{left:109.760000pt;}
.x2_c00437{left:113.440000pt;}
.x1a_c00437{left:130.320000pt;}
.x17_c00437{left:133.920000pt;}
.x6_c00437{left:139.200000pt;}
.x7_c00437{left:234.000000pt;}
.x1_c00437{left:396.960000pt;}
.x8_c00437{left:415.440000pt;}
.xa_c00437{left:425.360000pt;}
.xc_c00437{left:509.440000pt;}
.xe_c00437{left:519.360000pt;}
.x3_c00437{left:613.840000pt;}
.x4_c00437{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_17da400baa17b472ffadf843.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00438{vertical-align:-82.800000px;}
.v0_c00438{vertical-align:0.000000px;}
.ls9_c00438{letter-spacing:-0.263520px;}
.ls6_c00438{letter-spacing:-0.192240px;}
.ls5_c00438{letter-spacing:-0.108000px;}
.ls7_c00438{letter-spacing:-0.065880px;}
.ls4_c00438{letter-spacing:0.000000px;}
.ls2_c00438{letter-spacing:0.021960px;}
.ls8_c00438{letter-spacing:0.065880px;}
.ls1_c00438{letter-spacing:0.197640px;}
.ls3_c00438{letter-spacing:0.450000px;}
.ls0_c00438{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00438{word-spacing:-16.470000px;}
.ws2_c00438{word-spacing:-16.404120px;}
.ws4_c00438{word-spacing:-16.206480px;}
.ws3_c00438{word-spacing:-11.970000px;}
.wsb_c00438{word-spacing:-0.197640px;}
.ws8_c00438{word-spacing:-0.096120px;}
.wsc_c00438{word-spacing:-0.095760px;}
.ws5_c00438{word-spacing:0.000000px;}
.ws9_c00438{word-spacing:0.065880px;}
.wsa_c00438{word-spacing:0.131760px;}
.ws7_c00438{word-spacing:0.162000px;}
.ws6_c00438{word-spacing:0.270000px;}
._1_c00438{margin-left:-1.058400px;}
._0_c00438{width:1.220400px;}
.fc1_c00438{color:transparent;}
.fc0_c00438{color:rgb(0,0,0);}
.fs4_c00438{font-size:47.880000px;}
.fs0_c00438{font-size:54.000000px;}
.fs3_c00438{font-size:65.880000px;}
.fs1_c00438{font-size:72.000000px;}
.fs2_c00438{font-size:96.120000px;}
.y47_c00438{bottom:-15.210000px;}
.y0_c00438{bottom:0.000000px;}
.y44_c00438{bottom:2.880000px;}
.y5a_c00438{bottom:3.690000px;}
.y3a_c00438{bottom:3.780000px;}
.y36_c00438{bottom:5.310000px;}
.y46_c00438{bottom:22.770000px;}
.y39_c00438{bottom:41.670000px;}
.y4b_c00438{bottom:41.760000px;}
.y63_c00438{bottom:57.240000px;}
.y34_c00438{bottom:137.520000px;}
.y62_c00438{bottom:142.020000px;}
.y33_c00438{bottom:158.220000px;}
.y61_c00438{bottom:176.670000px;}
.y32_c00438{bottom:178.920000px;}
.y31_c00438{bottom:199.620000px;}
.y60_c00438{bottom:200.340000px;}
.y30_c00438{bottom:220.320000px;}
.y5f_c00438{bottom:222.840000px;}
.y2f_c00438{bottom:241.020000px;}
.y5e_c00438{bottom:245.340000px;}
.y2e_c00438{bottom:261.720000px;}
.y5d_c00438{bottom:267.840000px;}
.y2d_c00438{bottom:282.420000px;}
.y5c_c00438{bottom:290.340000px;}
.y2c_c00438{bottom:303.120000px;}
.y5b_c00438{bottom:312.840000px;}
.y2b_c00438{bottom:323.820000px;}
.y59_c00438{bottom:335.340000px;}
.y2a_c00438{bottom:344.520000px;}
.y58_c00438{bottom:361.170000px;}
.y29_c00438{bottom:365.220000px;}
.y57_c00438{bottom:383.940000px;}
.y28_c00438{bottom:385.920000px;}
.y27_c00438{bottom:406.620000px;}
.y56_c00438{bottom:420.300000px;}
.y26_c00438{bottom:427.320000px;}
.y25_c00438{bottom:448.020000px;}
.y55_c00438{bottom:450.450000px;}
.y24_c00438{bottom:468.720000px;}
.y54_c00438{bottom:488.430000px;}
.y23_c00438{bottom:489.420000px;}
.y53_c00438{bottom:504.450000px;}
.y22_c00438{bottom:510.120000px;}
.y52_c00438{bottom:528.120000px;}
.y21_c00438{bottom:530.820000px;}
.y51_c00438{bottom:550.620000px;}
.y20_c00438{bottom:551.520000px;}
.y1f_c00438{bottom:572.220000px;}
.y50_c00438{bottom:573.120000px;}
.y1e_c00438{bottom:592.920000px;}
.y4f_c00438{bottom:595.620000px;}
.y1d_c00438{bottom:613.620000px;}
.y4e_c00438{bottom:618.120000px;}
.y1c_c00438{bottom:634.320000px;}
.y4d_c00438{bottom:640.620000px;}
.y1b_c00438{bottom:655.020000px;}
.y4c_c00438{bottom:663.120000px;}
.y1a_c00438{bottom:675.720000px;}
.y4a_c00438{bottom:688.950000px;}
.y19_c00438{bottom:696.420000px;}
.y49_c00438{bottom:711.720000px;}
.y18_c00438{bottom:717.120000px;}
.y17_c00438{bottom:737.820000px;}
.y48_c00438{bottom:748.170000px;}
.y16_c00438{bottom:758.520000px;}
.y45_c00438{bottom:778.320000px;}
.y15_c00438{bottom:779.220000px;}
.y14_c00438{bottom:799.920000px;}
.y43_c00438{bottom:816.300000px;}
.y13_c00438{bottom:820.620000px;}
.y42_c00438{bottom:832.320000px;}
.y12_c00438{bottom:841.230000px;}
.y41_c00438{bottom:855.900000px;}
.y11_c00438{bottom:861.930000px;}
.y40_c00438{bottom:878.400000px;}
.y10_c00438{bottom:882.630000px;}
.y3f_c00438{bottom:900.900000px;}
.yf_c00438{bottom:903.330000px;}
.y3e_c00438{bottom:923.400000px;}
.ye_c00438{bottom:924.030000px;}
.yd_c00438{bottom:944.730000px;}
.y3d_c00438{bottom:945.900000px;}
.yc_c00438{bottom:965.430000px;}
.y3c_c00438{bottom:968.400000px;}
.yb_c00438{bottom:986.130000px;}
.y3b_c00438{bottom:990.900000px;}
.ya_c00438{bottom:1006.830000px;}
.y38_c00438{bottom:1016.820000px;}
.y9_c00438{bottom:1027.530000px;}
.y37_c00438{bottom:1039.500000px;}
.y8_c00438{bottom:1048.230000px;}
.y7_c00438{bottom:1068.930000px;}
.y35_c00438{bottom:1075.950000px;}
.y6_c00438{bottom:1110.330000px;}
.y5_c00438{bottom:1131.030000px;}
.y4_c00438{bottom:1150.920000px;}
.y3_c00438{bottom:1166.404500px;}
.y2_c00438{bottom:1181.970000px;}
.y1_c00438{bottom:1197.450000px;}
.hd_c00438{height:13.770000px;}
.h14_c00438{height:16.200000px;}
.hb_c00438{height:22.498500px;}
.ha_c00438{height:22.500000px;}
.hc_c00438{height:23.580000px;}
.h9_c00438{height:23.670000px;}
.h5_c00438{height:30.150000px;}
.h12_c00438{height:30.151500px;}
.h11_c00438{height:37.980000px;}
.hf_c00438{height:37.981500px;}
.he_c00438{height:46.991602px;}
.h3_c00438{height:52.971680px;}
.h2_c00438{height:52.998047px;}
.h8_c00438{height:56.880000px;}
.h13_c00438{height:56.881500px;}
.h10_c00438{height:56.970000px;}
.h7_c00438{height:64.657617px;}
.h4_c00438{height:70.664062px;}
.h6_c00438{height:96.870938px;}
.h0_c00438{height:1262.880000px;}
.h1_c00438{height:1263.000000px;}
.w5_c00438{width:104.580000px;}
.w4_c00438{width:104.940000px;}
.w8_c00438{width:105.750000px;}
.w9_c00438{width:105.751500px;}
.w6_c00438{width:342.718500px;}
.w7_c00438{width:345.060000px;}
.w3_c00438{width:556.560000px;}
.w2_c00438{width:893.031000px;}
.w0_c00438{width:893.070000px;}
.w1_c00438{width:893.250000px;}
.x0_c00438{left:0.000000px;}
.x11_c00438{left:4.140000px;}
.x19_c00438{left:5.310000px;}
.xc_c00438{left:17.100000px;}
.x18_c00438{left:30.240000px;}
.xe_c00438{left:35.820000px;}
.xa_c00438{left:39.060000px;}
.x15_c00438{left:41.310000px;}
.x13_c00438{left:42.660000px;}
.x17_c00438{left:49.590000px;}
.x16_c00438{left:55.080000px;}
.x14_c00438{left:57.780000px;}
.x12_c00438{left:63.270000px;}
.x6_c00438{left:122.310000px;}
.x10_c00438{left:123.480000px;}
.x3_c00438{left:127.620000px;}
.x1b_c00438{left:138.600000px;}
.x1a_c00438{left:143.280000px;}
.x7_c00438{left:157.950000px;}
.x8_c00438{left:263.250000px;}
.x2_c00438{left:425.160000px;}
.x1_c00438{left:446.580000px;}
.x9_c00438{left:467.370000px;}
.xb_c00438{left:478.530000px;}
.xd_c00438{left:573.120000px;}
.xf_c00438{left:584.280000px;}
.x4_c00438{left:690.570000px;}
.x1c_c00438{left:738.540000px;}
.x5_c00438{left:906.570000px;}
@media print{
.v1_c00438{vertical-align:-73.600000pt;}
.v0_c00438{vertical-align:0.000000pt;}
.ls9_c00438{letter-spacing:-0.234240pt;}
.ls6_c00438{letter-spacing:-0.170880pt;}
.ls5_c00438{letter-spacing:-0.096000pt;}
.ls7_c00438{letter-spacing:-0.058560pt;}
.ls4_c00438{letter-spacing:0.000000pt;}
.ls2_c00438{letter-spacing:0.019520pt;}
.ls8_c00438{letter-spacing:0.058560pt;}
.ls1_c00438{letter-spacing:0.175680pt;}
.ls3_c00438{letter-spacing:0.400000pt;}
.ls0_c00438{letter-spacing:1985.600000pt;}
.ws0_c00438{word-spacing:-14.815680pt;}
.ws1_c00438{word-spacing:-14.640000pt;}
.ws2_c00438{word-spacing:-14.581440pt;}
.ws4_c00438{word-spacing:-14.405760pt;}
.ws3_c00438{word-spacing:-10.640000pt;}
.wsb_c00438{word-spacing:-0.175680pt;}
.ws8_c00438{word-spacing:-0.085440pt;}
.wsc_c00438{word-spacing:-0.085120pt;}
.ws5_c00438{word-spacing:0.000000pt;}
.ws9_c00438{word-spacing:0.058560pt;}
.wsa_c00438{word-spacing:0.117120pt;}
.ws7_c00438{word-spacing:0.144000pt;}
.ws6_c00438{word-spacing:0.240000pt;}
._1_c00438{margin-left:-0.940800pt;}
._0_c00438{width:1.084800pt;}
.fs4_c00438{font-size:42.560000pt;}
.fs0_c00438{font-size:48.000000pt;}
.fs3_c00438{font-size:58.560000pt;}
.fs1_c00438{font-size:64.000000pt;}
.fs2_c00438{font-size:85.440000pt;}
.y47_c00438{bottom:-13.520000pt;}
.y0_c00438{bottom:0.000000pt;}
.y44_c00438{bottom:2.560000pt;}
.y5a_c00438{bottom:3.280000pt;}
.y3a_c00438{bottom:3.360000pt;}
.y36_c00438{bottom:4.720000pt;}
.y46_c00438{bottom:20.240000pt;}
.y39_c00438{bottom:37.040000pt;}
.y4b_c00438{bottom:37.120000pt;}
.y63_c00438{bottom:50.880000pt;}
.y34_c00438{bottom:122.240000pt;}
.y62_c00438{bottom:126.240000pt;}
.y33_c00438{bottom:140.640000pt;}
.y61_c00438{bottom:157.040000pt;}
.y32_c00438{bottom:159.040000pt;}
.y31_c00438{bottom:177.440000pt;}
.y60_c00438{bottom:178.080000pt;}
.y30_c00438{bottom:195.840000pt;}
.y5f_c00438{bottom:198.080000pt;}
.y2f_c00438{bottom:214.240000pt;}
.y5e_c00438{bottom:218.080000pt;}
.y2e_c00438{bottom:232.640000pt;}
.y5d_c00438{bottom:238.080000pt;}
.y2d_c00438{bottom:251.040000pt;}
.y5c_c00438{bottom:258.080000pt;}
.y2c_c00438{bottom:269.440000pt;}
.y5b_c00438{bottom:278.080000pt;}
.y2b_c00438{bottom:287.840000pt;}
.y59_c00438{bottom:298.080000pt;}
.y2a_c00438{bottom:306.240000pt;}
.y58_c00438{bottom:321.040000pt;}
.y29_c00438{bottom:324.640000pt;}
.y57_c00438{bottom:341.280000pt;}
.y28_c00438{bottom:343.040000pt;}
.y27_c00438{bottom:361.440000pt;}
.y56_c00438{bottom:373.600000pt;}
.y26_c00438{bottom:379.840000pt;}
.y25_c00438{bottom:398.240000pt;}
.y55_c00438{bottom:400.400000pt;}
.y24_c00438{bottom:416.640000pt;}
.y54_c00438{bottom:434.160000pt;}
.y23_c00438{bottom:435.040000pt;}
.y53_c00438{bottom:448.400000pt;}
.y22_c00438{bottom:453.440000pt;}
.y52_c00438{bottom:469.440000pt;}
.y21_c00438{bottom:471.840000pt;}
.y51_c00438{bottom:489.440000pt;}
.y20_c00438{bottom:490.240000pt;}
.y1f_c00438{bottom:508.640000pt;}
.y50_c00438{bottom:509.440000pt;}
.y1e_c00438{bottom:527.040000pt;}
.y4f_c00438{bottom:529.440000pt;}
.y1d_c00438{bottom:545.440000pt;}
.y4e_c00438{bottom:549.440000pt;}
.y1c_c00438{bottom:563.840000pt;}
.y4d_c00438{bottom:569.440000pt;}
.y1b_c00438{bottom:582.240000pt;}
.y4c_c00438{bottom:589.440000pt;}
.y1a_c00438{bottom:600.640000pt;}
.y4a_c00438{bottom:612.400000pt;}
.y19_c00438{bottom:619.040000pt;}
.y49_c00438{bottom:632.640000pt;}
.y18_c00438{bottom:637.440000pt;}
.y17_c00438{bottom:655.840000pt;}
.y48_c00438{bottom:665.040000pt;}
.y16_c00438{bottom:674.240000pt;}
.y45_c00438{bottom:691.840000pt;}
.y15_c00438{bottom:692.640000pt;}
.y14_c00438{bottom:711.040000pt;}
.y43_c00438{bottom:725.600000pt;}
.y13_c00438{bottom:729.440000pt;}
.y42_c00438{bottom:739.840000pt;}
.y12_c00438{bottom:747.760000pt;}
.y41_c00438{bottom:760.800000pt;}
.y11_c00438{bottom:766.160000pt;}
.y40_c00438{bottom:780.800000pt;}
.y10_c00438{bottom:784.560000pt;}
.y3f_c00438{bottom:800.800000pt;}
.yf_c00438{bottom:802.960000pt;}
.y3e_c00438{bottom:820.800000pt;}
.ye_c00438{bottom:821.360000pt;}
.yd_c00438{bottom:839.760000pt;}
.y3d_c00438{bottom:840.800000pt;}
.yc_c00438{bottom:858.160000pt;}
.y3c_c00438{bottom:860.800000pt;}
.yb_c00438{bottom:876.560000pt;}
.y3b_c00438{bottom:880.800000pt;}
.ya_c00438{bottom:894.960000pt;}
.y38_c00438{bottom:903.840000pt;}
.y9_c00438{bottom:913.360000pt;}
.y37_c00438{bottom:924.000000pt;}
.y8_c00438{bottom:931.760000pt;}
.y7_c00438{bottom:950.160000pt;}
.y35_c00438{bottom:956.400000pt;}
.y6_c00438{bottom:986.960000pt;}
.y5_c00438{bottom:1005.360000pt;}
.y4_c00438{bottom:1023.040000pt;}
.y3_c00438{bottom:1036.804000pt;}
.y2_c00438{bottom:1050.640000pt;}
.y1_c00438{bottom:1064.400000pt;}
.hd_c00438{height:12.240000pt;}
.h14_c00438{height:14.400000pt;}
.hb_c00438{height:19.998667pt;}
.ha_c00438{height:20.000000pt;}
.hc_c00438{height:20.960000pt;}
.h9_c00438{height:21.040000pt;}
.h5_c00438{height:26.800000pt;}
.h12_c00438{height:26.801333pt;}
.h11_c00438{height:33.760000pt;}
.hf_c00438{height:33.761333pt;}
.he_c00438{height:41.770312pt;}
.h3_c00438{height:47.085938pt;}
.h2_c00438{height:47.109375pt;}
.h8_c00438{height:50.560000pt;}
.h13_c00438{height:50.561333pt;}
.h10_c00438{height:50.640000pt;}
.h7_c00438{height:57.473437pt;}
.h4_c00438{height:62.812500pt;}
.h6_c00438{height:86.107500pt;}
.h0_c00438{height:1122.560000pt;}
.h1_c00438{height:1122.666667pt;}
.w5_c00438{width:92.960000pt;}
.w4_c00438{width:93.280000pt;}
.w8_c00438{width:94.000000pt;}
.w9_c00438{width:94.001333pt;}
.w6_c00438{width:304.638667pt;}
.w7_c00438{width:306.720000pt;}
.w3_c00438{width:494.720000pt;}
.w2_c00438{width:793.805333pt;}
.w0_c00438{width:793.840000pt;}
.w1_c00438{width:794.000000pt;}
.x0_c00438{left:0.000000pt;}
.x11_c00438{left:3.680000pt;}
.x19_c00438{left:4.720000pt;}
.xc_c00438{left:15.200000pt;}
.x18_c00438{left:26.880000pt;}
.xe_c00438{left:31.840000pt;}
.xa_c00438{left:34.720000pt;}
.x15_c00438{left:36.720000pt;}
.x13_c00438{left:37.920000pt;}
.x17_c00438{left:44.080000pt;}
.x16_c00438{left:48.960000pt;}
.x14_c00438{left:51.360000pt;}
.x12_c00438{left:56.240000pt;}
.x6_c00438{left:108.720000pt;}
.x10_c00438{left:109.760000pt;}
.x3_c00438{left:113.440000pt;}
.x1b_c00438{left:123.200000pt;}
.x1a_c00438{left:127.360000pt;}
.x7_c00438{left:140.400000pt;}
.x8_c00438{left:234.000000pt;}
.x2_c00438{left:377.920000pt;}
.x1_c00438{left:396.960000pt;}
.x9_c00438{left:415.440000pt;}
.xb_c00438{left:425.360000pt;}
.xd_c00438{left:509.440000pt;}
.xf_c00438{left:519.360000pt;}
.x4_c00438{left:613.840000pt;}
.x1c_c00438{left:656.480000pt;}
.x5_c00438{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_f3acaa920c5f4679ac1bb6d1.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00439{vertical-align:-82.800000px;}
.v1_c00439{vertical-align:-61.938000px;}
.v0_c00439{vertical-align:0.000000px;}
.ls5_c00439{letter-spacing:-0.192240px;}
.ls6_c00439{letter-spacing:-0.065880px;}
.ls4_c00439{letter-spacing:0.000000px;}
.ls3_c00439{letter-spacing:0.021960px;}
.ls7_c00439{letter-spacing:0.065880px;}
.ls8_c00439{letter-spacing:0.192240px;}
.ls2_c00439{letter-spacing:0.197640px;}
.ls0_c00439{letter-spacing:319.518000px;}
.ls1_c00439{letter-spacing:2233.800000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:-16.667640px;}
.ws1_c00439{word-spacing:-16.470000px;}
.ws2_c00439{word-spacing:-16.404120px;}
.ws3_c00439{word-spacing:-11.970000px;}
.wsb_c00439{word-spacing:-0.480600px;}
.ws9_c00439{word-spacing:-0.197640px;}
.ws5_c00439{word-spacing:-0.162000px;}
.ws6_c00439{word-spacing:-0.096120px;}
.wsa_c00439{word-spacing:-0.095760px;}
.ws4_c00439{word-spacing:0.000000px;}
.ws7_c00439{word-spacing:0.065880px;}
.ws8_c00439{word-spacing:0.131760px;}
._1_c00439{margin-left:-1.199160px;}
._0_c00439{width:1.239948px;}
.fc1_c00439{color:transparent;}
.fc0_c00439{color:rgb(0,0,0);}
.fs4_c00439{font-size:47.880000px;}
.fs0_c00439{font-size:54.000000px;}
.fs3_c00439{font-size:65.880000px;}
.fs1_c00439{font-size:72.000000px;}
.fs2_c00439{font-size:96.120000px;}
.y46_c00439{bottom:-15.210000px;}
.y0_c00439{bottom:0.000000px;}
.y43_c00439{bottom:2.880000px;}
.y39_c00439{bottom:3.780000px;}
.y35_c00439{bottom:5.310000px;}
.y45_c00439{bottom:22.770000px;}
.y38_c00439{bottom:41.670000px;}
.y4a_c00439{bottom:41.760000px;}
.y62_c00439{bottom:57.240000px;}
.y33_c00439{bottom:137.520000px;}
.y61_c00439{bottom:140.850000px;}
.y60_c00439{bottom:157.050000px;}
.y32_c00439{bottom:158.220000px;}
.y5f_c00439{bottom:175.500000px;}
.y31_c00439{bottom:178.920000px;}
.y5e_c00439{bottom:199.080000px;}
.y30_c00439{bottom:199.620000px;}
.y2f_c00439{bottom:220.320000px;}
.y5d_c00439{bottom:221.580000px;}
.y2e_c00439{bottom:241.020000px;}
.y5c_c00439{bottom:244.080000px;}
.y2d_c00439{bottom:261.720000px;}
.y5b_c00439{bottom:266.580000px;}
.y2c_c00439{bottom:282.420000px;}
.y5a_c00439{bottom:289.080000px;}
.y2b_c00439{bottom:303.120000px;}
.y59_c00439{bottom:311.580000px;}
.y2a_c00439{bottom:323.820000px;}
.y58_c00439{bottom:334.080000px;}
.y29_c00439{bottom:344.520000px;}
.y57_c00439{bottom:360.000000px;}
.y28_c00439{bottom:365.220000px;}
.y56_c00439{bottom:382.680000px;}
.y27_c00439{bottom:385.920000px;}
.y26_c00439{bottom:406.620000px;}
.y55_c00439{bottom:419.130000px;}
.y25_c00439{bottom:427.320000px;}
.y24_c00439{bottom:448.020000px;}
.y54_c00439{bottom:449.280000px;}
.y23_c00439{bottom:468.720000px;}
.y53_c00439{bottom:487.260000px;}
.y22_c00439{bottom:489.420000px;}
.y52_c00439{bottom:504.450000px;}
.y21_c00439{bottom:510.120000px;}
.y51_c00439{bottom:528.120000px;}
.y20_c00439{bottom:530.820000px;}
.y50_c00439{bottom:550.620000px;}
.y1f_c00439{bottom:551.520000px;}
.y1e_c00439{bottom:572.220000px;}
.y4f_c00439{bottom:573.120000px;}
.y1d_c00439{bottom:592.920000px;}
.y4e_c00439{bottom:595.620000px;}
.y1c_c00439{bottom:613.620000px;}
.y4d_c00439{bottom:618.120000px;}
.y1b_c00439{bottom:634.320000px;}
.y4c_c00439{bottom:640.620000px;}
.y1a_c00439{bottom:655.020000px;}
.y4b_c00439{bottom:663.120000px;}
.y19_c00439{bottom:675.720000px;}
.y49_c00439{bottom:688.950000px;}
.y18_c00439{bottom:696.420000px;}
.y48_c00439{bottom:711.720000px;}
.y17_c00439{bottom:717.120000px;}
.y16_c00439{bottom:737.820000px;}
.y47_c00439{bottom:748.170000px;}
.y15_c00439{bottom:758.520000px;}
.y44_c00439{bottom:778.320000px;}
.y14_c00439{bottom:779.220000px;}
.y13_c00439{bottom:799.920000px;}
.y42_c00439{bottom:816.300000px;}
.y12_c00439{bottom:820.620000px;}
.y41_c00439{bottom:832.320000px;}
.y11_c00439{bottom:841.230000px;}
.y40_c00439{bottom:855.900000px;}
.y10_c00439{bottom:861.930000px;}
.y3f_c00439{bottom:878.400000px;}
.yf_c00439{bottom:882.630000px;}
.y3e_c00439{bottom:900.900000px;}
.ye_c00439{bottom:903.330000px;}
.y3d_c00439{bottom:923.400000px;}
.yd_c00439{bottom:924.030000px;}
.yc_c00439{bottom:944.730000px;}
.y3c_c00439{bottom:945.900000px;}
.yb_c00439{bottom:965.430000px;}
.y3b_c00439{bottom:968.400000px;}
.ya_c00439{bottom:986.130000px;}
.y3a_c00439{bottom:990.900000px;}
.y9_c00439{bottom:1006.830000px;}
.y37_c00439{bottom:1016.820000px;}
.y8_c00439{bottom:1027.530000px;}
.y36_c00439{bottom:1039.590000px;}
.y7_c00439{bottom:1048.230000px;}
.y6_c00439{bottom:1068.930000px;}
.y34_c00439{bottom:1075.950000px;}
.y5_c00439{bottom:1110.330000px;}
.y4_c00439{bottom:1131.030000px;}
.y3_c00439{bottom:1150.915500px;}
.y2_c00439{bottom:1166.400000px;}
.y1_c00439{bottom:1197.450000px;}
.hc_c00439{height:13.770000px;}
.h10_c00439{height:14.940000px;}
.h12_c00439{height:16.200000px;}
.ha_c00439{height:22.498500px;}
.h9_c00439{height:22.500000px;}
.hb_c00439{height:23.580000px;}
.h8_c00439{height:23.670000px;}
.h4_c00439{height:30.150000px;}
.h11_c00439{height:37.980000px;}
.he_c00439{height:37.981500px;}
.hd_c00439{height:46.991602px;}
.h2_c00439{height:52.998047px;}
.h7_c00439{height:56.880000px;}
.hf_c00439{height:56.970000px;}
.h6_c00439{height:64.657617px;}
.h3_c00439{height:70.664062px;}
.h5_c00439{height:96.870938px;}
.h0_c00439{height:1262.880000px;}
.h1_c00439{height:1263.000000px;}
.w5_c00439{width:104.580000px;}
.w4_c00439{width:104.940000px;}
.w8_c00439{width:105.750000px;}
.w9_c00439{width:105.751500px;}
.w6_c00439{width:342.718500px;}
.w7_c00439{width:345.060000px;}
.w3_c00439{width:556.560000px;}
.w2_c00439{width:893.031000px;}
.w0_c00439{width:893.070000px;}
.w1_c00439{width:893.250000px;}
.x0_c00439{left:0.000000px;}
.x10_c00439{left:4.140000px;}
.x17_c00439{left:5.310000px;}
.xb_c00439{left:17.100000px;}
.x16_c00439{left:30.240000px;}
.x15_c00439{left:33.030000px;}
.xd_c00439{left:35.820000px;}
.x9_c00439{left:39.060000px;}
.x12_c00439{left:42.660000px;}
.x13_c00439{left:44.100000px;}
.x14_c00439{left:49.590000px;}
.x11_c00439{left:54.990000px;}
.x19_c00439{left:92.340000px;}
.x5_c00439{left:122.310000px;}
.xf_c00439{left:123.480000px;}
.x2_c00439{left:127.620000px;}
.x18_c00439{left:138.690000px;}
.x6_c00439{left:152.010000px;}
.x7_c00439{left:263.250000px;}
.x1_c00439{left:446.580000px;}
.x8_c00439{left:467.370000px;}
.xa_c00439{left:478.530000px;}
.xc_c00439{left:573.120000px;}
.xe_c00439{left:584.280000px;}
.x3_c00439{left:690.570000px;}
.x4_c00439{left:906.570000px;}
@media print{
.v2_c00439{vertical-align:-73.600000pt;}
.v1_c00439{vertical-align:-55.056000pt;}
.v0_c00439{vertical-align:0.000000pt;}
.ls5_c00439{letter-spacing:-0.170880pt;}
.ls6_c00439{letter-spacing:-0.058560pt;}
.ls4_c00439{letter-spacing:0.000000pt;}
.ls3_c00439{letter-spacing:0.019520pt;}
.ls7_c00439{letter-spacing:0.058560pt;}
.ls8_c00439{letter-spacing:0.170880pt;}
.ls2_c00439{letter-spacing:0.175680pt;}
.ls0_c00439{letter-spacing:284.016000pt;}
.ls1_c00439{letter-spacing:1985.600000pt;}
.ws0_c00439{word-spacing:-14.815680pt;}
.ws1_c00439{word-spacing:-14.640000pt;}
.ws2_c00439{word-spacing:-14.581440pt;}
.ws3_c00439{word-spacing:-10.640000pt;}
.wsb_c00439{word-spacing:-0.427200pt;}
.ws9_c00439{word-spacing:-0.175680pt;}
.ws5_c00439{word-spacing:-0.144000pt;}
.ws6_c00439{word-spacing:-0.085440pt;}
.wsa_c00439{word-spacing:-0.085120pt;}
.ws4_c00439{word-spacing:0.000000pt;}
.ws7_c00439{word-spacing:0.058560pt;}
.ws8_c00439{word-spacing:0.117120pt;}
._1_c00439{margin-left:-1.065920pt;}
._0_c00439{width:1.102176pt;}
.fs4_c00439{font-size:42.560000pt;}
.fs0_c00439{font-size:48.000000pt;}
.fs3_c00439{font-size:58.560000pt;}
.fs1_c00439{font-size:64.000000pt;}
.fs2_c00439{font-size:85.440000pt;}
.y46_c00439{bottom:-13.520000pt;}
.y0_c00439{bottom:0.000000pt;}
.y43_c00439{bottom:2.560000pt;}
.y39_c00439{bottom:3.360000pt;}
.y35_c00439{bottom:4.720000pt;}
.y45_c00439{bottom:20.240000pt;}
.y38_c00439{bottom:37.040000pt;}
.y4a_c00439{bottom:37.120000pt;}
.y62_c00439{bottom:50.880000pt;}
.y33_c00439{bottom:122.240000pt;}
.y61_c00439{bottom:125.200000pt;}
.y60_c00439{bottom:139.600000pt;}
.y32_c00439{bottom:140.640000pt;}
.y5f_c00439{bottom:156.000000pt;}
.y31_c00439{bottom:159.040000pt;}
.y5e_c00439{bottom:176.960000pt;}
.y30_c00439{bottom:177.440000pt;}
.y2f_c00439{bottom:195.840000pt;}
.y5d_c00439{bottom:196.960000pt;}
.y2e_c00439{bottom:214.240000pt;}
.y5c_c00439{bottom:216.960000pt;}
.y2d_c00439{bottom:232.640000pt;}
.y5b_c00439{bottom:236.960000pt;}
.y2c_c00439{bottom:251.040000pt;}
.y5a_c00439{bottom:256.960000pt;}
.y2b_c00439{bottom:269.440000pt;}
.y59_c00439{bottom:276.960000pt;}
.y2a_c00439{bottom:287.840000pt;}
.y58_c00439{bottom:296.960000pt;}
.y29_c00439{bottom:306.240000pt;}
.y57_c00439{bottom:320.000000pt;}
.y28_c00439{bottom:324.640000pt;}
.y56_c00439{bottom:340.160000pt;}
.y27_c00439{bottom:343.040000pt;}
.y26_c00439{bottom:361.440000pt;}
.y55_c00439{bottom:372.560000pt;}
.y25_c00439{bottom:379.840000pt;}
.y24_c00439{bottom:398.240000pt;}
.y54_c00439{bottom:399.360000pt;}
.y23_c00439{bottom:416.640000pt;}
.y53_c00439{bottom:433.120000pt;}
.y22_c00439{bottom:435.040000pt;}
.y52_c00439{bottom:448.400000pt;}
.y21_c00439{bottom:453.440000pt;}
.y51_c00439{bottom:469.440000pt;}
.y20_c00439{bottom:471.840000pt;}
.y50_c00439{bottom:489.440000pt;}
.y1f_c00439{bottom:490.240000pt;}
.y1e_c00439{bottom:508.640000pt;}
.y4f_c00439{bottom:509.440000pt;}
.y1d_c00439{bottom:527.040000pt;}
.y4e_c00439{bottom:529.440000pt;}
.y1c_c00439{bottom:545.440000pt;}
.y4d_c00439{bottom:549.440000pt;}
.y1b_c00439{bottom:563.840000pt;}
.y4c_c00439{bottom:569.440000pt;}
.y1a_c00439{bottom:582.240000pt;}
.y4b_c00439{bottom:589.440000pt;}
.y19_c00439{bottom:600.640000pt;}
.y49_c00439{bottom:612.400000pt;}
.y18_c00439{bottom:619.040000pt;}
.y48_c00439{bottom:632.640000pt;}
.y17_c00439{bottom:637.440000pt;}
.y16_c00439{bottom:655.840000pt;}
.y47_c00439{bottom:665.040000pt;}
.y15_c00439{bottom:674.240000pt;}
.y44_c00439{bottom:691.840000pt;}
.y14_c00439{bottom:692.640000pt;}
.y13_c00439{bottom:711.040000pt;}
.y42_c00439{bottom:725.600000pt;}
.y12_c00439{bottom:729.440000pt;}
.y41_c00439{bottom:739.840000pt;}
.y11_c00439{bottom:747.760000pt;}
.y40_c00439{bottom:760.800000pt;}
.y10_c00439{bottom:766.160000pt;}
.y3f_c00439{bottom:780.800000pt;}
.yf_c00439{bottom:784.560000pt;}
.y3e_c00439{bottom:800.800000pt;}
.ye_c00439{bottom:802.960000pt;}
.y3d_c00439{bottom:820.800000pt;}
.yd_c00439{bottom:821.360000pt;}
.yc_c00439{bottom:839.760000pt;}
.y3c_c00439{bottom:840.800000pt;}
.yb_c00439{bottom:858.160000pt;}
.y3b_c00439{bottom:860.800000pt;}
.ya_c00439{bottom:876.560000pt;}
.y3a_c00439{bottom:880.800000pt;}
.y9_c00439{bottom:894.960000pt;}
.y37_c00439{bottom:903.840000pt;}
.y8_c00439{bottom:913.360000pt;}
.y36_c00439{bottom:924.080000pt;}
.y7_c00439{bottom:931.760000pt;}
.y6_c00439{bottom:950.160000pt;}
.y34_c00439{bottom:956.400000pt;}
.y5_c00439{bottom:986.960000pt;}
.y4_c00439{bottom:1005.360000pt;}
.y3_c00439{bottom:1023.036000pt;}
.y2_c00439{bottom:1036.800000pt;}
.y1_c00439{bottom:1064.400000pt;}
.hc_c00439{height:12.240000pt;}
.h10_c00439{height:13.280000pt;}
.h12_c00439{height:14.400000pt;}
.ha_c00439{height:19.998667pt;}
.h9_c00439{height:20.000000pt;}
.hb_c00439{height:20.960000pt;}
.h8_c00439{height:21.040000pt;}
.h4_c00439{height:26.800000pt;}
.h11_c00439{height:33.760000pt;}
.he_c00439{height:33.761333pt;}
.hd_c00439{height:41.770312pt;}
.h2_c00439{height:47.109375pt;}
.h7_c00439{height:50.560000pt;}
.hf_c00439{height:50.640000pt;}
.h6_c00439{height:57.473437pt;}
.h3_c00439{height:62.812500pt;}
.h5_c00439{height:86.107500pt;}
.h0_c00439{height:1122.560000pt;}
.h1_c00439{height:1122.666667pt;}
.w5_c00439{width:92.960000pt;}
.w4_c00439{width:93.280000pt;}
.w8_c00439{width:94.000000pt;}
.w9_c00439{width:94.001333pt;}
.w6_c00439{width:304.638667pt;}
.w7_c00439{width:306.720000pt;}
.w3_c00439{width:494.720000pt;}
.w2_c00439{width:793.805333pt;}
.w0_c00439{width:793.840000pt;}
.w1_c00439{width:794.000000pt;}
.x0_c00439{left:0.000000pt;}
.x10_c00439{left:3.680000pt;}
.x17_c00439{left:4.720000pt;}
.xb_c00439{left:15.200000pt;}
.x16_c00439{left:26.880000pt;}
.x15_c00439{left:29.360000pt;}
.xd_c00439{left:31.840000pt;}
.x9_c00439{left:34.720000pt;}
.x12_c00439{left:37.920000pt;}
.x13_c00439{left:39.200000pt;}
.x14_c00439{left:44.080000pt;}
.x11_c00439{left:48.880000pt;}
.x19_c00439{left:82.080000pt;}
.x5_c00439{left:108.720000pt;}
.xf_c00439{left:109.760000pt;}
.x2_c00439{left:113.440000pt;}
.x18_c00439{left:123.280000pt;}
.x6_c00439{left:135.120000pt;}
.x7_c00439{left:234.000000pt;}
.x1_c00439{left:396.960000pt;}
.x8_c00439{left:415.440000pt;}
.xa_c00439{left:425.360000pt;}
.xc_c00439{left:509.440000pt;}
.xe_c00439{left:519.360000pt;}
.x3_c00439{left:613.840000pt;}
.x4_c00439{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_f761884d254896652b4f8bfb.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00440{vertical-align:-82.800000px;}
.v0_c00440{vertical-align:0.000000px;}
.v2_c00440{vertical-align:66.960000px;}
.lsa_c00440{letter-spacing:-0.263520px;}
.ls6_c00440{letter-spacing:-0.192240px;}
.ls5_c00440{letter-spacing:-0.108000px;}
.ls7_c00440{letter-spacing:-0.065880px;}
.ls4_c00440{letter-spacing:0.000000px;}
.ls2_c00440{letter-spacing:0.021960px;}
.ls8_c00440{letter-spacing:0.065880px;}
.ls9_c00440{letter-spacing:0.192240px;}
.ls1_c00440{letter-spacing:0.197640px;}
.ls3_c00440{letter-spacing:703.092924px;}
.ls0_c00440{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00440{word-spacing:-16.470000px;}
.ws2_c00440{word-spacing:-16.404120px;}
.ws4_c00440{word-spacing:-16.206480px;}
.ws3_c00440{word-spacing:-11.970000px;}
.wsf_c00440{word-spacing:-0.480600px;}
.wsb_c00440{word-spacing:-0.197640px;}
.ws8_c00440{word-spacing:-0.096120px;}
.wsd_c00440{word-spacing:-0.095760px;}
.ws5_c00440{word-spacing:0.000000px;}
.ws9_c00440{word-spacing:0.065880px;}
.wsa_c00440{word-spacing:0.131760px;}
.ws7_c00440{word-spacing:0.162000px;}
.wse_c00440{word-spacing:0.192240px;}
.ws6_c00440{word-spacing:0.270000px;}
.wsc_c00440{word-spacing:0.527040px;}
._1_c00440{margin-left:-1.058400px;}
._0_c00440{width:1.220400px;}
.fc1_c00440{color:transparent;}
.fc0_c00440{color:rgb(0,0,0);}
.fs4_c00440{font-size:47.880000px;}
.fs0_c00440{font-size:54.000000px;}
.fs3_c00440{font-size:65.880000px;}
.fs1_c00440{font-size:72.000000px;}
.fs2_c00440{font-size:96.120000px;}
.y47_c00440{bottom:-15.210000px;}
.y0_c00440{bottom:0.000000px;}
.y44_c00440{bottom:2.880000px;}
.y3a_c00440{bottom:3.780000px;}
.y36_c00440{bottom:5.310000px;}
.y46_c00440{bottom:22.770000px;}
.y39_c00440{bottom:41.670000px;}
.y63_c00440{bottom:57.240000px;}
.y62_c00440{bottom:135.270000px;}
.y34_c00440{bottom:137.520000px;}
.y61_c00440{bottom:151.470000px;}
.y33_c00440{bottom:158.220000px;}
.y60_c00440{bottom:169.920000px;}
.y32_c00440{bottom:178.920000px;}
.y5f_c00440{bottom:193.500000px;}
.y31_c00440{bottom:199.620000px;}
.y5e_c00440{bottom:216.000000px;}
.y30_c00440{bottom:220.320000px;}
.y5d_c00440{bottom:238.500000px;}
.y2f_c00440{bottom:241.020000px;}
.y5c_c00440{bottom:261.000000px;}
.y2e_c00440{bottom:261.720000px;}
.y2d_c00440{bottom:282.420000px;}
.y5b_c00440{bottom:283.500000px;}
.y2c_c00440{bottom:303.120000px;}
.y5a_c00440{bottom:306.000000px;}
.y2b_c00440{bottom:323.820000px;}
.y59_c00440{bottom:328.500000px;}
.y2a_c00440{bottom:344.520000px;}
.y58_c00440{bottom:354.420000px;}
.y29_c00440{bottom:365.220000px;}
.y57_c00440{bottom:377.190000px;}
.y28_c00440{bottom:385.920000px;}
.y27_c00440{bottom:406.620000px;}
.y56_c00440{bottom:413.550000px;}
.y26_c00440{bottom:427.320000px;}
.y55_c00440{bottom:443.700000px;}
.y25_c00440{bottom:448.020000px;}
.y24_c00440{bottom:468.720000px;}
.y54_c00440{bottom:481.680000px;}
.y23_c00440{bottom:489.420000px;}
.y53_c00440{bottom:499.950000px;}
.y22_c00440{bottom:510.120000px;}
.y52_c00440{bottom:523.620000px;}
.y21_c00440{bottom:530.820000px;}
.y51_c00440{bottom:546.120000px;}
.y20_c00440{bottom:551.520000px;}
.y50_c00440{bottom:568.620000px;}
.y1f_c00440{bottom:572.220000px;}
.y4f_c00440{bottom:591.120000px;}
.y1e_c00440{bottom:592.920000px;}
.y1d_c00440{bottom:613.620000px;}
.y1c_c00440{bottom:634.320000px;}
.y4e_c00440{bottom:636.120000px;}
.y1b_c00440{bottom:655.020000px;}
.y4d_c00440{bottom:658.620000px;}
.y1a_c00440{bottom:675.720000px;}
.y4b_c00440{bottom:684.450000px;}
.y19_c00440{bottom:696.420000px;}
.y4a_c00440{bottom:707.220090px;}
.y49_c00440{bottom:709.470000px;}
.y18_c00440{bottom:717.120000px;}
.y4c_c00440{bottom:726.210000px;}
.y17_c00440{bottom:737.820000px;}
.y48_c00440{bottom:748.170000px;}
.y16_c00440{bottom:758.520000px;}
.y45_c00440{bottom:778.320000px;}
.y15_c00440{bottom:779.220000px;}
.y14_c00440{bottom:799.920000px;}
.y43_c00440{bottom:816.300000px;}
.y13_c00440{bottom:820.620000px;}
.y42_c00440{bottom:832.320000px;}
.y12_c00440{bottom:841.230000px;}
.y41_c00440{bottom:855.900000px;}
.y11_c00440{bottom:861.930000px;}
.y40_c00440{bottom:878.400000px;}
.y10_c00440{bottom:882.630000px;}
.y3f_c00440{bottom:900.900000px;}
.yf_c00440{bottom:903.330000px;}
.y3e_c00440{bottom:923.400000px;}
.ye_c00440{bottom:924.030000px;}
.yd_c00440{bottom:944.730000px;}
.y3d_c00440{bottom:945.900000px;}
.yc_c00440{bottom:965.430000px;}
.y3c_c00440{bottom:968.400000px;}
.yb_c00440{bottom:986.130000px;}
.y3b_c00440{bottom:990.900000px;}
.ya_c00440{bottom:1006.830000px;}
.y38_c00440{bottom:1016.820000px;}
.y9_c00440{bottom:1027.530000px;}
.y37_c00440{bottom:1039.500000px;}
.y8_c00440{bottom:1048.230000px;}
.y7_c00440{bottom:1068.930000px;}
.y35_c00440{bottom:1075.950000px;}
.y6_c00440{bottom:1110.330000px;}
.y5_c00440{bottom:1131.030000px;}
.y4_c00440{bottom:1150.920000px;}
.y3_c00440{bottom:1166.404500px;}
.y2_c00440{bottom:1181.970000px;}
.y1_c00440{bottom:1197.450000px;}
.hd_c00440{height:13.770000px;}
.h14_c00440{height:16.020000px;}
.h18_c00440{height:16.200000px;}
.hb_c00440{height:22.498500px;}
.ha_c00440{height:22.500000px;}
.h12_c00440{height:23.578500px;}
.hc_c00440{height:23.580000px;}
.h9_c00440{height:23.670000px;}
.h13_c00440{height:23.671500px;}
.h5_c00440{height:30.150000px;}
.h16_c00440{height:30.151500px;}
.h15_c00440{height:37.980000px;}
.hf_c00440{height:37.981500px;}
.he_c00440{height:46.991602px;}
.h3_c00440{height:52.971680px;}
.h2_c00440{height:52.998047px;}
.h8_c00440{height:56.880000px;}
.h17_c00440{height:56.881500px;}
.h11_c00440{height:61.470000px;}
.h7_c00440{height:64.657617px;}
.h4_c00440{height:70.664062px;}
.h6_c00440{height:96.870938px;}
.h10_c00440{height:131.617617px;}
.h0_c00440{height:1262.880000px;}
.h1_c00440{height:1263.000000px;}
.w5_c00440{width:104.580000px;}
.w4_c00440{width:104.940000px;}
.w8_c00440{width:105.750000px;}
.w9_c00440{width:105.751500px;}
.w6_c00440{width:342.718500px;}
.w7_c00440{width:345.060000px;}
.w3_c00440{width:556.560000px;}
.w2_c00440{width:893.031000px;}
.w0_c00440{width:893.070000px;}
.w1_c00440{width:893.250000px;}
.x0_c00440{left:0.000000px;}
.x11_c00440{left:4.140000px;}
.x18_c00440{left:5.310000px;}
.xc_c00440{left:17.100000px;}
.x17_c00440{left:30.240000px;}
.x12_c00440{left:34.380000px;}
.xe_c00440{left:35.820000px;}
.xa_c00440{left:39.060000px;}
.x1e_c00440{left:41.310000px;}
.x15_c00440{left:42.660000px;}
.x1b_c00440{left:44.100000px;}
.x16_c00440{left:49.590000px;}
.x13_c00440{left:52.290000px;}
.x1d_c00440{left:54.990000px;}
.x14_c00440{left:57.780000px;}
.x7_c00440{left:103.590000px;}
.x6_c00440{left:122.310000px;}
.x10_c00440{left:123.480000px;}
.x3_c00440{left:127.620000px;}
.x1c_c00440{left:150.660000px;}
.x19_c00440{left:152.010000px;}
.x8_c00440{left:263.250000px;}
.x2_c00440{left:425.160000px;}
.x1_c00440{left:446.580000px;}
.x9_c00440{left:467.370000px;}
.xb_c00440{left:478.530000px;}
.xd_c00440{left:573.120000px;}
.xf_c00440{left:584.280000px;}
.x1a_c00440{left:608.940000px;}
.x4_c00440{left:690.570000px;}
.x1f_c00440{left:738.540000px;}
.x5_c00440{left:906.570000px;}
@media print{
.v1_c00440{vertical-align:-73.600000pt;}
.v0_c00440{vertical-align:0.000000pt;}
.v2_c00440{vertical-align:59.520000pt;}
.lsa_c00440{letter-spacing:-0.234240pt;}
.ls6_c00440{letter-spacing:-0.170880pt;}
.ls5_c00440{letter-spacing:-0.096000pt;}
.ls7_c00440{letter-spacing:-0.058560pt;}
.ls4_c00440{letter-spacing:0.000000pt;}
.ls2_c00440{letter-spacing:0.019520pt;}
.ls8_c00440{letter-spacing:0.058560pt;}
.ls9_c00440{letter-spacing:0.170880pt;}
.ls1_c00440{letter-spacing:0.175680pt;}
.ls3_c00440{letter-spacing:624.971488pt;}
.ls0_c00440{letter-spacing:1985.600000pt;}
.ws0_c00440{word-spacing:-14.815680pt;}
.ws1_c00440{word-spacing:-14.640000pt;}
.ws2_c00440{word-spacing:-14.581440pt;}
.ws4_c00440{word-spacing:-14.405760pt;}
.ws3_c00440{word-spacing:-10.640000pt;}
.wsf_c00440{word-spacing:-0.427200pt;}
.wsb_c00440{word-spacing:-0.175680pt;}
.ws8_c00440{word-spacing:-0.085440pt;}
.wsd_c00440{word-spacing:-0.085120pt;}
.ws5_c00440{word-spacing:0.000000pt;}
.ws9_c00440{word-spacing:0.058560pt;}
.wsa_c00440{word-spacing:0.117120pt;}
.ws7_c00440{word-spacing:0.144000pt;}
.wse_c00440{word-spacing:0.170880pt;}
.ws6_c00440{word-spacing:0.240000pt;}
.wsc_c00440{word-spacing:0.468480pt;}
._1_c00440{margin-left:-0.940800pt;}
._0_c00440{width:1.084800pt;}
.fs4_c00440{font-size:42.560000pt;}
.fs0_c00440{font-size:48.000000pt;}
.fs3_c00440{font-size:58.560000pt;}
.fs1_c00440{font-size:64.000000pt;}
.fs2_c00440{font-size:85.440000pt;}
.y47_c00440{bottom:-13.520000pt;}
.y0_c00440{bottom:0.000000pt;}
.y44_c00440{bottom:2.560000pt;}
.y3a_c00440{bottom:3.360000pt;}
.y36_c00440{bottom:4.720000pt;}
.y46_c00440{bottom:20.240000pt;}
.y39_c00440{bottom:37.040000pt;}
.y63_c00440{bottom:50.880000pt;}
.y62_c00440{bottom:120.240000pt;}
.y34_c00440{bottom:122.240000pt;}
.y61_c00440{bottom:134.640000pt;}
.y33_c00440{bottom:140.640000pt;}
.y60_c00440{bottom:151.040000pt;}
.y32_c00440{bottom:159.040000pt;}
.y5f_c00440{bottom:172.000000pt;}
.y31_c00440{bottom:177.440000pt;}
.y5e_c00440{bottom:192.000000pt;}
.y30_c00440{bottom:195.840000pt;}
.y5d_c00440{bottom:212.000000pt;}
.y2f_c00440{bottom:214.240000pt;}
.y5c_c00440{bottom:232.000000pt;}
.y2e_c00440{bottom:232.640000pt;}
.y2d_c00440{bottom:251.040000pt;}
.y5b_c00440{bottom:252.000000pt;}
.y2c_c00440{bottom:269.440000pt;}
.y5a_c00440{bottom:272.000000pt;}
.y2b_c00440{bottom:287.840000pt;}
.y59_c00440{bottom:292.000000pt;}
.y2a_c00440{bottom:306.240000pt;}
.y58_c00440{bottom:315.040000pt;}
.y29_c00440{bottom:324.640000pt;}
.y57_c00440{bottom:335.280000pt;}
.y28_c00440{bottom:343.040000pt;}
.y27_c00440{bottom:361.440000pt;}
.y56_c00440{bottom:367.600000pt;}
.y26_c00440{bottom:379.840000pt;}
.y55_c00440{bottom:394.400000pt;}
.y25_c00440{bottom:398.240000pt;}
.y24_c00440{bottom:416.640000pt;}
.y54_c00440{bottom:428.160000pt;}
.y23_c00440{bottom:435.040000pt;}
.y53_c00440{bottom:444.400000pt;}
.y22_c00440{bottom:453.440000pt;}
.y52_c00440{bottom:465.440000pt;}
.y21_c00440{bottom:471.840000pt;}
.y51_c00440{bottom:485.440000pt;}
.y20_c00440{bottom:490.240000pt;}
.y50_c00440{bottom:505.440000pt;}
.y1f_c00440{bottom:508.640000pt;}
.y4f_c00440{bottom:525.440000pt;}
.y1e_c00440{bottom:527.040000pt;}
.y1d_c00440{bottom:545.440000pt;}
.y1c_c00440{bottom:563.840000pt;}
.y4e_c00440{bottom:565.440000pt;}
.y1b_c00440{bottom:582.240000pt;}
.y4d_c00440{bottom:585.440000pt;}
.y1a_c00440{bottom:600.640000pt;}
.y4b_c00440{bottom:608.400000pt;}
.y19_c00440{bottom:619.040000pt;}
.y4a_c00440{bottom:628.640080pt;}
.y49_c00440{bottom:630.640000pt;}
.y18_c00440{bottom:637.440000pt;}
.y4c_c00440{bottom:645.520000pt;}
.y17_c00440{bottom:655.840000pt;}
.y48_c00440{bottom:665.040000pt;}
.y16_c00440{bottom:674.240000pt;}
.y45_c00440{bottom:691.840000pt;}
.y15_c00440{bottom:692.640000pt;}
.y14_c00440{bottom:711.040000pt;}
.y43_c00440{bottom:725.600000pt;}
.y13_c00440{bottom:729.440000pt;}
.y42_c00440{bottom:739.840000pt;}
.y12_c00440{bottom:747.760000pt;}
.y41_c00440{bottom:760.800000pt;}
.y11_c00440{bottom:766.160000pt;}
.y40_c00440{bottom:780.800000pt;}
.y10_c00440{bottom:784.560000pt;}
.y3f_c00440{bottom:800.800000pt;}
.yf_c00440{bottom:802.960000pt;}
.y3e_c00440{bottom:820.800000pt;}
.ye_c00440{bottom:821.360000pt;}
.yd_c00440{bottom:839.760000pt;}
.y3d_c00440{bottom:840.800000pt;}
.yc_c00440{bottom:858.160000pt;}
.y3c_c00440{bottom:860.800000pt;}
.yb_c00440{bottom:876.560000pt;}
.y3b_c00440{bottom:880.800000pt;}
.ya_c00440{bottom:894.960000pt;}
.y38_c00440{bottom:903.840000pt;}
.y9_c00440{bottom:913.360000pt;}
.y37_c00440{bottom:924.000000pt;}
.y8_c00440{bottom:931.760000pt;}
.y7_c00440{bottom:950.160000pt;}
.y35_c00440{bottom:956.400000pt;}
.y6_c00440{bottom:986.960000pt;}
.y5_c00440{bottom:1005.360000pt;}
.y4_c00440{bottom:1023.040000pt;}
.y3_c00440{bottom:1036.804000pt;}
.y2_c00440{bottom:1050.640000pt;}
.y1_c00440{bottom:1064.400000pt;}
.hd_c00440{height:12.240000pt;}
.h14_c00440{height:14.240000pt;}
.h18_c00440{height:14.400000pt;}
.hb_c00440{height:19.998667pt;}
.ha_c00440{height:20.000000pt;}
.h12_c00440{height:20.958667pt;}
.hc_c00440{height:20.960000pt;}
.h9_c00440{height:21.040000pt;}
.h13_c00440{height:21.041333pt;}
.h5_c00440{height:26.800000pt;}
.h16_c00440{height:26.801333pt;}
.h15_c00440{height:33.760000pt;}
.hf_c00440{height:33.761333pt;}
.he_c00440{height:41.770312pt;}
.h3_c00440{height:47.085938pt;}
.h2_c00440{height:47.109375pt;}
.h8_c00440{height:50.560000pt;}
.h17_c00440{height:50.561333pt;}
.h11_c00440{height:54.640000pt;}
.h7_c00440{height:57.473437pt;}
.h4_c00440{height:62.812500pt;}
.h6_c00440{height:86.107500pt;}
.h10_c00440{height:116.993438pt;}
.h0_c00440{height:1122.560000pt;}
.h1_c00440{height:1122.666667pt;}
.w5_c00440{width:92.960000pt;}
.w4_c00440{width:93.280000pt;}
.w8_c00440{width:94.000000pt;}
.w9_c00440{width:94.001333pt;}
.w6_c00440{width:304.638667pt;}
.w7_c00440{width:306.720000pt;}
.w3_c00440{width:494.720000pt;}
.w2_c00440{width:793.805333pt;}
.w0_c00440{width:793.840000pt;}
.w1_c00440{width:794.000000pt;}
.x0_c00440{left:0.000000pt;}
.x11_c00440{left:3.680000pt;}
.x18_c00440{left:4.720000pt;}
.xc_c00440{left:15.200000pt;}
.x17_c00440{left:26.880000pt;}
.x12_c00440{left:30.560000pt;}
.xe_c00440{left:31.840000pt;}
.xa_c00440{left:34.720000pt;}
.x1e_c00440{left:36.720000pt;}
.x15_c00440{left:37.920000pt;}
.x1b_c00440{left:39.200000pt;}
.x16_c00440{left:44.080000pt;}
.x13_c00440{left:46.480000pt;}
.x1d_c00440{left:48.880000pt;}
.x14_c00440{left:51.360000pt;}
.x7_c00440{left:92.080000pt;}
.x6_c00440{left:108.720000pt;}
.x10_c00440{left:109.760000pt;}
.x3_c00440{left:113.440000pt;}
.x1c_c00440{left:133.920000pt;}
.x19_c00440{left:135.120000pt;}
.x8_c00440{left:234.000000pt;}
.x2_c00440{left:377.920000pt;}
.x1_c00440{left:396.960000pt;}
.x9_c00440{left:415.440000pt;}
.xb_c00440{left:425.360000pt;}
.xd_c00440{left:509.440000pt;}
.xf_c00440{left:519.360000pt;}
.x1a_c00440{left:541.280000pt;}
.x4_c00440{left:613.840000pt;}
.x1f_c00440{left:656.480000pt;}
.x5_c00440{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_4454cff497c3a4c958a7e538.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00441{vertical-align:-82.800000px;}
.v1_c00441{vertical-align:-61.938000px;}
.v0_c00441{vertical-align:0.000000px;}
.ls5_c00441{letter-spacing:-0.192240px;}
.ls6_c00441{letter-spacing:-0.065880px;}
.ls4_c00441{letter-spacing:0.000000px;}
.ls3_c00441{letter-spacing:0.021960px;}
.ls7_c00441{letter-spacing:0.065880px;}
.ls8_c00441{letter-spacing:0.191520px;}
.ls2_c00441{letter-spacing:0.197640px;}
.ls0_c00441{letter-spacing:319.518000px;}
.ls1_c00441{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00441{word-spacing:-16.470000px;}
.ws2_c00441{word-spacing:-16.404120px;}
.ws3_c00441{word-spacing:-11.970000px;}
.wsb_c00441{word-spacing:-0.287280px;}
.ws9_c00441{word-spacing:-0.197640px;}
.ws5_c00441{word-spacing:-0.162000px;}
.ws6_c00441{word-spacing:-0.096120px;}
.wsa_c00441{word-spacing:-0.095760px;}
.ws4_c00441{word-spacing:0.000000px;}
.ws7_c00441{word-spacing:0.065880px;}
.ws8_c00441{word-spacing:0.131760px;}
._1_c00441{margin-left:-1.199160px;}
._0_c00441{width:1.239948px;}
.fc1_c00441{color:transparent;}
.fc0_c00441{color:rgb(0,0,0);}
.fs4_c00441{font-size:47.880000px;}
.fs0_c00441{font-size:54.000000px;}
.fs3_c00441{font-size:65.880000px;}
.fs1_c00441{font-size:72.000000px;}
.fs2_c00441{font-size:96.120000px;}
.y57_c00441{bottom:-15.300000px;}
.y46_c00441{bottom:-15.210000px;}
.y0_c00441{bottom:0.000000px;}
.y43_c00441{bottom:2.880000px;}
.y56_c00441{bottom:3.690000px;}
.y39_c00441{bottom:3.780000px;}
.y35_c00441{bottom:5.310000px;}
.y55_c00441{bottom:22.680000px;}
.y45_c00441{bottom:22.770000px;}
.y38_c00441{bottom:41.670000px;}
.y4a_c00441{bottom:41.760000px;}
.y65_c00441{bottom:57.240000px;}
.y33_c00441{bottom:137.520000px;}
.y64_c00441{bottom:140.850000px;}
.y63_c00441{bottom:157.050000px;}
.y32_c00441{bottom:158.220000px;}
.y62_c00441{bottom:175.500000px;}
.y31_c00441{bottom:178.920000px;}
.y61_c00441{bottom:199.080000px;}
.y30_c00441{bottom:199.620000px;}
.y2f_c00441{bottom:220.320000px;}
.y60_c00441{bottom:221.580000px;}
.y2e_c00441{bottom:241.020000px;}
.y5f_c00441{bottom:244.080000px;}
.y2d_c00441{bottom:261.720000px;}
.y5e_c00441{bottom:266.580000px;}
.y2c_c00441{bottom:282.420000px;}
.y5d_c00441{bottom:289.080000px;}
.y2b_c00441{bottom:303.120000px;}
.y5c_c00441{bottom:311.580000px;}
.y2a_c00441{bottom:323.820000px;}
.y5b_c00441{bottom:334.080000px;}
.y29_c00441{bottom:344.520000px;}
.y5a_c00441{bottom:360.000000px;}
.y28_c00441{bottom:365.220000px;}
.y59_c00441{bottom:382.680000px;}
.y27_c00441{bottom:385.920000px;}
.y26_c00441{bottom:406.620000px;}
.y58_c00441{bottom:419.130000px;}
.y25_c00441{bottom:427.320000px;}
.y24_c00441{bottom:448.020000px;}
.y54_c00441{bottom:449.280000px;}
.y23_c00441{bottom:468.720000px;}
.y53_c00441{bottom:487.260000px;}
.y22_c00441{bottom:489.420000px;}
.y52_c00441{bottom:504.450000px;}
.y21_c00441{bottom:510.120000px;}
.y51_c00441{bottom:528.120000px;}
.y20_c00441{bottom:530.820000px;}
.y50_c00441{bottom:550.620000px;}
.y1f_c00441{bottom:551.520000px;}
.y1e_c00441{bottom:572.220000px;}
.y4f_c00441{bottom:573.120000px;}
.y1d_c00441{bottom:592.920000px;}
.y4e_c00441{bottom:595.620000px;}
.y1c_c00441{bottom:613.620000px;}
.y4d_c00441{bottom:618.120000px;}
.y1b_c00441{bottom:634.320000px;}
.y4c_c00441{bottom:640.620000px;}
.y1a_c00441{bottom:655.020000px;}
.y4b_c00441{bottom:663.120000px;}
.y19_c00441{bottom:675.720000px;}
.y49_c00441{bottom:688.950000px;}
.y18_c00441{bottom:696.420000px;}
.y48_c00441{bottom:711.720000px;}
.y17_c00441{bottom:717.120000px;}
.y16_c00441{bottom:737.820000px;}
.y47_c00441{bottom:748.170000px;}
.y15_c00441{bottom:758.520000px;}
.y44_c00441{bottom:778.320000px;}
.y14_c00441{bottom:779.220000px;}
.y13_c00441{bottom:799.920000px;}
.y42_c00441{bottom:816.300000px;}
.y12_c00441{bottom:820.620000px;}
.y41_c00441{bottom:832.320000px;}
.y11_c00441{bottom:841.230000px;}
.y40_c00441{bottom:855.900000px;}
.y10_c00441{bottom:861.930000px;}
.y3f_c00441{bottom:878.400000px;}
.yf_c00441{bottom:882.630000px;}
.y3e_c00441{bottom:900.900000px;}
.ye_c00441{bottom:903.330000px;}
.y3d_c00441{bottom:923.400000px;}
.yd_c00441{bottom:924.030000px;}
.yc_c00441{bottom:944.730000px;}
.y3c_c00441{bottom:945.900000px;}
.yb_c00441{bottom:965.430000px;}
.y3b_c00441{bottom:968.400000px;}
.ya_c00441{bottom:986.130000px;}
.y3a_c00441{bottom:990.900000px;}
.y9_c00441{bottom:1006.830000px;}
.y37_c00441{bottom:1016.820000px;}
.y8_c00441{bottom:1027.530000px;}
.y36_c00441{bottom:1039.590000px;}
.y7_c00441{bottom:1048.230000px;}
.y6_c00441{bottom:1068.930000px;}
.y34_c00441{bottom:1075.950000px;}
.y5_c00441{bottom:1110.330000px;}
.y4_c00441{bottom:1131.030000px;}
.y3_c00441{bottom:1150.915500px;}
.y2_c00441{bottom:1166.400000px;}
.y1_c00441{bottom:1197.450000px;}
.hc_c00441{height:13.770000px;}
.h10_c00441{height:14.940000px;}
.h13_c00441{height:16.200000px;}
.ha_c00441{height:22.498500px;}
.h9_c00441{height:22.500000px;}
.hb_c00441{height:23.580000px;}
.h8_c00441{height:23.670000px;}
.h4_c00441{height:30.150000px;}
.h11_c00441{height:37.980000px;}
.he_c00441{height:37.981500px;}
.hd_c00441{height:46.991602px;}
.h2_c00441{height:52.998047px;}
.h7_c00441{height:56.880000px;}
.hf_c00441{height:56.970000px;}
.h6_c00441{height:64.657617px;}
.h12_c00441{height:66.394687px;}
.h3_c00441{height:70.664062px;}
.h5_c00441{height:96.870938px;}
.h0_c00441{height:1262.880000px;}
.h1_c00441{height:1263.000000px;}
.w5_c00441{width:104.580000px;}
.w4_c00441{width:104.940000px;}
.w8_c00441{width:105.750000px;}
.w9_c00441{width:105.751500px;}
.w6_c00441{width:342.718500px;}
.w7_c00441{width:345.060000px;}
.w3_c00441{width:556.560000px;}
.w2_c00441{width:893.031000px;}
.w0_c00441{width:893.070000px;}
.w1_c00441{width:893.250000px;}
.x0_c00441{left:0.000000px;}
.x10_c00441{left:4.140000px;}
.x16_c00441{left:5.310000px;}
.xb_c00441{left:17.100000px;}
.x15_c00441{left:30.240000px;}
.xd_c00441{left:35.820000px;}
.x9_c00441{left:39.060000px;}
.x1b_c00441{left:41.310000px;}
.x13_c00441{left:44.100000px;}
.x14_c00441{left:49.590000px;}
.x12_c00441{left:52.290000px;}
.x11_c00441{left:54.990000px;}
.x19_c00441{left:57.780000px;}
.x18_c00441{left:63.270000px;}
.x5_c00441{left:122.310000px;}
.xf_c00441{left:123.480000px;}
.x2_c00441{left:127.620000px;}
.x1a_c00441{left:132.660000px;}
.x17_c00441{left:137.250000px;}
.x6_c00441{left:153.990000px;}
.x7_c00441{left:263.250000px;}
.x1_c00441{left:446.580000px;}
.x8_c00441{left:467.370000px;}
.xa_c00441{left:478.530000px;}
.xc_c00441{left:573.120000px;}
.xe_c00441{left:584.280000px;}
.x3_c00441{left:690.570000px;}
.x4_c00441{left:906.570000px;}
@media print{
.v2_c00441{vertical-align:-73.600000pt;}
.v1_c00441{vertical-align:-55.056000pt;}
.v0_c00441{vertical-align:0.000000pt;}
.ls5_c00441{letter-spacing:-0.170880pt;}
.ls6_c00441{letter-spacing:-0.058560pt;}
.ls4_c00441{letter-spacing:0.000000pt;}
.ls3_c00441{letter-spacing:0.019520pt;}
.ls7_c00441{letter-spacing:0.058560pt;}
.ls8_c00441{letter-spacing:0.170240pt;}
.ls2_c00441{letter-spacing:0.175680pt;}
.ls0_c00441{letter-spacing:284.016000pt;}
.ls1_c00441{letter-spacing:1985.600000pt;}
.ws0_c00441{word-spacing:-14.815680pt;}
.ws1_c00441{word-spacing:-14.640000pt;}
.ws2_c00441{word-spacing:-14.581440pt;}
.ws3_c00441{word-spacing:-10.640000pt;}
.wsb_c00441{word-spacing:-0.255360pt;}
.ws9_c00441{word-spacing:-0.175680pt;}
.ws5_c00441{word-spacing:-0.144000pt;}
.ws6_c00441{word-spacing:-0.085440pt;}
.wsa_c00441{word-spacing:-0.085120pt;}
.ws4_c00441{word-spacing:0.000000pt;}
.ws7_c00441{word-spacing:0.058560pt;}
.ws8_c00441{word-spacing:0.117120pt;}
._1_c00441{margin-left:-1.065920pt;}
._0_c00441{width:1.102176pt;}
.fs4_c00441{font-size:42.560000pt;}
.fs0_c00441{font-size:48.000000pt;}
.fs3_c00441{font-size:58.560000pt;}
.fs1_c00441{font-size:64.000000pt;}
.fs2_c00441{font-size:85.440000pt;}
.y57_c00441{bottom:-13.600000pt;}
.y46_c00441{bottom:-13.520000pt;}
.y0_c00441{bottom:0.000000pt;}
.y43_c00441{bottom:2.560000pt;}
.y56_c00441{bottom:3.280000pt;}
.y39_c00441{bottom:3.360000pt;}
.y35_c00441{bottom:4.720000pt;}
.y55_c00441{bottom:20.160000pt;}
.y45_c00441{bottom:20.240000pt;}
.y38_c00441{bottom:37.040000pt;}
.y4a_c00441{bottom:37.120000pt;}
.y65_c00441{bottom:50.880000pt;}
.y33_c00441{bottom:122.240000pt;}
.y64_c00441{bottom:125.200000pt;}
.y63_c00441{bottom:139.600000pt;}
.y32_c00441{bottom:140.640000pt;}
.y62_c00441{bottom:156.000000pt;}
.y31_c00441{bottom:159.040000pt;}
.y61_c00441{bottom:176.960000pt;}
.y30_c00441{bottom:177.440000pt;}
.y2f_c00441{bottom:195.840000pt;}
.y60_c00441{bottom:196.960000pt;}
.y2e_c00441{bottom:214.240000pt;}
.y5f_c00441{bottom:216.960000pt;}
.y2d_c00441{bottom:232.640000pt;}
.y5e_c00441{bottom:236.960000pt;}
.y2c_c00441{bottom:251.040000pt;}
.y5d_c00441{bottom:256.960000pt;}
.y2b_c00441{bottom:269.440000pt;}
.y5c_c00441{bottom:276.960000pt;}
.y2a_c00441{bottom:287.840000pt;}
.y5b_c00441{bottom:296.960000pt;}
.y29_c00441{bottom:306.240000pt;}
.y5a_c00441{bottom:320.000000pt;}
.y28_c00441{bottom:324.640000pt;}
.y59_c00441{bottom:340.160000pt;}
.y27_c00441{bottom:343.040000pt;}
.y26_c00441{bottom:361.440000pt;}
.y58_c00441{bottom:372.560000pt;}
.y25_c00441{bottom:379.840000pt;}
.y24_c00441{bottom:398.240000pt;}
.y54_c00441{bottom:399.360000pt;}
.y23_c00441{bottom:416.640000pt;}
.y53_c00441{bottom:433.120000pt;}
.y22_c00441{bottom:435.040000pt;}
.y52_c00441{bottom:448.400000pt;}
.y21_c00441{bottom:453.440000pt;}
.y51_c00441{bottom:469.440000pt;}
.y20_c00441{bottom:471.840000pt;}
.y50_c00441{bottom:489.440000pt;}
.y1f_c00441{bottom:490.240000pt;}
.y1e_c00441{bottom:508.640000pt;}
.y4f_c00441{bottom:509.440000pt;}
.y1d_c00441{bottom:527.040000pt;}
.y4e_c00441{bottom:529.440000pt;}
.y1c_c00441{bottom:545.440000pt;}
.y4d_c00441{bottom:549.440000pt;}
.y1b_c00441{bottom:563.840000pt;}
.y4c_c00441{bottom:569.440000pt;}
.y1a_c00441{bottom:582.240000pt;}
.y4b_c00441{bottom:589.440000pt;}
.y19_c00441{bottom:600.640000pt;}
.y49_c00441{bottom:612.400000pt;}
.y18_c00441{bottom:619.040000pt;}
.y48_c00441{bottom:632.640000pt;}
.y17_c00441{bottom:637.440000pt;}
.y16_c00441{bottom:655.840000pt;}
.y47_c00441{bottom:665.040000pt;}
.y15_c00441{bottom:674.240000pt;}
.y44_c00441{bottom:691.840000pt;}
.y14_c00441{bottom:692.640000pt;}
.y13_c00441{bottom:711.040000pt;}
.y42_c00441{bottom:725.600000pt;}
.y12_c00441{bottom:729.440000pt;}
.y41_c00441{bottom:739.840000pt;}
.y11_c00441{bottom:747.760000pt;}
.y40_c00441{bottom:760.800000pt;}
.y10_c00441{bottom:766.160000pt;}
.y3f_c00441{bottom:780.800000pt;}
.yf_c00441{bottom:784.560000pt;}
.y3e_c00441{bottom:800.800000pt;}
.ye_c00441{bottom:802.960000pt;}
.y3d_c00441{bottom:820.800000pt;}
.yd_c00441{bottom:821.360000pt;}
.yc_c00441{bottom:839.760000pt;}
.y3c_c00441{bottom:840.800000pt;}
.yb_c00441{bottom:858.160000pt;}
.y3b_c00441{bottom:860.800000pt;}
.ya_c00441{bottom:876.560000pt;}
.y3a_c00441{bottom:880.800000pt;}
.y9_c00441{bottom:894.960000pt;}
.y37_c00441{bottom:903.840000pt;}
.y8_c00441{bottom:913.360000pt;}
.y36_c00441{bottom:924.080000pt;}
.y7_c00441{bottom:931.760000pt;}
.y6_c00441{bottom:950.160000pt;}
.y34_c00441{bottom:956.400000pt;}
.y5_c00441{bottom:986.960000pt;}
.y4_c00441{bottom:1005.360000pt;}
.y3_c00441{bottom:1023.036000pt;}
.y2_c00441{bottom:1036.800000pt;}
.y1_c00441{bottom:1064.400000pt;}
.hc_c00441{height:12.240000pt;}
.h10_c00441{height:13.280000pt;}
.h13_c00441{height:14.400000pt;}
.ha_c00441{height:19.998667pt;}
.h9_c00441{height:20.000000pt;}
.hb_c00441{height:20.960000pt;}
.h8_c00441{height:21.040000pt;}
.h4_c00441{height:26.800000pt;}
.h11_c00441{height:33.760000pt;}
.he_c00441{height:33.761333pt;}
.hd_c00441{height:41.770312pt;}
.h2_c00441{height:47.109375pt;}
.h7_c00441{height:50.560000pt;}
.hf_c00441{height:50.640000pt;}
.h6_c00441{height:57.473437pt;}
.h12_c00441{height:59.017500pt;}
.h3_c00441{height:62.812500pt;}
.h5_c00441{height:86.107500pt;}
.h0_c00441{height:1122.560000pt;}
.h1_c00441{height:1122.666667pt;}
.w5_c00441{width:92.960000pt;}
.w4_c00441{width:93.280000pt;}
.w8_c00441{width:94.000000pt;}
.w9_c00441{width:94.001333pt;}
.w6_c00441{width:304.638667pt;}
.w7_c00441{width:306.720000pt;}
.w3_c00441{width:494.720000pt;}
.w2_c00441{width:793.805333pt;}
.w0_c00441{width:793.840000pt;}
.w1_c00441{width:794.000000pt;}
.x0_c00441{left:0.000000pt;}
.x10_c00441{left:3.680000pt;}
.x16_c00441{left:4.720000pt;}
.xb_c00441{left:15.200000pt;}
.x15_c00441{left:26.880000pt;}
.xd_c00441{left:31.840000pt;}
.x9_c00441{left:34.720000pt;}
.x1b_c00441{left:36.720000pt;}
.x13_c00441{left:39.200000pt;}
.x14_c00441{left:44.080000pt;}
.x12_c00441{left:46.480000pt;}
.x11_c00441{left:48.880000pt;}
.x19_c00441{left:51.360000pt;}
.x18_c00441{left:56.240000pt;}
.x5_c00441{left:108.720000pt;}
.xf_c00441{left:109.760000pt;}
.x2_c00441{left:113.440000pt;}
.x1a_c00441{left:117.920000pt;}
.x17_c00441{left:122.000000pt;}
.x6_c00441{left:136.880000pt;}
.x7_c00441{left:234.000000pt;}
.x1_c00441{left:396.960000pt;}
.x8_c00441{left:415.440000pt;}
.xa_c00441{left:425.360000pt;}
.xc_c00441{left:509.440000pt;}
.xe_c00441{left:519.360000pt;}
.x3_c00441{left:613.840000pt;}
.x4_c00441{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_d462a14f726bc8a55a15dfd2.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00442{vertical-align:-82.800000px;}
.v0_c00442{vertical-align:0.000000px;}
.ls5_c00442{letter-spacing:-0.192240px;}
.ls4_c00442{letter-spacing:-0.108000px;}
.ls6_c00442{letter-spacing:-0.065880px;}
.ls3_c00442{letter-spacing:0.000000px;}
.ls2_c00442{letter-spacing:0.021960px;}
.ls7_c00442{letter-spacing:0.065880px;}
.ls1_c00442{letter-spacing:0.197640px;}
.ls0_c00442{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00442{word-spacing:-16.470000px;}
.ws2_c00442{word-spacing:-16.404120px;}
.ws3_c00442{word-spacing:-11.970000px;}
.wsa_c00442{word-spacing:-0.197640px;}
.ws7_c00442{word-spacing:-0.096120px;}
.wsb_c00442{word-spacing:-0.095760px;}
.ws4_c00442{word-spacing:0.000000px;}
.ws8_c00442{word-spacing:0.065880px;}
.ws9_c00442{word-spacing:0.131760px;}
.ws6_c00442{word-spacing:0.162000px;}
.ws5_c00442{word-spacing:0.270000px;}
._1_c00442{margin-left:-1.058400px;}
._0_c00442{width:1.220400px;}
.fc1_c00442{color:transparent;}
.fc0_c00442{color:rgb(0,0,0);}
.fs4_c00442{font-size:47.880000px;}
.fs0_c00442{font-size:54.000000px;}
.fs3_c00442{font-size:65.880000px;}
.fs1_c00442{font-size:72.000000px;}
.fs2_c00442{font-size:96.120000px;}
.y47_c00442{bottom:-15.210000px;}
.y0_c00442{bottom:0.000000px;}
.y44_c00442{bottom:2.880000px;}
.y66_c00442{bottom:2.970000px;}
.y57_c00442{bottom:3.690000px;}
.y3a_c00442{bottom:3.780000px;}
.y59_c00442{bottom:5.220000px;}
.y36_c00442{bottom:5.310000px;}
.y56_c00442{bottom:22.680000px;}
.y46_c00442{bottom:22.770000px;}
.y39_c00442{bottom:41.670000px;}
.y4b_c00442{bottom:41.760000px;}
.y67_c00442{bottom:57.240000px;}
.y34_c00442{bottom:137.520000px;}
.y65_c00442{bottom:146.790000px;}
.y33_c00442{bottom:158.220000px;}
.y64_c00442{bottom:160.650000px;}
.y63_c00442{bottom:176.670000px;}
.y32_c00442{bottom:178.920000px;}
.y31_c00442{bottom:199.620000px;}
.y62_c00442{bottom:200.340000px;}
.y30_c00442{bottom:220.320000px;}
.y61_c00442{bottom:222.840000px;}
.y2f_c00442{bottom:241.020000px;}
.y60_c00442{bottom:245.340000px;}
.y2e_c00442{bottom:261.720000px;}
.y5f_c00442{bottom:267.840000px;}
.y2d_c00442{bottom:282.420000px;}
.y5e_c00442{bottom:290.340000px;}
.y2c_c00442{bottom:303.120000px;}
.y5d_c00442{bottom:312.840000px;}
.y2b_c00442{bottom:323.820000px;}
.y5c_c00442{bottom:335.340000px;}
.y2a_c00442{bottom:344.520000px;}
.y5b_c00442{bottom:361.170000px;}
.y29_c00442{bottom:365.220000px;}
.y5a_c00442{bottom:383.940000px;}
.y28_c00442{bottom:385.920000px;}
.y27_c00442{bottom:406.620000px;}
.y58_c00442{bottom:420.390000px;}
.y26_c00442{bottom:427.320000px;}
.y25_c00442{bottom:448.020000px;}
.y55_c00442{bottom:450.540000px;}
.y24_c00442{bottom:468.720000px;}
.y54_c00442{bottom:488.430000px;}
.y23_c00442{bottom:489.420000px;}
.y53_c00442{bottom:504.450000px;}
.y22_c00442{bottom:510.120000px;}
.y52_c00442{bottom:528.120000px;}
.y21_c00442{bottom:530.820000px;}
.y51_c00442{bottom:550.620000px;}
.y20_c00442{bottom:551.520000px;}
.y1f_c00442{bottom:572.220000px;}
.y50_c00442{bottom:573.120000px;}
.y1e_c00442{bottom:592.920000px;}
.y4f_c00442{bottom:595.620000px;}
.y1d_c00442{bottom:613.620000px;}
.y4e_c00442{bottom:618.120000px;}
.y1c_c00442{bottom:634.320000px;}
.y4d_c00442{bottom:640.620000px;}
.y1b_c00442{bottom:655.020000px;}
.y4c_c00442{bottom:663.120000px;}
.y1a_c00442{bottom:675.720000px;}
.y4a_c00442{bottom:688.950000px;}
.y19_c00442{bottom:696.420000px;}
.y49_c00442{bottom:711.720000px;}
.y18_c00442{bottom:717.120000px;}
.y17_c00442{bottom:737.820000px;}
.y48_c00442{bottom:748.170000px;}
.y16_c00442{bottom:758.520000px;}
.y45_c00442{bottom:778.320000px;}
.y15_c00442{bottom:779.220000px;}
.y14_c00442{bottom:799.920000px;}
.y43_c00442{bottom:816.300000px;}
.y13_c00442{bottom:820.620000px;}
.y42_c00442{bottom:832.320000px;}
.y12_c00442{bottom:841.230000px;}
.y41_c00442{bottom:855.900000px;}
.y11_c00442{bottom:861.930000px;}
.y40_c00442{bottom:878.400000px;}
.y10_c00442{bottom:882.630000px;}
.y3f_c00442{bottom:900.900000px;}
.yf_c00442{bottom:903.330000px;}
.y3e_c00442{bottom:923.400000px;}
.ye_c00442{bottom:924.030000px;}
.yd_c00442{bottom:944.730000px;}
.y3d_c00442{bottom:945.900000px;}
.yc_c00442{bottom:965.430000px;}
.y3c_c00442{bottom:968.400000px;}
.yb_c00442{bottom:986.130000px;}
.y3b_c00442{bottom:990.900000px;}
.ya_c00442{bottom:1006.830000px;}
.y38_c00442{bottom:1016.820000px;}
.y9_c00442{bottom:1027.530000px;}
.y37_c00442{bottom:1039.590000px;}
.y8_c00442{bottom:1048.230000px;}
.y7_c00442{bottom:1068.930000px;}
.y35_c00442{bottom:1075.950000px;}
.y6_c00442{bottom:1110.330000px;}
.y5_c00442{bottom:1131.030000px;}
.y4_c00442{bottom:1150.920000px;}
.y3_c00442{bottom:1166.404500px;}
.y2_c00442{bottom:1181.970000px;}
.y1_c00442{bottom:1197.450000px;}
.hd_c00442{height:13.770000px;}
.h12_c00442{height:13.860000px;}
.hb_c00442{height:22.498500px;}
.ha_c00442{height:22.500000px;}
.hc_c00442{height:23.580000px;}
.h9_c00442{height:23.670000px;}
.h5_c00442{height:30.150000px;}
.h11_c00442{height:37.890000px;}
.hf_c00442{height:37.981500px;}
.he_c00442{height:46.991602px;}
.h3_c00442{height:52.971680px;}
.h2_c00442{height:52.998047px;}
.h8_c00442{height:56.880000px;}
.h10_c00442{height:56.970000px;}
.h7_c00442{height:64.657617px;}
.h4_c00442{height:70.664062px;}
.h6_c00442{height:96.870938px;}
.h0_c00442{height:1262.880000px;}
.h1_c00442{height:1263.000000px;}
.w5_c00442{width:104.580000px;}
.w4_c00442{width:104.940000px;}
.w8_c00442{width:105.750000px;}
.w9_c00442{width:105.751500px;}
.w6_c00442{width:342.718500px;}
.w7_c00442{width:345.060000px;}
.w3_c00442{width:556.560000px;}
.w2_c00442{width:893.031000px;}
.w0_c00442{width:893.070000px;}
.w1_c00442{width:893.250000px;}
.x0_c00442{left:0.000000px;}
.x11_c00442{left:4.140000px;}
.x16_c00442{left:5.310000px;}
.xc_c00442{left:17.100000px;}
.x15_c00442{left:30.240000px;}
.xe_c00442{left:35.820000px;}
.xa_c00442{left:39.060000px;}
.x13_c00442{left:44.100000px;}
.x19_c00442{left:49.590000px;}
.x12_c00442{left:54.990000px;}
.x14_c00442{left:57.780000px;}
.x18_c00442{left:63.270000px;}
.x7_c00442{left:74.340000px;}
.x17_c00442{left:119.610000px;}
.x6_c00442{left:122.310000px;}
.x10_c00442{left:123.480000px;}
.x3_c00442{left:127.620000px;}
.x1a_c00442{left:143.280000px;}
.x8_c00442{left:263.250000px;}
.x2_c00442{left:425.160000px;}
.x1_c00442{left:446.580000px;}
.x9_c00442{left:467.370000px;}
.xb_c00442{left:478.530000px;}
.xd_c00442{left:573.120000px;}
.xf_c00442{left:584.280000px;}
.x4_c00442{left:690.570000px;}
.x1b_c00442{left:738.540000px;}
.x5_c00442{left:906.570000px;}
@media print{
.v1_c00442{vertical-align:-73.600000pt;}
.v0_c00442{vertical-align:0.000000pt;}
.ls5_c00442{letter-spacing:-0.170880pt;}
.ls4_c00442{letter-spacing:-0.096000pt;}
.ls6_c00442{letter-spacing:-0.058560pt;}
.ls3_c00442{letter-spacing:0.000000pt;}
.ls2_c00442{letter-spacing:0.019520pt;}
.ls7_c00442{letter-spacing:0.058560pt;}
.ls1_c00442{letter-spacing:0.175680pt;}
.ls0_c00442{letter-spacing:1985.600000pt;}
.ws0_c00442{word-spacing:-14.815680pt;}
.ws1_c00442{word-spacing:-14.640000pt;}
.ws2_c00442{word-spacing:-14.581440pt;}
.ws3_c00442{word-spacing:-10.640000pt;}
.wsa_c00442{word-spacing:-0.175680pt;}
.ws7_c00442{word-spacing:-0.085440pt;}
.wsb_c00442{word-spacing:-0.085120pt;}
.ws4_c00442{word-spacing:0.000000pt;}
.ws8_c00442{word-spacing:0.058560pt;}
.ws9_c00442{word-spacing:0.117120pt;}
.ws6_c00442{word-spacing:0.144000pt;}
.ws5_c00442{word-spacing:0.240000pt;}
._1_c00442{margin-left:-0.940800pt;}
._0_c00442{width:1.084800pt;}
.fs4_c00442{font-size:42.560000pt;}
.fs0_c00442{font-size:48.000000pt;}
.fs3_c00442{font-size:58.560000pt;}
.fs1_c00442{font-size:64.000000pt;}
.fs2_c00442{font-size:85.440000pt;}
.y47_c00442{bottom:-13.520000pt;}
.y0_c00442{bottom:0.000000pt;}
.y44_c00442{bottom:2.560000pt;}
.y66_c00442{bottom:2.640000pt;}
.y57_c00442{bottom:3.280000pt;}
.y3a_c00442{bottom:3.360000pt;}
.y59_c00442{bottom:4.640000pt;}
.y36_c00442{bottom:4.720000pt;}
.y56_c00442{bottom:20.160000pt;}
.y46_c00442{bottom:20.240000pt;}
.y39_c00442{bottom:37.040000pt;}
.y4b_c00442{bottom:37.120000pt;}
.y67_c00442{bottom:50.880000pt;}
.y34_c00442{bottom:122.240000pt;}
.y65_c00442{bottom:130.480000pt;}
.y33_c00442{bottom:140.640000pt;}
.y64_c00442{bottom:142.800000pt;}
.y63_c00442{bottom:157.040000pt;}
.y32_c00442{bottom:159.040000pt;}
.y31_c00442{bottom:177.440000pt;}
.y62_c00442{bottom:178.080000pt;}
.y30_c00442{bottom:195.840000pt;}
.y61_c00442{bottom:198.080000pt;}
.y2f_c00442{bottom:214.240000pt;}
.y60_c00442{bottom:218.080000pt;}
.y2e_c00442{bottom:232.640000pt;}
.y5f_c00442{bottom:238.080000pt;}
.y2d_c00442{bottom:251.040000pt;}
.y5e_c00442{bottom:258.080000pt;}
.y2c_c00442{bottom:269.440000pt;}
.y5d_c00442{bottom:278.080000pt;}
.y2b_c00442{bottom:287.840000pt;}
.y5c_c00442{bottom:298.080000pt;}
.y2a_c00442{bottom:306.240000pt;}
.y5b_c00442{bottom:321.040000pt;}
.y29_c00442{bottom:324.640000pt;}
.y5a_c00442{bottom:341.280000pt;}
.y28_c00442{bottom:343.040000pt;}
.y27_c00442{bottom:361.440000pt;}
.y58_c00442{bottom:373.680000pt;}
.y26_c00442{bottom:379.840000pt;}
.y25_c00442{bottom:398.240000pt;}
.y55_c00442{bottom:400.480000pt;}
.y24_c00442{bottom:416.640000pt;}
.y54_c00442{bottom:434.160000pt;}
.y23_c00442{bottom:435.040000pt;}
.y53_c00442{bottom:448.400000pt;}
.y22_c00442{bottom:453.440000pt;}
.y52_c00442{bottom:469.440000pt;}
.y21_c00442{bottom:471.840000pt;}
.y51_c00442{bottom:489.440000pt;}
.y20_c00442{bottom:490.240000pt;}
.y1f_c00442{bottom:508.640000pt;}
.y50_c00442{bottom:509.440000pt;}
.y1e_c00442{bottom:527.040000pt;}
.y4f_c00442{bottom:529.440000pt;}
.y1d_c00442{bottom:545.440000pt;}
.y4e_c00442{bottom:549.440000pt;}
.y1c_c00442{bottom:563.840000pt;}
.y4d_c00442{bottom:569.440000pt;}
.y1b_c00442{bottom:582.240000pt;}
.y4c_c00442{bottom:589.440000pt;}
.y1a_c00442{bottom:600.640000pt;}
.y4a_c00442{bottom:612.400000pt;}
.y19_c00442{bottom:619.040000pt;}
.y49_c00442{bottom:632.640000pt;}
.y18_c00442{bottom:637.440000pt;}
.y17_c00442{bottom:655.840000pt;}
.y48_c00442{bottom:665.040000pt;}
.y16_c00442{bottom:674.240000pt;}
.y45_c00442{bottom:691.840000pt;}
.y15_c00442{bottom:692.640000pt;}
.y14_c00442{bottom:711.040000pt;}
.y43_c00442{bottom:725.600000pt;}
.y13_c00442{bottom:729.440000pt;}
.y42_c00442{bottom:739.840000pt;}
.y12_c00442{bottom:747.760000pt;}
.y41_c00442{bottom:760.800000pt;}
.y11_c00442{bottom:766.160000pt;}
.y40_c00442{bottom:780.800000pt;}
.y10_c00442{bottom:784.560000pt;}
.y3f_c00442{bottom:800.800000pt;}
.yf_c00442{bottom:802.960000pt;}
.y3e_c00442{bottom:820.800000pt;}
.ye_c00442{bottom:821.360000pt;}
.yd_c00442{bottom:839.760000pt;}
.y3d_c00442{bottom:840.800000pt;}
.yc_c00442{bottom:858.160000pt;}
.y3c_c00442{bottom:860.800000pt;}
.yb_c00442{bottom:876.560000pt;}
.y3b_c00442{bottom:880.800000pt;}
.ya_c00442{bottom:894.960000pt;}
.y38_c00442{bottom:903.840000pt;}
.y9_c00442{bottom:913.360000pt;}
.y37_c00442{bottom:924.080000pt;}
.y8_c00442{bottom:931.760000pt;}
.y7_c00442{bottom:950.160000pt;}
.y35_c00442{bottom:956.400000pt;}
.y6_c00442{bottom:986.960000pt;}
.y5_c00442{bottom:1005.360000pt;}
.y4_c00442{bottom:1023.040000pt;}
.y3_c00442{bottom:1036.804000pt;}
.y2_c00442{bottom:1050.640000pt;}
.y1_c00442{bottom:1064.400000pt;}
.hd_c00442{height:12.240000pt;}
.h12_c00442{height:12.320000pt;}
.hb_c00442{height:19.998667pt;}
.ha_c00442{height:20.000000pt;}
.hc_c00442{height:20.960000pt;}
.h9_c00442{height:21.040000pt;}
.h5_c00442{height:26.800000pt;}
.h11_c00442{height:33.680000pt;}
.hf_c00442{height:33.761333pt;}
.he_c00442{height:41.770312pt;}
.h3_c00442{height:47.085938pt;}
.h2_c00442{height:47.109375pt;}
.h8_c00442{height:50.560000pt;}
.h10_c00442{height:50.640000pt;}
.h7_c00442{height:57.473437pt;}
.h4_c00442{height:62.812500pt;}
.h6_c00442{height:86.107500pt;}
.h0_c00442{height:1122.560000pt;}
.h1_c00442{height:1122.666667pt;}
.w5_c00442{width:92.960000pt;}
.w4_c00442{width:93.280000pt;}
.w8_c00442{width:94.000000pt;}
.w9_c00442{width:94.001333pt;}
.w6_c00442{width:304.638667pt;}
.w7_c00442{width:306.720000pt;}
.w3_c00442{width:494.720000pt;}
.w2_c00442{width:793.805333pt;}
.w0_c00442{width:793.840000pt;}
.w1_c00442{width:794.000000pt;}
.x0_c00442{left:0.000000pt;}
.x11_c00442{left:3.680000pt;}
.x16_c00442{left:4.720000pt;}
.xc_c00442{left:15.200000pt;}
.x15_c00442{left:26.880000pt;}
.xe_c00442{left:31.840000pt;}
.xa_c00442{left:34.720000pt;}
.x13_c00442{left:39.200000pt;}
.x19_c00442{left:44.080000pt;}
.x12_c00442{left:48.880000pt;}
.x14_c00442{left:51.360000pt;}
.x18_c00442{left:56.240000pt;}
.x7_c00442{left:66.080000pt;}
.x17_c00442{left:106.320000pt;}
.x6_c00442{left:108.720000pt;}
.x10_c00442{left:109.760000pt;}
.x3_c00442{left:113.440000pt;}
.x1a_c00442{left:127.360000pt;}
.x8_c00442{left:234.000000pt;}
.x2_c00442{left:377.920000pt;}
.x1_c00442{left:396.960000pt;}
.x9_c00442{left:415.440000pt;}
.xb_c00442{left:425.360000pt;}
.xd_c00442{left:509.440000pt;}
.xf_c00442{left:519.360000pt;}
.x4_c00442{left:613.840000pt;}
.x1b_c00442{left:656.480000pt;}
.x5_c00442{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_30937a01f63d0d2a506fe4e7.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00443{vertical-align:-82.800000px;}
.v1_c00443{vertical-align:-61.938000px;}
.v0_c00443{vertical-align:0.000000px;}
.ls5_c00443{letter-spacing:-0.192240px;}
.ls6_c00443{letter-spacing:-0.065880px;}
.ls4_c00443{letter-spacing:0.000000px;}
.ls3_c00443{letter-spacing:0.021960px;}
.ls7_c00443{letter-spacing:0.065880px;}
.ls8_c00443{letter-spacing:0.192240px;}
.ls2_c00443{letter-spacing:0.197640px;}
.ls0_c00443{letter-spacing:319.518000px;}
.ls1_c00443{letter-spacing:2233.800000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:-16.667640px;}
.ws1_c00443{word-spacing:-16.470000px;}
.ws2_c00443{word-spacing:-16.404120px;}
.ws3_c00443{word-spacing:-11.970000px;}
.wsb_c00443{word-spacing:-0.480600px;}
.ws9_c00443{word-spacing:-0.197640px;}
.ws5_c00443{word-spacing:-0.162000px;}
.ws6_c00443{word-spacing:-0.096120px;}
.wsa_c00443{word-spacing:-0.095760px;}
.ws4_c00443{word-spacing:0.000000px;}
.ws7_c00443{word-spacing:0.065880px;}
.ws8_c00443{word-spacing:0.131760px;}
._1_c00443{margin-left:-1.199160px;}
._0_c00443{width:1.239948px;}
.fc1_c00443{color:transparent;}
.fc0_c00443{color:rgb(0,0,0);}
.fs4_c00443{font-size:47.880000px;}
.fs0_c00443{font-size:54.000000px;}
.fs3_c00443{font-size:65.880000px;}
.fs1_c00443{font-size:72.000000px;}
.fs2_c00443{font-size:96.120000px;}
.y46_c00443{bottom:-15.210000px;}
.y0_c00443{bottom:0.000000px;}
.y43_c00443{bottom:2.880000px;}
.y61_c00443{bottom:2.970000px;}
.y39_c00443{bottom:3.780000px;}
.y35_c00443{bottom:5.310000px;}
.y45_c00443{bottom:22.770000px;}
.y38_c00443{bottom:41.670000px;}
.y4a_c00443{bottom:41.760000px;}
.y63_c00443{bottom:57.240000px;}
.y33_c00443{bottom:137.520000px;}
.y62_c00443{bottom:145.620000px;}
.y32_c00443{bottom:158.220000px;}
.y60_c00443{bottom:159.390000px;}
.y5f_c00443{bottom:175.500000px;}
.y31_c00443{bottom:178.920000px;}
.y5e_c00443{bottom:199.080000px;}
.y30_c00443{bottom:199.620000px;}
.y2f_c00443{bottom:220.320000px;}
.y5d_c00443{bottom:221.580000px;}
.y2e_c00443{bottom:241.020000px;}
.y5c_c00443{bottom:244.080000px;}
.y2d_c00443{bottom:261.720000px;}
.y5b_c00443{bottom:266.580000px;}
.y2c_c00443{bottom:282.420000px;}
.y5a_c00443{bottom:289.080000px;}
.y2b_c00443{bottom:303.120000px;}
.y59_c00443{bottom:311.580000px;}
.y2a_c00443{bottom:323.820000px;}
.y58_c00443{bottom:334.080000px;}
.y29_c00443{bottom:344.520000px;}
.y57_c00443{bottom:360.000000px;}
.y28_c00443{bottom:365.220000px;}
.y56_c00443{bottom:382.680000px;}
.y27_c00443{bottom:385.920000px;}
.y26_c00443{bottom:406.620000px;}
.y55_c00443{bottom:419.130000px;}
.y25_c00443{bottom:427.320000px;}
.y24_c00443{bottom:448.020000px;}
.y54_c00443{bottom:449.280000px;}
.y23_c00443{bottom:468.720000px;}
.y53_c00443{bottom:487.260000px;}
.y22_c00443{bottom:489.420000px;}
.y52_c00443{bottom:504.450000px;}
.y21_c00443{bottom:510.120000px;}
.y51_c00443{bottom:528.120000px;}
.y20_c00443{bottom:530.820000px;}
.y50_c00443{bottom:550.620000px;}
.y1f_c00443{bottom:551.520000px;}
.y1e_c00443{bottom:572.220000px;}
.y4f_c00443{bottom:573.120000px;}
.y1d_c00443{bottom:592.920000px;}
.y4e_c00443{bottom:595.620000px;}
.y1c_c00443{bottom:613.620000px;}
.y4d_c00443{bottom:618.120000px;}
.y1b_c00443{bottom:634.320000px;}
.y4c_c00443{bottom:640.620000px;}
.y1a_c00443{bottom:655.020000px;}
.y4b_c00443{bottom:663.120000px;}
.y19_c00443{bottom:675.720000px;}
.y49_c00443{bottom:688.950000px;}
.y18_c00443{bottom:696.420000px;}
.y48_c00443{bottom:711.720000px;}
.y17_c00443{bottom:717.120000px;}
.y16_c00443{bottom:737.820000px;}
.y47_c00443{bottom:748.170000px;}
.y15_c00443{bottom:758.520000px;}
.y44_c00443{bottom:778.320000px;}
.y14_c00443{bottom:779.220000px;}
.y13_c00443{bottom:799.920000px;}
.y42_c00443{bottom:816.300000px;}
.y12_c00443{bottom:820.620000px;}
.y41_c00443{bottom:832.320000px;}
.y11_c00443{bottom:841.230000px;}
.y40_c00443{bottom:855.900000px;}
.y10_c00443{bottom:861.930000px;}
.y3f_c00443{bottom:878.400000px;}
.yf_c00443{bottom:882.630000px;}
.y3e_c00443{bottom:900.900000px;}
.ye_c00443{bottom:903.330000px;}
.y3d_c00443{bottom:923.400000px;}
.yd_c00443{bottom:924.030000px;}
.yc_c00443{bottom:944.730000px;}
.y3c_c00443{bottom:945.900000px;}
.yb_c00443{bottom:965.430000px;}
.y3b_c00443{bottom:968.400000px;}
.ya_c00443{bottom:986.130000px;}
.y3a_c00443{bottom:990.900000px;}
.y9_c00443{bottom:1006.830000px;}
.y37_c00443{bottom:1016.820000px;}
.y8_c00443{bottom:1027.530000px;}
.y36_c00443{bottom:1039.590000px;}
.y7_c00443{bottom:1048.230000px;}
.y6_c00443{bottom:1068.930000px;}
.y34_c00443{bottom:1075.950000px;}
.y5_c00443{bottom:1110.330000px;}
.y4_c00443{bottom:1131.030000px;}
.y3_c00443{bottom:1150.915500px;}
.y2_c00443{bottom:1166.400000px;}
.y1_c00443{bottom:1197.450000px;}
.hc_c00443{height:13.770000px;}
.h12_c00443{height:13.858500px;}
.h10_c00443{height:14.940000px;}
.ha_c00443{height:22.498500px;}
.h9_c00443{height:22.500000px;}
.hb_c00443{height:23.580000px;}
.h8_c00443{height:23.670000px;}
.h4_c00443{height:30.150000px;}
.h11_c00443{height:37.980000px;}
.he_c00443{height:37.981500px;}
.hd_c00443{height:46.991602px;}
.h2_c00443{height:52.998047px;}
.h7_c00443{height:56.880000px;}
.hf_c00443{height:56.970000px;}
.h6_c00443{height:64.657617px;}
.h3_c00443{height:70.664062px;}
.h5_c00443{height:96.870938px;}
.h0_c00443{height:1262.880000px;}
.h1_c00443{height:1263.000000px;}
.w5_c00443{width:104.580000px;}
.w4_c00443{width:104.940000px;}
.w8_c00443{width:105.750000px;}
.w9_c00443{width:105.751500px;}
.w6_c00443{width:342.718500px;}
.w7_c00443{width:345.060000px;}
.w3_c00443{width:556.560000px;}
.w2_c00443{width:893.031000px;}
.w0_c00443{width:893.070000px;}
.w1_c00443{width:893.250000px;}
.x0_c00443{left:0.000000px;}
.x10_c00443{left:4.140000px;}
.x15_c00443{left:5.310000px;}
.xb_c00443{left:17.100000px;}
.x14_c00443{left:30.240000px;}
.xd_c00443{left:35.820000px;}
.x9_c00443{left:39.060000px;}
.x13_c00443{left:41.310000px;}
.x18_c00443{left:44.100000px;}
.x12_c00443{left:49.590000px;}
.x11_c00443{left:54.990000px;}
.x17_c00443{left:57.780000px;}
.x5_c00443{left:122.310000px;}
.xf_c00443{left:123.480000px;}
.x2_c00443{left:127.620000px;}
.x16_c00443{left:133.290000px;}
.x6_c00443{left:149.310000px;}
.x7_c00443{left:263.250000px;}
.x1_c00443{left:446.580000px;}
.x8_c00443{left:467.370000px;}
.xa_c00443{left:478.530000px;}
.xc_c00443{left:573.120000px;}
.xe_c00443{left:584.280000px;}
.x3_c00443{left:690.570000px;}
.x4_c00443{left:906.570000px;}
@media print{
.v2_c00443{vertical-align:-73.600000pt;}
.v1_c00443{vertical-align:-55.056000pt;}
.v0_c00443{vertical-align:0.000000pt;}
.ls5_c00443{letter-spacing:-0.170880pt;}
.ls6_c00443{letter-spacing:-0.058560pt;}
.ls4_c00443{letter-spacing:0.000000pt;}
.ls3_c00443{letter-spacing:0.019520pt;}
.ls7_c00443{letter-spacing:0.058560pt;}
.ls8_c00443{letter-spacing:0.170880pt;}
.ls2_c00443{letter-spacing:0.175680pt;}
.ls0_c00443{letter-spacing:284.016000pt;}
.ls1_c00443{letter-spacing:1985.600000pt;}
.ws0_c00443{word-spacing:-14.815680pt;}
.ws1_c00443{word-spacing:-14.640000pt;}
.ws2_c00443{word-spacing:-14.581440pt;}
.ws3_c00443{word-spacing:-10.640000pt;}
.wsb_c00443{word-spacing:-0.427200pt;}
.ws9_c00443{word-spacing:-0.175680pt;}
.ws5_c00443{word-spacing:-0.144000pt;}
.ws6_c00443{word-spacing:-0.085440pt;}
.wsa_c00443{word-spacing:-0.085120pt;}
.ws4_c00443{word-spacing:0.000000pt;}
.ws7_c00443{word-spacing:0.058560pt;}
.ws8_c00443{word-spacing:0.117120pt;}
._1_c00443{margin-left:-1.065920pt;}
._0_c00443{width:1.102176pt;}
.fs4_c00443{font-size:42.560000pt;}
.fs0_c00443{font-size:48.000000pt;}
.fs3_c00443{font-size:58.560000pt;}
.fs1_c00443{font-size:64.000000pt;}
.fs2_c00443{font-size:85.440000pt;}
.y46_c00443{bottom:-13.520000pt;}
.y0_c00443{bottom:0.000000pt;}
.y43_c00443{bottom:2.560000pt;}
.y61_c00443{bottom:2.640000pt;}
.y39_c00443{bottom:3.360000pt;}
.y35_c00443{bottom:4.720000pt;}
.y45_c00443{bottom:20.240000pt;}
.y38_c00443{bottom:37.040000pt;}
.y4a_c00443{bottom:37.120000pt;}
.y63_c00443{bottom:50.880000pt;}
.y33_c00443{bottom:122.240000pt;}
.y62_c00443{bottom:129.440000pt;}
.y32_c00443{bottom:140.640000pt;}
.y60_c00443{bottom:141.680000pt;}
.y5f_c00443{bottom:156.000000pt;}
.y31_c00443{bottom:159.040000pt;}
.y5e_c00443{bottom:176.960000pt;}
.y30_c00443{bottom:177.440000pt;}
.y2f_c00443{bottom:195.840000pt;}
.y5d_c00443{bottom:196.960000pt;}
.y2e_c00443{bottom:214.240000pt;}
.y5c_c00443{bottom:216.960000pt;}
.y2d_c00443{bottom:232.640000pt;}
.y5b_c00443{bottom:236.960000pt;}
.y2c_c00443{bottom:251.040000pt;}
.y5a_c00443{bottom:256.960000pt;}
.y2b_c00443{bottom:269.440000pt;}
.y59_c00443{bottom:276.960000pt;}
.y2a_c00443{bottom:287.840000pt;}
.y58_c00443{bottom:296.960000pt;}
.y29_c00443{bottom:306.240000pt;}
.y57_c00443{bottom:320.000000pt;}
.y28_c00443{bottom:324.640000pt;}
.y56_c00443{bottom:340.160000pt;}
.y27_c00443{bottom:343.040000pt;}
.y26_c00443{bottom:361.440000pt;}
.y55_c00443{bottom:372.560000pt;}
.y25_c00443{bottom:379.840000pt;}
.y24_c00443{bottom:398.240000pt;}
.y54_c00443{bottom:399.360000pt;}
.y23_c00443{bottom:416.640000pt;}
.y53_c00443{bottom:433.120000pt;}
.y22_c00443{bottom:435.040000pt;}
.y52_c00443{bottom:448.400000pt;}
.y21_c00443{bottom:453.440000pt;}
.y51_c00443{bottom:469.440000pt;}
.y20_c00443{bottom:471.840000pt;}
.y50_c00443{bottom:489.440000pt;}
.y1f_c00443{bottom:490.240000pt;}
.y1e_c00443{bottom:508.640000pt;}
.y4f_c00443{bottom:509.440000pt;}
.y1d_c00443{bottom:527.040000pt;}
.y4e_c00443{bottom:529.440000pt;}
.y1c_c00443{bottom:545.440000pt;}
.y4d_c00443{bottom:549.440000pt;}
.y1b_c00443{bottom:563.840000pt;}
.y4c_c00443{bottom:569.440000pt;}
.y1a_c00443{bottom:582.240000pt;}
.y4b_c00443{bottom:589.440000pt;}
.y19_c00443{bottom:600.640000pt;}
.y49_c00443{bottom:612.400000pt;}
.y18_c00443{bottom:619.040000pt;}
.y48_c00443{bottom:632.640000pt;}
.y17_c00443{bottom:637.440000pt;}
.y16_c00443{bottom:655.840000pt;}
.y47_c00443{bottom:665.040000pt;}
.y15_c00443{bottom:674.240000pt;}
.y44_c00443{bottom:691.840000pt;}
.y14_c00443{bottom:692.640000pt;}
.y13_c00443{bottom:711.040000pt;}
.y42_c00443{bottom:725.600000pt;}
.y12_c00443{bottom:729.440000pt;}
.y41_c00443{bottom:739.840000pt;}
.y11_c00443{bottom:747.760000pt;}
.y40_c00443{bottom:760.800000pt;}
.y10_c00443{bottom:766.160000pt;}
.y3f_c00443{bottom:780.800000pt;}
.yf_c00443{bottom:784.560000pt;}
.y3e_c00443{bottom:800.800000pt;}
.ye_c00443{bottom:802.960000pt;}
.y3d_c00443{bottom:820.800000pt;}
.yd_c00443{bottom:821.360000pt;}
.yc_c00443{bottom:839.760000pt;}
.y3c_c00443{bottom:840.800000pt;}
.yb_c00443{bottom:858.160000pt;}
.y3b_c00443{bottom:860.800000pt;}
.ya_c00443{bottom:876.560000pt;}
.y3a_c00443{bottom:880.800000pt;}
.y9_c00443{bottom:894.960000pt;}
.y37_c00443{bottom:903.840000pt;}
.y8_c00443{bottom:913.360000pt;}
.y36_c00443{bottom:924.080000pt;}
.y7_c00443{bottom:931.760000pt;}
.y6_c00443{bottom:950.160000pt;}
.y34_c00443{bottom:956.400000pt;}
.y5_c00443{bottom:986.960000pt;}
.y4_c00443{bottom:1005.360000pt;}
.y3_c00443{bottom:1023.036000pt;}
.y2_c00443{bottom:1036.800000pt;}
.y1_c00443{bottom:1064.400000pt;}
.hc_c00443{height:12.240000pt;}
.h12_c00443{height:12.318667pt;}
.h10_c00443{height:13.280000pt;}
.ha_c00443{height:19.998667pt;}
.h9_c00443{height:20.000000pt;}
.hb_c00443{height:20.960000pt;}
.h8_c00443{height:21.040000pt;}
.h4_c00443{height:26.800000pt;}
.h11_c00443{height:33.760000pt;}
.he_c00443{height:33.761333pt;}
.hd_c00443{height:41.770312pt;}
.h2_c00443{height:47.109375pt;}
.h7_c00443{height:50.560000pt;}
.hf_c00443{height:50.640000pt;}
.h6_c00443{height:57.473437pt;}
.h3_c00443{height:62.812500pt;}
.h5_c00443{height:86.107500pt;}
.h0_c00443{height:1122.560000pt;}
.h1_c00443{height:1122.666667pt;}
.w5_c00443{width:92.960000pt;}
.w4_c00443{width:93.280000pt;}
.w8_c00443{width:94.000000pt;}
.w9_c00443{width:94.001333pt;}
.w6_c00443{width:304.638667pt;}
.w7_c00443{width:306.720000pt;}
.w3_c00443{width:494.720000pt;}
.w2_c00443{width:793.805333pt;}
.w0_c00443{width:793.840000pt;}
.w1_c00443{width:794.000000pt;}
.x0_c00443{left:0.000000pt;}
.x10_c00443{left:3.680000pt;}
.x15_c00443{left:4.720000pt;}
.xb_c00443{left:15.200000pt;}
.x14_c00443{left:26.880000pt;}
.xd_c00443{left:31.840000pt;}
.x9_c00443{left:34.720000pt;}
.x13_c00443{left:36.720000pt;}
.x18_c00443{left:39.200000pt;}
.x12_c00443{left:44.080000pt;}
.x11_c00443{left:48.880000pt;}
.x17_c00443{left:51.360000pt;}
.x5_c00443{left:108.720000pt;}
.xf_c00443{left:109.760000pt;}
.x2_c00443{left:113.440000pt;}
.x16_c00443{left:118.480000pt;}
.x6_c00443{left:132.720000pt;}
.x7_c00443{left:234.000000pt;}
.x1_c00443{left:396.960000pt;}
.x8_c00443{left:415.440000pt;}
.xa_c00443{left:425.360000pt;}
.xc_c00443{left:509.440000pt;}
.xe_c00443{left:519.360000pt;}
.x3_c00443{left:613.840000pt;}
.x4_c00443{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_8ed15614ffa5043caf7d3a35.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00444{vertical-align:-82.800000px;}
.v0_c00444{vertical-align:0.000000px;}
.ls8_c00444{letter-spacing:-0.263520px;}
.ls5_c00444{letter-spacing:-0.192240px;}
.ls4_c00444{letter-spacing:-0.108000px;}
.ls6_c00444{letter-spacing:-0.065880px;}
.ls3_c00444{letter-spacing:0.000000px;}
.ls2_c00444{letter-spacing:0.021960px;}
.ls7_c00444{letter-spacing:0.065880px;}
.ls9_c00444{letter-spacing:0.192240px;}
.ls1_c00444{letter-spacing:0.197640px;}
.ls0_c00444{letter-spacing:2233.800000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:-16.667640px;}
.ws1_c00444{word-spacing:-16.470000px;}
.ws2_c00444{word-spacing:-16.404120px;}
.ws3_c00444{word-spacing:-11.970000px;}
.wsd_c00444{word-spacing:-0.480600px;}
.wsa_c00444{word-spacing:-0.197640px;}
.ws7_c00444{word-spacing:-0.096120px;}
.wsb_c00444{word-spacing:-0.095760px;}
.ws4_c00444{word-spacing:0.000000px;}
.ws8_c00444{word-spacing:0.065880px;}
.ws9_c00444{word-spacing:0.131760px;}
.ws6_c00444{word-spacing:0.162000px;}
.ws5_c00444{word-spacing:0.270000px;}
.wsc_c00444{word-spacing:0.329400px;}
._1_c00444{margin-left:-1.058400px;}
._0_c00444{width:1.220400px;}
.fc1_c00444{color:transparent;}
.fc0_c00444{color:rgb(0,0,0);}
.fs4_c00444{font-size:47.880000px;}
.fs0_c00444{font-size:54.000000px;}
.fs3_c00444{font-size:65.880000px;}
.fs1_c00444{font-size:72.000000px;}
.fs2_c00444{font-size:96.120000px;}
.y47_c00444{bottom:-15.210000px;}
.y0_c00444{bottom:0.000000px;}
.y44_c00444{bottom:2.880000px;}
.y55_c00444{bottom:2.970000px;}
.y3a_c00444{bottom:3.780000px;}
.y59_c00444{bottom:5.220000px;}
.y36_c00444{bottom:5.310000px;}
.y57_c00444{bottom:22.680000px;}
.y46_c00444{bottom:22.770000px;}
.y39_c00444{bottom:41.670000px;}
.y4b_c00444{bottom:41.760000px;}
.y66_c00444{bottom:57.240000px;}
.y34_c00444{bottom:137.520000px;}
.y65_c00444{bottom:138.690000px;}
.y64_c00444{bottom:154.890000px;}
.y33_c00444{bottom:158.220000px;}
.y63_c00444{bottom:173.340000px;}
.y32_c00444{bottom:178.920000px;}
.y62_c00444{bottom:197.010000px;}
.y31_c00444{bottom:199.620000px;}
.y61_c00444{bottom:219.510000px;}
.y30_c00444{bottom:220.320000px;}
.y2f_c00444{bottom:241.020000px;}
.y60_c00444{bottom:242.010000px;}
.y2e_c00444{bottom:261.720000px;}
.y5f_c00444{bottom:264.510000px;}
.y2d_c00444{bottom:282.420000px;}
.y5e_c00444{bottom:287.010000px;}
.y2c_c00444{bottom:303.120000px;}
.y5d_c00444{bottom:309.510000px;}
.y2b_c00444{bottom:323.820000px;}
.y5c_c00444{bottom:332.010000px;}
.y2a_c00444{bottom:344.520000px;}
.y5b_c00444{bottom:357.840000px;}
.y29_c00444{bottom:365.220000px;}
.y5a_c00444{bottom:380.610000px;}
.y28_c00444{bottom:385.920000px;}
.y27_c00444{bottom:406.620000px;}
.y58_c00444{bottom:417.060000px;}
.y26_c00444{bottom:427.320000px;}
.y56_c00444{bottom:447.210000px;}
.y25_c00444{bottom:448.020000px;}
.y24_c00444{bottom:468.720000px;}
.y54_c00444{bottom:485.100000px;}
.y23_c00444{bottom:489.420000px;}
.y53_c00444{bottom:504.450000px;}
.y22_c00444{bottom:510.120000px;}
.y52_c00444{bottom:528.120000px;}
.y21_c00444{bottom:530.820000px;}
.y51_c00444{bottom:550.620000px;}
.y20_c00444{bottom:551.520000px;}
.y1f_c00444{bottom:572.220000px;}
.y50_c00444{bottom:573.120000px;}
.y1e_c00444{bottom:592.920000px;}
.y4f_c00444{bottom:595.620000px;}
.y1d_c00444{bottom:613.620000px;}
.y4e_c00444{bottom:618.120000px;}
.y1c_c00444{bottom:634.320000px;}
.y4d_c00444{bottom:640.620000px;}
.y1b_c00444{bottom:655.020000px;}
.y4c_c00444{bottom:663.120000px;}
.y1a_c00444{bottom:675.720000px;}
.y4a_c00444{bottom:688.950000px;}
.y19_c00444{bottom:696.420000px;}
.y49_c00444{bottom:711.720000px;}
.y18_c00444{bottom:717.120000px;}
.y17_c00444{bottom:737.820000px;}
.y48_c00444{bottom:748.170000px;}
.y16_c00444{bottom:758.520000px;}
.y45_c00444{bottom:778.320000px;}
.y15_c00444{bottom:779.220000px;}
.y14_c00444{bottom:799.920000px;}
.y43_c00444{bottom:816.300000px;}
.y13_c00444{bottom:820.620000px;}
.y42_c00444{bottom:832.320000px;}
.y12_c00444{bottom:841.230000px;}
.y41_c00444{bottom:855.900000px;}
.y11_c00444{bottom:861.930000px;}
.y40_c00444{bottom:878.400000px;}
.y10_c00444{bottom:882.630000px;}
.y3f_c00444{bottom:900.900000px;}
.yf_c00444{bottom:903.330000px;}
.y3e_c00444{bottom:923.400000px;}
.ye_c00444{bottom:924.030000px;}
.yd_c00444{bottom:944.730000px;}
.y3d_c00444{bottom:945.900000px;}
.yc_c00444{bottom:965.430000px;}
.y3c_c00444{bottom:968.400000px;}
.yb_c00444{bottom:986.130000px;}
.y3b_c00444{bottom:990.900000px;}
.ya_c00444{bottom:1006.830000px;}
.y38_c00444{bottom:1016.820000px;}
.y9_c00444{bottom:1027.530000px;}
.y37_c00444{bottom:1039.590000px;}
.y8_c00444{bottom:1048.230000px;}
.y7_c00444{bottom:1068.930000px;}
.y35_c00444{bottom:1075.950000px;}
.y6_c00444{bottom:1110.330000px;}
.y5_c00444{bottom:1131.030000px;}
.y4_c00444{bottom:1150.920000px;}
.y3_c00444{bottom:1166.404500px;}
.y2_c00444{bottom:1181.970000px;}
.y1_c00444{bottom:1197.450000px;}
.hd_c00444{height:13.770000px;}
.h14_c00444{height:16.200000px;}
.h11_c00444{height:17.100000px;}
.hb_c00444{height:22.498500px;}
.ha_c00444{height:22.500000px;}
.hc_c00444{height:23.580000px;}
.h9_c00444{height:23.670000px;}
.h5_c00444{height:30.150000px;}
.h13_c00444{height:30.151500px;}
.h12_c00444{height:37.888500px;}
.hf_c00444{height:37.981500px;}
.he_c00444{height:46.991602px;}
.h3_c00444{height:52.971680px;}
.h2_c00444{height:52.998047px;}
.h8_c00444{height:56.880000px;}
.h10_c00444{height:56.970000px;}
.h7_c00444{height:64.657617px;}
.h4_c00444{height:70.664062px;}
.h6_c00444{height:96.870938px;}
.h0_c00444{height:1262.880000px;}
.h1_c00444{height:1263.000000px;}
.w5_c00444{width:104.580000px;}
.w4_c00444{width:104.940000px;}
.w8_c00444{width:105.750000px;}
.w9_c00444{width:105.751500px;}
.w6_c00444{width:342.718500px;}
.w7_c00444{width:345.060000px;}
.w3_c00444{width:556.560000px;}
.w2_c00444{width:893.031000px;}
.w0_c00444{width:893.070000px;}
.w1_c00444{width:893.250000px;}
.x0_c00444{left:0.000000px;}
.x11_c00444{left:4.140000px;}
.x17_c00444{left:5.310000px;}
.xc_c00444{left:17.100000px;}
.x15_c00444{left:30.240000px;}
.xe_c00444{left:35.820000px;}
.xa_c00444{left:39.060000px;}
.x1a_c00444{left:41.310000px;}
.x19_c00444{left:42.660000px;}
.x13_c00444{left:44.100000px;}
.x1b_c00444{left:49.590000px;}
.x16_c00444{left:52.290000px;}
.x12_c00444{left:54.990000px;}
.x14_c00444{left:57.780000px;}
.x6_c00444{left:122.310000px;}
.x10_c00444{left:123.480000px;}
.x3_c00444{left:127.620000px;}
.x7_c00444{left:138.600000px;}
.x1c_c00444{left:140.670000px;}
.x18_c00444{left:149.940000px;}
.x8_c00444{left:263.250000px;}
.x2_c00444{left:425.160000px;}
.x1_c00444{left:446.580000px;}
.x9_c00444{left:467.370000px;}
.xb_c00444{left:478.530000px;}
.xd_c00444{left:573.120000px;}
.xf_c00444{left:584.280000px;}
.x4_c00444{left:690.570000px;}
.x1d_c00444{left:738.540000px;}
.x5_c00444{left:906.570000px;}
@media print{
.v1_c00444{vertical-align:-73.600000pt;}
.v0_c00444{vertical-align:0.000000pt;}
.ls8_c00444{letter-spacing:-0.234240pt;}
.ls5_c00444{letter-spacing:-0.170880pt;}
.ls4_c00444{letter-spacing:-0.096000pt;}
.ls6_c00444{letter-spacing:-0.058560pt;}
.ls3_c00444{letter-spacing:0.000000pt;}
.ls2_c00444{letter-spacing:0.019520pt;}
.ls7_c00444{letter-spacing:0.058560pt;}
.ls9_c00444{letter-spacing:0.170880pt;}
.ls1_c00444{letter-spacing:0.175680pt;}
.ls0_c00444{letter-spacing:1985.600000pt;}
.ws0_c00444{word-spacing:-14.815680pt;}
.ws1_c00444{word-spacing:-14.640000pt;}
.ws2_c00444{word-spacing:-14.581440pt;}
.ws3_c00444{word-spacing:-10.640000pt;}
.wsd_c00444{word-spacing:-0.427200pt;}
.wsa_c00444{word-spacing:-0.175680pt;}
.ws7_c00444{word-spacing:-0.085440pt;}
.wsb_c00444{word-spacing:-0.085120pt;}
.ws4_c00444{word-spacing:0.000000pt;}
.ws8_c00444{word-spacing:0.058560pt;}
.ws9_c00444{word-spacing:0.117120pt;}
.ws6_c00444{word-spacing:0.144000pt;}
.ws5_c00444{word-spacing:0.240000pt;}
.wsc_c00444{word-spacing:0.292800pt;}
._1_c00444{margin-left:-0.940800pt;}
._0_c00444{width:1.084800pt;}
.fs4_c00444{font-size:42.560000pt;}
.fs0_c00444{font-size:48.000000pt;}
.fs3_c00444{font-size:58.560000pt;}
.fs1_c00444{font-size:64.000000pt;}
.fs2_c00444{font-size:85.440000pt;}
.y47_c00444{bottom:-13.520000pt;}
.y0_c00444{bottom:0.000000pt;}
.y44_c00444{bottom:2.560000pt;}
.y55_c00444{bottom:2.640000pt;}
.y3a_c00444{bottom:3.360000pt;}
.y59_c00444{bottom:4.640000pt;}
.y36_c00444{bottom:4.720000pt;}
.y57_c00444{bottom:20.160000pt;}
.y46_c00444{bottom:20.240000pt;}
.y39_c00444{bottom:37.040000pt;}
.y4b_c00444{bottom:37.120000pt;}
.y66_c00444{bottom:50.880000pt;}
.y34_c00444{bottom:122.240000pt;}
.y65_c00444{bottom:123.280000pt;}
.y64_c00444{bottom:137.680000pt;}
.y33_c00444{bottom:140.640000pt;}
.y63_c00444{bottom:154.080000pt;}
.y32_c00444{bottom:159.040000pt;}
.y62_c00444{bottom:175.120000pt;}
.y31_c00444{bottom:177.440000pt;}
.y61_c00444{bottom:195.120000pt;}
.y30_c00444{bottom:195.840000pt;}
.y2f_c00444{bottom:214.240000pt;}
.y60_c00444{bottom:215.120000pt;}
.y2e_c00444{bottom:232.640000pt;}
.y5f_c00444{bottom:235.120000pt;}
.y2d_c00444{bottom:251.040000pt;}
.y5e_c00444{bottom:255.120000pt;}
.y2c_c00444{bottom:269.440000pt;}
.y5d_c00444{bottom:275.120000pt;}
.y2b_c00444{bottom:287.840000pt;}
.y5c_c00444{bottom:295.120000pt;}
.y2a_c00444{bottom:306.240000pt;}
.y5b_c00444{bottom:318.080000pt;}
.y29_c00444{bottom:324.640000pt;}
.y5a_c00444{bottom:338.320000pt;}
.y28_c00444{bottom:343.040000pt;}
.y27_c00444{bottom:361.440000pt;}
.y58_c00444{bottom:370.720000pt;}
.y26_c00444{bottom:379.840000pt;}
.y56_c00444{bottom:397.520000pt;}
.y25_c00444{bottom:398.240000pt;}
.y24_c00444{bottom:416.640000pt;}
.y54_c00444{bottom:431.200000pt;}
.y23_c00444{bottom:435.040000pt;}
.y53_c00444{bottom:448.400000pt;}
.y22_c00444{bottom:453.440000pt;}
.y52_c00444{bottom:469.440000pt;}
.y21_c00444{bottom:471.840000pt;}
.y51_c00444{bottom:489.440000pt;}
.y20_c00444{bottom:490.240000pt;}
.y1f_c00444{bottom:508.640000pt;}
.y50_c00444{bottom:509.440000pt;}
.y1e_c00444{bottom:527.040000pt;}
.y4f_c00444{bottom:529.440000pt;}
.y1d_c00444{bottom:545.440000pt;}
.y4e_c00444{bottom:549.440000pt;}
.y1c_c00444{bottom:563.840000pt;}
.y4d_c00444{bottom:569.440000pt;}
.y1b_c00444{bottom:582.240000pt;}
.y4c_c00444{bottom:589.440000pt;}
.y1a_c00444{bottom:600.640000pt;}
.y4a_c00444{bottom:612.400000pt;}
.y19_c00444{bottom:619.040000pt;}
.y49_c00444{bottom:632.640000pt;}
.y18_c00444{bottom:637.440000pt;}
.y17_c00444{bottom:655.840000pt;}
.y48_c00444{bottom:665.040000pt;}
.y16_c00444{bottom:674.240000pt;}
.y45_c00444{bottom:691.840000pt;}
.y15_c00444{bottom:692.640000pt;}
.y14_c00444{bottom:711.040000pt;}
.y43_c00444{bottom:725.600000pt;}
.y13_c00444{bottom:729.440000pt;}
.y42_c00444{bottom:739.840000pt;}
.y12_c00444{bottom:747.760000pt;}
.y41_c00444{bottom:760.800000pt;}
.y11_c00444{bottom:766.160000pt;}
.y40_c00444{bottom:780.800000pt;}
.y10_c00444{bottom:784.560000pt;}
.y3f_c00444{bottom:800.800000pt;}
.yf_c00444{bottom:802.960000pt;}
.y3e_c00444{bottom:820.800000pt;}
.ye_c00444{bottom:821.360000pt;}
.yd_c00444{bottom:839.760000pt;}
.y3d_c00444{bottom:840.800000pt;}
.yc_c00444{bottom:858.160000pt;}
.y3c_c00444{bottom:860.800000pt;}
.yb_c00444{bottom:876.560000pt;}
.y3b_c00444{bottom:880.800000pt;}
.ya_c00444{bottom:894.960000pt;}
.y38_c00444{bottom:903.840000pt;}
.y9_c00444{bottom:913.360000pt;}
.y37_c00444{bottom:924.080000pt;}
.y8_c00444{bottom:931.760000pt;}
.y7_c00444{bottom:950.160000pt;}
.y35_c00444{bottom:956.400000pt;}
.y6_c00444{bottom:986.960000pt;}
.y5_c00444{bottom:1005.360000pt;}
.y4_c00444{bottom:1023.040000pt;}
.y3_c00444{bottom:1036.804000pt;}
.y2_c00444{bottom:1050.640000pt;}
.y1_c00444{bottom:1064.400000pt;}
.hd_c00444{height:12.240000pt;}
.h14_c00444{height:14.400000pt;}
.h11_c00444{height:15.200000pt;}
.hb_c00444{height:19.998667pt;}
.ha_c00444{height:20.000000pt;}
.hc_c00444{height:20.960000pt;}
.h9_c00444{height:21.040000pt;}
.h5_c00444{height:26.800000pt;}
.h13_c00444{height:26.801333pt;}
.h12_c00444{height:33.678667pt;}
.hf_c00444{height:33.761333pt;}
.he_c00444{height:41.770312pt;}
.h3_c00444{height:47.085938pt;}
.h2_c00444{height:47.109375pt;}
.h8_c00444{height:50.560000pt;}
.h10_c00444{height:50.640000pt;}
.h7_c00444{height:57.473437pt;}
.h4_c00444{height:62.812500pt;}
.h6_c00444{height:86.107500pt;}
.h0_c00444{height:1122.560000pt;}
.h1_c00444{height:1122.666667pt;}
.w5_c00444{width:92.960000pt;}
.w4_c00444{width:93.280000pt;}
.w8_c00444{width:94.000000pt;}
.w9_c00444{width:94.001333pt;}
.w6_c00444{width:304.638667pt;}
.w7_c00444{width:306.720000pt;}
.w3_c00444{width:494.720000pt;}
.w2_c00444{width:793.805333pt;}
.w0_c00444{width:793.840000pt;}
.w1_c00444{width:794.000000pt;}
.x0_c00444{left:0.000000pt;}
.x11_c00444{left:3.680000pt;}
.x17_c00444{left:4.720000pt;}
.xc_c00444{left:15.200000pt;}
.x15_c00444{left:26.880000pt;}
.xe_c00444{left:31.840000pt;}
.xa_c00444{left:34.720000pt;}
.x1a_c00444{left:36.720000pt;}
.x19_c00444{left:37.920000pt;}
.x13_c00444{left:39.200000pt;}
.x1b_c00444{left:44.080000pt;}
.x16_c00444{left:46.480000pt;}
.x12_c00444{left:48.880000pt;}
.x14_c00444{left:51.360000pt;}
.x6_c00444{left:108.720000pt;}
.x10_c00444{left:109.760000pt;}
.x3_c00444{left:113.440000pt;}
.x7_c00444{left:123.200000pt;}
.x1c_c00444{left:125.040000pt;}
.x18_c00444{left:133.280000pt;}
.x8_c00444{left:234.000000pt;}
.x2_c00444{left:377.920000pt;}
.x1_c00444{left:396.960000pt;}
.x9_c00444{left:415.440000pt;}
.xb_c00444{left:425.360000pt;}
.xd_c00444{left:509.440000pt;}
.xf_c00444{left:519.360000pt;}
.x4_c00444{left:613.840000pt;}
.x1d_c00444{left:656.480000pt;}
.x5_c00444{left:805.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_c00445 {
    display:none;
  }
  .loading-indicator_c00445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00445 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00445 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00445" -> "#page-container .classname_c00445")
 */
.pf_c00445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00445 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00445 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00445 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00445 {overflow:visible;}
  }
}
.c_c00445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00445 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00445:after { /* webkit #35443 */
  content: '';
}
.t_c00445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00445 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00445 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00445 { /* info for Javascript */
  display:none;
}
.l_c00445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00445:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00445;src:url('chunks/assets/font_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_2bcba25767fafa1927b2f2f3.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00445{vertical-align:-82.800000px;}
.v1_c00445{vertical-align:-61.938000px;}
.v0_c00445{vertical-align:0.000000px;}
.ls8_c00445{letter-spacing:-0.263520px;}
.ls5_c00445{letter-spacing:-0.192240px;}
.ls6_c00445{letter-spacing:-0.065880px;}
.ls4_c00445{letter-spacing:0.000000px;}
.ls3_c00445{letter-spacing:0.021960px;}
.ls7_c00445{letter-spacing:0.065880px;}
.ls9_c00445{letter-spacing:0.192240px;}
.ls2_c00445{letter-spacing:0.197640px;}
.ls0_c00445{letter-spacing:319.518000px;}
.ls1_c00445{letter-spacing:2233.800000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:-16.667640px;}
.ws1_c00445{word-spacing:-16.470000px;}
.ws2_c00445{word-spacing:-16.404120px;}
.ws3_c00445{word-spacing:-16.206480px;}
.ws4_c00445{word-spacing:-11.970000px;}
.wsc_c00445{word-spacing:-0.480600px;}
.wsa_c00445{word-spacing:-0.197640px;}
.ws6_c00445{word-spacing:-0.162000px;}
.ws7_c00445{word-spacing:-0.096120px;}
.wsb_c00445{word-spacing:-0.095760px;}
.ws5_c00445{word-spacing:0.000000px;}
.ws8_c00445{word-spacing:0.065880px;}
.ws9_c00445{word-spacing:0.131760px;}
._1_c00445{margin-left:-1.199160px;}
._0_c00445{width:1.239948px;}
.fc1_c00445{color:transparent;}
.fc0_c00445{color:rgb(0,0,0);}
.fs4_c00445{font-size:47.880000px;}
.fs0_c00445{font-size:54.000000px;}
.fs3_c00445{font-size:65.880000px;}
.fs1_c00445{font-size:72.000000px;}
.fs2_c00445{font-size:96.120000px;}
.y46_c00445{bottom:-15.210000px;}
.y0_c00445{bottom:0.000000px;}
.y43_c00445{bottom:2.880000px;}
.y39_c00445{bottom:3.780000px;}
.y35_c00445{bottom:5.310000px;}
.y45_c00445{bottom:22.770000px;}
.y38_c00445{bottom:41.670000px;}
.y4a_c00445{bottom:41.760000px;}
.y62_c00445{bottom:57.240000px;}
.y33_c00445{bottom:137.520000px;}
.y61_c00445{bottom:140.850000px;}
.y60_c00445{bottom:157.050000px;}
.y32_c00445{bottom:158.220000px;}
.y5f_c00445{bottom:175.500000px;}
.y31_c00445{bottom:178.920000px;}
.y5e_c00445{bottom:199.080000px;}
.y30_c00445{bottom:199.620000px;}
.y2f_c00445{bottom:220.320000px;}
.y5d_c00445{bottom:221.580000px;}
.y2e_c00445{bottom:241.020000px;}
.y5c_c00445{bottom:244.080000px;}
.y2d_c00445{bottom:261.720000px;}
.y5b_c00445{bottom:266.580000px;}
.y2c_c00445{bottom:282.420000px;}
.y5a_c00445{bottom:289.080000px;}
.y2b_c00445{bottom:303.120000px;}
.y59_c00445{bottom:311.580000px;}
.y2a_c00445{bottom:323.820000px;}
.y58_c00445{bottom:334.080000px;}
.y29_c00445{bottom:344.520000px;}
.y57_c00445{bottom:360.000000px;}
.y28_c00445{bottom:365.220000px;}
.y56_c00445{bottom:382.680000px;}
.y27_c00445{bottom:385.920000px;}
.y26_c00445{bottom:406.620000px;}
.y55_c00445{bottom:419.130000px;}
.y25_c00445{bottom:427.320000px;}
.y24_c00445{bottom:448.020000px;}
.y54_c00445{bottom:449.280000px;}
.y23_c00445{bottom:468.720000px;}
.y53_c00445{bottom:487.260000px;}
.y22_c00445{bottom:489.420000px;}
.y52_c00445{bottom:504.450000px;}
.y21_c00445{bottom:510.120000px;}
.y51_c00445{bottom:528.120000px;}
.y20_c00445{bottom:530.820000px;}
.y50_c00445{bottom:550.620000px;}
.y1f_c00445{bottom:551.520000px;}
.y1e_c00445{bottom:572.220000px;}
.y4f_c00445{bottom:573.120000px;}
.y1d_c00445{bottom:592.920000px;}
.y4e_c00445{bottom:595.620000px;}
.y1c_c00445{bottom:613.620000px;}
.y4d_c00445{bottom:618.120000px;}
.y1b_c00445{bottom:634.320000px;}
.y4c_c00445{bottom:640.620000px;}
.y1a_c00445{bottom:655.020000px;}
.y4b_c00445{bottom:663.120000px;}
.y19_c00445{bottom:675.720000px;}
.y49_c00445{bottom:688.950000px;}
.y18_c00445{bottom:696.420000px;}
.y48_c00445{bottom:711.720000px;}
.y17_c00445{bottom:717.120000px;}
.y16_c00445{bottom:737.820000px;}
.y47_c00445{bottom:748.170000px;}
.y15_c00445{bottom:758.520000px;}
.y44_c00445{bottom:778.320000px;}
.y14_c00445{bottom:779.220000px;}
.y13_c00445{bottom:799.920000px;}
.y42_c00445{bottom:816.300000px;}
.y12_c00445{bottom:820.620000px;}
.y41_c00445{bottom:832.320000px;}
.y11_c00445{bottom:841.230000px;}
.y40_c00445{bottom:855.900000px;}
.y10_c00445{bottom:861.930000px;}
.y3f_c00445{bottom:878.400000px;}
.yf_c00445{bottom:882.630000px;}
.y3e_c00445{bottom:900.900000px;}
.ye_c00445{bottom:903.330000px;}
.y3d_c00445{bottom:923.400000px;}
.yd_c00445{bottom:924.030000px;}
.yc_c00445{bottom:944.730000px;}
.y3c_c00445{bottom:945.900000px;}
.yb_c00445{bottom:965.430000px;}
.y3b_c00445{bottom:968.400000px;}
.ya_c00445{bottom:986.130000px;}
.y3a_c00445{bottom:990.900000px;}
.y9_c00445{bottom:1006.830000px;}
.y37_c00445{bottom:1016.820000px;}
.y8_c00445{bottom:1027.530000px;}
.y36_c00445{bottom:1039.590000px;}
.y7_c00445{bottom:1048.230000px;}
.y6_c00445{bottom:1068.930000px;}
.y34_c00445{bottom:1075.950000px;}
.y5_c00445{bottom:1110.330000px;}
.y4_c00445{bottom:1131.030000px;}
.y3_c00445{bottom:1150.915500px;}
.y2_c00445{bottom:1166.400000px;}
.y1_c00445{bottom:1197.450000px;}
.hc_c00445{height:13.770000px;}
.h10_c00445{height:14.940000px;}
.h12_c00445{height:16.200000px;}
.ha_c00445{height:22.498500px;}
.h9_c00445{height:22.500000px;}
.hb_c00445{height:23.580000px;}
.h8_c00445{height:23.670000px;}
.h4_c00445{height:30.150000px;}
.h11_c00445{height:37.980000px;}
.he_c00445{height:37.981500px;}
.hd_c00445{height:46.991602px;}
.h2_c00445{height:52.998047px;}
.h7_c00445{height:56.880000px;}
.hf_c00445{height:56.970000px;}
.h6_c00445{height:64.657617px;}
.h3_c00445{height:70.664062px;}
.h5_c00445{height:96.870938px;}
.h0_c00445{height:1262.880000px;}
.h1_c00445{height:1263.000000px;}
.w5_c00445{width:104.580000px;}
.w4_c00445{width:104.940000px;}
.w8_c00445{width:105.750000px;}
.w9_c00445{width:105.751500px;}
.w6_c00445{width:342.718500px;}
.w7_c00445{width:345.060000px;}
.w3_c00445{width:556.560000px;}
.w2_c00445{width:893.031000px;}
.w0_c00445{width:893.070000px;}
.w1_c00445{width:893.250000px;}
.x0_c00445{left:0.000000px;}
.x10_c00445{left:4.140000px;}
.x15_c00445{left:5.310000px;}
.xb_c00445{left:17.100000px;}
.x14_c00445{left:30.240000px;}
.x1b_c00445{left:34.380000px;}
.xd_c00445{left:35.820000px;}
.x9_c00445{left:39.060000px;}
.x18_c00445{left:41.310000px;}
.x17_c00445{left:42.660000px;}
.x19_c00445{left:44.100000px;}
.x12_c00445{left:49.590000px;}
.x1c_c00445{left:52.290000px;}
.x11_c00445{left:54.990000px;}
.x13_c00445{left:57.780000px;}
.x5_c00445{left:122.310000px;}
.xf_c00445{left:123.480000px;}
.x2_c00445{left:127.620000px;}
.x6_c00445{left:137.340000px;}
.x1a_c00445{left:140.310000px;}
.x16_c00445{left:151.920000px;}
.x7_c00445{left:263.250000px;}
.x1_c00445{left:446.580000px;}
.x8_c00445{left:467.370000px;}
.xa_c00445{left:478.530000px;}
.xc_c00445{left:573.120000px;}
.xe_c00445{left:584.280000px;}
.x3_c00445{left:690.570000px;}
.x4_c00445{left:906.570000px;}
@media print{
.v2_c00445{vertical-align:-73.600000pt;}
.v1_c00445{vertical-align:-55.056000pt;}
.v0_c00445{vertical-align:0.000000pt;}
.ls8_c00445{letter-spacing:-0.234240pt;}
.ls5_c00445{letter-spacing:-0.170880pt;}
.ls6_c00445{letter-spacing:-0.058560pt;}
.ls4_c00445{letter-spacing:0.000000pt;}
.ls3_c00445{letter-spacing:0.019520pt;}
.ls7_c00445{letter-spacing:0.058560pt;}
.ls9_c00445{letter-spacing:0.170880pt;}
.ls2_c00445{letter-spacing:0.175680pt;}
.ls0_c00445{letter-spacing:284.016000pt;}
.ls1_c00445{letter-spacing:1985.600000pt;}
.ws0_c00445{word-spacing:-14.815680pt;}
.ws1_c00445{word-spacing:-14.640000pt;}
.ws2_c00445{word-spacing:-14.581440pt;}
.ws3_c00445{word-spacing:-14.405760pt;}
.ws4_c00445{word-spacing:-10.640000pt;}
.wsc_c00445{word-spacing:-0.427200pt;}
.wsa_c00445{word-spacing:-0.175680pt;}
.ws6_c00445{word-spacing:-0.144000pt;}
.ws7_c00445{word-spacing:-0.085440pt;}
.wsb_c00445{word-spacing:-0.085120pt;}
.ws5_c00445{word-spacing:0.000000pt;}
.ws8_c00445{word-spacing:0.058560pt;}
.ws9_c00445{word-spacing:0.117120pt;}
._1_c00445{margin-left:-1.065920pt;}
._0_c00445{width:1.102176pt;}
.fs4_c00445{font-size:42.560000pt;}
.fs0_c00445{font-size:48.000000pt;}
.fs3_c00445{font-size:58.560000pt;}
.fs1_c00445{font-size:64.000000pt;}
.fs2_c00445{font-size:85.440000pt;}
.y46_c00445{bottom:-13.520000pt;}
.y0_c00445{bottom:0.000000pt;}
.y43_c00445{bottom:2.560000pt;}
.y39_c00445{bottom:3.360000pt;}
.y35_c00445{bottom:4.720000pt;}
.y45_c00445{bottom:20.240000pt;}
.y38_c00445{bottom:37.040000pt;}
.y4a_c00445{bottom:37.120000pt;}
.y62_c00445{bottom:50.880000pt;}
.y33_c00445{bottom:122.240000pt;}
.y61_c00445{bottom:125.200000pt;}
.y60_c00445{bottom:139.600000pt;}
.y32_c00445{bottom:140.640000pt;}
.y5f_c00445{bottom:156.000000pt;}
.y31_c00445{bottom:159.040000pt;}
.y5e_c00445{bottom:176.960000pt;}
.y30_c00445{bottom:177.440000pt;}
.y2f_c00445{bottom:195.840000pt;}
.y5d_c00445{bottom:196.960000pt;}
.y2e_c00445{bottom:214.240000pt;}
.y5c_c00445{bottom:216.960000pt;}
.y2d_c00445{bottom:232.640000pt;}
.y5b_c00445{bottom:236.960000pt;}
.y2c_c00445{bottom:251.040000pt;}
.y5a_c00445{bottom:256.960000pt;}
.y2b_c00445{bottom:269.440000pt;}
.y59_c00445{bottom:276.960000pt;}
.y2a_c00445{bottom:287.840000pt;}
.y58_c00445{bottom:296.960000pt;}
.y29_c00445{bottom:306.240000pt;}
.y57_c00445{bottom:320.000000pt;}
.y28_c00445{bottom:324.640000pt;}
.y56_c00445{bottom:340.160000pt;}
.y27_c00445{bottom:343.040000pt;}
.y26_c00445{bottom:361.440000pt;}
.y55_c00445{bottom:372.560000pt;}
.y25_c00445{bottom:379.840000pt;}
.y24_c00445{bottom:398.240000pt;}
.y54_c00445{bottom:399.360000pt;}
.y23_c00445{bottom:416.640000pt;}
.y53_c00445{bottom:433.120000pt;}
.y22_c00445{bottom:435.040000pt;}
.y52_c00445{bottom:448.400000pt;}
.y21_c00445{bottom:453.440000pt;}
.y51_c00445{bottom:469.440000pt;}
.y20_c00445{bottom:471.840000pt;}
.y50_c00445{bottom:489.440000pt;}
.y1f_c00445{bottom:490.240000pt;}
.y1e_c00445{bottom:508.640000pt;}
.y4f_c00445{bottom:509.440000pt;}
.y1d_c00445{bottom:527.040000pt;}
.y4e_c00445{bottom:529.440000pt;}
.y1c_c00445{bottom:545.440000pt;}
.y4d_c00445{bottom:549.440000pt;}
.y1b_c00445{bottom:563.840000pt;}
.y4c_c00445{bottom:569.440000pt;}
.y1a_c00445{bottom:582.240000pt;}
.y4b_c00445{bottom:589.440000pt;}
.y19_c00445{bottom:600.640000pt;}
.y49_c00445{bottom:612.400000pt;}
.y18_c00445{bottom:619.040000pt;}
.y48_c00445{bottom:632.640000pt;}
.y17_c00445{bottom:637.440000pt;}
.y16_c00445{bottom:655.840000pt;}
.y47_c00445{bottom:665.040000pt;}
.y15_c00445{bottom:674.240000pt;}
.y44_c00445{bottom:691.840000pt;}
.y14_c00445{bottom:692.640000pt;}
.y13_c00445{bottom:711.040000pt;}
.y42_c00445{bottom:725.600000pt;}
.y12_c00445{bottom:729.440000pt;}
.y41_c00445{bottom:739.840000pt;}
.y11_c00445{bottom:747.760000pt;}
.y40_c00445{bottom:760.800000pt;}
.y10_c00445{bottom:766.160000pt;}
.y3f_c00445{bottom:780.800000pt;}
.yf_c00445{bottom:784.560000pt;}
.y3e_c00445{bottom:800.800000pt;}
.ye_c00445{bottom:802.960000pt;}
.y3d_c00445{bottom:820.800000pt;}
.yd_c00445{bottom:821.360000pt;}
.yc_c00445{bottom:839.760000pt;}
.y3c_c00445{bottom:840.800000pt;}
.yb_c00445{bottom:858.160000pt;}
.y3b_c00445{bottom:860.800000pt;}
.ya_c00445{bottom:876.560000pt;}
.y3a_c00445{bottom:880.800000pt;}
.y9_c00445{bottom:894.960000pt;}
.y37_c00445{bottom:903.840000pt;}
.y8_c00445{bottom:913.360000pt;}
.y36_c00445{bottom:924.080000pt;}
.y7_c00445{bottom:931.760000pt;}
.y6_c00445{bottom:950.160000pt;}
.y34_c00445{bottom:956.400000pt;}
.y5_c00445{bottom:986.960000pt;}
.y4_c00445{bottom:1005.360000pt;}
.y3_c00445{bottom:1023.036000pt;}
.y2_c00445{bottom:1036.800000pt;}
.y1_c00445{bottom:1064.400000pt;}
.hc_c00445{height:12.240000pt;}
.h10_c00445{height:13.280000pt;}
.h12_c00445{height:14.400000pt;}
.ha_c00445{height:19.998667pt;}
.h9_c00445{height:20.000000pt;}
.hb_c00445{height:20.960000pt;}
.h8_c00445{height:21.040000pt;}
.h4_c00445{height:26.800000pt;}
.h11_c00445{height:33.760000pt;}
.he_c00445{height:33.761333pt;}
.hd_c00445{height:41.770312pt;}
.h2_c00445{height:47.109375pt;}
.h7_c00445{height:50.560000pt;}
.hf_c00445{height:50.640000pt;}
.h6_c00445{height:57.473437pt;}
.h3_c00445{height:62.812500pt;}
.h5_c00445{height:86.107500pt;}
.h0_c00445{height:1122.560000pt;}
.h1_c00445{height:1122.666667pt;}
.w5_c00445{width:92.960000pt;}
.w4_c00445{width:93.280000pt;}
.w8_c00445{width:94.000000pt;}
.w9_c00445{width:94.001333pt;}
.w6_c00445{width:304.638667pt;}
.w7_c00445{width:306.720000pt;}
.w3_c00445{width:494.720000pt;}
.w2_c00445{width:793.805333pt;}
.w0_c00445{width:793.840000pt;}
.w1_c00445{width:794.000000pt;}
.x0_c00445{left:0.000000pt;}
.x10_c00445{left:3.680000pt;}
.x15_c00445{left:4.720000pt;}
.xb_c00445{left:15.200000pt;}
.x14_c00445{left:26.880000pt;}
.x1b_c00445{left:30.560000pt;}
.xd_c00445{left:31.840000pt;}
.x9_c00445{left:34.720000pt;}
.x18_c00445{left:36.720000pt;}
.x17_c00445{left:37.920000pt;}
.x19_c00445{left:39.200000pt;}
.x12_c00445{left:44.080000pt;}
.x1c_c00445{left:46.480000pt;}
.x11_c00445{left:48.880000pt;}
.x13_c00445{left:51.360000pt;}
.x5_c00445{left:108.720000pt;}
.xf_c00445{left:109.760000pt;}
.x2_c00445{left:113.440000pt;}
.x6_c00445{left:122.080000pt;}
.x1a_c00445{left:124.720000pt;}
.x16_c00445{left:135.040000pt;}
.x7_c00445{left:234.000000pt;}
.x1_c00445{left:396.960000pt;}
.x8_c00445{left:415.440000pt;}
.xa_c00445{left:425.360000pt;}
.xc_c00445{left:509.440000pt;}
.xe_c00445{left:519.360000pt;}
.x3_c00445{left:613.840000pt;}
.x4_c00445{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_eb49f9b48d43a3548437991e.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00446{vertical-align:-82.800000px;}
.v0_c00446{vertical-align:0.000000px;}
.ls5_c00446{letter-spacing:-0.192240px;}
.ls4_c00446{letter-spacing:-0.108000px;}
.ls6_c00446{letter-spacing:-0.065880px;}
.ls3_c00446{letter-spacing:0.000000px;}
.ls2_c00446{letter-spacing:0.021960px;}
.ls7_c00446{letter-spacing:0.065880px;}
.ls1_c00446{letter-spacing:0.197640px;}
.ls0_c00446{letter-spacing:2233.800000px;}
.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;}
}
.ws4_c00446{word-spacing:-23.837760px;}
.ws0_c00446{word-spacing:-16.667640px;}
.ws1_c00446{word-spacing:-16.470000px;}
.ws2_c00446{word-spacing:-16.404120px;}
.ws3_c00446{word-spacing:-11.970000px;}
.wsb_c00446{word-spacing:-0.197640px;}
.ws8_c00446{word-spacing:-0.096120px;}
.wsc_c00446{word-spacing:-0.095760px;}
.ws5_c00446{word-spacing:0.000000px;}
.ws9_c00446{word-spacing:0.065880px;}
.wsa_c00446{word-spacing:0.131760px;}
.ws7_c00446{word-spacing:0.162000px;}
.ws6_c00446{word-spacing:0.270000px;}
._1_c00446{margin-left:-1.058400px;}
._0_c00446{width:1.220400px;}
.fc1_c00446{color:transparent;}
.fc0_c00446{color:rgb(0,0,0);}
.fs4_c00446{font-size:47.880000px;}
.fs0_c00446{font-size:54.000000px;}
.fs3_c00446{font-size:65.880000px;}
.fs1_c00446{font-size:72.000000px;}
.fs2_c00446{font-size:96.120000px;}
.y47_c00446{bottom:-15.210000px;}
.y0_c00446{bottom:0.000000px;}
.y44_c00446{bottom:2.880000px;}
.y57_c00446{bottom:3.690000px;}
.y3a_c00446{bottom:3.780000px;}
.y59_c00446{bottom:5.220000px;}
.y36_c00446{bottom:5.310000px;}
.y56_c00446{bottom:22.680000px;}
.y46_c00446{bottom:22.770000px;}
.y39_c00446{bottom:41.670000px;}
.y4b_c00446{bottom:41.760000px;}
.y65_c00446{bottom:57.240000px;}
.y34_c00446{bottom:137.520000px;}
.y64_c00446{bottom:142.020000px;}
.y33_c00446{bottom:158.220000px;}
.y63_c00446{bottom:176.670000px;}
.y32_c00446{bottom:178.920000px;}
.y31_c00446{bottom:199.620000px;}
.y62_c00446{bottom:200.340000px;}
.y30_c00446{bottom:220.320000px;}
.y61_c00446{bottom:222.840000px;}
.y2f_c00446{bottom:241.020000px;}
.y60_c00446{bottom:245.340000px;}
.y2e_c00446{bottom:261.720000px;}
.y5f_c00446{bottom:267.840000px;}
.y2d_c00446{bottom:282.420000px;}
.y5e_c00446{bottom:290.340000px;}
.y2c_c00446{bottom:303.120000px;}
.y5d_c00446{bottom:312.840000px;}
.y2b_c00446{bottom:323.820000px;}
.y5c_c00446{bottom:335.340000px;}
.y2a_c00446{bottom:344.520000px;}
.y5b_c00446{bottom:361.170000px;}
.y29_c00446{bottom:365.220000px;}
.y5a_c00446{bottom:383.940000px;}
.y28_c00446{bottom:385.920000px;}
.y27_c00446{bottom:406.620000px;}
.y58_c00446{bottom:420.390000px;}
.y26_c00446{bottom:427.320000px;}
.y25_c00446{bottom:448.020000px;}
.y55_c00446{bottom:450.540000px;}
.y24_c00446{bottom:468.720000px;}
.y54_c00446{bottom:488.430000px;}
.y23_c00446{bottom:489.420000px;}
.y53_c00446{bottom:504.450000px;}
.y22_c00446{bottom:510.120000px;}
.y52_c00446{bottom:528.120000px;}
.y21_c00446{bottom:530.820000px;}
.y51_c00446{bottom:550.620000px;}
.y20_c00446{bottom:551.520000px;}
.y1f_c00446{bottom:572.220000px;}
.y50_c00446{bottom:573.120000px;}
.y1e_c00446{bottom:592.920000px;}
.y4f_c00446{bottom:595.620000px;}
.y1d_c00446{bottom:613.620000px;}
.y4e_c00446{bottom:618.120000px;}
.y1c_c00446{bottom:634.320000px;}
.y4d_c00446{bottom:640.620000px;}
.y1b_c00446{bottom:655.020000px;}
.y4c_c00446{bottom:663.120000px;}
.y1a_c00446{bottom:675.720000px;}
.y4a_c00446{bottom:688.950000px;}
.y19_c00446{bottom:696.420000px;}
.y49_c00446{bottom:711.720000px;}
.y18_c00446{bottom:717.120000px;}
.y17_c00446{bottom:737.820000px;}
.y48_c00446{bottom:748.170000px;}
.y16_c00446{bottom:758.520000px;}
.y45_c00446{bottom:778.320000px;}
.y15_c00446{bottom:779.220000px;}
.y14_c00446{bottom:799.920000px;}
.y43_c00446{bottom:816.300000px;}
.y13_c00446{bottom:820.620000px;}
.y42_c00446{bottom:832.320000px;}
.y12_c00446{bottom:841.230000px;}
.y41_c00446{bottom:855.900000px;}
.y11_c00446{bottom:861.930000px;}
.y40_c00446{bottom:878.400000px;}
.y10_c00446{bottom:882.630000px;}
.y3f_c00446{bottom:900.900000px;}
.yf_c00446{bottom:903.330000px;}
.y3e_c00446{bottom:923.400000px;}
.ye_c00446{bottom:924.030000px;}
.yd_c00446{bottom:944.730000px;}
.y3d_c00446{bottom:945.900000px;}
.yc_c00446{bottom:965.430000px;}
.y3c_c00446{bottom:968.400000px;}
.yb_c00446{bottom:986.130000px;}
.y3b_c00446{bottom:990.900000px;}
.ya_c00446{bottom:1006.830000px;}
.y38_c00446{bottom:1016.820000px;}
.y9_c00446{bottom:1027.530000px;}
.y37_c00446{bottom:1039.590000px;}
.y8_c00446{bottom:1048.230000px;}
.y7_c00446{bottom:1068.930000px;}
.y35_c00446{bottom:1075.950000px;}
.y6_c00446{bottom:1110.330000px;}
.y5_c00446{bottom:1131.030000px;}
.y4_c00446{bottom:1150.920000px;}
.y3_c00446{bottom:1166.404500px;}
.y2_c00446{bottom:1181.970000px;}
.y1_c00446{bottom:1197.450000px;}
.hd_c00446{height:13.770000px;}
.h12_c00446{height:16.200000px;}
.hb_c00446{height:22.498500px;}
.ha_c00446{height:22.500000px;}
.hc_c00446{height:23.580000px;}
.h9_c00446{height:23.670000px;}
.h5_c00446{height:30.150000px;}
.h11_c00446{height:37.890000px;}
.hf_c00446{height:37.981500px;}
.he_c00446{height:46.991602px;}
.h3_c00446{height:52.971680px;}
.h2_c00446{height:52.998047px;}
.h8_c00446{height:56.880000px;}
.h10_c00446{height:56.970000px;}
.h7_c00446{height:64.657617px;}
.h4_c00446{height:70.664062px;}
.h6_c00446{height:96.870938px;}
.h0_c00446{height:1262.880000px;}
.h1_c00446{height:1263.000000px;}
.w5_c00446{width:104.580000px;}
.w4_c00446{width:104.940000px;}
.w8_c00446{width:105.750000px;}
.w9_c00446{width:105.751500px;}
.w6_c00446{width:342.718500px;}
.w7_c00446{width:345.060000px;}
.w3_c00446{width:556.560000px;}
.w2_c00446{width:893.031000px;}
.w0_c00446{width:893.070000px;}
.w1_c00446{width:893.250000px;}
.x0_c00446{left:0.000000px;}
.x11_c00446{left:4.140000px;}
.x18_c00446{left:5.310000px;}
.xc_c00446{left:17.100000px;}
.x17_c00446{left:30.240000px;}
.xe_c00446{left:35.820000px;}
.xa_c00446{left:39.060000px;}
.x15_c00446{left:42.660000px;}
.x14_c00446{left:44.100000px;}
.x13_c00446{left:49.590000px;}
.x1b_c00446{left:52.290000px;}
.x12_c00446{left:54.990000px;}
.x16_c00446{left:57.780000px;}
.x6_c00446{left:122.310000px;}
.x10_c00446{left:123.480000px;}
.x3_c00446{left:127.620000px;}
.x1a_c00446{left:129.960000px;}
.x19_c00446{left:132.570000px;}
.x7_c00446{left:144.630000px;}
.x8_c00446{left:263.250000px;}
.x2_c00446{left:425.160000px;}
.x1_c00446{left:446.580000px;}
.x9_c00446{left:467.370000px;}
.xb_c00446{left:478.530000px;}
.xd_c00446{left:573.120000px;}
.xf_c00446{left:584.280000px;}
.x4_c00446{left:690.570000px;}
.x1c_c00446{left:738.540000px;}
.x5_c00446{left:906.570000px;}
@media print{
.v1_c00446{vertical-align:-73.600000pt;}
.v0_c00446{vertical-align:0.000000pt;}
.ls5_c00446{letter-spacing:-0.170880pt;}
.ls4_c00446{letter-spacing:-0.096000pt;}
.ls6_c00446{letter-spacing:-0.058560pt;}
.ls3_c00446{letter-spacing:0.000000pt;}
.ls2_c00446{letter-spacing:0.019520pt;}
.ls7_c00446{letter-spacing:0.058560pt;}
.ls1_c00446{letter-spacing:0.175680pt;}
.ls0_c00446{letter-spacing:1985.600000pt;}
.ws4_c00446{word-spacing:-21.189120pt;}
.ws0_c00446{word-spacing:-14.815680pt;}
.ws1_c00446{word-spacing:-14.640000pt;}
.ws2_c00446{word-spacing:-14.581440pt;}
.ws3_c00446{word-spacing:-10.640000pt;}
.wsb_c00446{word-spacing:-0.175680pt;}
.ws8_c00446{word-spacing:-0.085440pt;}
.wsc_c00446{word-spacing:-0.085120pt;}
.ws5_c00446{word-spacing:0.000000pt;}
.ws9_c00446{word-spacing:0.058560pt;}
.wsa_c00446{word-spacing:0.117120pt;}
.ws7_c00446{word-spacing:0.144000pt;}
.ws6_c00446{word-spacing:0.240000pt;}
._1_c00446{margin-left:-0.940800pt;}
._0_c00446{width:1.084800pt;}
.fs4_c00446{font-size:42.560000pt;}
.fs0_c00446{font-size:48.000000pt;}
.fs3_c00446{font-size:58.560000pt;}
.fs1_c00446{font-size:64.000000pt;}
.fs2_c00446{font-size:85.440000pt;}
.y47_c00446{bottom:-13.520000pt;}
.y0_c00446{bottom:0.000000pt;}
.y44_c00446{bottom:2.560000pt;}
.y57_c00446{bottom:3.280000pt;}
.y3a_c00446{bottom:3.360000pt;}
.y59_c00446{bottom:4.640000pt;}
.y36_c00446{bottom:4.720000pt;}
.y56_c00446{bottom:20.160000pt;}
.y46_c00446{bottom:20.240000pt;}
.y39_c00446{bottom:37.040000pt;}
.y4b_c00446{bottom:37.120000pt;}
.y65_c00446{bottom:50.880000pt;}
.y34_c00446{bottom:122.240000pt;}
.y64_c00446{bottom:126.240000pt;}
.y33_c00446{bottom:140.640000pt;}
.y63_c00446{bottom:157.040000pt;}
.y32_c00446{bottom:159.040000pt;}
.y31_c00446{bottom:177.440000pt;}
.y62_c00446{bottom:178.080000pt;}
.y30_c00446{bottom:195.840000pt;}
.y61_c00446{bottom:198.080000pt;}
.y2f_c00446{bottom:214.240000pt;}
.y60_c00446{bottom:218.080000pt;}
.y2e_c00446{bottom:232.640000pt;}
.y5f_c00446{bottom:238.080000pt;}
.y2d_c00446{bottom:251.040000pt;}
.y5e_c00446{bottom:258.080000pt;}
.y2c_c00446{bottom:269.440000pt;}
.y5d_c00446{bottom:278.080000pt;}
.y2b_c00446{bottom:287.840000pt;}
.y5c_c00446{bottom:298.080000pt;}
.y2a_c00446{bottom:306.240000pt;}
.y5b_c00446{bottom:321.040000pt;}
.y29_c00446{bottom:324.640000pt;}
.y5a_c00446{bottom:341.280000pt;}
.y28_c00446{bottom:343.040000pt;}
.y27_c00446{bottom:361.440000pt;}
.y58_c00446{bottom:373.680000pt;}
.y26_c00446{bottom:379.840000pt;}
.y25_c00446{bottom:398.240000pt;}
.y55_c00446{bottom:400.480000pt;}
.y24_c00446{bottom:416.640000pt;}
.y54_c00446{bottom:434.160000pt;}
.y23_c00446{bottom:435.040000pt;}
.y53_c00446{bottom:448.400000pt;}
.y22_c00446{bottom:453.440000pt;}
.y52_c00446{bottom:469.440000pt;}
.y21_c00446{bottom:471.840000pt;}
.y51_c00446{bottom:489.440000pt;}
.y20_c00446{bottom:490.240000pt;}
.y1f_c00446{bottom:508.640000pt;}
.y50_c00446{bottom:509.440000pt;}
.y1e_c00446{bottom:527.040000pt;}
.y4f_c00446{bottom:529.440000pt;}
.y1d_c00446{bottom:545.440000pt;}
.y4e_c00446{bottom:549.440000pt;}
.y1c_c00446{bottom:563.840000pt;}
.y4d_c00446{bottom:569.440000pt;}
.y1b_c00446{bottom:582.240000pt;}
.y4c_c00446{bottom:589.440000pt;}
.y1a_c00446{bottom:600.640000pt;}
.y4a_c00446{bottom:612.400000pt;}
.y19_c00446{bottom:619.040000pt;}
.y49_c00446{bottom:632.640000pt;}
.y18_c00446{bottom:637.440000pt;}
.y17_c00446{bottom:655.840000pt;}
.y48_c00446{bottom:665.040000pt;}
.y16_c00446{bottom:674.240000pt;}
.y45_c00446{bottom:691.840000pt;}
.y15_c00446{bottom:692.640000pt;}
.y14_c00446{bottom:711.040000pt;}
.y43_c00446{bottom:725.600000pt;}
.y13_c00446{bottom:729.440000pt;}
.y42_c00446{bottom:739.840000pt;}
.y12_c00446{bottom:747.760000pt;}
.y41_c00446{bottom:760.800000pt;}
.y11_c00446{bottom:766.160000pt;}
.y40_c00446{bottom:780.800000pt;}
.y10_c00446{bottom:784.560000pt;}
.y3f_c00446{bottom:800.800000pt;}
.yf_c00446{bottom:802.960000pt;}
.y3e_c00446{bottom:820.800000pt;}
.ye_c00446{bottom:821.360000pt;}
.yd_c00446{bottom:839.760000pt;}
.y3d_c00446{bottom:840.800000pt;}
.yc_c00446{bottom:858.160000pt;}
.y3c_c00446{bottom:860.800000pt;}
.yb_c00446{bottom:876.560000pt;}
.y3b_c00446{bottom:880.800000pt;}
.ya_c00446{bottom:894.960000pt;}
.y38_c00446{bottom:903.840000pt;}
.y9_c00446{bottom:913.360000pt;}
.y37_c00446{bottom:924.080000pt;}
.y8_c00446{bottom:931.760000pt;}
.y7_c00446{bottom:950.160000pt;}
.y35_c00446{bottom:956.400000pt;}
.y6_c00446{bottom:986.960000pt;}
.y5_c00446{bottom:1005.360000pt;}
.y4_c00446{bottom:1023.040000pt;}
.y3_c00446{bottom:1036.804000pt;}
.y2_c00446{bottom:1050.640000pt;}
.y1_c00446{bottom:1064.400000pt;}
.hd_c00446{height:12.240000pt;}
.h12_c00446{height:14.400000pt;}
.hb_c00446{height:19.998667pt;}
.ha_c00446{height:20.000000pt;}
.hc_c00446{height:20.960000pt;}
.h9_c00446{height:21.040000pt;}
.h5_c00446{height:26.800000pt;}
.h11_c00446{height:33.680000pt;}
.hf_c00446{height:33.761333pt;}
.he_c00446{height:41.770312pt;}
.h3_c00446{height:47.085938pt;}
.h2_c00446{height:47.109375pt;}
.h8_c00446{height:50.560000pt;}
.h10_c00446{height:50.640000pt;}
.h7_c00446{height:57.473437pt;}
.h4_c00446{height:62.812500pt;}
.h6_c00446{height:86.107500pt;}
.h0_c00446{height:1122.560000pt;}
.h1_c00446{height:1122.666667pt;}
.w5_c00446{width:92.960000pt;}
.w4_c00446{width:93.280000pt;}
.w8_c00446{width:94.000000pt;}
.w9_c00446{width:94.001333pt;}
.w6_c00446{width:304.638667pt;}
.w7_c00446{width:306.720000pt;}
.w3_c00446{width:494.720000pt;}
.w2_c00446{width:793.805333pt;}
.w0_c00446{width:793.840000pt;}
.w1_c00446{width:794.000000pt;}
.x0_c00446{left:0.000000pt;}
.x11_c00446{left:3.680000pt;}
.x18_c00446{left:4.720000pt;}
.xc_c00446{left:15.200000pt;}
.x17_c00446{left:26.880000pt;}
.xe_c00446{left:31.840000pt;}
.xa_c00446{left:34.720000pt;}
.x15_c00446{left:37.920000pt;}
.x14_c00446{left:39.200000pt;}
.x13_c00446{left:44.080000pt;}
.x1b_c00446{left:46.480000pt;}
.x12_c00446{left:48.880000pt;}
.x16_c00446{left:51.360000pt;}
.x6_c00446{left:108.720000pt;}
.x10_c00446{left:109.760000pt;}
.x3_c00446{left:113.440000pt;}
.x1a_c00446{left:115.520000pt;}
.x19_c00446{left:117.840000pt;}
.x7_c00446{left:128.560000pt;}
.x8_c00446{left:234.000000pt;}
.x2_c00446{left:377.920000pt;}
.x1_c00446{left:396.960000pt;}
.x9_c00446{left:415.440000pt;}
.xb_c00446{left:425.360000pt;}
.xd_c00446{left:509.440000pt;}
.xf_c00446{left:519.360000pt;}
.x4_c00446{left:613.840000pt;}
.x1c_c00446{left:656.480000pt;}
.x5_c00446{left:805.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_c00447 {
    display:none;
  }
  .loading-indicator_c00447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00447 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00447 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00447" -> "#page-container .classname_c00447")
 */
.pf_c00447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00447 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00447 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00447 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00447 {overflow:visible;}
  }
}
.c_c00447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00447 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00447:after { /* webkit #35443 */
  content: '';
}
.t_c00447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00447 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00447 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00447 { /* info for Javascript */
  display:none;
}
.l_c00447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00447:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00447;src:url('chunks/assets/font_ad428c0492b92a744147f96d.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_743f677f0d32eabbf05b8725.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00447{vertical-align:-82.800000px;}
.v1_c00447{vertical-align:-61.938000px;}
.v0_c00447{vertical-align:0.000000px;}
.ls5_c00447{letter-spacing:-0.192240px;}
.ls6_c00447{letter-spacing:-0.065880px;}
.ls4_c00447{letter-spacing:0.000000px;}
.ls3_c00447{letter-spacing:0.021960px;}
.ls7_c00447{letter-spacing:0.065880px;}
.ls8_c00447{letter-spacing:0.192240px;}
.ls2_c00447{letter-spacing:0.197640px;}
.ls0_c00447{letter-spacing:319.518000px;}
.ls1_c00447{letter-spacing:2233.800000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:-16.667640px;}
.ws1_c00447{word-spacing:-16.470000px;}
.ws2_c00447{word-spacing:-16.404120px;}
.ws3_c00447{word-spacing:-11.970000px;}
.wsb_c00447{word-spacing:-0.480600px;}
.ws9_c00447{word-spacing:-0.197640px;}
.ws5_c00447{word-spacing:-0.162000px;}
.ws6_c00447{word-spacing:-0.096120px;}
.wsa_c00447{word-spacing:-0.095760px;}
.ws4_c00447{word-spacing:0.000000px;}
.ws7_c00447{word-spacing:0.065880px;}
.ws8_c00447{word-spacing:0.131760px;}
._1_c00447{margin-left:-1.199160px;}
._0_c00447{width:1.239948px;}
.fc1_c00447{color:transparent;}
.fc0_c00447{color:rgb(0,0,0);}
.fs4_c00447{font-size:47.880000px;}
.fs0_c00447{font-size:54.000000px;}
.fs3_c00447{font-size:65.880000px;}
.fs1_c00447{font-size:72.000000px;}
.fs2_c00447{font-size:96.120000px;}
.y46_c00447{bottom:-15.210000px;}
.y0_c00447{bottom:0.000000px;}
.y43_c00447{bottom:2.880000px;}
.y39_c00447{bottom:3.780000px;}
.y35_c00447{bottom:5.310000px;}
.y45_c00447{bottom:22.770000px;}
.y38_c00447{bottom:41.670000px;}
.y4a_c00447{bottom:41.760000px;}
.y62_c00447{bottom:57.240000px;}
.y33_c00447{bottom:137.520000px;}
.y61_c00447{bottom:140.850000px;}
.y60_c00447{bottom:157.050000px;}
.y32_c00447{bottom:158.220000px;}
.y5f_c00447{bottom:175.500000px;}
.y31_c00447{bottom:178.920000px;}
.y5e_c00447{bottom:199.080000px;}
.y30_c00447{bottom:199.620000px;}
.y2f_c00447{bottom:220.320000px;}
.y5d_c00447{bottom:221.580000px;}
.y2e_c00447{bottom:241.020000px;}
.y5c_c00447{bottom:244.080000px;}
.y2d_c00447{bottom:261.720000px;}
.y5b_c00447{bottom:266.580000px;}
.y2c_c00447{bottom:282.420000px;}
.y5a_c00447{bottom:289.080000px;}
.y2b_c00447{bottom:303.120000px;}
.y59_c00447{bottom:311.580000px;}
.y2a_c00447{bottom:323.820000px;}
.y58_c00447{bottom:334.080000px;}
.y29_c00447{bottom:344.520000px;}
.y57_c00447{bottom:360.000000px;}
.y28_c00447{bottom:365.220000px;}
.y56_c00447{bottom:382.680000px;}
.y27_c00447{bottom:385.920000px;}
.y26_c00447{bottom:406.620000px;}
.y55_c00447{bottom:419.130000px;}
.y25_c00447{bottom:427.320000px;}
.y24_c00447{bottom:448.020000px;}
.y54_c00447{bottom:449.280000px;}
.y23_c00447{bottom:468.720000px;}
.y53_c00447{bottom:487.260000px;}
.y22_c00447{bottom:489.420000px;}
.y52_c00447{bottom:504.450000px;}
.y21_c00447{bottom:510.120000px;}
.y51_c00447{bottom:528.120000px;}
.y20_c00447{bottom:530.820000px;}
.y50_c00447{bottom:550.620000px;}
.y1f_c00447{bottom:551.520000px;}
.y1e_c00447{bottom:572.220000px;}
.y4f_c00447{bottom:573.120000px;}
.y1d_c00447{bottom:592.920000px;}
.y4e_c00447{bottom:595.620000px;}
.y1c_c00447{bottom:613.620000px;}
.y4d_c00447{bottom:618.120000px;}
.y1b_c00447{bottom:634.320000px;}
.y4c_c00447{bottom:640.620000px;}
.y1a_c00447{bottom:655.020000px;}
.y4b_c00447{bottom:663.120000px;}
.y19_c00447{bottom:675.720000px;}
.y49_c00447{bottom:688.950000px;}
.y18_c00447{bottom:696.420000px;}
.y48_c00447{bottom:711.720000px;}
.y17_c00447{bottom:717.120000px;}
.y16_c00447{bottom:737.820000px;}
.y47_c00447{bottom:748.170000px;}
.y15_c00447{bottom:758.520000px;}
.y44_c00447{bottom:778.320000px;}
.y14_c00447{bottom:779.220000px;}
.y13_c00447{bottom:799.920000px;}
.y42_c00447{bottom:816.300000px;}
.y12_c00447{bottom:820.620000px;}
.y41_c00447{bottom:832.320000px;}
.y11_c00447{bottom:841.230000px;}
.y40_c00447{bottom:855.900000px;}
.y10_c00447{bottom:861.930000px;}
.y3f_c00447{bottom:878.400000px;}
.yf_c00447{bottom:882.630000px;}
.y3e_c00447{bottom:900.900000px;}
.ye_c00447{bottom:903.330000px;}
.y3d_c00447{bottom:923.400000px;}
.yd_c00447{bottom:924.030000px;}
.yc_c00447{bottom:944.730000px;}
.y3c_c00447{bottom:945.900000px;}
.yb_c00447{bottom:965.430000px;}
.y3b_c00447{bottom:968.400000px;}
.ya_c00447{bottom:986.130000px;}
.y3a_c00447{bottom:990.900000px;}
.y9_c00447{bottom:1006.830000px;}
.y37_c00447{bottom:1016.820000px;}
.y8_c00447{bottom:1027.530000px;}
.y36_c00447{bottom:1039.590000px;}
.y7_c00447{bottom:1048.230000px;}
.y6_c00447{bottom:1068.930000px;}
.y34_c00447{bottom:1075.950000px;}
.y5_c00447{bottom:1110.330000px;}
.y4_c00447{bottom:1131.030000px;}
.y3_c00447{bottom:1150.915500px;}
.y2_c00447{bottom:1166.400000px;}
.y1_c00447{bottom:1197.450000px;}
.hc_c00447{height:13.770000px;}
.h10_c00447{height:14.940000px;}
.h12_c00447{height:16.200000px;}
.ha_c00447{height:22.498500px;}
.h9_c00447{height:22.500000px;}
.hb_c00447{height:23.580000px;}
.h8_c00447{height:23.670000px;}
.h4_c00447{height:30.150000px;}
.h11_c00447{height:37.980000px;}
.he_c00447{height:37.981500px;}
.hd_c00447{height:46.991602px;}
.h2_c00447{height:52.998047px;}
.h7_c00447{height:56.880000px;}
.hf_c00447{height:56.970000px;}
.h6_c00447{height:64.657617px;}
.h3_c00447{height:70.664062px;}
.h5_c00447{height:96.870938px;}
.h0_c00447{height:1262.880000px;}
.h1_c00447{height:1263.000000px;}
.w5_c00447{width:104.580000px;}
.w4_c00447{width:104.940000px;}
.w8_c00447{width:105.750000px;}
.w9_c00447{width:105.751500px;}
.w6_c00447{width:342.718500px;}
.w7_c00447{width:345.060000px;}
.w3_c00447{width:556.560000px;}
.w2_c00447{width:893.031000px;}
.w0_c00447{width:893.070000px;}
.w1_c00447{width:893.250000px;}
.x0_c00447{left:0.000000px;}
.x10_c00447{left:4.140000px;}
.x18_c00447{left:5.310000px;}
.xb_c00447{left:17.100000px;}
.x1a_c00447{left:22.140000px;}
.x16_c00447{left:30.240000px;}
.xd_c00447{left:35.820000px;}
.x9_c00447{left:39.060000px;}
.x12_c00447{left:41.310000px;}
.x11_c00447{left:42.660000px;}
.x1c_c00447{left:44.100000px;}
.x13_c00447{left:49.590000px;}
.x17_c00447{left:52.290000px;}
.x14_c00447{left:55.080000px;}
.x15_c00447{left:57.780000px;}
.x19_c00447{left:73.350000px;}
.x5_c00447{left:122.310000px;}
.xf_c00447{left:123.480000px;}
.x2_c00447{left:127.620000px;}
.x1b_c00447{left:140.940000px;}
.x6_c00447{left:149.940000px;}
.x7_c00447{left:263.250000px;}
.x1_c00447{left:446.580000px;}
.x8_c00447{left:467.370000px;}
.xa_c00447{left:478.530000px;}
.xc_c00447{left:573.120000px;}
.xe_c00447{left:584.280000px;}
.x3_c00447{left:690.570000px;}
.x4_c00447{left:906.570000px;}
@media print{
.v2_c00447{vertical-align:-73.600000pt;}
.v1_c00447{vertical-align:-55.056000pt;}
.v0_c00447{vertical-align:0.000000pt;}
.ls5_c00447{letter-spacing:-0.170880pt;}
.ls6_c00447{letter-spacing:-0.058560pt;}
.ls4_c00447{letter-spacing:0.000000pt;}
.ls3_c00447{letter-spacing:0.019520pt;}
.ls7_c00447{letter-spacing:0.058560pt;}
.ls8_c00447{letter-spacing:0.170880pt;}
.ls2_c00447{letter-spacing:0.175680pt;}
.ls0_c00447{letter-spacing:284.016000pt;}
.ls1_c00447{letter-spacing:1985.600000pt;}
.ws0_c00447{word-spacing:-14.815680pt;}
.ws1_c00447{word-spacing:-14.640000pt;}
.ws2_c00447{word-spacing:-14.581440pt;}
.ws3_c00447{word-spacing:-10.640000pt;}
.wsb_c00447{word-spacing:-0.427200pt;}
.ws9_c00447{word-spacing:-0.175680pt;}
.ws5_c00447{word-spacing:-0.144000pt;}
.ws6_c00447{word-spacing:-0.085440pt;}
.wsa_c00447{word-spacing:-0.085120pt;}
.ws4_c00447{word-spacing:0.000000pt;}
.ws7_c00447{word-spacing:0.058560pt;}
.ws8_c00447{word-spacing:0.117120pt;}
._1_c00447{margin-left:-1.065920pt;}
._0_c00447{width:1.102176pt;}
.fs4_c00447{font-size:42.560000pt;}
.fs0_c00447{font-size:48.000000pt;}
.fs3_c00447{font-size:58.560000pt;}
.fs1_c00447{font-size:64.000000pt;}
.fs2_c00447{font-size:85.440000pt;}
.y46_c00447{bottom:-13.520000pt;}
.y0_c00447{bottom:0.000000pt;}
.y43_c00447{bottom:2.560000pt;}
.y39_c00447{bottom:3.360000pt;}
.y35_c00447{bottom:4.720000pt;}
.y45_c00447{bottom:20.240000pt;}
.y38_c00447{bottom:37.040000pt;}
.y4a_c00447{bottom:37.120000pt;}
.y62_c00447{bottom:50.880000pt;}
.y33_c00447{bottom:122.240000pt;}
.y61_c00447{bottom:125.200000pt;}
.y60_c00447{bottom:139.600000pt;}
.y32_c00447{bottom:140.640000pt;}
.y5f_c00447{bottom:156.000000pt;}
.y31_c00447{bottom:159.040000pt;}
.y5e_c00447{bottom:176.960000pt;}
.y30_c00447{bottom:177.440000pt;}
.y2f_c00447{bottom:195.840000pt;}
.y5d_c00447{bottom:196.960000pt;}
.y2e_c00447{bottom:214.240000pt;}
.y5c_c00447{bottom:216.960000pt;}
.y2d_c00447{bottom:232.640000pt;}
.y5b_c00447{bottom:236.960000pt;}
.y2c_c00447{bottom:251.040000pt;}
.y5a_c00447{bottom:256.960000pt;}
.y2b_c00447{bottom:269.440000pt;}
.y59_c00447{bottom:276.960000pt;}
.y2a_c00447{bottom:287.840000pt;}
.y58_c00447{bottom:296.960000pt;}
.y29_c00447{bottom:306.240000pt;}
.y57_c00447{bottom:320.000000pt;}
.y28_c00447{bottom:324.640000pt;}
.y56_c00447{bottom:340.160000pt;}
.y27_c00447{bottom:343.040000pt;}
.y26_c00447{bottom:361.440000pt;}
.y55_c00447{bottom:372.560000pt;}
.y25_c00447{bottom:379.840000pt;}
.y24_c00447{bottom:398.240000pt;}
.y54_c00447{bottom:399.360000pt;}
.y23_c00447{bottom:416.640000pt;}
.y53_c00447{bottom:433.120000pt;}
.y22_c00447{bottom:435.040000pt;}
.y52_c00447{bottom:448.400000pt;}
.y21_c00447{bottom:453.440000pt;}
.y51_c00447{bottom:469.440000pt;}
.y20_c00447{bottom:471.840000pt;}
.y50_c00447{bottom:489.440000pt;}
.y1f_c00447{bottom:490.240000pt;}
.y1e_c00447{bottom:508.640000pt;}
.y4f_c00447{bottom:509.440000pt;}
.y1d_c00447{bottom:527.040000pt;}
.y4e_c00447{bottom:529.440000pt;}
.y1c_c00447{bottom:545.440000pt;}
.y4d_c00447{bottom:549.440000pt;}
.y1b_c00447{bottom:563.840000pt;}
.y4c_c00447{bottom:569.440000pt;}
.y1a_c00447{bottom:582.240000pt;}
.y4b_c00447{bottom:589.440000pt;}
.y19_c00447{bottom:600.640000pt;}
.y49_c00447{bottom:612.400000pt;}
.y18_c00447{bottom:619.040000pt;}
.y48_c00447{bottom:632.640000pt;}
.y17_c00447{bottom:637.440000pt;}
.y16_c00447{bottom:655.840000pt;}
.y47_c00447{bottom:665.040000pt;}
.y15_c00447{bottom:674.240000pt;}
.y44_c00447{bottom:691.840000pt;}
.y14_c00447{bottom:692.640000pt;}
.y13_c00447{bottom:711.040000pt;}
.y42_c00447{bottom:725.600000pt;}
.y12_c00447{bottom:729.440000pt;}
.y41_c00447{bottom:739.840000pt;}
.y11_c00447{bottom:747.760000pt;}
.y40_c00447{bottom:760.800000pt;}
.y10_c00447{bottom:766.160000pt;}
.y3f_c00447{bottom:780.800000pt;}
.yf_c00447{bottom:784.560000pt;}
.y3e_c00447{bottom:800.800000pt;}
.ye_c00447{bottom:802.960000pt;}
.y3d_c00447{bottom:820.800000pt;}
.yd_c00447{bottom:821.360000pt;}
.yc_c00447{bottom:839.760000pt;}
.y3c_c00447{bottom:840.800000pt;}
.yb_c00447{bottom:858.160000pt;}
.y3b_c00447{bottom:860.800000pt;}
.ya_c00447{bottom:876.560000pt;}
.y3a_c00447{bottom:880.800000pt;}
.y9_c00447{bottom:894.960000pt;}
.y37_c00447{bottom:903.840000pt;}
.y8_c00447{bottom:913.360000pt;}
.y36_c00447{bottom:924.080000pt;}
.y7_c00447{bottom:931.760000pt;}
.y6_c00447{bottom:950.160000pt;}
.y34_c00447{bottom:956.400000pt;}
.y5_c00447{bottom:986.960000pt;}
.y4_c00447{bottom:1005.360000pt;}
.y3_c00447{bottom:1023.036000pt;}
.y2_c00447{bottom:1036.800000pt;}
.y1_c00447{bottom:1064.400000pt;}
.hc_c00447{height:12.240000pt;}
.h10_c00447{height:13.280000pt;}
.h12_c00447{height:14.400000pt;}
.ha_c00447{height:19.998667pt;}
.h9_c00447{height:20.000000pt;}
.hb_c00447{height:20.960000pt;}
.h8_c00447{height:21.040000pt;}
.h4_c00447{height:26.800000pt;}
.h11_c00447{height:33.760000pt;}
.he_c00447{height:33.761333pt;}
.hd_c00447{height:41.770312pt;}
.h2_c00447{height:47.109375pt;}
.h7_c00447{height:50.560000pt;}
.hf_c00447{height:50.640000pt;}
.h6_c00447{height:57.473437pt;}
.h3_c00447{height:62.812500pt;}
.h5_c00447{height:86.107500pt;}
.h0_c00447{height:1122.560000pt;}
.h1_c00447{height:1122.666667pt;}
.w5_c00447{width:92.960000pt;}
.w4_c00447{width:93.280000pt;}
.w8_c00447{width:94.000000pt;}
.w9_c00447{width:94.001333pt;}
.w6_c00447{width:304.638667pt;}
.w7_c00447{width:306.720000pt;}
.w3_c00447{width:494.720000pt;}
.w2_c00447{width:793.805333pt;}
.w0_c00447{width:793.840000pt;}
.w1_c00447{width:794.000000pt;}
.x0_c00447{left:0.000000pt;}
.x10_c00447{left:3.680000pt;}
.x18_c00447{left:4.720000pt;}
.xb_c00447{left:15.200000pt;}
.x1a_c00447{left:19.680000pt;}
.x16_c00447{left:26.880000pt;}
.xd_c00447{left:31.840000pt;}
.x9_c00447{left:34.720000pt;}
.x12_c00447{left:36.720000pt;}
.x11_c00447{left:37.920000pt;}
.x1c_c00447{left:39.200000pt;}
.x13_c00447{left:44.080000pt;}
.x17_c00447{left:46.480000pt;}
.x14_c00447{left:48.960000pt;}
.x15_c00447{left:51.360000pt;}
.x19_c00447{left:65.200000pt;}
.x5_c00447{left:108.720000pt;}
.xf_c00447{left:109.760000pt;}
.x2_c00447{left:113.440000pt;}
.x1b_c00447{left:125.280000pt;}
.x6_c00447{left:133.280000pt;}
.x7_c00447{left:234.000000pt;}
.x1_c00447{left:396.960000pt;}
.x8_c00447{left:415.440000pt;}
.xa_c00447{left:425.360000pt;}
.xc_c00447{left:509.440000pt;}
.xe_c00447{left:519.360000pt;}
.x3_c00447{left:613.840000pt;}
.x4_c00447{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_275b75aceafb48fcebb48d7a.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00448{vertical-align:-82.800000px;}
.v0_c00448{vertical-align:0.000000px;}
.ls5_c00448{letter-spacing:-0.192240px;}
.ls4_c00448{letter-spacing:-0.108000px;}
.ls6_c00448{letter-spacing:-0.065880px;}
.ls3_c00448{letter-spacing:0.000000px;}
.ls2_c00448{letter-spacing:0.021960px;}
.ls7_c00448{letter-spacing:0.065880px;}
.ls1_c00448{letter-spacing:0.197640px;}
.ls0_c00448{letter-spacing:2233.800000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-16.667640px;}
.ws1_c00448{word-spacing:-16.470000px;}
.ws2_c00448{word-spacing:-16.404120px;}
.ws3_c00448{word-spacing:-11.970000px;}
.wsa_c00448{word-spacing:-0.197640px;}
.ws7_c00448{word-spacing:-0.096120px;}
.wsb_c00448{word-spacing:-0.095760px;}
.ws4_c00448{word-spacing:0.000000px;}
.ws8_c00448{word-spacing:0.065880px;}
.ws9_c00448{word-spacing:0.131760px;}
.ws6_c00448{word-spacing:0.162000px;}
.ws5_c00448{word-spacing:0.270000px;}
._1_c00448{margin-left:-1.058400px;}
._0_c00448{width:1.220400px;}
.fc1_c00448{color:transparent;}
.fc0_c00448{color:rgb(0,0,0);}
.fs4_c00448{font-size:47.880000px;}
.fs0_c00448{font-size:54.000000px;}
.fs3_c00448{font-size:65.880000px;}
.fs1_c00448{font-size:72.000000px;}
.fs2_c00448{font-size:96.120000px;}
.y47_c00448{bottom:-15.210000px;}
.y0_c00448{bottom:0.000000px;}
.y44_c00448{bottom:2.880000px;}
.y55_c00448{bottom:2.970000px;}
.y3a_c00448{bottom:3.780000px;}
.y59_c00448{bottom:5.220000px;}
.y36_c00448{bottom:5.310000px;}
.y57_c00448{bottom:22.680000px;}
.y46_c00448{bottom:22.770000px;}
.y39_c00448{bottom:41.670000px;}
.y4b_c00448{bottom:41.760000px;}
.y66_c00448{bottom:57.240000px;}
.y34_c00448{bottom:137.520000px;}
.y65_c00448{bottom:138.690000px;}
.y64_c00448{bottom:154.890000px;}
.y33_c00448{bottom:158.220000px;}
.y63_c00448{bottom:173.340000px;}
.y32_c00448{bottom:178.920000px;}
.y62_c00448{bottom:197.010000px;}
.y31_c00448{bottom:199.620000px;}
.y61_c00448{bottom:219.510000px;}
.y30_c00448{bottom:220.320000px;}
.y2f_c00448{bottom:241.020000px;}
.y60_c00448{bottom:242.010000px;}
.y2e_c00448{bottom:261.720000px;}
.y5f_c00448{bottom:264.510000px;}
.y2d_c00448{bottom:282.420000px;}
.y5e_c00448{bottom:287.010000px;}
.y2c_c00448{bottom:303.120000px;}
.y5d_c00448{bottom:309.510000px;}
.y2b_c00448{bottom:323.820000px;}
.y5c_c00448{bottom:332.010000px;}
.y2a_c00448{bottom:344.520000px;}
.y5b_c00448{bottom:357.840000px;}
.y29_c00448{bottom:365.220000px;}
.y5a_c00448{bottom:380.610000px;}
.y28_c00448{bottom:385.920000px;}
.y27_c00448{bottom:406.620000px;}
.y58_c00448{bottom:417.060000px;}
.y26_c00448{bottom:427.320000px;}
.y56_c00448{bottom:447.210000px;}
.y25_c00448{bottom:448.020000px;}
.y24_c00448{bottom:468.720000px;}
.y54_c00448{bottom:485.100000px;}
.y23_c00448{bottom:489.420000px;}
.y53_c00448{bottom:504.450000px;}
.y22_c00448{bottom:510.120000px;}
.y52_c00448{bottom:528.120000px;}
.y21_c00448{bottom:530.820000px;}
.y51_c00448{bottom:550.620000px;}
.y20_c00448{bottom:551.520000px;}
.y1f_c00448{bottom:572.220000px;}
.y50_c00448{bottom:573.120000px;}
.y1e_c00448{bottom:592.920000px;}
.y4f_c00448{bottom:595.620000px;}
.y1d_c00448{bottom:613.620000px;}
.y4e_c00448{bottom:618.120000px;}
.y1c_c00448{bottom:634.320000px;}
.y4d_c00448{bottom:640.620000px;}
.y1b_c00448{bottom:655.020000px;}
.y4c_c00448{bottom:663.120000px;}
.y1a_c00448{bottom:675.720000px;}
.y4a_c00448{bottom:688.950000px;}
.y19_c00448{bottom:696.420000px;}
.y49_c00448{bottom:711.720000px;}
.y18_c00448{bottom:717.120000px;}
.y17_c00448{bottom:737.820000px;}
.y48_c00448{bottom:748.170000px;}
.y16_c00448{bottom:758.520000px;}
.y45_c00448{bottom:778.320000px;}
.y15_c00448{bottom:779.220000px;}
.y14_c00448{bottom:799.920000px;}
.y43_c00448{bottom:816.300000px;}
.y13_c00448{bottom:820.620000px;}
.y42_c00448{bottom:832.320000px;}
.y12_c00448{bottom:841.230000px;}
.y41_c00448{bottom:855.900000px;}
.y11_c00448{bottom:861.930000px;}
.y40_c00448{bottom:878.400000px;}
.y10_c00448{bottom:882.630000px;}
.y3f_c00448{bottom:900.900000px;}
.yf_c00448{bottom:903.330000px;}
.y3e_c00448{bottom:923.400000px;}
.ye_c00448{bottom:924.030000px;}
.yd_c00448{bottom:944.730000px;}
.y3d_c00448{bottom:945.900000px;}
.yc_c00448{bottom:965.430000px;}
.y3c_c00448{bottom:968.400000px;}
.yb_c00448{bottom:986.130000px;}
.y3b_c00448{bottom:990.900000px;}
.ya_c00448{bottom:1006.830000px;}
.y38_c00448{bottom:1016.820000px;}
.y9_c00448{bottom:1027.530000px;}
.y37_c00448{bottom:1039.590000px;}
.y8_c00448{bottom:1048.230000px;}
.y7_c00448{bottom:1068.930000px;}
.y35_c00448{bottom:1075.950000px;}
.y6_c00448{bottom:1110.330000px;}
.y5_c00448{bottom:1131.030000px;}
.y4_c00448{bottom:1150.920000px;}
.y3_c00448{bottom:1166.404500px;}
.y2_c00448{bottom:1181.970000px;}
.y1_c00448{bottom:1197.450000px;}
.hd_c00448{height:13.770000px;}
.h14_c00448{height:16.200000px;}
.h11_c00448{height:17.100000px;}
.hb_c00448{height:22.498500px;}
.ha_c00448{height:22.500000px;}
.hc_c00448{height:23.580000px;}
.h9_c00448{height:23.670000px;}
.h5_c00448{height:30.150000px;}
.h13_c00448{height:30.151500px;}
.h12_c00448{height:37.888500px;}
.hf_c00448{height:37.981500px;}
.he_c00448{height:46.991602px;}
.h3_c00448{height:52.971680px;}
.h2_c00448{height:52.998047px;}
.h8_c00448{height:56.880000px;}
.h10_c00448{height:56.970000px;}
.h7_c00448{height:64.657617px;}
.h4_c00448{height:70.664062px;}
.h6_c00448{height:96.870938px;}
.h0_c00448{height:1262.880000px;}
.h1_c00448{height:1263.000000px;}
.w5_c00448{width:104.580000px;}
.w4_c00448{width:104.940000px;}
.w8_c00448{width:105.750000px;}
.w9_c00448{width:105.751500px;}
.w6_c00448{width:342.718500px;}
.w7_c00448{width:345.060000px;}
.w3_c00448{width:556.560000px;}
.w2_c00448{width:893.031000px;}
.w0_c00448{width:893.070000px;}
.w1_c00448{width:893.250000px;}
.x0_c00448{left:0.000000px;}
.x11_c00448{left:4.140000px;}
.x17_c00448{left:5.310000px;}
.xc_c00448{left:17.100000px;}
.x16_c00448{left:30.240000px;}
.xe_c00448{left:35.820000px;}
.xa_c00448{left:39.060000px;}
.x12_c00448{left:42.660000px;}
.x1a_c00448{left:44.100000px;}
.x14_c00448{left:49.590000px;}
.x13_c00448{left:52.290000px;}
.x19_c00448{left:54.990000px;}
.x15_c00448{left:57.780000px;}
.x1c_c00448{left:71.460000px;}
.x1b_c00448{left:106.650000px;}
.x6_c00448{left:122.310000px;}
.x10_c00448{left:123.480000px;}
.x3_c00448{left:127.620000px;}
.x18_c00448{left:139.590000px;}
.x7_c00448{left:148.590000px;}
.x8_c00448{left:263.250000px;}
.x2_c00448{left:425.160000px;}
.x1_c00448{left:446.580000px;}
.x9_c00448{left:467.370000px;}
.xb_c00448{left:478.530000px;}
.xd_c00448{left:573.120000px;}
.xf_c00448{left:584.280000px;}
.x4_c00448{left:690.570000px;}
.x1d_c00448{left:738.540000px;}
.x5_c00448{left:906.570000px;}
@media print{
.v1_c00448{vertical-align:-73.600000pt;}
.v0_c00448{vertical-align:0.000000pt;}
.ls5_c00448{letter-spacing:-0.170880pt;}
.ls4_c00448{letter-spacing:-0.096000pt;}
.ls6_c00448{letter-spacing:-0.058560pt;}
.ls3_c00448{letter-spacing:0.000000pt;}
.ls2_c00448{letter-spacing:0.019520pt;}
.ls7_c00448{letter-spacing:0.058560pt;}
.ls1_c00448{letter-spacing:0.175680pt;}
.ls0_c00448{letter-spacing:1985.600000pt;}
.ws0_c00448{word-spacing:-14.815680pt;}
.ws1_c00448{word-spacing:-14.640000pt;}
.ws2_c00448{word-spacing:-14.581440pt;}
.ws3_c00448{word-spacing:-10.640000pt;}
.wsa_c00448{word-spacing:-0.175680pt;}
.ws7_c00448{word-spacing:-0.085440pt;}
.wsb_c00448{word-spacing:-0.085120pt;}
.ws4_c00448{word-spacing:0.000000pt;}
.ws8_c00448{word-spacing:0.058560pt;}
.ws9_c00448{word-spacing:0.117120pt;}
.ws6_c00448{word-spacing:0.144000pt;}
.ws5_c00448{word-spacing:0.240000pt;}
._1_c00448{margin-left:-0.940800pt;}
._0_c00448{width:1.084800pt;}
.fs4_c00448{font-size:42.560000pt;}
.fs0_c00448{font-size:48.000000pt;}
.fs3_c00448{font-size:58.560000pt;}
.fs1_c00448{font-size:64.000000pt;}
.fs2_c00448{font-size:85.440000pt;}
.y47_c00448{bottom:-13.520000pt;}
.y0_c00448{bottom:0.000000pt;}
.y44_c00448{bottom:2.560000pt;}
.y55_c00448{bottom:2.640000pt;}
.y3a_c00448{bottom:3.360000pt;}
.y59_c00448{bottom:4.640000pt;}
.y36_c00448{bottom:4.720000pt;}
.y57_c00448{bottom:20.160000pt;}
.y46_c00448{bottom:20.240000pt;}
.y39_c00448{bottom:37.040000pt;}
.y4b_c00448{bottom:37.120000pt;}
.y66_c00448{bottom:50.880000pt;}
.y34_c00448{bottom:122.240000pt;}
.y65_c00448{bottom:123.280000pt;}
.y64_c00448{bottom:137.680000pt;}
.y33_c00448{bottom:140.640000pt;}
.y63_c00448{bottom:154.080000pt;}
.y32_c00448{bottom:159.040000pt;}
.y62_c00448{bottom:175.120000pt;}
.y31_c00448{bottom:177.440000pt;}
.y61_c00448{bottom:195.120000pt;}
.y30_c00448{bottom:195.840000pt;}
.y2f_c00448{bottom:214.240000pt;}
.y60_c00448{bottom:215.120000pt;}
.y2e_c00448{bottom:232.640000pt;}
.y5f_c00448{bottom:235.120000pt;}
.y2d_c00448{bottom:251.040000pt;}
.y5e_c00448{bottom:255.120000pt;}
.y2c_c00448{bottom:269.440000pt;}
.y5d_c00448{bottom:275.120000pt;}
.y2b_c00448{bottom:287.840000pt;}
.y5c_c00448{bottom:295.120000pt;}
.y2a_c00448{bottom:306.240000pt;}
.y5b_c00448{bottom:318.080000pt;}
.y29_c00448{bottom:324.640000pt;}
.y5a_c00448{bottom:338.320000pt;}
.y28_c00448{bottom:343.040000pt;}
.y27_c00448{bottom:361.440000pt;}
.y58_c00448{bottom:370.720000pt;}
.y26_c00448{bottom:379.840000pt;}
.y56_c00448{bottom:397.520000pt;}
.y25_c00448{bottom:398.240000pt;}
.y24_c00448{bottom:416.640000pt;}
.y54_c00448{bottom:431.200000pt;}
.y23_c00448{bottom:435.040000pt;}
.y53_c00448{bottom:448.400000pt;}
.y22_c00448{bottom:453.440000pt;}
.y52_c00448{bottom:469.440000pt;}
.y21_c00448{bottom:471.840000pt;}
.y51_c00448{bottom:489.440000pt;}
.y20_c00448{bottom:490.240000pt;}
.y1f_c00448{bottom:508.640000pt;}
.y50_c00448{bottom:509.440000pt;}
.y1e_c00448{bottom:527.040000pt;}
.y4f_c00448{bottom:529.440000pt;}
.y1d_c00448{bottom:545.440000pt;}
.y4e_c00448{bottom:549.440000pt;}
.y1c_c00448{bottom:563.840000pt;}
.y4d_c00448{bottom:569.440000pt;}
.y1b_c00448{bottom:582.240000pt;}
.y4c_c00448{bottom:589.440000pt;}
.y1a_c00448{bottom:600.640000pt;}
.y4a_c00448{bottom:612.400000pt;}
.y19_c00448{bottom:619.040000pt;}
.y49_c00448{bottom:632.640000pt;}
.y18_c00448{bottom:637.440000pt;}
.y17_c00448{bottom:655.840000pt;}
.y48_c00448{bottom:665.040000pt;}
.y16_c00448{bottom:674.240000pt;}
.y45_c00448{bottom:691.840000pt;}
.y15_c00448{bottom:692.640000pt;}
.y14_c00448{bottom:711.040000pt;}
.y43_c00448{bottom:725.600000pt;}
.y13_c00448{bottom:729.440000pt;}
.y42_c00448{bottom:739.840000pt;}
.y12_c00448{bottom:747.760000pt;}
.y41_c00448{bottom:760.800000pt;}
.y11_c00448{bottom:766.160000pt;}
.y40_c00448{bottom:780.800000pt;}
.y10_c00448{bottom:784.560000pt;}
.y3f_c00448{bottom:800.800000pt;}
.yf_c00448{bottom:802.960000pt;}
.y3e_c00448{bottom:820.800000pt;}
.ye_c00448{bottom:821.360000pt;}
.yd_c00448{bottom:839.760000pt;}
.y3d_c00448{bottom:840.800000pt;}
.yc_c00448{bottom:858.160000pt;}
.y3c_c00448{bottom:860.800000pt;}
.yb_c00448{bottom:876.560000pt;}
.y3b_c00448{bottom:880.800000pt;}
.ya_c00448{bottom:894.960000pt;}
.y38_c00448{bottom:903.840000pt;}
.y9_c00448{bottom:913.360000pt;}
.y37_c00448{bottom:924.080000pt;}
.y8_c00448{bottom:931.760000pt;}
.y7_c00448{bottom:950.160000pt;}
.y35_c00448{bottom:956.400000pt;}
.y6_c00448{bottom:986.960000pt;}
.y5_c00448{bottom:1005.360000pt;}
.y4_c00448{bottom:1023.040000pt;}
.y3_c00448{bottom:1036.804000pt;}
.y2_c00448{bottom:1050.640000pt;}
.y1_c00448{bottom:1064.400000pt;}
.hd_c00448{height:12.240000pt;}
.h14_c00448{height:14.400000pt;}
.h11_c00448{height:15.200000pt;}
.hb_c00448{height:19.998667pt;}
.ha_c00448{height:20.000000pt;}
.hc_c00448{height:20.960000pt;}
.h9_c00448{height:21.040000pt;}
.h5_c00448{height:26.800000pt;}
.h13_c00448{height:26.801333pt;}
.h12_c00448{height:33.678667pt;}
.hf_c00448{height:33.761333pt;}
.he_c00448{height:41.770312pt;}
.h3_c00448{height:47.085938pt;}
.h2_c00448{height:47.109375pt;}
.h8_c00448{height:50.560000pt;}
.h10_c00448{height:50.640000pt;}
.h7_c00448{height:57.473437pt;}
.h4_c00448{height:62.812500pt;}
.h6_c00448{height:86.107500pt;}
.h0_c00448{height:1122.560000pt;}
.h1_c00448{height:1122.666667pt;}
.w5_c00448{width:92.960000pt;}
.w4_c00448{width:93.280000pt;}
.w8_c00448{width:94.000000pt;}
.w9_c00448{width:94.001333pt;}
.w6_c00448{width:304.638667pt;}
.w7_c00448{width:306.720000pt;}
.w3_c00448{width:494.720000pt;}
.w2_c00448{width:793.805333pt;}
.w0_c00448{width:793.840000pt;}
.w1_c00448{width:794.000000pt;}
.x0_c00448{left:0.000000pt;}
.x11_c00448{left:3.680000pt;}
.x17_c00448{left:4.720000pt;}
.xc_c00448{left:15.200000pt;}
.x16_c00448{left:26.880000pt;}
.xe_c00448{left:31.840000pt;}
.xa_c00448{left:34.720000pt;}
.x12_c00448{left:37.920000pt;}
.x1a_c00448{left:39.200000pt;}
.x14_c00448{left:44.080000pt;}
.x13_c00448{left:46.480000pt;}
.x19_c00448{left:48.880000pt;}
.x15_c00448{left:51.360000pt;}
.x1c_c00448{left:63.520000pt;}
.x1b_c00448{left:94.800000pt;}
.x6_c00448{left:108.720000pt;}
.x10_c00448{left:109.760000pt;}
.x3_c00448{left:113.440000pt;}
.x18_c00448{left:124.080000pt;}
.x7_c00448{left:132.080000pt;}
.x8_c00448{left:234.000000pt;}
.x2_c00448{left:377.920000pt;}
.x1_c00448{left:396.960000pt;}
.x9_c00448{left:415.440000pt;}
.xb_c00448{left:425.360000pt;}
.xd_c00448{left:509.440000pt;}
.xf_c00448{left:519.360000pt;}
.x4_c00448{left:613.840000pt;}
.x1d_c00448{left:656.480000pt;}
.x5_c00448{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_f79fdd8b2be5aa3c6b599461.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00449{vertical-align:-82.800000px;}
.v1_c00449{vertical-align:-61.938000px;}
.v0_c00449{vertical-align:0.000000px;}
.ls5_c00449{letter-spacing:-0.192240px;}
.ls6_c00449{letter-spacing:-0.065880px;}
.ls4_c00449{letter-spacing:0.000000px;}
.ls3_c00449{letter-spacing:0.021960px;}
.ls7_c00449{letter-spacing:0.065880px;}
.ls2_c00449{letter-spacing:0.197640px;}
.ls0_c00449{letter-spacing:319.518000px;}
.ls1_c00449{letter-spacing:2233.800000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:-16.667640px;}
.ws1_c00449{word-spacing:-16.470000px;}
.ws2_c00449{word-spacing:-16.404120px;}
.ws3_c00449{word-spacing:-11.970000px;}
.ws9_c00449{word-spacing:-0.197640px;}
.ws5_c00449{word-spacing:-0.162000px;}
.ws6_c00449{word-spacing:-0.096120px;}
.wsa_c00449{word-spacing:-0.095760px;}
.ws4_c00449{word-spacing:0.000000px;}
.ws7_c00449{word-spacing:0.065880px;}
.ws8_c00449{word-spacing:0.131760px;}
._1_c00449{margin-left:-1.199160px;}
._0_c00449{width:1.239948px;}
.fc1_c00449{color:transparent;}
.fc0_c00449{color:rgb(0,0,0);}
.fs4_c00449{font-size:47.880000px;}
.fs0_c00449{font-size:54.000000px;}
.fs3_c00449{font-size:65.880000px;}
.fs1_c00449{font-size:72.000000px;}
.fs2_c00449{font-size:96.120000px;}
.y46_c00449{bottom:-15.210000px;}
.y0_c00449{bottom:0.000000px;}
.y43_c00449{bottom:2.880000px;}
.y61_c00449{bottom:2.970000px;}
.y39_c00449{bottom:3.780000px;}
.y35_c00449{bottom:5.310000px;}
.y45_c00449{bottom:22.770000px;}
.y38_c00449{bottom:41.670000px;}
.y4a_c00449{bottom:41.760000px;}
.y63_c00449{bottom:57.240000px;}
.y33_c00449{bottom:137.520000px;}
.y62_c00449{bottom:145.620000px;}
.y32_c00449{bottom:158.220000px;}
.y60_c00449{bottom:159.390000px;}
.y5f_c00449{bottom:175.500000px;}
.y31_c00449{bottom:178.920000px;}
.y5e_c00449{bottom:199.080000px;}
.y30_c00449{bottom:199.620000px;}
.y2f_c00449{bottom:220.320000px;}
.y5d_c00449{bottom:221.580000px;}
.y2e_c00449{bottom:241.020000px;}
.y5c_c00449{bottom:244.080000px;}
.y2d_c00449{bottom:261.720000px;}
.y5b_c00449{bottom:266.580000px;}
.y2c_c00449{bottom:282.420000px;}
.y5a_c00449{bottom:289.080000px;}
.y2b_c00449{bottom:303.120000px;}
.y59_c00449{bottom:311.580000px;}
.y2a_c00449{bottom:323.820000px;}
.y58_c00449{bottom:334.080000px;}
.y29_c00449{bottom:344.520000px;}
.y57_c00449{bottom:360.000000px;}
.y28_c00449{bottom:365.220000px;}
.y56_c00449{bottom:382.680000px;}
.y27_c00449{bottom:385.920000px;}
.y26_c00449{bottom:406.620000px;}
.y55_c00449{bottom:419.130000px;}
.y25_c00449{bottom:427.320000px;}
.y24_c00449{bottom:448.020000px;}
.y54_c00449{bottom:449.280000px;}
.y23_c00449{bottom:468.720000px;}
.y53_c00449{bottom:487.260000px;}
.y22_c00449{bottom:489.420000px;}
.y52_c00449{bottom:504.450000px;}
.y21_c00449{bottom:510.120000px;}
.y51_c00449{bottom:528.120000px;}
.y20_c00449{bottom:530.820000px;}
.y50_c00449{bottom:550.620000px;}
.y1f_c00449{bottom:551.520000px;}
.y1e_c00449{bottom:572.220000px;}
.y4f_c00449{bottom:573.120000px;}
.y1d_c00449{bottom:592.920000px;}
.y4e_c00449{bottom:595.620000px;}
.y1c_c00449{bottom:613.620000px;}
.y4d_c00449{bottom:618.120000px;}
.y1b_c00449{bottom:634.320000px;}
.y4c_c00449{bottom:640.620000px;}
.y1a_c00449{bottom:655.020000px;}
.y4b_c00449{bottom:663.120000px;}
.y19_c00449{bottom:675.720000px;}
.y49_c00449{bottom:688.950000px;}
.y18_c00449{bottom:696.420000px;}
.y48_c00449{bottom:711.720000px;}
.y17_c00449{bottom:717.120000px;}
.y16_c00449{bottom:737.820000px;}
.y47_c00449{bottom:748.170000px;}
.y15_c00449{bottom:758.520000px;}
.y44_c00449{bottom:778.320000px;}
.y14_c00449{bottom:779.220000px;}
.y13_c00449{bottom:799.920000px;}
.y42_c00449{bottom:816.300000px;}
.y12_c00449{bottom:820.620000px;}
.y41_c00449{bottom:832.320000px;}
.y11_c00449{bottom:841.230000px;}
.y40_c00449{bottom:855.900000px;}
.y10_c00449{bottom:861.930000px;}
.y3f_c00449{bottom:878.400000px;}
.yf_c00449{bottom:882.630000px;}
.y3e_c00449{bottom:900.900000px;}
.ye_c00449{bottom:903.330000px;}
.y3d_c00449{bottom:923.400000px;}
.yd_c00449{bottom:924.030000px;}
.yc_c00449{bottom:944.730000px;}
.y3c_c00449{bottom:945.900000px;}
.yb_c00449{bottom:965.430000px;}
.y3b_c00449{bottom:968.400000px;}
.ya_c00449{bottom:986.130000px;}
.y3a_c00449{bottom:990.900000px;}
.y9_c00449{bottom:1006.830000px;}
.y37_c00449{bottom:1016.820000px;}
.y8_c00449{bottom:1027.530000px;}
.y36_c00449{bottom:1039.590000px;}
.y7_c00449{bottom:1048.230000px;}
.y6_c00449{bottom:1068.930000px;}
.y34_c00449{bottom:1075.950000px;}
.y5_c00449{bottom:1110.330000px;}
.y4_c00449{bottom:1131.030000px;}
.y3_c00449{bottom:1150.915500px;}
.y2_c00449{bottom:1166.400000px;}
.y1_c00449{bottom:1197.450000px;}
.hc_c00449{height:13.770000px;}
.h12_c00449{height:13.858500px;}
.h10_c00449{height:14.940000px;}
.ha_c00449{height:22.498500px;}
.h9_c00449{height:22.500000px;}
.hb_c00449{height:23.580000px;}
.h8_c00449{height:23.670000px;}
.h4_c00449{height:30.150000px;}
.h11_c00449{height:37.980000px;}
.he_c00449{height:37.981500px;}
.hd_c00449{height:46.991602px;}
.h2_c00449{height:52.998047px;}
.h7_c00449{height:56.880000px;}
.hf_c00449{height:56.970000px;}
.h6_c00449{height:64.657617px;}
.h3_c00449{height:70.664062px;}
.h5_c00449{height:96.870938px;}
.h0_c00449{height:1262.880000px;}
.h1_c00449{height:1263.000000px;}
.w5_c00449{width:104.580000px;}
.w4_c00449{width:104.940000px;}
.w8_c00449{width:105.750000px;}
.w9_c00449{width:105.751500px;}
.w6_c00449{width:342.718500px;}
.w7_c00449{width:345.060000px;}
.w3_c00449{width:556.560000px;}
.w2_c00449{width:893.031000px;}
.w0_c00449{width:893.070000px;}
.w1_c00449{width:893.250000px;}
.x0_c00449{left:0.000000px;}
.x10_c00449{left:4.140000px;}
.x17_c00449{left:5.310000px;}
.xb_c00449{left:17.100000px;}
.x16_c00449{left:30.240000px;}
.x1c_c00449{left:33.030000px;}
.xd_c00449{left:35.820000px;}
.x9_c00449{left:39.060000px;}
.x1d_c00449{left:41.310000px;}
.x14_c00449{left:42.660000px;}
.x13_c00449{left:44.100000px;}
.x15_c00449{left:49.590000px;}
.x12_c00449{left:52.290000px;}
.x11_c00449{left:54.990000px;}
.x1a_c00449{left:57.780000px;}
.x19_c00449{left:63.270000px;}
.x6_c00449{left:94.320000px;}
.x5_c00449{left:122.310000px;}
.xf_c00449{left:123.480000px;}
.x2_c00449{left:127.620000px;}
.x1b_c00449{left:138.600000px;}
.x18_c00449{left:151.920000px;}
.x7_c00449{left:263.250000px;}
.x1_c00449{left:446.580000px;}
.x8_c00449{left:467.370000px;}
.xa_c00449{left:478.530000px;}
.xc_c00449{left:573.120000px;}
.xe_c00449{left:584.280000px;}
.x3_c00449{left:690.570000px;}
.x4_c00449{left:906.570000px;}
@media print{
.v2_c00449{vertical-align:-73.600000pt;}
.v1_c00449{vertical-align:-55.056000pt;}
.v0_c00449{vertical-align:0.000000pt;}
.ls5_c00449{letter-spacing:-0.170880pt;}
.ls6_c00449{letter-spacing:-0.058560pt;}
.ls4_c00449{letter-spacing:0.000000pt;}
.ls3_c00449{letter-spacing:0.019520pt;}
.ls7_c00449{letter-spacing:0.058560pt;}
.ls2_c00449{letter-spacing:0.175680pt;}
.ls0_c00449{letter-spacing:284.016000pt;}
.ls1_c00449{letter-spacing:1985.600000pt;}
.ws0_c00449{word-spacing:-14.815680pt;}
.ws1_c00449{word-spacing:-14.640000pt;}
.ws2_c00449{word-spacing:-14.581440pt;}
.ws3_c00449{word-spacing:-10.640000pt;}
.ws9_c00449{word-spacing:-0.175680pt;}
.ws5_c00449{word-spacing:-0.144000pt;}
.ws6_c00449{word-spacing:-0.085440pt;}
.wsa_c00449{word-spacing:-0.085120pt;}
.ws4_c00449{word-spacing:0.000000pt;}
.ws7_c00449{word-spacing:0.058560pt;}
.ws8_c00449{word-spacing:0.117120pt;}
._1_c00449{margin-left:-1.065920pt;}
._0_c00449{width:1.102176pt;}
.fs4_c00449{font-size:42.560000pt;}
.fs0_c00449{font-size:48.000000pt;}
.fs3_c00449{font-size:58.560000pt;}
.fs1_c00449{font-size:64.000000pt;}
.fs2_c00449{font-size:85.440000pt;}
.y46_c00449{bottom:-13.520000pt;}
.y0_c00449{bottom:0.000000pt;}
.y43_c00449{bottom:2.560000pt;}
.y61_c00449{bottom:2.640000pt;}
.y39_c00449{bottom:3.360000pt;}
.y35_c00449{bottom:4.720000pt;}
.y45_c00449{bottom:20.240000pt;}
.y38_c00449{bottom:37.040000pt;}
.y4a_c00449{bottom:37.120000pt;}
.y63_c00449{bottom:50.880000pt;}
.y33_c00449{bottom:122.240000pt;}
.y62_c00449{bottom:129.440000pt;}
.y32_c00449{bottom:140.640000pt;}
.y60_c00449{bottom:141.680000pt;}
.y5f_c00449{bottom:156.000000pt;}
.y31_c00449{bottom:159.040000pt;}
.y5e_c00449{bottom:176.960000pt;}
.y30_c00449{bottom:177.440000pt;}
.y2f_c00449{bottom:195.840000pt;}
.y5d_c00449{bottom:196.960000pt;}
.y2e_c00449{bottom:214.240000pt;}
.y5c_c00449{bottom:216.960000pt;}
.y2d_c00449{bottom:232.640000pt;}
.y5b_c00449{bottom:236.960000pt;}
.y2c_c00449{bottom:251.040000pt;}
.y5a_c00449{bottom:256.960000pt;}
.y2b_c00449{bottom:269.440000pt;}
.y59_c00449{bottom:276.960000pt;}
.y2a_c00449{bottom:287.840000pt;}
.y58_c00449{bottom:296.960000pt;}
.y29_c00449{bottom:306.240000pt;}
.y57_c00449{bottom:320.000000pt;}
.y28_c00449{bottom:324.640000pt;}
.y56_c00449{bottom:340.160000pt;}
.y27_c00449{bottom:343.040000pt;}
.y26_c00449{bottom:361.440000pt;}
.y55_c00449{bottom:372.560000pt;}
.y25_c00449{bottom:379.840000pt;}
.y24_c00449{bottom:398.240000pt;}
.y54_c00449{bottom:399.360000pt;}
.y23_c00449{bottom:416.640000pt;}
.y53_c00449{bottom:433.120000pt;}
.y22_c00449{bottom:435.040000pt;}
.y52_c00449{bottom:448.400000pt;}
.y21_c00449{bottom:453.440000pt;}
.y51_c00449{bottom:469.440000pt;}
.y20_c00449{bottom:471.840000pt;}
.y50_c00449{bottom:489.440000pt;}
.y1f_c00449{bottom:490.240000pt;}
.y1e_c00449{bottom:508.640000pt;}
.y4f_c00449{bottom:509.440000pt;}
.y1d_c00449{bottom:527.040000pt;}
.y4e_c00449{bottom:529.440000pt;}
.y1c_c00449{bottom:545.440000pt;}
.y4d_c00449{bottom:549.440000pt;}
.y1b_c00449{bottom:563.840000pt;}
.y4c_c00449{bottom:569.440000pt;}
.y1a_c00449{bottom:582.240000pt;}
.y4b_c00449{bottom:589.440000pt;}
.y19_c00449{bottom:600.640000pt;}
.y49_c00449{bottom:612.400000pt;}
.y18_c00449{bottom:619.040000pt;}
.y48_c00449{bottom:632.640000pt;}
.y17_c00449{bottom:637.440000pt;}
.y16_c00449{bottom:655.840000pt;}
.y47_c00449{bottom:665.040000pt;}
.y15_c00449{bottom:674.240000pt;}
.y44_c00449{bottom:691.840000pt;}
.y14_c00449{bottom:692.640000pt;}
.y13_c00449{bottom:711.040000pt;}
.y42_c00449{bottom:725.600000pt;}
.y12_c00449{bottom:729.440000pt;}
.y41_c00449{bottom:739.840000pt;}
.y11_c00449{bottom:747.760000pt;}
.y40_c00449{bottom:760.800000pt;}
.y10_c00449{bottom:766.160000pt;}
.y3f_c00449{bottom:780.800000pt;}
.yf_c00449{bottom:784.560000pt;}
.y3e_c00449{bottom:800.800000pt;}
.ye_c00449{bottom:802.960000pt;}
.y3d_c00449{bottom:820.800000pt;}
.yd_c00449{bottom:821.360000pt;}
.yc_c00449{bottom:839.760000pt;}
.y3c_c00449{bottom:840.800000pt;}
.yb_c00449{bottom:858.160000pt;}
.y3b_c00449{bottom:860.800000pt;}
.ya_c00449{bottom:876.560000pt;}
.y3a_c00449{bottom:880.800000pt;}
.y9_c00449{bottom:894.960000pt;}
.y37_c00449{bottom:903.840000pt;}
.y8_c00449{bottom:913.360000pt;}
.y36_c00449{bottom:924.080000pt;}
.y7_c00449{bottom:931.760000pt;}
.y6_c00449{bottom:950.160000pt;}
.y34_c00449{bottom:956.400000pt;}
.y5_c00449{bottom:986.960000pt;}
.y4_c00449{bottom:1005.360000pt;}
.y3_c00449{bottom:1023.036000pt;}
.y2_c00449{bottom:1036.800000pt;}
.y1_c00449{bottom:1064.400000pt;}
.hc_c00449{height:12.240000pt;}
.h12_c00449{height:12.318667pt;}
.h10_c00449{height:13.280000pt;}
.ha_c00449{height:19.998667pt;}
.h9_c00449{height:20.000000pt;}
.hb_c00449{height:20.960000pt;}
.h8_c00449{height:21.040000pt;}
.h4_c00449{height:26.800000pt;}
.h11_c00449{height:33.760000pt;}
.he_c00449{height:33.761333pt;}
.hd_c00449{height:41.770312pt;}
.h2_c00449{height:47.109375pt;}
.h7_c00449{height:50.560000pt;}
.hf_c00449{height:50.640000pt;}
.h6_c00449{height:57.473437pt;}
.h3_c00449{height:62.812500pt;}
.h5_c00449{height:86.107500pt;}
.h0_c00449{height:1122.560000pt;}
.h1_c00449{height:1122.666667pt;}
.w5_c00449{width:92.960000pt;}
.w4_c00449{width:93.280000pt;}
.w8_c00449{width:94.000000pt;}
.w9_c00449{width:94.001333pt;}
.w6_c00449{width:304.638667pt;}
.w7_c00449{width:306.720000pt;}
.w3_c00449{width:494.720000pt;}
.w2_c00449{width:793.805333pt;}
.w0_c00449{width:793.840000pt;}
.w1_c00449{width:794.000000pt;}
.x0_c00449{left:0.000000pt;}
.x10_c00449{left:3.680000pt;}
.x17_c00449{left:4.720000pt;}
.xb_c00449{left:15.200000pt;}
.x16_c00449{left:26.880000pt;}
.x1c_c00449{left:29.360000pt;}
.xd_c00449{left:31.840000pt;}
.x9_c00449{left:34.720000pt;}
.x1d_c00449{left:36.720000pt;}
.x14_c00449{left:37.920000pt;}
.x13_c00449{left:39.200000pt;}
.x15_c00449{left:44.080000pt;}
.x12_c00449{left:46.480000pt;}
.x11_c00449{left:48.880000pt;}
.x1a_c00449{left:51.360000pt;}
.x19_c00449{left:56.240000pt;}
.x6_c00449{left:83.840000pt;}
.x5_c00449{left:108.720000pt;}
.xf_c00449{left:109.760000pt;}
.x2_c00449{left:113.440000pt;}
.x1b_c00449{left:123.200000pt;}
.x18_c00449{left:135.040000pt;}
.x7_c00449{left:234.000000pt;}
.x1_c00449{left:396.960000pt;}
.x8_c00449{left:415.440000pt;}
.xa_c00449{left:425.360000pt;}
.xc_c00449{left:509.440000pt;}
.xe_c00449{left:519.360000pt;}
.x3_c00449{left:613.840000pt;}
.x4_c00449{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_fd7d4dd9fe183d72e3848e0b.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00450{vertical-align:-82.800000px;}
.v0_c00450{vertical-align:0.000000px;}
.ls5_c00450{letter-spacing:-0.192240px;}
.ls4_c00450{letter-spacing:-0.108000px;}
.ls6_c00450{letter-spacing:-0.065880px;}
.ls3_c00450{letter-spacing:0.000000px;}
.ls2_c00450{letter-spacing:0.021960px;}
.ls7_c00450{letter-spacing:0.065880px;}
.ls1_c00450{letter-spacing:0.197640px;}
.ls0_c00450{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00450{word-spacing:-16.470000px;}
.ws2_c00450{word-spacing:-16.404120px;}
.ws3_c00450{word-spacing:-11.970000px;}
.wsa_c00450{word-spacing:-0.197640px;}
.ws7_c00450{word-spacing:-0.096120px;}
.wsb_c00450{word-spacing:-0.095760px;}
.ws4_c00450{word-spacing:0.000000px;}
.ws8_c00450{word-spacing:0.065880px;}
.ws9_c00450{word-spacing:0.131760px;}
.ws6_c00450{word-spacing:0.162000px;}
.ws5_c00450{word-spacing:0.270000px;}
.wsc_c00450{word-spacing:0.527040px;}
._1_c00450{margin-left:-1.058400px;}
._0_c00450{width:1.220400px;}
.fc1_c00450{color:transparent;}
.fc0_c00450{color:rgb(0,0,0);}
.fs4_c00450{font-size:47.880000px;}
.fs0_c00450{font-size:54.000000px;}
.fs3_c00450{font-size:65.880000px;}
.fs1_c00450{font-size:72.000000px;}
.fs2_c00450{font-size:96.120000px;}
.y47_c00450{bottom:-15.210000px;}
.y0_c00450{bottom:0.000000px;}
.y44_c00450{bottom:2.880000px;}
.y55_c00450{bottom:2.970000px;}
.y3a_c00450{bottom:3.780000px;}
.y59_c00450{bottom:5.220000px;}
.y36_c00450{bottom:5.310000px;}
.y57_c00450{bottom:22.680000px;}
.y46_c00450{bottom:22.770000px;}
.y39_c00450{bottom:41.670000px;}
.y4b_c00450{bottom:41.760000px;}
.y66_c00450{bottom:57.240000px;}
.y34_c00450{bottom:137.520000px;}
.y65_c00450{bottom:138.690000px;}
.y64_c00450{bottom:154.890000px;}
.y33_c00450{bottom:158.220000px;}
.y63_c00450{bottom:173.340000px;}
.y32_c00450{bottom:178.920000px;}
.y62_c00450{bottom:197.010000px;}
.y31_c00450{bottom:199.620000px;}
.y61_c00450{bottom:219.510000px;}
.y30_c00450{bottom:220.320000px;}
.y2f_c00450{bottom:241.020000px;}
.y60_c00450{bottom:242.010000px;}
.y2e_c00450{bottom:261.720000px;}
.y5f_c00450{bottom:264.510000px;}
.y2d_c00450{bottom:282.420000px;}
.y5e_c00450{bottom:287.010000px;}
.y2c_c00450{bottom:303.120000px;}
.y5d_c00450{bottom:309.510000px;}
.y2b_c00450{bottom:323.820000px;}
.y5c_c00450{bottom:332.010000px;}
.y2a_c00450{bottom:344.520000px;}
.y5b_c00450{bottom:357.840000px;}
.y29_c00450{bottom:365.220000px;}
.y5a_c00450{bottom:380.610000px;}
.y28_c00450{bottom:385.920000px;}
.y27_c00450{bottom:406.620000px;}
.y58_c00450{bottom:417.060000px;}
.y26_c00450{bottom:427.320000px;}
.y56_c00450{bottom:447.210000px;}
.y25_c00450{bottom:448.020000px;}
.y24_c00450{bottom:468.720000px;}
.y54_c00450{bottom:485.100000px;}
.y23_c00450{bottom:489.420000px;}
.y53_c00450{bottom:504.450000px;}
.y22_c00450{bottom:510.120000px;}
.y52_c00450{bottom:528.120000px;}
.y21_c00450{bottom:530.820000px;}
.y51_c00450{bottom:550.620000px;}
.y20_c00450{bottom:551.520000px;}
.y1f_c00450{bottom:572.220000px;}
.y50_c00450{bottom:573.120000px;}
.y1e_c00450{bottom:592.920000px;}
.y4f_c00450{bottom:595.620000px;}
.y1d_c00450{bottom:613.620000px;}
.y4e_c00450{bottom:618.120000px;}
.y1c_c00450{bottom:634.320000px;}
.y4d_c00450{bottom:640.620000px;}
.y1b_c00450{bottom:655.020000px;}
.y4c_c00450{bottom:663.120000px;}
.y1a_c00450{bottom:675.720000px;}
.y4a_c00450{bottom:688.950000px;}
.y19_c00450{bottom:696.420000px;}
.y49_c00450{bottom:711.720000px;}
.y18_c00450{bottom:717.120000px;}
.y17_c00450{bottom:737.820000px;}
.y48_c00450{bottom:748.170000px;}
.y16_c00450{bottom:758.520000px;}
.y45_c00450{bottom:778.320000px;}
.y15_c00450{bottom:779.220000px;}
.y14_c00450{bottom:799.920000px;}
.y43_c00450{bottom:816.300000px;}
.y13_c00450{bottom:820.620000px;}
.y42_c00450{bottom:832.320000px;}
.y12_c00450{bottom:841.230000px;}
.y41_c00450{bottom:855.900000px;}
.y11_c00450{bottom:861.930000px;}
.y40_c00450{bottom:878.400000px;}
.y10_c00450{bottom:882.630000px;}
.y3f_c00450{bottom:900.900000px;}
.yf_c00450{bottom:903.330000px;}
.y3e_c00450{bottom:923.400000px;}
.ye_c00450{bottom:924.030000px;}
.yd_c00450{bottom:944.730000px;}
.y3d_c00450{bottom:945.900000px;}
.yc_c00450{bottom:965.430000px;}
.y3c_c00450{bottom:968.400000px;}
.yb_c00450{bottom:986.130000px;}
.y3b_c00450{bottom:990.900000px;}
.ya_c00450{bottom:1006.830000px;}
.y38_c00450{bottom:1016.820000px;}
.y9_c00450{bottom:1027.530000px;}
.y37_c00450{bottom:1039.590000px;}
.y8_c00450{bottom:1048.230000px;}
.y7_c00450{bottom:1068.930000px;}
.y35_c00450{bottom:1075.950000px;}
.y6_c00450{bottom:1110.330000px;}
.y5_c00450{bottom:1131.030000px;}
.y4_c00450{bottom:1150.920000px;}
.y3_c00450{bottom:1166.404500px;}
.y2_c00450{bottom:1181.970000px;}
.y1_c00450{bottom:1197.450000px;}
.hd_c00450{height:13.770000px;}
.h14_c00450{height:16.200000px;}
.h11_c00450{height:17.100000px;}
.hb_c00450{height:22.498500px;}
.ha_c00450{height:22.500000px;}
.hc_c00450{height:23.580000px;}
.h9_c00450{height:23.670000px;}
.h5_c00450{height:30.150000px;}
.h13_c00450{height:30.151500px;}
.h12_c00450{height:37.888500px;}
.hf_c00450{height:37.981500px;}
.he_c00450{height:46.991602px;}
.h3_c00450{height:52.971680px;}
.h2_c00450{height:52.998047px;}
.h8_c00450{height:56.880000px;}
.h10_c00450{height:56.970000px;}
.h7_c00450{height:64.657617px;}
.h4_c00450{height:70.664062px;}
.h6_c00450{height:96.870938px;}
.h0_c00450{height:1262.880000px;}
.h1_c00450{height:1263.000000px;}
.w5_c00450{width:104.580000px;}
.w4_c00450{width:104.940000px;}
.w8_c00450{width:105.750000px;}
.w9_c00450{width:105.751500px;}
.w6_c00450{width:342.718500px;}
.w7_c00450{width:345.060000px;}
.w3_c00450{width:556.560000px;}
.w2_c00450{width:893.031000px;}
.w0_c00450{width:893.070000px;}
.w1_c00450{width:893.250000px;}
.x0_c00450{left:0.000000px;}
.x11_c00450{left:4.140000px;}
.x17_c00450{left:5.310000px;}
.xc_c00450{left:17.100000px;}
.x16_c00450{left:30.240000px;}
.xe_c00450{left:35.820000px;}
.xa_c00450{left:39.060000px;}
.x12_c00450{left:42.660000px;}
.x14_c00450{left:44.100000px;}
.x13_c00450{left:49.590000px;}
.x1c_c00450{left:52.290000px;}
.x1a_c00450{left:55.080000px;}
.x15_c00450{left:57.780000px;}
.x19_c00450{left:63.270000px;}
.x1b_c00450{left:108.630000px;}
.x6_c00450{left:122.310000px;}
.x10_c00450{left:123.480000px;}
.x3_c00450{left:127.620000px;}
.x7_c00450{left:133.290000px;}
.x18_c00450{left:142.020000px;}
.x8_c00450{left:263.250000px;}
.x2_c00450{left:425.160000px;}
.x1_c00450{left:446.580000px;}
.x9_c00450{left:467.370000px;}
.xb_c00450{left:478.530000px;}
.xd_c00450{left:573.120000px;}
.xf_c00450{left:584.280000px;}
.x4_c00450{left:690.570000px;}
.x1d_c00450{left:738.540000px;}
.x5_c00450{left:906.570000px;}
@media print{
.v1_c00450{vertical-align:-73.600000pt;}
.v0_c00450{vertical-align:0.000000pt;}
.ls5_c00450{letter-spacing:-0.170880pt;}
.ls4_c00450{letter-spacing:-0.096000pt;}
.ls6_c00450{letter-spacing:-0.058560pt;}
.ls3_c00450{letter-spacing:0.000000pt;}
.ls2_c00450{letter-spacing:0.019520pt;}
.ls7_c00450{letter-spacing:0.058560pt;}
.ls1_c00450{letter-spacing:0.175680pt;}
.ls0_c00450{letter-spacing:1985.600000pt;}
.ws0_c00450{word-spacing:-14.815680pt;}
.ws1_c00450{word-spacing:-14.640000pt;}
.ws2_c00450{word-spacing:-14.581440pt;}
.ws3_c00450{word-spacing:-10.640000pt;}
.wsa_c00450{word-spacing:-0.175680pt;}
.ws7_c00450{word-spacing:-0.085440pt;}
.wsb_c00450{word-spacing:-0.085120pt;}
.ws4_c00450{word-spacing:0.000000pt;}
.ws8_c00450{word-spacing:0.058560pt;}
.ws9_c00450{word-spacing:0.117120pt;}
.ws6_c00450{word-spacing:0.144000pt;}
.ws5_c00450{word-spacing:0.240000pt;}
.wsc_c00450{word-spacing:0.468480pt;}
._1_c00450{margin-left:-0.940800pt;}
._0_c00450{width:1.084800pt;}
.fs4_c00450{font-size:42.560000pt;}
.fs0_c00450{font-size:48.000000pt;}
.fs3_c00450{font-size:58.560000pt;}
.fs1_c00450{font-size:64.000000pt;}
.fs2_c00450{font-size:85.440000pt;}
.y47_c00450{bottom:-13.520000pt;}
.y0_c00450{bottom:0.000000pt;}
.y44_c00450{bottom:2.560000pt;}
.y55_c00450{bottom:2.640000pt;}
.y3a_c00450{bottom:3.360000pt;}
.y59_c00450{bottom:4.640000pt;}
.y36_c00450{bottom:4.720000pt;}
.y57_c00450{bottom:20.160000pt;}
.y46_c00450{bottom:20.240000pt;}
.y39_c00450{bottom:37.040000pt;}
.y4b_c00450{bottom:37.120000pt;}
.y66_c00450{bottom:50.880000pt;}
.y34_c00450{bottom:122.240000pt;}
.y65_c00450{bottom:123.280000pt;}
.y64_c00450{bottom:137.680000pt;}
.y33_c00450{bottom:140.640000pt;}
.y63_c00450{bottom:154.080000pt;}
.y32_c00450{bottom:159.040000pt;}
.y62_c00450{bottom:175.120000pt;}
.y31_c00450{bottom:177.440000pt;}
.y61_c00450{bottom:195.120000pt;}
.y30_c00450{bottom:195.840000pt;}
.y2f_c00450{bottom:214.240000pt;}
.y60_c00450{bottom:215.120000pt;}
.y2e_c00450{bottom:232.640000pt;}
.y5f_c00450{bottom:235.120000pt;}
.y2d_c00450{bottom:251.040000pt;}
.y5e_c00450{bottom:255.120000pt;}
.y2c_c00450{bottom:269.440000pt;}
.y5d_c00450{bottom:275.120000pt;}
.y2b_c00450{bottom:287.840000pt;}
.y5c_c00450{bottom:295.120000pt;}
.y2a_c00450{bottom:306.240000pt;}
.y5b_c00450{bottom:318.080000pt;}
.y29_c00450{bottom:324.640000pt;}
.y5a_c00450{bottom:338.320000pt;}
.y28_c00450{bottom:343.040000pt;}
.y27_c00450{bottom:361.440000pt;}
.y58_c00450{bottom:370.720000pt;}
.y26_c00450{bottom:379.840000pt;}
.y56_c00450{bottom:397.520000pt;}
.y25_c00450{bottom:398.240000pt;}
.y24_c00450{bottom:416.640000pt;}
.y54_c00450{bottom:431.200000pt;}
.y23_c00450{bottom:435.040000pt;}
.y53_c00450{bottom:448.400000pt;}
.y22_c00450{bottom:453.440000pt;}
.y52_c00450{bottom:469.440000pt;}
.y21_c00450{bottom:471.840000pt;}
.y51_c00450{bottom:489.440000pt;}
.y20_c00450{bottom:490.240000pt;}
.y1f_c00450{bottom:508.640000pt;}
.y50_c00450{bottom:509.440000pt;}
.y1e_c00450{bottom:527.040000pt;}
.y4f_c00450{bottom:529.440000pt;}
.y1d_c00450{bottom:545.440000pt;}
.y4e_c00450{bottom:549.440000pt;}
.y1c_c00450{bottom:563.840000pt;}
.y4d_c00450{bottom:569.440000pt;}
.y1b_c00450{bottom:582.240000pt;}
.y4c_c00450{bottom:589.440000pt;}
.y1a_c00450{bottom:600.640000pt;}
.y4a_c00450{bottom:612.400000pt;}
.y19_c00450{bottom:619.040000pt;}
.y49_c00450{bottom:632.640000pt;}
.y18_c00450{bottom:637.440000pt;}
.y17_c00450{bottom:655.840000pt;}
.y48_c00450{bottom:665.040000pt;}
.y16_c00450{bottom:674.240000pt;}
.y45_c00450{bottom:691.840000pt;}
.y15_c00450{bottom:692.640000pt;}
.y14_c00450{bottom:711.040000pt;}
.y43_c00450{bottom:725.600000pt;}
.y13_c00450{bottom:729.440000pt;}
.y42_c00450{bottom:739.840000pt;}
.y12_c00450{bottom:747.760000pt;}
.y41_c00450{bottom:760.800000pt;}
.y11_c00450{bottom:766.160000pt;}
.y40_c00450{bottom:780.800000pt;}
.y10_c00450{bottom:784.560000pt;}
.y3f_c00450{bottom:800.800000pt;}
.yf_c00450{bottom:802.960000pt;}
.y3e_c00450{bottom:820.800000pt;}
.ye_c00450{bottom:821.360000pt;}
.yd_c00450{bottom:839.760000pt;}
.y3d_c00450{bottom:840.800000pt;}
.yc_c00450{bottom:858.160000pt;}
.y3c_c00450{bottom:860.800000pt;}
.yb_c00450{bottom:876.560000pt;}
.y3b_c00450{bottom:880.800000pt;}
.ya_c00450{bottom:894.960000pt;}
.y38_c00450{bottom:903.840000pt;}
.y9_c00450{bottom:913.360000pt;}
.y37_c00450{bottom:924.080000pt;}
.y8_c00450{bottom:931.760000pt;}
.y7_c00450{bottom:950.160000pt;}
.y35_c00450{bottom:956.400000pt;}
.y6_c00450{bottom:986.960000pt;}
.y5_c00450{bottom:1005.360000pt;}
.y4_c00450{bottom:1023.040000pt;}
.y3_c00450{bottom:1036.804000pt;}
.y2_c00450{bottom:1050.640000pt;}
.y1_c00450{bottom:1064.400000pt;}
.hd_c00450{height:12.240000pt;}
.h14_c00450{height:14.400000pt;}
.h11_c00450{height:15.200000pt;}
.hb_c00450{height:19.998667pt;}
.ha_c00450{height:20.000000pt;}
.hc_c00450{height:20.960000pt;}
.h9_c00450{height:21.040000pt;}
.h5_c00450{height:26.800000pt;}
.h13_c00450{height:26.801333pt;}
.h12_c00450{height:33.678667pt;}
.hf_c00450{height:33.761333pt;}
.he_c00450{height:41.770312pt;}
.h3_c00450{height:47.085938pt;}
.h2_c00450{height:47.109375pt;}
.h8_c00450{height:50.560000pt;}
.h10_c00450{height:50.640000pt;}
.h7_c00450{height:57.473437pt;}
.h4_c00450{height:62.812500pt;}
.h6_c00450{height:86.107500pt;}
.h0_c00450{height:1122.560000pt;}
.h1_c00450{height:1122.666667pt;}
.w5_c00450{width:92.960000pt;}
.w4_c00450{width:93.280000pt;}
.w8_c00450{width:94.000000pt;}
.w9_c00450{width:94.001333pt;}
.w6_c00450{width:304.638667pt;}
.w7_c00450{width:306.720000pt;}
.w3_c00450{width:494.720000pt;}
.w2_c00450{width:793.805333pt;}
.w0_c00450{width:793.840000pt;}
.w1_c00450{width:794.000000pt;}
.x0_c00450{left:0.000000pt;}
.x11_c00450{left:3.680000pt;}
.x17_c00450{left:4.720000pt;}
.xc_c00450{left:15.200000pt;}
.x16_c00450{left:26.880000pt;}
.xe_c00450{left:31.840000pt;}
.xa_c00450{left:34.720000pt;}
.x12_c00450{left:37.920000pt;}
.x14_c00450{left:39.200000pt;}
.x13_c00450{left:44.080000pt;}
.x1c_c00450{left:46.480000pt;}
.x1a_c00450{left:48.960000pt;}
.x15_c00450{left:51.360000pt;}
.x19_c00450{left:56.240000pt;}
.x1b_c00450{left:96.560000pt;}
.x6_c00450{left:108.720000pt;}
.x10_c00450{left:109.760000pt;}
.x3_c00450{left:113.440000pt;}
.x7_c00450{left:118.480000pt;}
.x18_c00450{left:126.240000pt;}
.x8_c00450{left:234.000000pt;}
.x2_c00450{left:377.920000pt;}
.x1_c00450{left:396.960000pt;}
.x9_c00450{left:415.440000pt;}
.xb_c00450{left:425.360000pt;}
.xd_c00450{left:509.440000pt;}
.xf_c00450{left:519.360000pt;}
.x4_c00450{left:613.840000pt;}
.x1d_c00450{left:656.480000pt;}
.x5_c00450{left:805.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_c00451 {
    display:none;
  }
  .loading-indicator_c00451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00451 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00451 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00451" -> "#page-container .classname_c00451")
 */
.pf_c00451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00451 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00451 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00451 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00451 {overflow:visible;}
  }
}
.c_c00451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00451 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00451:after { /* webkit #35443 */
  content: '';
}
.t_c00451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00451 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00451 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00451 { /* info for Javascript */
  display:none;
}
.l_c00451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00451:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00451;src:url('chunks/assets/font_ad428c0492b92a744147f96d.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_06aa601d70cd54250bf4de7c.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00451{vertical-align:-82.800000px;}
.v1_c00451{vertical-align:-61.938000px;}
.v0_c00451{vertical-align:0.000000px;}
.ls9_c00451{letter-spacing:-0.263520px;}
.ls5_c00451{letter-spacing:-0.192240px;}
.ls6_c00451{letter-spacing:-0.065880px;}
.ls4_c00451{letter-spacing:0.000000px;}
.ls3_c00451{letter-spacing:0.021960px;}
.ls7_c00451{letter-spacing:0.065880px;}
.ls8_c00451{letter-spacing:0.192240px;}
.ls2_c00451{letter-spacing:0.197640px;}
.ls0_c00451{letter-spacing:319.518000px;}
.ls1_c00451{letter-spacing:2233.800000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:-16.667640px;}
.ws1_c00451{word-spacing:-16.470000px;}
.ws2_c00451{word-spacing:-16.404120px;}
.ws4_c00451{word-spacing:-16.206480px;}
.ws3_c00451{word-spacing:-11.970000px;}
.wsc_c00451{word-spacing:-0.480600px;}
.wsa_c00451{word-spacing:-0.197640px;}
.ws6_c00451{word-spacing:-0.162000px;}
.ws7_c00451{word-spacing:-0.096120px;}
.wsb_c00451{word-spacing:-0.095760px;}
.ws5_c00451{word-spacing:0.000000px;}
.ws8_c00451{word-spacing:0.065880px;}
.ws9_c00451{word-spacing:0.131760px;}
._1_c00451{margin-left:-1.199160px;}
._0_c00451{width:1.239948px;}
.fc1_c00451{color:transparent;}
.fc0_c00451{color:rgb(0,0,0);}
.fs4_c00451{font-size:47.880000px;}
.fs0_c00451{font-size:54.000000px;}
.fs3_c00451{font-size:65.880000px;}
.fs1_c00451{font-size:72.000000px;}
.fs2_c00451{font-size:96.120000px;}
.y46_c00451{bottom:-15.210000px;}
.y0_c00451{bottom:0.000000px;}
.y43_c00451{bottom:2.880000px;}
.y54_c00451{bottom:2.970000px;}
.y39_c00451{bottom:3.780000px;}
.y58_c00451{bottom:5.220000px;}
.y35_c00451{bottom:5.310000px;}
.y56_c00451{bottom:22.680000px;}
.y45_c00451{bottom:22.770000px;}
.y38_c00451{bottom:41.670000px;}
.y4a_c00451{bottom:41.760000px;}
.y65_c00451{bottom:57.240000px;}
.y33_c00451{bottom:137.520000px;}
.y64_c00451{bottom:142.650000px;}
.y63_c00451{bottom:157.770000px;}
.y32_c00451{bottom:158.220000px;}
.y62_c00451{bottom:175.140000px;}
.y31_c00451{bottom:178.920000px;}
.y61_c00451{bottom:198.810000px;}
.y30_c00451{bottom:199.620000px;}
.y2f_c00451{bottom:220.320000px;}
.y60_c00451{bottom:221.310000px;}
.y2e_c00451{bottom:241.020000px;}
.y5f_c00451{bottom:243.810000px;}
.y2d_c00451{bottom:261.720000px;}
.y5e_c00451{bottom:266.310000px;}
.y2c_c00451{bottom:282.420000px;}
.y5d_c00451{bottom:288.810000px;}
.y2b_c00451{bottom:303.120000px;}
.y5c_c00451{bottom:311.310000px;}
.y2a_c00451{bottom:323.820000px;}
.y5b_c00451{bottom:333.810000px;}
.y29_c00451{bottom:344.520000px;}
.y5a_c00451{bottom:359.640000px;}
.y28_c00451{bottom:365.220000px;}
.y59_c00451{bottom:382.410000px;}
.y27_c00451{bottom:385.920000px;}
.y26_c00451{bottom:406.620000px;}
.y57_c00451{bottom:418.860000px;}
.y25_c00451{bottom:427.320000px;}
.y24_c00451{bottom:448.020000px;}
.y55_c00451{bottom:449.010000px;}
.y23_c00451{bottom:468.720000px;}
.y53_c00451{bottom:486.900000px;}
.y22_c00451{bottom:489.420000px;}
.y52_c00451{bottom:503.100000px;}
.y21_c00451{bottom:510.120000px;}
.y51_c00451{bottom:526.770000px;}
.y20_c00451{bottom:530.820000px;}
.y50_c00451{bottom:549.270000px;}
.y1f_c00451{bottom:551.520000px;}
.y4f_c00451{bottom:571.770000px;}
.y1e_c00451{bottom:572.220000px;}
.y1d_c00451{bottom:592.920000px;}
.y4e_c00451{bottom:594.270000px;}
.y1c_c00451{bottom:613.620000px;}
.y4d_c00451{bottom:616.770000px;}
.y1b_c00451{bottom:634.320000px;}
.y4c_c00451{bottom:639.270000px;}
.y1a_c00451{bottom:655.020000px;}
.y4b_c00451{bottom:661.770000px;}
.y19_c00451{bottom:675.720000px;}
.y49_c00451{bottom:687.600000px;}
.y18_c00451{bottom:696.420000px;}
.y48_c00451{bottom:710.370000px;}
.y17_c00451{bottom:717.120000px;}
.y16_c00451{bottom:737.820000px;}
.y47_c00451{bottom:746.820000px;}
.y15_c00451{bottom:758.520000px;}
.y44_c00451{bottom:776.970000px;}
.y14_c00451{bottom:779.220000px;}
.y13_c00451{bottom:799.920000px;}
.y42_c00451{bottom:814.950000px;}
.y12_c00451{bottom:820.620000px;}
.y41_c00451{bottom:830.970000px;}
.y11_c00451{bottom:841.230000px;}
.y40_c00451{bottom:854.550000px;}
.y10_c00451{bottom:861.930000px;}
.y3f_c00451{bottom:877.050000px;}
.yf_c00451{bottom:882.630000px;}
.y3e_c00451{bottom:899.550000px;}
.ye_c00451{bottom:903.330000px;}
.y3d_c00451{bottom:922.050000px;}
.yd_c00451{bottom:924.030000px;}
.y3c_c00451{bottom:944.550000px;}
.yc_c00451{bottom:944.730000px;}
.yb_c00451{bottom:965.430000px;}
.y3b_c00451{bottom:967.050000px;}
.ya_c00451{bottom:986.130000px;}
.y3a_c00451{bottom:989.550000px;}
.y9_c00451{bottom:1006.830000px;}
.y37_c00451{bottom:1015.470000px;}
.y8_c00451{bottom:1027.530000px;}
.y36_c00451{bottom:1038.240000px;}
.y7_c00451{bottom:1048.230000px;}
.y6_c00451{bottom:1068.930000px;}
.y34_c00451{bottom:1074.600000px;}
.y5_c00451{bottom:1110.330000px;}
.y4_c00451{bottom:1131.030000px;}
.y3_c00451{bottom:1150.915500px;}
.y2_c00451{bottom:1166.400000px;}
.y1_c00451{bottom:1197.450000px;}
.hc_c00451{height:13.770000px;}
.h11_c00451{height:13.950000px;}
.h15_c00451{height:15.120000px;}
.ha_c00451{height:22.498500px;}
.h9_c00451{height:22.500000px;}
.h13_c00451{height:23.578500px;}
.hb_c00451{height:23.580000px;}
.h8_c00451{height:23.670000px;}
.h14_c00451{height:23.671500px;}
.hf_c00451{height:30.150000px;}
.h4_c00451{height:31.500000px;}
.h12_c00451{height:37.890000px;}
.he_c00451{height:37.981500px;}
.hd_c00451{height:46.991602px;}
.h2_c00451{height:52.998047px;}
.h7_c00451{height:56.880000px;}
.h10_c00451{height:56.970000px;}
.h6_c00451{height:64.657617px;}
.h3_c00451{height:70.664062px;}
.h5_c00451{height:96.870938px;}
.h0_c00451{height:1262.880000px;}
.h1_c00451{height:1263.000000px;}
.w5_c00451{width:104.580000px;}
.w4_c00451{width:104.940000px;}
.w8_c00451{width:105.750000px;}
.w9_c00451{width:105.751500px;}
.w6_c00451{width:342.718500px;}
.w7_c00451{width:345.060000px;}
.w3_c00451{width:556.560000px;}
.w2_c00451{width:893.031000px;}
.w0_c00451{width:893.070000px;}
.w1_c00451{width:893.250000px;}
.x0_c00451{left:0.000000px;}
.x10_c00451{left:4.140000px;}
.x15_c00451{left:5.310000px;}
.xb_c00451{left:17.100000px;}
.x18_c00451{left:22.140000px;}
.x13_c00451{left:30.240000px;}
.xd_c00451{left:35.820000px;}
.x9_c00451{left:39.060000px;}
.x11_c00451{left:42.660000px;}
.x19_c00451{left:44.100000px;}
.x1b_c00451{left:49.590000px;}
.x14_c00451{left:52.290000px;}
.x17_c00451{left:55.080000px;}
.x12_c00451{left:57.780000px;}
.x6_c00451{left:115.290000px;}
.x5_c00451{left:122.310000px;}
.xf_c00451{left:123.480000px;}
.x2_c00451{left:127.620000px;}
.x16_c00451{left:142.650000px;}
.x1a_c00451{left:151.290000px;}
.x7_c00451{left:263.250000px;}
.x1_c00451{left:446.580000px;}
.x8_c00451{left:467.370000px;}
.xa_c00451{left:478.530000px;}
.xc_c00451{left:573.120000px;}
.xe_c00451{left:584.280000px;}
.x3_c00451{left:690.570000px;}
.x4_c00451{left:906.570000px;}
@media print{
.v2_c00451{vertical-align:-73.600000pt;}
.v1_c00451{vertical-align:-55.056000pt;}
.v0_c00451{vertical-align:0.000000pt;}
.ls9_c00451{letter-spacing:-0.234240pt;}
.ls5_c00451{letter-spacing:-0.170880pt;}
.ls6_c00451{letter-spacing:-0.058560pt;}
.ls4_c00451{letter-spacing:0.000000pt;}
.ls3_c00451{letter-spacing:0.019520pt;}
.ls7_c00451{letter-spacing:0.058560pt;}
.ls8_c00451{letter-spacing:0.170880pt;}
.ls2_c00451{letter-spacing:0.175680pt;}
.ls0_c00451{letter-spacing:284.016000pt;}
.ls1_c00451{letter-spacing:1985.600000pt;}
.ws0_c00451{word-spacing:-14.815680pt;}
.ws1_c00451{word-spacing:-14.640000pt;}
.ws2_c00451{word-spacing:-14.581440pt;}
.ws4_c00451{word-spacing:-14.405760pt;}
.ws3_c00451{word-spacing:-10.640000pt;}
.wsc_c00451{word-spacing:-0.427200pt;}
.wsa_c00451{word-spacing:-0.175680pt;}
.ws6_c00451{word-spacing:-0.144000pt;}
.ws7_c00451{word-spacing:-0.085440pt;}
.wsb_c00451{word-spacing:-0.085120pt;}
.ws5_c00451{word-spacing:0.000000pt;}
.ws8_c00451{word-spacing:0.058560pt;}
.ws9_c00451{word-spacing:0.117120pt;}
._1_c00451{margin-left:-1.065920pt;}
._0_c00451{width:1.102176pt;}
.fs4_c00451{font-size:42.560000pt;}
.fs0_c00451{font-size:48.000000pt;}
.fs3_c00451{font-size:58.560000pt;}
.fs1_c00451{font-size:64.000000pt;}
.fs2_c00451{font-size:85.440000pt;}
.y46_c00451{bottom:-13.520000pt;}
.y0_c00451{bottom:0.000000pt;}
.y43_c00451{bottom:2.560000pt;}
.y54_c00451{bottom:2.640000pt;}
.y39_c00451{bottom:3.360000pt;}
.y58_c00451{bottom:4.640000pt;}
.y35_c00451{bottom:4.720000pt;}
.y56_c00451{bottom:20.160000pt;}
.y45_c00451{bottom:20.240000pt;}
.y38_c00451{bottom:37.040000pt;}
.y4a_c00451{bottom:37.120000pt;}
.y65_c00451{bottom:50.880000pt;}
.y33_c00451{bottom:122.240000pt;}
.y64_c00451{bottom:126.800000pt;}
.y63_c00451{bottom:140.240000pt;}
.y32_c00451{bottom:140.640000pt;}
.y62_c00451{bottom:155.680000pt;}
.y31_c00451{bottom:159.040000pt;}
.y61_c00451{bottom:176.720000pt;}
.y30_c00451{bottom:177.440000pt;}
.y2f_c00451{bottom:195.840000pt;}
.y60_c00451{bottom:196.720000pt;}
.y2e_c00451{bottom:214.240000pt;}
.y5f_c00451{bottom:216.720000pt;}
.y2d_c00451{bottom:232.640000pt;}
.y5e_c00451{bottom:236.720000pt;}
.y2c_c00451{bottom:251.040000pt;}
.y5d_c00451{bottom:256.720000pt;}
.y2b_c00451{bottom:269.440000pt;}
.y5c_c00451{bottom:276.720000pt;}
.y2a_c00451{bottom:287.840000pt;}
.y5b_c00451{bottom:296.720000pt;}
.y29_c00451{bottom:306.240000pt;}
.y5a_c00451{bottom:319.680000pt;}
.y28_c00451{bottom:324.640000pt;}
.y59_c00451{bottom:339.920000pt;}
.y27_c00451{bottom:343.040000pt;}
.y26_c00451{bottom:361.440000pt;}
.y57_c00451{bottom:372.320000pt;}
.y25_c00451{bottom:379.840000pt;}
.y24_c00451{bottom:398.240000pt;}
.y55_c00451{bottom:399.120000pt;}
.y23_c00451{bottom:416.640000pt;}
.y53_c00451{bottom:432.800000pt;}
.y22_c00451{bottom:435.040000pt;}
.y52_c00451{bottom:447.200000pt;}
.y21_c00451{bottom:453.440000pt;}
.y51_c00451{bottom:468.240000pt;}
.y20_c00451{bottom:471.840000pt;}
.y50_c00451{bottom:488.240000pt;}
.y1f_c00451{bottom:490.240000pt;}
.y4f_c00451{bottom:508.240000pt;}
.y1e_c00451{bottom:508.640000pt;}
.y1d_c00451{bottom:527.040000pt;}
.y4e_c00451{bottom:528.240000pt;}
.y1c_c00451{bottom:545.440000pt;}
.y4d_c00451{bottom:548.240000pt;}
.y1b_c00451{bottom:563.840000pt;}
.y4c_c00451{bottom:568.240000pt;}
.y1a_c00451{bottom:582.240000pt;}
.y4b_c00451{bottom:588.240000pt;}
.y19_c00451{bottom:600.640000pt;}
.y49_c00451{bottom:611.200000pt;}
.y18_c00451{bottom:619.040000pt;}
.y48_c00451{bottom:631.440000pt;}
.y17_c00451{bottom:637.440000pt;}
.y16_c00451{bottom:655.840000pt;}
.y47_c00451{bottom:663.840000pt;}
.y15_c00451{bottom:674.240000pt;}
.y44_c00451{bottom:690.640000pt;}
.y14_c00451{bottom:692.640000pt;}
.y13_c00451{bottom:711.040000pt;}
.y42_c00451{bottom:724.400000pt;}
.y12_c00451{bottom:729.440000pt;}
.y41_c00451{bottom:738.640000pt;}
.y11_c00451{bottom:747.760000pt;}
.y40_c00451{bottom:759.600000pt;}
.y10_c00451{bottom:766.160000pt;}
.y3f_c00451{bottom:779.600000pt;}
.yf_c00451{bottom:784.560000pt;}
.y3e_c00451{bottom:799.600000pt;}
.ye_c00451{bottom:802.960000pt;}
.y3d_c00451{bottom:819.600000pt;}
.yd_c00451{bottom:821.360000pt;}
.y3c_c00451{bottom:839.600000pt;}
.yc_c00451{bottom:839.760000pt;}
.yb_c00451{bottom:858.160000pt;}
.y3b_c00451{bottom:859.600000pt;}
.ya_c00451{bottom:876.560000pt;}
.y3a_c00451{bottom:879.600000pt;}
.y9_c00451{bottom:894.960000pt;}
.y37_c00451{bottom:902.640000pt;}
.y8_c00451{bottom:913.360000pt;}
.y36_c00451{bottom:922.880000pt;}
.y7_c00451{bottom:931.760000pt;}
.y6_c00451{bottom:950.160000pt;}
.y34_c00451{bottom:955.200000pt;}
.y5_c00451{bottom:986.960000pt;}
.y4_c00451{bottom:1005.360000pt;}
.y3_c00451{bottom:1023.036000pt;}
.y2_c00451{bottom:1036.800000pt;}
.y1_c00451{bottom:1064.400000pt;}
.hc_c00451{height:12.240000pt;}
.h11_c00451{height:12.400000pt;}
.h15_c00451{height:13.440000pt;}
.ha_c00451{height:19.998667pt;}
.h9_c00451{height:20.000000pt;}
.h13_c00451{height:20.958667pt;}
.hb_c00451{height:20.960000pt;}
.h8_c00451{height:21.040000pt;}
.h14_c00451{height:21.041333pt;}
.hf_c00451{height:26.800000pt;}
.h4_c00451{height:28.000000pt;}
.h12_c00451{height:33.680000pt;}
.he_c00451{height:33.761333pt;}
.hd_c00451{height:41.770312pt;}
.h2_c00451{height:47.109375pt;}
.h7_c00451{height:50.560000pt;}
.h10_c00451{height:50.640000pt;}
.h6_c00451{height:57.473437pt;}
.h3_c00451{height:62.812500pt;}
.h5_c00451{height:86.107500pt;}
.h0_c00451{height:1122.560000pt;}
.h1_c00451{height:1122.666667pt;}
.w5_c00451{width:92.960000pt;}
.w4_c00451{width:93.280000pt;}
.w8_c00451{width:94.000000pt;}
.w9_c00451{width:94.001333pt;}
.w6_c00451{width:304.638667pt;}
.w7_c00451{width:306.720000pt;}
.w3_c00451{width:494.720000pt;}
.w2_c00451{width:793.805333pt;}
.w0_c00451{width:793.840000pt;}
.w1_c00451{width:794.000000pt;}
.x0_c00451{left:0.000000pt;}
.x10_c00451{left:3.680000pt;}
.x15_c00451{left:4.720000pt;}
.xb_c00451{left:15.200000pt;}
.x18_c00451{left:19.680000pt;}
.x13_c00451{left:26.880000pt;}
.xd_c00451{left:31.840000pt;}
.x9_c00451{left:34.720000pt;}
.x11_c00451{left:37.920000pt;}
.x19_c00451{left:39.200000pt;}
.x1b_c00451{left:44.080000pt;}
.x14_c00451{left:46.480000pt;}
.x17_c00451{left:48.960000pt;}
.x12_c00451{left:51.360000pt;}
.x6_c00451{left:102.480000pt;}
.x5_c00451{left:108.720000pt;}
.xf_c00451{left:109.760000pt;}
.x2_c00451{left:113.440000pt;}
.x16_c00451{left:126.800000pt;}
.x1a_c00451{left:134.480000pt;}
.x7_c00451{left:234.000000pt;}
.x1_c00451{left:396.960000pt;}
.x8_c00451{left:415.440000pt;}
.xa_c00451{left:425.360000pt;}
.xc_c00451{left:509.440000pt;}
.xe_c00451{left:519.360000pt;}
.x3_c00451{left:613.840000pt;}
.x4_c00451{left:805.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_c00452 {
    display:none;
  }
  .loading-indicator_c00452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00452 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00452 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00452" -> "#page-container .classname_c00452")
 */
.pf_c00452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00452 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00452 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00452 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00452 {overflow:visible;}
  }
}
.c_c00452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00452 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00452:after { /* webkit #35443 */
  content: '';
}
.t_c00452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00452 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00452 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00452 { /* info for Javascript */
  display:none;
}
.l_c00452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00452:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00452;src:url('chunks/assets/font_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_2b9117dd5a766902c53d5823.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00452{vertical-align:-82.800000px;}
.v0_c00452{vertical-align:0.000000px;}
.ls8_c00452{letter-spacing:-0.263520px;}
.ls5_c00452{letter-spacing:-0.192240px;}
.ls4_c00452{letter-spacing:-0.108000px;}
.ls6_c00452{letter-spacing:-0.065880px;}
.ls3_c00452{letter-spacing:0.000000px;}
.ls2_c00452{letter-spacing:0.021960px;}
.ls7_c00452{letter-spacing:0.065880px;}
.ls1_c00452{letter-spacing:0.197640px;}
.ls0_c00452{letter-spacing:2233.800000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00452{word-spacing:-16.667640px;}
.ws1_c00452{word-spacing:-16.470000px;}
.ws2_c00452{word-spacing:-16.404120px;}
.ws4_c00452{word-spacing:-16.206480px;}
.ws3_c00452{word-spacing:-11.970000px;}
.wsb_c00452{word-spacing:-0.197640px;}
.ws8_c00452{word-spacing:-0.096120px;}
.wsc_c00452{word-spacing:-0.095760px;}
.ws5_c00452{word-spacing:0.000000px;}
.ws9_c00452{word-spacing:0.065880px;}
.wsa_c00452{word-spacing:0.131760px;}
.ws7_c00452{word-spacing:0.162000px;}
.ws6_c00452{word-spacing:0.270000px;}
.wsd_c00452{word-spacing:0.527040px;}
._1_c00452{margin-left:-1.058400px;}
._0_c00452{width:1.220400px;}
.fc1_c00452{color:transparent;}
.fc0_c00452{color:rgb(0,0,0);}
.fs4_c00452{font-size:47.880000px;}
.fs0_c00452{font-size:54.000000px;}
.fs3_c00452{font-size:65.880000px;}
.fs1_c00452{font-size:72.000000px;}
.fs2_c00452{font-size:96.120000px;}
.y47_c00452{bottom:-15.210000px;}
.y0_c00452{bottom:0.000000px;}
.y44_c00452{bottom:2.880000px;}
.y55_c00452{bottom:2.970000px;}
.y3a_c00452{bottom:3.780000px;}
.y59_c00452{bottom:5.220000px;}
.y36_c00452{bottom:5.310000px;}
.y57_c00452{bottom:22.680000px;}
.y46_c00452{bottom:22.770000px;}
.y39_c00452{bottom:41.670000px;}
.y4b_c00452{bottom:41.760000px;}
.y66_c00452{bottom:57.240000px;}
.y34_c00452{bottom:137.520000px;}
.y65_c00452{bottom:143.550000px;}
.y64_c00452{bottom:157.320000px;}
.y33_c00452{bottom:158.220000px;}
.y63_c00452{bottom:173.340000px;}
.y32_c00452{bottom:178.920000px;}
.y62_c00452{bottom:197.010000px;}
.y31_c00452{bottom:199.620000px;}
.y61_c00452{bottom:219.510000px;}
.y30_c00452{bottom:220.320000px;}
.y2f_c00452{bottom:241.020000px;}
.y60_c00452{bottom:242.010000px;}
.y2e_c00452{bottom:261.720000px;}
.y5f_c00452{bottom:264.510000px;}
.y2d_c00452{bottom:282.420000px;}
.y5e_c00452{bottom:287.010000px;}
.y2c_c00452{bottom:303.120000px;}
.y5d_c00452{bottom:309.510000px;}
.y2b_c00452{bottom:323.820000px;}
.y5c_c00452{bottom:332.010000px;}
.y2a_c00452{bottom:344.520000px;}
.y5b_c00452{bottom:357.840000px;}
.y29_c00452{bottom:365.220000px;}
.y5a_c00452{bottom:380.610000px;}
.y28_c00452{bottom:385.920000px;}
.y27_c00452{bottom:406.620000px;}
.y58_c00452{bottom:417.060000px;}
.y26_c00452{bottom:427.320000px;}
.y56_c00452{bottom:447.210000px;}
.y25_c00452{bottom:448.020000px;}
.y24_c00452{bottom:468.720000px;}
.y54_c00452{bottom:485.100000px;}
.y23_c00452{bottom:489.420000px;}
.y53_c00452{bottom:504.450000px;}
.y22_c00452{bottom:510.120000px;}
.y52_c00452{bottom:528.120000px;}
.y21_c00452{bottom:530.820000px;}
.y51_c00452{bottom:550.620000px;}
.y20_c00452{bottom:551.520000px;}
.y1f_c00452{bottom:572.220000px;}
.y50_c00452{bottom:573.120000px;}
.y1e_c00452{bottom:592.920000px;}
.y4f_c00452{bottom:595.620000px;}
.y1d_c00452{bottom:613.620000px;}
.y4e_c00452{bottom:618.120000px;}
.y1c_c00452{bottom:634.320000px;}
.y4d_c00452{bottom:640.620000px;}
.y1b_c00452{bottom:655.020000px;}
.y4c_c00452{bottom:663.120000px;}
.y1a_c00452{bottom:675.720000px;}
.y4a_c00452{bottom:688.950000px;}
.y19_c00452{bottom:696.420000px;}
.y49_c00452{bottom:711.720000px;}
.y18_c00452{bottom:717.120000px;}
.y17_c00452{bottom:737.820000px;}
.y48_c00452{bottom:748.170000px;}
.y16_c00452{bottom:758.520000px;}
.y45_c00452{bottom:778.320000px;}
.y15_c00452{bottom:779.220000px;}
.y14_c00452{bottom:799.920000px;}
.y43_c00452{bottom:816.300000px;}
.y13_c00452{bottom:820.620000px;}
.y42_c00452{bottom:832.320000px;}
.y12_c00452{bottom:841.230000px;}
.y41_c00452{bottom:855.900000px;}
.y11_c00452{bottom:861.930000px;}
.y40_c00452{bottom:878.400000px;}
.y10_c00452{bottom:882.630000px;}
.y3f_c00452{bottom:900.900000px;}
.yf_c00452{bottom:903.330000px;}
.y3e_c00452{bottom:923.400000px;}
.ye_c00452{bottom:924.030000px;}
.yd_c00452{bottom:944.730000px;}
.y3d_c00452{bottom:945.900000px;}
.yc_c00452{bottom:965.430000px;}
.y3c_c00452{bottom:968.400000px;}
.yb_c00452{bottom:986.130000px;}
.y3b_c00452{bottom:990.900000px;}
.ya_c00452{bottom:1006.830000px;}
.y38_c00452{bottom:1016.820000px;}
.y9_c00452{bottom:1027.530000px;}
.y37_c00452{bottom:1039.590000px;}
.y8_c00452{bottom:1048.230000px;}
.y7_c00452{bottom:1068.930000px;}
.y35_c00452{bottom:1075.950000px;}
.y6_c00452{bottom:1110.330000px;}
.y5_c00452{bottom:1131.030000px;}
.y4_c00452{bottom:1150.920000px;}
.y3_c00452{bottom:1166.404500px;}
.y2_c00452{bottom:1181.970000px;}
.y1_c00452{bottom:1197.450000px;}
.hd_c00452{height:13.770000px;}
.h11_c00452{height:17.100000px;}
.hb_c00452{height:22.498500px;}
.ha_c00452{height:22.500000px;}
.hc_c00452{height:23.580000px;}
.h9_c00452{height:23.670000px;}
.h5_c00452{height:30.150000px;}
.h13_c00452{height:30.151500px;}
.h12_c00452{height:37.888500px;}
.hf_c00452{height:37.981500px;}
.he_c00452{height:46.991602px;}
.h3_c00452{height:52.971680px;}
.h2_c00452{height:52.998047px;}
.h8_c00452{height:56.880000px;}
.h10_c00452{height:56.970000px;}
.h7_c00452{height:64.657617px;}
.h4_c00452{height:70.664062px;}
.h6_c00452{height:96.870938px;}
.h0_c00452{height:1262.880000px;}
.h1_c00452{height:1263.000000px;}
.w5_c00452{width:104.580000px;}
.w4_c00452{width:104.940000px;}
.w8_c00452{width:105.750000px;}
.w9_c00452{width:105.751500px;}
.w6_c00452{width:342.718500px;}
.w7_c00452{width:345.060000px;}
.w3_c00452{width:556.560000px;}
.w2_c00452{width:893.031000px;}
.w0_c00452{width:893.070000px;}
.w1_c00452{width:893.250000px;}
.x0_c00452{left:0.000000px;}
.x11_c00452{left:4.140000px;}
.x19_c00452{left:5.310000px;}
.xc_c00452{left:17.100000px;}
.x17_c00452{left:30.240000px;}
.xe_c00452{left:35.820000px;}
.xa_c00452{left:39.060000px;}
.x16_c00452{left:41.310000px;}
.x13_c00452{left:42.660000px;}
.x14_c00452{left:44.100000px;}
.x15_c00452{left:49.590000px;}
.x1b_c00452{left:52.290000px;}
.x12_c00452{left:54.990000px;}
.x18_c00452{left:57.780000px;}
.x6_c00452{left:122.310000px;}
.x10_c00452{left:123.480000px;}
.x1a_c00452{left:125.370000px;}
.x3_c00452{left:127.620000px;}
.x1c_c00452{left:129.960000px;}
.x7_c00452{left:135.990000px;}
.x8_c00452{left:263.250000px;}
.x2_c00452{left:425.160000px;}
.x1_c00452{left:446.580000px;}
.x9_c00452{left:467.370000px;}
.xb_c00452{left:478.530000px;}
.xd_c00452{left:573.120000px;}
.xf_c00452{left:584.280000px;}
.x4_c00452{left:690.570000px;}
.x1d_c00452{left:738.540000px;}
.x5_c00452{left:906.570000px;}
@media print{
.v1_c00452{vertical-align:-73.600000pt;}
.v0_c00452{vertical-align:0.000000pt;}
.ls8_c00452{letter-spacing:-0.234240pt;}
.ls5_c00452{letter-spacing:-0.170880pt;}
.ls4_c00452{letter-spacing:-0.096000pt;}
.ls6_c00452{letter-spacing:-0.058560pt;}
.ls3_c00452{letter-spacing:0.000000pt;}
.ls2_c00452{letter-spacing:0.019520pt;}
.ls7_c00452{letter-spacing:0.058560pt;}
.ls1_c00452{letter-spacing:0.175680pt;}
.ls0_c00452{letter-spacing:1985.600000pt;}
.ws0_c00452{word-spacing:-14.815680pt;}
.ws1_c00452{word-spacing:-14.640000pt;}
.ws2_c00452{word-spacing:-14.581440pt;}
.ws4_c00452{word-spacing:-14.405760pt;}
.ws3_c00452{word-spacing:-10.640000pt;}
.wsb_c00452{word-spacing:-0.175680pt;}
.ws8_c00452{word-spacing:-0.085440pt;}
.wsc_c00452{word-spacing:-0.085120pt;}
.ws5_c00452{word-spacing:0.000000pt;}
.ws9_c00452{word-spacing:0.058560pt;}
.wsa_c00452{word-spacing:0.117120pt;}
.ws7_c00452{word-spacing:0.144000pt;}
.ws6_c00452{word-spacing:0.240000pt;}
.wsd_c00452{word-spacing:0.468480pt;}
._1_c00452{margin-left:-0.940800pt;}
._0_c00452{width:1.084800pt;}
.fs4_c00452{font-size:42.560000pt;}
.fs0_c00452{font-size:48.000000pt;}
.fs3_c00452{font-size:58.560000pt;}
.fs1_c00452{font-size:64.000000pt;}
.fs2_c00452{font-size:85.440000pt;}
.y47_c00452{bottom:-13.520000pt;}
.y0_c00452{bottom:0.000000pt;}
.y44_c00452{bottom:2.560000pt;}
.y55_c00452{bottom:2.640000pt;}
.y3a_c00452{bottom:3.360000pt;}
.y59_c00452{bottom:4.640000pt;}
.y36_c00452{bottom:4.720000pt;}
.y57_c00452{bottom:20.160000pt;}
.y46_c00452{bottom:20.240000pt;}
.y39_c00452{bottom:37.040000pt;}
.y4b_c00452{bottom:37.120000pt;}
.y66_c00452{bottom:50.880000pt;}
.y34_c00452{bottom:122.240000pt;}
.y65_c00452{bottom:127.600000pt;}
.y64_c00452{bottom:139.840000pt;}
.y33_c00452{bottom:140.640000pt;}
.y63_c00452{bottom:154.080000pt;}
.y32_c00452{bottom:159.040000pt;}
.y62_c00452{bottom:175.120000pt;}
.y31_c00452{bottom:177.440000pt;}
.y61_c00452{bottom:195.120000pt;}
.y30_c00452{bottom:195.840000pt;}
.y2f_c00452{bottom:214.240000pt;}
.y60_c00452{bottom:215.120000pt;}
.y2e_c00452{bottom:232.640000pt;}
.y5f_c00452{bottom:235.120000pt;}
.y2d_c00452{bottom:251.040000pt;}
.y5e_c00452{bottom:255.120000pt;}
.y2c_c00452{bottom:269.440000pt;}
.y5d_c00452{bottom:275.120000pt;}
.y2b_c00452{bottom:287.840000pt;}
.y5c_c00452{bottom:295.120000pt;}
.y2a_c00452{bottom:306.240000pt;}
.y5b_c00452{bottom:318.080000pt;}
.y29_c00452{bottom:324.640000pt;}
.y5a_c00452{bottom:338.320000pt;}
.y28_c00452{bottom:343.040000pt;}
.y27_c00452{bottom:361.440000pt;}
.y58_c00452{bottom:370.720000pt;}
.y26_c00452{bottom:379.840000pt;}
.y56_c00452{bottom:397.520000pt;}
.y25_c00452{bottom:398.240000pt;}
.y24_c00452{bottom:416.640000pt;}
.y54_c00452{bottom:431.200000pt;}
.y23_c00452{bottom:435.040000pt;}
.y53_c00452{bottom:448.400000pt;}
.y22_c00452{bottom:453.440000pt;}
.y52_c00452{bottom:469.440000pt;}
.y21_c00452{bottom:471.840000pt;}
.y51_c00452{bottom:489.440000pt;}
.y20_c00452{bottom:490.240000pt;}
.y1f_c00452{bottom:508.640000pt;}
.y50_c00452{bottom:509.440000pt;}
.y1e_c00452{bottom:527.040000pt;}
.y4f_c00452{bottom:529.440000pt;}
.y1d_c00452{bottom:545.440000pt;}
.y4e_c00452{bottom:549.440000pt;}
.y1c_c00452{bottom:563.840000pt;}
.y4d_c00452{bottom:569.440000pt;}
.y1b_c00452{bottom:582.240000pt;}
.y4c_c00452{bottom:589.440000pt;}
.y1a_c00452{bottom:600.640000pt;}
.y4a_c00452{bottom:612.400000pt;}
.y19_c00452{bottom:619.040000pt;}
.y49_c00452{bottom:632.640000pt;}
.y18_c00452{bottom:637.440000pt;}
.y17_c00452{bottom:655.840000pt;}
.y48_c00452{bottom:665.040000pt;}
.y16_c00452{bottom:674.240000pt;}
.y45_c00452{bottom:691.840000pt;}
.y15_c00452{bottom:692.640000pt;}
.y14_c00452{bottom:711.040000pt;}
.y43_c00452{bottom:725.600000pt;}
.y13_c00452{bottom:729.440000pt;}
.y42_c00452{bottom:739.840000pt;}
.y12_c00452{bottom:747.760000pt;}
.y41_c00452{bottom:760.800000pt;}
.y11_c00452{bottom:766.160000pt;}
.y40_c00452{bottom:780.800000pt;}
.y10_c00452{bottom:784.560000pt;}
.y3f_c00452{bottom:800.800000pt;}
.yf_c00452{bottom:802.960000pt;}
.y3e_c00452{bottom:820.800000pt;}
.ye_c00452{bottom:821.360000pt;}
.yd_c00452{bottom:839.760000pt;}
.y3d_c00452{bottom:840.800000pt;}
.yc_c00452{bottom:858.160000pt;}
.y3c_c00452{bottom:860.800000pt;}
.yb_c00452{bottom:876.560000pt;}
.y3b_c00452{bottom:880.800000pt;}
.ya_c00452{bottom:894.960000pt;}
.y38_c00452{bottom:903.840000pt;}
.y9_c00452{bottom:913.360000pt;}
.y37_c00452{bottom:924.080000pt;}
.y8_c00452{bottom:931.760000pt;}
.y7_c00452{bottom:950.160000pt;}
.y35_c00452{bottom:956.400000pt;}
.y6_c00452{bottom:986.960000pt;}
.y5_c00452{bottom:1005.360000pt;}
.y4_c00452{bottom:1023.040000pt;}
.y3_c00452{bottom:1036.804000pt;}
.y2_c00452{bottom:1050.640000pt;}
.y1_c00452{bottom:1064.400000pt;}
.hd_c00452{height:12.240000pt;}
.h11_c00452{height:15.200000pt;}
.hb_c00452{height:19.998667pt;}
.ha_c00452{height:20.000000pt;}
.hc_c00452{height:20.960000pt;}
.h9_c00452{height:21.040000pt;}
.h5_c00452{height:26.800000pt;}
.h13_c00452{height:26.801333pt;}
.h12_c00452{height:33.678667pt;}
.hf_c00452{height:33.761333pt;}
.he_c00452{height:41.770312pt;}
.h3_c00452{height:47.085938pt;}
.h2_c00452{height:47.109375pt;}
.h8_c00452{height:50.560000pt;}
.h10_c00452{height:50.640000pt;}
.h7_c00452{height:57.473437pt;}
.h4_c00452{height:62.812500pt;}
.h6_c00452{height:86.107500pt;}
.h0_c00452{height:1122.560000pt;}
.h1_c00452{height:1122.666667pt;}
.w5_c00452{width:92.960000pt;}
.w4_c00452{width:93.280000pt;}
.w8_c00452{width:94.000000pt;}
.w9_c00452{width:94.001333pt;}
.w6_c00452{width:304.638667pt;}
.w7_c00452{width:306.720000pt;}
.w3_c00452{width:494.720000pt;}
.w2_c00452{width:793.805333pt;}
.w0_c00452{width:793.840000pt;}
.w1_c00452{width:794.000000pt;}
.x0_c00452{left:0.000000pt;}
.x11_c00452{left:3.680000pt;}
.x19_c00452{left:4.720000pt;}
.xc_c00452{left:15.200000pt;}
.x17_c00452{left:26.880000pt;}
.xe_c00452{left:31.840000pt;}
.xa_c00452{left:34.720000pt;}
.x16_c00452{left:36.720000pt;}
.x13_c00452{left:37.920000pt;}
.x14_c00452{left:39.200000pt;}
.x15_c00452{left:44.080000pt;}
.x1b_c00452{left:46.480000pt;}
.x12_c00452{left:48.880000pt;}
.x18_c00452{left:51.360000pt;}
.x6_c00452{left:108.720000pt;}
.x10_c00452{left:109.760000pt;}
.x1a_c00452{left:111.440000pt;}
.x3_c00452{left:113.440000pt;}
.x1c_c00452{left:115.520000pt;}
.x7_c00452{left:120.880000pt;}
.x8_c00452{left:234.000000pt;}
.x2_c00452{left:377.920000pt;}
.x1_c00452{left:396.960000pt;}
.x9_c00452{left:415.440000pt;}
.xb_c00452{left:425.360000pt;}
.xd_c00452{left:509.440000pt;}
.xf_c00452{left:519.360000pt;}
.x4_c00452{left:613.840000pt;}
.x1d_c00452{left:656.480000pt;}
.x5_c00452{left:805.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_c00453 {
    display:none;
  }
  .loading-indicator_c00453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00453 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00453 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00453" -> "#page-container .classname_c00453")
 */
.pf_c00453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00453 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00453 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00453 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00453 {overflow:visible;}
  }
}
.c_c00453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00453 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00453:after { /* webkit #35443 */
  content: '';
}
.t_c00453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00453 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00453 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00453 { /* info for Javascript */
  display:none;
}
.l_c00453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00453:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00453;src:url('chunks/assets/font_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_c863576f584b9a93c53f18b9.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2_c00453{vertical-align:-82.800000px;}
.v1_c00453{vertical-align:-61.938000px;}
.v0_c00453{vertical-align:0.000000px;}
.ls5_c00453{letter-spacing:-0.192240px;}
.ls6_c00453{letter-spacing:-0.065880px;}
.ls4_c00453{letter-spacing:0.000000px;}
.ls3_c00453{letter-spacing:0.021960px;}
.ls7_c00453{letter-spacing:0.065880px;}
.ls2_c00453{letter-spacing:0.197640px;}
.ls0_c00453{letter-spacing:319.518000px;}
.ls1_c00453{letter-spacing:2233.800000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:-16.667640px;}
.ws1_c00453{word-spacing:-16.470000px;}
.ws2_c00453{word-spacing:-16.404120px;}
.ws3_c00453{word-spacing:-11.970000px;}
.ws9_c00453{word-spacing:-0.197640px;}
.ws5_c00453{word-spacing:-0.162000px;}
.ws6_c00453{word-spacing:-0.096120px;}
.wsa_c00453{word-spacing:-0.095760px;}
.ws4_c00453{word-spacing:0.000000px;}
.ws7_c00453{word-spacing:0.065880px;}
.ws8_c00453{word-spacing:0.131760px;}
._1_c00453{margin-left:-1.199160px;}
._0_c00453{width:1.239948px;}
.fc1_c00453{color:transparent;}
.fc0_c00453{color:rgb(0,0,0);}
.fs4_c00453{font-size:47.880000px;}
.fs0_c00453{font-size:54.000000px;}
.fs3_c00453{font-size:65.880000px;}
.fs1_c00453{font-size:72.000000px;}
.fs2_c00453{font-size:96.120000px;}
.y46_c00453{bottom:-15.210000px;}
.y0_c00453{bottom:0.000000px;}
.y43_c00453{bottom:2.880000px;}
.y64_c00453{bottom:2.970000px;}
.y56_c00453{bottom:3.690000px;}
.y39_c00453{bottom:3.780000px;}
.y58_c00453{bottom:5.220000px;}
.y35_c00453{bottom:5.310000px;}
.y55_c00453{bottom:22.680000px;}
.y45_c00453{bottom:22.770000px;}
.y38_c00453{bottom:41.670000px;}
.y4a_c00453{bottom:41.760000px;}
.y66_c00453{bottom:57.240000px;}
.y33_c00453{bottom:137.520000px;}
.y65_c00453{bottom:139.950000px;}
.y63_c00453{bottom:157.140000px;}
.y32_c00453{bottom:158.220000px;}
.y62_c00453{bottom:176.670000px;}
.y31_c00453{bottom:178.920000px;}
.y30_c00453{bottom:199.620000px;}
.y61_c00453{bottom:200.340000px;}
.y2f_c00453{bottom:220.320000px;}
.y60_c00453{bottom:222.840000px;}
.y2e_c00453{bottom:241.020000px;}
.y5f_c00453{bottom:245.340000px;}
.y2d_c00453{bottom:261.720000px;}
.y5e_c00453{bottom:267.840000px;}
.y2c_c00453{bottom:282.420000px;}
.y5d_c00453{bottom:290.340000px;}
.y2b_c00453{bottom:303.120000px;}
.y5c_c00453{bottom:312.840000px;}
.y2a_c00453{bottom:323.820000px;}
.y5b_c00453{bottom:335.340000px;}
.y29_c00453{bottom:344.520000px;}
.y5a_c00453{bottom:361.170000px;}
.y28_c00453{bottom:365.220000px;}
.y59_c00453{bottom:383.940000px;}
.y27_c00453{bottom:385.920000px;}
.y26_c00453{bottom:406.620000px;}
.y57_c00453{bottom:420.390000px;}
.y25_c00453{bottom:427.320000px;}
.y24_c00453{bottom:448.020000px;}
.y54_c00453{bottom:450.540000px;}
.y23_c00453{bottom:468.720000px;}
.y53_c00453{bottom:488.430000px;}
.y22_c00453{bottom:489.420000px;}
.y52_c00453{bottom:504.450000px;}
.y21_c00453{bottom:510.120000px;}
.y51_c00453{bottom:528.120000px;}
.y20_c00453{bottom:530.820000px;}
.y50_c00453{bottom:550.620000px;}
.y1f_c00453{bottom:551.520000px;}
.y1e_c00453{bottom:572.220000px;}
.y4f_c00453{bottom:573.120000px;}
.y1d_c00453{bottom:592.920000px;}
.y4e_c00453{bottom:595.620000px;}
.y1c_c00453{bottom:613.620000px;}
.y4d_c00453{bottom:618.120000px;}
.y1b_c00453{bottom:634.320000px;}
.y4c_c00453{bottom:640.620000px;}
.y1a_c00453{bottom:655.020000px;}
.y4b_c00453{bottom:663.120000px;}
.y19_c00453{bottom:675.720000px;}
.y49_c00453{bottom:688.950000px;}
.y18_c00453{bottom:696.420000px;}
.y48_c00453{bottom:711.720000px;}
.y17_c00453{bottom:717.120000px;}
.y16_c00453{bottom:737.820000px;}
.y47_c00453{bottom:748.170000px;}
.y15_c00453{bottom:758.520000px;}
.y44_c00453{bottom:778.320000px;}
.y14_c00453{bottom:779.220000px;}
.y13_c00453{bottom:799.920000px;}
.y42_c00453{bottom:816.300000px;}
.y12_c00453{bottom:820.620000px;}
.y41_c00453{bottom:832.320000px;}
.y11_c00453{bottom:841.230000px;}
.y40_c00453{bottom:855.900000px;}
.y10_c00453{bottom:861.930000px;}
.y3f_c00453{bottom:878.400000px;}
.yf_c00453{bottom:882.630000px;}
.y3e_c00453{bottom:900.900000px;}
.ye_c00453{bottom:903.330000px;}
.y3d_c00453{bottom:923.400000px;}
.yd_c00453{bottom:924.030000px;}
.yc_c00453{bottom:944.730000px;}
.y3c_c00453{bottom:945.900000px;}
.yb_c00453{bottom:965.430000px;}
.y3b_c00453{bottom:968.400000px;}
.ya_c00453{bottom:986.130000px;}
.y3a_c00453{bottom:990.900000px;}
.y9_c00453{bottom:1006.830000px;}
.y37_c00453{bottom:1016.820000px;}
.y8_c00453{bottom:1027.530000px;}
.y36_c00453{bottom:1039.590000px;}
.y7_c00453{bottom:1048.230000px;}
.y6_c00453{bottom:1068.930000px;}
.y34_c00453{bottom:1075.950000px;}
.y5_c00453{bottom:1110.330000px;}
.y4_c00453{bottom:1131.030000px;}
.y3_c00453{bottom:1150.915500px;}
.y2_c00453{bottom:1166.400000px;}
.y1_c00453{bottom:1197.450000px;}
.hc_c00453{height:13.770000px;}
.h12_c00453{height:17.190000px;}
.h11_c00453{height:17.280000px;}
.ha_c00453{height:22.498500px;}
.h9_c00453{height:22.500000px;}
.hb_c00453{height:23.580000px;}
.h8_c00453{height:23.670000px;}
.h4_c00453{height:30.150000px;}
.h10_c00453{height:37.890000px;}
.he_c00453{height:37.981500px;}
.hd_c00453{height:46.991602px;}
.h2_c00453{height:52.998047px;}
.h7_c00453{height:56.880000px;}
.hf_c00453{height:56.970000px;}
.h6_c00453{height:64.657617px;}
.h3_c00453{height:70.664062px;}
.h5_c00453{height:96.870938px;}
.h0_c00453{height:1262.880000px;}
.h1_c00453{height:1263.000000px;}
.w5_c00453{width:104.220000px;}
.wa_c00453{width:104.580000px;}
.w9_c00453{width:104.940000px;}
.w4_c00453{width:105.750000px;}
.w8_c00453{width:105.751500px;}
.w6_c00453{width:342.718500px;}
.w7_c00453{width:345.060000px;}
.w3_c00453{width:556.560000px;}
.w2_c00453{width:893.031000px;}
.w0_c00453{width:893.070000px;}
.w1_c00453{width:893.250000px;}
.x0_c00453{left:0.000000px;}
.x10_c00453{left:4.140000px;}
.x16_c00453{left:5.310000px;}
.xb_c00453{left:17.100000px;}
.x14_c00453{left:30.240000px;}
.xd_c00453{left:35.100000px;}
.x9_c00453{left:39.060000px;}
.x12_c00453{left:41.940000px;}
.x19_c00453{left:44.100000px;}
.x13_c00453{left:49.590000px;}
.x1b_c00453{left:52.290000px;}
.x11_c00453{left:54.990000px;}
.x15_c00453{left:57.060000px;}
.x18_c00453{left:63.270000px;}
.x5_c00453{left:122.310000px;}
.xf_c00453{left:123.480000px;}
.x2_c00453{left:127.620000px;}
.x1a_c00453{left:129.240000px;}
.x6_c00453{left:135.270000px;}
.x17_c00453{left:141.300000px;}
.x7_c00453{left:263.250000px;}
.x1_c00453{left:446.580000px;}
.x8_c00453{left:467.370000px;}
.xa_c00453{left:478.530000px;}
.xc_c00453{left:573.840000px;}
.xe_c00453{left:584.280000px;}
.x3_c00453{left:690.570000px;}
.x4_c00453{left:906.570000px;}
@media print{
.v2_c00453{vertical-align:-73.600000pt;}
.v1_c00453{vertical-align:-55.056000pt;}
.v0_c00453{vertical-align:0.000000pt;}
.ls5_c00453{letter-spacing:-0.170880pt;}
.ls6_c00453{letter-spacing:-0.058560pt;}
.ls4_c00453{letter-spacing:0.000000pt;}
.ls3_c00453{letter-spacing:0.019520pt;}
.ls7_c00453{letter-spacing:0.058560pt;}
.ls2_c00453{letter-spacing:0.175680pt;}
.ls0_c00453{letter-spacing:284.016000pt;}
.ls1_c00453{letter-spacing:1985.600000pt;}
.ws0_c00453{word-spacing:-14.815680pt;}
.ws1_c00453{word-spacing:-14.640000pt;}
.ws2_c00453{word-spacing:-14.581440pt;}
.ws3_c00453{word-spacing:-10.640000pt;}
.ws9_c00453{word-spacing:-0.175680pt;}
.ws5_c00453{word-spacing:-0.144000pt;}
.ws6_c00453{word-spacing:-0.085440pt;}
.wsa_c00453{word-spacing:-0.085120pt;}
.ws4_c00453{word-spacing:0.000000pt;}
.ws7_c00453{word-spacing:0.058560pt;}
.ws8_c00453{word-spacing:0.117120pt;}
._1_c00453{margin-left:-1.065920pt;}
._0_c00453{width:1.102176pt;}
.fs4_c00453{font-size:42.560000pt;}
.fs0_c00453{font-size:48.000000pt;}
.fs3_c00453{font-size:58.560000pt;}
.fs1_c00453{font-size:64.000000pt;}
.fs2_c00453{font-size:85.440000pt;}
.y46_c00453{bottom:-13.520000pt;}
.y0_c00453{bottom:0.000000pt;}
.y43_c00453{bottom:2.560000pt;}
.y64_c00453{bottom:2.640000pt;}
.y56_c00453{bottom:3.280000pt;}
.y39_c00453{bottom:3.360000pt;}
.y58_c00453{bottom:4.640000pt;}
.y35_c00453{bottom:4.720000pt;}
.y55_c00453{bottom:20.160000pt;}
.y45_c00453{bottom:20.240000pt;}
.y38_c00453{bottom:37.040000pt;}
.y4a_c00453{bottom:37.120000pt;}
.y66_c00453{bottom:50.880000pt;}
.y33_c00453{bottom:122.240000pt;}
.y65_c00453{bottom:124.400000pt;}
.y63_c00453{bottom:139.680000pt;}
.y32_c00453{bottom:140.640000pt;}
.y62_c00453{bottom:157.040000pt;}
.y31_c00453{bottom:159.040000pt;}
.y30_c00453{bottom:177.440000pt;}
.y61_c00453{bottom:178.080000pt;}
.y2f_c00453{bottom:195.840000pt;}
.y60_c00453{bottom:198.080000pt;}
.y2e_c00453{bottom:214.240000pt;}
.y5f_c00453{bottom:218.080000pt;}
.y2d_c00453{bottom:232.640000pt;}
.y5e_c00453{bottom:238.080000pt;}
.y2c_c00453{bottom:251.040000pt;}
.y5d_c00453{bottom:258.080000pt;}
.y2b_c00453{bottom:269.440000pt;}
.y5c_c00453{bottom:278.080000pt;}
.y2a_c00453{bottom:287.840000pt;}
.y5b_c00453{bottom:298.080000pt;}
.y29_c00453{bottom:306.240000pt;}
.y5a_c00453{bottom:321.040000pt;}
.y28_c00453{bottom:324.640000pt;}
.y59_c00453{bottom:341.280000pt;}
.y27_c00453{bottom:343.040000pt;}
.y26_c00453{bottom:361.440000pt;}
.y57_c00453{bottom:373.680000pt;}
.y25_c00453{bottom:379.840000pt;}
.y24_c00453{bottom:398.240000pt;}
.y54_c00453{bottom:400.480000pt;}
.y23_c00453{bottom:416.640000pt;}
.y53_c00453{bottom:434.160000pt;}
.y22_c00453{bottom:435.040000pt;}
.y52_c00453{bottom:448.400000pt;}
.y21_c00453{bottom:453.440000pt;}
.y51_c00453{bottom:469.440000pt;}
.y20_c00453{bottom:471.840000pt;}
.y50_c00453{bottom:489.440000pt;}
.y1f_c00453{bottom:490.240000pt;}
.y1e_c00453{bottom:508.640000pt;}
.y4f_c00453{bottom:509.440000pt;}
.y1d_c00453{bottom:527.040000pt;}
.y4e_c00453{bottom:529.440000pt;}
.y1c_c00453{bottom:545.440000pt;}
.y4d_c00453{bottom:549.440000pt;}
.y1b_c00453{bottom:563.840000pt;}
.y4c_c00453{bottom:569.440000pt;}
.y1a_c00453{bottom:582.240000pt;}
.y4b_c00453{bottom:589.440000pt;}
.y19_c00453{bottom:600.640000pt;}
.y49_c00453{bottom:612.400000pt;}
.y18_c00453{bottom:619.040000pt;}
.y48_c00453{bottom:632.640000pt;}
.y17_c00453{bottom:637.440000pt;}
.y16_c00453{bottom:655.840000pt;}
.y47_c00453{bottom:665.040000pt;}
.y15_c00453{bottom:674.240000pt;}
.y44_c00453{bottom:691.840000pt;}
.y14_c00453{bottom:692.640000pt;}
.y13_c00453{bottom:711.040000pt;}
.y42_c00453{bottom:725.600000pt;}
.y12_c00453{bottom:729.440000pt;}
.y41_c00453{bottom:739.840000pt;}
.y11_c00453{bottom:747.760000pt;}
.y40_c00453{bottom:760.800000pt;}
.y10_c00453{bottom:766.160000pt;}
.y3f_c00453{bottom:780.800000pt;}
.yf_c00453{bottom:784.560000pt;}
.y3e_c00453{bottom:800.800000pt;}
.ye_c00453{bottom:802.960000pt;}
.y3d_c00453{bottom:820.800000pt;}
.yd_c00453{bottom:821.360000pt;}
.yc_c00453{bottom:839.760000pt;}
.y3c_c00453{bottom:840.800000pt;}
.yb_c00453{bottom:858.160000pt;}
.y3b_c00453{bottom:860.800000pt;}
.ya_c00453{bottom:876.560000pt;}
.y3a_c00453{bottom:880.800000pt;}
.y9_c00453{bottom:894.960000pt;}
.y37_c00453{bottom:903.840000pt;}
.y8_c00453{bottom:913.360000pt;}
.y36_c00453{bottom:924.080000pt;}
.y7_c00453{bottom:931.760000pt;}
.y6_c00453{bottom:950.160000pt;}
.y34_c00453{bottom:956.400000pt;}
.y5_c00453{bottom:986.960000pt;}
.y4_c00453{bottom:1005.360000pt;}
.y3_c00453{bottom:1023.036000pt;}
.y2_c00453{bottom:1036.800000pt;}
.y1_c00453{bottom:1064.400000pt;}
.hc_c00453{height:12.240000pt;}
.h12_c00453{height:15.280000pt;}
.h11_c00453{height:15.360000pt;}
.ha_c00453{height:19.998667pt;}
.h9_c00453{height:20.000000pt;}
.hb_c00453{height:20.960000pt;}
.h8_c00453{height:21.040000pt;}
.h4_c00453{height:26.800000pt;}
.h10_c00453{height:33.680000pt;}
.he_c00453{height:33.761333pt;}
.hd_c00453{height:41.770312pt;}
.h2_c00453{height:47.109375pt;}
.h7_c00453{height:50.560000pt;}
.hf_c00453{height:50.640000pt;}
.h6_c00453{height:57.473437pt;}
.h3_c00453{height:62.812500pt;}
.h5_c00453{height:86.107500pt;}
.h0_c00453{height:1122.560000pt;}
.h1_c00453{height:1122.666667pt;}
.w5_c00453{width:92.640000pt;}
.wa_c00453{width:92.960000pt;}
.w9_c00453{width:93.280000pt;}
.w4_c00453{width:94.000000pt;}
.w8_c00453{width:94.001333pt;}
.w6_c00453{width:304.638667pt;}
.w7_c00453{width:306.720000pt;}
.w3_c00453{width:494.720000pt;}
.w2_c00453{width:793.805333pt;}
.w0_c00453{width:793.840000pt;}
.w1_c00453{width:794.000000pt;}
.x0_c00453{left:0.000000pt;}
.x10_c00453{left:3.680000pt;}
.x16_c00453{left:4.720000pt;}
.xb_c00453{left:15.200000pt;}
.x14_c00453{left:26.880000pt;}
.xd_c00453{left:31.200000pt;}
.x9_c00453{left:34.720000pt;}
.x12_c00453{left:37.280000pt;}
.x19_c00453{left:39.200000pt;}
.x13_c00453{left:44.080000pt;}
.x1b_c00453{left:46.480000pt;}
.x11_c00453{left:48.880000pt;}
.x15_c00453{left:50.720000pt;}
.x18_c00453{left:56.240000pt;}
.x5_c00453{left:108.720000pt;}
.xf_c00453{left:109.760000pt;}
.x2_c00453{left:113.440000pt;}
.x1a_c00453{left:114.880000pt;}
.x6_c00453{left:120.240000pt;}
.x17_c00453{left:125.600000pt;}
.x7_c00453{left:234.000000pt;}
.x1_c00453{left:396.960000pt;}
.x8_c00453{left:415.440000pt;}
.xa_c00453{left:425.360000pt;}
.xc_c00453{left:510.080000pt;}
.xe_c00453{left:519.360000pt;}
.x3_c00453{left:613.840000pt;}
.x4_c00453{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.284180;font-style:normal;font-weight:normal;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_c50d2068740f77e21ae55821.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00454{vertical-align:-82.800000px;}
.v0_c00454{vertical-align:0.000000px;}
.ls9_c00454{letter-spacing:-0.263520px;}
.lsa_c00454{letter-spacing:-0.192240px;}
.ls5_c00454{letter-spacing:-0.108000px;}
.ls7_c00454{letter-spacing:-0.065880px;}
.ls4_c00454{letter-spacing:0.000000px;}
.ls2_c00454{letter-spacing:0.021960px;}
.ls8_c00454{letter-spacing:0.065880px;}
.ls3_c00454{letter-spacing:0.090000px;}
.ls6_c00454{letter-spacing:0.192240px;}
.ls1_c00454{letter-spacing:0.197640px;}
.ls0_c00454{letter-spacing:2233.800000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:-16.667640px;}
.ws1_c00454{word-spacing:-16.470000px;}
.ws2_c00454{word-spacing:-16.404120px;}
.ws3_c00454{word-spacing:-11.970000px;}
.ws7_c00454{word-spacing:-0.480600px;}
.wsa_c00454{word-spacing:-0.197640px;}
.wse_c00454{word-spacing:-0.096120px;}
.wsd_c00454{word-spacing:-0.095760px;}
.ws4_c00454{word-spacing:0.000000px;}
.ws8_c00454{word-spacing:0.065880px;}
.ws9_c00454{word-spacing:0.131760px;}
.ws6_c00454{word-spacing:0.162000px;}
.ws5_c00454{word-spacing:0.270000px;}
.wsc_c00454{word-spacing:0.329400px;}
.wsb_c00454{word-spacing:0.527040px;}
._1_c00454{margin-left:-1.058400px;}
._0_c00454{width:1.220400px;}
.fc1_c00454{color:transparent;}
.fc0_c00454{color:rgb(0,0,0);}
.fs4_c00454{font-size:47.880000px;}
.fs0_c00454{font-size:54.000000px;}
.fs3_c00454{font-size:65.880000px;}
.fs1_c00454{font-size:72.000000px;}
.fs2_c00454{font-size:96.120000px;}
.y47_c00454{bottom:-15.210000px;}
.y0_c00454{bottom:0.000000px;}
.y44_c00454{bottom:2.880000px;}
.y55_c00454{bottom:2.970000px;}
.y3a_c00454{bottom:3.780000px;}
.y59_c00454{bottom:5.220000px;}
.y36_c00454{bottom:5.310000px;}
.y57_c00454{bottom:22.680000px;}
.y46_c00454{bottom:22.770000px;}
.y39_c00454{bottom:41.670000px;}
.y4b_c00454{bottom:41.760000px;}
.y66_c00454{bottom:57.240000px;}
.y65_c00454{bottom:126.090000px;}
.y34_c00454{bottom:137.520000px;}
.y64_c00454{bottom:148.590000px;}
.y33_c00454{bottom:158.220000px;}
.y63_c00454{bottom:173.340000px;}
.y32_c00454{bottom:178.920000px;}
.y62_c00454{bottom:197.010000px;}
.y31_c00454{bottom:199.620000px;}
.y61_c00454{bottom:219.510000px;}
.y30_c00454{bottom:220.320000px;}
.y2f_c00454{bottom:241.020000px;}
.y60_c00454{bottom:242.010000px;}
.y2e_c00454{bottom:261.720000px;}
.y5f_c00454{bottom:264.510000px;}
.y2d_c00454{bottom:282.420000px;}
.y5e_c00454{bottom:287.010000px;}
.y2c_c00454{bottom:303.120000px;}
.y5d_c00454{bottom:309.510000px;}
.y2b_c00454{bottom:323.820000px;}
.y5c_c00454{bottom:332.010000px;}
.y2a_c00454{bottom:344.520000px;}
.y5b_c00454{bottom:357.840000px;}
.y29_c00454{bottom:365.220000px;}
.y5a_c00454{bottom:380.610000px;}
.y28_c00454{bottom:385.920000px;}
.y27_c00454{bottom:406.620000px;}
.y58_c00454{bottom:417.060000px;}
.y26_c00454{bottom:427.320000px;}
.y56_c00454{bottom:447.210000px;}
.y25_c00454{bottom:448.020000px;}
.y24_c00454{bottom:468.720000px;}
.y54_c00454{bottom:485.100000px;}
.y23_c00454{bottom:489.420000px;}
.y53_c00454{bottom:504.450000px;}
.y22_c00454{bottom:510.120000px;}
.y52_c00454{bottom:528.120000px;}
.y21_c00454{bottom:530.820000px;}
.y51_c00454{bottom:550.620000px;}
.y20_c00454{bottom:551.520000px;}
.y1f_c00454{bottom:572.220000px;}
.y50_c00454{bottom:573.120000px;}
.y1e_c00454{bottom:592.920000px;}
.y4f_c00454{bottom:595.620000px;}
.y1d_c00454{bottom:613.620000px;}
.y4e_c00454{bottom:618.120000px;}
.y1c_c00454{bottom:634.320000px;}
.y4d_c00454{bottom:640.620000px;}
.y1b_c00454{bottom:655.020000px;}
.y4c_c00454{bottom:663.120000px;}
.y1a_c00454{bottom:675.720000px;}
.y4a_c00454{bottom:688.950000px;}
.y19_c00454{bottom:696.420000px;}
.y49_c00454{bottom:711.720000px;}
.y18_c00454{bottom:717.120000px;}
.y17_c00454{bottom:737.820000px;}
.y48_c00454{bottom:748.170000px;}
.y16_c00454{bottom:758.520000px;}
.y45_c00454{bottom:778.320000px;}
.y15_c00454{bottom:779.220000px;}
.y14_c00454{bottom:799.920000px;}
.y43_c00454{bottom:816.300000px;}
.y13_c00454{bottom:820.620000px;}
.y42_c00454{bottom:832.320000px;}
.y12_c00454{bottom:841.230000px;}
.y41_c00454{bottom:855.900000px;}
.y11_c00454{bottom:861.930000px;}
.y40_c00454{bottom:878.400000px;}
.y10_c00454{bottom:882.630000px;}
.y3f_c00454{bottom:900.900000px;}
.yf_c00454{bottom:903.330000px;}
.y3e_c00454{bottom:923.400000px;}
.ye_c00454{bottom:924.030000px;}
.yd_c00454{bottom:944.730000px;}
.y3d_c00454{bottom:945.900000px;}
.yc_c00454{bottom:965.430000px;}
.y3c_c00454{bottom:968.400000px;}
.yb_c00454{bottom:986.130000px;}
.y3b_c00454{bottom:990.900000px;}
.ya_c00454{bottom:1006.830000px;}
.y38_c00454{bottom:1016.820000px;}
.y9_c00454{bottom:1027.530000px;}
.y37_c00454{bottom:1039.590000px;}
.y8_c00454{bottom:1048.230000px;}
.y7_c00454{bottom:1068.930000px;}
.y35_c00454{bottom:1075.950000px;}
.y6_c00454{bottom:1110.330000px;}
.y5_c00454{bottom:1131.030000px;}
.y4_c00454{bottom:1150.920000px;}
.y3_c00454{bottom:1166.404500px;}
.y2_c00454{bottom:1181.970000px;}
.y1_c00454{bottom:1197.450000px;}
.hd_c00454{height:13.770000px;}
.h11_c00454{height:17.100000px;}
.hb_c00454{height:22.498500px;}
.ha_c00454{height:22.500000px;}
.hc_c00454{height:23.580000px;}
.h9_c00454{height:23.670000px;}
.h5_c00454{height:30.150000px;}
.h13_c00454{height:30.151500px;}
.h12_c00454{height:37.888500px;}
.hf_c00454{height:37.981500px;}
.he_c00454{height:46.991602px;}
.h3_c00454{height:52.971680px;}
.h2_c00454{height:52.998047px;}
.h8_c00454{height:56.880000px;}
.h10_c00454{height:56.970000px;}
.h7_c00454{height:64.657617px;}
.h4_c00454{height:70.664062px;}
.h6_c00454{height:96.870938px;}
.h0_c00454{height:1262.880000px;}
.h1_c00454{height:1263.000000px;}
.w5_c00454{width:104.580000px;}
.w4_c00454{width:104.940000px;}
.w8_c00454{width:105.750000px;}
.w9_c00454{width:105.751500px;}
.w6_c00454{width:342.718500px;}
.w7_c00454{width:345.060000px;}
.w3_c00454{width:556.560000px;}
.w2_c00454{width:893.031000px;}
.w0_c00454{width:893.070000px;}
.w1_c00454{width:893.250000px;}
.x0_c00454{left:0.000000px;}
.x11_c00454{left:4.140000px;}
.x16_c00454{left:5.310000px;}
.xc_c00454{left:17.100000px;}
.x15_c00454{left:30.240000px;}
.xe_c00454{left:35.820000px;}
.xa_c00454{left:39.060000px;}
.x13_c00454{left:41.310000px;}
.x14_c00454{left:49.590000px;}
.x12_c00454{left:54.990000px;}
.x18_c00454{left:57.780000px;}
.x19_c00454{left:63.360000px;}
.x6_c00454{left:122.310000px;}
.x10_c00454{left:123.480000px;}
.x3_c00454{left:127.620000px;}
.x7_c00454{left:137.970000px;}
.x17_c00454{left:144.000000px;}
.x8_c00454{left:263.250000px;}
.x2_c00454{left:425.160000px;}
.x1_c00454{left:446.580000px;}
.x9_c00454{left:467.370000px;}
.xb_c00454{left:478.530000px;}
.xd_c00454{left:573.120000px;}
.xf_c00454{left:584.280000px;}
.x4_c00454{left:690.570000px;}
.x1a_c00454{left:738.540000px;}
.x5_c00454{left:906.570000px;}
@media print{
.v1_c00454{vertical-align:-73.600000pt;}
.v0_c00454{vertical-align:0.000000pt;}
.ls9_c00454{letter-spacing:-0.234240pt;}
.lsa_c00454{letter-spacing:-0.170880pt;}
.ls5_c00454{letter-spacing:-0.096000pt;}
.ls7_c00454{letter-spacing:-0.058560pt;}
.ls4_c00454{letter-spacing:0.000000pt;}
.ls2_c00454{letter-spacing:0.019520pt;}
.ls8_c00454{letter-spacing:0.058560pt;}
.ls3_c00454{letter-spacing:0.080000pt;}
.ls6_c00454{letter-spacing:0.170880pt;}
.ls1_c00454{letter-spacing:0.175680pt;}
.ls0_c00454{letter-spacing:1985.600000pt;}
.ws0_c00454{word-spacing:-14.815680pt;}
.ws1_c00454{word-spacing:-14.640000pt;}
.ws2_c00454{word-spacing:-14.581440pt;}
.ws3_c00454{word-spacing:-10.640000pt;}
.ws7_c00454{word-spacing:-0.427200pt;}
.wsa_c00454{word-spacing:-0.175680pt;}
.wse_c00454{word-spacing:-0.085440pt;}
.wsd_c00454{word-spacing:-0.085120pt;}
.ws4_c00454{word-spacing:0.000000pt;}
.ws8_c00454{word-spacing:0.058560pt;}
.ws9_c00454{word-spacing:0.117120pt;}
.ws6_c00454{word-spacing:0.144000pt;}
.ws5_c00454{word-spacing:0.240000pt;}
.wsc_c00454{word-spacing:0.292800pt;}
.wsb_c00454{word-spacing:0.468480pt;}
._1_c00454{margin-left:-0.940800pt;}
._0_c00454{width:1.084800pt;}
.fs4_c00454{font-size:42.560000pt;}
.fs0_c00454{font-size:48.000000pt;}
.fs3_c00454{font-size:58.560000pt;}
.fs1_c00454{font-size:64.000000pt;}
.fs2_c00454{font-size:85.440000pt;}
.y47_c00454{bottom:-13.520000pt;}
.y0_c00454{bottom:0.000000pt;}
.y44_c00454{bottom:2.560000pt;}
.y55_c00454{bottom:2.640000pt;}
.y3a_c00454{bottom:3.360000pt;}
.y59_c00454{bottom:4.640000pt;}
.y36_c00454{bottom:4.720000pt;}
.y57_c00454{bottom:20.160000pt;}
.y46_c00454{bottom:20.240000pt;}
.y39_c00454{bottom:37.040000pt;}
.y4b_c00454{bottom:37.120000pt;}
.y66_c00454{bottom:50.880000pt;}
.y65_c00454{bottom:112.080000pt;}
.y34_c00454{bottom:122.240000pt;}
.y64_c00454{bottom:132.080000pt;}
.y33_c00454{bottom:140.640000pt;}
.y63_c00454{bottom:154.080000pt;}
.y32_c00454{bottom:159.040000pt;}
.y62_c00454{bottom:175.120000pt;}
.y31_c00454{bottom:177.440000pt;}
.y61_c00454{bottom:195.120000pt;}
.y30_c00454{bottom:195.840000pt;}
.y2f_c00454{bottom:214.240000pt;}
.y60_c00454{bottom:215.120000pt;}
.y2e_c00454{bottom:232.640000pt;}
.y5f_c00454{bottom:235.120000pt;}
.y2d_c00454{bottom:251.040000pt;}
.y5e_c00454{bottom:255.120000pt;}
.y2c_c00454{bottom:269.440000pt;}
.y5d_c00454{bottom:275.120000pt;}
.y2b_c00454{bottom:287.840000pt;}
.y5c_c00454{bottom:295.120000pt;}
.y2a_c00454{bottom:306.240000pt;}
.y5b_c00454{bottom:318.080000pt;}
.y29_c00454{bottom:324.640000pt;}
.y5a_c00454{bottom:338.320000pt;}
.y28_c00454{bottom:343.040000pt;}
.y27_c00454{bottom:361.440000pt;}
.y58_c00454{bottom:370.720000pt;}
.y26_c00454{bottom:379.840000pt;}
.y56_c00454{bottom:397.520000pt;}
.y25_c00454{bottom:398.240000pt;}
.y24_c00454{bottom:416.640000pt;}
.y54_c00454{bottom:431.200000pt;}
.y23_c00454{bottom:435.040000pt;}
.y53_c00454{bottom:448.400000pt;}
.y22_c00454{bottom:453.440000pt;}
.y52_c00454{bottom:469.440000pt;}
.y21_c00454{bottom:471.840000pt;}
.y51_c00454{bottom:489.440000pt;}
.y20_c00454{bottom:490.240000pt;}
.y1f_c00454{bottom:508.640000pt;}
.y50_c00454{bottom:509.440000pt;}
.y1e_c00454{bottom:527.040000pt;}
.y4f_c00454{bottom:529.440000pt;}
.y1d_c00454{bottom:545.440000pt;}
.y4e_c00454{bottom:549.440000pt;}
.y1c_c00454{bottom:563.840000pt;}
.y4d_c00454{bottom:569.440000pt;}
.y1b_c00454{bottom:582.240000pt;}
.y4c_c00454{bottom:589.440000pt;}
.y1a_c00454{bottom:600.640000pt;}
.y4a_c00454{bottom:612.400000pt;}
.y19_c00454{bottom:619.040000pt;}
.y49_c00454{bottom:632.640000pt;}
.y18_c00454{bottom:637.440000pt;}
.y17_c00454{bottom:655.840000pt;}
.y48_c00454{bottom:665.040000pt;}
.y16_c00454{bottom:674.240000pt;}
.y45_c00454{bottom:691.840000pt;}
.y15_c00454{bottom:692.640000pt;}
.y14_c00454{bottom:711.040000pt;}
.y43_c00454{bottom:725.600000pt;}
.y13_c00454{bottom:729.440000pt;}
.y42_c00454{bottom:739.840000pt;}
.y12_c00454{bottom:747.760000pt;}
.y41_c00454{bottom:760.800000pt;}
.y11_c00454{bottom:766.160000pt;}
.y40_c00454{bottom:780.800000pt;}
.y10_c00454{bottom:784.560000pt;}
.y3f_c00454{bottom:800.800000pt;}
.yf_c00454{bottom:802.960000pt;}
.y3e_c00454{bottom:820.800000pt;}
.ye_c00454{bottom:821.360000pt;}
.yd_c00454{bottom:839.760000pt;}
.y3d_c00454{bottom:840.800000pt;}
.yc_c00454{bottom:858.160000pt;}
.y3c_c00454{bottom:860.800000pt;}
.yb_c00454{bottom:876.560000pt;}
.y3b_c00454{bottom:880.800000pt;}
.ya_c00454{bottom:894.960000pt;}
.y38_c00454{bottom:903.840000pt;}
.y9_c00454{bottom:913.360000pt;}
.y37_c00454{bottom:924.080000pt;}
.y8_c00454{bottom:931.760000pt;}
.y7_c00454{bottom:950.160000pt;}
.y35_c00454{bottom:956.400000pt;}
.y6_c00454{bottom:986.960000pt;}
.y5_c00454{bottom:1005.360000pt;}
.y4_c00454{bottom:1023.040000pt;}
.y3_c00454{bottom:1036.804000pt;}
.y2_c00454{bottom:1050.640000pt;}
.y1_c00454{bottom:1064.400000pt;}
.hd_c00454{height:12.240000pt;}
.h11_c00454{height:15.200000pt;}
.hb_c00454{height:19.998667pt;}
.ha_c00454{height:20.000000pt;}
.hc_c00454{height:20.960000pt;}
.h9_c00454{height:21.040000pt;}
.h5_c00454{height:26.800000pt;}
.h13_c00454{height:26.801333pt;}
.h12_c00454{height:33.678667pt;}
.hf_c00454{height:33.761333pt;}
.he_c00454{height:41.770312pt;}
.h3_c00454{height:47.085938pt;}
.h2_c00454{height:47.109375pt;}
.h8_c00454{height:50.560000pt;}
.h10_c00454{height:50.640000pt;}
.h7_c00454{height:57.473437pt;}
.h4_c00454{height:62.812500pt;}
.h6_c00454{height:86.107500pt;}
.h0_c00454{height:1122.560000pt;}
.h1_c00454{height:1122.666667pt;}
.w5_c00454{width:92.960000pt;}
.w4_c00454{width:93.280000pt;}
.w8_c00454{width:94.000000pt;}
.w9_c00454{width:94.001333pt;}
.w6_c00454{width:304.638667pt;}
.w7_c00454{width:306.720000pt;}
.w3_c00454{width:494.720000pt;}
.w2_c00454{width:793.805333pt;}
.w0_c00454{width:793.840000pt;}
.w1_c00454{width:794.000000pt;}
.x0_c00454{left:0.000000pt;}
.x11_c00454{left:3.680000pt;}
.x16_c00454{left:4.720000pt;}
.xc_c00454{left:15.200000pt;}
.x15_c00454{left:26.880000pt;}
.xe_c00454{left:31.840000pt;}
.xa_c00454{left:34.720000pt;}
.x13_c00454{left:36.720000pt;}
.x14_c00454{left:44.080000pt;}
.x12_c00454{left:48.880000pt;}
.x18_c00454{left:51.360000pt;}
.x19_c00454{left:56.320000pt;}
.x6_c00454{left:108.720000pt;}
.x10_c00454{left:109.760000pt;}
.x3_c00454{left:113.440000pt;}
.x7_c00454{left:122.640000pt;}
.x17_c00454{left:128.000000pt;}
.x8_c00454{left:234.000000pt;}
.x2_c00454{left:377.920000pt;}
.x1_c00454{left:396.960000pt;}
.x9_c00454{left:415.440000pt;}
.xb_c00454{left:425.360000pt;}
.xd_c00454{left:509.440000pt;}
.xf_c00454{left:519.360000pt;}
.x4_c00454{left:613.840000pt;}
.x1a_c00454{left:656.480000pt;}
.x5_c00454{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.284180;font-style:normal;font-weight:normal;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_f6f5984165d433a89d3d8d08.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00455{vertical-align:-82.800000px;}
.v1_c00455{vertical-align:-61.938000px;}
.v0_c00455{vertical-align:0.000000px;}
.v3_c00455{vertical-align:69.120000px;}
.ls6_c00455{letter-spacing:-0.192240px;}
.ls7_c00455{letter-spacing:-0.065880px;}
.ls5_c00455{letter-spacing:0.000000px;}
.ls3_c00455{letter-spacing:0.021960px;}
.ls8_c00455{letter-spacing:0.065880px;}
.ls2_c00455{letter-spacing:0.197640px;}
.ls0_c00455{letter-spacing:319.518000px;}
.ls4_c00455{letter-spacing:703.092924px;}
.ls1_c00455{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00455{word-spacing:-16.470000px;}
.ws2_c00455{word-spacing:-16.404120px;}
.ws3_c00455{word-spacing:-11.970000px;}
.ws9_c00455{word-spacing:-0.197640px;}
.ws5_c00455{word-spacing:-0.162000px;}
.ws6_c00455{word-spacing:-0.096120px;}
.wsa_c00455{word-spacing:-0.095760px;}
.ws4_c00455{word-spacing:0.000000px;}
.ws7_c00455{word-spacing:0.065880px;}
.ws8_c00455{word-spacing:0.131760px;}
._1_c00455{margin-left:-1.199160px;}
._0_c00455{width:1.239948px;}
.fc1_c00455{color:transparent;}
.fc0_c00455{color:rgb(0,0,0);}
.fs4_c00455{font-size:47.880000px;}
.fs0_c00455{font-size:54.000000px;}
.fs3_c00455{font-size:65.880000px;}
.fs1_c00455{font-size:72.000000px;}
.fs2_c00455{font-size:96.120000px;}
.y46_c00455{bottom:-15.210000px;}
.y0_c00455{bottom:0.000000px;}
.y43_c00455{bottom:2.880000px;}
.y64_c00455{bottom:2.970000px;}
.y4d_c00455{bottom:3.690000px;}
.y39_c00455{bottom:3.780000px;}
.y35_c00455{bottom:5.310000px;}
.y45_c00455{bottom:22.770000px;}
.y38_c00455{bottom:41.670000px;}
.y65_c00455{bottom:57.240000px;}
.y63_c00455{bottom:136.440000px;}
.y33_c00455{bottom:137.520000px;}
.y62_c00455{bottom:153.720000px;}
.y32_c00455{bottom:158.220000px;}
.y61_c00455{bottom:173.250000px;}
.y31_c00455{bottom:178.920000px;}
.y60_c00455{bottom:196.830000px;}
.y30_c00455{bottom:199.620000px;}
.y5f_c00455{bottom:219.330000px;}
.y2f_c00455{bottom:220.320000px;}
.y2e_c00455{bottom:241.020000px;}
.y5e_c00455{bottom:241.830000px;}
.y2d_c00455{bottom:261.720000px;}
.y5d_c00455{bottom:264.330000px;}
.y2c_c00455{bottom:282.420000px;}
.y5c_c00455{bottom:286.830000px;}
.y2b_c00455{bottom:303.120000px;}
.y5b_c00455{bottom:309.330000px;}
.y2a_c00455{bottom:323.820000px;}
.y5a_c00455{bottom:331.830000px;}
.y29_c00455{bottom:344.520000px;}
.y59_c00455{bottom:357.750000px;}
.y28_c00455{bottom:365.220000px;}
.y58_c00455{bottom:380.430000px;}
.y27_c00455{bottom:385.920000px;}
.y26_c00455{bottom:406.620000px;}
.y57_c00455{bottom:416.880000px;}
.y25_c00455{bottom:427.320000px;}
.y56_c00455{bottom:447.030000px;}
.y24_c00455{bottom:448.020000px;}
.y23_c00455{bottom:468.720000px;}
.y55_c00455{bottom:485.010000px;}
.y22_c00455{bottom:489.420000px;}
.y54_c00455{bottom:501.030000px;}
.y21_c00455{bottom:510.120000px;}
.y53_c00455{bottom:524.700000px;}
.y20_c00455{bottom:530.820000px;}
.y52_c00455{bottom:547.200000px;}
.y1f_c00455{bottom:551.520000px;}
.y51_c00455{bottom:569.700000px;}
.y1e_c00455{bottom:572.220000px;}
.y50_c00455{bottom:592.200000px;}
.y1d_c00455{bottom:592.920000px;}
.y1c_c00455{bottom:613.620000px;}
.y4f_c00455{bottom:614.700000px;}
.y1b_c00455{bottom:634.320000px;}
.y4e_c00455{bottom:637.200000px;}
.y1a_c00455{bottom:655.020000px;}
.y4c_c00455{bottom:659.700000px;}
.y19_c00455{bottom:675.720000px;}
.y4a_c00455{bottom:685.530000px;}
.y18_c00455{bottom:696.420000px;}
.y49_c00455{bottom:708.300090px;}
.y48_c00455{bottom:710.010000px;}
.y17_c00455{bottom:717.120000px;}
.y4b_c00455{bottom:727.290000px;}
.y16_c00455{bottom:737.820000px;}
.y47_c00455{bottom:748.170000px;}
.y15_c00455{bottom:758.520000px;}
.y44_c00455{bottom:778.320000px;}
.y14_c00455{bottom:779.220000px;}
.y13_c00455{bottom:799.920000px;}
.y42_c00455{bottom:816.300000px;}
.y12_c00455{bottom:820.620000px;}
.y41_c00455{bottom:832.320000px;}
.y11_c00455{bottom:841.230000px;}
.y40_c00455{bottom:855.900000px;}
.y10_c00455{bottom:861.930000px;}
.y3f_c00455{bottom:878.400000px;}
.yf_c00455{bottom:882.630000px;}
.y3e_c00455{bottom:900.900000px;}
.ye_c00455{bottom:903.330000px;}
.y3d_c00455{bottom:923.400000px;}
.yd_c00455{bottom:924.030000px;}
.yc_c00455{bottom:944.730000px;}
.y3c_c00455{bottom:945.900000px;}
.yb_c00455{bottom:965.430000px;}
.y3b_c00455{bottom:968.400000px;}
.ya_c00455{bottom:986.130000px;}
.y3a_c00455{bottom:990.900000px;}
.y9_c00455{bottom:1006.830000px;}
.y37_c00455{bottom:1016.820000px;}
.y8_c00455{bottom:1027.530000px;}
.y36_c00455{bottom:1039.590000px;}
.y7_c00455{bottom:1048.230000px;}
.y6_c00455{bottom:1068.930000px;}
.y34_c00455{bottom:1075.950000px;}
.y5_c00455{bottom:1110.330000px;}
.y4_c00455{bottom:1131.030000px;}
.y3_c00455{bottom:1150.915500px;}
.y2_c00455{bottom:1166.400000px;}
.y1_c00455{bottom:1197.450000px;}
.hc_c00455{height:13.770000px;}
.h13_c00455{height:17.280000px;}
.ha_c00455{height:22.498500px;}
.h9_c00455{height:22.500000px;}
.h11_c00455{height:23.578500px;}
.hb_c00455{height:23.580000px;}
.h8_c00455{height:23.670000px;}
.h12_c00455{height:23.671500px;}
.h4_c00455{height:30.150000px;}
.he_c00455{height:37.981500px;}
.hd_c00455{height:46.991602px;}
.h2_c00455{height:52.998047px;}
.h7_c00455{height:56.880000px;}
.h10_c00455{height:60.390000px;}
.h6_c00455{height:64.657617px;}
.h3_c00455{height:70.664062px;}
.h5_c00455{height:96.870938px;}
.hf_c00455{height:133.777617px;}
.h0_c00455{height:1262.880000px;}
.h1_c00455{height:1263.000000px;}
.w5_c00455{width:104.580000px;}
.w4_c00455{width:104.940000px;}
.w8_c00455{width:105.750000px;}
.w9_c00455{width:105.751500px;}
.w6_c00455{width:342.718500px;}
.w7_c00455{width:345.060000px;}
.w3_c00455{width:556.560000px;}
.w2_c00455{width:893.031000px;}
.w0_c00455{width:893.070000px;}
.w1_c00455{width:893.250000px;}
.x0_c00455{left:0.000000px;}
.x10_c00455{left:4.140000px;}
.x17_c00455{left:5.310000px;}
.xb_c00455{left:17.100000px;}
.x16_c00455{left:30.240000px;}
.xd_c00455{left:35.820000px;}
.x9_c00455{left:39.060000px;}
.x1b_c00455{left:41.310000px;}
.x1a_c00455{left:42.660000px;}
.x13_c00455{left:44.100000px;}
.x15_c00455{left:49.590000px;}
.x12_c00455{left:55.080000px;}
.x14_c00455{left:57.780000px;}
.x11_c00455{left:63.270000px;}
.x5_c00455{left:122.310000px;}
.xf_c00455{left:123.480000px;}
.x2_c00455{left:127.620000px;}
.x1c_c00455{left:146.610000px;}
.x6_c00455{left:147.960000px;}
.x18_c00455{left:152.640000px;}
.x7_c00455{left:263.250000px;}
.x1_c00455{left:446.580000px;}
.x8_c00455{left:467.370000px;}
.xa_c00455{left:478.530000px;}
.xc_c00455{left:573.120000px;}
.xe_c00455{left:584.280000px;}
.x19_c00455{left:608.940000px;}
.x3_c00455{left:690.570000px;}
.x4_c00455{left:906.570000px;}
@media print{
.v2_c00455{vertical-align:-73.600000pt;}
.v1_c00455{vertical-align:-55.056000pt;}
.v0_c00455{vertical-align:0.000000pt;}
.v3_c00455{vertical-align:61.440000pt;}
.ls6_c00455{letter-spacing:-0.170880pt;}
.ls7_c00455{letter-spacing:-0.058560pt;}
.ls5_c00455{letter-spacing:0.000000pt;}
.ls3_c00455{letter-spacing:0.019520pt;}
.ls8_c00455{letter-spacing:0.058560pt;}
.ls2_c00455{letter-spacing:0.175680pt;}
.ls0_c00455{letter-spacing:284.016000pt;}
.ls4_c00455{letter-spacing:624.971488pt;}
.ls1_c00455{letter-spacing:1985.600000pt;}
.ws0_c00455{word-spacing:-14.815680pt;}
.ws1_c00455{word-spacing:-14.640000pt;}
.ws2_c00455{word-spacing:-14.581440pt;}
.ws3_c00455{word-spacing:-10.640000pt;}
.ws9_c00455{word-spacing:-0.175680pt;}
.ws5_c00455{word-spacing:-0.144000pt;}
.ws6_c00455{word-spacing:-0.085440pt;}
.wsa_c00455{word-spacing:-0.085120pt;}
.ws4_c00455{word-spacing:0.000000pt;}
.ws7_c00455{word-spacing:0.058560pt;}
.ws8_c00455{word-spacing:0.117120pt;}
._1_c00455{margin-left:-1.065920pt;}
._0_c00455{width:1.102176pt;}
.fs4_c00455{font-size:42.560000pt;}
.fs0_c00455{font-size:48.000000pt;}
.fs3_c00455{font-size:58.560000pt;}
.fs1_c00455{font-size:64.000000pt;}
.fs2_c00455{font-size:85.440000pt;}
.y46_c00455{bottom:-13.520000pt;}
.y0_c00455{bottom:0.000000pt;}
.y43_c00455{bottom:2.560000pt;}
.y64_c00455{bottom:2.640000pt;}
.y4d_c00455{bottom:3.280000pt;}
.y39_c00455{bottom:3.360000pt;}
.y35_c00455{bottom:4.720000pt;}
.y45_c00455{bottom:20.240000pt;}
.y38_c00455{bottom:37.040000pt;}
.y65_c00455{bottom:50.880000pt;}
.y63_c00455{bottom:121.280000pt;}
.y33_c00455{bottom:122.240000pt;}
.y62_c00455{bottom:136.640000pt;}
.y32_c00455{bottom:140.640000pt;}
.y61_c00455{bottom:154.000000pt;}
.y31_c00455{bottom:159.040000pt;}
.y60_c00455{bottom:174.960000pt;}
.y30_c00455{bottom:177.440000pt;}
.y5f_c00455{bottom:194.960000pt;}
.y2f_c00455{bottom:195.840000pt;}
.y2e_c00455{bottom:214.240000pt;}
.y5e_c00455{bottom:214.960000pt;}
.y2d_c00455{bottom:232.640000pt;}
.y5d_c00455{bottom:234.960000pt;}
.y2c_c00455{bottom:251.040000pt;}
.y5c_c00455{bottom:254.960000pt;}
.y2b_c00455{bottom:269.440000pt;}
.y5b_c00455{bottom:274.960000pt;}
.y2a_c00455{bottom:287.840000pt;}
.y5a_c00455{bottom:294.960000pt;}
.y29_c00455{bottom:306.240000pt;}
.y59_c00455{bottom:318.000000pt;}
.y28_c00455{bottom:324.640000pt;}
.y58_c00455{bottom:338.160000pt;}
.y27_c00455{bottom:343.040000pt;}
.y26_c00455{bottom:361.440000pt;}
.y57_c00455{bottom:370.560000pt;}
.y25_c00455{bottom:379.840000pt;}
.y56_c00455{bottom:397.360000pt;}
.y24_c00455{bottom:398.240000pt;}
.y23_c00455{bottom:416.640000pt;}
.y55_c00455{bottom:431.120000pt;}
.y22_c00455{bottom:435.040000pt;}
.y54_c00455{bottom:445.360000pt;}
.y21_c00455{bottom:453.440000pt;}
.y53_c00455{bottom:466.400000pt;}
.y20_c00455{bottom:471.840000pt;}
.y52_c00455{bottom:486.400000pt;}
.y1f_c00455{bottom:490.240000pt;}
.y51_c00455{bottom:506.400000pt;}
.y1e_c00455{bottom:508.640000pt;}
.y50_c00455{bottom:526.400000pt;}
.y1d_c00455{bottom:527.040000pt;}
.y1c_c00455{bottom:545.440000pt;}
.y4f_c00455{bottom:546.400000pt;}
.y1b_c00455{bottom:563.840000pt;}
.y4e_c00455{bottom:566.400000pt;}
.y1a_c00455{bottom:582.240000pt;}
.y4c_c00455{bottom:586.400000pt;}
.y19_c00455{bottom:600.640000pt;}
.y4a_c00455{bottom:609.360000pt;}
.y18_c00455{bottom:619.040000pt;}
.y49_c00455{bottom:629.600080pt;}
.y48_c00455{bottom:631.120000pt;}
.y17_c00455{bottom:637.440000pt;}
.y4b_c00455{bottom:646.480000pt;}
.y16_c00455{bottom:655.840000pt;}
.y47_c00455{bottom:665.040000pt;}
.y15_c00455{bottom:674.240000pt;}
.y44_c00455{bottom:691.840000pt;}
.y14_c00455{bottom:692.640000pt;}
.y13_c00455{bottom:711.040000pt;}
.y42_c00455{bottom:725.600000pt;}
.y12_c00455{bottom:729.440000pt;}
.y41_c00455{bottom:739.840000pt;}
.y11_c00455{bottom:747.760000pt;}
.y40_c00455{bottom:760.800000pt;}
.y10_c00455{bottom:766.160000pt;}
.y3f_c00455{bottom:780.800000pt;}
.yf_c00455{bottom:784.560000pt;}
.y3e_c00455{bottom:800.800000pt;}
.ye_c00455{bottom:802.960000pt;}
.y3d_c00455{bottom:820.800000pt;}
.yd_c00455{bottom:821.360000pt;}
.yc_c00455{bottom:839.760000pt;}
.y3c_c00455{bottom:840.800000pt;}
.yb_c00455{bottom:858.160000pt;}
.y3b_c00455{bottom:860.800000pt;}
.ya_c00455{bottom:876.560000pt;}
.y3a_c00455{bottom:880.800000pt;}
.y9_c00455{bottom:894.960000pt;}
.y37_c00455{bottom:903.840000pt;}
.y8_c00455{bottom:913.360000pt;}
.y36_c00455{bottom:924.080000pt;}
.y7_c00455{bottom:931.760000pt;}
.y6_c00455{bottom:950.160000pt;}
.y34_c00455{bottom:956.400000pt;}
.y5_c00455{bottom:986.960000pt;}
.y4_c00455{bottom:1005.360000pt;}
.y3_c00455{bottom:1023.036000pt;}
.y2_c00455{bottom:1036.800000pt;}
.y1_c00455{bottom:1064.400000pt;}
.hc_c00455{height:12.240000pt;}
.h13_c00455{height:15.360000pt;}
.ha_c00455{height:19.998667pt;}
.h9_c00455{height:20.000000pt;}
.h11_c00455{height:20.958667pt;}
.hb_c00455{height:20.960000pt;}
.h8_c00455{height:21.040000pt;}
.h12_c00455{height:21.041333pt;}
.h4_c00455{height:26.800000pt;}
.he_c00455{height:33.761333pt;}
.hd_c00455{height:41.770312pt;}
.h2_c00455{height:47.109375pt;}
.h7_c00455{height:50.560000pt;}
.h10_c00455{height:53.680000pt;}
.h6_c00455{height:57.473437pt;}
.h3_c00455{height:62.812500pt;}
.h5_c00455{height:86.107500pt;}
.hf_c00455{height:118.913437pt;}
.h0_c00455{height:1122.560000pt;}
.h1_c00455{height:1122.666667pt;}
.w5_c00455{width:92.960000pt;}
.w4_c00455{width:93.280000pt;}
.w8_c00455{width:94.000000pt;}
.w9_c00455{width:94.001333pt;}
.w6_c00455{width:304.638667pt;}
.w7_c00455{width:306.720000pt;}
.w3_c00455{width:494.720000pt;}
.w2_c00455{width:793.805333pt;}
.w0_c00455{width:793.840000pt;}
.w1_c00455{width:794.000000pt;}
.x0_c00455{left:0.000000pt;}
.x10_c00455{left:3.680000pt;}
.x17_c00455{left:4.720000pt;}
.xb_c00455{left:15.200000pt;}
.x16_c00455{left:26.880000pt;}
.xd_c00455{left:31.840000pt;}
.x9_c00455{left:34.720000pt;}
.x1b_c00455{left:36.720000pt;}
.x1a_c00455{left:37.920000pt;}
.x13_c00455{left:39.200000pt;}
.x15_c00455{left:44.080000pt;}
.x12_c00455{left:48.960000pt;}
.x14_c00455{left:51.360000pt;}
.x11_c00455{left:56.240000pt;}
.x5_c00455{left:108.720000pt;}
.xf_c00455{left:109.760000pt;}
.x2_c00455{left:113.440000pt;}
.x1c_c00455{left:130.320000pt;}
.x6_c00455{left:131.520000pt;}
.x18_c00455{left:135.680000pt;}
.x7_c00455{left:234.000000pt;}
.x1_c00455{left:396.960000pt;}
.x8_c00455{left:415.440000pt;}
.xa_c00455{left:425.360000pt;}
.xc_c00455{left:509.440000pt;}
.xe_c00455{left:519.360000pt;}
.x19_c00455{left:541.280000pt;}
.x3_c00455{left:613.840000pt;}
.x4_c00455{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_af6618b428f5cee890247b60.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00456{vertical-align:-82.800000px;}
.v0_c00456{vertical-align:0.000000px;}
.ls9_c00456{letter-spacing:-0.263520px;}
.ls5_c00456{letter-spacing:-0.192240px;}
.ls4_c00456{letter-spacing:-0.108000px;}
.ls6_c00456{letter-spacing:-0.065880px;}
.ls3_c00456{letter-spacing:0.000000px;}
.ls2_c00456{letter-spacing:0.021960px;}
.ls7_c00456{letter-spacing:0.065880px;}
.ls8_c00456{letter-spacing:0.192240px;}
.ls1_c00456{letter-spacing:0.197640px;}
.ls0_c00456{letter-spacing:2233.800000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:-16.667640px;}
.ws1_c00456{word-spacing:-16.470000px;}
.ws2_c00456{word-spacing:-16.404120px;}
.ws4_c00456{word-spacing:-16.206480px;}
.ws3_c00456{word-spacing:-11.970000px;}
.wsb_c00456{word-spacing:-0.197640px;}
.wsd_c00456{word-spacing:-0.096120px;}
.wsc_c00456{word-spacing:-0.095760px;}
.ws5_c00456{word-spacing:0.000000px;}
.ws9_c00456{word-spacing:0.065880px;}
.wsa_c00456{word-spacing:0.131760px;}
.ws7_c00456{word-spacing:0.162000px;}
.ws6_c00456{word-spacing:0.270000px;}
.ws8_c00456{word-spacing:0.288360px;}
._1_c00456{margin-left:-1.058400px;}
._0_c00456{width:1.220400px;}
.fc1_c00456{color:transparent;}
.fc0_c00456{color:rgb(0,0,0);}
.fs4_c00456{font-size:47.880000px;}
.fs0_c00456{font-size:54.000000px;}
.fs3_c00456{font-size:65.880000px;}
.fs1_c00456{font-size:72.000000px;}
.fs2_c00456{font-size:96.120000px;}
.y47_c00456{bottom:-15.210000px;}
.y0_c00456{bottom:0.000000px;}
.y44_c00456{bottom:2.880000px;}
.y55_c00456{bottom:2.970000px;}
.y3a_c00456{bottom:3.780000px;}
.y59_c00456{bottom:5.220000px;}
.y36_c00456{bottom:5.310000px;}
.y57_c00456{bottom:22.680000px;}
.y46_c00456{bottom:22.770000px;}
.y39_c00456{bottom:41.670000px;}
.y4b_c00456{bottom:41.760000px;}
.y66_c00456{bottom:57.240000px;}
.y34_c00456{bottom:137.520000px;}
.y65_c00456{bottom:143.550000px;}
.y64_c00456{bottom:157.320000px;}
.y33_c00456{bottom:158.220000px;}
.y63_c00456{bottom:173.340000px;}
.y32_c00456{bottom:178.920000px;}
.y62_c00456{bottom:197.010000px;}
.y31_c00456{bottom:199.620000px;}
.y61_c00456{bottom:219.510000px;}
.y30_c00456{bottom:220.320000px;}
.y2f_c00456{bottom:241.020000px;}
.y60_c00456{bottom:242.010000px;}
.y2e_c00456{bottom:261.720000px;}
.y5f_c00456{bottom:264.510000px;}
.y2d_c00456{bottom:282.420000px;}
.y5e_c00456{bottom:287.010000px;}
.y2c_c00456{bottom:303.120000px;}
.y5d_c00456{bottom:309.510000px;}
.y2b_c00456{bottom:323.820000px;}
.y5c_c00456{bottom:332.010000px;}
.y2a_c00456{bottom:344.520000px;}
.y5b_c00456{bottom:357.840000px;}
.y29_c00456{bottom:365.220000px;}
.y5a_c00456{bottom:380.610000px;}
.y28_c00456{bottom:385.920000px;}
.y27_c00456{bottom:406.620000px;}
.y58_c00456{bottom:417.060000px;}
.y26_c00456{bottom:427.320000px;}
.y56_c00456{bottom:447.210000px;}
.y25_c00456{bottom:448.020000px;}
.y24_c00456{bottom:468.720000px;}
.y54_c00456{bottom:485.100000px;}
.y23_c00456{bottom:489.420000px;}
.y53_c00456{bottom:504.450000px;}
.y22_c00456{bottom:510.120000px;}
.y52_c00456{bottom:528.120000px;}
.y21_c00456{bottom:530.820000px;}
.y51_c00456{bottom:550.620000px;}
.y20_c00456{bottom:551.520000px;}
.y1f_c00456{bottom:572.220000px;}
.y50_c00456{bottom:573.120000px;}
.y1e_c00456{bottom:592.920000px;}
.y4f_c00456{bottom:595.620000px;}
.y1d_c00456{bottom:613.620000px;}
.y4e_c00456{bottom:618.120000px;}
.y1c_c00456{bottom:634.320000px;}
.y4d_c00456{bottom:640.620000px;}
.y1b_c00456{bottom:655.020000px;}
.y4c_c00456{bottom:663.120000px;}
.y1a_c00456{bottom:675.720000px;}
.y4a_c00456{bottom:688.950000px;}
.y19_c00456{bottom:696.420000px;}
.y49_c00456{bottom:711.720000px;}
.y18_c00456{bottom:717.120000px;}
.y17_c00456{bottom:737.820000px;}
.y48_c00456{bottom:748.170000px;}
.y16_c00456{bottom:758.520000px;}
.y45_c00456{bottom:778.320000px;}
.y15_c00456{bottom:779.220000px;}
.y14_c00456{bottom:799.920000px;}
.y43_c00456{bottom:816.300000px;}
.y13_c00456{bottom:820.620000px;}
.y42_c00456{bottom:832.320000px;}
.y12_c00456{bottom:841.230000px;}
.y41_c00456{bottom:855.900000px;}
.y11_c00456{bottom:861.930000px;}
.y40_c00456{bottom:878.400000px;}
.y10_c00456{bottom:882.630000px;}
.y3f_c00456{bottom:900.900000px;}
.yf_c00456{bottom:903.330000px;}
.y3e_c00456{bottom:923.400000px;}
.ye_c00456{bottom:924.030000px;}
.yd_c00456{bottom:944.730000px;}
.y3d_c00456{bottom:945.900000px;}
.yc_c00456{bottom:965.430000px;}
.y3c_c00456{bottom:968.400000px;}
.yb_c00456{bottom:986.130000px;}
.y3b_c00456{bottom:990.900000px;}
.ya_c00456{bottom:1006.830000px;}
.y38_c00456{bottom:1016.820000px;}
.y9_c00456{bottom:1027.530000px;}
.y37_c00456{bottom:1039.500000px;}
.y8_c00456{bottom:1048.230000px;}
.y7_c00456{bottom:1068.930000px;}
.y35_c00456{bottom:1075.950000px;}
.y6_c00456{bottom:1110.330000px;}
.y5_c00456{bottom:1131.030000px;}
.y4_c00456{bottom:1150.920000px;}
.y3_c00456{bottom:1166.404500px;}
.y2_c00456{bottom:1181.970000px;}
.y1_c00456{bottom:1197.450000px;}
.hd_c00456{height:13.770000px;}
.h11_c00456{height:17.100000px;}
.hb_c00456{height:22.498500px;}
.ha_c00456{height:22.500000px;}
.hc_c00456{height:23.580000px;}
.h9_c00456{height:23.670000px;}
.h5_c00456{height:30.150000px;}
.h13_c00456{height:30.151500px;}
.h12_c00456{height:37.888500px;}
.hf_c00456{height:37.981500px;}
.he_c00456{height:46.991602px;}
.h3_c00456{height:52.971680px;}
.h2_c00456{height:52.998047px;}
.h8_c00456{height:56.880000px;}
.h10_c00456{height:56.970000px;}
.h7_c00456{height:64.657617px;}
.h4_c00456{height:70.664062px;}
.h6_c00456{height:96.870938px;}
.h0_c00456{height:1262.880000px;}
.h1_c00456{height:1263.000000px;}
.w5_c00456{width:104.580000px;}
.w4_c00456{width:104.940000px;}
.w8_c00456{width:105.750000px;}
.w9_c00456{width:105.751500px;}
.w6_c00456{width:342.718500px;}
.w7_c00456{width:345.060000px;}
.w3_c00456{width:556.560000px;}
.w2_c00456{width:893.031000px;}
.w0_c00456{width:893.070000px;}
.w1_c00456{width:893.250000px;}
.x0_c00456{left:0.000000px;}
.x11_c00456{left:4.140000px;}
.x16_c00456{left:5.310000px;}
.xc_c00456{left:17.100000px;}
.x15_c00456{left:30.240000px;}
.x1b_c00456{left:34.380000px;}
.xe_c00456{left:35.820000px;}
.xa_c00456{left:39.060000px;}
.x18_c00456{left:41.310000px;}
.x1d_c00456{left:42.660000px;}
.x14_c00456{left:44.100000px;}
.x13_c00456{left:49.590000px;}
.x12_c00456{left:54.990000px;}
.x1c_c00456{left:57.780000px;}
.x19_c00456{left:63.360000px;}
.x7_c00456{left:118.620000px;}
.x6_c00456{left:122.310000px;}
.x10_c00456{left:123.480000px;}
.x3_c00456{left:127.620000px;}
.x1a_c00456{left:140.670000px;}
.x17_c00456{left:151.290000px;}
.x8_c00456{left:263.250000px;}
.x2_c00456{left:425.160000px;}
.x1_c00456{left:446.580000px;}
.x9_c00456{left:467.370000px;}
.xb_c00456{left:478.530000px;}
.xd_c00456{left:573.120000px;}
.xf_c00456{left:584.280000px;}
.x4_c00456{left:690.570000px;}
.x1e_c00456{left:738.540000px;}
.x5_c00456{left:906.570000px;}
@media print{
.v1_c00456{vertical-align:-73.600000pt;}
.v0_c00456{vertical-align:0.000000pt;}
.ls9_c00456{letter-spacing:-0.234240pt;}
.ls5_c00456{letter-spacing:-0.170880pt;}
.ls4_c00456{letter-spacing:-0.096000pt;}
.ls6_c00456{letter-spacing:-0.058560pt;}
.ls3_c00456{letter-spacing:0.000000pt;}
.ls2_c00456{letter-spacing:0.019520pt;}
.ls7_c00456{letter-spacing:0.058560pt;}
.ls8_c00456{letter-spacing:0.170880pt;}
.ls1_c00456{letter-spacing:0.175680pt;}
.ls0_c00456{letter-spacing:1985.600000pt;}
.ws0_c00456{word-spacing:-14.815680pt;}
.ws1_c00456{word-spacing:-14.640000pt;}
.ws2_c00456{word-spacing:-14.581440pt;}
.ws4_c00456{word-spacing:-14.405760pt;}
.ws3_c00456{word-spacing:-10.640000pt;}
.wsb_c00456{word-spacing:-0.175680pt;}
.wsd_c00456{word-spacing:-0.085440pt;}
.wsc_c00456{word-spacing:-0.085120pt;}
.ws5_c00456{word-spacing:0.000000pt;}
.ws9_c00456{word-spacing:0.058560pt;}
.wsa_c00456{word-spacing:0.117120pt;}
.ws7_c00456{word-spacing:0.144000pt;}
.ws6_c00456{word-spacing:0.240000pt;}
.ws8_c00456{word-spacing:0.256320pt;}
._1_c00456{margin-left:-0.940800pt;}
._0_c00456{width:1.084800pt;}
.fs4_c00456{font-size:42.560000pt;}
.fs0_c00456{font-size:48.000000pt;}
.fs3_c00456{font-size:58.560000pt;}
.fs1_c00456{font-size:64.000000pt;}
.fs2_c00456{font-size:85.440000pt;}
.y47_c00456{bottom:-13.520000pt;}
.y0_c00456{bottom:0.000000pt;}
.y44_c00456{bottom:2.560000pt;}
.y55_c00456{bottom:2.640000pt;}
.y3a_c00456{bottom:3.360000pt;}
.y59_c00456{bottom:4.640000pt;}
.y36_c00456{bottom:4.720000pt;}
.y57_c00456{bottom:20.160000pt;}
.y46_c00456{bottom:20.240000pt;}
.y39_c00456{bottom:37.040000pt;}
.y4b_c00456{bottom:37.120000pt;}
.y66_c00456{bottom:50.880000pt;}
.y34_c00456{bottom:122.240000pt;}
.y65_c00456{bottom:127.600000pt;}
.y64_c00456{bottom:139.840000pt;}
.y33_c00456{bottom:140.640000pt;}
.y63_c00456{bottom:154.080000pt;}
.y32_c00456{bottom:159.040000pt;}
.y62_c00456{bottom:175.120000pt;}
.y31_c00456{bottom:177.440000pt;}
.y61_c00456{bottom:195.120000pt;}
.y30_c00456{bottom:195.840000pt;}
.y2f_c00456{bottom:214.240000pt;}
.y60_c00456{bottom:215.120000pt;}
.y2e_c00456{bottom:232.640000pt;}
.y5f_c00456{bottom:235.120000pt;}
.y2d_c00456{bottom:251.040000pt;}
.y5e_c00456{bottom:255.120000pt;}
.y2c_c00456{bottom:269.440000pt;}
.y5d_c00456{bottom:275.120000pt;}
.y2b_c00456{bottom:287.840000pt;}
.y5c_c00456{bottom:295.120000pt;}
.y2a_c00456{bottom:306.240000pt;}
.y5b_c00456{bottom:318.080000pt;}
.y29_c00456{bottom:324.640000pt;}
.y5a_c00456{bottom:338.320000pt;}
.y28_c00456{bottom:343.040000pt;}
.y27_c00456{bottom:361.440000pt;}
.y58_c00456{bottom:370.720000pt;}
.y26_c00456{bottom:379.840000pt;}
.y56_c00456{bottom:397.520000pt;}
.y25_c00456{bottom:398.240000pt;}
.y24_c00456{bottom:416.640000pt;}
.y54_c00456{bottom:431.200000pt;}
.y23_c00456{bottom:435.040000pt;}
.y53_c00456{bottom:448.400000pt;}
.y22_c00456{bottom:453.440000pt;}
.y52_c00456{bottom:469.440000pt;}
.y21_c00456{bottom:471.840000pt;}
.y51_c00456{bottom:489.440000pt;}
.y20_c00456{bottom:490.240000pt;}
.y1f_c00456{bottom:508.640000pt;}
.y50_c00456{bottom:509.440000pt;}
.y1e_c00456{bottom:527.040000pt;}
.y4f_c00456{bottom:529.440000pt;}
.y1d_c00456{bottom:545.440000pt;}
.y4e_c00456{bottom:549.440000pt;}
.y1c_c00456{bottom:563.840000pt;}
.y4d_c00456{bottom:569.440000pt;}
.y1b_c00456{bottom:582.240000pt;}
.y4c_c00456{bottom:589.440000pt;}
.y1a_c00456{bottom:600.640000pt;}
.y4a_c00456{bottom:612.400000pt;}
.y19_c00456{bottom:619.040000pt;}
.y49_c00456{bottom:632.640000pt;}
.y18_c00456{bottom:637.440000pt;}
.y17_c00456{bottom:655.840000pt;}
.y48_c00456{bottom:665.040000pt;}
.y16_c00456{bottom:674.240000pt;}
.y45_c00456{bottom:691.840000pt;}
.y15_c00456{bottom:692.640000pt;}
.y14_c00456{bottom:711.040000pt;}
.y43_c00456{bottom:725.600000pt;}
.y13_c00456{bottom:729.440000pt;}
.y42_c00456{bottom:739.840000pt;}
.y12_c00456{bottom:747.760000pt;}
.y41_c00456{bottom:760.800000pt;}
.y11_c00456{bottom:766.160000pt;}
.y40_c00456{bottom:780.800000pt;}
.y10_c00456{bottom:784.560000pt;}
.y3f_c00456{bottom:800.800000pt;}
.yf_c00456{bottom:802.960000pt;}
.y3e_c00456{bottom:820.800000pt;}
.ye_c00456{bottom:821.360000pt;}
.yd_c00456{bottom:839.760000pt;}
.y3d_c00456{bottom:840.800000pt;}
.yc_c00456{bottom:858.160000pt;}
.y3c_c00456{bottom:860.800000pt;}
.yb_c00456{bottom:876.560000pt;}
.y3b_c00456{bottom:880.800000pt;}
.ya_c00456{bottom:894.960000pt;}
.y38_c00456{bottom:903.840000pt;}
.y9_c00456{bottom:913.360000pt;}
.y37_c00456{bottom:924.000000pt;}
.y8_c00456{bottom:931.760000pt;}
.y7_c00456{bottom:950.160000pt;}
.y35_c00456{bottom:956.400000pt;}
.y6_c00456{bottom:986.960000pt;}
.y5_c00456{bottom:1005.360000pt;}
.y4_c00456{bottom:1023.040000pt;}
.y3_c00456{bottom:1036.804000pt;}
.y2_c00456{bottom:1050.640000pt;}
.y1_c00456{bottom:1064.400000pt;}
.hd_c00456{height:12.240000pt;}
.h11_c00456{height:15.200000pt;}
.hb_c00456{height:19.998667pt;}
.ha_c00456{height:20.000000pt;}
.hc_c00456{height:20.960000pt;}
.h9_c00456{height:21.040000pt;}
.h5_c00456{height:26.800000pt;}
.h13_c00456{height:26.801333pt;}
.h12_c00456{height:33.678667pt;}
.hf_c00456{height:33.761333pt;}
.he_c00456{height:41.770312pt;}
.h3_c00456{height:47.085938pt;}
.h2_c00456{height:47.109375pt;}
.h8_c00456{height:50.560000pt;}
.h10_c00456{height:50.640000pt;}
.h7_c00456{height:57.473437pt;}
.h4_c00456{height:62.812500pt;}
.h6_c00456{height:86.107500pt;}
.h0_c00456{height:1122.560000pt;}
.h1_c00456{height:1122.666667pt;}
.w5_c00456{width:92.960000pt;}
.w4_c00456{width:93.280000pt;}
.w8_c00456{width:94.000000pt;}
.w9_c00456{width:94.001333pt;}
.w6_c00456{width:304.638667pt;}
.w7_c00456{width:306.720000pt;}
.w3_c00456{width:494.720000pt;}
.w2_c00456{width:793.805333pt;}
.w0_c00456{width:793.840000pt;}
.w1_c00456{width:794.000000pt;}
.x0_c00456{left:0.000000pt;}
.x11_c00456{left:3.680000pt;}
.x16_c00456{left:4.720000pt;}
.xc_c00456{left:15.200000pt;}
.x15_c00456{left:26.880000pt;}
.x1b_c00456{left:30.560000pt;}
.xe_c00456{left:31.840000pt;}
.xa_c00456{left:34.720000pt;}
.x18_c00456{left:36.720000pt;}
.x1d_c00456{left:37.920000pt;}
.x14_c00456{left:39.200000pt;}
.x13_c00456{left:44.080000pt;}
.x12_c00456{left:48.880000pt;}
.x1c_c00456{left:51.360000pt;}
.x19_c00456{left:56.320000pt;}
.x7_c00456{left:105.440000pt;}
.x6_c00456{left:108.720000pt;}
.x10_c00456{left:109.760000pt;}
.x3_c00456{left:113.440000pt;}
.x1a_c00456{left:125.040000pt;}
.x17_c00456{left:134.480000pt;}
.x8_c00456{left:234.000000pt;}
.x2_c00456{left:377.920000pt;}
.x1_c00456{left:396.960000pt;}
.x9_c00456{left:415.440000pt;}
.xb_c00456{left:425.360000pt;}
.xd_c00456{left:509.440000pt;}
.xf_c00456{left:519.360000pt;}
.x4_c00456{left:613.840000pt;}
.x1e_c00456{left:656.480000pt;}
.x5_c00456{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_b042e50ebdc5216f135fe901.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00457{vertical-align:-82.800000px;}
.v1_c00457{vertical-align:-61.938000px;}
.v0_c00457{vertical-align:0.000000px;}
.ls8_c00457{letter-spacing:-0.263520px;}
.ls5_c00457{letter-spacing:-0.192240px;}
.ls6_c00457{letter-spacing:-0.065880px;}
.ls4_c00457{letter-spacing:0.000000px;}
.ls3_c00457{letter-spacing:0.021960px;}
.ls7_c00457{letter-spacing:0.065880px;}
.ls9_c00457{letter-spacing:0.192240px;}
.ls2_c00457{letter-spacing:0.197640px;}
.ls0_c00457{letter-spacing:319.518000px;}
.ls1_c00457{letter-spacing:2233.800000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00457{word-spacing:-16.667640px;}
.ws1_c00457{word-spacing:-16.470000px;}
.ws2_c00457{word-spacing:-16.404120px;}
.ws3_c00457{word-spacing:-16.206480px;}
.ws4_c00457{word-spacing:-11.970000px;}
.wsd_c00457{word-spacing:-0.480600px;}
.wsa_c00457{word-spacing:-0.197640px;}
.ws6_c00457{word-spacing:-0.162000px;}
.ws7_c00457{word-spacing:-0.096120px;}
.wsb_c00457{word-spacing:-0.095760px;}
.ws5_c00457{word-spacing:0.000000px;}
.ws8_c00457{word-spacing:0.065880px;}
.ws9_c00457{word-spacing:0.131760px;}
.wsc_c00457{word-spacing:0.288360px;}
._1_c00457{margin-left:-1.199160px;}
._0_c00457{width:1.239948px;}
.fc1_c00457{color:transparent;}
.fc0_c00457{color:rgb(0,0,0);}
.fs4_c00457{font-size:47.880000px;}
.fs0_c00457{font-size:54.000000px;}
.fs3_c00457{font-size:65.880000px;}
.fs1_c00457{font-size:72.000000px;}
.fs2_c00457{font-size:96.120000px;}
.y46_c00457{bottom:-15.210000px;}
.y0_c00457{bottom:0.000000px;}
.y43_c00457{bottom:2.880000px;}
.y5f_c00457{bottom:3.690000px;}
.y39_c00457{bottom:3.780000px;}
.y35_c00457{bottom:5.310000px;}
.y45_c00457{bottom:22.770000px;}
.y38_c00457{bottom:41.670000px;}
.y62_c00457{bottom:57.240000px;}
.y61_c00457{bottom:123.840000px;}
.y33_c00457{bottom:137.520000px;}
.y60_c00457{bottom:148.590000px;}
.y32_c00457{bottom:158.220000px;}
.y5e_c00457{bottom:173.340000px;}
.y31_c00457{bottom:178.920000px;}
.y5d_c00457{bottom:196.920000px;}
.y30_c00457{bottom:199.620000px;}
.y5c_c00457{bottom:219.420000px;}
.y2f_c00457{bottom:220.320000px;}
.y2e_c00457{bottom:241.020000px;}
.y5b_c00457{bottom:241.920000px;}
.y2d_c00457{bottom:261.720000px;}
.y5a_c00457{bottom:264.420000px;}
.y2c_c00457{bottom:282.420000px;}
.y59_c00457{bottom:286.920000px;}
.y2b_c00457{bottom:303.120000px;}
.y58_c00457{bottom:309.420000px;}
.y2a_c00457{bottom:323.820000px;}
.y57_c00457{bottom:331.920000px;}
.y29_c00457{bottom:344.520000px;}
.y56_c00457{bottom:353.160000px;}
.y28_c00457{bottom:365.220000px;}
.y55_c00457{bottom:375.930000px;}
.y27_c00457{bottom:385.920000px;}
.y26_c00457{bottom:406.620000px;}
.y54_c00457{bottom:412.290000px;}
.y25_c00457{bottom:427.320000px;}
.y53_c00457{bottom:442.440000px;}
.y24_c00457{bottom:448.020000px;}
.y23_c00457{bottom:468.720000px;}
.y52_c00457{bottom:480.420000px;}
.y22_c00457{bottom:489.420000px;}
.y51_c00457{bottom:501.120000px;}
.y21_c00457{bottom:510.120000px;}
.y50_c00457{bottom:524.700000px;}
.y20_c00457{bottom:530.820000px;}
.y4f_c00457{bottom:547.200000px;}
.y1f_c00457{bottom:551.520000px;}
.y4e_c00457{bottom:569.700000px;}
.y1e_c00457{bottom:572.220000px;}
.y4d_c00457{bottom:592.200000px;}
.y1d_c00457{bottom:592.920000px;}
.y1c_c00457{bottom:613.620000px;}
.y4c_c00457{bottom:614.700000px;}
.y1b_c00457{bottom:634.320000px;}
.y4b_c00457{bottom:637.200000px;}
.y1a_c00457{bottom:655.020000px;}
.y4a_c00457{bottom:659.700000px;}
.y19_c00457{bottom:675.720000px;}
.y49_c00457{bottom:685.620000px;}
.y18_c00457{bottom:696.420000px;}
.y48_c00457{bottom:708.390000px;}
.y17_c00457{bottom:717.120000px;}
.y16_c00457{bottom:737.820000px;}
.y47_c00457{bottom:744.750000px;}
.y15_c00457{bottom:758.520000px;}
.y44_c00457{bottom:774.900000px;}
.y14_c00457{bottom:779.220000px;}
.y13_c00457{bottom:799.920000px;}
.y42_c00457{bottom:812.880000px;}
.y12_c00457{bottom:820.620000px;}
.y41_c00457{bottom:832.320000px;}
.y11_c00457{bottom:841.230000px;}
.y40_c00457{bottom:855.900000px;}
.y10_c00457{bottom:861.930000px;}
.y3f_c00457{bottom:878.400000px;}
.yf_c00457{bottom:882.630000px;}
.y3e_c00457{bottom:900.900000px;}
.ye_c00457{bottom:903.330000px;}
.y3d_c00457{bottom:923.400000px;}
.yd_c00457{bottom:924.030000px;}
.yc_c00457{bottom:944.730000px;}
.y3c_c00457{bottom:945.900000px;}
.yb_c00457{bottom:965.430000px;}
.y3b_c00457{bottom:968.400000px;}
.ya_c00457{bottom:986.130000px;}
.y3a_c00457{bottom:990.900000px;}
.y9_c00457{bottom:1006.830000px;}
.y37_c00457{bottom:1016.820000px;}
.y8_c00457{bottom:1027.530000px;}
.y36_c00457{bottom:1039.590000px;}
.y7_c00457{bottom:1048.230000px;}
.y6_c00457{bottom:1068.930000px;}
.y34_c00457{bottom:1075.950000px;}
.y5_c00457{bottom:1110.330000px;}
.y4_c00457{bottom:1131.030000px;}
.y3_c00457{bottom:1150.915500px;}
.y2_c00457{bottom:1166.400000px;}
.y1_c00457{bottom:1197.450000px;}
.hc_c00457{height:17.191500px;}
.hf_c00457{height:18.448500px;}
.h11_c00457{height:18.988500px;}
.ha_c00457{height:22.498500px;}
.h9_c00457{height:22.500000px;}
.hb_c00457{height:23.580000px;}
.h8_c00457{height:23.670000px;}
.h4_c00457{height:30.150000px;}
.he_c00457{height:37.980000px;}
.h10_c00457{height:37.981500px;}
.hd_c00457{height:46.991602px;}
.h2_c00457{height:52.998047px;}
.h7_c00457{height:56.880000px;}
.h6_c00457{height:64.657617px;}
.h3_c00457{height:70.664062px;}
.h5_c00457{height:96.870938px;}
.h0_c00457{height:1262.880000px;}
.h1_c00457{height:1263.000000px;}
.w5_c00457{width:104.580000px;}
.w4_c00457{width:104.940000px;}
.w8_c00457{width:105.750000px;}
.w9_c00457{width:105.751500px;}
.w6_c00457{width:342.718500px;}
.w7_c00457{width:345.060000px;}
.w3_c00457{width:556.560000px;}
.w2_c00457{width:893.031000px;}
.w0_c00457{width:893.070000px;}
.w1_c00457{width:893.250000px;}
.x0_c00457{left:0.000000px;}
.x10_c00457{left:4.140000px;}
.x16_c00457{left:5.310000px;}
.xb_c00457{left:17.100000px;}
.x15_c00457{left:30.240000px;}
.xd_c00457{left:35.820000px;}
.x9_c00457{left:39.060000px;}
.x13_c00457{left:44.100000px;}
.x12_c00457{left:49.590000px;}
.x11_c00457{left:54.990000px;}
.x14_c00457{left:57.780000px;}
.x6_c00457{left:76.320000px;}
.x18_c00457{left:110.340000px;}
.x5_c00457{left:122.310000px;}
.xf_c00457{left:123.480000px;}
.x2_c00457{left:127.620000px;}
.x17_c00457{left:140.670000px;}
.x7_c00457{left:263.250000px;}
.x1_c00457{left:446.580000px;}
.x8_c00457{left:467.370000px;}
.xa_c00457{left:478.530000px;}
.xc_c00457{left:573.120000px;}
.xe_c00457{left:584.280000px;}
.x3_c00457{left:690.570000px;}
.x4_c00457{left:906.570000px;}
@media print{
.v2_c00457{vertical-align:-73.600000pt;}
.v1_c00457{vertical-align:-55.056000pt;}
.v0_c00457{vertical-align:0.000000pt;}
.ls8_c00457{letter-spacing:-0.234240pt;}
.ls5_c00457{letter-spacing:-0.170880pt;}
.ls6_c00457{letter-spacing:-0.058560pt;}
.ls4_c00457{letter-spacing:0.000000pt;}
.ls3_c00457{letter-spacing:0.019520pt;}
.ls7_c00457{letter-spacing:0.058560pt;}
.ls9_c00457{letter-spacing:0.170880pt;}
.ls2_c00457{letter-spacing:0.175680pt;}
.ls0_c00457{letter-spacing:284.016000pt;}
.ls1_c00457{letter-spacing:1985.600000pt;}
.ws0_c00457{word-spacing:-14.815680pt;}
.ws1_c00457{word-spacing:-14.640000pt;}
.ws2_c00457{word-spacing:-14.581440pt;}
.ws3_c00457{word-spacing:-14.405760pt;}
.ws4_c00457{word-spacing:-10.640000pt;}
.wsd_c00457{word-spacing:-0.427200pt;}
.wsa_c00457{word-spacing:-0.175680pt;}
.ws6_c00457{word-spacing:-0.144000pt;}
.ws7_c00457{word-spacing:-0.085440pt;}
.wsb_c00457{word-spacing:-0.085120pt;}
.ws5_c00457{word-spacing:0.000000pt;}
.ws8_c00457{word-spacing:0.058560pt;}
.ws9_c00457{word-spacing:0.117120pt;}
.wsc_c00457{word-spacing:0.256320pt;}
._1_c00457{margin-left:-1.065920pt;}
._0_c00457{width:1.102176pt;}
.fs4_c00457{font-size:42.560000pt;}
.fs0_c00457{font-size:48.000000pt;}
.fs3_c00457{font-size:58.560000pt;}
.fs1_c00457{font-size:64.000000pt;}
.fs2_c00457{font-size:85.440000pt;}
.y46_c00457{bottom:-13.520000pt;}
.y0_c00457{bottom:0.000000pt;}
.y43_c00457{bottom:2.560000pt;}
.y5f_c00457{bottom:3.280000pt;}
.y39_c00457{bottom:3.360000pt;}
.y35_c00457{bottom:4.720000pt;}
.y45_c00457{bottom:20.240000pt;}
.y38_c00457{bottom:37.040000pt;}
.y62_c00457{bottom:50.880000pt;}
.y61_c00457{bottom:110.080000pt;}
.y33_c00457{bottom:122.240000pt;}
.y60_c00457{bottom:132.080000pt;}
.y32_c00457{bottom:140.640000pt;}
.y5e_c00457{bottom:154.080000pt;}
.y31_c00457{bottom:159.040000pt;}
.y5d_c00457{bottom:175.040000pt;}
.y30_c00457{bottom:177.440000pt;}
.y5c_c00457{bottom:195.040000pt;}
.y2f_c00457{bottom:195.840000pt;}
.y2e_c00457{bottom:214.240000pt;}
.y5b_c00457{bottom:215.040000pt;}
.y2d_c00457{bottom:232.640000pt;}
.y5a_c00457{bottom:235.040000pt;}
.y2c_c00457{bottom:251.040000pt;}
.y59_c00457{bottom:255.040000pt;}
.y2b_c00457{bottom:269.440000pt;}
.y58_c00457{bottom:275.040000pt;}
.y2a_c00457{bottom:287.840000pt;}
.y57_c00457{bottom:295.040000pt;}
.y29_c00457{bottom:306.240000pt;}
.y56_c00457{bottom:313.920000pt;}
.y28_c00457{bottom:324.640000pt;}
.y55_c00457{bottom:334.160000pt;}
.y27_c00457{bottom:343.040000pt;}
.y26_c00457{bottom:361.440000pt;}
.y54_c00457{bottom:366.480000pt;}
.y25_c00457{bottom:379.840000pt;}
.y53_c00457{bottom:393.280000pt;}
.y24_c00457{bottom:398.240000pt;}
.y23_c00457{bottom:416.640000pt;}
.y52_c00457{bottom:427.040000pt;}
.y22_c00457{bottom:435.040000pt;}
.y51_c00457{bottom:445.440000pt;}
.y21_c00457{bottom:453.440000pt;}
.y50_c00457{bottom:466.400000pt;}
.y20_c00457{bottom:471.840000pt;}
.y4f_c00457{bottom:486.400000pt;}
.y1f_c00457{bottom:490.240000pt;}
.y4e_c00457{bottom:506.400000pt;}
.y1e_c00457{bottom:508.640000pt;}
.y4d_c00457{bottom:526.400000pt;}
.y1d_c00457{bottom:527.040000pt;}
.y1c_c00457{bottom:545.440000pt;}
.y4c_c00457{bottom:546.400000pt;}
.y1b_c00457{bottom:563.840000pt;}
.y4b_c00457{bottom:566.400000pt;}
.y1a_c00457{bottom:582.240000pt;}
.y4a_c00457{bottom:586.400000pt;}
.y19_c00457{bottom:600.640000pt;}
.y49_c00457{bottom:609.440000pt;}
.y18_c00457{bottom:619.040000pt;}
.y48_c00457{bottom:629.680000pt;}
.y17_c00457{bottom:637.440000pt;}
.y16_c00457{bottom:655.840000pt;}
.y47_c00457{bottom:662.000000pt;}
.y15_c00457{bottom:674.240000pt;}
.y44_c00457{bottom:688.800000pt;}
.y14_c00457{bottom:692.640000pt;}
.y13_c00457{bottom:711.040000pt;}
.y42_c00457{bottom:722.560000pt;}
.y12_c00457{bottom:729.440000pt;}
.y41_c00457{bottom:739.840000pt;}
.y11_c00457{bottom:747.760000pt;}
.y40_c00457{bottom:760.800000pt;}
.y10_c00457{bottom:766.160000pt;}
.y3f_c00457{bottom:780.800000pt;}
.yf_c00457{bottom:784.560000pt;}
.y3e_c00457{bottom:800.800000pt;}
.ye_c00457{bottom:802.960000pt;}
.y3d_c00457{bottom:820.800000pt;}
.yd_c00457{bottom:821.360000pt;}
.yc_c00457{bottom:839.760000pt;}
.y3c_c00457{bottom:840.800000pt;}
.yb_c00457{bottom:858.160000pt;}
.y3b_c00457{bottom:860.800000pt;}
.ya_c00457{bottom:876.560000pt;}
.y3a_c00457{bottom:880.800000pt;}
.y9_c00457{bottom:894.960000pt;}
.y37_c00457{bottom:903.840000pt;}
.y8_c00457{bottom:913.360000pt;}
.y36_c00457{bottom:924.080000pt;}
.y7_c00457{bottom:931.760000pt;}
.y6_c00457{bottom:950.160000pt;}
.y34_c00457{bottom:956.400000pt;}
.y5_c00457{bottom:986.960000pt;}
.y4_c00457{bottom:1005.360000pt;}
.y3_c00457{bottom:1023.036000pt;}
.y2_c00457{bottom:1036.800000pt;}
.y1_c00457{bottom:1064.400000pt;}
.hc_c00457{height:15.281333pt;}
.hf_c00457{height:16.398667pt;}
.h11_c00457{height:16.878667pt;}
.ha_c00457{height:19.998667pt;}
.h9_c00457{height:20.000000pt;}
.hb_c00457{height:20.960000pt;}
.h8_c00457{height:21.040000pt;}
.h4_c00457{height:26.800000pt;}
.he_c00457{height:33.760000pt;}
.h10_c00457{height:33.761333pt;}
.hd_c00457{height:41.770312pt;}
.h2_c00457{height:47.109375pt;}
.h7_c00457{height:50.560000pt;}
.h6_c00457{height:57.473437pt;}
.h3_c00457{height:62.812500pt;}
.h5_c00457{height:86.107500pt;}
.h0_c00457{height:1122.560000pt;}
.h1_c00457{height:1122.666667pt;}
.w5_c00457{width:92.960000pt;}
.w4_c00457{width:93.280000pt;}
.w8_c00457{width:94.000000pt;}
.w9_c00457{width:94.001333pt;}
.w6_c00457{width:304.638667pt;}
.w7_c00457{width:306.720000pt;}
.w3_c00457{width:494.720000pt;}
.w2_c00457{width:793.805333pt;}
.w0_c00457{width:793.840000pt;}
.w1_c00457{width:794.000000pt;}
.x0_c00457{left:0.000000pt;}
.x10_c00457{left:3.680000pt;}
.x16_c00457{left:4.720000pt;}
.xb_c00457{left:15.200000pt;}
.x15_c00457{left:26.880000pt;}
.xd_c00457{left:31.840000pt;}
.x9_c00457{left:34.720000pt;}
.x13_c00457{left:39.200000pt;}
.x12_c00457{left:44.080000pt;}
.x11_c00457{left:48.880000pt;}
.x14_c00457{left:51.360000pt;}
.x6_c00457{left:67.840000pt;}
.x18_c00457{left:98.080000pt;}
.x5_c00457{left:108.720000pt;}
.xf_c00457{left:109.760000pt;}
.x2_c00457{left:113.440000pt;}
.x17_c00457{left:125.040000pt;}
.x7_c00457{left:234.000000pt;}
.x1_c00457{left:396.960000pt;}
.x8_c00457{left:415.440000pt;}
.xa_c00457{left:425.360000pt;}
.xc_c00457{left:509.440000pt;}
.xe_c00457{left:519.360000pt;}
.x3_c00457{left:613.840000pt;}
.x4_c00457{left:805.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_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_ad428c0492b92a744147f96d.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_f398b8acdb95acde60703e94.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00458{vertical-align:-82.800000px;}
.v0_c00458{vertical-align:0.000000px;}
.ls8_c00458{letter-spacing:-0.263520px;}
.ls5_c00458{letter-spacing:-0.192240px;}
.ls4_c00458{letter-spacing:-0.108000px;}
.ls6_c00458{letter-spacing:-0.065880px;}
.ls3_c00458{letter-spacing:0.000000px;}
.ls2_c00458{letter-spacing:0.021960px;}
.ls7_c00458{letter-spacing:0.065880px;}
.ls1_c00458{letter-spacing:0.197640px;}
.ls0_c00458{letter-spacing:2233.800000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00458{word-spacing:-16.667640px;}
.ws1_c00458{word-spacing:-16.470000px;}
.ws2_c00458{word-spacing:-16.404120px;}
.ws4_c00458{word-spacing:-16.206480px;}
.ws3_c00458{word-spacing:-11.970000px;}
.wsb_c00458{word-spacing:-0.197640px;}
.wsc_c00458{word-spacing:-0.095760px;}
.ws5_c00458{word-spacing:0.000000px;}
.ws9_c00458{word-spacing:0.065880px;}
.wsa_c00458{word-spacing:0.131760px;}
.ws7_c00458{word-spacing:0.162000px;}
.ws6_c00458{word-spacing:0.270000px;}
.ws8_c00458{word-spacing:0.288360px;}
._1_c00458{margin-left:-1.058400px;}
._0_c00458{width:1.220400px;}
.fc1_c00458{color:transparent;}
.fc0_c00458{color:rgb(0,0,0);}
.fs4_c00458{font-size:47.880000px;}
.fs0_c00458{font-size:54.000000px;}
.fs3_c00458{font-size:65.880000px;}
.fs1_c00458{font-size:72.000000px;}
.fs2_c00458{font-size:96.120000px;}
.y47_c00458{bottom:-15.210000px;}
.y0_c00458{bottom:0.000000px;}
.y56_c00458{bottom:2.880000px;}
.y44_c00458{bottom:2.970000px;}
.y3a_c00458{bottom:3.780000px;}
.y49_c00458{bottom:5.220000px;}
.y36_c00458{bottom:5.310000px;}
.y46_c00458{bottom:22.680000px;}
.y58_c00458{bottom:22.770000px;}
.y39_c00458{bottom:41.670000px;}
.y4c_c00458{bottom:41.760000px;}
.y66_c00458{bottom:57.240000px;}
.y34_c00458{bottom:137.520000px;}
.y65_c00458{bottom:143.280000px;}
.y64_c00458{bottom:157.140000px;}
.y33_c00458{bottom:158.220000px;}
.y63_c00458{bottom:173.160000px;}
.y32_c00458{bottom:178.920000px;}
.y62_c00458{bottom:196.740000px;}
.y31_c00458{bottom:199.620000px;}
.y61_c00458{bottom:219.240000px;}
.y30_c00458{bottom:220.320000px;}
.y2f_c00458{bottom:241.020000px;}
.y60_c00458{bottom:241.740000px;}
.y2e_c00458{bottom:261.720000px;}
.y5f_c00458{bottom:264.240000px;}
.y2d_c00458{bottom:282.420000px;}
.y5e_c00458{bottom:286.740000px;}
.y2c_c00458{bottom:303.120000px;}
.y5d_c00458{bottom:309.240000px;}
.y2b_c00458{bottom:323.820000px;}
.y5c_c00458{bottom:331.740000px;}
.y2a_c00458{bottom:344.520000px;}
.y5b_c00458{bottom:357.660000px;}
.y29_c00458{bottom:365.220000px;}
.y5a_c00458{bottom:380.430000px;}
.y28_c00458{bottom:385.920000px;}
.y27_c00458{bottom:406.620000px;}
.y59_c00458{bottom:416.790000px;}
.y26_c00458{bottom:427.320000px;}
.y57_c00458{bottom:446.940000px;}
.y25_c00458{bottom:448.020000px;}
.y24_c00458{bottom:468.720000px;}
.y55_c00458{bottom:484.920000px;}
.y23_c00458{bottom:489.420000px;}
.y54_c00458{bottom:500.940000px;}
.y22_c00458{bottom:510.120000px;}
.y53_c00458{bottom:524.610000px;}
.y21_c00458{bottom:530.820000px;}
.y52_c00458{bottom:547.110000px;}
.y20_c00458{bottom:551.520000px;}
.y51_c00458{bottom:569.610000px;}
.y1f_c00458{bottom:572.220000px;}
.y50_c00458{bottom:592.110000px;}
.y1e_c00458{bottom:592.920000px;}
.y1d_c00458{bottom:613.620000px;}
.y4f_c00458{bottom:614.610000px;}
.y1c_c00458{bottom:634.320000px;}
.y4e_c00458{bottom:637.110000px;}
.y1b_c00458{bottom:655.020000px;}
.y4d_c00458{bottom:659.610000px;}
.y1a_c00458{bottom:675.720000px;}
.y4b_c00458{bottom:685.440000px;}
.y19_c00458{bottom:696.420000px;}
.y4a_c00458{bottom:708.210000px;}
.y18_c00458{bottom:717.120000px;}
.y17_c00458{bottom:737.820000px;}
.y48_c00458{bottom:744.660000px;}
.y16_c00458{bottom:758.520000px;}
.y45_c00458{bottom:774.810000px;}
.y15_c00458{bottom:779.220000px;}
.y14_c00458{bottom:799.920000px;}
.y43_c00458{bottom:812.700000px;}
.y13_c00458{bottom:820.620000px;}
.y42_c00458{bottom:832.320000px;}
.y12_c00458{bottom:841.230000px;}
.y41_c00458{bottom:855.900000px;}
.y11_c00458{bottom:861.930000px;}
.y40_c00458{bottom:878.400000px;}
.y10_c00458{bottom:882.630000px;}
.y3f_c00458{bottom:900.900000px;}
.yf_c00458{bottom:903.330000px;}
.y3e_c00458{bottom:923.400000px;}
.ye_c00458{bottom:924.030000px;}
.yd_c00458{bottom:944.730000px;}
.y3d_c00458{bottom:945.900000px;}
.yc_c00458{bottom:965.430000px;}
.y3c_c00458{bottom:968.400000px;}
.yb_c00458{bottom:986.130000px;}
.y3b_c00458{bottom:990.900000px;}
.ya_c00458{bottom:1006.830000px;}
.y38_c00458{bottom:1016.820000px;}
.y9_c00458{bottom:1027.530000px;}
.y37_c00458{bottom:1039.590000px;}
.y8_c00458{bottom:1048.230000px;}
.y7_c00458{bottom:1068.930000px;}
.y35_c00458{bottom:1075.950000px;}
.y6_c00458{bottom:1110.330000px;}
.y5_c00458{bottom:1131.030000px;}
.y4_c00458{bottom:1150.920000px;}
.y3_c00458{bottom:1166.404500px;}
.y2_c00458{bottom:1181.970000px;}
.y1_c00458{bottom:1197.450000px;}
.h11_c00458{height:13.770000px;}
.h17_c00458{height:13.860000px;}
.hd_c00458{height:17.370000px;}
.hb_c00458{height:22.498500px;}
.ha_c00458{height:22.500000px;}
.h16_c00458{height:23.578500px;}
.hc_c00458{height:23.580000px;}
.h9_c00458{height:23.670000px;}
.h15_c00458{height:23.671500px;}
.h5_c00458{height:30.150000px;}
.h13_c00458{height:30.151500px;}
.hf_c00458{height:37.890000px;}
.h12_c00458{height:37.980000px;}
.he_c00458{height:46.991602px;}
.h3_c00458{height:52.971680px;}
.h2_c00458{height:52.998047px;}
.h8_c00458{height:56.880000px;}
.h14_c00458{height:56.881500px;}
.h10_c00458{height:56.970000px;}
.h7_c00458{height:64.657617px;}
.h4_c00458{height:70.664062px;}
.h6_c00458{height:96.870938px;}
.h0_c00458{height:1262.880000px;}
.h1_c00458{height:1263.000000px;}
.w5_c00458{width:104.580000px;}
.w4_c00458{width:104.940000px;}
.w8_c00458{width:105.750000px;}
.w9_c00458{width:105.751500px;}
.w6_c00458{width:342.718500px;}
.w7_c00458{width:345.060000px;}
.w3_c00458{width:556.560000px;}
.w2_c00458{width:893.031000px;}
.w0_c00458{width:893.070000px;}
.w1_c00458{width:893.250000px;}
.x0_c00458{left:0.000000px;}
.x11_c00458{left:4.140000px;}
.x19_c00458{left:5.310000px;}
.xc_c00458{left:17.100000px;}
.x13_c00458{left:22.140000px;}
.x17_c00458{left:30.240000px;}
.x1c_c00458{left:34.380000px;}
.xe_c00458{left:35.820000px;}
.xa_c00458{left:39.060000px;}
.x12_c00458{left:42.660000px;}
.x14_c00458{left:44.100000px;}
.x16_c00458{left:49.590000px;}
.x15_c00458{left:55.080000px;}
.x18_c00458{left:57.780000px;}
.x6_c00458{left:122.310000px;}
.x10_c00458{left:123.480000px;}
.x3_c00458{left:127.620000px;}
.x7_c00458{left:131.310000px;}
.x1b_c00458{left:145.350000px;}
.x1a_c00458{left:147.960000px;}
.x8_c00458{left:263.250000px;}
.x2_c00458{left:425.160000px;}
.x1_c00458{left:446.580000px;}
.x9_c00458{left:467.370000px;}
.xb_c00458{left:478.530000px;}
.xd_c00458{left:573.120000px;}
.xf_c00458{left:584.280000px;}
.x4_c00458{left:690.570000px;}
.x1d_c00458{left:738.540000px;}
.x5_c00458{left:906.570000px;}
@media print{
.v1_c00458{vertical-align:-73.600000pt;}
.v0_c00458{vertical-align:0.000000pt;}
.ls8_c00458{letter-spacing:-0.234240pt;}
.ls5_c00458{letter-spacing:-0.170880pt;}
.ls4_c00458{letter-spacing:-0.096000pt;}
.ls6_c00458{letter-spacing:-0.058560pt;}
.ls3_c00458{letter-spacing:0.000000pt;}
.ls2_c00458{letter-spacing:0.019520pt;}
.ls7_c00458{letter-spacing:0.058560pt;}
.ls1_c00458{letter-spacing:0.175680pt;}
.ls0_c00458{letter-spacing:1985.600000pt;}
.ws0_c00458{word-spacing:-14.815680pt;}
.ws1_c00458{word-spacing:-14.640000pt;}
.ws2_c00458{word-spacing:-14.581440pt;}
.ws4_c00458{word-spacing:-14.405760pt;}
.ws3_c00458{word-spacing:-10.640000pt;}
.wsb_c00458{word-spacing:-0.175680pt;}
.wsc_c00458{word-spacing:-0.085120pt;}
.ws5_c00458{word-spacing:0.000000pt;}
.ws9_c00458{word-spacing:0.058560pt;}
.wsa_c00458{word-spacing:0.117120pt;}
.ws7_c00458{word-spacing:0.144000pt;}
.ws6_c00458{word-spacing:0.240000pt;}
.ws8_c00458{word-spacing:0.256320pt;}
._1_c00458{margin-left:-0.940800pt;}
._0_c00458{width:1.084800pt;}
.fs4_c00458{font-size:42.560000pt;}
.fs0_c00458{font-size:48.000000pt;}
.fs3_c00458{font-size:58.560000pt;}
.fs1_c00458{font-size:64.000000pt;}
.fs2_c00458{font-size:85.440000pt;}
.y47_c00458{bottom:-13.520000pt;}
.y0_c00458{bottom:0.000000pt;}
.y56_c00458{bottom:2.560000pt;}
.y44_c00458{bottom:2.640000pt;}
.y3a_c00458{bottom:3.360000pt;}
.y49_c00458{bottom:4.640000pt;}
.y36_c00458{bottom:4.720000pt;}
.y46_c00458{bottom:20.160000pt;}
.y58_c00458{bottom:20.240000pt;}
.y39_c00458{bottom:37.040000pt;}
.y4c_c00458{bottom:37.120000pt;}
.y66_c00458{bottom:50.880000pt;}
.y34_c00458{bottom:122.240000pt;}
.y65_c00458{bottom:127.360000pt;}
.y64_c00458{bottom:139.680000pt;}
.y33_c00458{bottom:140.640000pt;}
.y63_c00458{bottom:153.920000pt;}
.y32_c00458{bottom:159.040000pt;}
.y62_c00458{bottom:174.880000pt;}
.y31_c00458{bottom:177.440000pt;}
.y61_c00458{bottom:194.880000pt;}
.y30_c00458{bottom:195.840000pt;}
.y2f_c00458{bottom:214.240000pt;}
.y60_c00458{bottom:214.880000pt;}
.y2e_c00458{bottom:232.640000pt;}
.y5f_c00458{bottom:234.880000pt;}
.y2d_c00458{bottom:251.040000pt;}
.y5e_c00458{bottom:254.880000pt;}
.y2c_c00458{bottom:269.440000pt;}
.y5d_c00458{bottom:274.880000pt;}
.y2b_c00458{bottom:287.840000pt;}
.y5c_c00458{bottom:294.880000pt;}
.y2a_c00458{bottom:306.240000pt;}
.y5b_c00458{bottom:317.920000pt;}
.y29_c00458{bottom:324.640000pt;}
.y5a_c00458{bottom:338.160000pt;}
.y28_c00458{bottom:343.040000pt;}
.y27_c00458{bottom:361.440000pt;}
.y59_c00458{bottom:370.480000pt;}
.y26_c00458{bottom:379.840000pt;}
.y57_c00458{bottom:397.280000pt;}
.y25_c00458{bottom:398.240000pt;}
.y24_c00458{bottom:416.640000pt;}
.y55_c00458{bottom:431.040000pt;}
.y23_c00458{bottom:435.040000pt;}
.y54_c00458{bottom:445.280000pt;}
.y22_c00458{bottom:453.440000pt;}
.y53_c00458{bottom:466.320000pt;}
.y21_c00458{bottom:471.840000pt;}
.y52_c00458{bottom:486.320000pt;}
.y20_c00458{bottom:490.240000pt;}
.y51_c00458{bottom:506.320000pt;}
.y1f_c00458{bottom:508.640000pt;}
.y50_c00458{bottom:526.320000pt;}
.y1e_c00458{bottom:527.040000pt;}
.y1d_c00458{bottom:545.440000pt;}
.y4f_c00458{bottom:546.320000pt;}
.y1c_c00458{bottom:563.840000pt;}
.y4e_c00458{bottom:566.320000pt;}
.y1b_c00458{bottom:582.240000pt;}
.y4d_c00458{bottom:586.320000pt;}
.y1a_c00458{bottom:600.640000pt;}
.y4b_c00458{bottom:609.280000pt;}
.y19_c00458{bottom:619.040000pt;}
.y4a_c00458{bottom:629.520000pt;}
.y18_c00458{bottom:637.440000pt;}
.y17_c00458{bottom:655.840000pt;}
.y48_c00458{bottom:661.920000pt;}
.y16_c00458{bottom:674.240000pt;}
.y45_c00458{bottom:688.720000pt;}
.y15_c00458{bottom:692.640000pt;}
.y14_c00458{bottom:711.040000pt;}
.y43_c00458{bottom:722.400000pt;}
.y13_c00458{bottom:729.440000pt;}
.y42_c00458{bottom:739.840000pt;}
.y12_c00458{bottom:747.760000pt;}
.y41_c00458{bottom:760.800000pt;}
.y11_c00458{bottom:766.160000pt;}
.y40_c00458{bottom:780.800000pt;}
.y10_c00458{bottom:784.560000pt;}
.y3f_c00458{bottom:800.800000pt;}
.yf_c00458{bottom:802.960000pt;}
.y3e_c00458{bottom:820.800000pt;}
.ye_c00458{bottom:821.360000pt;}
.yd_c00458{bottom:839.760000pt;}
.y3d_c00458{bottom:840.800000pt;}
.yc_c00458{bottom:858.160000pt;}
.y3c_c00458{bottom:860.800000pt;}
.yb_c00458{bottom:876.560000pt;}
.y3b_c00458{bottom:880.800000pt;}
.ya_c00458{bottom:894.960000pt;}
.y38_c00458{bottom:903.840000pt;}
.y9_c00458{bottom:913.360000pt;}
.y37_c00458{bottom:924.080000pt;}
.y8_c00458{bottom:931.760000pt;}
.y7_c00458{bottom:950.160000pt;}
.y35_c00458{bottom:956.400000pt;}
.y6_c00458{bottom:986.960000pt;}
.y5_c00458{bottom:1005.360000pt;}
.y4_c00458{bottom:1023.040000pt;}
.y3_c00458{bottom:1036.804000pt;}
.y2_c00458{bottom:1050.640000pt;}
.y1_c00458{bottom:1064.400000pt;}
.h11_c00458{height:12.240000pt;}
.h17_c00458{height:12.320000pt;}
.hd_c00458{height:15.440000pt;}
.hb_c00458{height:19.998667pt;}
.ha_c00458{height:20.000000pt;}
.h16_c00458{height:20.958667pt;}
.hc_c00458{height:20.960000pt;}
.h9_c00458{height:21.040000pt;}
.h15_c00458{height:21.041333pt;}
.h5_c00458{height:26.800000pt;}
.h13_c00458{height:26.801333pt;}
.hf_c00458{height:33.680000pt;}
.h12_c00458{height:33.760000pt;}
.he_c00458{height:41.770312pt;}
.h3_c00458{height:47.085938pt;}
.h2_c00458{height:47.109375pt;}
.h8_c00458{height:50.560000pt;}
.h14_c00458{height:50.561333pt;}
.h10_c00458{height:50.640000pt;}
.h7_c00458{height:57.473437pt;}
.h4_c00458{height:62.812500pt;}
.h6_c00458{height:86.107500pt;}
.h0_c00458{height:1122.560000pt;}
.h1_c00458{height:1122.666667pt;}
.w5_c00458{width:92.960000pt;}
.w4_c00458{width:93.280000pt;}
.w8_c00458{width:94.000000pt;}
.w9_c00458{width:94.001333pt;}
.w6_c00458{width:304.638667pt;}
.w7_c00458{width:306.720000pt;}
.w3_c00458{width:494.720000pt;}
.w2_c00458{width:793.805333pt;}
.w0_c00458{width:793.840000pt;}
.w1_c00458{width:794.000000pt;}
.x0_c00458{left:0.000000pt;}
.x11_c00458{left:3.680000pt;}
.x19_c00458{left:4.720000pt;}
.xc_c00458{left:15.200000pt;}
.x13_c00458{left:19.680000pt;}
.x17_c00458{left:26.880000pt;}
.x1c_c00458{left:30.560000pt;}
.xe_c00458{left:31.840000pt;}
.xa_c00458{left:34.720000pt;}
.x12_c00458{left:37.920000pt;}
.x14_c00458{left:39.200000pt;}
.x16_c00458{left:44.080000pt;}
.x15_c00458{left:48.960000pt;}
.x18_c00458{left:51.360000pt;}
.x6_c00458{left:108.720000pt;}
.x10_c00458{left:109.760000pt;}
.x3_c00458{left:113.440000pt;}
.x7_c00458{left:116.720000pt;}
.x1b_c00458{left:129.200000pt;}
.x1a_c00458{left:131.520000pt;}
.x8_c00458{left:234.000000pt;}
.x2_c00458{left:377.920000pt;}
.x1_c00458{left:396.960000pt;}
.x9_c00458{left:415.440000pt;}
.xb_c00458{left:425.360000pt;}
.xd_c00458{left:509.440000pt;}
.xf_c00458{left:519.360000pt;}
.x4_c00458{left:613.840000pt;}
.x1d_c00458{left:656.480000pt;}
.x5_c00458{left:805.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_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_ad428c0492b92a744147f96d.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_baf43c2338970ad60833a6fb.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00459{vertical-align:-82.800000px;}
.v1_c00459{vertical-align:-61.938000px;}
.v0_c00459{vertical-align:0.000000px;}
.ls9_c00459{letter-spacing:-0.263520px;}
.ls6_c00459{letter-spacing:-0.192240px;}
.ls7_c00459{letter-spacing:-0.065880px;}
.ls5_c00459{letter-spacing:0.000000px;}
.ls3_c00459{letter-spacing:0.021960px;}
.ls8_c00459{letter-spacing:0.065880px;}
.ls4_c00459{letter-spacing:0.090000px;}
.ls2_c00459{letter-spacing:0.197640px;}
.ls0_c00459{letter-spacing:319.518000px;}
.ls1_c00459{letter-spacing:2233.800000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:-16.667640px;}
.ws1_c00459{word-spacing:-16.470000px;}
.ws2_c00459{word-spacing:-16.404120px;}
.ws3_c00459{word-spacing:-16.206480px;}
.ws4_c00459{word-spacing:-11.970000px;}
.wsa_c00459{word-spacing:-0.197640px;}
.ws6_c00459{word-spacing:-0.162000px;}
.wsb_c00459{word-spacing:-0.095760px;}
.ws5_c00459{word-spacing:0.000000px;}
.ws8_c00459{word-spacing:0.065880px;}
.ws9_c00459{word-spacing:0.131760px;}
.ws7_c00459{word-spacing:0.288360px;}
._1_c00459{margin-left:-1.199160px;}
._0_c00459{width:1.239948px;}
.fc1_c00459{color:transparent;}
.fc0_c00459{color:rgb(0,0,0);}
.fs4_c00459{font-size:47.880000px;}
.fs0_c00459{font-size:54.000000px;}
.fs3_c00459{font-size:65.880000px;}
.fs1_c00459{font-size:72.000000px;}
.fs2_c00459{font-size:96.120000px;}
.y46_c00459{bottom:-15.210000px;}
.y0_c00459{bottom:0.000000px;}
.y43_c00459{bottom:2.880000px;}
.y62_c00459{bottom:2.970000px;}
.y58_c00459{bottom:3.690000px;}
.y39_c00459{bottom:3.780000px;}
.y35_c00459{bottom:5.310000px;}
.y48_c00459{bottom:6.570000px;}
.y45_c00459{bottom:22.770000px;}
.y38_c00459{bottom:41.670000px;}
.y64_c00459{bottom:57.240000px;}
.y33_c00459{bottom:137.520000px;}
.y63_c00459{bottom:143.460000px;}
.y61_c00459{bottom:157.230000px;}
.y32_c00459{bottom:158.220000px;}
.y60_c00459{bottom:173.340000px;}
.y31_c00459{bottom:178.920000px;}
.y5f_c00459{bottom:196.920000px;}
.y30_c00459{bottom:199.620000px;}
.y5e_c00459{bottom:219.420000px;}
.y2f_c00459{bottom:220.320000px;}
.y2e_c00459{bottom:241.020000px;}
.y5d_c00459{bottom:241.920000px;}
.y2d_c00459{bottom:261.720000px;}
.y5c_c00459{bottom:264.420000px;}
.y2c_c00459{bottom:282.420000px;}
.y5b_c00459{bottom:286.920000px;}
.y2b_c00459{bottom:303.120000px;}
.y5a_c00459{bottom:309.420000px;}
.y2a_c00459{bottom:323.820000px;}
.y59_c00459{bottom:331.920000px;}
.y29_c00459{bottom:344.520000px;}
.y57_c00459{bottom:357.840000px;}
.y28_c00459{bottom:365.220000px;}
.y56_c00459{bottom:380.520000px;}
.y27_c00459{bottom:385.920000px;}
.y26_c00459{bottom:406.620000px;}
.y55_c00459{bottom:416.970000px;}
.y25_c00459{bottom:427.320000px;}
.y54_c00459{bottom:447.120000px;}
.y24_c00459{bottom:448.020000px;}
.y23_c00459{bottom:468.720000px;}
.y53_c00459{bottom:485.100000px;}
.y22_c00459{bottom:489.420000px;}
.y52_c00459{bottom:501.120000px;}
.y21_c00459{bottom:510.120000px;}
.y51_c00459{bottom:524.700000px;}
.y20_c00459{bottom:530.820000px;}
.y50_c00459{bottom:547.200000px;}
.y1f_c00459{bottom:551.520000px;}
.y4f_c00459{bottom:569.700000px;}
.y1e_c00459{bottom:572.220000px;}
.y4e_c00459{bottom:592.200000px;}
.y1d_c00459{bottom:592.920000px;}
.y1c_c00459{bottom:613.620000px;}
.y4d_c00459{bottom:614.700000px;}
.y1b_c00459{bottom:634.320000px;}
.y4c_c00459{bottom:637.200000px;}
.y1a_c00459{bottom:655.020000px;}
.y4b_c00459{bottom:659.700000px;}
.y19_c00459{bottom:675.720000px;}
.y4a_c00459{bottom:685.620000px;}
.y18_c00459{bottom:696.420000px;}
.y49_c00459{bottom:708.390000px;}
.y17_c00459{bottom:717.120000px;}
.y16_c00459{bottom:737.820000px;}
.y47_c00459{bottom:744.750000px;}
.y15_c00459{bottom:758.520000px;}
.y44_c00459{bottom:774.900000px;}
.y14_c00459{bottom:779.220000px;}
.y13_c00459{bottom:799.920000px;}
.y42_c00459{bottom:812.880000px;}
.y12_c00459{bottom:820.620000px;}
.y41_c00459{bottom:832.320000px;}
.y11_c00459{bottom:841.230000px;}
.y40_c00459{bottom:855.900000px;}
.y10_c00459{bottom:861.930000px;}
.y3f_c00459{bottom:878.400000px;}
.yf_c00459{bottom:882.630000px;}
.y3e_c00459{bottom:900.900000px;}
.ye_c00459{bottom:903.330000px;}
.y3d_c00459{bottom:923.400000px;}
.yd_c00459{bottom:924.030000px;}
.yc_c00459{bottom:944.730000px;}
.y3c_c00459{bottom:945.900000px;}
.yb_c00459{bottom:965.430000px;}
.y3b_c00459{bottom:968.400000px;}
.ya_c00459{bottom:986.130000px;}
.y3a_c00459{bottom:990.900000px;}
.y9_c00459{bottom:1006.830000px;}
.y37_c00459{bottom:1016.820000px;}
.y8_c00459{bottom:1027.530000px;}
.y36_c00459{bottom:1039.590000px;}
.y7_c00459{bottom:1048.230000px;}
.y6_c00459{bottom:1068.930000px;}
.y34_c00459{bottom:1075.950000px;}
.y5_c00459{bottom:1110.330000px;}
.y4_c00459{bottom:1131.030000px;}
.y3_c00459{bottom:1150.915500px;}
.y2_c00459{bottom:1166.400000px;}
.y1_c00459{bottom:1197.450000px;}
.hf_c00459{height:13.770000px;}
.h10_c00459{height:13.858500px;}
.hc_c00459{height:17.191500px;}
.ha_c00459{height:22.498500px;}
.h9_c00459{height:22.500000px;}
.hb_c00459{height:23.580000px;}
.h8_c00459{height:23.670000px;}
.h4_c00459{height:30.150000px;}
.he_c00459{height:37.980000px;}
.hd_c00459{height:46.991602px;}
.h2_c00459{height:52.998047px;}
.h7_c00459{height:56.880000px;}
.h6_c00459{height:64.657617px;}
.h3_c00459{height:70.664062px;}
.h5_c00459{height:96.870938px;}
.h0_c00459{height:1262.880000px;}
.h1_c00459{height:1263.000000px;}
.w5_c00459{width:104.580000px;}
.w4_c00459{width:104.940000px;}
.w8_c00459{width:105.750000px;}
.w9_c00459{width:105.751500px;}
.w6_c00459{width:342.718500px;}
.w7_c00459{width:345.060000px;}
.w3_c00459{width:556.560000px;}
.w2_c00459{width:893.031000px;}
.w0_c00459{width:893.070000px;}
.w1_c00459{width:893.250000px;}
.x0_c00459{left:0.000000px;}
.x10_c00459{left:4.140000px;}
.x16_c00459{left:5.310000px;}
.xb_c00459{left:17.100000px;}
.x12_c00459{left:22.140000px;}
.x15_c00459{left:30.240000px;}
.xd_c00459{left:35.820000px;}
.x9_c00459{left:39.060000px;}
.x17_c00459{left:42.660000px;}
.x13_c00459{left:44.100000px;}
.x14_c00459{left:49.590000px;}
.x11_c00459{left:54.990000px;}
.x18_c00459{left:57.780000px;}
.x19_c00459{left:116.730000px;}
.x5_c00459{left:122.310000px;}
.xf_c00459{left:123.480000px;}
.x2_c00459{left:127.620000px;}
.x6_c00459{left:138.690000px;}
.x7_c00459{left:263.250000px;}
.x1_c00459{left:446.580000px;}
.x8_c00459{left:467.370000px;}
.xa_c00459{left:478.530000px;}
.xc_c00459{left:573.120000px;}
.xe_c00459{left:584.280000px;}
.x3_c00459{left:690.570000px;}
.x4_c00459{left:906.570000px;}
@media print{
.v2_c00459{vertical-align:-73.600000pt;}
.v1_c00459{vertical-align:-55.056000pt;}
.v0_c00459{vertical-align:0.000000pt;}
.ls9_c00459{letter-spacing:-0.234240pt;}
.ls6_c00459{letter-spacing:-0.170880pt;}
.ls7_c00459{letter-spacing:-0.058560pt;}
.ls5_c00459{letter-spacing:0.000000pt;}
.ls3_c00459{letter-spacing:0.019520pt;}
.ls8_c00459{letter-spacing:0.058560pt;}
.ls4_c00459{letter-spacing:0.080000pt;}
.ls2_c00459{letter-spacing:0.175680pt;}
.ls0_c00459{letter-spacing:284.016000pt;}
.ls1_c00459{letter-spacing:1985.600000pt;}
.ws0_c00459{word-spacing:-14.815680pt;}
.ws1_c00459{word-spacing:-14.640000pt;}
.ws2_c00459{word-spacing:-14.581440pt;}
.ws3_c00459{word-spacing:-14.405760pt;}
.ws4_c00459{word-spacing:-10.640000pt;}
.wsa_c00459{word-spacing:-0.175680pt;}
.ws6_c00459{word-spacing:-0.144000pt;}
.wsb_c00459{word-spacing:-0.085120pt;}
.ws5_c00459{word-spacing:0.000000pt;}
.ws8_c00459{word-spacing:0.058560pt;}
.ws9_c00459{word-spacing:0.117120pt;}
.ws7_c00459{word-spacing:0.256320pt;}
._1_c00459{margin-left:-1.065920pt;}
._0_c00459{width:1.102176pt;}
.fs4_c00459{font-size:42.560000pt;}
.fs0_c00459{font-size:48.000000pt;}
.fs3_c00459{font-size:58.560000pt;}
.fs1_c00459{font-size:64.000000pt;}
.fs2_c00459{font-size:85.440000pt;}
.y46_c00459{bottom:-13.520000pt;}
.y0_c00459{bottom:0.000000pt;}
.y43_c00459{bottom:2.560000pt;}
.y62_c00459{bottom:2.640000pt;}
.y58_c00459{bottom:3.280000pt;}
.y39_c00459{bottom:3.360000pt;}
.y35_c00459{bottom:4.720000pt;}
.y48_c00459{bottom:5.840000pt;}
.y45_c00459{bottom:20.240000pt;}
.y38_c00459{bottom:37.040000pt;}
.y64_c00459{bottom:50.880000pt;}
.y33_c00459{bottom:122.240000pt;}
.y63_c00459{bottom:127.520000pt;}
.y61_c00459{bottom:139.760000pt;}
.y32_c00459{bottom:140.640000pt;}
.y60_c00459{bottom:154.080000pt;}
.y31_c00459{bottom:159.040000pt;}
.y5f_c00459{bottom:175.040000pt;}
.y30_c00459{bottom:177.440000pt;}
.y5e_c00459{bottom:195.040000pt;}
.y2f_c00459{bottom:195.840000pt;}
.y2e_c00459{bottom:214.240000pt;}
.y5d_c00459{bottom:215.040000pt;}
.y2d_c00459{bottom:232.640000pt;}
.y5c_c00459{bottom:235.040000pt;}
.y2c_c00459{bottom:251.040000pt;}
.y5b_c00459{bottom:255.040000pt;}
.y2b_c00459{bottom:269.440000pt;}
.y5a_c00459{bottom:275.040000pt;}
.y2a_c00459{bottom:287.840000pt;}
.y59_c00459{bottom:295.040000pt;}
.y29_c00459{bottom:306.240000pt;}
.y57_c00459{bottom:318.080000pt;}
.y28_c00459{bottom:324.640000pt;}
.y56_c00459{bottom:338.240000pt;}
.y27_c00459{bottom:343.040000pt;}
.y26_c00459{bottom:361.440000pt;}
.y55_c00459{bottom:370.640000pt;}
.y25_c00459{bottom:379.840000pt;}
.y54_c00459{bottom:397.440000pt;}
.y24_c00459{bottom:398.240000pt;}
.y23_c00459{bottom:416.640000pt;}
.y53_c00459{bottom:431.200000pt;}
.y22_c00459{bottom:435.040000pt;}
.y52_c00459{bottom:445.440000pt;}
.y21_c00459{bottom:453.440000pt;}
.y51_c00459{bottom:466.400000pt;}
.y20_c00459{bottom:471.840000pt;}
.y50_c00459{bottom:486.400000pt;}
.y1f_c00459{bottom:490.240000pt;}
.y4f_c00459{bottom:506.400000pt;}
.y1e_c00459{bottom:508.640000pt;}
.y4e_c00459{bottom:526.400000pt;}
.y1d_c00459{bottom:527.040000pt;}
.y1c_c00459{bottom:545.440000pt;}
.y4d_c00459{bottom:546.400000pt;}
.y1b_c00459{bottom:563.840000pt;}
.y4c_c00459{bottom:566.400000pt;}
.y1a_c00459{bottom:582.240000pt;}
.y4b_c00459{bottom:586.400000pt;}
.y19_c00459{bottom:600.640000pt;}
.y4a_c00459{bottom:609.440000pt;}
.y18_c00459{bottom:619.040000pt;}
.y49_c00459{bottom:629.680000pt;}
.y17_c00459{bottom:637.440000pt;}
.y16_c00459{bottom:655.840000pt;}
.y47_c00459{bottom:662.000000pt;}
.y15_c00459{bottom:674.240000pt;}
.y44_c00459{bottom:688.800000pt;}
.y14_c00459{bottom:692.640000pt;}
.y13_c00459{bottom:711.040000pt;}
.y42_c00459{bottom:722.560000pt;}
.y12_c00459{bottom:729.440000pt;}
.y41_c00459{bottom:739.840000pt;}
.y11_c00459{bottom:747.760000pt;}
.y40_c00459{bottom:760.800000pt;}
.y10_c00459{bottom:766.160000pt;}
.y3f_c00459{bottom:780.800000pt;}
.yf_c00459{bottom:784.560000pt;}
.y3e_c00459{bottom:800.800000pt;}
.ye_c00459{bottom:802.960000pt;}
.y3d_c00459{bottom:820.800000pt;}
.yd_c00459{bottom:821.360000pt;}
.yc_c00459{bottom:839.760000pt;}
.y3c_c00459{bottom:840.800000pt;}
.yb_c00459{bottom:858.160000pt;}
.y3b_c00459{bottom:860.800000pt;}
.ya_c00459{bottom:876.560000pt;}
.y3a_c00459{bottom:880.800000pt;}
.y9_c00459{bottom:894.960000pt;}
.y37_c00459{bottom:903.840000pt;}
.y8_c00459{bottom:913.360000pt;}
.y36_c00459{bottom:924.080000pt;}
.y7_c00459{bottom:931.760000pt;}
.y6_c00459{bottom:950.160000pt;}
.y34_c00459{bottom:956.400000pt;}
.y5_c00459{bottom:986.960000pt;}
.y4_c00459{bottom:1005.360000pt;}
.y3_c00459{bottom:1023.036000pt;}
.y2_c00459{bottom:1036.800000pt;}
.y1_c00459{bottom:1064.400000pt;}
.hf_c00459{height:12.240000pt;}
.h10_c00459{height:12.318667pt;}
.hc_c00459{height:15.281333pt;}
.ha_c00459{height:19.998667pt;}
.h9_c00459{height:20.000000pt;}
.hb_c00459{height:20.960000pt;}
.h8_c00459{height:21.040000pt;}
.h4_c00459{height:26.800000pt;}
.he_c00459{height:33.760000pt;}
.hd_c00459{height:41.770312pt;}
.h2_c00459{height:47.109375pt;}
.h7_c00459{height:50.560000pt;}
.h6_c00459{height:57.473437pt;}
.h3_c00459{height:62.812500pt;}
.h5_c00459{height:86.107500pt;}
.h0_c00459{height:1122.560000pt;}
.h1_c00459{height:1122.666667pt;}
.w5_c00459{width:92.960000pt;}
.w4_c00459{width:93.280000pt;}
.w8_c00459{width:94.000000pt;}
.w9_c00459{width:94.001333pt;}
.w6_c00459{width:304.638667pt;}
.w7_c00459{width:306.720000pt;}
.w3_c00459{width:494.720000pt;}
.w2_c00459{width:793.805333pt;}
.w0_c00459{width:793.840000pt;}
.w1_c00459{width:794.000000pt;}
.x0_c00459{left:0.000000pt;}
.x10_c00459{left:3.680000pt;}
.x16_c00459{left:4.720000pt;}
.xb_c00459{left:15.200000pt;}
.x12_c00459{left:19.680000pt;}
.x15_c00459{left:26.880000pt;}
.xd_c00459{left:31.840000pt;}
.x9_c00459{left:34.720000pt;}
.x17_c00459{left:37.920000pt;}
.x13_c00459{left:39.200000pt;}
.x14_c00459{left:44.080000pt;}
.x11_c00459{left:48.880000pt;}
.x18_c00459{left:51.360000pt;}
.x19_c00459{left:103.760000pt;}
.x5_c00459{left:108.720000pt;}
.xf_c00459{left:109.760000pt;}
.x2_c00459{left:113.440000pt;}
.x6_c00459{left:123.280000pt;}
.x7_c00459{left:234.000000pt;}
.x1_c00459{left:396.960000pt;}
.x8_c00459{left:415.440000pt;}
.xa_c00459{left:425.360000pt;}
.xc_c00459{left:509.440000pt;}
.xe_c00459{left:519.360000pt;}
.x3_c00459{left:613.840000pt;}
.x4_c00459{left:805.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_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_087e5a7d7c777d09efeb05ee.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.284180;font-style:normal;font-weight:normal;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_9647deace4c89f51b414e1df.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00460{vertical-align:-82.800000px;}
.v0_c00460{vertical-align:0.000000px;}
.ls6_c00460{letter-spacing:-0.192240px;}
.ls5_c00460{letter-spacing:-0.108000px;}
.ls7_c00460{letter-spacing:-0.065880px;}
.ls4_c00460{letter-spacing:0.000000px;}
.ls2_c00460{letter-spacing:0.021960px;}
.ls8_c00460{letter-spacing:0.065880px;}
.ls1_c00460{letter-spacing:0.197640px;}
.ls3_c00460{letter-spacing:0.450000px;}
.ls0_c00460{letter-spacing:2233.800000px;}
.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:-16.667640px;}
.ws1_c00460{word-spacing:-16.470000px;}
.ws2_c00460{word-spacing:-16.404120px;}
.ws3_c00460{word-spacing:-11.970000px;}
.wsa_c00460{word-spacing:-0.197640px;}
.wsb_c00460{word-spacing:-0.095760px;}
.ws4_c00460{word-spacing:0.000000px;}
.ws8_c00460{word-spacing:0.065880px;}
.ws9_c00460{word-spacing:0.131760px;}
.ws6_c00460{word-spacing:0.162000px;}
.wsc_c00460{word-spacing:0.192240px;}
.ws5_c00460{word-spacing:0.270000px;}
.ws7_c00460{word-spacing:0.288360px;}
._1_c00460{margin-left:-1.058400px;}
._0_c00460{width:1.220400px;}
._2_c00460{width:846.000000px;}
.fc1_c00460{color:transparent;}
.fc0_c00460{color:rgb(0,0,0);}
.fs4_c00460{font-size:47.880000px;}
.fs0_c00460{font-size:54.000000px;}
.fs3_c00460{font-size:65.880000px;}
.fs1_c00460{font-size:72.000000px;}
.fs2_c00460{font-size:96.120000px;}
.y38_c00460{bottom:-15.210000px;}
.y0_c00460{bottom:0.000000px;}
.y47_c00460{bottom:2.880000px;}
.y35_c00460{bottom:2.970000px;}
.y2b_c00460{bottom:3.780000px;}
.y3a_c00460{bottom:5.220000px;}
.y27_c00460{bottom:5.310000px;}
.y37_c00460{bottom:22.680000px;}
.y2a_c00460{bottom:41.670000px;}
.y48_c00460{bottom:57.240000px;}
.y25_c00460{bottom:251.370000px;}
.y24_c00460{bottom:272.070000px;}
.y23_c00460{bottom:292.770000px;}
.y22_c00460{bottom:313.470000px;}
.y21_c00460{bottom:334.170000px;}
.y20_c00460{bottom:354.870000px;}
.y1f_c00460{bottom:375.570000px;}
.y1e_c00460{bottom:396.270000px;}
.y1d_c00460{bottom:416.970000px;}
.y1c_c00460{bottom:437.670000px;}
.y1b_c00460{bottom:458.370000px;}
.y1a_c00460{bottom:479.070000px;}
.y46_c00460{bottom:481.950000px;}
.y45_c00460{bottom:498.960000px;}
.y19_c00460{bottom:499.770000px;}
.y44_c00460{bottom:522.540000px;}
.y18_c00460{bottom:530.820000px;}
.y43_c00460{bottom:545.040000px;}
.y17_c00460{bottom:561.870000px;}
.y42_c00460{bottom:567.540000px;}
.y41_c00460{bottom:590.040000px;}
.y16_c00460{bottom:592.920000px;}
.y40_c00460{bottom:612.540000px;}
.y15_c00460{bottom:623.970000px;}
.y3f_c00460{bottom:635.040000px;}
.y14_c00460{bottom:655.020000px;}
.y3e_c00460{bottom:657.540000px;}
.y3c_c00460{bottom:683.460000px;}
.y13_c00460{bottom:686.070000px;}
.y3d_c00460{bottom:706.140000px;}
.y3b_c00460{bottom:707.220000px;}
.y12_c00460{bottom:717.120000px;}
.y39_c00460{bottom:744.660000px;}
.y11_c00460{bottom:748.170000px;}
.y36_c00460{bottom:774.810000px;}
.y10_c00460{bottom:779.220000px;}
.yf_c00460{bottom:810.270000px;}
.y34_c00460{bottom:812.700000px;}
.y33_c00460{bottom:832.320000px;}
.ye_c00460{bottom:841.230000px;}
.y32_c00460{bottom:855.900000px;}
.yd_c00460{bottom:872.280000px;}
.y31_c00460{bottom:878.400000px;}
.y30_c00460{bottom:900.900000px;}
.yc_c00460{bottom:903.330000px;}
.y2f_c00460{bottom:923.400000px;}
.yb_c00460{bottom:934.380000px;}
.y2e_c00460{bottom:945.900000px;}
.ya_c00460{bottom:965.430000px;}
.y2d_c00460{bottom:968.400000px;}
.y2c_c00460{bottom:990.900000px;}
.y9_c00460{bottom:996.480000px;}
.y29_c00460{bottom:1016.820000px;}
.y8_c00460{bottom:1027.530000px;}
.y28_c00460{bottom:1039.590000px;}
.y7_c00460{bottom:1058.580000px;}
.y26_c00460{bottom:1075.950000px;}
.y6_c00460{bottom:1110.330000px;}
.y5_c00460{bottom:1131.030000px;}
.y4_c00460{bottom:1150.920000px;}
.y3_c00460{bottom:1166.404500px;}
.y2_c00460{bottom:1181.970000px;}
.y1_c00460{bottom:1197.450000px;}
.h11_c00460{height:14.760000px;}
.hd_c00460{height:17.370000px;}
.hb_c00460{height:22.498500px;}
.ha_c00460{height:22.500000px;}
.hc_c00460{height:23.580000px;}
.h9_c00460{height:23.670000px;}
.h5_c00460{height:30.150000px;}
.hf_c00460{height:37.890000px;}
.he_c00460{height:46.991602px;}
.h3_c00460{height:52.971680px;}
.h2_c00460{height:52.998047px;}
.h8_c00460{height:56.880000px;}
.h10_c00460{height:58.948500px;}
.h7_c00460{height:64.657617px;}
.h4_c00460{height:70.664062px;}
.h6_c00460{height:96.870938px;}
.h0_c00460{height:1262.880000px;}
.h1_c00460{height:1263.000000px;}
.w4_c00460{width:104.580000px;}
.w3_c00460{width:104.940000px;}
.w7_c00460{width:105.750000px;}
.w8_c00460{width:105.751500px;}
.w5_c00460{width:342.718500px;}
.w6_c00460{width:345.060000px;}
.w2_c00460{width:556.560000px;}
.w0_c00460{width:893.070000px;}
.w1_c00460{width:893.250000px;}
.x0_c00460{left:0.000000px;}
.x10_c00460{left:4.140000px;}
.x16_c00460{left:5.310000px;}
.xb_c00460{left:17.100000px;}
.x15_c00460{left:30.240000px;}
.xd_c00460{left:35.820000px;}
.x9_c00460{left:39.060000px;}
.x11_c00460{left:42.660000px;}
.x12_c00460{left:44.100000px;}
.x13_c00460{left:49.590000px;}
.x19_c00460{left:52.290000px;}
.x18_c00460{left:54.990000px;}
.x14_c00460{left:57.780000px;}
.x17_c00460{left:83.340000px;}
.x5_c00460{left:122.310000px;}
.xf_c00460{left:123.480000px;}
.x3_c00460{left:127.620000px;}
.x6_c00460{left:135.990000px;}
.x7_c00460{left:263.250000px;}
.x2_c00460{left:425.160000px;}
.x1_c00460{left:446.580000px;}
.x8_c00460{left:467.370000px;}
.xa_c00460{left:478.530000px;}
.xc_c00460{left:573.120000px;}
.xe_c00460{left:584.280000px;}
.x4_c00460{left:690.570000px;}
.x1a_c00460{left:738.540000px;}
@media print{
.v1_c00460{vertical-align:-73.600000pt;}
.v0_c00460{vertical-align:0.000000pt;}
.ls6_c00460{letter-spacing:-0.170880pt;}
.ls5_c00460{letter-spacing:-0.096000pt;}
.ls7_c00460{letter-spacing:-0.058560pt;}
.ls4_c00460{letter-spacing:0.000000pt;}
.ls2_c00460{letter-spacing:0.019520pt;}
.ls8_c00460{letter-spacing:0.058560pt;}
.ls1_c00460{letter-spacing:0.175680pt;}
.ls3_c00460{letter-spacing:0.400000pt;}
.ls0_c00460{letter-spacing:1985.600000pt;}
.ws0_c00460{word-spacing:-14.815680pt;}
.ws1_c00460{word-spacing:-14.640000pt;}
.ws2_c00460{word-spacing:-14.581440pt;}
.ws3_c00460{word-spacing:-10.640000pt;}
.wsa_c00460{word-spacing:-0.175680pt;}
.wsb_c00460{word-spacing:-0.085120pt;}
.ws4_c00460{word-spacing:0.000000pt;}
.ws8_c00460{word-spacing:0.058560pt;}
.ws9_c00460{word-spacing:0.117120pt;}
.ws6_c00460{word-spacing:0.144000pt;}
.wsc_c00460{word-spacing:0.170880pt;}
.ws5_c00460{word-spacing:0.240000pt;}
.ws7_c00460{word-spacing:0.256320pt;}
._1_c00460{margin-left:-0.940800pt;}
._0_c00460{width:1.084800pt;}
._2_c00460{width:752.000000pt;}
.fs4_c00460{font-size:42.560000pt;}
.fs0_c00460{font-size:48.000000pt;}
.fs3_c00460{font-size:58.560000pt;}
.fs1_c00460{font-size:64.000000pt;}
.fs2_c00460{font-size:85.440000pt;}
.y38_c00460{bottom:-13.520000pt;}
.y0_c00460{bottom:0.000000pt;}
.y47_c00460{bottom:2.560000pt;}
.y35_c00460{bottom:2.640000pt;}
.y2b_c00460{bottom:3.360000pt;}
.y3a_c00460{bottom:4.640000pt;}
.y27_c00460{bottom:4.720000pt;}
.y37_c00460{bottom:20.160000pt;}
.y2a_c00460{bottom:37.040000pt;}
.y48_c00460{bottom:50.880000pt;}
.y25_c00460{bottom:223.440000pt;}
.y24_c00460{bottom:241.840000pt;}
.y23_c00460{bottom:260.240000pt;}
.y22_c00460{bottom:278.640000pt;}
.y21_c00460{bottom:297.040000pt;}
.y20_c00460{bottom:315.440000pt;}
.y1f_c00460{bottom:333.840000pt;}
.y1e_c00460{bottom:352.240000pt;}
.y1d_c00460{bottom:370.640000pt;}
.y1c_c00460{bottom:389.040000pt;}
.y1b_c00460{bottom:407.440000pt;}
.y1a_c00460{bottom:425.840000pt;}
.y46_c00460{bottom:428.400000pt;}
.y45_c00460{bottom:443.520000pt;}
.y19_c00460{bottom:444.240000pt;}
.y44_c00460{bottom:464.480000pt;}
.y18_c00460{bottom:471.840000pt;}
.y43_c00460{bottom:484.480000pt;}
.y17_c00460{bottom:499.440000pt;}
.y42_c00460{bottom:504.480000pt;}
.y41_c00460{bottom:524.480000pt;}
.y16_c00460{bottom:527.040000pt;}
.y40_c00460{bottom:544.480000pt;}
.y15_c00460{bottom:554.640000pt;}
.y3f_c00460{bottom:564.480000pt;}
.y14_c00460{bottom:582.240000pt;}
.y3e_c00460{bottom:584.480000pt;}
.y3c_c00460{bottom:607.520000pt;}
.y13_c00460{bottom:609.840000pt;}
.y3d_c00460{bottom:627.680000pt;}
.y3b_c00460{bottom:628.640000pt;}
.y12_c00460{bottom:637.440000pt;}
.y39_c00460{bottom:661.920000pt;}
.y11_c00460{bottom:665.040000pt;}
.y36_c00460{bottom:688.720000pt;}
.y10_c00460{bottom:692.640000pt;}
.yf_c00460{bottom:720.240000pt;}
.y34_c00460{bottom:722.400000pt;}
.y33_c00460{bottom:739.840000pt;}
.ye_c00460{bottom:747.760000pt;}
.y32_c00460{bottom:760.800000pt;}
.yd_c00460{bottom:775.360000pt;}
.y31_c00460{bottom:780.800000pt;}
.y30_c00460{bottom:800.800000pt;}
.yc_c00460{bottom:802.960000pt;}
.y2f_c00460{bottom:820.800000pt;}
.yb_c00460{bottom:830.560000pt;}
.y2e_c00460{bottom:840.800000pt;}
.ya_c00460{bottom:858.160000pt;}
.y2d_c00460{bottom:860.800000pt;}
.y2c_c00460{bottom:880.800000pt;}
.y9_c00460{bottom:885.760000pt;}
.y29_c00460{bottom:903.840000pt;}
.y8_c00460{bottom:913.360000pt;}
.y28_c00460{bottom:924.080000pt;}
.y7_c00460{bottom:940.960000pt;}
.y26_c00460{bottom:956.400000pt;}
.y6_c00460{bottom:986.960000pt;}
.y5_c00460{bottom:1005.360000pt;}
.y4_c00460{bottom:1023.040000pt;}
.y3_c00460{bottom:1036.804000pt;}
.y2_c00460{bottom:1050.640000pt;}
.y1_c00460{bottom:1064.400000pt;}
.h11_c00460{height:13.120000pt;}
.hd_c00460{height:15.440000pt;}
.hb_c00460{height:19.998667pt;}
.ha_c00460{height:20.000000pt;}
.hc_c00460{height:20.960000pt;}
.h9_c00460{height:21.040000pt;}
.h5_c00460{height:26.800000pt;}
.hf_c00460{height:33.680000pt;}
.he_c00460{height:41.770312pt;}
.h3_c00460{height:47.085938pt;}
.h2_c00460{height:47.109375pt;}
.h8_c00460{height:50.560000pt;}
.h10_c00460{height:52.398667pt;}
.h7_c00460{height:57.473437pt;}
.h4_c00460{height:62.812500pt;}
.h6_c00460{height:86.107500pt;}
.h0_c00460{height:1122.560000pt;}
.h1_c00460{height:1122.666667pt;}
.w4_c00460{width:92.960000pt;}
.w3_c00460{width:93.280000pt;}
.w7_c00460{width:94.000000pt;}
.w8_c00460{width:94.001333pt;}
.w5_c00460{width:304.638667pt;}
.w6_c00460{width:306.720000pt;}
.w2_c00460{width:494.720000pt;}
.w0_c00460{width:793.840000pt;}
.w1_c00460{width:794.000000pt;}
.x0_c00460{left:0.000000pt;}
.x10_c00460{left:3.680000pt;}
.x16_c00460{left:4.720000pt;}
.xb_c00460{left:15.200000pt;}
.x15_c00460{left:26.880000pt;}
.xd_c00460{left:31.840000pt;}
.x9_c00460{left:34.720000pt;}
.x11_c00460{left:37.920000pt;}
.x12_c00460{left:39.200000pt;}
.x13_c00460{left:44.080000pt;}
.x19_c00460{left:46.480000pt;}
.x18_c00460{left:48.880000pt;}
.x14_c00460{left:51.360000pt;}
.x17_c00460{left:74.080000pt;}
.x5_c00460{left:108.720000pt;}
.xf_c00460{left:109.760000pt;}
.x3_c00460{left:113.440000pt;}
.x6_c00460{left:120.880000pt;}
.x7_c00460{left:234.000000pt;}
.x2_c00460{left:377.920000pt;}
.x1_c00460{left:396.960000pt;}
.x8_c00460{left:415.440000pt;}
.xa_c00460{left:425.360000pt;}
.xc_c00460{left:509.440000pt;}
.xe_c00460{left:519.360000pt;}
.x4_c00460{left:613.840000pt;}
.x1a_c00460{left:656.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_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_154c18f18fe5863f4e71f583.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00461{vertical-align:-61.938000px;}
.v0_c00461{vertical-align:0.000000px;}
.ls1_c00461{letter-spacing:0.000000px;}
.ls0_c00461{letter-spacing:319.518000px;}
.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.162000px;}
.ws0_c00461{word-spacing:0.000000px;}
._0_c00461{width:846.000000px;}
.fc0_c00461{color:rgb(0,0,0);}
.fs0_c00461{font-size:54.000000px;}
.fs1_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y7_c00461{bottom:57.240000px;}
.y6_c00461{bottom:1089.630000px;}
.y5_c00461{bottom:1110.330000px;}
.y4_c00461{bottom:1131.030000px;}
.y3_c00461{bottom:1150.915500px;}
.y2_c00461{bottom:1166.400000px;}
.y1_c00461{bottom:1197.450000px;}
.h2_c00461{height:52.998047px;}
.h3_c00461{height:70.664062px;}
.h0_c00461{height:1262.880000px;}
.h1_c00461{height:1263.000000px;}
.w0_c00461{width:893.070000px;}
.w1_c00461{width:893.250000px;}
.x0_c00461{left:0.000000px;}
.x2_c00461{left:127.620000px;}
.x1_c00461{left:446.580000px;}
@media print{
.v1_c00461{vertical-align:-55.056000pt;}
.v0_c00461{vertical-align:0.000000pt;}
.ls1_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:284.016000pt;}
.ws1_c00461{word-spacing:-0.144000pt;}
.ws0_c00461{word-spacing:0.000000pt;}
._0_c00461{width:752.000000pt;}
.fs0_c00461{font-size:48.000000pt;}
.fs1_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y7_c00461{bottom:50.880000pt;}
.y6_c00461{bottom:968.560000pt;}
.y5_c00461{bottom:986.960000pt;}
.y4_c00461{bottom:1005.360000pt;}
.y3_c00461{bottom:1023.036000pt;}
.y2_c00461{bottom:1036.800000pt;}
.y1_c00461{bottom:1064.400000pt;}
.h2_c00461{height:47.109375pt;}
.h3_c00461{height:62.812500pt;}
.h0_c00461{height:1122.560000pt;}
.h1_c00461{height:1122.666667pt;}
.w0_c00461{width:793.840000pt;}
.w1_c00461{width:794.000000pt;}
.x0_c00461{left:0.000000pt;}
.x2_c00461{left:113.440000pt;}
.x1_c00461{left:396.960000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7d78a20af7276637bb03f75.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_0419108f28abb08db4408a55.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00462{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00462{vertical-align:-105.840000px;}
.v0_c00462{vertical-align:0.000000px;}
.ls3_c00462{letter-spacing:-0.108000px;}
.ls2_c00462{letter-spacing:0.000000px;}
.ls1_c00462{letter-spacing:837.000000px;}
.ls0_c00462{letter-spacing:1257.840000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:0.000000px;}
.ws2_c00462{word-spacing:0.162000px;}
.ws1_c00462{word-spacing:0.270000px;}
._1_c00462{margin-left:-1.058400px;}
._0_c00462{width:1.220400px;}
.fc0_c00462{color:rgb(0,0,0);}
.fs0_c00462{font-size:54.000000px;}
.fs1_c00462{font-size:72.000000px;}
.fs2_c00462{font-size:96.120000px;}
.fs3_c00462{font-size:108.000000px;}
.y0_c00462{bottom:0.000000px;}
.y11_c00462{bottom:57.240000px;}
.y10_c00462{bottom:644.679000px;}
.yf_c00462{bottom:682.560000px;}
.ye_c00462{bottom:726.840000px;}
.yd_c00462{bottom:770.580000px;}
.yc_c00462{bottom:814.840290px;}
.yb_c00462{bottom:856.147860px;}
.ya_c00462{bottom:897.551550px;}
.y9_c00462{bottom:938.955240px;}
.y8_c00462{bottom:980.358930px;}
.y7_c00462{bottom:1021.762620px;}
.y6_c00462{bottom:1063.166310px;}
.y5_c00462{bottom:1131.030000px;}
.y4_c00462{bottom:1150.920000px;}
.y3_c00462{bottom:1166.404500px;}
.y2_c00462{bottom:1181.970000px;}
.y1_c00462{bottom:1197.450000px;}
.h3_c00462{height:52.971680px;}
.h2_c00462{height:52.998047px;}
.h4_c00462{height:70.664062px;}
.h5_c00462{height:96.870938px;}
.h6_c00462{height:108.843750px;}
.h0_c00462{height:1262.880000px;}
.h1_c00462{height:1263.000000px;}
.w0_c00462{width:893.070000px;}
.w1_c00462{width:893.250000px;}
.x0_c00462{left:0.000000px;}
.x3_c00462{left:127.620000px;}
.x5_c00462{left:203.220000px;}
.x4_c00462{left:396.270000px;}
.x2_c00462{left:425.160000px;}
.x1_c00462{left:446.580000px;}
.x6_c00462{left:738.540000px;}
@media print{
.v1_c00462{vertical-align:-94.080000pt;}
.v0_c00462{vertical-align:0.000000pt;}
.ls3_c00462{letter-spacing:-0.096000pt;}
.ls2_c00462{letter-spacing:0.000000pt;}
.ls1_c00462{letter-spacing:744.000000pt;}
.ls0_c00462{letter-spacing:1118.080000pt;}
.ws0_c00462{word-spacing:0.000000pt;}
.ws2_c00462{word-spacing:0.144000pt;}
.ws1_c00462{word-spacing:0.240000pt;}
._1_c00462{margin-left:-0.940800pt;}
._0_c00462{width:1.084800pt;}
.fs0_c00462{font-size:48.000000pt;}
.fs1_c00462{font-size:64.000000pt;}
.fs2_c00462{font-size:85.440000pt;}
.fs3_c00462{font-size:96.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y11_c00462{bottom:50.880000pt;}
.y10_c00462{bottom:573.048000pt;}
.yf_c00462{bottom:606.720000pt;}
.ye_c00462{bottom:646.080000pt;}
.yd_c00462{bottom:684.960000pt;}
.yc_c00462{bottom:724.302480pt;}
.yb_c00462{bottom:761.020320pt;}
.ya_c00462{bottom:797.823600pt;}
.y9_c00462{bottom:834.626880pt;}
.y8_c00462{bottom:871.430160pt;}
.y7_c00462{bottom:908.233440pt;}
.y6_c00462{bottom:945.036720pt;}
.y5_c00462{bottom:1005.360000pt;}
.y4_c00462{bottom:1023.040000pt;}
.y3_c00462{bottom:1036.804000pt;}
.y2_c00462{bottom:1050.640000pt;}
.y1_c00462{bottom:1064.400000pt;}
.h3_c00462{height:47.085938pt;}
.h2_c00462{height:47.109375pt;}
.h4_c00462{height:62.812500pt;}
.h5_c00462{height:86.107500pt;}
.h6_c00462{height:96.750000pt;}
.h0_c00462{height:1122.560000pt;}
.h1_c00462{height:1122.666667pt;}
.w0_c00462{width:793.840000pt;}
.w1_c00462{width:794.000000pt;}
.x0_c00462{left:0.000000pt;}
.x3_c00462{left:113.440000pt;}
.x5_c00462{left:180.640000pt;}
.x4_c00462{left:352.240000pt;}
.x2_c00462{left:377.920000pt;}
.x1_c00462{left:396.960000pt;}
.x6_c00462{left:656.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_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_c592d4e7db511c2d6a3342bb.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_ae02542cc8c0da3cee71bc34.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00463{vertical-align:-61.938000px;}
.v0_c00463{vertical-align:0.000000px;}
.ls3_c00463{letter-spacing:-0.095760px;}
.ls2_c00463{letter-spacing:0.000000px;}
.ls4_c00463{letter-spacing:0.095760px;}
.ls1_c00463{letter-spacing:0.191520px;}
.ls0_c00463{letter-spacing:319.518000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00463{word-spacing:-12.161520px;}
.ws0_c00463{word-spacing:-11.970000px;}
.ws2_c00463{word-spacing:-11.874240px;}
.ws6_c00463{word-spacing:-0.287280px;}
.ws7_c00463{word-spacing:-0.191520px;}
.ws4_c00463{word-spacing:-0.162000px;}
.ws5_c00463{word-spacing:-0.095760px;}
.ws3_c00463{word-spacing:0.000000px;}
._1_c00463{margin-left:-1.310292px;}
._0_c00463{width:1.168272px;}
._2_c00463{width:846.000000px;}
.fc1_c00463{color:transparent;}
.fc0_c00463{color:rgb(0,0,0);}
.fs3_c00463{font-size:47.880000px;}
.fs0_c00463{font-size:54.000000px;}
.fs2_c00463{font-size:60.120000px;}
.fs1_c00463{font-size:72.000000px;}
.y19_c00463{bottom:-10.890000px;}
.y0_c00463{bottom:0.000000px;}
.y1f_c00463{bottom:2.879850px;}
.y9_c00463{bottom:2.880000px;}
.y7_c00463{bottom:2.970000px;}
.y1b_c00463{bottom:16.740000px;}
.y6_c00463{bottom:17.280000px;}
.y32_c00463{bottom:30.510000px;}
.y48_c00463{bottom:57.240000px;}
.y47_c00463{bottom:197.010000px;}
.y46_c00463{bottom:213.570000px;}
.y45_c00463{bottom:231.030000px;}
.y44_c00463{bottom:247.050000px;}
.y43_c00463{bottom:260.910000px;}
.y42_c00463{bottom:274.680000px;}
.y41_c00463{bottom:289.080000px;}
.y40_c00463{bottom:302.850000px;}
.y3f_c00463{bottom:316.710000px;}
.y3e_c00463{bottom:330.480000px;}
.y3d_c00463{bottom:346.500000px;}
.y3c_c00463{bottom:362.970000px;}
.y3b_c00463{bottom:376.830000px;}
.y3a_c00463{bottom:392.940000px;}
.y39_c00463{bottom:408.960000px;}
.y38_c00463{bottom:422.820000px;}
.y37_c00463{bottom:436.590000px;}
.y36_c00463{bottom:450.360000px;}
.y35_c00463{bottom:464.220000px;}
.y34_c00463{bottom:477.990000px;}
.y31_c00463{bottom:499.410000px;}
.y33_c00463{bottom:516.150000px;}
.y30_c00463{bottom:540.810000px;}
.y2f_c00463{bottom:562.590000px;}
.y2e_c00463{bottom:578.610000px;}
.y2d_c00463{bottom:594.630000px;}
.y2c_c00463{bottom:609.480000px;}
.y2b_c00463{bottom:623.250000px;}
.y2a_c00463{bottom:637.020000px;}
.y29_c00463{bottom:650.880000px;}
.y28_c00463{bottom:664.650000px;}
.y27_c00463{bottom:678.420000px;}
.y26_c00463{bottom:694.530000px;}
.y25_c00463{bottom:708.300000px;}
.y24_c00463{bottom:722.070000px;}
.y23_c00463{bottom:738.180000px;}
.y22_c00463{bottom:754.200000px;}
.y21_c00463{bottom:767.970000px;}
.y20_c00463{bottom:781.830000px;}
.y1e_c00463{bottom:795.600000px;}
.y1d_c00463{bottom:809.370000px;}
.y1c_c00463{bottom:823.140000px;}
.y1a_c00463{bottom:845.190000px;}
.y18_c00463{bottom:872.820000px;}
.y17_c00463{bottom:879.300000px;}
.y16_c00463{bottom:895.320000px;}
.y15_c00463{bottom:909.090000px;}
.y14_c00463{bottom:922.950000px;}
.y13_c00463{bottom:936.720000px;}
.y12_c00463{bottom:950.490000px;}
.y11_c00463{bottom:964.350000px;}
.y10_c00463{bottom:978.120000px;}
.yf_c00463{bottom:994.140000px;}
.ye_c00463{bottom:1008.000000px;}
.yd_c00463{bottom:1024.020000px;}
.yc_c00463{bottom:1040.670000px;}
.yb_c00463{bottom:1054.440000px;}
.ya_c00463{bottom:1068.300000px;}
.y8_c00463{bottom:1082.070000px;}
.y5_c00463{bottom:1095.840000px;}
.y4_c00463{bottom:1131.030000px;}
.y3_c00463{bottom:1150.915500px;}
.y2_c00463{bottom:1166.400000px;}
.y1_c00463{bottom:1197.450000px;}
.hc_c00463{height:6.480000px;}
.h7_c00463{height:13.770000px;}
.h9_c00463{height:13.858500px;}
.hb_c00463{height:13.860000px;}
.h14_c00463{height:14.398500px;}
.ha_c00463{height:14.400000px;}
.hf_c00463{height:14.850000px;}
.h15_c00463{height:15.210000px;}
.h13_c00463{height:16.470000px;}
.h12_c00463{height:21.418500px;}
.h10_c00463{height:21.780000px;}
.he_c00463{height:22.051500px;}
.hd_c00463{height:27.628500px;}
.h4_c00463{height:31.050000px;}
.h11_c00463{height:41.400000px;}
.h8_c00463{height:46.991602px;}
.h6_c00463{height:48.254063px;}
.h2_c00463{height:52.998047px;}
.h5_c00463{height:59.004492px;}
.h3_c00463{height:70.664062px;}
.h0_c00463{height:1262.880000px;}
.h1_c00463{height:1263.000000px;}
.w5_c00463{width:76.680000px;}
.w7_c00463{width:80.370000px;}
.wa_c00463{width:81.450000px;}
.w6_c00463{width:81.451500px;}
.w4_c00463{width:87.120000px;}
.w8_c00463{width:158.131500px;}
.w3_c00463{width:179.100000px;}
.w9_c00463{width:180.270000px;}
.w2_c00463{width:506.970000px;}
.w0_c00463{width:893.070000px;}
.w1_c00463{width:893.250000px;}
.x0_c00463{left:0.000000px;}
.xe_c00463{left:4.050000px;}
.x4_c00463{left:5.220000px;}
.x9_c00463{left:14.670000px;}
.x7_c00463{left:16.560000px;}
.xb_c00463{left:17.730000px;}
.x10_c00463{left:26.460000px;}
.xd_c00463{left:27.900000px;}
.x11_c00463{left:31.230000px;}
.x13_c00463{left:32.940000px;}
.xf_c00463{left:36.900000px;}
.x12_c00463{left:43.200000px;}
.x14_c00463{left:48.870000px;}
.x15_c00463{left:60.930000px;}
.x17_c00463{left:62.910000px;}
.x5_c00463{left:68.310000px;}
.x3_c00463{left:126.450000px;}
.x2_c00463{left:127.620000px;}
.x16_c00463{left:131.670000px;}
.x6_c00463{left:306.720000px;}
.x8_c00463{left:393.840000px;}
.x1_c00463{left:446.580000px;}
.xa_c00463{left:470.520000px;}
.xc_c00463{left:551.970000px;}
@media print{
.v1_c00463{vertical-align:-55.056000pt;}
.v0_c00463{vertical-align:0.000000pt;}
.ls3_c00463{letter-spacing:-0.085120pt;}
.ls2_c00463{letter-spacing:0.000000pt;}
.ls4_c00463{letter-spacing:0.085120pt;}
.ls1_c00463{letter-spacing:0.170240pt;}
.ls0_c00463{letter-spacing:284.016000pt;}
.ws1_c00463{word-spacing:-10.810240pt;}
.ws0_c00463{word-spacing:-10.640000pt;}
.ws2_c00463{word-spacing:-10.554880pt;}
.ws6_c00463{word-spacing:-0.255360pt;}
.ws7_c00463{word-spacing:-0.170240pt;}
.ws4_c00463{word-spacing:-0.144000pt;}
.ws5_c00463{word-spacing:-0.085120pt;}
.ws3_c00463{word-spacing:0.000000pt;}
._1_c00463{margin-left:-1.164704pt;}
._0_c00463{width:1.038464pt;}
._2_c00463{width:752.000000pt;}
.fs3_c00463{font-size:42.560000pt;}
.fs0_c00463{font-size:48.000000pt;}
.fs2_c00463{font-size:53.440000pt;}
.fs1_c00463{font-size:64.000000pt;}
.y19_c00463{bottom:-9.680000pt;}
.y0_c00463{bottom:0.000000pt;}
.y1f_c00463{bottom:2.559867pt;}
.y9_c00463{bottom:2.560000pt;}
.y7_c00463{bottom:2.640000pt;}
.y1b_c00463{bottom:14.880000pt;}
.y6_c00463{bottom:15.360000pt;}
.y32_c00463{bottom:27.120000pt;}
.y48_c00463{bottom:50.880000pt;}
.y47_c00463{bottom:175.120000pt;}
.y46_c00463{bottom:189.840000pt;}
.y45_c00463{bottom:205.360000pt;}
.y44_c00463{bottom:219.600000pt;}
.y43_c00463{bottom:231.920000pt;}
.y42_c00463{bottom:244.160000pt;}
.y41_c00463{bottom:256.960000pt;}
.y40_c00463{bottom:269.200000pt;}
.y3f_c00463{bottom:281.520000pt;}
.y3e_c00463{bottom:293.760000pt;}
.y3d_c00463{bottom:308.000000pt;}
.y3c_c00463{bottom:322.640000pt;}
.y3b_c00463{bottom:334.960000pt;}
.y3a_c00463{bottom:349.280000pt;}
.y39_c00463{bottom:363.520000pt;}
.y38_c00463{bottom:375.840000pt;}
.y37_c00463{bottom:388.080000pt;}
.y36_c00463{bottom:400.320000pt;}
.y35_c00463{bottom:412.640000pt;}
.y34_c00463{bottom:424.880000pt;}
.y31_c00463{bottom:443.920000pt;}
.y33_c00463{bottom:458.800000pt;}
.y30_c00463{bottom:480.720000pt;}
.y2f_c00463{bottom:500.080000pt;}
.y2e_c00463{bottom:514.320000pt;}
.y2d_c00463{bottom:528.560000pt;}
.y2c_c00463{bottom:541.760000pt;}
.y2b_c00463{bottom:554.000000pt;}
.y2a_c00463{bottom:566.240000pt;}
.y29_c00463{bottom:578.560000pt;}
.y28_c00463{bottom:590.800000pt;}
.y27_c00463{bottom:603.040000pt;}
.y26_c00463{bottom:617.360000pt;}
.y25_c00463{bottom:629.600000pt;}
.y24_c00463{bottom:641.840000pt;}
.y23_c00463{bottom:656.160000pt;}
.y22_c00463{bottom:670.400000pt;}
.y21_c00463{bottom:682.640000pt;}
.y20_c00463{bottom:694.960000pt;}
.y1e_c00463{bottom:707.200000pt;}
.y1d_c00463{bottom:719.440000pt;}
.y1c_c00463{bottom:731.680000pt;}
.y1a_c00463{bottom:751.280000pt;}
.y18_c00463{bottom:775.840000pt;}
.y17_c00463{bottom:781.600000pt;}
.y16_c00463{bottom:795.840000pt;}
.y15_c00463{bottom:808.080000pt;}
.y14_c00463{bottom:820.400000pt;}
.y13_c00463{bottom:832.640000pt;}
.y12_c00463{bottom:844.880000pt;}
.y11_c00463{bottom:857.200000pt;}
.y10_c00463{bottom:869.440000pt;}
.yf_c00463{bottom:883.680000pt;}
.ye_c00463{bottom:896.000000pt;}
.yd_c00463{bottom:910.240000pt;}
.yc_c00463{bottom:925.040000pt;}
.yb_c00463{bottom:937.280000pt;}
.ya_c00463{bottom:949.600000pt;}
.y8_c00463{bottom:961.840000pt;}
.y5_c00463{bottom:974.080000pt;}
.y4_c00463{bottom:1005.360000pt;}
.y3_c00463{bottom:1023.036000pt;}
.y2_c00463{bottom:1036.800000pt;}
.y1_c00463{bottom:1064.400000pt;}
.hc_c00463{height:5.760000pt;}
.h7_c00463{height:12.240000pt;}
.h9_c00463{height:12.318667pt;}
.hb_c00463{height:12.320000pt;}
.h14_c00463{height:12.798667pt;}
.ha_c00463{height:12.800000pt;}
.hf_c00463{height:13.200000pt;}
.h15_c00463{height:13.520000pt;}
.h13_c00463{height:14.640000pt;}
.h12_c00463{height:19.038667pt;}
.h10_c00463{height:19.360000pt;}
.he_c00463{height:19.601333pt;}
.hd_c00463{height:24.558667pt;}
.h4_c00463{height:27.600000pt;}
.h11_c00463{height:36.800000pt;}
.h8_c00463{height:41.770312pt;}
.h6_c00463{height:42.892500pt;}
.h2_c00463{height:47.109375pt;}
.h5_c00463{height:52.448437pt;}
.h3_c00463{height:62.812500pt;}
.h0_c00463{height:1122.560000pt;}
.h1_c00463{height:1122.666667pt;}
.w5_c00463{width:68.160000pt;}
.w7_c00463{width:71.440000pt;}
.wa_c00463{width:72.400000pt;}
.w6_c00463{width:72.401333pt;}
.w4_c00463{width:77.440000pt;}
.w8_c00463{width:140.561333pt;}
.w3_c00463{width:159.200000pt;}
.w9_c00463{width:160.240000pt;}
.w2_c00463{width:450.640000pt;}
.w0_c00463{width:793.840000pt;}
.w1_c00463{width:794.000000pt;}
.x0_c00463{left:0.000000pt;}
.xe_c00463{left:3.600000pt;}
.x4_c00463{left:4.640000pt;}
.x9_c00463{left:13.040000pt;}
.x7_c00463{left:14.720000pt;}
.xb_c00463{left:15.760000pt;}
.x10_c00463{left:23.520000pt;}
.xd_c00463{left:24.800000pt;}
.x11_c00463{left:27.760000pt;}
.x13_c00463{left:29.280000pt;}
.xf_c00463{left:32.800000pt;}
.x12_c00463{left:38.400000pt;}
.x14_c00463{left:43.440000pt;}
.x15_c00463{left:54.160000pt;}
.x17_c00463{left:55.920000pt;}
.x5_c00463{left:60.720000pt;}
.x3_c00463{left:112.400000pt;}
.x2_c00463{left:113.440000pt;}
.x16_c00463{left:117.040000pt;}
.x6_c00463{left:272.640000pt;}
.x8_c00463{left:350.080000pt;}
.x1_c00463{left:396.960000pt;}
.xa_c00463{left:418.240000pt;}
.xc_c00463{left:490.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_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_c592d4e7db511c2d6a3342bb.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_f2bbd8ec35d5bf40593bc191.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls2_c00464{letter-spacing:-0.108000px;}
.ls3_c00464{letter-spacing:-0.095760px;}
.ls1_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:0.191520px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00464{word-spacing:-12.161520px;}
.ws0_c00464{word-spacing:-11.970000px;}
.ws2_c00464{word-spacing:-11.874240px;}
.ws7_c00464{word-spacing:-0.287280px;}
.ws6_c00464{word-spacing:-0.095760px;}
.ws3_c00464{word-spacing:0.000000px;}
.ws5_c00464{word-spacing:0.162000px;}
.ws4_c00464{word-spacing:0.270000px;}
._1_c00464{margin-left:-1.058400px;}
._0_c00464{width:1.220400px;}
._2_c00464{width:846.000000px;}
.fc1_c00464{color:transparent;}
.fc0_c00464{color:rgb(0,0,0);}
.fs3_c00464{font-size:47.880000px;}
.fs0_c00464{font-size:54.000000px;}
.fs2_c00464{font-size:60.120000px;}
.fs1_c00464{font-size:72.000000px;}
.y1d_c00464{bottom:-10.890000px;}
.y0_c00464{bottom:0.000000px;}
.ya_c00464{bottom:2.880000px;}
.y8_c00464{bottom:2.970000px;}
.y7_c00464{bottom:17.280000px;}
.y44_c00464{bottom:57.240000px;}
.y43_c00464{bottom:181.440000px;}
.y42_c00464{bottom:198.000000px;}
.y41_c00464{bottom:214.020000px;}
.y40_c00464{bottom:227.880000px;}
.y3f_c00464{bottom:244.710000px;}
.y3e_c00464{bottom:261.630000px;}
.y3d_c00464{bottom:278.460000px;}
.y3c_c00464{bottom:295.380000px;}
.y3b_c00464{bottom:312.210000px;}
.y3a_c00464{bottom:332.460000px;}
.y39_c00464{bottom:346.230000px;}
.y38_c00464{bottom:362.340000px;}
.y37_c00464{bottom:378.360000px;}
.y36_c00464{bottom:396.360000px;}
.y35_c00464{bottom:413.190000px;}
.y34_c00464{bottom:430.110000px;}
.y33_c00464{bottom:446.940000px;}
.y32_c00464{bottom:463.860000px;}
.y31_c00464{bottom:470.430000px;}
.y30_c00464{bottom:486.540000px;}
.y2f_c00464{bottom:502.560000px;}
.y2e_c00464{bottom:520.560000px;}
.y2d_c00464{bottom:537.390000px;}
.y2c_c00464{bottom:554.310000px;}
.y2b_c00464{bottom:571.140000px;}
.y2a_c00464{bottom:588.060000px;}
.y29_c00464{bottom:604.890000px;}
.y28_c00464{bottom:625.140000px;}
.y27_c00464{bottom:640.800000px;}
.y26_c00464{bottom:654.570000px;}
.y25_c00464{bottom:670.590000px;}
.y24_c00464{bottom:686.700000px;}
.y23_c00464{bottom:704.700000px;}
.y22_c00464{bottom:721.530000px;}
.y21_c00464{bottom:738.450000px;}
.y20_c00464{bottom:755.280000px;}
.y1f_c00464{bottom:772.200000px;}
.y1e_c00464{bottom:789.030000px;}
.y1c_c00464{bottom:802.890000px;}
.y1b_c00464{bottom:808.830000px;}
.y1a_c00464{bottom:824.940000px;}
.y19_c00464{bottom:840.960000px;}
.y18_c00464{bottom:858.960000px;}
.y17_c00464{bottom:875.790000px;}
.y16_c00464{bottom:892.710000px;}
.y15_c00464{bottom:909.540000px;}
.y14_c00464{bottom:926.460000px;}
.y13_c00464{bottom:943.290000px;}
.y12_c00464{bottom:963.540000px;}
.y11_c00464{bottom:977.400000px;}
.y10_c00464{bottom:991.170000px;}
.yf_c00464{bottom:1007.190000px;}
.ye_c00464{bottom:1026.900000px;}
.yd_c00464{bottom:1040.670000px;}
.yc_c00464{bottom:1054.440000px;}
.yb_c00464{bottom:1068.300000px;}
.y9_c00464{bottom:1082.070000px;}
.y6_c00464{bottom:1095.840000px;}
.y5_c00464{bottom:1131.030000px;}
.y4_c00464{bottom:1150.920000px;}
.y3_c00464{bottom:1166.404500px;}
.y2_c00464{bottom:1181.970000px;}
.y1_c00464{bottom:1197.450000px;}
.h10_c00464{height:5.940000px;}
.h15_c00464{height:6.570000px;}
.h8_c00464{height:13.770000px;}
.ha_c00464{height:13.858500px;}
.hc_c00464{height:13.860000px;}
.h14_c00464{height:15.660000px;}
.he_c00464{height:16.828500px;}
.h11_c00464{height:16.830000px;}
.h12_c00464{height:16.920000px;}
.hf_c00464{height:16.921500px;}
.hb_c00464{height:17.460000px;}
.h13_c00464{height:18.000000px;}
.hd_c00464{height:18.001500px;}
.h5_c00464{height:31.050000px;}
.h9_c00464{height:46.991602px;}
.h7_c00464{height:48.254063px;}
.h3_c00464{height:52.971680px;}
.h2_c00464{height:52.998047px;}
.h6_c00464{height:59.004492px;}
.h4_c00464{height:70.664062px;}
.h0_c00464{height:1262.880000px;}
.h1_c00464{height:1263.000000px;}
.w5_c00464{width:76.680000px;}
.w7_c00464{width:80.370000px;}
.wa_c00464{width:81.450000px;}
.w6_c00464{width:81.451500px;}
.w4_c00464{width:87.120000px;}
.w8_c00464{width:158.131500px;}
.w3_c00464{width:179.100000px;}
.w9_c00464{width:180.270000px;}
.w2_c00464{width:506.970000px;}
.w0_c00464{width:893.070000px;}
.w1_c00464{width:893.250000px;}
.x0_c00464{left:0.000000px;}
.xf_c00464{left:4.050000px;}
.x5_c00464{left:5.220000px;}
.xa_c00464{left:14.670000px;}
.x8_c00464{left:16.560000px;}
.xc_c00464{left:17.730000px;}
.x11_c00464{left:26.460000px;}
.xe_c00464{left:27.900000px;}
.x12_c00464{left:31.230000px;}
.x14_c00464{left:32.940000px;}
.x10_c00464{left:36.900000px;}
.x15_c00464{left:39.240000px;}
.x13_c00464{left:43.200000px;}
.x16_c00464{left:56.880000px;}
.x17_c00464{left:60.930000px;}
.x6_c00464{left:68.310000px;}
.x4_c00464{left:126.450000px;}
.x3_c00464{left:127.620000px;}
.x7_c00464{left:306.720000px;}
.x9_c00464{left:393.840000px;}
.x2_c00464{left:425.160000px;}
.x1_c00464{left:446.580000px;}
.xb_c00464{left:470.520000px;}
.xd_c00464{left:551.970000px;}
.x18_c00464{left:738.540000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls2_c00464{letter-spacing:-0.096000pt;}
.ls3_c00464{letter-spacing:-0.085120pt;}
.ls1_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:0.170240pt;}
.ws1_c00464{word-spacing:-10.810240pt;}
.ws0_c00464{word-spacing:-10.640000pt;}
.ws2_c00464{word-spacing:-10.554880pt;}
.ws7_c00464{word-spacing:-0.255360pt;}
.ws6_c00464{word-spacing:-0.085120pt;}
.ws3_c00464{word-spacing:0.000000pt;}
.ws5_c00464{word-spacing:0.144000pt;}
.ws4_c00464{word-spacing:0.240000pt;}
._1_c00464{margin-left:-0.940800pt;}
._0_c00464{width:1.084800pt;}
._2_c00464{width:752.000000pt;}
.fs3_c00464{font-size:42.560000pt;}
.fs0_c00464{font-size:48.000000pt;}
.fs2_c00464{font-size:53.440000pt;}
.fs1_c00464{font-size:64.000000pt;}
.y1d_c00464{bottom:-9.680000pt;}
.y0_c00464{bottom:0.000000pt;}
.ya_c00464{bottom:2.560000pt;}
.y8_c00464{bottom:2.640000pt;}
.y7_c00464{bottom:15.360000pt;}
.y44_c00464{bottom:50.880000pt;}
.y43_c00464{bottom:161.280000pt;}
.y42_c00464{bottom:176.000000pt;}
.y41_c00464{bottom:190.240000pt;}
.y40_c00464{bottom:202.560000pt;}
.y3f_c00464{bottom:217.520000pt;}
.y3e_c00464{bottom:232.560000pt;}
.y3d_c00464{bottom:247.520000pt;}
.y3c_c00464{bottom:262.560000pt;}
.y3b_c00464{bottom:277.520000pt;}
.y3a_c00464{bottom:295.520000pt;}
.y39_c00464{bottom:307.760000pt;}
.y38_c00464{bottom:322.080000pt;}
.y37_c00464{bottom:336.320000pt;}
.y36_c00464{bottom:352.320000pt;}
.y35_c00464{bottom:367.280000pt;}
.y34_c00464{bottom:382.320000pt;}
.y33_c00464{bottom:397.280000pt;}
.y32_c00464{bottom:412.320000pt;}
.y31_c00464{bottom:418.160000pt;}
.y30_c00464{bottom:432.480000pt;}
.y2f_c00464{bottom:446.720000pt;}
.y2e_c00464{bottom:462.720000pt;}
.y2d_c00464{bottom:477.680000pt;}
.y2c_c00464{bottom:492.720000pt;}
.y2b_c00464{bottom:507.680000pt;}
.y2a_c00464{bottom:522.720000pt;}
.y29_c00464{bottom:537.680000pt;}
.y28_c00464{bottom:555.680000pt;}
.y27_c00464{bottom:569.600000pt;}
.y26_c00464{bottom:581.840000pt;}
.y25_c00464{bottom:596.080000pt;}
.y24_c00464{bottom:610.400000pt;}
.y23_c00464{bottom:626.400000pt;}
.y22_c00464{bottom:641.360000pt;}
.y21_c00464{bottom:656.400000pt;}
.y20_c00464{bottom:671.360000pt;}
.y1f_c00464{bottom:686.400000pt;}
.y1e_c00464{bottom:701.360000pt;}
.y1c_c00464{bottom:713.680000pt;}
.y1b_c00464{bottom:718.960000pt;}
.y1a_c00464{bottom:733.280000pt;}
.y19_c00464{bottom:747.520000pt;}
.y18_c00464{bottom:763.520000pt;}
.y17_c00464{bottom:778.480000pt;}
.y16_c00464{bottom:793.520000pt;}
.y15_c00464{bottom:808.480000pt;}
.y14_c00464{bottom:823.520000pt;}
.y13_c00464{bottom:838.480000pt;}
.y12_c00464{bottom:856.480000pt;}
.y11_c00464{bottom:868.800000pt;}
.y10_c00464{bottom:881.040000pt;}
.yf_c00464{bottom:895.280000pt;}
.ye_c00464{bottom:912.800000pt;}
.yd_c00464{bottom:925.040000pt;}
.yc_c00464{bottom:937.280000pt;}
.yb_c00464{bottom:949.600000pt;}
.y9_c00464{bottom:961.840000pt;}
.y6_c00464{bottom:974.080000pt;}
.y5_c00464{bottom:1005.360000pt;}
.y4_c00464{bottom:1023.040000pt;}
.y3_c00464{bottom:1036.804000pt;}
.y2_c00464{bottom:1050.640000pt;}
.y1_c00464{bottom:1064.400000pt;}
.h10_c00464{height:5.280000pt;}
.h15_c00464{height:5.840000pt;}
.h8_c00464{height:12.240000pt;}
.ha_c00464{height:12.318667pt;}
.hc_c00464{height:12.320000pt;}
.h14_c00464{height:13.920000pt;}
.he_c00464{height:14.958667pt;}
.h11_c00464{height:14.960000pt;}
.h12_c00464{height:15.040000pt;}
.hf_c00464{height:15.041333pt;}
.hb_c00464{height:15.520000pt;}
.h13_c00464{height:16.000000pt;}
.hd_c00464{height:16.001333pt;}
.h5_c00464{height:27.600000pt;}
.h9_c00464{height:41.770312pt;}
.h7_c00464{height:42.892500pt;}
.h3_c00464{height:47.085938pt;}
.h2_c00464{height:47.109375pt;}
.h6_c00464{height:52.448437pt;}
.h4_c00464{height:62.812500pt;}
.h0_c00464{height:1122.560000pt;}
.h1_c00464{height:1122.666667pt;}
.w5_c00464{width:68.160000pt;}
.w7_c00464{width:71.440000pt;}
.wa_c00464{width:72.400000pt;}
.w6_c00464{width:72.401333pt;}
.w4_c00464{width:77.440000pt;}
.w8_c00464{width:140.561333pt;}
.w3_c00464{width:159.200000pt;}
.w9_c00464{width:160.240000pt;}
.w2_c00464{width:450.640000pt;}
.w0_c00464{width:793.840000pt;}
.w1_c00464{width:794.000000pt;}
.x0_c00464{left:0.000000pt;}
.xf_c00464{left:3.600000pt;}
.x5_c00464{left:4.640000pt;}
.xa_c00464{left:13.040000pt;}
.x8_c00464{left:14.720000pt;}
.xc_c00464{left:15.760000pt;}
.x11_c00464{left:23.520000pt;}
.xe_c00464{left:24.800000pt;}
.x12_c00464{left:27.760000pt;}
.x14_c00464{left:29.280000pt;}
.x10_c00464{left:32.800000pt;}
.x15_c00464{left:34.880000pt;}
.x13_c00464{left:38.400000pt;}
.x16_c00464{left:50.560000pt;}
.x17_c00464{left:54.160000pt;}
.x6_c00464{left:60.720000pt;}
.x4_c00464{left:112.400000pt;}
.x3_c00464{left:113.440000pt;}
.x7_c00464{left:272.640000pt;}
.x9_c00464{left:350.080000pt;}
.x2_c00464{left:377.920000pt;}
.x1_c00464{left:396.960000pt;}
.xb_c00464{left:418.240000pt;}
.xd_c00464{left:490.640000pt;}
.x18_c00464{left:656.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_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_b0f62d43df35d4313a252db6.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_787f396696138364585d22c1.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00465{vertical-align:-61.938000px;}
.v0_c00465{vertical-align:0.000000px;}
.ls3_c00465{letter-spacing:-0.095760px;}
.ls2_c00465{letter-spacing:0.000000px;}
.ls4_c00465{letter-spacing:0.095760px;}
.ls1_c00465{letter-spacing:0.191520px;}
.ls0_c00465{letter-spacing:319.518000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00465{word-spacing:-12.161520px;}
.ws0_c00465{word-spacing:-11.970000px;}
.ws2_c00465{word-spacing:-11.874240px;}
.ws6_c00465{word-spacing:-0.287280px;}
.ws4_c00465{word-spacing:-0.162000px;}
.ws5_c00465{word-spacing:-0.095760px;}
.ws3_c00465{word-spacing:0.000000px;}
.ws7_c00465{word-spacing:0.191520px;}
.ws8_c00465{word-spacing:0.287280px;}
._1_c00465{margin-left:-1.139544px;}
._0_c00465{width:1.168272px;}
._2_c00465{width:846.000000px;}
.fc1_c00465{color:transparent;}
.fc0_c00465{color:rgb(0,0,0);}
.fs3_c00465{font-size:47.880000px;}
.fs0_c00465{font-size:54.000000px;}
.fs2_c00465{font-size:60.120000px;}
.fs1_c00465{font-size:72.000000px;}
.y19_c00465{bottom:-10.890000px;}
.y0_c00465{bottom:0.000000px;}
.y9_c00465{bottom:2.880000px;}
.y7_c00465{bottom:2.970000px;}
.y2e_c00465{bottom:16.740000px;}
.y6_c00465{bottom:17.280000px;}
.y43_c00465{bottom:57.240000px;}
.y42_c00465{bottom:168.120000px;}
.y41_c00465{bottom:184.680000px;}
.y40_c00465{bottom:204.930000px;}
.y3f_c00465{bottom:226.260000px;}
.y3e_c00465{bottom:244.260000px;}
.y3d_c00465{bottom:261.180000px;}
.y3c_c00465{bottom:278.010000px;}
.y3b_c00465{bottom:294.930000px;}
.y3a_c00465{bottom:311.760000px;}
.y39_c00465{bottom:328.680000px;}
.y38_c00465{bottom:348.930000px;}
.y37_c00465{bottom:366.930000px;}
.y36_c00465{bottom:383.760000px;}
.y35_c00465{bottom:404.010000px;}
.y34_c00465{bottom:425.430000px;}
.y33_c00465{bottom:443.430000px;}
.y32_c00465{bottom:460.260000px;}
.y31_c00465{bottom:477.180000px;}
.y30_c00465{bottom:494.010000px;}
.y2f_c00465{bottom:510.930000px;}
.y2d_c00465{bottom:527.760000px;}
.y2c_c00465{bottom:555.390000px;}
.y2b_c00465{bottom:573.030000px;}
.y2a_c00465{bottom:589.140000px;}
.y29_c00465{bottom:602.910000px;}
.y28_c00465{bottom:619.830000px;}
.y27_c00465{bottom:636.660000px;}
.y26_c00465{bottom:653.580000px;}
.y25_c00465{bottom:670.410000px;}
.y24_c00465{bottom:687.330000px;}
.y23_c00465{bottom:707.580000px;}
.y22_c00465{bottom:721.350000px;}
.y21_c00465{bottom:735.120000px;}
.y20_c00465{bottom:751.140000px;}
.y1f_c00465{bottom:767.250000px;}
.y1e_c00465{bottom:781.020000px;}
.y1d_c00465{bottom:794.790000px;}
.y1c_c00465{bottom:808.650000px;}
.y1b_c00465{bottom:822.420000px;}
.y1a_c00465{bottom:836.280000px;}
.y18_c00465{bottom:850.140000px;}
.y17_c00465{bottom:860.310000px;}
.y16_c00465{bottom:876.330000px;}
.y15_c00465{bottom:890.190000px;}
.y14_c00465{bottom:907.020000px;}
.y13_c00465{bottom:923.940000px;}
.y12_c00465{bottom:940.770000px;}
.y11_c00465{bottom:957.690000px;}
.y10_c00465{bottom:974.520000px;}
.yf_c00465{bottom:994.770000px;}
.ye_c00465{bottom:1008.540000px;}
.yd_c00465{bottom:1024.650000px;}
.yc_c00465{bottom:1040.670000px;}
.yb_c00465{bottom:1054.440000px;}
.ya_c00465{bottom:1068.300000px;}
.y8_c00465{bottom:1082.070000px;}
.y5_c00465{bottom:1095.840000px;}
.y4_c00465{bottom:1131.030000px;}
.y3_c00465{bottom:1150.915500px;}
.y2_c00465{bottom:1166.400000px;}
.y1_c00465{bottom:1197.450000px;}
.he_c00465{height:10.171500px;}
.h7_c00465{height:13.770000px;}
.h9_c00465{height:13.858500px;}
.hd_c00465{height:13.860000px;}
.h10_c00465{height:15.390000px;}
.h12_c00465{height:16.828500px;}
.hb_c00465{height:16.830000px;}
.hc_c00465{height:16.920000px;}
.h13_c00465{height:16.921500px;}
.ha_c00465{height:18.000000px;}
.hf_c00465{height:18.001500px;}
.h15_c00465{height:19.080000px;}
.h14_c00465{height:19.170000px;}
.h11_c00465{height:27.630000px;}
.h4_c00465{height:31.050000px;}
.h8_c00465{height:46.991602px;}
.h6_c00465{height:48.254063px;}
.h2_c00465{height:52.998047px;}
.h5_c00465{height:59.004492px;}
.h3_c00465{height:70.664062px;}
.h0_c00465{height:1262.880000px;}
.h1_c00465{height:1263.000000px;}
.w5_c00465{width:76.680000px;}
.w7_c00465{width:80.370000px;}
.wa_c00465{width:81.450000px;}
.w6_c00465{width:81.451500px;}
.w4_c00465{width:87.120000px;}
.w8_c00465{width:158.131500px;}
.w3_c00465{width:179.100000px;}
.w9_c00465{width:180.270000px;}
.w2_c00465{width:506.970000px;}
.w0_c00465{width:893.070000px;}
.w1_c00465{width:893.250000px;}
.x0_c00465{left:0.000000px;}
.xe_c00465{left:4.050000px;}
.x4_c00465{left:5.220000px;}
.x9_c00465{left:14.670000px;}
.x7_c00465{left:16.560000px;}
.xb_c00465{left:17.730000px;}
.x10_c00465{left:26.460000px;}
.xd_c00465{left:27.900000px;}
.x11_c00465{left:31.230000px;}
.x13_c00465{left:32.940000px;}
.xf_c00465{left:36.900000px;}
.x14_c00465{left:39.240000px;}
.x12_c00465{left:43.200000px;}
.x16_c00465{left:49.230000px;}
.x17_c00465{left:56.880000px;}
.x15_c00465{left:60.930000px;}
.x5_c00465{left:68.310000px;}
.x3_c00465{left:126.450000px;}
.x2_c00465{left:127.620000px;}
.x6_c00465{left:306.720000px;}
.x8_c00465{left:393.840000px;}
.x1_c00465{left:446.580000px;}
.xa_c00465{left:470.520000px;}
.xc_c00465{left:551.970000px;}
@media print{
.v1_c00465{vertical-align:-55.056000pt;}
.v0_c00465{vertical-align:0.000000pt;}
.ls3_c00465{letter-spacing:-0.085120pt;}
.ls2_c00465{letter-spacing:0.000000pt;}
.ls4_c00465{letter-spacing:0.085120pt;}
.ls1_c00465{letter-spacing:0.170240pt;}
.ls0_c00465{letter-spacing:284.016000pt;}
.ws1_c00465{word-spacing:-10.810240pt;}
.ws0_c00465{word-spacing:-10.640000pt;}
.ws2_c00465{word-spacing:-10.554880pt;}
.ws6_c00465{word-spacing:-0.255360pt;}
.ws4_c00465{word-spacing:-0.144000pt;}
.ws5_c00465{word-spacing:-0.085120pt;}
.ws3_c00465{word-spacing:0.000000pt;}
.ws7_c00465{word-spacing:0.170240pt;}
.ws8_c00465{word-spacing:0.255360pt;}
._1_c00465{margin-left:-1.012928pt;}
._0_c00465{width:1.038464pt;}
._2_c00465{width:752.000000pt;}
.fs3_c00465{font-size:42.560000pt;}
.fs0_c00465{font-size:48.000000pt;}
.fs2_c00465{font-size:53.440000pt;}
.fs1_c00465{font-size:64.000000pt;}
.y19_c00465{bottom:-9.680000pt;}
.y0_c00465{bottom:0.000000pt;}
.y9_c00465{bottom:2.560000pt;}
.y7_c00465{bottom:2.640000pt;}
.y2e_c00465{bottom:14.880000pt;}
.y6_c00465{bottom:15.360000pt;}
.y43_c00465{bottom:50.880000pt;}
.y42_c00465{bottom:149.440000pt;}
.y41_c00465{bottom:164.160000pt;}
.y40_c00465{bottom:182.160000pt;}
.y3f_c00465{bottom:201.120000pt;}
.y3e_c00465{bottom:217.120000pt;}
.y3d_c00465{bottom:232.160000pt;}
.y3c_c00465{bottom:247.120000pt;}
.y3b_c00465{bottom:262.160000pt;}
.y3a_c00465{bottom:277.120000pt;}
.y39_c00465{bottom:292.160000pt;}
.y38_c00465{bottom:310.160000pt;}
.y37_c00465{bottom:326.160000pt;}
.y36_c00465{bottom:341.120000pt;}
.y35_c00465{bottom:359.120000pt;}
.y34_c00465{bottom:378.160000pt;}
.y33_c00465{bottom:394.160000pt;}
.y32_c00465{bottom:409.120000pt;}
.y31_c00465{bottom:424.160000pt;}
.y30_c00465{bottom:439.120000pt;}
.y2f_c00465{bottom:454.160000pt;}
.y2d_c00465{bottom:469.120000pt;}
.y2c_c00465{bottom:493.680000pt;}
.y2b_c00465{bottom:509.360000pt;}
.y2a_c00465{bottom:523.680000pt;}
.y29_c00465{bottom:535.920000pt;}
.y28_c00465{bottom:550.960000pt;}
.y27_c00465{bottom:565.920000pt;}
.y26_c00465{bottom:580.960000pt;}
.y25_c00465{bottom:595.920000pt;}
.y24_c00465{bottom:610.960000pt;}
.y23_c00465{bottom:628.960000pt;}
.y22_c00465{bottom:641.200000pt;}
.y21_c00465{bottom:653.440000pt;}
.y20_c00465{bottom:667.680000pt;}
.y1f_c00465{bottom:682.000000pt;}
.y1e_c00465{bottom:694.240000pt;}
.y1d_c00465{bottom:706.480000pt;}
.y1c_c00465{bottom:718.800000pt;}
.y1b_c00465{bottom:731.040000pt;}
.y1a_c00465{bottom:743.360000pt;}
.y18_c00465{bottom:755.680000pt;}
.y17_c00465{bottom:764.720000pt;}
.y16_c00465{bottom:778.960000pt;}
.y15_c00465{bottom:791.280000pt;}
.y14_c00465{bottom:806.240000pt;}
.y13_c00465{bottom:821.280000pt;}
.y12_c00465{bottom:836.240000pt;}
.y11_c00465{bottom:851.280000pt;}
.y10_c00465{bottom:866.240000pt;}
.yf_c00465{bottom:884.240000pt;}
.ye_c00465{bottom:896.480000pt;}
.yd_c00465{bottom:910.800000pt;}
.yc_c00465{bottom:925.040000pt;}
.yb_c00465{bottom:937.280000pt;}
.ya_c00465{bottom:949.600000pt;}
.y8_c00465{bottom:961.840000pt;}
.y5_c00465{bottom:974.080000pt;}
.y4_c00465{bottom:1005.360000pt;}
.y3_c00465{bottom:1023.036000pt;}
.y2_c00465{bottom:1036.800000pt;}
.y1_c00465{bottom:1064.400000pt;}
.he_c00465{height:9.041333pt;}
.h7_c00465{height:12.240000pt;}
.h9_c00465{height:12.318667pt;}
.hd_c00465{height:12.320000pt;}
.h10_c00465{height:13.680000pt;}
.h12_c00465{height:14.958667pt;}
.hb_c00465{height:14.960000pt;}
.hc_c00465{height:15.040000pt;}
.h13_c00465{height:15.041333pt;}
.ha_c00465{height:16.000000pt;}
.hf_c00465{height:16.001333pt;}
.h15_c00465{height:16.960000pt;}
.h14_c00465{height:17.040000pt;}
.h11_c00465{height:24.560000pt;}
.h4_c00465{height:27.600000pt;}
.h8_c00465{height:41.770312pt;}
.h6_c00465{height:42.892500pt;}
.h2_c00465{height:47.109375pt;}
.h5_c00465{height:52.448437pt;}
.h3_c00465{height:62.812500pt;}
.h0_c00465{height:1122.560000pt;}
.h1_c00465{height:1122.666667pt;}
.w5_c00465{width:68.160000pt;}
.w7_c00465{width:71.440000pt;}
.wa_c00465{width:72.400000pt;}
.w6_c00465{width:72.401333pt;}
.w4_c00465{width:77.440000pt;}
.w8_c00465{width:140.561333pt;}
.w3_c00465{width:159.200000pt;}
.w9_c00465{width:160.240000pt;}
.w2_c00465{width:450.640000pt;}
.w0_c00465{width:793.840000pt;}
.w1_c00465{width:794.000000pt;}
.x0_c00465{left:0.000000pt;}
.xe_c00465{left:3.600000pt;}
.x4_c00465{left:4.640000pt;}
.x9_c00465{left:13.040000pt;}
.x7_c00465{left:14.720000pt;}
.xb_c00465{left:15.760000pt;}
.x10_c00465{left:23.520000pt;}
.xd_c00465{left:24.800000pt;}
.x11_c00465{left:27.760000pt;}
.x13_c00465{left:29.280000pt;}
.xf_c00465{left:32.800000pt;}
.x14_c00465{left:34.880000pt;}
.x12_c00465{left:38.400000pt;}
.x16_c00465{left:43.760000pt;}
.x17_c00465{left:50.560000pt;}
.x15_c00465{left:54.160000pt;}
.x5_c00465{left:60.720000pt;}
.x3_c00465{left:112.400000pt;}
.x2_c00465{left:113.440000pt;}
.x6_c00465{left:272.640000pt;}
.x8_c00465{left:350.080000pt;}
.x1_c00465{left:396.960000pt;}
.xa_c00465{left:418.240000pt;}
.xc_c00465{left:490.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_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_f0a60497baba4f04f6f37c28.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_ac451ba956a731d29d44917e.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls2_c00466{letter-spacing:-0.108000px;}
.ls3_c00466{letter-spacing:-0.095760px;}
.ls1_c00466{letter-spacing:0.000000px;}
.ls0_c00466{letter-spacing:0.191520px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00466{word-spacing:-12.161520px;}
.ws0_c00466{word-spacing:-11.970000px;}
.ws2_c00466{word-spacing:-11.874240px;}
.ws7_c00466{word-spacing:-0.287280px;}
.ws6_c00466{word-spacing:-0.095760px;}
.ws3_c00466{word-spacing:0.000000px;}
.ws5_c00466{word-spacing:0.162000px;}
.ws4_c00466{word-spacing:0.270000px;}
._1_c00466{margin-left:-1.058400px;}
._0_c00466{width:1.220400px;}
._2_c00466{width:846.000000px;}
.fc1_c00466{color:transparent;}
.fc0_c00466{color:rgb(0,0,0);}
.fs3_c00466{font-size:47.880000px;}
.fs0_c00466{font-size:54.000000px;}
.fs2_c00466{font-size:60.120000px;}
.fs1_c00466{font-size:72.000000px;}
.y1e_c00466{bottom:-10.890000px;}
.y0_c00466{bottom:0.000000px;}
.ya_c00466{bottom:2.880000px;}
.y8_c00466{bottom:2.970000px;}
.y1d_c00466{bottom:16.650000px;}
.y7_c00466{bottom:17.280000px;}
.y41_c00466{bottom:57.240000px;}
.y40_c00466{bottom:179.280000px;}
.y3f_c00466{bottom:195.840000px;}
.y3e_c00466{bottom:216.090000px;}
.y3d_c00466{bottom:234.090000px;}
.y3c_c00466{bottom:251.010000px;}
.y3b_c00466{bottom:267.840000px;}
.y3a_c00466{bottom:284.760000px;}
.y39_c00466{bottom:301.590000px;}
.y38_c00466{bottom:318.510000px;}
.y37_c00466{bottom:338.760000px;}
.y36_c00466{bottom:356.760000px;}
.y35_c00466{bottom:377.010000px;}
.y34_c00466{bottom:398.340000px;}
.y33_c00466{bottom:416.340000px;}
.y32_c00466{bottom:433.260000px;}
.y31_c00466{bottom:450.090000px;}
.y30_c00466{bottom:467.010000px;}
.y2f_c00466{bottom:483.840000px;}
.y2e_c00466{bottom:500.760000px;}
.y2d_c00466{bottom:521.010000px;}
.y2c_c00466{bottom:539.010000px;}
.y2b_c00466{bottom:555.840000px;}
.y2a_c00466{bottom:572.760000px;}
.y29_c00466{bottom:589.590000px;}
.y28_c00466{bottom:606.510000px;}
.y27_c00466{bottom:623.340000px;}
.y26_c00466{bottom:643.590000px;}
.y25_c00466{bottom:661.590000px;}
.y24_c00466{bottom:681.840000px;}
.y23_c00466{bottom:703.260000px;}
.y22_c00466{bottom:717.030000px;}
.y21_c00466{bottom:730.890000px;}
.y20_c00466{bottom:744.660000px;}
.y1f_c00466{bottom:758.430000px;}
.y1c_c00466{bottom:772.290000px;}
.y1b_c00466{bottom:799.830000px;}
.y1a_c00466{bottom:815.940000px;}
.y19_c00466{bottom:831.960000px;}
.y18_c00466{bottom:845.730000px;}
.y17_c00466{bottom:862.650000px;}
.y16_c00466{bottom:879.480000px;}
.y15_c00466{bottom:896.400000px;}
.y14_c00466{bottom:913.230000px;}
.y13_c00466{bottom:930.150000px;}
.y12_c00466{bottom:950.400000px;}
.y11_c00466{bottom:968.400000px;}
.y10_c00466{bottom:985.230000px;}
.yf_c00466{bottom:1005.480000px;}
.ye_c00466{bottom:1026.900000px;}
.yd_c00466{bottom:1040.670000px;}
.yc_c00466{bottom:1054.440000px;}
.yb_c00466{bottom:1068.300000px;}
.y9_c00466{bottom:1082.070000px;}
.y6_c00466{bottom:1095.840000px;}
.y5_c00466{bottom:1131.030000px;}
.y4_c00466{bottom:1150.920000px;}
.y3_c00466{bottom:1166.404500px;}
.y2_c00466{bottom:1181.970000px;}
.y1_c00466{bottom:1197.450000px;}
.h8_c00466{height:13.770000px;}
.ha_c00466{height:13.858500px;}
.h10_c00466{height:13.860000px;}
.h12_c00466{height:16.828500px;}
.hd_c00466{height:16.830000px;}
.he_c00466{height:16.920000px;}
.h13_c00466{height:16.921500px;}
.hc_c00466{height:18.000000px;}
.h11_c00466{height:18.001500px;}
.h14_c00466{height:19.080000px;}
.hb_c00466{height:19.170000px;}
.hf_c00466{height:27.540000px;}
.h5_c00466{height:31.050000px;}
.h9_c00466{height:46.991602px;}
.h7_c00466{height:48.254063px;}
.h3_c00466{height:52.971680px;}
.h2_c00466{height:52.998047px;}
.h6_c00466{height:59.004492px;}
.h4_c00466{height:70.664062px;}
.h0_c00466{height:1262.880000px;}
.h1_c00466{height:1263.000000px;}
.w5_c00466{width:76.680000px;}
.w7_c00466{width:80.370000px;}
.wa_c00466{width:81.450000px;}
.w6_c00466{width:81.451500px;}
.w4_c00466{width:87.120000px;}
.w8_c00466{width:158.131500px;}
.w3_c00466{width:179.100000px;}
.w9_c00466{width:180.270000px;}
.w2_c00466{width:506.970000px;}
.w0_c00466{width:893.070000px;}
.w1_c00466{width:893.250000px;}
.x0_c00466{left:0.000000px;}
.xf_c00466{left:4.050000px;}
.x5_c00466{left:5.220000px;}
.xa_c00466{left:14.670000px;}
.x8_c00466{left:16.560000px;}
.xc_c00466{left:17.730000px;}
.x11_c00466{left:26.460000px;}
.xe_c00466{left:27.900000px;}
.x12_c00466{left:31.230000px;}
.x14_c00466{left:32.940000px;}
.x13_c00466{left:36.900000px;}
.x10_c00466{left:42.930000px;}
.x15_c00466{left:60.930000px;}
.x6_c00466{left:68.310000px;}
.x4_c00466{left:126.450000px;}
.x3_c00466{left:127.620000px;}
.x7_c00466{left:306.720000px;}
.x9_c00466{left:393.840000px;}
.x2_c00466{left:425.160000px;}
.x1_c00466{left:446.580000px;}
.xb_c00466{left:470.520000px;}
.xd_c00466{left:551.970000px;}
.x16_c00466{left:738.540000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls2_c00466{letter-spacing:-0.096000pt;}
.ls3_c00466{letter-spacing:-0.085120pt;}
.ls1_c00466{letter-spacing:0.000000pt;}
.ls0_c00466{letter-spacing:0.170240pt;}
.ws1_c00466{word-spacing:-10.810240pt;}
.ws0_c00466{word-spacing:-10.640000pt;}
.ws2_c00466{word-spacing:-10.554880pt;}
.ws7_c00466{word-spacing:-0.255360pt;}
.ws6_c00466{word-spacing:-0.085120pt;}
.ws3_c00466{word-spacing:0.000000pt;}
.ws5_c00466{word-spacing:0.144000pt;}
.ws4_c00466{word-spacing:0.240000pt;}
._1_c00466{margin-left:-0.940800pt;}
._0_c00466{width:1.084800pt;}
._2_c00466{width:752.000000pt;}
.fs3_c00466{font-size:42.560000pt;}
.fs0_c00466{font-size:48.000000pt;}
.fs2_c00466{font-size:53.440000pt;}
.fs1_c00466{font-size:64.000000pt;}
.y1e_c00466{bottom:-9.680000pt;}
.y0_c00466{bottom:0.000000pt;}
.ya_c00466{bottom:2.560000pt;}
.y8_c00466{bottom:2.640000pt;}
.y1d_c00466{bottom:14.800000pt;}
.y7_c00466{bottom:15.360000pt;}
.y41_c00466{bottom:50.880000pt;}
.y40_c00466{bottom:159.360000pt;}
.y3f_c00466{bottom:174.080000pt;}
.y3e_c00466{bottom:192.080000pt;}
.y3d_c00466{bottom:208.080000pt;}
.y3c_c00466{bottom:223.120000pt;}
.y3b_c00466{bottom:238.080000pt;}
.y3a_c00466{bottom:253.120000pt;}
.y39_c00466{bottom:268.080000pt;}
.y38_c00466{bottom:283.120000pt;}
.y37_c00466{bottom:301.120000pt;}
.y36_c00466{bottom:317.120000pt;}
.y35_c00466{bottom:335.120000pt;}
.y34_c00466{bottom:354.080000pt;}
.y33_c00466{bottom:370.080000pt;}
.y32_c00466{bottom:385.120000pt;}
.y31_c00466{bottom:400.080000pt;}
.y30_c00466{bottom:415.120000pt;}
.y2f_c00466{bottom:430.080000pt;}
.y2e_c00466{bottom:445.120000pt;}
.y2d_c00466{bottom:463.120000pt;}
.y2c_c00466{bottom:479.120000pt;}
.y2b_c00466{bottom:494.080000pt;}
.y2a_c00466{bottom:509.120000pt;}
.y29_c00466{bottom:524.080000pt;}
.y28_c00466{bottom:539.120000pt;}
.y27_c00466{bottom:554.080000pt;}
.y26_c00466{bottom:572.080000pt;}
.y25_c00466{bottom:588.080000pt;}
.y24_c00466{bottom:606.080000pt;}
.y23_c00466{bottom:625.120000pt;}
.y22_c00466{bottom:637.360000pt;}
.y21_c00466{bottom:649.680000pt;}
.y20_c00466{bottom:661.920000pt;}
.y1f_c00466{bottom:674.160000pt;}
.y1c_c00466{bottom:686.480000pt;}
.y1b_c00466{bottom:710.960000pt;}
.y1a_c00466{bottom:725.280000pt;}
.y19_c00466{bottom:739.520000pt;}
.y18_c00466{bottom:751.760000pt;}
.y17_c00466{bottom:766.800000pt;}
.y16_c00466{bottom:781.760000pt;}
.y15_c00466{bottom:796.800000pt;}
.y14_c00466{bottom:811.760000pt;}
.y13_c00466{bottom:826.800000pt;}
.y12_c00466{bottom:844.800000pt;}
.y11_c00466{bottom:860.800000pt;}
.y10_c00466{bottom:875.760000pt;}
.yf_c00466{bottom:893.760000pt;}
.ye_c00466{bottom:912.800000pt;}
.yd_c00466{bottom:925.040000pt;}
.yc_c00466{bottom:937.280000pt;}
.yb_c00466{bottom:949.600000pt;}
.y9_c00466{bottom:961.840000pt;}
.y6_c00466{bottom:974.080000pt;}
.y5_c00466{bottom:1005.360000pt;}
.y4_c00466{bottom:1023.040000pt;}
.y3_c00466{bottom:1036.804000pt;}
.y2_c00466{bottom:1050.640000pt;}
.y1_c00466{bottom:1064.400000pt;}
.h8_c00466{height:12.240000pt;}
.ha_c00466{height:12.318667pt;}
.h10_c00466{height:12.320000pt;}
.h12_c00466{height:14.958667pt;}
.hd_c00466{height:14.960000pt;}
.he_c00466{height:15.040000pt;}
.h13_c00466{height:15.041333pt;}
.hc_c00466{height:16.000000pt;}
.h11_c00466{height:16.001333pt;}
.h14_c00466{height:16.960000pt;}
.hb_c00466{height:17.040000pt;}
.hf_c00466{height:24.480000pt;}
.h5_c00466{height:27.600000pt;}
.h9_c00466{height:41.770312pt;}
.h7_c00466{height:42.892500pt;}
.h3_c00466{height:47.085938pt;}
.h2_c00466{height:47.109375pt;}
.h6_c00466{height:52.448437pt;}
.h4_c00466{height:62.812500pt;}
.h0_c00466{height:1122.560000pt;}
.h1_c00466{height:1122.666667pt;}
.w5_c00466{width:68.160000pt;}
.w7_c00466{width:71.440000pt;}
.wa_c00466{width:72.400000pt;}
.w6_c00466{width:72.401333pt;}
.w4_c00466{width:77.440000pt;}
.w8_c00466{width:140.561333pt;}
.w3_c00466{width:159.200000pt;}
.w9_c00466{width:160.240000pt;}
.w2_c00466{width:450.640000pt;}
.w0_c00466{width:793.840000pt;}
.w1_c00466{width:794.000000pt;}
.x0_c00466{left:0.000000pt;}
.xf_c00466{left:3.600000pt;}
.x5_c00466{left:4.640000pt;}
.xa_c00466{left:13.040000pt;}
.x8_c00466{left:14.720000pt;}
.xc_c00466{left:15.760000pt;}
.x11_c00466{left:23.520000pt;}
.xe_c00466{left:24.800000pt;}
.x12_c00466{left:27.760000pt;}
.x14_c00466{left:29.280000pt;}
.x13_c00466{left:32.800000pt;}
.x10_c00466{left:38.160000pt;}
.x15_c00466{left:54.160000pt;}
.x6_c00466{left:60.720000pt;}
.x4_c00466{left:112.400000pt;}
.x3_c00466{left:113.440000pt;}
.x7_c00466{left:272.640000pt;}
.x9_c00466{left:350.080000pt;}
.x2_c00466{left:377.920000pt;}
.x1_c00466{left:396.960000pt;}
.xb_c00466{left:418.240000pt;}
.xd_c00466{left:490.640000pt;}
.x16_c00466{left:656.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_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_20434775d8f89504920fe7b6.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_48ea97aae1f1250e752c255c.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00467{vertical-align:-61.938000px;}
.v0_c00467{vertical-align:0.000000px;}
.ls3_c00467{letter-spacing:-0.095760px;}
.ls2_c00467{letter-spacing:0.000000px;}
.ls1_c00467{letter-spacing:0.191520px;}
.ls0_c00467{letter-spacing:319.518000px;}
.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;}
}
.ws1_c00467{word-spacing:-12.161520px;}
.ws0_c00467{word-spacing:-11.970000px;}
.ws2_c00467{word-spacing:-11.874240px;}
.ws6_c00467{word-spacing:-0.287280px;}
.ws4_c00467{word-spacing:-0.162000px;}
.ws5_c00467{word-spacing:-0.095760px;}
.ws3_c00467{word-spacing:0.000000px;}
.ws7_c00467{word-spacing:0.287280px;}
._1_c00467{margin-left:-1.139544px;}
._0_c00467{width:1.168272px;}
._2_c00467{width:846.000000px;}
.fc1_c00467{color:transparent;}
.fc0_c00467{color:rgb(0,0,0);}
.fs3_c00467{font-size:47.880000px;}
.fs0_c00467{font-size:54.000000px;}
.fs2_c00467{font-size:60.120000px;}
.fs1_c00467{font-size:72.000000px;}
.y1a_c00467{bottom:-10.890000px;}
.y0_c00467{bottom:0.000000px;}
.y9_c00467{bottom:2.880000px;}
.y7_c00467{bottom:2.970000px;}
.y19_c00467{bottom:16.650000px;}
.y6_c00467{bottom:17.280000px;}
.y43_c00467{bottom:57.240000px;}
.y42_c00467{bottom:173.700000px;}
.y41_c00467{bottom:190.260000px;}
.y40_c00467{bottom:206.280000px;}
.y3f_c00467{bottom:222.390000px;}
.y3e_c00467{bottom:236.160000px;}
.y3d_c00467{bottom:253.080000px;}
.y3c_c00467{bottom:269.910000px;}
.y3b_c00467{bottom:286.830000px;}
.y3a_c00467{bottom:303.660000px;}
.y39_c00467{bottom:320.580000px;}
.y38_c00467{bottom:340.830000px;}
.y37_c00467{bottom:358.830000px;}
.y36_c00467{bottom:375.660000px;}
.y35_c00467{bottom:395.910000px;}
.y34_c00467{bottom:417.330000px;}
.y33_c00467{bottom:431.100000px;}
.y32_c00467{bottom:444.870000px;}
.y31_c00467{bottom:458.730000px;}
.y30_c00467{bottom:472.500000px;}
.y2f_c00467{bottom:486.270000px;}
.y2e_c00467{bottom:500.040000px;}
.y2d_c00467{bottom:506.070000px;}
.y2c_c00467{bottom:522.090000px;}
.y2b_c00467{bottom:538.200000px;}
.y2a_c00467{bottom:551.970000px;}
.y29_c00467{bottom:568.890000px;}
.y28_c00467{bottom:585.720000px;}
.y27_c00467{bottom:602.640000px;}
.y26_c00467{bottom:619.470000px;}
.y25_c00467{bottom:636.390000px;}
.y24_c00467{bottom:656.640000px;}
.y23_c00467{bottom:674.640000px;}
.y22_c00467{bottom:691.470000px;}
.y21_c00467{bottom:711.720000px;}
.y20_c00467{bottom:733.140000px;}
.y1f_c00467{bottom:746.910000px;}
.y1e_c00467{bottom:760.680000px;}
.y1d_c00467{bottom:774.540000px;}
.y1c_c00467{bottom:788.310000px;}
.y1b_c00467{bottom:802.080000px;}
.y18_c00467{bottom:815.940000px;}
.y17_c00467{bottom:843.480000px;}
.y16_c00467{bottom:859.500000px;}
.y15_c00467{bottom:873.360000px;}
.y14_c00467{bottom:890.190000px;}
.y13_c00467{bottom:907.110000px;}
.y12_c00467{bottom:923.940000px;}
.y11_c00467{bottom:940.860000px;}
.y10_c00467{bottom:957.690000px;}
.yf_c00467{bottom:977.940000px;}
.ye_c00467{bottom:995.940000px;}
.yd_c00467{bottom:1016.190000px;}
.yc_c00467{bottom:1037.610000px;}
.yb_c00467{bottom:1051.380000px;}
.ya_c00467{bottom:1065.150000px;}
.y8_c00467{bottom:1079.010000px;}
.y5_c00467{bottom:1095.840000px;}
.y4_c00467{bottom:1131.030000px;}
.y3_c00467{bottom:1150.915500px;}
.y2_c00467{bottom:1166.400000px;}
.y1_c00467{bottom:1197.450000px;}
.h12_c00467{height:6.030000px;}
.ha_c00467{height:13.770000px;}
.h10_c00467{height:13.858500px;}
.h9_c00467{height:13.860000px;}
.h7_c00467{height:16.828500px;}
.he_c00467{height:16.830000px;}
.hf_c00467{height:16.920000px;}
.h13_c00467{height:16.921500px;}
.hd_c00467{height:18.000000px;}
.hc_c00467{height:18.001500px;}
.hb_c00467{height:19.170000px;}
.h11_c00467{height:27.540000px;}
.h4_c00467{height:31.050000px;}
.h8_c00467{height:46.991602px;}
.h6_c00467{height:48.254063px;}
.h2_c00467{height:52.998047px;}
.h5_c00467{height:59.004492px;}
.h3_c00467{height:70.664062px;}
.h0_c00467{height:1262.880000px;}
.h1_c00467{height:1263.000000px;}
.w5_c00467{width:76.680000px;}
.w7_c00467{width:80.370000px;}
.wa_c00467{width:81.450000px;}
.w6_c00467{width:81.451500px;}
.w4_c00467{width:87.120000px;}
.w8_c00467{width:158.131500px;}
.w3_c00467{width:179.100000px;}
.w9_c00467{width:180.270000px;}
.w2_c00467{width:506.970000px;}
.w0_c00467{width:893.070000px;}
.w1_c00467{width:893.250000px;}
.x0_c00467{left:0.000000px;}
.xe_c00467{left:4.050000px;}
.x4_c00467{left:5.220000px;}
.x9_c00467{left:14.670000px;}
.x7_c00467{left:16.560000px;}
.xb_c00467{left:17.730000px;}
.x13_c00467{left:26.460000px;}
.xd_c00467{left:27.900000px;}
.x11_c00467{left:31.230000px;}
.x10_c00467{left:32.490000px;}
.x12_c00467{left:36.900000px;}
.xf_c00467{left:42.930000px;}
.x14_c00467{left:49.230000px;}
.x16_c00467{left:56.880000px;}
.x15_c00467{left:60.930000px;}
.x5_c00467{left:68.310000px;}
.x3_c00467{left:126.450000px;}
.x2_c00467{left:127.620000px;}
.x6_c00467{left:306.720000px;}
.x8_c00467{left:393.840000px;}
.x1_c00467{left:446.580000px;}
.xa_c00467{left:470.520000px;}
.xc_c00467{left:551.970000px;}
@media print{
.v1_c00467{vertical-align:-55.056000pt;}
.v0_c00467{vertical-align:0.000000pt;}
.ls3_c00467{letter-spacing:-0.085120pt;}
.ls2_c00467{letter-spacing:0.000000pt;}
.ls1_c00467{letter-spacing:0.170240pt;}
.ls0_c00467{letter-spacing:284.016000pt;}
.ws1_c00467{word-spacing:-10.810240pt;}
.ws0_c00467{word-spacing:-10.640000pt;}
.ws2_c00467{word-spacing:-10.554880pt;}
.ws6_c00467{word-spacing:-0.255360pt;}
.ws4_c00467{word-spacing:-0.144000pt;}
.ws5_c00467{word-spacing:-0.085120pt;}
.ws3_c00467{word-spacing:0.000000pt;}
.ws7_c00467{word-spacing:0.255360pt;}
._1_c00467{margin-left:-1.012928pt;}
._0_c00467{width:1.038464pt;}
._2_c00467{width:752.000000pt;}
.fs3_c00467{font-size:42.560000pt;}
.fs0_c00467{font-size:48.000000pt;}
.fs2_c00467{font-size:53.440000pt;}
.fs1_c00467{font-size:64.000000pt;}
.y1a_c00467{bottom:-9.680000pt;}
.y0_c00467{bottom:0.000000pt;}
.y9_c00467{bottom:2.560000pt;}
.y7_c00467{bottom:2.640000pt;}
.y19_c00467{bottom:14.800000pt;}
.y6_c00467{bottom:15.360000pt;}
.y43_c00467{bottom:50.880000pt;}
.y42_c00467{bottom:154.400000pt;}
.y41_c00467{bottom:169.120000pt;}
.y40_c00467{bottom:183.360000pt;}
.y3f_c00467{bottom:197.680000pt;}
.y3e_c00467{bottom:209.920000pt;}
.y3d_c00467{bottom:224.960000pt;}
.y3c_c00467{bottom:239.920000pt;}
.y3b_c00467{bottom:254.960000pt;}
.y3a_c00467{bottom:269.920000pt;}
.y39_c00467{bottom:284.960000pt;}
.y38_c00467{bottom:302.960000pt;}
.y37_c00467{bottom:318.960000pt;}
.y36_c00467{bottom:333.920000pt;}
.y35_c00467{bottom:351.920000pt;}
.y34_c00467{bottom:370.960000pt;}
.y33_c00467{bottom:383.200000pt;}
.y32_c00467{bottom:395.440000pt;}
.y31_c00467{bottom:407.760000pt;}
.y30_c00467{bottom:420.000000pt;}
.y2f_c00467{bottom:432.240000pt;}
.y2e_c00467{bottom:444.480000pt;}
.y2d_c00467{bottom:449.840000pt;}
.y2c_c00467{bottom:464.080000pt;}
.y2b_c00467{bottom:478.400000pt;}
.y2a_c00467{bottom:490.640000pt;}
.y29_c00467{bottom:505.680000pt;}
.y28_c00467{bottom:520.640000pt;}
.y27_c00467{bottom:535.680000pt;}
.y26_c00467{bottom:550.640000pt;}
.y25_c00467{bottom:565.680000pt;}
.y24_c00467{bottom:583.680000pt;}
.y23_c00467{bottom:599.680000pt;}
.y22_c00467{bottom:614.640000pt;}
.y21_c00467{bottom:632.640000pt;}
.y20_c00467{bottom:651.680000pt;}
.y1f_c00467{bottom:663.920000pt;}
.y1e_c00467{bottom:676.160000pt;}
.y1d_c00467{bottom:688.480000pt;}
.y1c_c00467{bottom:700.720000pt;}
.y1b_c00467{bottom:712.960000pt;}
.y18_c00467{bottom:725.280000pt;}
.y17_c00467{bottom:749.760000pt;}
.y16_c00467{bottom:764.000000pt;}
.y15_c00467{bottom:776.320000pt;}
.y14_c00467{bottom:791.280000pt;}
.y13_c00467{bottom:806.320000pt;}
.y12_c00467{bottom:821.280000pt;}
.y11_c00467{bottom:836.320000pt;}
.y10_c00467{bottom:851.280000pt;}
.yf_c00467{bottom:869.280000pt;}
.ye_c00467{bottom:885.280000pt;}
.yd_c00467{bottom:903.280000pt;}
.yc_c00467{bottom:922.320000pt;}
.yb_c00467{bottom:934.560000pt;}
.ya_c00467{bottom:946.800000pt;}
.y8_c00467{bottom:959.120000pt;}
.y5_c00467{bottom:974.080000pt;}
.y4_c00467{bottom:1005.360000pt;}
.y3_c00467{bottom:1023.036000pt;}
.y2_c00467{bottom:1036.800000pt;}
.y1_c00467{bottom:1064.400000pt;}
.h12_c00467{height:5.360000pt;}
.ha_c00467{height:12.240000pt;}
.h10_c00467{height:12.318667pt;}
.h9_c00467{height:12.320000pt;}
.h7_c00467{height:14.958667pt;}
.he_c00467{height:14.960000pt;}
.hf_c00467{height:15.040000pt;}
.h13_c00467{height:15.041333pt;}
.hd_c00467{height:16.000000pt;}
.hc_c00467{height:16.001333pt;}
.hb_c00467{height:17.040000pt;}
.h11_c00467{height:24.480000pt;}
.h4_c00467{height:27.600000pt;}
.h8_c00467{height:41.770312pt;}
.h6_c00467{height:42.892500pt;}
.h2_c00467{height:47.109375pt;}
.h5_c00467{height:52.448437pt;}
.h3_c00467{height:62.812500pt;}
.h0_c00467{height:1122.560000pt;}
.h1_c00467{height:1122.666667pt;}
.w5_c00467{width:68.160000pt;}
.w7_c00467{width:71.440000pt;}
.wa_c00467{width:72.400000pt;}
.w6_c00467{width:72.401333pt;}
.w4_c00467{width:77.440000pt;}
.w8_c00467{width:140.561333pt;}
.w3_c00467{width:159.200000pt;}
.w9_c00467{width:160.240000pt;}
.w2_c00467{width:450.640000pt;}
.w0_c00467{width:793.840000pt;}
.w1_c00467{width:794.000000pt;}
.x0_c00467{left:0.000000pt;}
.xe_c00467{left:3.600000pt;}
.x4_c00467{left:4.640000pt;}
.x9_c00467{left:13.040000pt;}
.x7_c00467{left:14.720000pt;}
.xb_c00467{left:15.760000pt;}
.x13_c00467{left:23.520000pt;}
.xd_c00467{left:24.800000pt;}
.x11_c00467{left:27.760000pt;}
.x10_c00467{left:28.880000pt;}
.x12_c00467{left:32.800000pt;}
.xf_c00467{left:38.160000pt;}
.x14_c00467{left:43.760000pt;}
.x16_c00467{left:50.560000pt;}
.x15_c00467{left:54.160000pt;}
.x5_c00467{left:60.720000pt;}
.x3_c00467{left:112.400000pt;}
.x2_c00467{left:113.440000pt;}
.x6_c00467{left:272.640000pt;}
.x8_c00467{left:350.080000pt;}
.x1_c00467{left:396.960000pt;}
.xa_c00467{left:418.240000pt;}
.xc_c00467{left:490.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_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_f72ff9d03e3e439e5b479db1.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_715d547f607ec4a5fbd34371.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls2_c00468{letter-spacing:-0.108000px;}
.ls3_c00468{letter-spacing:-0.095760px;}
.ls1_c00468{letter-spacing:0.000000px;}
.ls4_c00468{letter-spacing:0.095760px;}
.ls0_c00468{letter-spacing:0.191520px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00468{word-spacing:-12.161520px;}
.ws0_c00468{word-spacing:-11.970000px;}
.ws2_c00468{word-spacing:-11.874240px;}
.ws7_c00468{word-spacing:-0.287280px;}
.ws8_c00468{word-spacing:-0.191520px;}
.ws6_c00468{word-spacing:-0.095760px;}
.ws3_c00468{word-spacing:0.000000px;}
.ws5_c00468{word-spacing:0.162000px;}
.ws4_c00468{word-spacing:0.270000px;}
._1_c00468{margin-left:-1.058400px;}
._0_c00468{width:1.220400px;}
._2_c00468{width:846.000000px;}
.fc1_c00468{color:transparent;}
.fc0_c00468{color:rgb(0,0,0);}
.fs3_c00468{font-size:47.880000px;}
.fs0_c00468{font-size:54.000000px;}
.fs2_c00468{font-size:60.120000px;}
.fs1_c00468{font-size:72.000000px;}
.y1e_c00468{bottom:-10.890000px;}
.y0_c00468{bottom:0.000000px;}
.ya_c00468{bottom:2.880000px;}
.y8_c00468{bottom:2.970000px;}
.y1d_c00468{bottom:16.740000px;}
.y7_c00468{bottom:17.280000px;}
.y44_c00468{bottom:57.240000px;}
.y43_c00468{bottom:173.070000px;}
.y42_c00468{bottom:189.630000px;}
.y41_c00468{bottom:205.740000px;}
.y40_c00468{bottom:219.510000px;}
.y3f_c00468{bottom:236.430000px;}
.y3e_c00468{bottom:253.260000px;}
.y3d_c00468{bottom:270.180000px;}
.y3c_c00468{bottom:287.010000px;}
.y3b_c00468{bottom:303.930000px;}
.y3a_c00468{bottom:324.180000px;}
.y39_c00468{bottom:342.180000px;}
.y38_c00468{bottom:362.430000px;}
.y37_c00468{bottom:378.450000px;}
.y36_c00468{bottom:392.220000px;}
.y35_c00468{bottom:406.080000px;}
.y34_c00468{bottom:419.850000px;}
.y33_c00468{bottom:433.620000px;}
.y32_c00468{bottom:447.390000px;}
.y31_c00468{bottom:455.850000px;}
.y30_c00468{bottom:471.870000px;}
.y2f_c00468{bottom:487.890000px;}
.y2e_c00468{bottom:503.100000px;}
.y2d_c00468{bottom:519.930000px;}
.y2c_c00468{bottom:536.850000px;}
.y2b_c00468{bottom:553.680000px;}
.y2a_c00468{bottom:570.600000px;}
.y29_c00468{bottom:587.430000px;}
.y28_c00468{bottom:607.680000px;}
.y27_c00468{bottom:625.680000px;}
.y26_c00468{bottom:642.600000px;}
.y25_c00468{bottom:662.850000px;}
.y24_c00468{bottom:684.180000px;}
.y23_c00468{bottom:698.040000px;}
.y22_c00468{bottom:711.810000px;}
.y21_c00468{bottom:725.580000px;}
.y20_c00468{bottom:739.440000px;}
.y1f_c00468{bottom:753.210000px;}
.y1c_c00468{bottom:766.980000px;}
.y1b_c00468{bottom:794.610000px;}
.y1a_c00468{bottom:810.630000px;}
.y19_c00468{bottom:826.650000px;}
.y18_c00468{bottom:840.510000px;}
.y17_c00468{bottom:857.340000px;}
.y16_c00468{bottom:874.260000px;}
.y15_c00468{bottom:891.090000px;}
.y14_c00468{bottom:908.010000px;}
.y13_c00468{bottom:924.840000px;}
.y12_c00468{bottom:945.090000px;}
.y11_c00468{bottom:963.090000px;}
.y10_c00468{bottom:980.010000px;}
.yf_c00468{bottom:1000.260000px;}
.ye_c00468{bottom:1021.590000px;}
.yd_c00468{bottom:1035.450000px;}
.yc_c00468{bottom:1051.380000px;}
.yb_c00468{bottom:1065.150000px;}
.y9_c00468{bottom:1079.010000px;}
.y6_c00468{bottom:1095.840000px;}
.y5_c00468{bottom:1131.030000px;}
.y4_c00468{bottom:1150.920000px;}
.y3_c00468{bottom:1166.404500px;}
.y2_c00468{bottom:1181.970000px;}
.y1_c00468{bottom:1197.450000px;}
.h17_c00468{height:8.460000px;}
.hb_c00468{height:13.770000px;}
.h13_c00468{height:13.858500px;}
.ha_c00468{height:13.860000px;}
.h16_c00468{height:15.210000px;}
.hc_c00468{height:15.930000px;}
.h8_c00468{height:16.828500px;}
.h11_c00468{height:16.830000px;}
.hf_c00468{height:16.920000px;}
.h15_c00468{height:16.921500px;}
.h10_c00468{height:18.000000px;}
.he_c00468{height:18.001500px;}
.h14_c00468{height:19.080000px;}
.hd_c00468{height:19.081500px;}
.h12_c00468{height:27.630000px;}
.h5_c00468{height:31.050000px;}
.h9_c00468{height:46.991602px;}
.h7_c00468{height:48.254063px;}
.h3_c00468{height:52.971680px;}
.h2_c00468{height:52.998047px;}
.h6_c00468{height:59.004492px;}
.h4_c00468{height:70.664062px;}
.h0_c00468{height:1262.880000px;}
.h1_c00468{height:1263.000000px;}
.w5_c00468{width:76.680000px;}
.w7_c00468{width:80.370000px;}
.wa_c00468{width:81.450000px;}
.w6_c00468{width:81.451500px;}
.w4_c00468{width:87.120000px;}
.w8_c00468{width:158.131500px;}
.w3_c00468{width:179.100000px;}
.w9_c00468{width:180.270000px;}
.w2_c00468{width:506.970000px;}
.w0_c00468{width:893.070000px;}
.w1_c00468{width:893.250000px;}
.x0_c00468{left:0.000000px;}
.xf_c00468{left:4.050000px;}
.x5_c00468{left:5.220000px;}
.xa_c00468{left:14.670000px;}
.x8_c00468{left:16.560000px;}
.xc_c00468{left:17.730000px;}
.x11_c00468{left:26.460000px;}
.xe_c00468{left:27.900000px;}
.x12_c00468{left:31.230000px;}
.x14_c00468{left:32.940000px;}
.x10_c00468{left:36.900000px;}
.x15_c00468{left:38.430000px;}
.x13_c00468{left:43.200000px;}
.x18_c00468{left:49.230000px;}
.x17_c00468{left:60.930000px;}
.x16_c00468{left:62.910000px;}
.x6_c00468{left:68.310000px;}
.x4_c00468{left:126.450000px;}
.x3_c00468{left:127.620000px;}
.x7_c00468{left:306.720000px;}
.x9_c00468{left:393.840000px;}
.x2_c00468{left:425.160000px;}
.x1_c00468{left:446.580000px;}
.xb_c00468{left:470.520000px;}
.xd_c00468{left:551.970000px;}
.x19_c00468{left:738.540000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls2_c00468{letter-spacing:-0.096000pt;}
.ls3_c00468{letter-spacing:-0.085120pt;}
.ls1_c00468{letter-spacing:0.000000pt;}
.ls4_c00468{letter-spacing:0.085120pt;}
.ls0_c00468{letter-spacing:0.170240pt;}
.ws1_c00468{word-spacing:-10.810240pt;}
.ws0_c00468{word-spacing:-10.640000pt;}
.ws2_c00468{word-spacing:-10.554880pt;}
.ws7_c00468{word-spacing:-0.255360pt;}
.ws8_c00468{word-spacing:-0.170240pt;}
.ws6_c00468{word-spacing:-0.085120pt;}
.ws3_c00468{word-spacing:0.000000pt;}
.ws5_c00468{word-spacing:0.144000pt;}
.ws4_c00468{word-spacing:0.240000pt;}
._1_c00468{margin-left:-0.940800pt;}
._0_c00468{width:1.084800pt;}
._2_c00468{width:752.000000pt;}
.fs3_c00468{font-size:42.560000pt;}
.fs0_c00468{font-size:48.000000pt;}
.fs2_c00468{font-size:53.440000pt;}
.fs1_c00468{font-size:64.000000pt;}
.y1e_c00468{bottom:-9.680000pt;}
.y0_c00468{bottom:0.000000pt;}
.ya_c00468{bottom:2.560000pt;}
.y8_c00468{bottom:2.640000pt;}
.y1d_c00468{bottom:14.880000pt;}
.y7_c00468{bottom:15.360000pt;}
.y44_c00468{bottom:50.880000pt;}
.y43_c00468{bottom:153.840000pt;}
.y42_c00468{bottom:168.560000pt;}
.y41_c00468{bottom:182.880000pt;}
.y40_c00468{bottom:195.120000pt;}
.y3f_c00468{bottom:210.160000pt;}
.y3e_c00468{bottom:225.120000pt;}
.y3d_c00468{bottom:240.160000pt;}
.y3c_c00468{bottom:255.120000pt;}
.y3b_c00468{bottom:270.160000pt;}
.y3a_c00468{bottom:288.160000pt;}
.y39_c00468{bottom:304.160000pt;}
.y38_c00468{bottom:322.160000pt;}
.y37_c00468{bottom:336.400000pt;}
.y36_c00468{bottom:348.640000pt;}
.y35_c00468{bottom:360.960000pt;}
.y34_c00468{bottom:373.200000pt;}
.y33_c00468{bottom:385.440000pt;}
.y32_c00468{bottom:397.680000pt;}
.y31_c00468{bottom:405.200000pt;}
.y30_c00468{bottom:419.440000pt;}
.y2f_c00468{bottom:433.680000pt;}
.y2e_c00468{bottom:447.200000pt;}
.y2d_c00468{bottom:462.160000pt;}
.y2c_c00468{bottom:477.200000pt;}
.y2b_c00468{bottom:492.160000pt;}
.y2a_c00468{bottom:507.200000pt;}
.y29_c00468{bottom:522.160000pt;}
.y28_c00468{bottom:540.160000pt;}
.y27_c00468{bottom:556.160000pt;}
.y26_c00468{bottom:571.200000pt;}
.y25_c00468{bottom:589.200000pt;}
.y24_c00468{bottom:608.160000pt;}
.y23_c00468{bottom:620.480000pt;}
.y22_c00468{bottom:632.720000pt;}
.y21_c00468{bottom:644.960000pt;}
.y20_c00468{bottom:657.280000pt;}
.y1f_c00468{bottom:669.520000pt;}
.y1c_c00468{bottom:681.760000pt;}
.y1b_c00468{bottom:706.320000pt;}
.y1a_c00468{bottom:720.560000pt;}
.y19_c00468{bottom:734.800000pt;}
.y18_c00468{bottom:747.120000pt;}
.y17_c00468{bottom:762.080000pt;}
.y16_c00468{bottom:777.120000pt;}
.y15_c00468{bottom:792.080000pt;}
.y14_c00468{bottom:807.120000pt;}
.y13_c00468{bottom:822.080000pt;}
.y12_c00468{bottom:840.080000pt;}
.y11_c00468{bottom:856.080000pt;}
.y10_c00468{bottom:871.120000pt;}
.yf_c00468{bottom:889.120000pt;}
.ye_c00468{bottom:908.080000pt;}
.yd_c00468{bottom:920.400000pt;}
.yc_c00468{bottom:934.560000pt;}
.yb_c00468{bottom:946.800000pt;}
.y9_c00468{bottom:959.120000pt;}
.y6_c00468{bottom:974.080000pt;}
.y5_c00468{bottom:1005.360000pt;}
.y4_c00468{bottom:1023.040000pt;}
.y3_c00468{bottom:1036.804000pt;}
.y2_c00468{bottom:1050.640000pt;}
.y1_c00468{bottom:1064.400000pt;}
.h17_c00468{height:7.520000pt;}
.hb_c00468{height:12.240000pt;}
.h13_c00468{height:12.318667pt;}
.ha_c00468{height:12.320000pt;}
.h16_c00468{height:13.520000pt;}
.hc_c00468{height:14.160000pt;}
.h8_c00468{height:14.958667pt;}
.h11_c00468{height:14.960000pt;}
.hf_c00468{height:15.040000pt;}
.h15_c00468{height:15.041333pt;}
.h10_c00468{height:16.000000pt;}
.he_c00468{height:16.001333pt;}
.h14_c00468{height:16.960000pt;}
.hd_c00468{height:16.961333pt;}
.h12_c00468{height:24.560000pt;}
.h5_c00468{height:27.600000pt;}
.h9_c00468{height:41.770312pt;}
.h7_c00468{height:42.892500pt;}
.h3_c00468{height:47.085938pt;}
.h2_c00468{height:47.109375pt;}
.h6_c00468{height:52.448437pt;}
.h4_c00468{height:62.812500pt;}
.h0_c00468{height:1122.560000pt;}
.h1_c00468{height:1122.666667pt;}
.w5_c00468{width:68.160000pt;}
.w7_c00468{width:71.440000pt;}
.wa_c00468{width:72.400000pt;}
.w6_c00468{width:72.401333pt;}
.w4_c00468{width:77.440000pt;}
.w8_c00468{width:140.561333pt;}
.w3_c00468{width:159.200000pt;}
.w9_c00468{width:160.240000pt;}
.w2_c00468{width:450.640000pt;}
.w0_c00468{width:793.840000pt;}
.w1_c00468{width:794.000000pt;}
.x0_c00468{left:0.000000pt;}
.xf_c00468{left:3.600000pt;}
.x5_c00468{left:4.640000pt;}
.xa_c00468{left:13.040000pt;}
.x8_c00468{left:14.720000pt;}
.xc_c00468{left:15.760000pt;}
.x11_c00468{left:23.520000pt;}
.xe_c00468{left:24.800000pt;}
.x12_c00468{left:27.760000pt;}
.x14_c00468{left:29.280000pt;}
.x10_c00468{left:32.800000pt;}
.x15_c00468{left:34.160000pt;}
.x13_c00468{left:38.400000pt;}
.x18_c00468{left:43.760000pt;}
.x17_c00468{left:54.160000pt;}
.x16_c00468{left:55.920000pt;}
.x6_c00468{left:60.720000pt;}
.x4_c00468{left:112.400000pt;}
.x3_c00468{left:113.440000pt;}
.x7_c00468{left:272.640000pt;}
.x9_c00468{left:350.080000pt;}
.x2_c00468{left:377.920000pt;}
.x1_c00468{left:396.960000pt;}
.xb_c00468{left:418.240000pt;}
.xd_c00468{left:490.640000pt;}
.x19_c00468{left:656.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_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_621ae6b0fb5528f0f6ffe641.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_ad4a9ff4227cc431efc5b24f.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00469{vertical-align:-61.938000px;}
.v0_c00469{vertical-align:0.000000px;}
.ls3_c00469{letter-spacing:-0.095760px;}
.ls2_c00469{letter-spacing:0.000000px;}
.ls1_c00469{letter-spacing:0.191520px;}
.ls0_c00469{letter-spacing:319.518000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00469{word-spacing:-12.161520px;}
.ws0_c00469{word-spacing:-11.970000px;}
.ws2_c00469{word-spacing:-11.874240px;}
.ws6_c00469{word-spacing:-0.287280px;}
.ws4_c00469{word-spacing:-0.162000px;}
.ws5_c00469{word-spacing:-0.095760px;}
.ws3_c00469{word-spacing:0.000000px;}
._1_c00469{margin-left:-1.139544px;}
._0_c00469{width:1.168272px;}
._2_c00469{width:846.000000px;}
.fc1_c00469{color:transparent;}
.fc0_c00469{color:rgb(0,0,0);}
.fs3_c00469{font-size:47.880000px;}
.fs0_c00469{font-size:54.000000px;}
.fs2_c00469{font-size:60.120000px;}
.fs1_c00469{font-size:72.000000px;}
.y1d_c00469{bottom:-10.890000px;}
.y0_c00469{bottom:0.000000px;}
.y9_c00469{bottom:2.880000px;}
.y7_c00469{bottom:2.970000px;}
.y1c_c00469{bottom:16.740000px;}
.y6_c00469{bottom:17.280000px;}
.y43_c00469{bottom:57.240000px;}
.y42_c00469{bottom:170.010000px;}
.y41_c00469{bottom:186.570000px;}
.y40_c00469{bottom:202.680000px;}
.y3f_c00469{bottom:216.450000px;}
.y3e_c00469{bottom:233.280000px;}
.y3d_c00469{bottom:250.200000px;}
.y3c_c00469{bottom:267.030000px;}
.y3b_c00469{bottom:283.950000px;}
.y3a_c00469{bottom:300.780000px;}
.y39_c00469{bottom:321.030000px;}
.y38_c00469{bottom:339.030000px;}
.y37_c00469{bottom:359.280000px;}
.y36_c00469{bottom:380.700000px;}
.y35_c00469{bottom:394.470000px;}
.y34_c00469{bottom:408.330000px;}
.y33_c00469{bottom:422.100000px;}
.y32_c00469{bottom:435.870000px;}
.y31_c00469{bottom:449.640000px;}
.y30_c00469{bottom:461.250000px;}
.y2f_c00469{bottom:477.270000px;}
.y2e_c00469{bottom:493.290000px;}
.y2d_c00469{bottom:507.150000px;}
.y2c_c00469{bottom:523.980000px;}
.y2b_c00469{bottom:540.900000px;}
.y2a_c00469{bottom:557.730000px;}
.y29_c00469{bottom:574.650000px;}
.y28_c00469{bottom:591.480000px;}
.y27_c00469{bottom:611.730000px;}
.y26_c00469{bottom:629.730000px;}
.y25_c00469{bottom:646.650000px;}
.y24_c00469{bottom:666.900000px;}
.y23_c00469{bottom:688.230000px;}
.y22_c00469{bottom:702.090000px;}
.y21_c00469{bottom:715.860000px;}
.y20_c00469{bottom:729.630000px;}
.y1f_c00469{bottom:743.490000px;}
.y1e_c00469{bottom:757.260000px;}
.y1b_c00469{bottom:771.030000px;}
.y1a_c00469{bottom:798.660000px;}
.y19_c00469{bottom:814.680000px;}
.y18_c00469{bottom:831.690000px;}
.y17_c00469{bottom:845.550000px;}
.y16_c00469{bottom:862.380000px;}
.y15_c00469{bottom:879.300000px;}
.y14_c00469{bottom:896.130000px;}
.y13_c00469{bottom:913.050000px;}
.y12_c00469{bottom:929.880000px;}
.y11_c00469{bottom:950.130000px;}
.y10_c00469{bottom:968.130000px;}
.yf_c00469{bottom:985.050000px;}
.ye_c00469{bottom:1005.300000px;}
.yd_c00469{bottom:1026.630000px;}
.yc_c00469{bottom:1040.670000px;}
.yb_c00469{bottom:1054.440000px;}
.ya_c00469{bottom:1068.300000px;}
.y8_c00469{bottom:1082.070000px;}
.y5_c00469{bottom:1095.840000px;}
.y4_c00469{bottom:1131.030000px;}
.y3_c00469{bottom:1150.915500px;}
.y2_c00469{bottom:1166.400000px;}
.y1_c00469{bottom:1197.450000px;}
.h15_c00469{height:11.610000px;}
.h7_c00469{height:13.770000px;}
.h9_c00469{height:13.858500px;}
.h12_c00469{height:13.860000px;}
.ha_c00469{height:14.040000px;}
.h10_c00469{height:14.760000px;}
.h14_c00469{height:16.828500px;}
.he_c00469{height:16.830000px;}
.hf_c00469{height:16.920000px;}
.hd_c00469{height:16.921500px;}
.hc_c00469{height:18.000000px;}
.h13_c00469{height:18.001500px;}
.hb_c00469{height:19.080000px;}
.h16_c00469{height:19.170000px;}
.h11_c00469{height:27.630000px;}
.h4_c00469{height:31.050000px;}
.h8_c00469{height:46.991602px;}
.h6_c00469{height:48.254063px;}
.h2_c00469{height:52.998047px;}
.h5_c00469{height:59.004492px;}
.h3_c00469{height:70.664062px;}
.h0_c00469{height:1262.880000px;}
.h1_c00469{height:1263.000000px;}
.w5_c00469{width:76.680000px;}
.w7_c00469{width:80.370000px;}
.wa_c00469{width:81.450000px;}
.w6_c00469{width:81.451500px;}
.w4_c00469{width:87.120000px;}
.w8_c00469{width:158.131500px;}
.w3_c00469{width:179.100000px;}
.w9_c00469{width:180.270000px;}
.w2_c00469{width:506.970000px;}
.w0_c00469{width:893.070000px;}
.w1_c00469{width:893.250000px;}
.x0_c00469{left:0.000000px;}
.xe_c00469{left:4.050000px;}
.x4_c00469{left:5.220000px;}
.x9_c00469{left:14.670000px;}
.x7_c00469{left:16.560000px;}
.xb_c00469{left:17.730000px;}
.x10_c00469{left:26.460000px;}
.xd_c00469{left:27.900000px;}
.x11_c00469{left:31.230000px;}
.x15_c00469{left:33.210000px;}
.xf_c00469{left:36.900000px;}
.x13_c00469{left:38.880000px;}
.x12_c00469{left:43.200000px;}
.x14_c00469{left:49.230000px;}
.x17_c00469{left:56.880000px;}
.x16_c00469{left:60.930000px;}
.x5_c00469{left:68.310000px;}
.x3_c00469{left:126.450000px;}
.x2_c00469{left:127.620000px;}
.x6_c00469{left:306.720000px;}
.x8_c00469{left:393.840000px;}
.x1_c00469{left:446.580000px;}
.xa_c00469{left:470.520000px;}
.xc_c00469{left:551.970000px;}
@media print{
.v1_c00469{vertical-align:-55.056000pt;}
.v0_c00469{vertical-align:0.000000pt;}
.ls3_c00469{letter-spacing:-0.085120pt;}
.ls2_c00469{letter-spacing:0.000000pt;}
.ls1_c00469{letter-spacing:0.170240pt;}
.ls0_c00469{letter-spacing:284.016000pt;}
.ws1_c00469{word-spacing:-10.810240pt;}
.ws0_c00469{word-spacing:-10.640000pt;}
.ws2_c00469{word-spacing:-10.554880pt;}
.ws6_c00469{word-spacing:-0.255360pt;}
.ws4_c00469{word-spacing:-0.144000pt;}
.ws5_c00469{word-spacing:-0.085120pt;}
.ws3_c00469{word-spacing:0.000000pt;}
._1_c00469{margin-left:-1.012928pt;}
._0_c00469{width:1.038464pt;}
._2_c00469{width:752.000000pt;}
.fs3_c00469{font-size:42.560000pt;}
.fs0_c00469{font-size:48.000000pt;}
.fs2_c00469{font-size:53.440000pt;}
.fs1_c00469{font-size:64.000000pt;}
.y1d_c00469{bottom:-9.680000pt;}
.y0_c00469{bottom:0.000000pt;}
.y9_c00469{bottom:2.560000pt;}
.y7_c00469{bottom:2.640000pt;}
.y1c_c00469{bottom:14.880000pt;}
.y6_c00469{bottom:15.360000pt;}
.y43_c00469{bottom:50.880000pt;}
.y42_c00469{bottom:151.120000pt;}
.y41_c00469{bottom:165.840000pt;}
.y40_c00469{bottom:180.160000pt;}
.y3f_c00469{bottom:192.400000pt;}
.y3e_c00469{bottom:207.360000pt;}
.y3d_c00469{bottom:222.400000pt;}
.y3c_c00469{bottom:237.360000pt;}
.y3b_c00469{bottom:252.400000pt;}
.y3a_c00469{bottom:267.360000pt;}
.y39_c00469{bottom:285.360000pt;}
.y38_c00469{bottom:301.360000pt;}
.y37_c00469{bottom:319.360000pt;}
.y36_c00469{bottom:338.400000pt;}
.y35_c00469{bottom:350.640000pt;}
.y34_c00469{bottom:362.960000pt;}
.y33_c00469{bottom:375.200000pt;}
.y32_c00469{bottom:387.440000pt;}
.y31_c00469{bottom:399.680000pt;}
.y30_c00469{bottom:410.000000pt;}
.y2f_c00469{bottom:424.240000pt;}
.y2e_c00469{bottom:438.480000pt;}
.y2d_c00469{bottom:450.800000pt;}
.y2c_c00469{bottom:465.760000pt;}
.y2b_c00469{bottom:480.800000pt;}
.y2a_c00469{bottom:495.760000pt;}
.y29_c00469{bottom:510.800000pt;}
.y28_c00469{bottom:525.760000pt;}
.y27_c00469{bottom:543.760000pt;}
.y26_c00469{bottom:559.760000pt;}
.y25_c00469{bottom:574.800000pt;}
.y24_c00469{bottom:592.800000pt;}
.y23_c00469{bottom:611.760000pt;}
.y22_c00469{bottom:624.080000pt;}
.y21_c00469{bottom:636.320000pt;}
.y20_c00469{bottom:648.560000pt;}
.y1f_c00469{bottom:660.880000pt;}
.y1e_c00469{bottom:673.120000pt;}
.y1b_c00469{bottom:685.360000pt;}
.y1a_c00469{bottom:709.920000pt;}
.y19_c00469{bottom:724.160000pt;}
.y18_c00469{bottom:739.280000pt;}
.y17_c00469{bottom:751.600000pt;}
.y16_c00469{bottom:766.560000pt;}
.y15_c00469{bottom:781.600000pt;}
.y14_c00469{bottom:796.560000pt;}
.y13_c00469{bottom:811.600000pt;}
.y12_c00469{bottom:826.560000pt;}
.y11_c00469{bottom:844.560000pt;}
.y10_c00469{bottom:860.560000pt;}
.yf_c00469{bottom:875.600000pt;}
.ye_c00469{bottom:893.600000pt;}
.yd_c00469{bottom:912.560000pt;}
.yc_c00469{bottom:925.040000pt;}
.yb_c00469{bottom:937.280000pt;}
.ya_c00469{bottom:949.600000pt;}
.y8_c00469{bottom:961.840000pt;}
.y5_c00469{bottom:974.080000pt;}
.y4_c00469{bottom:1005.360000pt;}
.y3_c00469{bottom:1023.036000pt;}
.y2_c00469{bottom:1036.800000pt;}
.y1_c00469{bottom:1064.400000pt;}
.h15_c00469{height:10.320000pt;}
.h7_c00469{height:12.240000pt;}
.h9_c00469{height:12.318667pt;}
.h12_c00469{height:12.320000pt;}
.ha_c00469{height:12.480000pt;}
.h10_c00469{height:13.120000pt;}
.h14_c00469{height:14.958667pt;}
.he_c00469{height:14.960000pt;}
.hf_c00469{height:15.040000pt;}
.hd_c00469{height:15.041333pt;}
.hc_c00469{height:16.000000pt;}
.h13_c00469{height:16.001333pt;}
.hb_c00469{height:16.960000pt;}
.h16_c00469{height:17.040000pt;}
.h11_c00469{height:24.560000pt;}
.h4_c00469{height:27.600000pt;}
.h8_c00469{height:41.770312pt;}
.h6_c00469{height:42.892500pt;}
.h2_c00469{height:47.109375pt;}
.h5_c00469{height:52.448437pt;}
.h3_c00469{height:62.812500pt;}
.h0_c00469{height:1122.560000pt;}
.h1_c00469{height:1122.666667pt;}
.w5_c00469{width:68.160000pt;}
.w7_c00469{width:71.440000pt;}
.wa_c00469{width:72.400000pt;}
.w6_c00469{width:72.401333pt;}
.w4_c00469{width:77.440000pt;}
.w8_c00469{width:140.561333pt;}
.w3_c00469{width:159.200000pt;}
.w9_c00469{width:160.240000pt;}
.w2_c00469{width:450.640000pt;}
.w0_c00469{width:793.840000pt;}
.w1_c00469{width:794.000000pt;}
.x0_c00469{left:0.000000pt;}
.xe_c00469{left:3.600000pt;}
.x4_c00469{left:4.640000pt;}
.x9_c00469{left:13.040000pt;}
.x7_c00469{left:14.720000pt;}
.xb_c00469{left:15.760000pt;}
.x10_c00469{left:23.520000pt;}
.xd_c00469{left:24.800000pt;}
.x11_c00469{left:27.760000pt;}
.x15_c00469{left:29.520000pt;}
.xf_c00469{left:32.800000pt;}
.x13_c00469{left:34.560000pt;}
.x12_c00469{left:38.400000pt;}
.x14_c00469{left:43.760000pt;}
.x17_c00469{left:50.560000pt;}
.x16_c00469{left:54.160000pt;}
.x5_c00469{left:60.720000pt;}
.x3_c00469{left:112.400000pt;}
.x2_c00469{left:113.440000pt;}
.x6_c00469{left:272.640000pt;}
.x8_c00469{left:350.080000pt;}
.x1_c00469{left:396.960000pt;}
.xa_c00469{left:418.240000pt;}
.xc_c00469{left:490.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_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_f72ff9d03e3e439e5b479db1.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_d3078991fe3131c0c8354ac0.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls3_c00470{letter-spacing:-0.143640px;}
.ls2_c00470{letter-spacing:-0.108000px;}
.ls4_c00470{letter-spacing:-0.095760px;}
.ls1_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:0.191520px;}
.ls5_c00470{letter-spacing:0.335160px;}
.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;}
}
.ws1_c00470{word-spacing:-12.161520px;}
.ws0_c00470{word-spacing:-11.970000px;}
.ws2_c00470{word-spacing:-11.874240px;}
.wsa_c00470{word-spacing:-0.430920px;}
.ws8_c00470{word-spacing:-0.287280px;}
.ws9_c00470{word-spacing:-0.191520px;}
.ws6_c00470{word-spacing:-0.095760px;}
.ws3_c00470{word-spacing:0.000000px;}
.ws7_c00470{word-spacing:0.143640px;}
.ws5_c00470{word-spacing:0.162000px;}
.ws4_c00470{word-spacing:0.270000px;}
._1_c00470{margin-left:-1.058400px;}
._0_c00470{width:1.220400px;}
._2_c00470{width:846.000000px;}
.fc1_c00470{color:transparent;}
.fc0_c00470{color:rgb(0,0,0);}
.fs3_c00470{font-size:47.880000px;}
.fs0_c00470{font-size:54.000000px;}
.fs2_c00470{font-size:60.120000px;}
.fs1_c00470{font-size:72.000000px;}
.y1e_c00470{bottom:-10.890000px;}
.y0_c00470{bottom:0.000000px;}
.ya_c00470{bottom:2.880000px;}
.y8_c00470{bottom:2.970000px;}
.y1d_c00470{bottom:16.740000px;}
.y7_c00470{bottom:17.280000px;}
.y44_c00470{bottom:57.240000px;}
.y43_c00470{bottom:173.520000px;}
.y42_c00470{bottom:190.080000px;}
.y41_c00470{bottom:206.100000px;}
.y40_c00470{bottom:222.120000px;}
.y3f_c00470{bottom:235.980000px;}
.y3e_c00470{bottom:252.810000px;}
.y3d_c00470{bottom:269.730000px;}
.y3c_c00470{bottom:286.560000px;}
.y3b_c00470{bottom:303.480000px;}
.y3a_c00470{bottom:320.310000px;}
.y39_c00470{bottom:340.560000px;}
.y38_c00470{bottom:358.560000px;}
.y37_c00470{bottom:375.480000px;}
.y36_c00470{bottom:395.730000px;}
.y35_c00470{bottom:417.060000px;}
.y34_c00470{bottom:430.830000px;}
.y33_c00470{bottom:444.690000px;}
.y32_c00470{bottom:458.460000px;}
.y31_c00470{bottom:472.230000px;}
.y30_c00470{bottom:486.090000px;}
.y2f_c00470{bottom:499.860000px;}
.y2e_c00470{bottom:506.430000px;}
.y2d_c00470{bottom:522.540000px;}
.y2c_c00470{bottom:536.310000px;}
.y2b_c00470{bottom:553.140000px;}
.y2a_c00470{bottom:570.060000px;}
.y29_c00470{bottom:586.890000px;}
.y28_c00470{bottom:603.810000px;}
.y27_c00470{bottom:620.640000px;}
.y26_c00470{bottom:640.890000px;}
.y25_c00470{bottom:658.890000px;}
.y24_c00470{bottom:679.140000px;}
.y23_c00470{bottom:700.560000px;}
.y22_c00470{bottom:715.860000px;}
.y21_c00470{bottom:729.630000px;}
.y20_c00470{bottom:743.490000px;}
.y1f_c00470{bottom:757.260000px;}
.y1c_c00470{bottom:771.030000px;}
.y1b_c00470{bottom:798.660000px;}
.y1a_c00470{bottom:814.680000px;}
.y19_c00470{bottom:831.690000px;}
.y18_c00470{bottom:845.550000px;}
.y17_c00470{bottom:862.380000px;}
.y16_c00470{bottom:879.300000px;}
.y15_c00470{bottom:896.130000px;}
.y14_c00470{bottom:913.050000px;}
.y13_c00470{bottom:929.880000px;}
.y12_c00470{bottom:950.130000px;}
.y11_c00470{bottom:968.130000px;}
.y10_c00470{bottom:985.050000px;}
.yf_c00470{bottom:1005.300000px;}
.ye_c00470{bottom:1026.630000px;}
.yd_c00470{bottom:1040.670000px;}
.yc_c00470{bottom:1054.440000px;}
.yb_c00470{bottom:1068.300000px;}
.y9_c00470{bottom:1082.070000px;}
.y6_c00470{bottom:1095.840000px;}
.y5_c00470{bottom:1131.030000px;}
.y4_c00470{bottom:1150.920000px;}
.y3_c00470{bottom:1166.404500px;}
.y2_c00470{bottom:1181.970000px;}
.y1_c00470{bottom:1197.450000px;}
.h18_c00470{height:6.568500px;}
.h8_c00470{height:13.770000px;}
.ha_c00470{height:13.858500px;}
.h17_c00470{height:13.860000px;}
.hb_c00470{height:14.040000px;}
.h11_c00470{height:14.760000px;}
.h13_c00470{height:15.301500px;}
.h16_c00470{height:16.828500px;}
.hf_c00470{height:16.830000px;}
.h10_c00470{height:16.920000px;}
.he_c00470{height:16.921500px;}
.hd_c00470{height:18.000000px;}
.h15_c00470{height:18.001500px;}
.hc_c00470{height:19.080000px;}
.h19_c00470{height:19.081500px;}
.h14_c00470{height:19.170000px;}
.h12_c00470{height:27.630000px;}
.h5_c00470{height:31.050000px;}
.h9_c00470{height:46.991602px;}
.h7_c00470{height:48.254063px;}
.h3_c00470{height:52.971680px;}
.h2_c00470{height:52.998047px;}
.h6_c00470{height:59.004492px;}
.h4_c00470{height:70.664062px;}
.h0_c00470{height:1262.880000px;}
.h1_c00470{height:1263.000000px;}
.w5_c00470{width:76.680000px;}
.w7_c00470{width:80.370000px;}
.wa_c00470{width:81.450000px;}
.w6_c00470{width:81.451500px;}
.w4_c00470{width:87.120000px;}
.w8_c00470{width:158.131500px;}
.w3_c00470{width:179.100000px;}
.w9_c00470{width:180.270000px;}
.w2_c00470{width:506.970000px;}
.w0_c00470{width:893.070000px;}
.w1_c00470{width:893.250000px;}
.x0_c00470{left:0.000000px;}
.x6_c00470{left:4.050000px;}
.x5_c00470{left:5.220000px;}
.xf_c00470{left:27.270000px;}
.xd_c00470{left:31.230000px;}
.xc_c00470{left:32.490000px;}
.xb_c00470{left:36.900000px;}
.xe_c00470{left:43.200000px;}
.x10_c00470{left:60.930000px;}
.x4_c00470{left:126.450000px;}
.x3_c00470{left:127.620000px;}
.x7_c00470{left:306.720000px;}
.x8_c00470{left:393.840000px;}
.x2_c00470{left:425.160000px;}
.x1_c00470{left:446.580000px;}
.x9_c00470{left:470.520000px;}
.xa_c00470{left:551.970000px;}
.x11_c00470{left:738.540000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls3_c00470{letter-spacing:-0.127680pt;}
.ls2_c00470{letter-spacing:-0.096000pt;}
.ls4_c00470{letter-spacing:-0.085120pt;}
.ls1_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:0.170240pt;}
.ls5_c00470{letter-spacing:0.297920pt;}
.ws1_c00470{word-spacing:-10.810240pt;}
.ws0_c00470{word-spacing:-10.640000pt;}
.ws2_c00470{word-spacing:-10.554880pt;}
.wsa_c00470{word-spacing:-0.383040pt;}
.ws8_c00470{word-spacing:-0.255360pt;}
.ws9_c00470{word-spacing:-0.170240pt;}
.ws6_c00470{word-spacing:-0.085120pt;}
.ws3_c00470{word-spacing:0.000000pt;}
.ws7_c00470{word-spacing:0.127680pt;}
.ws5_c00470{word-spacing:0.144000pt;}
.ws4_c00470{word-spacing:0.240000pt;}
._1_c00470{margin-left:-0.940800pt;}
._0_c00470{width:1.084800pt;}
._2_c00470{width:752.000000pt;}
.fs3_c00470{font-size:42.560000pt;}
.fs0_c00470{font-size:48.000000pt;}
.fs2_c00470{font-size:53.440000pt;}
.fs1_c00470{font-size:64.000000pt;}
.y1e_c00470{bottom:-9.680000pt;}
.y0_c00470{bottom:0.000000pt;}
.ya_c00470{bottom:2.560000pt;}
.y8_c00470{bottom:2.640000pt;}
.y1d_c00470{bottom:14.880000pt;}
.y7_c00470{bottom:15.360000pt;}
.y44_c00470{bottom:50.880000pt;}
.y43_c00470{bottom:154.240000pt;}
.y42_c00470{bottom:168.960000pt;}
.y41_c00470{bottom:183.200000pt;}
.y40_c00470{bottom:197.440000pt;}
.y3f_c00470{bottom:209.760000pt;}
.y3e_c00470{bottom:224.720000pt;}
.y3d_c00470{bottom:239.760000pt;}
.y3c_c00470{bottom:254.720000pt;}
.y3b_c00470{bottom:269.760000pt;}
.y3a_c00470{bottom:284.720000pt;}
.y39_c00470{bottom:302.720000pt;}
.y38_c00470{bottom:318.720000pt;}
.y37_c00470{bottom:333.760000pt;}
.y36_c00470{bottom:351.760000pt;}
.y35_c00470{bottom:370.720000pt;}
.y34_c00470{bottom:382.960000pt;}
.y33_c00470{bottom:395.280000pt;}
.y32_c00470{bottom:407.520000pt;}
.y31_c00470{bottom:419.760000pt;}
.y30_c00470{bottom:432.080000pt;}
.y2f_c00470{bottom:444.320000pt;}
.y2e_c00470{bottom:450.160000pt;}
.y2d_c00470{bottom:464.480000pt;}
.y2c_c00470{bottom:476.720000pt;}
.y2b_c00470{bottom:491.680000pt;}
.y2a_c00470{bottom:506.720000pt;}
.y29_c00470{bottom:521.680000pt;}
.y28_c00470{bottom:536.720000pt;}
.y27_c00470{bottom:551.680000pt;}
.y26_c00470{bottom:569.680000pt;}
.y25_c00470{bottom:585.680000pt;}
.y24_c00470{bottom:603.680000pt;}
.y23_c00470{bottom:622.720000pt;}
.y22_c00470{bottom:636.320000pt;}
.y21_c00470{bottom:648.560000pt;}
.y20_c00470{bottom:660.880000pt;}
.y1f_c00470{bottom:673.120000pt;}
.y1c_c00470{bottom:685.360000pt;}
.y1b_c00470{bottom:709.920000pt;}
.y1a_c00470{bottom:724.160000pt;}
.y19_c00470{bottom:739.280000pt;}
.y18_c00470{bottom:751.600000pt;}
.y17_c00470{bottom:766.560000pt;}
.y16_c00470{bottom:781.600000pt;}
.y15_c00470{bottom:796.560000pt;}
.y14_c00470{bottom:811.600000pt;}
.y13_c00470{bottom:826.560000pt;}
.y12_c00470{bottom:844.560000pt;}
.y11_c00470{bottom:860.560000pt;}
.y10_c00470{bottom:875.600000pt;}
.yf_c00470{bottom:893.600000pt;}
.ye_c00470{bottom:912.560000pt;}
.yd_c00470{bottom:925.040000pt;}
.yc_c00470{bottom:937.280000pt;}
.yb_c00470{bottom:949.600000pt;}
.y9_c00470{bottom:961.840000pt;}
.y6_c00470{bottom:974.080000pt;}
.y5_c00470{bottom:1005.360000pt;}
.y4_c00470{bottom:1023.040000pt;}
.y3_c00470{bottom:1036.804000pt;}
.y2_c00470{bottom:1050.640000pt;}
.y1_c00470{bottom:1064.400000pt;}
.h18_c00470{height:5.838667pt;}
.h8_c00470{height:12.240000pt;}
.ha_c00470{height:12.318667pt;}
.h17_c00470{height:12.320000pt;}
.hb_c00470{height:12.480000pt;}
.h11_c00470{height:13.120000pt;}
.h13_c00470{height:13.601333pt;}
.h16_c00470{height:14.958667pt;}
.hf_c00470{height:14.960000pt;}
.h10_c00470{height:15.040000pt;}
.he_c00470{height:15.041333pt;}
.hd_c00470{height:16.000000pt;}
.h15_c00470{height:16.001333pt;}
.hc_c00470{height:16.960000pt;}
.h19_c00470{height:16.961333pt;}
.h14_c00470{height:17.040000pt;}
.h12_c00470{height:24.560000pt;}
.h5_c00470{height:27.600000pt;}
.h9_c00470{height:41.770312pt;}
.h7_c00470{height:42.892500pt;}
.h3_c00470{height:47.085938pt;}
.h2_c00470{height:47.109375pt;}
.h6_c00470{height:52.448437pt;}
.h4_c00470{height:62.812500pt;}
.h0_c00470{height:1122.560000pt;}
.h1_c00470{height:1122.666667pt;}
.w5_c00470{width:68.160000pt;}
.w7_c00470{width:71.440000pt;}
.wa_c00470{width:72.400000pt;}
.w6_c00470{width:72.401333pt;}
.w4_c00470{width:77.440000pt;}
.w8_c00470{width:140.561333pt;}
.w3_c00470{width:159.200000pt;}
.w9_c00470{width:160.240000pt;}
.w2_c00470{width:450.640000pt;}
.w0_c00470{width:793.840000pt;}
.w1_c00470{width:794.000000pt;}
.x0_c00470{left:0.000000pt;}
.x6_c00470{left:3.600000pt;}
.x5_c00470{left:4.640000pt;}
.xf_c00470{left:24.240000pt;}
.xd_c00470{left:27.760000pt;}
.xc_c00470{left:28.880000pt;}
.xb_c00470{left:32.800000pt;}
.xe_c00470{left:38.400000pt;}
.x10_c00470{left:54.160000pt;}
.x4_c00470{left:112.400000pt;}
.x3_c00470{left:113.440000pt;}
.x7_c00470{left:272.640000pt;}
.x8_c00470{left:350.080000pt;}
.x2_c00470{left:377.920000pt;}
.x1_c00470{left:396.960000pt;}
.x9_c00470{left:418.240000pt;}
.xa_c00470{left:490.640000pt;}
.x11_c00470{left:656.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_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_b0f62d43df35d4313a252db6.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_e05c3b55de6bf6a45d59fda6.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00471{vertical-align:-61.938000px;}
.v0_c00471{vertical-align:0.000000px;}
.ls4_c00471{letter-spacing:-0.095760px;}
.ls2_c00471{letter-spacing:0.000000px;}
.ls3_c00471{letter-spacing:0.095760px;}
.ls1_c00471{letter-spacing:0.191520px;}
.ls0_c00471{letter-spacing:319.518000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00471{word-spacing:-12.161520px;}
.ws0_c00471{word-spacing:-11.970000px;}
.ws2_c00471{word-spacing:-11.874240px;}
.ws7_c00471{word-spacing:-0.287280px;}
.ws8_c00471{word-spacing:-0.191520px;}
.ws4_c00471{word-spacing:-0.162000px;}
.ws5_c00471{word-spacing:-0.095760px;}
.ws3_c00471{word-spacing:0.000000px;}
.ws6_c00471{word-spacing:0.191520px;}
.ws9_c00471{word-spacing:0.287280px;}
._1_c00471{margin-left:-1.139544px;}
._0_c00471{width:1.168272px;}
._2_c00471{width:846.000000px;}
.fc1_c00471{color:transparent;}
.fc0_c00471{color:rgb(0,0,0);}
.fs3_c00471{font-size:47.880000px;}
.fs0_c00471{font-size:54.000000px;}
.fs2_c00471{font-size:60.120000px;}
.fs1_c00471{font-size:72.000000px;}
.y1d_c00471{bottom:-10.890000px;}
.y0_c00471{bottom:0.000000px;}
.y9_c00471{bottom:2.880000px;}
.y7_c00471{bottom:2.970000px;}
.y1c_c00471{bottom:16.740000px;}
.y6_c00471{bottom:17.280000px;}
.y46_c00471{bottom:57.240000px;}
.y45_c00471{bottom:171.360000px;}
.y44_c00471{bottom:187.920000px;}
.y43_c00471{bottom:203.940000px;}
.y42_c00471{bottom:219.960000px;}
.y41_c00471{bottom:233.820000px;}
.y40_c00471{bottom:250.650000px;}
.y3f_c00471{bottom:267.570000px;}
.y3e_c00471{bottom:284.400000px;}
.y3d_c00471{bottom:301.320000px;}
.y3c_c00471{bottom:315.090000px;}
.y3b_c00471{bottom:331.110000px;}
.y3a_c00471{bottom:344.970000px;}
.y39_c00471{bottom:358.740000px;}
.y38_c00471{bottom:374.760000px;}
.y37_c00471{bottom:390.870000px;}
.y36_c00471{bottom:404.640000px;}
.y35_c00471{bottom:418.410000px;}
.y34_c00471{bottom:432.180000px;}
.y33_c00471{bottom:446.040000px;}
.y32_c00471{bottom:459.810000px;}
.y31_c00471{bottom:473.580000px;}
.y30_c00471{bottom:501.210000px;}
.y2f_c00471{bottom:517.230000px;}
.y2e_c00471{bottom:533.340000px;}
.y2d_c00471{bottom:547.110000px;}
.y2c_c00471{bottom:564.030000px;}
.y2b_c00471{bottom:580.860000px;}
.y2a_c00471{bottom:597.780000px;}
.y29_c00471{bottom:614.610000px;}
.y28_c00471{bottom:628.380000px;}
.y27_c00471{bottom:644.490000px;}
.y26_c00471{bottom:658.260000px;}
.y25_c00471{bottom:672.030000px;}
.y24_c00471{bottom:689.040000px;}
.y23_c00471{bottom:705.060000px;}
.y22_c00471{bottom:718.830000px;}
.y21_c00471{bottom:732.690000px;}
.y20_c00471{bottom:746.460000px;}
.y1f_c00471{bottom:760.230000px;}
.y1e_c00471{bottom:774.090000px;}
.y1b_c00471{bottom:787.860000px;}
.y1a_c00471{bottom:815.490000px;}
.y19_c00471{bottom:831.510000px;}
.y18_c00471{bottom:848.520000px;}
.y17_c00471{bottom:862.290000px;}
.y16_c00471{bottom:879.210000px;}
.y15_c00471{bottom:896.040000px;}
.y14_c00471{bottom:912.960000px;}
.y13_c00471{bottom:929.790000px;}
.y12_c00471{bottom:946.710000px;}
.y11_c00471{bottom:966.960000px;}
.y10_c00471{bottom:980.730000px;}
.yf_c00471{bottom:994.590000px;}
.ye_c00471{bottom:1010.610000px;}
.yd_c00471{bottom:1026.630000px;}
.yc_c00471{bottom:1040.670000px;}
.yb_c00471{bottom:1054.440000px;}
.ya_c00471{bottom:1068.300000px;}
.y8_c00471{bottom:1082.070000px;}
.y5_c00471{bottom:1095.840000px;}
.y4_c00471{bottom:1131.030000px;}
.y3_c00471{bottom:1150.915500px;}
.y2_c00471{bottom:1166.400000px;}
.y1_c00471{bottom:1197.450000px;}
.h7_c00471{height:13.770000px;}
.h9_c00471{height:13.858500px;}
.h10_c00471{height:13.860000px;}
.ha_c00471{height:14.040000px;}
.h11_c00471{height:14.760000px;}
.he_c00471{height:14.761500px;}
.hd_c00471{height:16.828500px;}
.h12_c00471{height:16.830000px;}
.h13_c00471{height:16.920000px;}
.hc_c00471{height:16.921500px;}
.hb_c00471{height:18.000000px;}
.hf_c00471{height:27.630000px;}
.h4_c00471{height:31.050000px;}
.h8_c00471{height:46.991602px;}
.h6_c00471{height:48.254063px;}
.h2_c00471{height:52.998047px;}
.h5_c00471{height:59.004492px;}
.h3_c00471{height:70.664062px;}
.h0_c00471{height:1262.880000px;}
.h1_c00471{height:1263.000000px;}
.w5_c00471{width:76.680000px;}
.w7_c00471{width:80.370000px;}
.wa_c00471{width:81.450000px;}
.w6_c00471{width:81.451500px;}
.w4_c00471{width:87.120000px;}
.w8_c00471{width:158.131500px;}
.w3_c00471{width:179.100000px;}
.w9_c00471{width:180.270000px;}
.w2_c00471{width:506.970000px;}
.w0_c00471{width:893.070000px;}
.w1_c00471{width:893.250000px;}
.x0_c00471{left:0.000000px;}
.xe_c00471{left:4.050000px;}
.x4_c00471{left:5.220000px;}
.x9_c00471{left:14.670000px;}
.x7_c00471{left:16.560000px;}
.xb_c00471{left:17.730000px;}
.x10_c00471{left:26.460000px;}
.xd_c00471{left:27.900000px;}
.x11_c00471{left:31.230000px;}
.x13_c00471{left:32.940000px;}
.xf_c00471{left:36.900000px;}
.x12_c00471{left:43.200000px;}
.x15_c00471{left:49.230000px;}
.x14_c00471{left:60.930000px;}
.x5_c00471{left:68.310000px;}
.x3_c00471{left:126.450000px;}
.x2_c00471{left:127.620000px;}
.x6_c00471{left:306.720000px;}
.x8_c00471{left:393.840000px;}
.x1_c00471{left:446.580000px;}
.xa_c00471{left:470.520000px;}
.xc_c00471{left:551.970000px;}
@media print{
.v1_c00471{vertical-align:-55.056000pt;}
.v0_c00471{vertical-align:0.000000pt;}
.ls4_c00471{letter-spacing:-0.085120pt;}
.ls2_c00471{letter-spacing:0.000000pt;}
.ls3_c00471{letter-spacing:0.085120pt;}
.ls1_c00471{letter-spacing:0.170240pt;}
.ls0_c00471{letter-spacing:284.016000pt;}
.ws1_c00471{word-spacing:-10.810240pt;}
.ws0_c00471{word-spacing:-10.640000pt;}
.ws2_c00471{word-spacing:-10.554880pt;}
.ws7_c00471{word-spacing:-0.255360pt;}
.ws8_c00471{word-spacing:-0.170240pt;}
.ws4_c00471{word-spacing:-0.144000pt;}
.ws5_c00471{word-spacing:-0.085120pt;}
.ws3_c00471{word-spacing:0.000000pt;}
.ws6_c00471{word-spacing:0.170240pt;}
.ws9_c00471{word-spacing:0.255360pt;}
._1_c00471{margin-left:-1.012928pt;}
._0_c00471{width:1.038464pt;}
._2_c00471{width:752.000000pt;}
.fs3_c00471{font-size:42.560000pt;}
.fs0_c00471{font-size:48.000000pt;}
.fs2_c00471{font-size:53.440000pt;}
.fs1_c00471{font-size:64.000000pt;}
.y1d_c00471{bottom:-9.680000pt;}
.y0_c00471{bottom:0.000000pt;}
.y9_c00471{bottom:2.560000pt;}
.y7_c00471{bottom:2.640000pt;}
.y1c_c00471{bottom:14.880000pt;}
.y6_c00471{bottom:15.360000pt;}
.y46_c00471{bottom:50.880000pt;}
.y45_c00471{bottom:152.320000pt;}
.y44_c00471{bottom:167.040000pt;}
.y43_c00471{bottom:181.280000pt;}
.y42_c00471{bottom:195.520000pt;}
.y41_c00471{bottom:207.840000pt;}
.y40_c00471{bottom:222.800000pt;}
.y3f_c00471{bottom:237.840000pt;}
.y3e_c00471{bottom:252.800000pt;}
.y3d_c00471{bottom:267.840000pt;}
.y3c_c00471{bottom:280.080000pt;}
.y3b_c00471{bottom:294.320000pt;}
.y3a_c00471{bottom:306.640000pt;}
.y39_c00471{bottom:318.880000pt;}
.y38_c00471{bottom:333.120000pt;}
.y37_c00471{bottom:347.440000pt;}
.y36_c00471{bottom:359.680000pt;}
.y35_c00471{bottom:371.920000pt;}
.y34_c00471{bottom:384.160000pt;}
.y33_c00471{bottom:396.480000pt;}
.y32_c00471{bottom:408.720000pt;}
.y31_c00471{bottom:420.960000pt;}
.y30_c00471{bottom:445.520000pt;}
.y2f_c00471{bottom:459.760000pt;}
.y2e_c00471{bottom:474.080000pt;}
.y2d_c00471{bottom:486.320000pt;}
.y2c_c00471{bottom:501.360000pt;}
.y2b_c00471{bottom:516.320000pt;}
.y2a_c00471{bottom:531.360000pt;}
.y29_c00471{bottom:546.320000pt;}
.y28_c00471{bottom:558.560000pt;}
.y27_c00471{bottom:572.880000pt;}
.y26_c00471{bottom:585.120000pt;}
.y25_c00471{bottom:597.360000pt;}
.y24_c00471{bottom:612.480000pt;}
.y23_c00471{bottom:626.720000pt;}
.y22_c00471{bottom:638.960000pt;}
.y21_c00471{bottom:651.280000pt;}
.y20_c00471{bottom:663.520000pt;}
.y1f_c00471{bottom:675.760000pt;}
.y1e_c00471{bottom:688.080000pt;}
.y1b_c00471{bottom:700.320000pt;}
.y1a_c00471{bottom:724.880000pt;}
.y19_c00471{bottom:739.120000pt;}
.y18_c00471{bottom:754.240000pt;}
.y17_c00471{bottom:766.480000pt;}
.y16_c00471{bottom:781.520000pt;}
.y15_c00471{bottom:796.480000pt;}
.y14_c00471{bottom:811.520000pt;}
.y13_c00471{bottom:826.480000pt;}
.y12_c00471{bottom:841.520000pt;}
.y11_c00471{bottom:859.520000pt;}
.y10_c00471{bottom:871.760000pt;}
.yf_c00471{bottom:884.080000pt;}
.ye_c00471{bottom:898.320000pt;}
.yd_c00471{bottom:912.560000pt;}
.yc_c00471{bottom:925.040000pt;}
.yb_c00471{bottom:937.280000pt;}
.ya_c00471{bottom:949.600000pt;}
.y8_c00471{bottom:961.840000pt;}
.y5_c00471{bottom:974.080000pt;}
.y4_c00471{bottom:1005.360000pt;}
.y3_c00471{bottom:1023.036000pt;}
.y2_c00471{bottom:1036.800000pt;}
.y1_c00471{bottom:1064.400000pt;}
.h7_c00471{height:12.240000pt;}
.h9_c00471{height:12.318667pt;}
.h10_c00471{height:12.320000pt;}
.ha_c00471{height:12.480000pt;}
.h11_c00471{height:13.120000pt;}
.he_c00471{height:13.121333pt;}
.hd_c00471{height:14.958667pt;}
.h12_c00471{height:14.960000pt;}
.h13_c00471{height:15.040000pt;}
.hc_c00471{height:15.041333pt;}
.hb_c00471{height:16.000000pt;}
.hf_c00471{height:24.560000pt;}
.h4_c00471{height:27.600000pt;}
.h8_c00471{height:41.770312pt;}
.h6_c00471{height:42.892500pt;}
.h2_c00471{height:47.109375pt;}
.h5_c00471{height:52.448437pt;}
.h3_c00471{height:62.812500pt;}
.h0_c00471{height:1122.560000pt;}
.h1_c00471{height:1122.666667pt;}
.w5_c00471{width:68.160000pt;}
.w7_c00471{width:71.440000pt;}
.wa_c00471{width:72.400000pt;}
.w6_c00471{width:72.401333pt;}
.w4_c00471{width:77.440000pt;}
.w8_c00471{width:140.561333pt;}
.w3_c00471{width:159.200000pt;}
.w9_c00471{width:160.240000pt;}
.w2_c00471{width:450.640000pt;}
.w0_c00471{width:793.840000pt;}
.w1_c00471{width:794.000000pt;}
.x0_c00471{left:0.000000pt;}
.xe_c00471{left:3.600000pt;}
.x4_c00471{left:4.640000pt;}
.x9_c00471{left:13.040000pt;}
.x7_c00471{left:14.720000pt;}
.xb_c00471{left:15.760000pt;}
.x10_c00471{left:23.520000pt;}
.xd_c00471{left:24.800000pt;}
.x11_c00471{left:27.760000pt;}
.x13_c00471{left:29.280000pt;}
.xf_c00471{left:32.800000pt;}
.x12_c00471{left:38.400000pt;}
.x15_c00471{left:43.760000pt;}
.x14_c00471{left:54.160000pt;}
.x5_c00471{left:60.720000pt;}
.x3_c00471{left:112.400000pt;}
.x2_c00471{left:113.440000pt;}
.x6_c00471{left:272.640000pt;}
.x8_c00471{left:350.080000pt;}
.x1_c00471{left:396.960000pt;}
.xa_c00471{left:418.240000pt;}
.xc_c00471{left:490.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_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_c592d4e7db511c2d6a3342bb.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_3546d6d184d41190183e1f5c.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls2_c00472{letter-spacing:-0.108000px;}
.ls3_c00472{letter-spacing:-0.095760px;}
.ls1_c00472{letter-spacing:0.000000px;}
.ls0_c00472{letter-spacing:0.191520px;}
.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;}
}
.ws1_c00472{word-spacing:-12.161520px;}
.ws0_c00472{word-spacing:-11.970000px;}
.ws2_c00472{word-spacing:-11.874240px;}
.ws7_c00472{word-spacing:-0.287280px;}
.ws6_c00472{word-spacing:-0.095760px;}
.ws3_c00472{word-spacing:0.000000px;}
.ws5_c00472{word-spacing:0.162000px;}
.ws4_c00472{word-spacing:0.270000px;}
.ws8_c00472{word-spacing:0.287280px;}
._1_c00472{margin-left:-1.058400px;}
._0_c00472{width:1.220400px;}
._2_c00472{width:846.000000px;}
.fc1_c00472{color:transparent;}
.fc0_c00472{color:rgb(0,0,0);}
.fs3_c00472{font-size:47.880000px;}
.fs0_c00472{font-size:54.000000px;}
.fs2_c00472{font-size:60.120000px;}
.fs1_c00472{font-size:72.000000px;}
.y1e_c00472{bottom:-10.890000px;}
.y0_c00472{bottom:0.000000px;}
.ya_c00472{bottom:2.880000px;}
.y8_c00472{bottom:2.970000px;}
.y1d_c00472{bottom:16.740000px;}
.y7_c00472{bottom:17.280000px;}
.y41_c00472{bottom:57.240000px;}
.y40_c00472{bottom:161.370000px;}
.y3f_c00472{bottom:177.930000px;}
.y3e_c00472{bottom:198.180000px;}
.y3d_c00472{bottom:216.180000px;}
.y3c_c00472{bottom:233.100000px;}
.y3b_c00472{bottom:249.930000px;}
.y3a_c00472{bottom:266.850000px;}
.y39_c00472{bottom:283.680000px;}
.y38_c00472{bottom:300.600000px;}
.y37_c00472{bottom:320.850000px;}
.y36_c00472{bottom:338.850000px;}
.y35_c00472{bottom:359.100000px;}
.y34_c00472{bottom:380.430000px;}
.y33_c00472{bottom:398.430000px;}
.y32_c00472{bottom:415.350000px;}
.y31_c00472{bottom:432.180000px;}
.y30_c00472{bottom:449.100000px;}
.y2f_c00472{bottom:465.930000px;}
.y2e_c00472{bottom:482.850000px;}
.y2d_c00472{bottom:503.100000px;}
.y2c_c00472{bottom:521.100000px;}
.y2b_c00472{bottom:537.930000px;}
.y2a_c00472{bottom:554.850000px;}
.y29_c00472{bottom:571.680000px;}
.y28_c00472{bottom:588.600000px;}
.y27_c00472{bottom:605.430000px;}
.y26_c00472{bottom:625.680000px;}
.y25_c00472{bottom:643.680000px;}
.y24_c00472{bottom:663.930000px;}
.y23_c00472{bottom:685.350000px;}
.y22_c00472{bottom:699.120000px;}
.y21_c00472{bottom:712.890000px;}
.y20_c00472{bottom:726.750000px;}
.y1f_c00472{bottom:740.520000px;}
.y1c_c00472{bottom:754.290000px;}
.y1b_c00472{bottom:781.920000px;}
.y1a_c00472{bottom:802.170000px;}
.y19_c00472{bottom:823.500000px;}
.y18_c00472{bottom:841.500000px;}
.y17_c00472{bottom:858.420000px;}
.y16_c00472{bottom:875.250000px;}
.y15_c00472{bottom:892.170000px;}
.y14_c00472{bottom:909.000000px;}
.y13_c00472{bottom:925.920000px;}
.y12_c00472{bottom:946.170000px;}
.y11_c00472{bottom:964.170000px;}
.y10_c00472{bottom:981.000000px;}
.yf_c00472{bottom:1001.250000px;}
.ye_c00472{bottom:1022.670000px;}
.yd_c00472{bottom:1040.670000px;}
.yc_c00472{bottom:1054.440000px;}
.yb_c00472{bottom:1068.300000px;}
.y9_c00472{bottom:1082.070000px;}
.y6_c00472{bottom:1095.840000px;}
.y5_c00472{bottom:1131.030000px;}
.y4_c00472{bottom:1150.920000px;}
.y3_c00472{bottom:1166.404500px;}
.y2_c00472{bottom:1181.970000px;}
.y1_c00472{bottom:1197.450000px;}
.h8_c00472{height:13.770000px;}
.ha_c00472{height:13.858500px;}
.h10_c00472{height:16.828500px;}
.he_c00472{height:16.830000px;}
.h13_c00472{height:16.920000px;}
.hf_c00472{height:16.921500px;}
.hd_c00472{height:18.000000px;}
.hb_c00472{height:18.001500px;}
.h11_c00472{height:19.080000px;}
.hc_c00472{height:19.170000px;}
.h12_c00472{height:27.630000px;}
.h5_c00472{height:31.050000px;}
.h9_c00472{height:46.991602px;}
.h7_c00472{height:48.254063px;}
.h3_c00472{height:52.971680px;}
.h2_c00472{height:52.998047px;}
.h6_c00472{height:59.004492px;}
.h4_c00472{height:70.664062px;}
.h0_c00472{height:1262.880000px;}
.h1_c00472{height:1263.000000px;}
.w5_c00472{width:76.680000px;}
.w7_c00472{width:80.370000px;}
.wa_c00472{width:81.450000px;}
.w6_c00472{width:81.451500px;}
.w4_c00472{width:87.120000px;}
.w8_c00472{width:158.131500px;}
.w3_c00472{width:179.100000px;}
.w9_c00472{width:180.270000px;}
.w2_c00472{width:506.970000px;}
.w0_c00472{width:893.070000px;}
.w1_c00472{width:893.250000px;}
.x0_c00472{left:0.000000px;}
.xf_c00472{left:4.050000px;}
.x5_c00472{left:5.220000px;}
.xa_c00472{left:14.670000px;}
.x8_c00472{left:16.560000px;}
.xc_c00472{left:17.730000px;}
.x15_c00472{left:26.460000px;}
.xe_c00472{left:27.900000px;}
.x12_c00472{left:31.230000px;}
.x11_c00472{left:32.490000px;}
.x16_c00472{left:36.900000px;}
.x14_c00472{left:38.880000px;}
.x13_c00472{left:43.200000px;}
.x10_c00472{left:48.870000px;}
.x17_c00472{left:60.930000px;}
.x6_c00472{left:68.310000px;}
.x4_c00472{left:126.450000px;}
.x3_c00472{left:127.620000px;}
.x7_c00472{left:306.720000px;}
.x9_c00472{left:393.840000px;}
.x2_c00472{left:425.160000px;}
.x1_c00472{left:446.580000px;}
.xb_c00472{left:470.520000px;}
.xd_c00472{left:551.970000px;}
.x18_c00472{left:738.540000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls2_c00472{letter-spacing:-0.096000pt;}
.ls3_c00472{letter-spacing:-0.085120pt;}
.ls1_c00472{letter-spacing:0.000000pt;}
.ls0_c00472{letter-spacing:0.170240pt;}
.ws1_c00472{word-spacing:-10.810240pt;}
.ws0_c00472{word-spacing:-10.640000pt;}
.ws2_c00472{word-spacing:-10.554880pt;}
.ws7_c00472{word-spacing:-0.255360pt;}
.ws6_c00472{word-spacing:-0.085120pt;}
.ws3_c00472{word-spacing:0.000000pt;}
.ws5_c00472{word-spacing:0.144000pt;}
.ws4_c00472{word-spacing:0.240000pt;}
.ws8_c00472{word-spacing:0.255360pt;}
._1_c00472{margin-left:-0.940800pt;}
._0_c00472{width:1.084800pt;}
._2_c00472{width:752.000000pt;}
.fs3_c00472{font-size:42.560000pt;}
.fs0_c00472{font-size:48.000000pt;}
.fs2_c00472{font-size:53.440000pt;}
.fs1_c00472{font-size:64.000000pt;}
.y1e_c00472{bottom:-9.680000pt;}
.y0_c00472{bottom:0.000000pt;}
.ya_c00472{bottom:2.560000pt;}
.y8_c00472{bottom:2.640000pt;}
.y1d_c00472{bottom:14.880000pt;}
.y7_c00472{bottom:15.360000pt;}
.y41_c00472{bottom:50.880000pt;}
.y40_c00472{bottom:143.440000pt;}
.y3f_c00472{bottom:158.160000pt;}
.y3e_c00472{bottom:176.160000pt;}
.y3d_c00472{bottom:192.160000pt;}
.y3c_c00472{bottom:207.200000pt;}
.y3b_c00472{bottom:222.160000pt;}
.y3a_c00472{bottom:237.200000pt;}
.y39_c00472{bottom:252.160000pt;}
.y38_c00472{bottom:267.200000pt;}
.y37_c00472{bottom:285.200000pt;}
.y36_c00472{bottom:301.200000pt;}
.y35_c00472{bottom:319.200000pt;}
.y34_c00472{bottom:338.160000pt;}
.y33_c00472{bottom:354.160000pt;}
.y32_c00472{bottom:369.200000pt;}
.y31_c00472{bottom:384.160000pt;}
.y30_c00472{bottom:399.200000pt;}
.y2f_c00472{bottom:414.160000pt;}
.y2e_c00472{bottom:429.200000pt;}
.y2d_c00472{bottom:447.200000pt;}
.y2c_c00472{bottom:463.200000pt;}
.y2b_c00472{bottom:478.160000pt;}
.y2a_c00472{bottom:493.200000pt;}
.y29_c00472{bottom:508.160000pt;}
.y28_c00472{bottom:523.200000pt;}
.y27_c00472{bottom:538.160000pt;}
.y26_c00472{bottom:556.160000pt;}
.y25_c00472{bottom:572.160000pt;}
.y24_c00472{bottom:590.160000pt;}
.y23_c00472{bottom:609.200000pt;}
.y22_c00472{bottom:621.440000pt;}
.y21_c00472{bottom:633.680000pt;}
.y20_c00472{bottom:646.000000pt;}
.y1f_c00472{bottom:658.240000pt;}
.y1c_c00472{bottom:670.480000pt;}
.y1b_c00472{bottom:695.040000pt;}
.y1a_c00472{bottom:713.040000pt;}
.y19_c00472{bottom:732.000000pt;}
.y18_c00472{bottom:748.000000pt;}
.y17_c00472{bottom:763.040000pt;}
.y16_c00472{bottom:778.000000pt;}
.y15_c00472{bottom:793.040000pt;}
.y14_c00472{bottom:808.000000pt;}
.y13_c00472{bottom:823.040000pt;}
.y12_c00472{bottom:841.040000pt;}
.y11_c00472{bottom:857.040000pt;}
.y10_c00472{bottom:872.000000pt;}
.yf_c00472{bottom:890.000000pt;}
.ye_c00472{bottom:909.040000pt;}
.yd_c00472{bottom:925.040000pt;}
.yc_c00472{bottom:937.280000pt;}
.yb_c00472{bottom:949.600000pt;}
.y9_c00472{bottom:961.840000pt;}
.y6_c00472{bottom:974.080000pt;}
.y5_c00472{bottom:1005.360000pt;}
.y4_c00472{bottom:1023.040000pt;}
.y3_c00472{bottom:1036.804000pt;}
.y2_c00472{bottom:1050.640000pt;}
.y1_c00472{bottom:1064.400000pt;}
.h8_c00472{height:12.240000pt;}
.ha_c00472{height:12.318667pt;}
.h10_c00472{height:14.958667pt;}
.he_c00472{height:14.960000pt;}
.h13_c00472{height:15.040000pt;}
.hf_c00472{height:15.041333pt;}
.hd_c00472{height:16.000000pt;}
.hb_c00472{height:16.001333pt;}
.h11_c00472{height:16.960000pt;}
.hc_c00472{height:17.040000pt;}
.h12_c00472{height:24.560000pt;}
.h5_c00472{height:27.600000pt;}
.h9_c00472{height:41.770312pt;}
.h7_c00472{height:42.892500pt;}
.h3_c00472{height:47.085938pt;}
.h2_c00472{height:47.109375pt;}
.h6_c00472{height:52.448437pt;}
.h4_c00472{height:62.812500pt;}
.h0_c00472{height:1122.560000pt;}
.h1_c00472{height:1122.666667pt;}
.w5_c00472{width:68.160000pt;}
.w7_c00472{width:71.440000pt;}
.wa_c00472{width:72.400000pt;}
.w6_c00472{width:72.401333pt;}
.w4_c00472{width:77.440000pt;}
.w8_c00472{width:140.561333pt;}
.w3_c00472{width:159.200000pt;}
.w9_c00472{width:160.240000pt;}
.w2_c00472{width:450.640000pt;}
.w0_c00472{width:793.840000pt;}
.w1_c00472{width:794.000000pt;}
.x0_c00472{left:0.000000pt;}
.xf_c00472{left:3.600000pt;}
.x5_c00472{left:4.640000pt;}
.xa_c00472{left:13.040000pt;}
.x8_c00472{left:14.720000pt;}
.xc_c00472{left:15.760000pt;}
.x15_c00472{left:23.520000pt;}
.xe_c00472{left:24.800000pt;}
.x12_c00472{left:27.760000pt;}
.x11_c00472{left:28.880000pt;}
.x16_c00472{left:32.800000pt;}
.x14_c00472{left:34.560000pt;}
.x13_c00472{left:38.400000pt;}
.x10_c00472{left:43.440000pt;}
.x17_c00472{left:54.160000pt;}
.x6_c00472{left:60.720000pt;}
.x4_c00472{left:112.400000pt;}
.x3_c00472{left:113.440000pt;}
.x7_c00472{left:272.640000pt;}
.x9_c00472{left:350.080000pt;}
.x2_c00472{left:377.920000pt;}
.x1_c00472{left:396.960000pt;}
.xb_c00472{left:418.240000pt;}
.xd_c00472{left:490.640000pt;}
.x18_c00472{left:656.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_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_f0a60497baba4f04f6f37c28.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_76facf0859f412475252da5e.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00473{vertical-align:-61.938000px;}
.v0_c00473{vertical-align:0.000000px;}
.ls4_c00473{letter-spacing:-0.095760px;}
.ls2_c00473{letter-spacing:0.000000px;}
.ls3_c00473{letter-spacing:0.095760px;}
.ls1_c00473{letter-spacing:0.191520px;}
.ls0_c00473{letter-spacing:319.518000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00473{word-spacing:-12.161520px;}
.ws0_c00473{word-spacing:-11.970000px;}
.ws2_c00473{word-spacing:-11.874240px;}
.ws7_c00473{word-spacing:-0.287280px;}
.ws6_c00473{word-spacing:-0.191520px;}
.ws4_c00473{word-spacing:-0.162000px;}
.ws5_c00473{word-spacing:-0.095760px;}
.ws3_c00473{word-spacing:0.000000px;}
._1_c00473{margin-left:-1.310292px;}
._0_c00473{width:1.168272px;}
._2_c00473{width:846.000000px;}
.fc1_c00473{color:transparent;}
.fc0_c00473{color:rgb(0,0,0);}
.fs3_c00473{font-size:47.880000px;}
.fs0_c00473{font-size:54.000000px;}
.fs2_c00473{font-size:60.120000px;}
.fs1_c00473{font-size:72.000000px;}
.y1d_c00473{bottom:-10.890000px;}
.y0_c00473{bottom:0.000000px;}
.y9_c00473{bottom:2.880000px;}
.y7_c00473{bottom:2.970000px;}
.y1c_c00473{bottom:16.650000px;}
.y6_c00473{bottom:17.280000px;}
.y43_c00473{bottom:57.240000px;}
.y42_c00473{bottom:169.200000px;}
.y41_c00473{bottom:185.760000px;}
.y40_c00473{bottom:201.780000px;}
.y3f_c00473{bottom:215.640000px;}
.y3e_c00473{bottom:232.470000px;}
.y3d_c00473{bottom:249.390000px;}
.y3c_c00473{bottom:266.220000px;}
.y3b_c00473{bottom:283.140000px;}
.y3a_c00473{bottom:299.970000px;}
.y39_c00473{bottom:320.220000px;}
.y38_c00473{bottom:338.220000px;}
.y37_c00473{bottom:358.470000px;}
.y36_c00473{bottom:379.890000px;}
.y35_c00473{bottom:393.660000px;}
.y34_c00473{bottom:407.430000px;}
.y33_c00473{bottom:421.290000px;}
.y32_c00473{bottom:435.060000px;}
.y31_c00473{bottom:448.830000px;}
.y30_c00473{bottom:461.430000px;}
.y2f_c00473{bottom:477.540000px;}
.y2e_c00473{bottom:493.560000px;}
.y2d_c00473{bottom:507.330000px;}
.y2c_c00473{bottom:524.250000px;}
.y2b_c00473{bottom:541.080000px;}
.y2a_c00473{bottom:558.000000px;}
.y29_c00473{bottom:574.830000px;}
.y28_c00473{bottom:591.750000px;}
.y27_c00473{bottom:612.000000px;}
.y26_c00473{bottom:630.000000px;}
.y25_c00473{bottom:646.830000px;}
.y24_c00473{bottom:667.080000px;}
.y23_c00473{bottom:688.500000px;}
.y22_c00473{bottom:702.270000px;}
.y21_c00473{bottom:716.040000px;}
.y20_c00473{bottom:729.900000px;}
.y1f_c00473{bottom:743.670000px;}
.y1e_c00473{bottom:757.440000px;}
.y1b_c00473{bottom:771.300000px;}
.y1a_c00473{bottom:798.840000px;}
.y19_c00473{bottom:814.950000px;}
.y18_c00473{bottom:831.960000px;}
.y17_c00473{bottom:845.730000px;}
.y16_c00473{bottom:862.650000px;}
.y15_c00473{bottom:879.480000px;}
.y14_c00473{bottom:896.400000px;}
.y13_c00473{bottom:913.230000px;}
.y12_c00473{bottom:930.150000px;}
.y11_c00473{bottom:950.400000px;}
.y10_c00473{bottom:968.400000px;}
.yf_c00473{bottom:985.230000px;}
.ye_c00473{bottom:1005.480000px;}
.yd_c00473{bottom:1026.900000px;}
.yc_c00473{bottom:1040.670000px;}
.yb_c00473{bottom:1054.440000px;}
.ya_c00473{bottom:1068.300000px;}
.y8_c00473{bottom:1082.070000px;}
.y5_c00473{bottom:1095.840000px;}
.y4_c00473{bottom:1131.030000px;}
.y3_c00473{bottom:1150.915500px;}
.y2_c00473{bottom:1166.400000px;}
.y1_c00473{bottom:1197.450000px;}
.h13_c00473{height:12.600000px;}
.h7_c00473{height:13.770000px;}
.h9_c00473{height:13.858500px;}
.hf_c00473{height:13.860000px;}
.he_c00473{height:14.760000px;}
.h12_c00473{height:16.828500px;}
.hc_c00473{height:16.830000px;}
.hd_c00473{height:16.920000px;}
.hb_c00473{height:18.000000px;}
.h11_c00473{height:18.001500px;}
.ha_c00473{height:19.170000px;}
.h10_c00473{height:27.540000px;}
.h4_c00473{height:31.050000px;}
.h8_c00473{height:46.991602px;}
.h6_c00473{height:48.254063px;}
.h2_c00473{height:52.998047px;}
.h5_c00473{height:59.004492px;}
.h3_c00473{height:70.664062px;}
.h0_c00473{height:1262.880000px;}
.h1_c00473{height:1263.000000px;}
.w5_c00473{width:76.680000px;}
.w7_c00473{width:80.370000px;}
.wa_c00473{width:81.450000px;}
.w6_c00473{width:81.451500px;}
.w4_c00473{width:87.120000px;}
.w8_c00473{width:158.131500px;}
.w3_c00473{width:179.100000px;}
.w9_c00473{width:180.270000px;}
.w2_c00473{width:506.970000px;}
.w0_c00473{width:893.070000px;}
.w1_c00473{width:893.250000px;}
.x0_c00473{left:0.000000px;}
.xe_c00473{left:4.050000px;}
.x4_c00473{left:5.220000px;}
.x9_c00473{left:14.670000px;}
.x7_c00473{left:16.560000px;}
.xb_c00473{left:17.730000px;}
.x10_c00473{left:26.460000px;}
.xd_c00473{left:27.900000px;}
.x11_c00473{left:31.230000px;}
.x13_c00473{left:32.940000px;}
.xf_c00473{left:36.900000px;}
.x12_c00473{left:43.200000px;}
.x14_c00473{left:48.870000px;}
.x15_c00473{left:60.930000px;}
.x5_c00473{left:68.310000px;}
.x3_c00473{left:126.450000px;}
.x2_c00473{left:127.620000px;}
.x6_c00473{left:306.720000px;}
.x8_c00473{left:393.840000px;}
.x1_c00473{left:446.580000px;}
.xa_c00473{left:470.520000px;}
.xc_c00473{left:551.970000px;}
@media print{
.v1_c00473{vertical-align:-55.056000pt;}
.v0_c00473{vertical-align:0.000000pt;}
.ls4_c00473{letter-spacing:-0.085120pt;}
.ls2_c00473{letter-spacing:0.000000pt;}
.ls3_c00473{letter-spacing:0.085120pt;}
.ls1_c00473{letter-spacing:0.170240pt;}
.ls0_c00473{letter-spacing:284.016000pt;}
.ws1_c00473{word-spacing:-10.810240pt;}
.ws0_c00473{word-spacing:-10.640000pt;}
.ws2_c00473{word-spacing:-10.554880pt;}
.ws7_c00473{word-spacing:-0.255360pt;}
.ws6_c00473{word-spacing:-0.170240pt;}
.ws4_c00473{word-spacing:-0.144000pt;}
.ws5_c00473{word-spacing:-0.085120pt;}
.ws3_c00473{word-spacing:0.000000pt;}
._1_c00473{margin-left:-1.164704pt;}
._0_c00473{width:1.038464pt;}
._2_c00473{width:752.000000pt;}
.fs3_c00473{font-size:42.560000pt;}
.fs0_c00473{font-size:48.000000pt;}
.fs2_c00473{font-size:53.440000pt;}
.fs1_c00473{font-size:64.000000pt;}
.y1d_c00473{bottom:-9.680000pt;}
.y0_c00473{bottom:0.000000pt;}
.y9_c00473{bottom:2.560000pt;}
.y7_c00473{bottom:2.640000pt;}
.y1c_c00473{bottom:14.800000pt;}
.y6_c00473{bottom:15.360000pt;}
.y43_c00473{bottom:50.880000pt;}
.y42_c00473{bottom:150.400000pt;}
.y41_c00473{bottom:165.120000pt;}
.y40_c00473{bottom:179.360000pt;}
.y3f_c00473{bottom:191.680000pt;}
.y3e_c00473{bottom:206.640000pt;}
.y3d_c00473{bottom:221.680000pt;}
.y3c_c00473{bottom:236.640000pt;}
.y3b_c00473{bottom:251.680000pt;}
.y3a_c00473{bottom:266.640000pt;}
.y39_c00473{bottom:284.640000pt;}
.y38_c00473{bottom:300.640000pt;}
.y37_c00473{bottom:318.640000pt;}
.y36_c00473{bottom:337.680000pt;}
.y35_c00473{bottom:349.920000pt;}
.y34_c00473{bottom:362.160000pt;}
.y33_c00473{bottom:374.480000pt;}
.y32_c00473{bottom:386.720000pt;}
.y31_c00473{bottom:398.960000pt;}
.y30_c00473{bottom:410.160000pt;}
.y2f_c00473{bottom:424.480000pt;}
.y2e_c00473{bottom:438.720000pt;}
.y2d_c00473{bottom:450.960000pt;}
.y2c_c00473{bottom:466.000000pt;}
.y2b_c00473{bottom:480.960000pt;}
.y2a_c00473{bottom:496.000000pt;}
.y29_c00473{bottom:510.960000pt;}
.y28_c00473{bottom:526.000000pt;}
.y27_c00473{bottom:544.000000pt;}
.y26_c00473{bottom:560.000000pt;}
.y25_c00473{bottom:574.960000pt;}
.y24_c00473{bottom:592.960000pt;}
.y23_c00473{bottom:612.000000pt;}
.y22_c00473{bottom:624.240000pt;}
.y21_c00473{bottom:636.480000pt;}
.y20_c00473{bottom:648.800000pt;}
.y1f_c00473{bottom:661.040000pt;}
.y1e_c00473{bottom:673.280000pt;}
.y1b_c00473{bottom:685.600000pt;}
.y1a_c00473{bottom:710.080000pt;}
.y19_c00473{bottom:724.400000pt;}
.y18_c00473{bottom:739.520000pt;}
.y17_c00473{bottom:751.760000pt;}
.y16_c00473{bottom:766.800000pt;}
.y15_c00473{bottom:781.760000pt;}
.y14_c00473{bottom:796.800000pt;}
.y13_c00473{bottom:811.760000pt;}
.y12_c00473{bottom:826.800000pt;}
.y11_c00473{bottom:844.800000pt;}
.y10_c00473{bottom:860.800000pt;}
.yf_c00473{bottom:875.760000pt;}
.ye_c00473{bottom:893.760000pt;}
.yd_c00473{bottom:912.800000pt;}
.yc_c00473{bottom:925.040000pt;}
.yb_c00473{bottom:937.280000pt;}
.ya_c00473{bottom:949.600000pt;}
.y8_c00473{bottom:961.840000pt;}
.y5_c00473{bottom:974.080000pt;}
.y4_c00473{bottom:1005.360000pt;}
.y3_c00473{bottom:1023.036000pt;}
.y2_c00473{bottom:1036.800000pt;}
.y1_c00473{bottom:1064.400000pt;}
.h13_c00473{height:11.200000pt;}
.h7_c00473{height:12.240000pt;}
.h9_c00473{height:12.318667pt;}
.hf_c00473{height:12.320000pt;}
.he_c00473{height:13.120000pt;}
.h12_c00473{height:14.958667pt;}
.hc_c00473{height:14.960000pt;}
.hd_c00473{height:15.040000pt;}
.hb_c00473{height:16.000000pt;}
.h11_c00473{height:16.001333pt;}
.ha_c00473{height:17.040000pt;}
.h10_c00473{height:24.480000pt;}
.h4_c00473{height:27.600000pt;}
.h8_c00473{height:41.770312pt;}
.h6_c00473{height:42.892500pt;}
.h2_c00473{height:47.109375pt;}
.h5_c00473{height:52.448437pt;}
.h3_c00473{height:62.812500pt;}
.h0_c00473{height:1122.560000pt;}
.h1_c00473{height:1122.666667pt;}
.w5_c00473{width:68.160000pt;}
.w7_c00473{width:71.440000pt;}
.wa_c00473{width:72.400000pt;}
.w6_c00473{width:72.401333pt;}
.w4_c00473{width:77.440000pt;}
.w8_c00473{width:140.561333pt;}
.w3_c00473{width:159.200000pt;}
.w9_c00473{width:160.240000pt;}
.w2_c00473{width:450.640000pt;}
.w0_c00473{width:793.840000pt;}
.w1_c00473{width:794.000000pt;}
.x0_c00473{left:0.000000pt;}
.xe_c00473{left:3.600000pt;}
.x4_c00473{left:4.640000pt;}
.x9_c00473{left:13.040000pt;}
.x7_c00473{left:14.720000pt;}
.xb_c00473{left:15.760000pt;}
.x10_c00473{left:23.520000pt;}
.xd_c00473{left:24.800000pt;}
.x11_c00473{left:27.760000pt;}
.x13_c00473{left:29.280000pt;}
.xf_c00473{left:32.800000pt;}
.x12_c00473{left:38.400000pt;}
.x14_c00473{left:43.440000pt;}
.x15_c00473{left:54.160000pt;}
.x5_c00473{left:60.720000pt;}
.x3_c00473{left:112.400000pt;}
.x2_c00473{left:113.440000pt;}
.x6_c00473{left:272.640000pt;}
.x8_c00473{left:350.080000pt;}
.x1_c00473{left:396.960000pt;}
.xa_c00473{left:418.240000pt;}
.xc_c00473{left:490.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_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_b0f62d43df35d4313a252db6.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_40c01cfae167fff39c3836d2.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls2_c00474{letter-spacing:-0.108000px;}
.ls3_c00474{letter-spacing:-0.095760px;}
.ls1_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:0.191520px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00474{word-spacing:-12.161520px;}
.ws0_c00474{word-spacing:-11.970000px;}
.ws2_c00474{word-spacing:-11.874240px;}
.ws7_c00474{word-spacing:-0.287280px;}
.ws6_c00474{word-spacing:-0.095760px;}
.ws3_c00474{word-spacing:0.000000px;}
.ws5_c00474{word-spacing:0.162000px;}
.ws4_c00474{word-spacing:0.270000px;}
._1_c00474{margin-left:-1.058400px;}
._0_c00474{width:1.220400px;}
._2_c00474{width:846.000000px;}
.fc1_c00474{color:transparent;}
.fc0_c00474{color:rgb(0,0,0);}
.fs3_c00474{font-size:47.880000px;}
.fs0_c00474{font-size:54.000000px;}
.fs2_c00474{font-size:60.120000px;}
.fs1_c00474{font-size:72.000000px;}
.y1e_c00474{bottom:-10.890000px;}
.y0_c00474{bottom:0.000000px;}
.ya_c00474{bottom:2.880000px;}
.y8_c00474{bottom:2.970000px;}
.y33_c00474{bottom:16.650000px;}
.y1d_c00474{bottom:16.740000px;}
.y7_c00474{bottom:17.280000px;}
.y48_c00474{bottom:57.240000px;}
.y47_c00474{bottom:166.320000px;}
.y46_c00474{bottom:182.880000px;}
.y45_c00474{bottom:198.900000px;}
.y44_c00474{bottom:214.920000px;}
.y43_c00474{bottom:228.780000px;}
.y42_c00474{bottom:245.610000px;}
.y41_c00474{bottom:262.530000px;}
.y40_c00474{bottom:279.360000px;}
.y3f_c00474{bottom:296.280000px;}
.y3e_c00474{bottom:313.110000px;}
.y3d_c00474{bottom:329.220000px;}
.y3c_c00474{bottom:342.990000px;}
.y3b_c00474{bottom:356.760000px;}
.y3a_c00474{bottom:372.870000px;}
.y39_c00474{bottom:388.890000px;}
.y38_c00474{bottom:402.660000px;}
.y37_c00474{bottom:416.520000px;}
.y36_c00474{bottom:430.290000px;}
.y35_c00474{bottom:444.060000px;}
.y34_c00474{bottom:457.830000px;}
.y32_c00474{bottom:471.690000px;}
.y31_c00474{bottom:499.230000px;}
.y30_c00474{bottom:515.340000px;}
.y2f_c00474{bottom:531.360000px;}
.y2e_c00474{bottom:545.130000px;}
.y2d_c00474{bottom:562.050000px;}
.y2c_c00474{bottom:578.880000px;}
.y2b_c00474{bottom:595.800000px;}
.y2a_c00474{bottom:612.630000px;}
.y29_c00474{bottom:629.550000px;}
.y28_c00474{bottom:645.570000px;}
.y27_c00474{bottom:659.430000px;}
.y26_c00474{bottom:673.200000px;}
.y25_c00474{bottom:689.220000px;}
.y24_c00474{bottom:705.330000px;}
.y23_c00474{bottom:719.100000px;}
.y22_c00474{bottom:732.870000px;}
.y21_c00474{bottom:746.640000px;}
.y20_c00474{bottom:760.500000px;}
.y1f_c00474{bottom:774.270000px;}
.y1c_c00474{bottom:788.040000px;}
.y1b_c00474{bottom:815.670000px;}
.y1a_c00474{bottom:831.690000px;}
.y19_c00474{bottom:848.790000px;}
.y18_c00474{bottom:862.560000px;}
.y17_c00474{bottom:879.390000px;}
.y16_c00474{bottom:896.310000px;}
.y15_c00474{bottom:913.140000px;}
.y14_c00474{bottom:930.060000px;}
.y13_c00474{bottom:946.890000px;}
.y12_c00474{bottom:967.140000px;}
.y11_c00474{bottom:981.000000px;}
.y10_c00474{bottom:994.770000px;}
.yf_c00474{bottom:1010.790000px;}
.ye_c00474{bottom:1026.900000px;}
.yd_c00474{bottom:1040.670000px;}
.yc_c00474{bottom:1054.440000px;}
.yb_c00474{bottom:1068.300000px;}
.y9_c00474{bottom:1082.070000px;}
.y6_c00474{bottom:1095.840000px;}
.y5_c00474{bottom:1131.030000px;}
.y4_c00474{bottom:1150.920000px;}
.y3_c00474{bottom:1166.404500px;}
.y2_c00474{bottom:1181.970000px;}
.y1_c00474{bottom:1197.450000px;}
.h8_c00474{height:13.770000px;}
.ha_c00474{height:13.858500px;}
.hb_c00474{height:13.860000px;}
.hf_c00474{height:14.850000px;}
.h12_c00474{height:16.828500px;}
.hd_c00474{height:16.830000px;}
.he_c00474{height:16.920000px;}
.h13_c00474{height:16.921500px;}
.hc_c00474{height:18.000000px;}
.h11_c00474{height:27.540000px;}
.h10_c00474{height:27.630000px;}
.h5_c00474{height:31.050000px;}
.h9_c00474{height:46.991602px;}
.h7_c00474{height:48.254063px;}
.h3_c00474{height:52.971680px;}
.h2_c00474{height:52.998047px;}
.h6_c00474{height:59.004492px;}
.h4_c00474{height:70.664062px;}
.h0_c00474{height:1262.880000px;}
.h1_c00474{height:1263.000000px;}
.w5_c00474{width:76.680000px;}
.w7_c00474{width:80.370000px;}
.wa_c00474{width:81.450000px;}
.w6_c00474{width:81.451500px;}
.w4_c00474{width:87.120000px;}
.w8_c00474{width:158.131500px;}
.w3_c00474{width:179.100000px;}
.w9_c00474{width:180.270000px;}
.w2_c00474{width:506.970000px;}
.w0_c00474{width:893.070000px;}
.w1_c00474{width:893.250000px;}
.x0_c00474{left:0.000000px;}
.xf_c00474{left:4.050000px;}
.x5_c00474{left:5.220000px;}
.xa_c00474{left:14.670000px;}
.x8_c00474{left:16.560000px;}
.xc_c00474{left:17.730000px;}
.x11_c00474{left:26.460000px;}
.xe_c00474{left:27.900000px;}
.x12_c00474{left:31.230000px;}
.x14_c00474{left:32.940000px;}
.x10_c00474{left:36.900000px;}
.x13_c00474{left:43.200000px;}
.x15_c00474{left:60.930000px;}
.x6_c00474{left:68.310000px;}
.x4_c00474{left:126.450000px;}
.x3_c00474{left:127.620000px;}
.x7_c00474{left:306.720000px;}
.x9_c00474{left:393.840000px;}
.x2_c00474{left:425.160000px;}
.x1_c00474{left:446.580000px;}
.xb_c00474{left:470.520000px;}
.xd_c00474{left:551.970000px;}
.x16_c00474{left:738.540000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls2_c00474{letter-spacing:-0.096000pt;}
.ls3_c00474{letter-spacing:-0.085120pt;}
.ls1_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:0.170240pt;}
.ws1_c00474{word-spacing:-10.810240pt;}
.ws0_c00474{word-spacing:-10.640000pt;}
.ws2_c00474{word-spacing:-10.554880pt;}
.ws7_c00474{word-spacing:-0.255360pt;}
.ws6_c00474{word-spacing:-0.085120pt;}
.ws3_c00474{word-spacing:0.000000pt;}
.ws5_c00474{word-spacing:0.144000pt;}
.ws4_c00474{word-spacing:0.240000pt;}
._1_c00474{margin-left:-0.940800pt;}
._0_c00474{width:1.084800pt;}
._2_c00474{width:752.000000pt;}
.fs3_c00474{font-size:42.560000pt;}
.fs0_c00474{font-size:48.000000pt;}
.fs2_c00474{font-size:53.440000pt;}
.fs1_c00474{font-size:64.000000pt;}
.y1e_c00474{bottom:-9.680000pt;}
.y0_c00474{bottom:0.000000pt;}
.ya_c00474{bottom:2.560000pt;}
.y8_c00474{bottom:2.640000pt;}
.y33_c00474{bottom:14.800000pt;}
.y1d_c00474{bottom:14.880000pt;}
.y7_c00474{bottom:15.360000pt;}
.y48_c00474{bottom:50.880000pt;}
.y47_c00474{bottom:147.840000pt;}
.y46_c00474{bottom:162.560000pt;}
.y45_c00474{bottom:176.800000pt;}
.y44_c00474{bottom:191.040000pt;}
.y43_c00474{bottom:203.360000pt;}
.y42_c00474{bottom:218.320000pt;}
.y41_c00474{bottom:233.360000pt;}
.y40_c00474{bottom:248.320000pt;}
.y3f_c00474{bottom:263.360000pt;}
.y3e_c00474{bottom:278.320000pt;}
.y3d_c00474{bottom:292.640000pt;}
.y3c_c00474{bottom:304.880000pt;}
.y3b_c00474{bottom:317.120000pt;}
.y3a_c00474{bottom:331.440000pt;}
.y39_c00474{bottom:345.680000pt;}
.y38_c00474{bottom:357.920000pt;}
.y37_c00474{bottom:370.240000pt;}
.y36_c00474{bottom:382.480000pt;}
.y35_c00474{bottom:394.720000pt;}
.y34_c00474{bottom:406.960000pt;}
.y32_c00474{bottom:419.280000pt;}
.y31_c00474{bottom:443.760000pt;}
.y30_c00474{bottom:458.080000pt;}
.y2f_c00474{bottom:472.320000pt;}
.y2e_c00474{bottom:484.560000pt;}
.y2d_c00474{bottom:499.600000pt;}
.y2c_c00474{bottom:514.560000pt;}
.y2b_c00474{bottom:529.600000pt;}
.y2a_c00474{bottom:544.560000pt;}
.y29_c00474{bottom:559.600000pt;}
.y28_c00474{bottom:573.840000pt;}
.y27_c00474{bottom:586.160000pt;}
.y26_c00474{bottom:598.400000pt;}
.y25_c00474{bottom:612.640000pt;}
.y24_c00474{bottom:626.960000pt;}
.y23_c00474{bottom:639.200000pt;}
.y22_c00474{bottom:651.440000pt;}
.y21_c00474{bottom:663.680000pt;}
.y20_c00474{bottom:676.000000pt;}
.y1f_c00474{bottom:688.240000pt;}
.y1c_c00474{bottom:700.480000pt;}
.y1b_c00474{bottom:725.040000pt;}
.y1a_c00474{bottom:739.280000pt;}
.y19_c00474{bottom:754.480000pt;}
.y18_c00474{bottom:766.720000pt;}
.y17_c00474{bottom:781.680000pt;}
.y16_c00474{bottom:796.720000pt;}
.y15_c00474{bottom:811.680000pt;}
.y14_c00474{bottom:826.720000pt;}
.y13_c00474{bottom:841.680000pt;}
.y12_c00474{bottom:859.680000pt;}
.y11_c00474{bottom:872.000000pt;}
.y10_c00474{bottom:884.240000pt;}
.yf_c00474{bottom:898.480000pt;}
.ye_c00474{bottom:912.800000pt;}
.yd_c00474{bottom:925.040000pt;}
.yc_c00474{bottom:937.280000pt;}
.yb_c00474{bottom:949.600000pt;}
.y9_c00474{bottom:961.840000pt;}
.y6_c00474{bottom:974.080000pt;}
.y5_c00474{bottom:1005.360000pt;}
.y4_c00474{bottom:1023.040000pt;}
.y3_c00474{bottom:1036.804000pt;}
.y2_c00474{bottom:1050.640000pt;}
.y1_c00474{bottom:1064.400000pt;}
.h8_c00474{height:12.240000pt;}
.ha_c00474{height:12.318667pt;}
.hb_c00474{height:12.320000pt;}
.hf_c00474{height:13.200000pt;}
.h12_c00474{height:14.958667pt;}
.hd_c00474{height:14.960000pt;}
.he_c00474{height:15.040000pt;}
.h13_c00474{height:15.041333pt;}
.hc_c00474{height:16.000000pt;}
.h11_c00474{height:24.480000pt;}
.h10_c00474{height:24.560000pt;}
.h5_c00474{height:27.600000pt;}
.h9_c00474{height:41.770312pt;}
.h7_c00474{height:42.892500pt;}
.h3_c00474{height:47.085938pt;}
.h2_c00474{height:47.109375pt;}
.h6_c00474{height:52.448437pt;}
.h4_c00474{height:62.812500pt;}
.h0_c00474{height:1122.560000pt;}
.h1_c00474{height:1122.666667pt;}
.w5_c00474{width:68.160000pt;}
.w7_c00474{width:71.440000pt;}
.wa_c00474{width:72.400000pt;}
.w6_c00474{width:72.401333pt;}
.w4_c00474{width:77.440000pt;}
.w8_c00474{width:140.561333pt;}
.w3_c00474{width:159.200000pt;}
.w9_c00474{width:160.240000pt;}
.w2_c00474{width:450.640000pt;}
.w0_c00474{width:793.840000pt;}
.w1_c00474{width:794.000000pt;}
.x0_c00474{left:0.000000pt;}
.xf_c00474{left:3.600000pt;}
.x5_c00474{left:4.640000pt;}
.xa_c00474{left:13.040000pt;}
.x8_c00474{left:14.720000pt;}
.xc_c00474{left:15.760000pt;}
.x11_c00474{left:23.520000pt;}
.xe_c00474{left:24.800000pt;}
.x12_c00474{left:27.760000pt;}
.x14_c00474{left:29.280000pt;}
.x10_c00474{left:32.800000pt;}
.x13_c00474{left:38.400000pt;}
.x15_c00474{left:54.160000pt;}
.x6_c00474{left:60.720000pt;}
.x4_c00474{left:112.400000pt;}
.x3_c00474{left:113.440000pt;}
.x7_c00474{left:272.640000pt;}
.x9_c00474{left:350.080000pt;}
.x2_c00474{left:377.920000pt;}
.x1_c00474{left:396.960000pt;}
.xb_c00474{left:418.240000pt;}
.xd_c00474{left:490.640000pt;}
.x16_c00474{left:656.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_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_f0a60497baba4f04f6f37c28.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_69e4a29a9e317cc0798d242b.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00475{vertical-align:-61.938000px;}
.v0_c00475{vertical-align:0.000000px;}
.ls3_c00475{letter-spacing:-0.095760px;}
.ls2_c00475{letter-spacing:0.000000px;}
.ls1_c00475{letter-spacing:0.191520px;}
.ls0_c00475{letter-spacing:319.518000px;}
.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:-12.161520px;}
.ws0_c00475{word-spacing:-11.970000px;}
.ws2_c00475{word-spacing:-11.874240px;}
.ws7_c00475{word-spacing:-0.287280px;}
.ws4_c00475{word-spacing:-0.162000px;}
.ws5_c00475{word-spacing:-0.095760px;}
.ws3_c00475{word-spacing:0.000000px;}
.ws8_c00475{word-spacing:0.095760px;}
.ws6_c00475{word-spacing:0.287280px;}
._1_c00475{margin-left:-1.139544px;}
._0_c00475{width:1.168272px;}
._2_c00475{width:846.000000px;}
.fc1_c00475{color:transparent;}
.fc0_c00475{color:rgb(0,0,0);}
.fs3_c00475{font-size:47.880000px;}
.fs0_c00475{font-size:54.000000px;}
.fs2_c00475{font-size:60.120000px;}
.fs1_c00475{font-size:72.000000px;}
.y1e_c00475{bottom:-10.890000px;}
.y0_c00475{bottom:0.000000px;}
.y18_c00475{bottom:2.879850px;}
.y9_c00475{bottom:2.880000px;}
.y7_c00475{bottom:2.970000px;}
.y33_c00475{bottom:16.650000px;}
.y1d_c00475{bottom:16.740000px;}
.y6_c00475{bottom:17.280000px;}
.y48_c00475{bottom:57.240000px;}
.y47_c00475{bottom:166.950000px;}
.y46_c00475{bottom:183.510000px;}
.y45_c00475{bottom:199.620000px;}
.y44_c00475{bottom:215.640000px;}
.y43_c00475{bottom:229.410000px;}
.y42_c00475{bottom:246.330000px;}
.y41_c00475{bottom:263.160000px;}
.y40_c00475{bottom:277.020000px;}
.y3f_c00475{bottom:290.790000px;}
.y3e_c00475{bottom:304.560000px;}
.y3d_c00475{bottom:321.570000px;}
.y3c_c00475{bottom:335.340000px;}
.y3b_c00475{bottom:349.110000px;}
.y3a_c00475{bottom:365.220000px;}
.y39_c00475{bottom:381.240000px;}
.y38_c00475{bottom:395.010000px;}
.y37_c00475{bottom:408.780000px;}
.y36_c00475{bottom:422.640000px;}
.y35_c00475{bottom:436.410000px;}
.y34_c00475{bottom:450.180000px;}
.y32_c00475{bottom:464.040000px;}
.y31_c00475{bottom:491.580000px;}
.y30_c00475{bottom:507.690000px;}
.y2f_c00475{bottom:525.330000px;}
.y2e_c00475{bottom:539.640000px;}
.y2d_c00475{bottom:556.470000px;}
.y2c_c00475{bottom:573.390000px;}
.y2b_c00475{bottom:587.160000px;}
.y2a_c00475{bottom:600.930000px;}
.y29_c00475{bottom:614.790000px;}
.y28_c00475{bottom:632.430000px;}
.y27_c00475{bottom:646.290000px;}
.y26_c00475{bottom:660.060000px;}
.y25_c00475{bottom:676.080000px;}
.y24_c00475{bottom:693.990000px;}
.y23_c00475{bottom:711.990000px;}
.y22_c00475{bottom:728.820000px;}
.y21_c00475{bottom:745.740000px;}
.y20_c00475{bottom:762.570000px;}
.y1f_c00475{bottom:779.490000px;}
.y1c_c00475{bottom:796.320000px;}
.y1b_c00475{bottom:823.950000px;}
.y1a_c00475{bottom:839.970000px;}
.y19_c00475{bottom:855.990000px;}
.y17_c00475{bottom:869.850000px;}
.y16_c00475{bottom:886.680000px;}
.y15_c00475{bottom:903.600000px;}
.y14_c00475{bottom:920.430000px;}
.y13_c00475{bottom:937.350000px;}
.y12_c00475{bottom:951.120000px;}
.y11_c00475{bottom:967.140000px;}
.y10_c00475{bottom:981.000000px;}
.yf_c00475{bottom:994.770000px;}
.ye_c00475{bottom:1010.790000px;}
.yd_c00475{bottom:1026.900000px;}
.yc_c00475{bottom:1040.670000px;}
.yb_c00475{bottom:1054.440000px;}
.ya_c00475{bottom:1068.300000px;}
.y8_c00475{bottom:1082.070000px;}
.y5_c00475{bottom:1095.840000px;}
.y4_c00475{bottom:1131.030000px;}
.y3_c00475{bottom:1150.915500px;}
.y2_c00475{bottom:1166.400000px;}
.y1_c00475{bottom:1197.450000px;}
.h7_c00475{height:13.770000px;}
.h9_c00475{height:13.858500px;}
.ha_c00475{height:13.860000px;}
.h11_c00475{height:14.310000px;}
.h13_c00475{height:14.760000px;}
.h10_c00475{height:15.390000px;}
.hf_c00475{height:15.660000px;}
.h14_c00475{height:16.828500px;}
.hc_c00475{height:16.830000px;}
.hb_c00475{height:16.920000px;}
.h15_c00475{height:16.921500px;}
.he_c00475{height:18.000000px;}
.h12_c00475{height:27.540000px;}
.hd_c00475{height:27.628500px;}
.h4_c00475{height:31.050000px;}
.h8_c00475{height:46.991602px;}
.h6_c00475{height:48.254063px;}
.h2_c00475{height:52.998047px;}
.h5_c00475{height:59.004492px;}
.h3_c00475{height:70.664062px;}
.h0_c00475{height:1262.880000px;}
.h1_c00475{height:1263.000000px;}
.w5_c00475{width:76.680000px;}
.w7_c00475{width:80.370000px;}
.wa_c00475{width:81.450000px;}
.w6_c00475{width:81.451500px;}
.w4_c00475{width:87.120000px;}
.w8_c00475{width:158.131500px;}
.w3_c00475{width:179.100000px;}
.w9_c00475{width:180.270000px;}
.w2_c00475{width:506.970000px;}
.w0_c00475{width:893.070000px;}
.w1_c00475{width:893.250000px;}
.x0_c00475{left:0.000000px;}
.xe_c00475{left:4.050000px;}
.x4_c00475{left:5.220000px;}
.x9_c00475{left:14.670000px;}
.x7_c00475{left:16.560000px;}
.xb_c00475{left:17.730000px;}
.x10_c00475{left:26.460000px;}
.xd_c00475{left:27.900000px;}
.x11_c00475{left:31.230000px;}
.x15_c00475{left:32.940000px;}
.xf_c00475{left:36.900000px;}
.x13_c00475{left:38.880000px;}
.x12_c00475{left:43.200000px;}
.x14_c00475{left:60.930000px;}
.x5_c00475{left:68.310000px;}
.x3_c00475{left:126.450000px;}
.x2_c00475{left:127.620000px;}
.x6_c00475{left:306.720000px;}
.x8_c00475{left:393.840000px;}
.x1_c00475{left:446.580000px;}
.xa_c00475{left:470.520000px;}
.xc_c00475{left:551.970000px;}
@media print{
.v1_c00475{vertical-align:-55.056000pt;}
.v0_c00475{vertical-align:0.000000pt;}
.ls3_c00475{letter-spacing:-0.085120pt;}
.ls2_c00475{letter-spacing:0.000000pt;}
.ls1_c00475{letter-spacing:0.170240pt;}
.ls0_c00475{letter-spacing:284.016000pt;}
.ws1_c00475{word-spacing:-10.810240pt;}
.ws0_c00475{word-spacing:-10.640000pt;}
.ws2_c00475{word-spacing:-10.554880pt;}
.ws7_c00475{word-spacing:-0.255360pt;}
.ws4_c00475{word-spacing:-0.144000pt;}
.ws5_c00475{word-spacing:-0.085120pt;}
.ws3_c00475{word-spacing:0.000000pt;}
.ws8_c00475{word-spacing:0.085120pt;}
.ws6_c00475{word-spacing:0.255360pt;}
._1_c00475{margin-left:-1.012928pt;}
._0_c00475{width:1.038464pt;}
._2_c00475{width:752.000000pt;}
.fs3_c00475{font-size:42.560000pt;}
.fs0_c00475{font-size:48.000000pt;}
.fs2_c00475{font-size:53.440000pt;}
.fs1_c00475{font-size:64.000000pt;}
.y1e_c00475{bottom:-9.680000pt;}
.y0_c00475{bottom:0.000000pt;}
.y18_c00475{bottom:2.559867pt;}
.y9_c00475{bottom:2.560000pt;}
.y7_c00475{bottom:2.640000pt;}
.y33_c00475{bottom:14.800000pt;}
.y1d_c00475{bottom:14.880000pt;}
.y6_c00475{bottom:15.360000pt;}
.y48_c00475{bottom:50.880000pt;}
.y47_c00475{bottom:148.400000pt;}
.y46_c00475{bottom:163.120000pt;}
.y45_c00475{bottom:177.440000pt;}
.y44_c00475{bottom:191.680000pt;}
.y43_c00475{bottom:203.920000pt;}
.y42_c00475{bottom:218.960000pt;}
.y41_c00475{bottom:233.920000pt;}
.y40_c00475{bottom:246.240000pt;}
.y3f_c00475{bottom:258.480000pt;}
.y3e_c00475{bottom:270.720000pt;}
.y3d_c00475{bottom:285.840000pt;}
.y3c_c00475{bottom:298.080000pt;}
.y3b_c00475{bottom:310.320000pt;}
.y3a_c00475{bottom:324.640000pt;}
.y39_c00475{bottom:338.880000pt;}
.y38_c00475{bottom:351.120000pt;}
.y37_c00475{bottom:363.360000pt;}
.y36_c00475{bottom:375.680000pt;}
.y35_c00475{bottom:387.920000pt;}
.y34_c00475{bottom:400.160000pt;}
.y32_c00475{bottom:412.480000pt;}
.y31_c00475{bottom:436.960000pt;}
.y30_c00475{bottom:451.280000pt;}
.y2f_c00475{bottom:466.960000pt;}
.y2e_c00475{bottom:479.680000pt;}
.y2d_c00475{bottom:494.640000pt;}
.y2c_c00475{bottom:509.680000pt;}
.y2b_c00475{bottom:521.920000pt;}
.y2a_c00475{bottom:534.160000pt;}
.y29_c00475{bottom:546.480000pt;}
.y28_c00475{bottom:562.160000pt;}
.y27_c00475{bottom:574.480000pt;}
.y26_c00475{bottom:586.720000pt;}
.y25_c00475{bottom:600.960000pt;}
.y24_c00475{bottom:616.880000pt;}
.y23_c00475{bottom:632.880000pt;}
.y22_c00475{bottom:647.840000pt;}
.y21_c00475{bottom:662.880000pt;}
.y20_c00475{bottom:677.840000pt;}
.y1f_c00475{bottom:692.880000pt;}
.y1c_c00475{bottom:707.840000pt;}
.y1b_c00475{bottom:732.400000pt;}
.y1a_c00475{bottom:746.640000pt;}
.y19_c00475{bottom:760.880000pt;}
.y17_c00475{bottom:773.200000pt;}
.y16_c00475{bottom:788.160000pt;}
.y15_c00475{bottom:803.200000pt;}
.y14_c00475{bottom:818.160000pt;}
.y13_c00475{bottom:833.200000pt;}
.y12_c00475{bottom:845.440000pt;}
.y11_c00475{bottom:859.680000pt;}
.y10_c00475{bottom:872.000000pt;}
.yf_c00475{bottom:884.240000pt;}
.ye_c00475{bottom:898.480000pt;}
.yd_c00475{bottom:912.800000pt;}
.yc_c00475{bottom:925.040000pt;}
.yb_c00475{bottom:937.280000pt;}
.ya_c00475{bottom:949.600000pt;}
.y8_c00475{bottom:961.840000pt;}
.y5_c00475{bottom:974.080000pt;}
.y4_c00475{bottom:1005.360000pt;}
.y3_c00475{bottom:1023.036000pt;}
.y2_c00475{bottom:1036.800000pt;}
.y1_c00475{bottom:1064.400000pt;}
.h7_c00475{height:12.240000pt;}
.h9_c00475{height:12.318667pt;}
.ha_c00475{height:12.320000pt;}
.h11_c00475{height:12.720000pt;}
.h13_c00475{height:13.120000pt;}
.h10_c00475{height:13.680000pt;}
.hf_c00475{height:13.920000pt;}
.h14_c00475{height:14.958667pt;}
.hc_c00475{height:14.960000pt;}
.hb_c00475{height:15.040000pt;}
.h15_c00475{height:15.041333pt;}
.he_c00475{height:16.000000pt;}
.h12_c00475{height:24.480000pt;}
.hd_c00475{height:24.558667pt;}
.h4_c00475{height:27.600000pt;}
.h8_c00475{height:41.770312pt;}
.h6_c00475{height:42.892500pt;}
.h2_c00475{height:47.109375pt;}
.h5_c00475{height:52.448437pt;}
.h3_c00475{height:62.812500pt;}
.h0_c00475{height:1122.560000pt;}
.h1_c00475{height:1122.666667pt;}
.w5_c00475{width:68.160000pt;}
.w7_c00475{width:71.440000pt;}
.wa_c00475{width:72.400000pt;}
.w6_c00475{width:72.401333pt;}
.w4_c00475{width:77.440000pt;}
.w8_c00475{width:140.561333pt;}
.w3_c00475{width:159.200000pt;}
.w9_c00475{width:160.240000pt;}
.w2_c00475{width:450.640000pt;}
.w0_c00475{width:793.840000pt;}
.w1_c00475{width:794.000000pt;}
.x0_c00475{left:0.000000pt;}
.xe_c00475{left:3.600000pt;}
.x4_c00475{left:4.640000pt;}
.x9_c00475{left:13.040000pt;}
.x7_c00475{left:14.720000pt;}
.xb_c00475{left:15.760000pt;}
.x10_c00475{left:23.520000pt;}
.xd_c00475{left:24.800000pt;}
.x11_c00475{left:27.760000pt;}
.x15_c00475{left:29.280000pt;}
.xf_c00475{left:32.800000pt;}
.x13_c00475{left:34.560000pt;}
.x12_c00475{left:38.400000pt;}
.x14_c00475{left:54.160000pt;}
.x5_c00475{left:60.720000pt;}
.x3_c00475{left:112.400000pt;}
.x2_c00475{left:113.440000pt;}
.x6_c00475{left:272.640000pt;}
.x8_c00475{left:350.080000pt;}
.x1_c00475{left:396.960000pt;}
.xa_c00475{left:418.240000pt;}
.xc_c00475{left:490.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_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_60ea1bd623100a8b0714ef9a.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_7023a9b2a8de47d99ef1fa82.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls2_c00476{letter-spacing:-0.108000px;}
.ls3_c00476{letter-spacing:-0.095760px;}
.ls1_c00476{letter-spacing:0.000000px;}
.ls4_c00476{letter-spacing:0.095760px;}
.ls0_c00476{letter-spacing:0.191520px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00476{word-spacing:-12.161520px;}
.ws0_c00476{word-spacing:-11.970000px;}
.ws2_c00476{word-spacing:-11.874240px;}
.ws7_c00476{word-spacing:-0.287280px;}
.ws8_c00476{word-spacing:-0.191520px;}
.ws6_c00476{word-spacing:-0.095760px;}
.ws3_c00476{word-spacing:0.000000px;}
.ws5_c00476{word-spacing:0.162000px;}
.ws4_c00476{word-spacing:0.270000px;}
._1_c00476{margin-left:-1.058400px;}
._0_c00476{width:1.220400px;}
._2_c00476{width:846.000000px;}
.fc1_c00476{color:transparent;}
.fc0_c00476{color:rgb(0,0,0);}
.fs3_c00476{font-size:47.880000px;}
.fs0_c00476{font-size:54.000000px;}
.fs2_c00476{font-size:60.120000px;}
.fs1_c00476{font-size:72.000000px;}
.y1f_c00476{bottom:-10.890000px;}
.y0_c00476{bottom:0.000000px;}
.y18_c00476{bottom:2.879850px;}
.ya_c00476{bottom:2.880000px;}
.y8_c00476{bottom:2.970000px;}
.y1e_c00476{bottom:16.650000px;}
.y7_c00476{bottom:17.280000px;}
.y45_c00476{bottom:57.240000px;}
.y44_c00476{bottom:175.230000px;}
.y43_c00476{bottom:191.790000px;}
.y42_c00476{bottom:207.810000px;}
.y41_c00476{bottom:229.230000px;}
.y40_c00476{bottom:247.230000px;}
.y3f_c00476{bottom:264.060000px;}
.y3e_c00476{bottom:280.980000px;}
.y3d_c00476{bottom:297.810000px;}
.y3c_c00476{bottom:314.730000px;}
.y3b_c00476{bottom:331.560000px;}
.y3a_c00476{bottom:351.810000px;}
.y39_c00476{bottom:369.810000px;}
.y38_c00476{bottom:386.730000px;}
.y37_c00476{bottom:406.980000px;}
.y36_c00476{bottom:423.000000px;}
.y35_c00476{bottom:436.770000px;}
.y34_c00476{bottom:450.630000px;}
.y33_c00476{bottom:464.400000px;}
.y32_c00476{bottom:478.170000px;}
.y31_c00476{bottom:491.940000px;}
.y30_c00476{bottom:505.800000px;}
.y2f_c00476{bottom:511.740000px;}
.y2e_c00476{bottom:527.850000px;}
.y2d_c00476{bottom:542.520000px;}
.y2c_c00476{bottom:559.440000px;}
.y2b_c00476{bottom:576.270000px;}
.y2a_c00476{bottom:593.190000px;}
.y29_c00476{bottom:610.020000px;}
.y28_c00476{bottom:626.940000px;}
.y27_c00476{bottom:647.190000px;}
.y26_c00476{bottom:665.190000px;}
.y25_c00476{bottom:685.440000px;}
.y24_c00476{bottom:701.460000px;}
.y23_c00476{bottom:715.230000px;}
.y22_c00476{bottom:729.090000px;}
.y21_c00476{bottom:742.860000px;}
.y20_c00476{bottom:756.630000px;}
.y1d_c00476{bottom:770.490000px;}
.y1c_c00476{bottom:798.030000px;}
.y1b_c00476{bottom:814.140000px;}
.y1a_c00476{bottom:830.160000px;}
.y19_c00476{bottom:843.930000px;}
.y17_c00476{bottom:860.850000px;}
.y16_c00476{bottom:877.680000px;}
.y15_c00476{bottom:894.600000px;}
.y14_c00476{bottom:911.430000px;}
.y13_c00476{bottom:928.350000px;}
.y12_c00476{bottom:948.600000px;}
.y11_c00476{bottom:966.600000px;}
.y10_c00476{bottom:983.430000px;}
.yf_c00476{bottom:1003.680000px;}
.ye_c00476{bottom:1025.100000px;}
.yd_c00476{bottom:1038.870000px;}
.yc_c00476{bottom:1052.640000px;}
.yb_c00476{bottom:1066.500000px;}
.y9_c00476{bottom:1082.070000px;}
.y6_c00476{bottom:1095.840000px;}
.y5_c00476{bottom:1131.030000px;}
.y4_c00476{bottom:1150.920000px;}
.y3_c00476{bottom:1166.404500px;}
.y2_c00476{bottom:1181.970000px;}
.y1_c00476{bottom:1197.450000px;}
.h16_c00476{height:5.940000px;}
.h8_c00476{height:13.770000px;}
.h12_c00476{height:13.858500px;}
.hb_c00476{height:13.860000px;}
.h15_c00476{height:14.670000px;}
.ha_c00476{height:15.570000px;}
.h10_c00476{height:16.828500px;}
.he_c00476{height:16.830000px;}
.h14_c00476{height:16.920000px;}
.hf_c00476{height:16.921500px;}
.hd_c00476{height:18.000000px;}
.h13_c00476{height:18.001500px;}
.hc_c00476{height:19.170000px;}
.h11_c00476{height:27.540000px;}
.h5_c00476{height:31.050000px;}
.h9_c00476{height:46.991602px;}
.h7_c00476{height:48.254063px;}
.h3_c00476{height:52.971680px;}
.h2_c00476{height:52.998047px;}
.h6_c00476{height:59.004492px;}
.h4_c00476{height:70.664062px;}
.h0_c00476{height:1262.880000px;}
.h1_c00476{height:1263.000000px;}
.w5_c00476{width:76.680000px;}
.w7_c00476{width:80.370000px;}
.wa_c00476{width:81.450000px;}
.w6_c00476{width:81.451500px;}
.w4_c00476{width:87.120000px;}
.w8_c00476{width:158.131500px;}
.w3_c00476{width:179.100000px;}
.w9_c00476{width:180.270000px;}
.w2_c00476{width:506.970000px;}
.w0_c00476{width:893.070000px;}
.w1_c00476{width:893.250000px;}
.x0_c00476{left:0.000000px;}
.xf_c00476{left:4.050000px;}
.x5_c00476{left:5.220000px;}
.xa_c00476{left:14.670000px;}
.x8_c00476{left:16.560000px;}
.xc_c00476{left:17.730000px;}
.x11_c00476{left:26.460000px;}
.xe_c00476{left:27.900000px;}
.x12_c00476{left:31.230000px;}
.x14_c00476{left:32.940000px;}
.x10_c00476{left:36.900000px;}
.x13_c00476{left:43.200000px;}
.x16_c00476{left:49.230000px;}
.x15_c00476{left:60.930000px;}
.x6_c00476{left:68.310000px;}
.x4_c00476{left:126.450000px;}
.x3_c00476{left:127.620000px;}
.x7_c00476{left:306.720000px;}
.x9_c00476{left:393.840000px;}
.x2_c00476{left:425.160000px;}
.x1_c00476{left:446.580000px;}
.xb_c00476{left:470.520000px;}
.xd_c00476{left:551.970000px;}
.x17_c00476{left:738.540000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls2_c00476{letter-spacing:-0.096000pt;}
.ls3_c00476{letter-spacing:-0.085120pt;}
.ls1_c00476{letter-spacing:0.000000pt;}
.ls4_c00476{letter-spacing:0.085120pt;}
.ls0_c00476{letter-spacing:0.170240pt;}
.ws1_c00476{word-spacing:-10.810240pt;}
.ws0_c00476{word-spacing:-10.640000pt;}
.ws2_c00476{word-spacing:-10.554880pt;}
.ws7_c00476{word-spacing:-0.255360pt;}
.ws8_c00476{word-spacing:-0.170240pt;}
.ws6_c00476{word-spacing:-0.085120pt;}
.ws3_c00476{word-spacing:0.000000pt;}
.ws5_c00476{word-spacing:0.144000pt;}
.ws4_c00476{word-spacing:0.240000pt;}
._1_c00476{margin-left:-0.940800pt;}
._0_c00476{width:1.084800pt;}
._2_c00476{width:752.000000pt;}
.fs3_c00476{font-size:42.560000pt;}
.fs0_c00476{font-size:48.000000pt;}
.fs2_c00476{font-size:53.440000pt;}
.fs1_c00476{font-size:64.000000pt;}
.y1f_c00476{bottom:-9.680000pt;}
.y0_c00476{bottom:0.000000pt;}
.y18_c00476{bottom:2.559867pt;}
.ya_c00476{bottom:2.560000pt;}
.y8_c00476{bottom:2.640000pt;}
.y1e_c00476{bottom:14.800000pt;}
.y7_c00476{bottom:15.360000pt;}
.y45_c00476{bottom:50.880000pt;}
.y44_c00476{bottom:155.760000pt;}
.y43_c00476{bottom:170.480000pt;}
.y42_c00476{bottom:184.720000pt;}
.y41_c00476{bottom:203.760000pt;}
.y40_c00476{bottom:219.760000pt;}
.y3f_c00476{bottom:234.720000pt;}
.y3e_c00476{bottom:249.760000pt;}
.y3d_c00476{bottom:264.720000pt;}
.y3c_c00476{bottom:279.760000pt;}
.y3b_c00476{bottom:294.720000pt;}
.y3a_c00476{bottom:312.720000pt;}
.y39_c00476{bottom:328.720000pt;}
.y38_c00476{bottom:343.760000pt;}
.y37_c00476{bottom:361.760000pt;}
.y36_c00476{bottom:376.000000pt;}
.y35_c00476{bottom:388.240000pt;}
.y34_c00476{bottom:400.560000pt;}
.y33_c00476{bottom:412.800000pt;}
.y32_c00476{bottom:425.040000pt;}
.y31_c00476{bottom:437.280000pt;}
.y30_c00476{bottom:449.600000pt;}
.y2f_c00476{bottom:454.880000pt;}
.y2e_c00476{bottom:469.200000pt;}
.y2d_c00476{bottom:482.240000pt;}
.y2c_c00476{bottom:497.280000pt;}
.y2b_c00476{bottom:512.240000pt;}
.y2a_c00476{bottom:527.280000pt;}
.y29_c00476{bottom:542.240000pt;}
.y28_c00476{bottom:557.280000pt;}
.y27_c00476{bottom:575.280000pt;}
.y26_c00476{bottom:591.280000pt;}
.y25_c00476{bottom:609.280000pt;}
.y24_c00476{bottom:623.520000pt;}
.y23_c00476{bottom:635.760000pt;}
.y22_c00476{bottom:648.080000pt;}
.y21_c00476{bottom:660.320000pt;}
.y20_c00476{bottom:672.560000pt;}
.y1d_c00476{bottom:684.880000pt;}
.y1c_c00476{bottom:709.360000pt;}
.y1b_c00476{bottom:723.680000pt;}
.y1a_c00476{bottom:737.920000pt;}
.y19_c00476{bottom:750.160000pt;}
.y17_c00476{bottom:765.200000pt;}
.y16_c00476{bottom:780.160000pt;}
.y15_c00476{bottom:795.200000pt;}
.y14_c00476{bottom:810.160000pt;}
.y13_c00476{bottom:825.200000pt;}
.y12_c00476{bottom:843.200000pt;}
.y11_c00476{bottom:859.200000pt;}
.y10_c00476{bottom:874.160000pt;}
.yf_c00476{bottom:892.160000pt;}
.ye_c00476{bottom:911.200000pt;}
.yd_c00476{bottom:923.440000pt;}
.yc_c00476{bottom:935.680000pt;}
.yb_c00476{bottom:948.000000pt;}
.y9_c00476{bottom:961.840000pt;}
.y6_c00476{bottom:974.080000pt;}
.y5_c00476{bottom:1005.360000pt;}
.y4_c00476{bottom:1023.040000pt;}
.y3_c00476{bottom:1036.804000pt;}
.y2_c00476{bottom:1050.640000pt;}
.y1_c00476{bottom:1064.400000pt;}
.h16_c00476{height:5.280000pt;}
.h8_c00476{height:12.240000pt;}
.h12_c00476{height:12.318667pt;}
.hb_c00476{height:12.320000pt;}
.h15_c00476{height:13.040000pt;}
.ha_c00476{height:13.840000pt;}
.h10_c00476{height:14.958667pt;}
.he_c00476{height:14.960000pt;}
.h14_c00476{height:15.040000pt;}
.hf_c00476{height:15.041333pt;}
.hd_c00476{height:16.000000pt;}
.h13_c00476{height:16.001333pt;}
.hc_c00476{height:17.040000pt;}
.h11_c00476{height:24.480000pt;}
.h5_c00476{height:27.600000pt;}
.h9_c00476{height:41.770312pt;}
.h7_c00476{height:42.892500pt;}
.h3_c00476{height:47.085938pt;}
.h2_c00476{height:47.109375pt;}
.h6_c00476{height:52.448437pt;}
.h4_c00476{height:62.812500pt;}
.h0_c00476{height:1122.560000pt;}
.h1_c00476{height:1122.666667pt;}
.w5_c00476{width:68.160000pt;}
.w7_c00476{width:71.440000pt;}
.wa_c00476{width:72.400000pt;}
.w6_c00476{width:72.401333pt;}
.w4_c00476{width:77.440000pt;}
.w8_c00476{width:140.561333pt;}
.w3_c00476{width:159.200000pt;}
.w9_c00476{width:160.240000pt;}
.w2_c00476{width:450.640000pt;}
.w0_c00476{width:793.840000pt;}
.w1_c00476{width:794.000000pt;}
.x0_c00476{left:0.000000pt;}
.xf_c00476{left:3.600000pt;}
.x5_c00476{left:4.640000pt;}
.xa_c00476{left:13.040000pt;}
.x8_c00476{left:14.720000pt;}
.xc_c00476{left:15.760000pt;}
.x11_c00476{left:23.520000pt;}
.xe_c00476{left:24.800000pt;}
.x12_c00476{left:27.760000pt;}
.x14_c00476{left:29.280000pt;}
.x10_c00476{left:32.800000pt;}
.x13_c00476{left:38.400000pt;}
.x16_c00476{left:43.760000pt;}
.x15_c00476{left:54.160000pt;}
.x6_c00476{left:60.720000pt;}
.x4_c00476{left:112.400000pt;}
.x3_c00476{left:113.440000pt;}
.x7_c00476{left:272.640000pt;}
.x9_c00476{left:350.080000pt;}
.x2_c00476{left:377.920000pt;}
.x1_c00476{left:396.960000pt;}
.xb_c00476{left:418.240000pt;}
.xd_c00476{left:490.640000pt;}
.x17_c00476{left:656.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_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_621ae6b0fb5528f0f6ffe641.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_aeaa178a885a42f08b4f1f30.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00477{vertical-align:-61.938000px;}
.v0_c00477{vertical-align:0.000000px;}
.ls3_c00477{letter-spacing:-0.095760px;}
.ls2_c00477{letter-spacing:0.000000px;}
.ls1_c00477{letter-spacing:0.191520px;}
.ls0_c00477{letter-spacing:319.518000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00477{word-spacing:-12.161520px;}
.ws0_c00477{word-spacing:-11.970000px;}
.ws2_c00477{word-spacing:-11.874240px;}
.ws7_c00477{word-spacing:-0.287280px;}
.ws4_c00477{word-spacing:-0.162000px;}
.ws5_c00477{word-spacing:-0.095760px;}
.ws3_c00477{word-spacing:0.000000px;}
.ws6_c00477{word-spacing:0.095760px;}
._1_c00477{margin-left:-1.012392px;}
._0_c00477{width:1.168272px;}
._2_c00477{width:846.000000px;}
.fc1_c00477{color:transparent;}
.fc0_c00477{color:rgb(0,0,0);}
.fs3_c00477{font-size:47.880000px;}
.fs0_c00477{font-size:54.000000px;}
.fs2_c00477{font-size:60.120000px;}
.fs1_c00477{font-size:72.000000px;}
.y1a_c00477{bottom:-10.890000px;}
.y0_c00477{bottom:0.000000px;}
.y9_c00477{bottom:2.880000px;}
.y7_c00477{bottom:2.970000px;}
.y19_c00477{bottom:16.650000px;}
.y30_c00477{bottom:16.740000px;}
.y6_c00477{bottom:17.280000px;}
.y43_c00477{bottom:57.240000px;}
.y42_c00477{bottom:162.360000px;}
.y41_c00477{bottom:178.920000px;}
.y40_c00477{bottom:195.840000px;}
.y3f_c00477{bottom:216.090000px;}
.y3e_c00477{bottom:234.090000px;}
.y3d_c00477{bottom:250.920000px;}
.y3c_c00477{bottom:267.840000px;}
.y3b_c00477{bottom:284.670000px;}
.y3a_c00477{bottom:301.590000px;}
.y39_c00477{bottom:318.420000px;}
.y38_c00477{bottom:338.670000px;}
.y37_c00477{bottom:356.670000px;}
.y36_c00477{bottom:376.920000px;}
.y35_c00477{bottom:398.340000px;}
.y34_c00477{bottom:412.110000px;}
.y33_c00477{bottom:425.880000px;}
.y32_c00477{bottom:439.740000px;}
.y31_c00477{bottom:453.510000px;}
.y2f_c00477{bottom:467.280000px;}
.y2e_c00477{bottom:494.910000px;}
.y2d_c00477{bottom:510.930000px;}
.y2c_c00477{bottom:524.790000px;}
.y2b_c00477{bottom:540.810000px;}
.y2a_c00477{bottom:554.580000px;}
.y29_c00477{bottom:571.500000px;}
.y28_c00477{bottom:588.330000px;}
.y27_c00477{bottom:605.250000px;}
.y26_c00477{bottom:622.080000px;}
.y25_c00477{bottom:639.000000px;}
.y24_c00477{bottom:659.250000px;}
.y23_c00477{bottom:677.250000px;}
.y22_c00477{bottom:694.080000px;}
.y21_c00477{bottom:714.330000px;}
.y20_c00477{bottom:735.750000px;}
.y1f_c00477{bottom:749.520000px;}
.y1e_c00477{bottom:763.290000px;}
.y1d_c00477{bottom:777.150000px;}
.y1c_c00477{bottom:790.920000px;}
.y1b_c00477{bottom:804.690000px;}
.y18_c00477{bottom:818.550000px;}
.y17_c00477{bottom:846.090000px;}
.y16_c00477{bottom:862.650000px;}
.y15_c00477{bottom:876.420000px;}
.y14_c00477{bottom:893.250000px;}
.y13_c00477{bottom:910.170000px;}
.y12_c00477{bottom:927.000000px;}
.y11_c00477{bottom:943.920000px;}
.y10_c00477{bottom:960.750000px;}
.yf_c00477{bottom:981.000000px;}
.ye_c00477{bottom:999.000000px;}
.yd_c00477{bottom:1019.250000px;}
.yc_c00477{bottom:1040.670000px;}
.yb_c00477{bottom:1054.440000px;}
.ya_c00477{bottom:1068.300000px;}
.y8_c00477{bottom:1082.070000px;}
.y5_c00477{bottom:1095.840000px;}
.y4_c00477{bottom:1131.030000px;}
.y3_c00477{bottom:1150.915500px;}
.y2_c00477{bottom:1166.400000px;}
.y1_c00477{bottom:1197.450000px;}
.h7_c00477{height:13.770000px;}
.h9_c00477{height:13.858500px;}
.h10_c00477{height:13.860000px;}
.he_c00477{height:14.310000px;}
.h12_c00477{height:16.828500px;}
.hc_c00477{height:16.830000px;}
.hd_c00477{height:16.920000px;}
.h14_c00477{height:16.921500px;}
.hb_c00477{height:18.000000px;}
.h11_c00477{height:18.001500px;}
.ha_c00477{height:19.170000px;}
.hf_c00477{height:27.540000px;}
.h13_c00477{height:27.630000px;}
.h4_c00477{height:31.050000px;}
.h8_c00477{height:46.991602px;}
.h6_c00477{height:48.254063px;}
.h2_c00477{height:52.998047px;}
.h5_c00477{height:59.004492px;}
.h3_c00477{height:70.664062px;}
.h0_c00477{height:1262.880000px;}
.h1_c00477{height:1263.000000px;}
.w5_c00477{width:76.680000px;}
.w7_c00477{width:80.370000px;}
.wa_c00477{width:81.450000px;}
.w6_c00477{width:81.451500px;}
.w4_c00477{width:87.120000px;}
.w8_c00477{width:158.131500px;}
.w3_c00477{width:179.100000px;}
.w9_c00477{width:180.270000px;}
.wb_c00477{width:245.250000px;}
.w2_c00477{width:506.970000px;}
.w0_c00477{width:893.070000px;}
.w1_c00477{width:893.250000px;}
.x0_c00477{left:0.000000px;}
.xe_c00477{left:4.050000px;}
.x4_c00477{left:5.220000px;}
.x9_c00477{left:14.670000px;}
.x7_c00477{left:16.560000px;}
.xb_c00477{left:17.730000px;}
.x10_c00477{left:26.460000px;}
.xd_c00477{left:27.900000px;}
.x11_c00477{left:31.230000px;}
.x13_c00477{left:32.940000px;}
.xf_c00477{left:36.900000px;}
.x12_c00477{left:43.200000px;}
.x14_c00477{left:48.870000px;}
.x15_c00477{left:56.880000px;}
.x5_c00477{left:68.310000px;}
.x3_c00477{left:126.450000px;}
.x2_c00477{left:127.620000px;}
.x6_c00477{left:306.720000px;}
.x8_c00477{left:393.840000px;}
.x1_c00477{left:446.580000px;}
.xa_c00477{left:470.520000px;}
.xc_c00477{left:551.970000px;}
@media print{
.v1_c00477{vertical-align:-55.056000pt;}
.v0_c00477{vertical-align:0.000000pt;}
.ls3_c00477{letter-spacing:-0.085120pt;}
.ls2_c00477{letter-spacing:0.000000pt;}
.ls1_c00477{letter-spacing:0.170240pt;}
.ls0_c00477{letter-spacing:284.016000pt;}
.ws1_c00477{word-spacing:-10.810240pt;}
.ws0_c00477{word-spacing:-10.640000pt;}
.ws2_c00477{word-spacing:-10.554880pt;}
.ws7_c00477{word-spacing:-0.255360pt;}
.ws4_c00477{word-spacing:-0.144000pt;}
.ws5_c00477{word-spacing:-0.085120pt;}
.ws3_c00477{word-spacing:0.000000pt;}
.ws6_c00477{word-spacing:0.085120pt;}
._1_c00477{margin-left:-0.899904pt;}
._0_c00477{width:1.038464pt;}
._2_c00477{width:752.000000pt;}
.fs3_c00477{font-size:42.560000pt;}
.fs0_c00477{font-size:48.000000pt;}
.fs2_c00477{font-size:53.440000pt;}
.fs1_c00477{font-size:64.000000pt;}
.y1a_c00477{bottom:-9.680000pt;}
.y0_c00477{bottom:0.000000pt;}
.y9_c00477{bottom:2.560000pt;}
.y7_c00477{bottom:2.640000pt;}
.y19_c00477{bottom:14.800000pt;}
.y30_c00477{bottom:14.880000pt;}
.y6_c00477{bottom:15.360000pt;}
.y43_c00477{bottom:50.880000pt;}
.y42_c00477{bottom:144.320000pt;}
.y41_c00477{bottom:159.040000pt;}
.y40_c00477{bottom:174.080000pt;}
.y3f_c00477{bottom:192.080000pt;}
.y3e_c00477{bottom:208.080000pt;}
.y3d_c00477{bottom:223.040000pt;}
.y3c_c00477{bottom:238.080000pt;}
.y3b_c00477{bottom:253.040000pt;}
.y3a_c00477{bottom:268.080000pt;}
.y39_c00477{bottom:283.040000pt;}
.y38_c00477{bottom:301.040000pt;}
.y37_c00477{bottom:317.040000pt;}
.y36_c00477{bottom:335.040000pt;}
.y35_c00477{bottom:354.080000pt;}
.y34_c00477{bottom:366.320000pt;}
.y33_c00477{bottom:378.560000pt;}
.y32_c00477{bottom:390.880000pt;}
.y31_c00477{bottom:403.120000pt;}
.y2f_c00477{bottom:415.360000pt;}
.y2e_c00477{bottom:439.920000pt;}
.y2d_c00477{bottom:454.160000pt;}
.y2c_c00477{bottom:466.480000pt;}
.y2b_c00477{bottom:480.720000pt;}
.y2a_c00477{bottom:492.960000pt;}
.y29_c00477{bottom:508.000000pt;}
.y28_c00477{bottom:522.960000pt;}
.y27_c00477{bottom:538.000000pt;}
.y26_c00477{bottom:552.960000pt;}
.y25_c00477{bottom:568.000000pt;}
.y24_c00477{bottom:586.000000pt;}
.y23_c00477{bottom:602.000000pt;}
.y22_c00477{bottom:616.960000pt;}
.y21_c00477{bottom:634.960000pt;}
.y20_c00477{bottom:654.000000pt;}
.y1f_c00477{bottom:666.240000pt;}
.y1e_c00477{bottom:678.480000pt;}
.y1d_c00477{bottom:690.800000pt;}
.y1c_c00477{bottom:703.040000pt;}
.y1b_c00477{bottom:715.280000pt;}
.y18_c00477{bottom:727.600000pt;}
.y17_c00477{bottom:752.080000pt;}
.y16_c00477{bottom:766.800000pt;}
.y15_c00477{bottom:779.040000pt;}
.y14_c00477{bottom:794.000000pt;}
.y13_c00477{bottom:809.040000pt;}
.y12_c00477{bottom:824.000000pt;}
.y11_c00477{bottom:839.040000pt;}
.y10_c00477{bottom:854.000000pt;}
.yf_c00477{bottom:872.000000pt;}
.ye_c00477{bottom:888.000000pt;}
.yd_c00477{bottom:906.000000pt;}
.yc_c00477{bottom:925.040000pt;}
.yb_c00477{bottom:937.280000pt;}
.ya_c00477{bottom:949.600000pt;}
.y8_c00477{bottom:961.840000pt;}
.y5_c00477{bottom:974.080000pt;}
.y4_c00477{bottom:1005.360000pt;}
.y3_c00477{bottom:1023.036000pt;}
.y2_c00477{bottom:1036.800000pt;}
.y1_c00477{bottom:1064.400000pt;}
.h7_c00477{height:12.240000pt;}
.h9_c00477{height:12.318667pt;}
.h10_c00477{height:12.320000pt;}
.he_c00477{height:12.720000pt;}
.h12_c00477{height:14.958667pt;}
.hc_c00477{height:14.960000pt;}
.hd_c00477{height:15.040000pt;}
.h14_c00477{height:15.041333pt;}
.hb_c00477{height:16.000000pt;}
.h11_c00477{height:16.001333pt;}
.ha_c00477{height:17.040000pt;}
.hf_c00477{height:24.480000pt;}
.h13_c00477{height:24.560000pt;}
.h4_c00477{height:27.600000pt;}
.h8_c00477{height:41.770312pt;}
.h6_c00477{height:42.892500pt;}
.h2_c00477{height:47.109375pt;}
.h5_c00477{height:52.448437pt;}
.h3_c00477{height:62.812500pt;}
.h0_c00477{height:1122.560000pt;}
.h1_c00477{height:1122.666667pt;}
.w5_c00477{width:68.160000pt;}
.w7_c00477{width:71.440000pt;}
.wa_c00477{width:72.400000pt;}
.w6_c00477{width:72.401333pt;}
.w4_c00477{width:77.440000pt;}
.w8_c00477{width:140.561333pt;}
.w3_c00477{width:159.200000pt;}
.w9_c00477{width:160.240000pt;}
.wb_c00477{width:218.000000pt;}
.w2_c00477{width:450.640000pt;}
.w0_c00477{width:793.840000pt;}
.w1_c00477{width:794.000000pt;}
.x0_c00477{left:0.000000pt;}
.xe_c00477{left:3.600000pt;}
.x4_c00477{left:4.640000pt;}
.x9_c00477{left:13.040000pt;}
.x7_c00477{left:14.720000pt;}
.xb_c00477{left:15.760000pt;}
.x10_c00477{left:23.520000pt;}
.xd_c00477{left:24.800000pt;}
.x11_c00477{left:27.760000pt;}
.x13_c00477{left:29.280000pt;}
.xf_c00477{left:32.800000pt;}
.x12_c00477{left:38.400000pt;}
.x14_c00477{left:43.440000pt;}
.x15_c00477{left:50.560000pt;}
.x5_c00477{left:60.720000pt;}
.x3_c00477{left:112.400000pt;}
.x2_c00477{left:113.440000pt;}
.x6_c00477{left:272.640000pt;}
.x8_c00477{left:350.080000pt;}
.x1_c00477{left:396.960000pt;}
.xa_c00477{left:418.240000pt;}
.xc_c00477{left:490.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_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_621ae6b0fb5528f0f6ffe641.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_81b287ae36199a5cb5b6999b.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls2_c00478{letter-spacing:-0.108000px;}
.ls3_c00478{letter-spacing:-0.095760px;}
.ls1_c00478{letter-spacing:0.000000px;}
.ls0_c00478{letter-spacing:0.191520px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00478{word-spacing:-12.161520px;}
.ws0_c00478{word-spacing:-11.970000px;}
.ws2_c00478{word-spacing:-11.874240px;}
.ws8_c00478{word-spacing:-0.287280px;}
.ws6_c00478{word-spacing:-0.095760px;}
.ws3_c00478{word-spacing:0.000000px;}
.ws5_c00478{word-spacing:0.162000px;}
.ws4_c00478{word-spacing:0.270000px;}
.ws7_c00478{word-spacing:0.622440px;}
._1_c00478{margin-left:-1.058400px;}
._0_c00478{width:1.220400px;}
._2_c00478{width:846.000000px;}
.fc1_c00478{color:transparent;}
.fc0_c00478{color:rgb(0,0,0);}
.fs3_c00478{font-size:47.880000px;}
.fs0_c00478{font-size:54.000000px;}
.fs2_c00478{font-size:60.120000px;}
.fs1_c00478{font-size:72.000000px;}
.y1e_c00478{bottom:-10.890000px;}
.y0_c00478{bottom:0.000000px;}
.ya_c00478{bottom:2.880000px;}
.y8_c00478{bottom:2.970000px;}
.y1d_c00478{bottom:16.740000px;}
.y7_c00478{bottom:17.280000px;}
.y47_c00478{bottom:57.240000px;}
.y46_c00478{bottom:164.970000px;}
.y45_c00478{bottom:181.530000px;}
.y44_c00478{bottom:197.550000px;}
.y43_c00478{bottom:213.570000px;}
.y42_c00478{bottom:227.430000px;}
.y41_c00478{bottom:244.260000px;}
.y40_c00478{bottom:261.180000px;}
.y3f_c00478{bottom:278.010000px;}
.y3e_c00478{bottom:291.870000px;}
.y3d_c00478{bottom:305.640000px;}
.y3c_c00478{bottom:321.660000px;}
.y3b_c00478{bottom:336.060000px;}
.y3a_c00478{bottom:349.920000px;}
.y39_c00478{bottom:365.940000px;}
.y38_c00478{bottom:381.960000px;}
.y37_c00478{bottom:395.820000px;}
.y36_c00478{bottom:409.590000px;}
.y35_c00478{bottom:423.360000px;}
.y34_c00478{bottom:437.130000px;}
.y33_c00478{bottom:450.990000px;}
.y32_c00478{bottom:464.760000px;}
.y31_c00478{bottom:492.390000px;}
.y30_c00478{bottom:508.410000px;}
.y2f_c00478{bottom:524.430000px;}
.y2e_c00478{bottom:538.290000px;}
.y2d_c00478{bottom:555.120000px;}
.y2c_c00478{bottom:572.040000px;}
.y2b_c00478{bottom:588.870000px;}
.y2a_c00478{bottom:605.790000px;}
.y29_c00478{bottom:622.620000px;}
.y28_c00478{bottom:642.870000px;}
.y27_c00478{bottom:659.160000px;}
.y26_c00478{bottom:672.930000px;}
.y25_c00478{bottom:689.040000px;}
.y24_c00478{bottom:705.060000px;}
.y23_c00478{bottom:718.830000px;}
.y22_c00478{bottom:732.690000px;}
.y21_c00478{bottom:746.460000px;}
.y20_c00478{bottom:760.230000px;}
.y1f_c00478{bottom:774.090000px;}
.y1c_c00478{bottom:787.860000px;}
.y1b_c00478{bottom:815.490000px;}
.y1a_c00478{bottom:831.510000px;}
.y19_c00478{bottom:848.520000px;}
.y18_c00478{bottom:862.290000px;}
.y17_c00478{bottom:879.210000px;}
.y16_c00478{bottom:896.040000px;}
.y15_c00478{bottom:912.960000px;}
.y14_c00478{bottom:929.790000px;}
.y13_c00478{bottom:946.710000px;}
.y12_c00478{bottom:966.960000px;}
.y11_c00478{bottom:980.730000px;}
.y10_c00478{bottom:994.590000px;}
.yf_c00478{bottom:1010.610000px;}
.ye_c00478{bottom:1026.630000px;}
.yd_c00478{bottom:1040.670000px;}
.yc_c00478{bottom:1054.440000px;}
.yb_c00478{bottom:1068.300000px;}
.y9_c00478{bottom:1082.070000px;}
.y6_c00478{bottom:1095.840000px;}
.y5_c00478{bottom:1131.030000px;}
.y4_c00478{bottom:1150.920000px;}
.y3_c00478{bottom:1166.404500px;}
.y2_c00478{bottom:1181.970000px;}
.y1_c00478{bottom:1197.450000px;}
.h8_c00478{height:13.770000px;}
.ha_c00478{height:13.858500px;}
.h11_c00478{height:13.860000px;}
.hb_c00478{height:14.040000px;}
.h16_c00478{height:14.398500px;}
.hf_c00478{height:14.761500px;}
.h12_c00478{height:16.290000px;}
.he_c00478{height:16.828500px;}
.h13_c00478{height:16.830000px;}
.h14_c00478{height:16.920000px;}
.hd_c00478{height:16.921500px;}
.hc_c00478{height:18.000000px;}
.h15_c00478{height:27.628500px;}
.h10_c00478{height:27.630000px;}
.h5_c00478{height:31.050000px;}
.h9_c00478{height:46.991602px;}
.h7_c00478{height:48.254063px;}
.h3_c00478{height:52.971680px;}
.h2_c00478{height:52.998047px;}
.h6_c00478{height:59.004492px;}
.h4_c00478{height:70.664062px;}
.h0_c00478{height:1262.880000px;}
.h1_c00478{height:1263.000000px;}
.w5_c00478{width:76.680000px;}
.w7_c00478{width:80.370000px;}
.wa_c00478{width:81.450000px;}
.w6_c00478{width:81.451500px;}
.w4_c00478{width:87.120000px;}
.w8_c00478{width:158.131500px;}
.w3_c00478{width:179.100000px;}
.w9_c00478{width:180.270000px;}
.w2_c00478{width:506.970000px;}
.w0_c00478{width:893.070000px;}
.w1_c00478{width:893.250000px;}
.x0_c00478{left:0.000000px;}
.xf_c00478{left:4.050000px;}
.x5_c00478{left:5.220000px;}
.xa_c00478{left:14.670000px;}
.x8_c00478{left:16.560000px;}
.xc_c00478{left:17.730000px;}
.x11_c00478{left:26.460000px;}
.xe_c00478{left:27.900000px;}
.x12_c00478{left:31.230000px;}
.x18_c00478{left:32.940000px;}
.x10_c00478{left:36.900000px;}
.x14_c00478{left:38.880000px;}
.x13_c00478{left:43.200000px;}
.x17_c00478{left:55.260000px;}
.x15_c00478{left:60.930000px;}
.x16_c00478{left:66.870000px;}
.x6_c00478{left:68.310000px;}
.x4_c00478{left:126.450000px;}
.x3_c00478{left:127.620000px;}
.x7_c00478{left:306.720000px;}
.x9_c00478{left:393.840000px;}
.x2_c00478{left:425.160000px;}
.x1_c00478{left:446.580000px;}
.xb_c00478{left:470.520000px;}
.xd_c00478{left:551.970000px;}
.x19_c00478{left:738.540000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls2_c00478{letter-spacing:-0.096000pt;}
.ls3_c00478{letter-spacing:-0.085120pt;}
.ls1_c00478{letter-spacing:0.000000pt;}
.ls0_c00478{letter-spacing:0.170240pt;}
.ws1_c00478{word-spacing:-10.810240pt;}
.ws0_c00478{word-spacing:-10.640000pt;}
.ws2_c00478{word-spacing:-10.554880pt;}
.ws8_c00478{word-spacing:-0.255360pt;}
.ws6_c00478{word-spacing:-0.085120pt;}
.ws3_c00478{word-spacing:0.000000pt;}
.ws5_c00478{word-spacing:0.144000pt;}
.ws4_c00478{word-spacing:0.240000pt;}
.ws7_c00478{word-spacing:0.553280pt;}
._1_c00478{margin-left:-0.940800pt;}
._0_c00478{width:1.084800pt;}
._2_c00478{width:752.000000pt;}
.fs3_c00478{font-size:42.560000pt;}
.fs0_c00478{font-size:48.000000pt;}
.fs2_c00478{font-size:53.440000pt;}
.fs1_c00478{font-size:64.000000pt;}
.y1e_c00478{bottom:-9.680000pt;}
.y0_c00478{bottom:0.000000pt;}
.ya_c00478{bottom:2.560000pt;}
.y8_c00478{bottom:2.640000pt;}
.y1d_c00478{bottom:14.880000pt;}
.y7_c00478{bottom:15.360000pt;}
.y47_c00478{bottom:50.880000pt;}
.y46_c00478{bottom:146.640000pt;}
.y45_c00478{bottom:161.360000pt;}
.y44_c00478{bottom:175.600000pt;}
.y43_c00478{bottom:189.840000pt;}
.y42_c00478{bottom:202.160000pt;}
.y41_c00478{bottom:217.120000pt;}
.y40_c00478{bottom:232.160000pt;}
.y3f_c00478{bottom:247.120000pt;}
.y3e_c00478{bottom:259.440000pt;}
.y3d_c00478{bottom:271.680000pt;}
.y3c_c00478{bottom:285.920000pt;}
.y3b_c00478{bottom:298.720000pt;}
.y3a_c00478{bottom:311.040000pt;}
.y39_c00478{bottom:325.280000pt;}
.y38_c00478{bottom:339.520000pt;}
.y37_c00478{bottom:351.840000pt;}
.y36_c00478{bottom:364.080000pt;}
.y35_c00478{bottom:376.320000pt;}
.y34_c00478{bottom:388.560000pt;}
.y33_c00478{bottom:400.880000pt;}
.y32_c00478{bottom:413.120000pt;}
.y31_c00478{bottom:437.680000pt;}
.y30_c00478{bottom:451.920000pt;}
.y2f_c00478{bottom:466.160000pt;}
.y2e_c00478{bottom:478.480000pt;}
.y2d_c00478{bottom:493.440000pt;}
.y2c_c00478{bottom:508.480000pt;}
.y2b_c00478{bottom:523.440000pt;}
.y2a_c00478{bottom:538.480000pt;}
.y29_c00478{bottom:553.440000pt;}
.y28_c00478{bottom:571.440000pt;}
.y27_c00478{bottom:585.920000pt;}
.y26_c00478{bottom:598.160000pt;}
.y25_c00478{bottom:612.480000pt;}
.y24_c00478{bottom:626.720000pt;}
.y23_c00478{bottom:638.960000pt;}
.y22_c00478{bottom:651.280000pt;}
.y21_c00478{bottom:663.520000pt;}
.y20_c00478{bottom:675.760000pt;}
.y1f_c00478{bottom:688.080000pt;}
.y1c_c00478{bottom:700.320000pt;}
.y1b_c00478{bottom:724.880000pt;}
.y1a_c00478{bottom:739.120000pt;}
.y19_c00478{bottom:754.240000pt;}
.y18_c00478{bottom:766.480000pt;}
.y17_c00478{bottom:781.520000pt;}
.y16_c00478{bottom:796.480000pt;}
.y15_c00478{bottom:811.520000pt;}
.y14_c00478{bottom:826.480000pt;}
.y13_c00478{bottom:841.520000pt;}
.y12_c00478{bottom:859.520000pt;}
.y11_c00478{bottom:871.760000pt;}
.y10_c00478{bottom:884.080000pt;}
.yf_c00478{bottom:898.320000pt;}
.ye_c00478{bottom:912.560000pt;}
.yd_c00478{bottom:925.040000pt;}
.yc_c00478{bottom:937.280000pt;}
.yb_c00478{bottom:949.600000pt;}
.y9_c00478{bottom:961.840000pt;}
.y6_c00478{bottom:974.080000pt;}
.y5_c00478{bottom:1005.360000pt;}
.y4_c00478{bottom:1023.040000pt;}
.y3_c00478{bottom:1036.804000pt;}
.y2_c00478{bottom:1050.640000pt;}
.y1_c00478{bottom:1064.400000pt;}
.h8_c00478{height:12.240000pt;}
.ha_c00478{height:12.318667pt;}
.h11_c00478{height:12.320000pt;}
.hb_c00478{height:12.480000pt;}
.h16_c00478{height:12.798667pt;}
.hf_c00478{height:13.121333pt;}
.h12_c00478{height:14.480000pt;}
.he_c00478{height:14.958667pt;}
.h13_c00478{height:14.960000pt;}
.h14_c00478{height:15.040000pt;}
.hd_c00478{height:15.041333pt;}
.hc_c00478{height:16.000000pt;}
.h15_c00478{height:24.558667pt;}
.h10_c00478{height:24.560000pt;}
.h5_c00478{height:27.600000pt;}
.h9_c00478{height:41.770312pt;}
.h7_c00478{height:42.892500pt;}
.h3_c00478{height:47.085938pt;}
.h2_c00478{height:47.109375pt;}
.h6_c00478{height:52.448437pt;}
.h4_c00478{height:62.812500pt;}
.h0_c00478{height:1122.560000pt;}
.h1_c00478{height:1122.666667pt;}
.w5_c00478{width:68.160000pt;}
.w7_c00478{width:71.440000pt;}
.wa_c00478{width:72.400000pt;}
.w6_c00478{width:72.401333pt;}
.w4_c00478{width:77.440000pt;}
.w8_c00478{width:140.561333pt;}
.w3_c00478{width:159.200000pt;}
.w9_c00478{width:160.240000pt;}
.w2_c00478{width:450.640000pt;}
.w0_c00478{width:793.840000pt;}
.w1_c00478{width:794.000000pt;}
.x0_c00478{left:0.000000pt;}
.xf_c00478{left:3.600000pt;}
.x5_c00478{left:4.640000pt;}
.xa_c00478{left:13.040000pt;}
.x8_c00478{left:14.720000pt;}
.xc_c00478{left:15.760000pt;}
.x11_c00478{left:23.520000pt;}
.xe_c00478{left:24.800000pt;}
.x12_c00478{left:27.760000pt;}
.x18_c00478{left:29.280000pt;}
.x10_c00478{left:32.800000pt;}
.x14_c00478{left:34.560000pt;}
.x13_c00478{left:38.400000pt;}
.x17_c00478{left:49.120000pt;}
.x15_c00478{left:54.160000pt;}
.x16_c00478{left:59.440000pt;}
.x6_c00478{left:60.720000pt;}
.x4_c00478{left:112.400000pt;}
.x3_c00478{left:113.440000pt;}
.x7_c00478{left:272.640000pt;}
.x9_c00478{left:350.080000pt;}
.x2_c00478{left:377.920000pt;}
.x1_c00478{left:396.960000pt;}
.xb_c00478{left:418.240000pt;}
.xd_c00478{left:490.640000pt;}
.x19_c00478{left:656.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_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_f72ff9d03e3e439e5b479db1.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_46f16710de6e5e0fe7ee5b9f.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00479{vertical-align:-61.938000px;}
.v0_c00479{vertical-align:0.000000px;}
.ls3_c00479{letter-spacing:-0.095760px;}
.ls2_c00479{letter-spacing:0.000000px;}
.ls1_c00479{letter-spacing:0.191520px;}
.ls0_c00479{letter-spacing:319.518000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00479{word-spacing:-12.161520px;}
.ws0_c00479{word-spacing:-11.970000px;}
.ws2_c00479{word-spacing:-11.874240px;}
.ws6_c00479{word-spacing:-0.287280px;}
.ws7_c00479{word-spacing:-0.191520px;}
.ws4_c00479{word-spacing:-0.162000px;}
.ws5_c00479{word-spacing:-0.095760px;}
.ws3_c00479{word-spacing:0.000000px;}
.ws8_c00479{word-spacing:0.287280px;}
._1_c00479{margin-left:-1.139544px;}
._0_c00479{width:1.168272px;}
._2_c00479{width:846.000000px;}
.fc1_c00479{color:transparent;}
.fc0_c00479{color:rgb(0,0,0);}
.fs3_c00479{font-size:47.880000px;}
.fs0_c00479{font-size:54.000000px;}
.fs2_c00479{font-size:60.120000px;}
.fs1_c00479{font-size:72.000000px;}
.y19_c00479{bottom:-10.890000px;}
.y0_c00479{bottom:0.000000px;}
.y9_c00479{bottom:2.880000px;}
.y7_c00479{bottom:2.970000px;}
.y1d_c00479{bottom:16.740000px;}
.y6_c00479{bottom:17.280000px;}
.y46_c00479{bottom:57.240000px;}
.y45_c00479{bottom:165.780000px;}
.y44_c00479{bottom:182.340000px;}
.y43_c00479{bottom:198.360000px;}
.y42_c00479{bottom:214.470000px;}
.y41_c00479{bottom:228.240000px;}
.y40_c00479{bottom:242.010000px;}
.y3f_c00479{bottom:258.930000px;}
.y3e_c00479{bottom:275.760000px;}
.y3d_c00479{bottom:292.680000px;}
.y3c_c00479{bottom:306.450000px;}
.y3b_c00479{bottom:322.470000px;}
.y3a_c00479{bottom:336.330000px;}
.y39_c00479{bottom:350.100000px;}
.y38_c00479{bottom:366.120000px;}
.y37_c00479{bottom:382.230000px;}
.y36_c00479{bottom:396.000000px;}
.y35_c00479{bottom:409.770000px;}
.y34_c00479{bottom:425.430000px;}
.y33_c00479{bottom:439.290000px;}
.y32_c00479{bottom:453.060000px;}
.y31_c00479{bottom:466.830000px;}
.y30_c00479{bottom:494.460000px;}
.y2f_c00479{bottom:511.110000px;}
.y2e_c00479{bottom:527.130000px;}
.y2d_c00479{bottom:540.990000px;}
.y2c_c00479{bottom:557.820000px;}
.y2b_c00479{bottom:574.740000px;}
.y2a_c00479{bottom:591.570000px;}
.y29_c00479{bottom:608.490000px;}
.y28_c00479{bottom:622.260000px;}
.y27_c00479{bottom:638.730000px;}
.y26_c00479{bottom:652.590000px;}
.y25_c00479{bottom:666.540000px;}
.y24_c00479{bottom:682.560000px;}
.y23_c00479{bottom:702.450000px;}
.y22_c00479{bottom:716.220000px;}
.y21_c00479{bottom:731.520000px;}
.y20_c00479{bottom:745.290000px;}
.y1f_c00479{bottom:759.150000px;}
.y1e_c00479{bottom:772.920000px;}
.y1c_c00479{bottom:786.690000px;}
.y1b_c00479{bottom:814.320000px;}
.y1a_c00479{bottom:830.340000px;}
.y18_c00479{bottom:846.450000px;}
.y17_c00479{bottom:860.220000px;}
.y16_c00479{bottom:877.140000px;}
.y15_c00479{bottom:893.970000px;}
.y14_c00479{bottom:910.890000px;}
.y13_c00479{bottom:927.720000px;}
.y12_c00479{bottom:944.640000px;}
.y11_c00479{bottom:964.890000px;}
.y10_c00479{bottom:978.660000px;}
.yf_c00479{bottom:992.430000px;}
.ye_c00479{bottom:1008.540000px;}
.yd_c00479{bottom:1024.560000px;}
.yc_c00479{bottom:1040.670000px;}
.yb_c00479{bottom:1054.440000px;}
.ya_c00479{bottom:1068.300000px;}
.y8_c00479{bottom:1082.070000px;}
.y5_c00479{bottom:1095.840000px;}
.y4_c00479{bottom:1131.030000px;}
.y3_c00479{bottom:1150.915500px;}
.y2_c00479{bottom:1166.400000px;}
.y1_c00479{bottom:1197.450000px;}
.h7_c00479{height:13.770000px;}
.h9_c00479{height:13.858500px;}
.hb_c00479{height:13.860000px;}
.h12_c00479{height:13.950000px;}
.h13_c00479{height:14.221500px;}
.h14_c00479{height:14.398500px;}
.h10_c00479{height:15.301500px;}
.h15_c00479{height:15.660000px;}
.ha_c00479{height:16.111500px;}
.he_c00479{height:16.830000px;}
.hd_c00479{height:16.920000px;}
.h11_c00479{height:17.640000px;}
.hc_c00479{height:18.001500px;}
.hf_c00479{height:27.630000px;}
.h4_c00479{height:31.050000px;}
.h8_c00479{height:46.991602px;}
.h6_c00479{height:48.254063px;}
.h2_c00479{height:52.998047px;}
.h5_c00479{height:59.004492px;}
.h3_c00479{height:70.664062px;}
.h0_c00479{height:1262.880000px;}
.h1_c00479{height:1263.000000px;}
.w5_c00479{width:76.680000px;}
.w7_c00479{width:80.370000px;}
.wa_c00479{width:81.450000px;}
.w6_c00479{width:81.451500px;}
.w4_c00479{width:87.120000px;}
.w8_c00479{width:158.131500px;}
.w3_c00479{width:179.100000px;}
.w9_c00479{width:180.270000px;}
.w2_c00479{width:506.970000px;}
.w0_c00479{width:893.070000px;}
.w1_c00479{width:893.250000px;}
.x0_c00479{left:0.000000px;}
.xe_c00479{left:4.050000px;}
.x4_c00479{left:5.220000px;}
.x9_c00479{left:14.670000px;}
.x7_c00479{left:16.560000px;}
.xb_c00479{left:17.730000px;}
.x10_c00479{left:26.460000px;}
.xd_c00479{left:27.900000px;}
.x11_c00479{left:31.230000px;}
.x13_c00479{left:32.940000px;}
.xf_c00479{left:36.900000px;}
.x12_c00479{left:43.200000px;}
.x15_c00479{left:62.910000px;}
.x14_c00479{left:66.870000px;}
.x5_c00479{left:68.310000px;}
.x3_c00479{left:126.450000px;}
.x2_c00479{left:127.620000px;}
.x6_c00479{left:306.720000px;}
.x8_c00479{left:393.840000px;}
.x1_c00479{left:446.580000px;}
.xa_c00479{left:470.520000px;}
.xc_c00479{left:551.970000px;}
@media print{
.v1_c00479{vertical-align:-55.056000pt;}
.v0_c00479{vertical-align:0.000000pt;}
.ls3_c00479{letter-spacing:-0.085120pt;}
.ls2_c00479{letter-spacing:0.000000pt;}
.ls1_c00479{letter-spacing:0.170240pt;}
.ls0_c00479{letter-spacing:284.016000pt;}
.ws1_c00479{word-spacing:-10.810240pt;}
.ws0_c00479{word-spacing:-10.640000pt;}
.ws2_c00479{word-spacing:-10.554880pt;}
.ws6_c00479{word-spacing:-0.255360pt;}
.ws7_c00479{word-spacing:-0.170240pt;}
.ws4_c00479{word-spacing:-0.144000pt;}
.ws5_c00479{word-spacing:-0.085120pt;}
.ws3_c00479{word-spacing:0.000000pt;}
.ws8_c00479{word-spacing:0.255360pt;}
._1_c00479{margin-left:-1.012928pt;}
._0_c00479{width:1.038464pt;}
._2_c00479{width:752.000000pt;}
.fs3_c00479{font-size:42.560000pt;}
.fs0_c00479{font-size:48.000000pt;}
.fs2_c00479{font-size:53.440000pt;}
.fs1_c00479{font-size:64.000000pt;}
.y19_c00479{bottom:-9.680000pt;}
.y0_c00479{bottom:0.000000pt;}
.y9_c00479{bottom:2.560000pt;}
.y7_c00479{bottom:2.640000pt;}
.y1d_c00479{bottom:14.880000pt;}
.y6_c00479{bottom:15.360000pt;}
.y46_c00479{bottom:50.880000pt;}
.y45_c00479{bottom:147.360000pt;}
.y44_c00479{bottom:162.080000pt;}
.y43_c00479{bottom:176.320000pt;}
.y42_c00479{bottom:190.640000pt;}
.y41_c00479{bottom:202.880000pt;}
.y40_c00479{bottom:215.120000pt;}
.y3f_c00479{bottom:230.160000pt;}
.y3e_c00479{bottom:245.120000pt;}
.y3d_c00479{bottom:260.160000pt;}
.y3c_c00479{bottom:272.400000pt;}
.y3b_c00479{bottom:286.640000pt;}
.y3a_c00479{bottom:298.960000pt;}
.y39_c00479{bottom:311.200000pt;}
.y38_c00479{bottom:325.440000pt;}
.y37_c00479{bottom:339.760000pt;}
.y36_c00479{bottom:352.000000pt;}
.y35_c00479{bottom:364.240000pt;}
.y34_c00479{bottom:378.160000pt;}
.y33_c00479{bottom:390.480000pt;}
.y32_c00479{bottom:402.720000pt;}
.y31_c00479{bottom:414.960000pt;}
.y30_c00479{bottom:439.520000pt;}
.y2f_c00479{bottom:454.320000pt;}
.y2e_c00479{bottom:468.560000pt;}
.y2d_c00479{bottom:480.880000pt;}
.y2c_c00479{bottom:495.840000pt;}
.y2b_c00479{bottom:510.880000pt;}
.y2a_c00479{bottom:525.840000pt;}
.y29_c00479{bottom:540.880000pt;}
.y28_c00479{bottom:553.120000pt;}
.y27_c00479{bottom:567.760000pt;}
.y26_c00479{bottom:580.080000pt;}
.y25_c00479{bottom:592.480000pt;}
.y24_c00479{bottom:606.720000pt;}
.y23_c00479{bottom:624.400000pt;}
.y22_c00479{bottom:636.640000pt;}
.y21_c00479{bottom:650.240000pt;}
.y20_c00479{bottom:662.480000pt;}
.y1f_c00479{bottom:674.800000pt;}
.y1e_c00479{bottom:687.040000pt;}
.y1c_c00479{bottom:699.280000pt;}
.y1b_c00479{bottom:723.840000pt;}
.y1a_c00479{bottom:738.080000pt;}
.y18_c00479{bottom:752.400000pt;}
.y17_c00479{bottom:764.640000pt;}
.y16_c00479{bottom:779.680000pt;}
.y15_c00479{bottom:794.640000pt;}
.y14_c00479{bottom:809.680000pt;}
.y13_c00479{bottom:824.640000pt;}
.y12_c00479{bottom:839.680000pt;}
.y11_c00479{bottom:857.680000pt;}
.y10_c00479{bottom:869.920000pt;}
.yf_c00479{bottom:882.160000pt;}
.ye_c00479{bottom:896.480000pt;}
.yd_c00479{bottom:910.720000pt;}
.yc_c00479{bottom:925.040000pt;}
.yb_c00479{bottom:937.280000pt;}
.ya_c00479{bottom:949.600000pt;}
.y8_c00479{bottom:961.840000pt;}
.y5_c00479{bottom:974.080000pt;}
.y4_c00479{bottom:1005.360000pt;}
.y3_c00479{bottom:1023.036000pt;}
.y2_c00479{bottom:1036.800000pt;}
.y1_c00479{bottom:1064.400000pt;}
.h7_c00479{height:12.240000pt;}
.h9_c00479{height:12.318667pt;}
.hb_c00479{height:12.320000pt;}
.h12_c00479{height:12.400000pt;}
.h13_c00479{height:12.641333pt;}
.h14_c00479{height:12.798667pt;}
.h10_c00479{height:13.601333pt;}
.h15_c00479{height:13.920000pt;}
.ha_c00479{height:14.321333pt;}
.he_c00479{height:14.960000pt;}
.hd_c00479{height:15.040000pt;}
.h11_c00479{height:15.680000pt;}
.hc_c00479{height:16.001333pt;}
.hf_c00479{height:24.560000pt;}
.h4_c00479{height:27.600000pt;}
.h8_c00479{height:41.770312pt;}
.h6_c00479{height:42.892500pt;}
.h2_c00479{height:47.109375pt;}
.h5_c00479{height:52.448437pt;}
.h3_c00479{height:62.812500pt;}
.h0_c00479{height:1122.560000pt;}
.h1_c00479{height:1122.666667pt;}
.w5_c00479{width:68.160000pt;}
.w7_c00479{width:71.440000pt;}
.wa_c00479{width:72.400000pt;}
.w6_c00479{width:72.401333pt;}
.w4_c00479{width:77.440000pt;}
.w8_c00479{width:140.561333pt;}
.w3_c00479{width:159.200000pt;}
.w9_c00479{width:160.240000pt;}
.w2_c00479{width:450.640000pt;}
.w0_c00479{width:793.840000pt;}
.w1_c00479{width:794.000000pt;}
.x0_c00479{left:0.000000pt;}
.xe_c00479{left:3.600000pt;}
.x4_c00479{left:4.640000pt;}
.x9_c00479{left:13.040000pt;}
.x7_c00479{left:14.720000pt;}
.xb_c00479{left:15.760000pt;}
.x10_c00479{left:23.520000pt;}
.xd_c00479{left:24.800000pt;}
.x11_c00479{left:27.760000pt;}
.x13_c00479{left:29.280000pt;}
.xf_c00479{left:32.800000pt;}
.x12_c00479{left:38.400000pt;}
.x15_c00479{left:55.920000pt;}
.x14_c00479{left:59.440000pt;}
.x5_c00479{left:60.720000pt;}
.x3_c00479{left:112.400000pt;}
.x2_c00479{left:113.440000pt;}
.x6_c00479{left:272.640000pt;}
.x8_c00479{left:350.080000pt;}
.x1_c00479{left:396.960000pt;}
.xa_c00479{left:418.240000pt;}
.xc_c00479{left:490.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_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_fd957ba140712a17ac828df2.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.284180;font-style:normal;font-weight:normal;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_9154cbfaad7e12dd93494f25.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls2_c00480{letter-spacing:-0.108000px;}
.ls3_c00480{letter-spacing:-0.095760px;}
.ls1_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:0.191520px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00480{word-spacing:-12.161520px;}
.ws0_c00480{word-spacing:-11.970000px;}
.ws2_c00480{word-spacing:-11.874240px;}
.ws7_c00480{word-spacing:-0.287280px;}
.ws6_c00480{word-spacing:-0.095760px;}
.ws3_c00480{word-spacing:0.000000px;}
.ws8_c00480{word-spacing:0.095760px;}
.ws5_c00480{word-spacing:0.162000px;}
.ws4_c00480{word-spacing:0.270000px;}
._1_c00480{margin-left:-1.058400px;}
._0_c00480{width:1.220400px;}
._2_c00480{width:846.000000px;}
.fc1_c00480{color:transparent;}
.fc0_c00480{color:rgb(0,0,0);}
.fs3_c00480{font-size:47.880000px;}
.fs0_c00480{font-size:54.000000px;}
.fs2_c00480{font-size:60.120000px;}
.fs1_c00480{font-size:72.000000px;}
.y1e_c00480{bottom:-10.890000px;}
.y0_c00480{bottom:0.000000px;}
.ya_c00480{bottom:2.880000px;}
.y8_c00480{bottom:2.970000px;}
.y1d_c00480{bottom:16.740000px;}
.y7_c00480{bottom:17.280000px;}
.y44_c00480{bottom:57.240000px;}
.y43_c00480{bottom:169.020000px;}
.y42_c00480{bottom:185.580000px;}
.y41_c00480{bottom:201.600000px;}
.y40_c00480{bottom:215.370000px;}
.y3f_c00480{bottom:232.290000px;}
.y3e_c00480{bottom:249.120000px;}
.y3d_c00480{bottom:266.040000px;}
.y3c_c00480{bottom:282.870000px;}
.y3b_c00480{bottom:299.790000px;}
.y3a_c00480{bottom:320.040000px;}
.y39_c00480{bottom:338.040000px;}
.y38_c00480{bottom:358.290000px;}
.y37_c00480{bottom:379.620000px;}
.y36_c00480{bottom:393.480000px;}
.y35_c00480{bottom:407.250000px;}
.y34_c00480{bottom:421.020000px;}
.y33_c00480{bottom:434.790000px;}
.y32_c00480{bottom:448.650000px;}
.y31_c00480{bottom:461.250000px;}
.y30_c00480{bottom:477.270000px;}
.y2f_c00480{bottom:493.290000px;}
.y2e_c00480{bottom:507.150000px;}
.y2d_c00480{bottom:523.980000px;}
.y2c_c00480{bottom:540.900000px;}
.y2b_c00480{bottom:557.730000px;}
.y2a_c00480{bottom:574.650000px;}
.y29_c00480{bottom:591.480000px;}
.y28_c00480{bottom:611.730000px;}
.y27_c00480{bottom:629.730000px;}
.y26_c00480{bottom:646.650000px;}
.y25_c00480{bottom:666.900000px;}
.y24_c00480{bottom:688.230000px;}
.y23_c00480{bottom:702.090000px;}
.y22_c00480{bottom:715.860000px;}
.y21_c00480{bottom:729.630000px;}
.y20_c00480{bottom:743.490000px;}
.y1f_c00480{bottom:757.260000px;}
.y1c_c00480{bottom:771.030000px;}
.y1b_c00480{bottom:798.660000px;}
.y1a_c00480{bottom:814.680000px;}
.y19_c00480{bottom:831.690000px;}
.y18_c00480{bottom:845.550000px;}
.y17_c00480{bottom:862.380000px;}
.y16_c00480{bottom:879.300000px;}
.y15_c00480{bottom:896.130000px;}
.y14_c00480{bottom:913.050000px;}
.y13_c00480{bottom:929.880000px;}
.y12_c00480{bottom:950.130000px;}
.y11_c00480{bottom:968.130000px;}
.y10_c00480{bottom:985.050000px;}
.yf_c00480{bottom:1005.300000px;}
.ye_c00480{bottom:1026.630000px;}
.yd_c00480{bottom:1040.670000px;}
.yc_c00480{bottom:1054.440000px;}
.yb_c00480{bottom:1068.300000px;}
.y9_c00480{bottom:1082.070000px;}
.y6_c00480{bottom:1095.840000px;}
.y5_c00480{bottom:1131.030000px;}
.y4_c00480{bottom:1150.920000px;}
.y3_c00480{bottom:1166.404500px;}
.y2_c00480{bottom:1181.970000px;}
.y1_c00480{bottom:1197.450000px;}
.h16_c00480{height:12.601500px;}
.h8_c00480{height:13.770000px;}
.ha_c00480{height:13.858500px;}
.h13_c00480{height:13.860000px;}
.hb_c00480{height:14.040000px;}
.h11_c00480{height:14.760000px;}
.h15_c00480{height:16.828500px;}
.hf_c00480{height:16.830000px;}
.h10_c00480{height:16.920000px;}
.he_c00480{height:16.921500px;}
.hd_c00480{height:18.000000px;}
.h14_c00480{height:18.001500px;}
.hc_c00480{height:19.080000px;}
.h12_c00480{height:27.630000px;}
.h5_c00480{height:31.050000px;}
.h9_c00480{height:46.991602px;}
.h7_c00480{height:48.254063px;}
.h3_c00480{height:52.971680px;}
.h2_c00480{height:52.998047px;}
.h6_c00480{height:59.004492px;}
.h4_c00480{height:70.664062px;}
.h0_c00480{height:1262.880000px;}
.h1_c00480{height:1263.000000px;}
.w5_c00480{width:76.680000px;}
.w7_c00480{width:80.370000px;}
.wa_c00480{width:81.450000px;}
.w6_c00480{width:81.451500px;}
.w4_c00480{width:87.120000px;}
.w8_c00480{width:158.131500px;}
.w3_c00480{width:179.100000px;}
.w9_c00480{width:180.270000px;}
.w2_c00480{width:506.970000px;}
.w0_c00480{width:893.070000px;}
.w1_c00480{width:893.250000px;}
.x0_c00480{left:0.000000px;}
.xf_c00480{left:4.050000px;}
.x5_c00480{left:5.220000px;}
.xa_c00480{left:14.670000px;}
.x8_c00480{left:16.560000px;}
.xc_c00480{left:17.730000px;}
.x11_c00480{left:26.460000px;}
.xe_c00480{left:27.900000px;}
.x12_c00480{left:31.230000px;}
.x14_c00480{left:32.940000px;}
.x10_c00480{left:36.900000px;}
.x13_c00480{left:43.200000px;}
.x15_c00480{left:60.930000px;}
.x6_c00480{left:68.310000px;}
.x4_c00480{left:126.450000px;}
.x3_c00480{left:127.620000px;}
.x7_c00480{left:306.720000px;}
.x9_c00480{left:393.840000px;}
.x2_c00480{left:425.160000px;}
.x1_c00480{left:446.580000px;}
.xb_c00480{left:470.520000px;}
.xd_c00480{left:551.970000px;}
.x16_c00480{left:738.540000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls2_c00480{letter-spacing:-0.096000pt;}
.ls3_c00480{letter-spacing:-0.085120pt;}
.ls1_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:0.170240pt;}
.ws1_c00480{word-spacing:-10.810240pt;}
.ws0_c00480{word-spacing:-10.640000pt;}
.ws2_c00480{word-spacing:-10.554880pt;}
.ws7_c00480{word-spacing:-0.255360pt;}
.ws6_c00480{word-spacing:-0.085120pt;}
.ws3_c00480{word-spacing:0.000000pt;}
.ws8_c00480{word-spacing:0.085120pt;}
.ws5_c00480{word-spacing:0.144000pt;}
.ws4_c00480{word-spacing:0.240000pt;}
._1_c00480{margin-left:-0.940800pt;}
._0_c00480{width:1.084800pt;}
._2_c00480{width:752.000000pt;}
.fs3_c00480{font-size:42.560000pt;}
.fs0_c00480{font-size:48.000000pt;}
.fs2_c00480{font-size:53.440000pt;}
.fs1_c00480{font-size:64.000000pt;}
.y1e_c00480{bottom:-9.680000pt;}
.y0_c00480{bottom:0.000000pt;}
.ya_c00480{bottom:2.560000pt;}
.y8_c00480{bottom:2.640000pt;}
.y1d_c00480{bottom:14.880000pt;}
.y7_c00480{bottom:15.360000pt;}
.y44_c00480{bottom:50.880000pt;}
.y43_c00480{bottom:150.240000pt;}
.y42_c00480{bottom:164.960000pt;}
.y41_c00480{bottom:179.200000pt;}
.y40_c00480{bottom:191.440000pt;}
.y3f_c00480{bottom:206.480000pt;}
.y3e_c00480{bottom:221.440000pt;}
.y3d_c00480{bottom:236.480000pt;}
.y3c_c00480{bottom:251.440000pt;}
.y3b_c00480{bottom:266.480000pt;}
.y3a_c00480{bottom:284.480000pt;}
.y39_c00480{bottom:300.480000pt;}
.y38_c00480{bottom:318.480000pt;}
.y37_c00480{bottom:337.440000pt;}
.y36_c00480{bottom:349.760000pt;}
.y35_c00480{bottom:362.000000pt;}
.y34_c00480{bottom:374.240000pt;}
.y33_c00480{bottom:386.480000pt;}
.y32_c00480{bottom:398.800000pt;}
.y31_c00480{bottom:410.000000pt;}
.y30_c00480{bottom:424.240000pt;}
.y2f_c00480{bottom:438.480000pt;}
.y2e_c00480{bottom:450.800000pt;}
.y2d_c00480{bottom:465.760000pt;}
.y2c_c00480{bottom:480.800000pt;}
.y2b_c00480{bottom:495.760000pt;}
.y2a_c00480{bottom:510.800000pt;}
.y29_c00480{bottom:525.760000pt;}
.y28_c00480{bottom:543.760000pt;}
.y27_c00480{bottom:559.760000pt;}
.y26_c00480{bottom:574.800000pt;}
.y25_c00480{bottom:592.800000pt;}
.y24_c00480{bottom:611.760000pt;}
.y23_c00480{bottom:624.080000pt;}
.y22_c00480{bottom:636.320000pt;}
.y21_c00480{bottom:648.560000pt;}
.y20_c00480{bottom:660.880000pt;}
.y1f_c00480{bottom:673.120000pt;}
.y1c_c00480{bottom:685.360000pt;}
.y1b_c00480{bottom:709.920000pt;}
.y1a_c00480{bottom:724.160000pt;}
.y19_c00480{bottom:739.280000pt;}
.y18_c00480{bottom:751.600000pt;}
.y17_c00480{bottom:766.560000pt;}
.y16_c00480{bottom:781.600000pt;}
.y15_c00480{bottom:796.560000pt;}
.y14_c00480{bottom:811.600000pt;}
.y13_c00480{bottom:826.560000pt;}
.y12_c00480{bottom:844.560000pt;}
.y11_c00480{bottom:860.560000pt;}
.y10_c00480{bottom:875.600000pt;}
.yf_c00480{bottom:893.600000pt;}
.ye_c00480{bottom:912.560000pt;}
.yd_c00480{bottom:925.040000pt;}
.yc_c00480{bottom:937.280000pt;}
.yb_c00480{bottom:949.600000pt;}
.y9_c00480{bottom:961.840000pt;}
.y6_c00480{bottom:974.080000pt;}
.y5_c00480{bottom:1005.360000pt;}
.y4_c00480{bottom:1023.040000pt;}
.y3_c00480{bottom:1036.804000pt;}
.y2_c00480{bottom:1050.640000pt;}
.y1_c00480{bottom:1064.400000pt;}
.h16_c00480{height:11.201333pt;}
.h8_c00480{height:12.240000pt;}
.ha_c00480{height:12.318667pt;}
.h13_c00480{height:12.320000pt;}
.hb_c00480{height:12.480000pt;}
.h11_c00480{height:13.120000pt;}
.h15_c00480{height:14.958667pt;}
.hf_c00480{height:14.960000pt;}
.h10_c00480{height:15.040000pt;}
.he_c00480{height:15.041333pt;}
.hd_c00480{height:16.000000pt;}
.h14_c00480{height:16.001333pt;}
.hc_c00480{height:16.960000pt;}
.h12_c00480{height:24.560000pt;}
.h5_c00480{height:27.600000pt;}
.h9_c00480{height:41.770312pt;}
.h7_c00480{height:42.892500pt;}
.h3_c00480{height:47.085938pt;}
.h2_c00480{height:47.109375pt;}
.h6_c00480{height:52.448437pt;}
.h4_c00480{height:62.812500pt;}
.h0_c00480{height:1122.560000pt;}
.h1_c00480{height:1122.666667pt;}
.w5_c00480{width:68.160000pt;}
.w7_c00480{width:71.440000pt;}
.wa_c00480{width:72.400000pt;}
.w6_c00480{width:72.401333pt;}
.w4_c00480{width:77.440000pt;}
.w8_c00480{width:140.561333pt;}
.w3_c00480{width:159.200000pt;}
.w9_c00480{width:160.240000pt;}
.w2_c00480{width:450.640000pt;}
.w0_c00480{width:793.840000pt;}
.w1_c00480{width:794.000000pt;}
.x0_c00480{left:0.000000pt;}
.xf_c00480{left:3.600000pt;}
.x5_c00480{left:4.640000pt;}
.xa_c00480{left:13.040000pt;}
.x8_c00480{left:14.720000pt;}
.xc_c00480{left:15.760000pt;}
.x11_c00480{left:23.520000pt;}
.xe_c00480{left:24.800000pt;}
.x12_c00480{left:27.760000pt;}
.x14_c00480{left:29.280000pt;}
.x10_c00480{left:32.800000pt;}
.x13_c00480{left:38.400000pt;}
.x15_c00480{left:54.160000pt;}
.x6_c00480{left:60.720000pt;}
.x4_c00480{left:112.400000pt;}
.x3_c00480{left:113.440000pt;}
.x7_c00480{left:272.640000pt;}
.x9_c00480{left:350.080000pt;}
.x2_c00480{left:377.920000pt;}
.x1_c00480{left:396.960000pt;}
.xb_c00480{left:418.240000pt;}
.xd_c00480{left:490.640000pt;}
.x16_c00480{left:656.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_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_c592d4e7db511c2d6a3342bb.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_3fd6eb1e126d7fa6ccf6969a.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00481{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00481{vertical-align:-61.938000px;}
.v0_c00481{vertical-align:0.000000px;}
.ls3_c00481{letter-spacing:-0.095760px;}
.ls2_c00481{letter-spacing:0.000000px;}
.ls1_c00481{letter-spacing:0.191520px;}
.ls0_c00481{letter-spacing:319.518000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00481{word-spacing:-12.161520px;}
.ws0_c00481{word-spacing:-11.970000px;}
.ws2_c00481{word-spacing:-11.874240px;}
.ws6_c00481{word-spacing:-0.287280px;}
.ws4_c00481{word-spacing:-0.162000px;}
.ws5_c00481{word-spacing:-0.095760px;}
.ws3_c00481{word-spacing:0.000000px;}
.ws7_c00481{word-spacing:0.287280px;}
._1_c00481{margin-left:-1.139544px;}
._0_c00481{width:1.168272px;}
._2_c00481{width:846.000000px;}
.fc1_c00481{color:transparent;}
.fc0_c00481{color:rgb(0,0,0);}
.fs3_c00481{font-size:47.880000px;}
.fs0_c00481{font-size:54.000000px;}
.fs2_c00481{font-size:60.120000px;}
.fs1_c00481{font-size:72.000000px;}
.y1e_c00481{bottom:-10.890000px;}
.y0_c00481{bottom:0.000000px;}
.y9_c00481{bottom:2.880000px;}
.y7_c00481{bottom:2.970000px;}
.y1d_c00481{bottom:16.650000px;}
.y6_c00481{bottom:17.280000px;}
.y44_c00481{bottom:57.240000px;}
.y43_c00481{bottom:176.220000px;}
.y42_c00481{bottom:192.780000px;}
.y41_c00481{bottom:208.800000px;}
.y40_c00481{bottom:224.820000px;}
.y3f_c00481{bottom:238.680000px;}
.y3e_c00481{bottom:255.510000px;}
.y3d_c00481{bottom:272.430000px;}
.y3c_c00481{bottom:289.260000px;}
.y3b_c00481{bottom:306.180000px;}
.y3a_c00481{bottom:323.010000px;}
.y39_c00481{bottom:343.260000px;}
.y38_c00481{bottom:361.260000px;}
.y37_c00481{bottom:378.180000px;}
.y36_c00481{bottom:398.430000px;}
.y35_c00481{bottom:416.250000px;}
.y34_c00481{bottom:430.020000px;}
.y33_c00481{bottom:443.880000px;}
.y32_c00481{bottom:457.650000px;}
.y31_c00481{bottom:471.420000px;}
.y30_c00481{bottom:485.280000px;}
.y2f_c00481{bottom:499.050000px;}
.y2e_c00481{bottom:505.080000px;}
.y2d_c00481{bottom:521.100000px;}
.y2c_c00481{bottom:534.870000px;}
.y2b_c00481{bottom:551.790000px;}
.y2a_c00481{bottom:568.620000px;}
.y29_c00481{bottom:585.540000px;}
.y28_c00481{bottom:602.370000px;}
.y27_c00481{bottom:619.290000px;}
.y26_c00481{bottom:639.540000px;}
.y25_c00481{bottom:657.540000px;}
.y24_c00481{bottom:677.790000px;}
.y23_c00481{bottom:693.810000px;}
.y22_c00481{bottom:707.580000px;}
.y21_c00481{bottom:721.440000px;}
.y20_c00481{bottom:735.210000px;}
.y1f_c00481{bottom:748.980000px;}
.y1c_c00481{bottom:762.840000px;}
.y1b_c00481{bottom:790.380000px;}
.y1a_c00481{bottom:806.490000px;}
.y19_c00481{bottom:820.260000px;}
.y18_c00481{bottom:837.270000px;}
.y17_c00481{bottom:851.040000px;}
.y16_c00481{bottom:867.960000px;}
.y15_c00481{bottom:884.790000px;}
.y14_c00481{bottom:901.710000px;}
.y13_c00481{bottom:918.540000px;}
.y12_c00481{bottom:935.460000px;}
.y11_c00481{bottom:955.710000px;}
.y10_c00481{bottom:973.710000px;}
.yf_c00481{bottom:990.540000px;}
.ye_c00481{bottom:1010.790000px;}
.yd_c00481{bottom:1026.900000px;}
.yc_c00481{bottom:1040.670000px;}
.yb_c00481{bottom:1054.440000px;}
.ya_c00481{bottom:1068.300000px;}
.y8_c00481{bottom:1082.070000px;}
.y5_c00481{bottom:1095.840000px;}
.y4_c00481{bottom:1131.030000px;}
.y3_c00481{bottom:1150.915500px;}
.y2_c00481{bottom:1166.400000px;}
.y1_c00481{bottom:1197.450000px;}
.h12_c00481{height:6.028500px;}
.h7_c00481{height:13.770000px;}
.h9_c00481{height:13.858500px;}
.ha_c00481{height:13.860000px;}
.hf_c00481{height:14.760000px;}
.h13_c00481{height:15.571500px;}
.hc_c00481{height:16.828500px;}
.he_c00481{height:16.830000px;}
.hd_c00481{height:16.920000px;}
.h11_c00481{height:18.000000px;}
.hb_c00481{height:18.001500px;}
.h10_c00481{height:27.540000px;}
.h4_c00481{height:31.050000px;}
.h8_c00481{height:46.991602px;}
.h6_c00481{height:48.254063px;}
.h2_c00481{height:52.998047px;}
.h5_c00481{height:59.004492px;}
.h3_c00481{height:70.664062px;}
.h0_c00481{height:1262.880000px;}
.h1_c00481{height:1263.000000px;}
.w5_c00481{width:76.680000px;}
.w7_c00481{width:80.370000px;}
.wb_c00481{width:81.450000px;}
.w6_c00481{width:81.451500px;}
.w4_c00481{width:87.120000px;}
.w8_c00481{width:158.131500px;}
.w3_c00481{width:179.100000px;}
.wa_c00481{width:180.270000px;}
.w9_c00481{width:245.250000px;}
.w2_c00481{width:506.970000px;}
.w0_c00481{width:893.070000px;}
.w1_c00481{width:893.250000px;}
.x0_c00481{left:0.000000px;}
.xe_c00481{left:4.050000px;}
.x4_c00481{left:5.220000px;}
.x9_c00481{left:14.670000px;}
.x7_c00481{left:16.560000px;}
.xb_c00481{left:17.730000px;}
.x10_c00481{left:26.460000px;}
.xd_c00481{left:27.900000px;}
.x11_c00481{left:31.230000px;}
.x14_c00481{left:33.210000px;}
.xf_c00481{left:36.900000px;}
.x13_c00481{left:38.880000px;}
.x12_c00481{left:43.200000px;}
.x16_c00481{left:49.230000px;}
.x15_c00481{left:56.880000px;}
.x5_c00481{left:68.310000px;}
.x3_c00481{left:126.450000px;}
.x2_c00481{left:127.620000px;}
.x6_c00481{left:306.720000px;}
.x8_c00481{left:393.840000px;}
.x1_c00481{left:446.580000px;}
.xa_c00481{left:470.520000px;}
.xc_c00481{left:551.970000px;}
@media print{
.v1_c00481{vertical-align:-55.056000pt;}
.v0_c00481{vertical-align:0.000000pt;}
.ls3_c00481{letter-spacing:-0.085120pt;}
.ls2_c00481{letter-spacing:0.000000pt;}
.ls1_c00481{letter-spacing:0.170240pt;}
.ls0_c00481{letter-spacing:284.016000pt;}
.ws1_c00481{word-spacing:-10.810240pt;}
.ws0_c00481{word-spacing:-10.640000pt;}
.ws2_c00481{word-spacing:-10.554880pt;}
.ws6_c00481{word-spacing:-0.255360pt;}
.ws4_c00481{word-spacing:-0.144000pt;}
.ws5_c00481{word-spacing:-0.085120pt;}
.ws3_c00481{word-spacing:0.000000pt;}
.ws7_c00481{word-spacing:0.255360pt;}
._1_c00481{margin-left:-1.012928pt;}
._0_c00481{width:1.038464pt;}
._2_c00481{width:752.000000pt;}
.fs3_c00481{font-size:42.560000pt;}
.fs0_c00481{font-size:48.000000pt;}
.fs2_c00481{font-size:53.440000pt;}
.fs1_c00481{font-size:64.000000pt;}
.y1e_c00481{bottom:-9.680000pt;}
.y0_c00481{bottom:0.000000pt;}
.y9_c00481{bottom:2.560000pt;}
.y7_c00481{bottom:2.640000pt;}
.y1d_c00481{bottom:14.800000pt;}
.y6_c00481{bottom:15.360000pt;}
.y44_c00481{bottom:50.880000pt;}
.y43_c00481{bottom:156.640000pt;}
.y42_c00481{bottom:171.360000pt;}
.y41_c00481{bottom:185.600000pt;}
.y40_c00481{bottom:199.840000pt;}
.y3f_c00481{bottom:212.160000pt;}
.y3e_c00481{bottom:227.120000pt;}
.y3d_c00481{bottom:242.160000pt;}
.y3c_c00481{bottom:257.120000pt;}
.y3b_c00481{bottom:272.160000pt;}
.y3a_c00481{bottom:287.120000pt;}
.y39_c00481{bottom:305.120000pt;}
.y38_c00481{bottom:321.120000pt;}
.y37_c00481{bottom:336.160000pt;}
.y36_c00481{bottom:354.160000pt;}
.y35_c00481{bottom:370.000000pt;}
.y34_c00481{bottom:382.240000pt;}
.y33_c00481{bottom:394.560000pt;}
.y32_c00481{bottom:406.800000pt;}
.y31_c00481{bottom:419.040000pt;}
.y30_c00481{bottom:431.360000pt;}
.y2f_c00481{bottom:443.600000pt;}
.y2e_c00481{bottom:448.960000pt;}
.y2d_c00481{bottom:463.200000pt;}
.y2c_c00481{bottom:475.440000pt;}
.y2b_c00481{bottom:490.480000pt;}
.y2a_c00481{bottom:505.440000pt;}
.y29_c00481{bottom:520.480000pt;}
.y28_c00481{bottom:535.440000pt;}
.y27_c00481{bottom:550.480000pt;}
.y26_c00481{bottom:568.480000pt;}
.y25_c00481{bottom:584.480000pt;}
.y24_c00481{bottom:602.480000pt;}
.y23_c00481{bottom:616.720000pt;}
.y22_c00481{bottom:628.960000pt;}
.y21_c00481{bottom:641.280000pt;}
.y20_c00481{bottom:653.520000pt;}
.y1f_c00481{bottom:665.760000pt;}
.y1c_c00481{bottom:678.080000pt;}
.y1b_c00481{bottom:702.560000pt;}
.y1a_c00481{bottom:716.880000pt;}
.y19_c00481{bottom:729.120000pt;}
.y18_c00481{bottom:744.240000pt;}
.y17_c00481{bottom:756.480000pt;}
.y16_c00481{bottom:771.520000pt;}
.y15_c00481{bottom:786.480000pt;}
.y14_c00481{bottom:801.520000pt;}
.y13_c00481{bottom:816.480000pt;}
.y12_c00481{bottom:831.520000pt;}
.y11_c00481{bottom:849.520000pt;}
.y10_c00481{bottom:865.520000pt;}
.yf_c00481{bottom:880.480000pt;}
.ye_c00481{bottom:898.480000pt;}
.yd_c00481{bottom:912.800000pt;}
.yc_c00481{bottom:925.040000pt;}
.yb_c00481{bottom:937.280000pt;}
.ya_c00481{bottom:949.600000pt;}
.y8_c00481{bottom:961.840000pt;}
.y5_c00481{bottom:974.080000pt;}
.y4_c00481{bottom:1005.360000pt;}
.y3_c00481{bottom:1023.036000pt;}
.y2_c00481{bottom:1036.800000pt;}
.y1_c00481{bottom:1064.400000pt;}
.h12_c00481{height:5.358667pt;}
.h7_c00481{height:12.240000pt;}
.h9_c00481{height:12.318667pt;}
.ha_c00481{height:12.320000pt;}
.hf_c00481{height:13.120000pt;}
.h13_c00481{height:13.841333pt;}
.hc_c00481{height:14.958667pt;}
.he_c00481{height:14.960000pt;}
.hd_c00481{height:15.040000pt;}
.h11_c00481{height:16.000000pt;}
.hb_c00481{height:16.001333pt;}
.h10_c00481{height:24.480000pt;}
.h4_c00481{height:27.600000pt;}
.h8_c00481{height:41.770312pt;}
.h6_c00481{height:42.892500pt;}
.h2_c00481{height:47.109375pt;}
.h5_c00481{height:52.448437pt;}
.h3_c00481{height:62.812500pt;}
.h0_c00481{height:1122.560000pt;}
.h1_c00481{height:1122.666667pt;}
.w5_c00481{width:68.160000pt;}
.w7_c00481{width:71.440000pt;}
.wb_c00481{width:72.400000pt;}
.w6_c00481{width:72.401333pt;}
.w4_c00481{width:77.440000pt;}
.w8_c00481{width:140.561333pt;}
.w3_c00481{width:159.200000pt;}
.wa_c00481{width:160.240000pt;}
.w9_c00481{width:218.000000pt;}
.w2_c00481{width:450.640000pt;}
.w0_c00481{width:793.840000pt;}
.w1_c00481{width:794.000000pt;}
.x0_c00481{left:0.000000pt;}
.xe_c00481{left:3.600000pt;}
.x4_c00481{left:4.640000pt;}
.x9_c00481{left:13.040000pt;}
.x7_c00481{left:14.720000pt;}
.xb_c00481{left:15.760000pt;}
.x10_c00481{left:23.520000pt;}
.xd_c00481{left:24.800000pt;}
.x11_c00481{left:27.760000pt;}
.x14_c00481{left:29.520000pt;}
.xf_c00481{left:32.800000pt;}
.x13_c00481{left:34.560000pt;}
.x12_c00481{left:38.400000pt;}
.x16_c00481{left:43.760000pt;}
.x15_c00481{left:50.560000pt;}
.x5_c00481{left:60.720000pt;}
.x3_c00481{left:112.400000pt;}
.x2_c00481{left:113.440000pt;}
.x6_c00481{left:272.640000pt;}
.x8_c00481{left:350.080000pt;}
.x1_c00481{left:396.960000pt;}
.xa_c00481{left:418.240000pt;}
.xc_c00481{left:490.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_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_b0f62d43df35d4313a252db6.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.284180;font-style:normal;font-weight:normal;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_5c2b1562bc05e73934d62781.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls2_c00482{letter-spacing:-0.108000px;}
.ls3_c00482{letter-spacing:-0.095760px;}
.ls1_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:0.191520px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00482{word-spacing:-12.161520px;}
.ws0_c00482{word-spacing:-11.970000px;}
.ws2_c00482{word-spacing:-11.874240px;}
.ws8_c00482{word-spacing:-0.287280px;}
.ws6_c00482{word-spacing:-0.095760px;}
.ws3_c00482{word-spacing:0.000000px;}
.ws5_c00482{word-spacing:0.162000px;}
.ws4_c00482{word-spacing:0.270000px;}
.ws7_c00482{word-spacing:0.287280px;}
._1_c00482{margin-left:-1.058400px;}
._0_c00482{width:1.220400px;}
._2_c00482{width:846.000000px;}
.fc1_c00482{color:transparent;}
.fc0_c00482{color:rgb(0,0,0);}
.fs3_c00482{font-size:47.880000px;}
.fs0_c00482{font-size:54.000000px;}
.fs2_c00482{font-size:60.120000px;}
.fs1_c00482{font-size:72.000000px;}
.y1e_c00482{bottom:-10.890000px;}
.y0_c00482{bottom:0.000000px;}
.ya_c00482{bottom:2.880000px;}
.y8_c00482{bottom:2.970000px;}
.y1d_c00482{bottom:16.740000px;}
.y7_c00482{bottom:17.280000px;}
.y47_c00482{bottom:57.240000px;}
.y46_c00482{bottom:165.960000px;}
.y45_c00482{bottom:182.520000px;}
.y44_c00482{bottom:198.630000px;}
.y43_c00482{bottom:214.650000px;}
.y42_c00482{bottom:228.420000px;}
.y41_c00482{bottom:242.280000px;}
.y40_c00482{bottom:259.110000px;}
.y3f_c00482{bottom:276.030000px;}
.y3e_c00482{bottom:289.800000px;}
.y3d_c00482{bottom:303.570000px;}
.y3c_c00482{bottom:319.680000px;}
.y3b_c00482{bottom:333.450000px;}
.y3a_c00482{bottom:347.220000px;}
.y39_c00482{bottom:363.330000px;}
.y38_c00482{bottom:379.350000px;}
.y37_c00482{bottom:393.120000px;}
.y36_c00482{bottom:406.980000px;}
.y35_c00482{bottom:420.750000px;}
.y34_c00482{bottom:434.520000px;}
.y33_c00482{bottom:448.380000px;}
.y32_c00482{bottom:462.150000px;}
.y31_c00482{bottom:489.780000px;}
.y30_c00482{bottom:505.800000px;}
.y2f_c00482{bottom:521.820000px;}
.y2e_c00482{bottom:535.680000px;}
.y2d_c00482{bottom:552.510000px;}
.y2c_c00482{bottom:569.430000px;}
.y2b_c00482{bottom:586.260000px;}
.y2a_c00482{bottom:603.180000px;}
.y29_c00482{bottom:616.950000px;}
.y28_c00482{bottom:632.970000px;}
.y27_c00482{bottom:646.740000px;}
.y26_c00482{bottom:660.600000px;}
.y25_c00482{bottom:676.620000px;}
.y24_c00482{bottom:692.640000px;}
.y23_c00482{bottom:710.640000px;}
.y22_c00482{bottom:727.560000px;}
.y21_c00482{bottom:744.390000px;}
.y20_c00482{bottom:761.310000px;}
.y1f_c00482{bottom:778.140000px;}
.y1c_c00482{bottom:795.060000px;}
.y1b_c00482{bottom:822.690000px;}
.y1a_c00482{bottom:838.710000px;}
.y19_c00482{bottom:854.730000px;}
.y18_c00482{bottom:868.590000px;}
.y17_c00482{bottom:885.420000px;}
.y16_c00482{bottom:902.340000px;}
.y15_c00482{bottom:919.170000px;}
.y14_c00482{bottom:936.090000px;}
.y13_c00482{bottom:949.860000px;}
.y12_c00482{bottom:965.880000px;}
.y11_c00482{bottom:980.730000px;}
.y10_c00482{bottom:994.590000px;}
.yf_c00482{bottom:1010.610000px;}
.ye_c00482{bottom:1026.630000px;}
.yd_c00482{bottom:1040.670000px;}
.yc_c00482{bottom:1054.440000px;}
.yb_c00482{bottom:1068.300000px;}
.y9_c00482{bottom:1082.070000px;}
.y6_c00482{bottom:1095.840000px;}
.y5_c00482{bottom:1131.030000px;}
.y4_c00482{bottom:1150.920000px;}
.y3_c00482{bottom:1166.404500px;}
.y2_c00482{bottom:1181.970000px;}
.y1_c00482{bottom:1197.450000px;}
.h8_c00482{height:13.770000px;}
.ha_c00482{height:13.858500px;}
.hf_c00482{height:13.860000px;}
.hb_c00482{height:14.040000px;}
.hc_c00482{height:14.850000px;}
.h13_c00482{height:16.828500px;}
.he_c00482{height:16.830000px;}
.hd_c00482{height:16.920000px;}
.h12_c00482{height:16.921500px;}
.h11_c00482{height:18.000000px;}
.h10_c00482{height:27.630000px;}
.h5_c00482{height:31.050000px;}
.h9_c00482{height:46.991602px;}
.h7_c00482{height:48.254063px;}
.h3_c00482{height:52.971680px;}
.h2_c00482{height:52.998047px;}
.h6_c00482{height:59.004492px;}
.h4_c00482{height:70.664062px;}
.h0_c00482{height:1262.880000px;}
.h1_c00482{height:1263.000000px;}
.w5_c00482{width:76.680000px;}
.w7_c00482{width:80.370000px;}
.wa_c00482{width:81.450000px;}
.w6_c00482{width:81.451500px;}
.w4_c00482{width:87.120000px;}
.w8_c00482{width:158.131500px;}
.w3_c00482{width:179.100000px;}
.w9_c00482{width:180.270000px;}
.w2_c00482{width:506.970000px;}
.w0_c00482{width:893.070000px;}
.w1_c00482{width:893.250000px;}
.x0_c00482{left:0.000000px;}
.xf_c00482{left:4.050000px;}
.x5_c00482{left:5.220000px;}
.xa_c00482{left:14.670000px;}
.x8_c00482{left:16.560000px;}
.xc_c00482{left:17.730000px;}
.x11_c00482{left:26.460000px;}
.xe_c00482{left:27.900000px;}
.x13_c00482{left:31.230000px;}
.x15_c00482{left:32.940000px;}
.x10_c00482{left:36.900000px;}
.x17_c00482{left:38.430000px;}
.x12_c00482{left:43.200000px;}
.x14_c00482{left:49.230000px;}
.x16_c00482{left:56.880000px;}
.x18_c00482{left:60.930000px;}
.x6_c00482{left:68.310000px;}
.x4_c00482{left:126.450000px;}
.x3_c00482{left:127.620000px;}
.x7_c00482{left:306.720000px;}
.x9_c00482{left:393.840000px;}
.x2_c00482{left:425.160000px;}
.x1_c00482{left:446.580000px;}
.xb_c00482{left:470.520000px;}
.xd_c00482{left:551.970000px;}
.x19_c00482{left:738.540000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls2_c00482{letter-spacing:-0.096000pt;}
.ls3_c00482{letter-spacing:-0.085120pt;}
.ls1_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:0.170240pt;}
.ws1_c00482{word-spacing:-10.810240pt;}
.ws0_c00482{word-spacing:-10.640000pt;}
.ws2_c00482{word-spacing:-10.554880pt;}
.ws8_c00482{word-spacing:-0.255360pt;}
.ws6_c00482{word-spacing:-0.085120pt;}
.ws3_c00482{word-spacing:0.000000pt;}
.ws5_c00482{word-spacing:0.144000pt;}
.ws4_c00482{word-spacing:0.240000pt;}
.ws7_c00482{word-spacing:0.255360pt;}
._1_c00482{margin-left:-0.940800pt;}
._0_c00482{width:1.084800pt;}
._2_c00482{width:752.000000pt;}
.fs3_c00482{font-size:42.560000pt;}
.fs0_c00482{font-size:48.000000pt;}
.fs2_c00482{font-size:53.440000pt;}
.fs1_c00482{font-size:64.000000pt;}
.y1e_c00482{bottom:-9.680000pt;}
.y0_c00482{bottom:0.000000pt;}
.ya_c00482{bottom:2.560000pt;}
.y8_c00482{bottom:2.640000pt;}
.y1d_c00482{bottom:14.880000pt;}
.y7_c00482{bottom:15.360000pt;}
.y47_c00482{bottom:50.880000pt;}
.y46_c00482{bottom:147.520000pt;}
.y45_c00482{bottom:162.240000pt;}
.y44_c00482{bottom:176.560000pt;}
.y43_c00482{bottom:190.800000pt;}
.y42_c00482{bottom:203.040000pt;}
.y41_c00482{bottom:215.360000pt;}
.y40_c00482{bottom:230.320000pt;}
.y3f_c00482{bottom:245.360000pt;}
.y3e_c00482{bottom:257.600000pt;}
.y3d_c00482{bottom:269.840000pt;}
.y3c_c00482{bottom:284.160000pt;}
.y3b_c00482{bottom:296.400000pt;}
.y3a_c00482{bottom:308.640000pt;}
.y39_c00482{bottom:322.960000pt;}
.y38_c00482{bottom:337.200000pt;}
.y37_c00482{bottom:349.440000pt;}
.y36_c00482{bottom:361.760000pt;}
.y35_c00482{bottom:374.000000pt;}
.y34_c00482{bottom:386.240000pt;}
.y33_c00482{bottom:398.560000pt;}
.y32_c00482{bottom:410.800000pt;}
.y31_c00482{bottom:435.360000pt;}
.y30_c00482{bottom:449.600000pt;}
.y2f_c00482{bottom:463.840000pt;}
.y2e_c00482{bottom:476.160000pt;}
.y2d_c00482{bottom:491.120000pt;}
.y2c_c00482{bottom:506.160000pt;}
.y2b_c00482{bottom:521.120000pt;}
.y2a_c00482{bottom:536.160000pt;}
.y29_c00482{bottom:548.400000pt;}
.y28_c00482{bottom:562.640000pt;}
.y27_c00482{bottom:574.880000pt;}
.y26_c00482{bottom:587.200000pt;}
.y25_c00482{bottom:601.440000pt;}
.y24_c00482{bottom:615.680000pt;}
.y23_c00482{bottom:631.680000pt;}
.y22_c00482{bottom:646.720000pt;}
.y21_c00482{bottom:661.680000pt;}
.y20_c00482{bottom:676.720000pt;}
.y1f_c00482{bottom:691.680000pt;}
.y1c_c00482{bottom:706.720000pt;}
.y1b_c00482{bottom:731.280000pt;}
.y1a_c00482{bottom:745.520000pt;}
.y19_c00482{bottom:759.760000pt;}
.y18_c00482{bottom:772.080000pt;}
.y17_c00482{bottom:787.040000pt;}
.y16_c00482{bottom:802.080000pt;}
.y15_c00482{bottom:817.040000pt;}
.y14_c00482{bottom:832.080000pt;}
.y13_c00482{bottom:844.320000pt;}
.y12_c00482{bottom:858.560000pt;}
.y11_c00482{bottom:871.760000pt;}
.y10_c00482{bottom:884.080000pt;}
.yf_c00482{bottom:898.320000pt;}
.ye_c00482{bottom:912.560000pt;}
.yd_c00482{bottom:925.040000pt;}
.yc_c00482{bottom:937.280000pt;}
.yb_c00482{bottom:949.600000pt;}
.y9_c00482{bottom:961.840000pt;}
.y6_c00482{bottom:974.080000pt;}
.y5_c00482{bottom:1005.360000pt;}
.y4_c00482{bottom:1023.040000pt;}
.y3_c00482{bottom:1036.804000pt;}
.y2_c00482{bottom:1050.640000pt;}
.y1_c00482{bottom:1064.400000pt;}
.h8_c00482{height:12.240000pt;}
.ha_c00482{height:12.318667pt;}
.hf_c00482{height:12.320000pt;}
.hb_c00482{height:12.480000pt;}
.hc_c00482{height:13.200000pt;}
.h13_c00482{height:14.958667pt;}
.he_c00482{height:14.960000pt;}
.hd_c00482{height:15.040000pt;}
.h12_c00482{height:15.041333pt;}
.h11_c00482{height:16.000000pt;}
.h10_c00482{height:24.560000pt;}
.h5_c00482{height:27.600000pt;}
.h9_c00482{height:41.770312pt;}
.h7_c00482{height:42.892500pt;}
.h3_c00482{height:47.085938pt;}
.h2_c00482{height:47.109375pt;}
.h6_c00482{height:52.448437pt;}
.h4_c00482{height:62.812500pt;}
.h0_c00482{height:1122.560000pt;}
.h1_c00482{height:1122.666667pt;}
.w5_c00482{width:68.160000pt;}
.w7_c00482{width:71.440000pt;}
.wa_c00482{width:72.400000pt;}
.w6_c00482{width:72.401333pt;}
.w4_c00482{width:77.440000pt;}
.w8_c00482{width:140.561333pt;}
.w3_c00482{width:159.200000pt;}
.w9_c00482{width:160.240000pt;}
.w2_c00482{width:450.640000pt;}
.w0_c00482{width:793.840000pt;}
.w1_c00482{width:794.000000pt;}
.x0_c00482{left:0.000000pt;}
.xf_c00482{left:3.600000pt;}
.x5_c00482{left:4.640000pt;}
.xa_c00482{left:13.040000pt;}
.x8_c00482{left:14.720000pt;}
.xc_c00482{left:15.760000pt;}
.x11_c00482{left:23.520000pt;}
.xe_c00482{left:24.800000pt;}
.x13_c00482{left:27.760000pt;}
.x15_c00482{left:29.280000pt;}
.x10_c00482{left:32.800000pt;}
.x17_c00482{left:34.160000pt;}
.x12_c00482{left:38.400000pt;}
.x14_c00482{left:43.760000pt;}
.x16_c00482{left:50.560000pt;}
.x18_c00482{left:54.160000pt;}
.x6_c00482{left:60.720000pt;}
.x4_c00482{left:112.400000pt;}
.x3_c00482{left:113.440000pt;}
.x7_c00482{left:272.640000pt;}
.x9_c00482{left:350.080000pt;}
.x2_c00482{left:377.920000pt;}
.x1_c00482{left:396.960000pt;}
.xb_c00482{left:418.240000pt;}
.xd_c00482{left:490.640000pt;}
.x19_c00482{left:656.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_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_ba42006ad342a3997dfdaf8a.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_a39933367329512ca4ed71f5.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00483{vertical-align:-61.938000px;}
.v0_c00483{vertical-align:0.000000px;}
.ls3_c00483{letter-spacing:-0.143640px;}
.ls4_c00483{letter-spacing:-0.095760px;}
.ls2_c00483{letter-spacing:0.000000px;}
.ls1_c00483{letter-spacing:0.191520px;}
.ls0_c00483{letter-spacing:319.518000px;}
.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;}
}
.ws1_c00483{word-spacing:-12.161520px;}
.ws0_c00483{word-spacing:-11.970000px;}
.ws2_c00483{word-spacing:-11.874240px;}
.ws7_c00483{word-spacing:-0.287280px;}
.ws9_c00483{word-spacing:-0.191520px;}
.ws4_c00483{word-spacing:-0.162000px;}
.ws5_c00483{word-spacing:-0.095760px;}
.ws3_c00483{word-spacing:0.000000px;}
.ws6_c00483{word-spacing:0.047880px;}
.ws8_c00483{word-spacing:0.287280px;}
._1_c00483{margin-left:-1.139544px;}
._0_c00483{width:1.168272px;}
._2_c00483{width:846.000000px;}
.fc1_c00483{color:transparent;}
.fc0_c00483{color:rgb(0,0,0);}
.fs3_c00483{font-size:47.880000px;}
.fs0_c00483{font-size:54.000000px;}
.fs2_c00483{font-size:60.120000px;}
.fs1_c00483{font-size:72.000000px;}
.y1a_c00483{bottom:-10.890000px;}
.y0_c00483{bottom:0.000000px;}
.y9_c00483{bottom:2.880000px;}
.y7_c00483{bottom:2.970000px;}
.y19_c00483{bottom:16.650000px;}
.y6_c00483{bottom:17.280000px;}
.y43_c00483{bottom:57.240000px;}
.y42_c00483{bottom:174.690000px;}
.y41_c00483{bottom:191.250000px;}
.y40_c00483{bottom:207.270000px;}
.y3f_c00483{bottom:223.380000px;}
.y3e_c00483{bottom:237.150000px;}
.y3d_c00483{bottom:253.980000px;}
.y3c_c00483{bottom:270.900000px;}
.y3b_c00483{bottom:287.730000px;}
.y3a_c00483{bottom:304.650000px;}
.y39_c00483{bottom:321.480000px;}
.y38_c00483{bottom:341.730000px;}
.y37_c00483{bottom:359.730000px;}
.y36_c00483{bottom:376.650000px;}
.y35_c00483{bottom:396.900000px;}
.y34_c00483{bottom:418.230000px;}
.y33_c00483{bottom:432.090000px;}
.y32_c00483{bottom:445.860000px;}
.y31_c00483{bottom:459.630000px;}
.y30_c00483{bottom:473.490000px;}
.y2f_c00483{bottom:487.260000px;}
.y2e_c00483{bottom:501.030000px;}
.y2d_c00483{bottom:508.680000px;}
.y2c_c00483{bottom:524.790000px;}
.y2b_c00483{bottom:540.810000px;}
.y2a_c00483{bottom:554.580000px;}
.y29_c00483{bottom:571.500000px;}
.y28_c00483{bottom:588.330000px;}
.y27_c00483{bottom:605.250000px;}
.y26_c00483{bottom:622.080000px;}
.y25_c00483{bottom:639.000000px;}
.y24_c00483{bottom:659.250000px;}
.y23_c00483{bottom:677.250000px;}
.y22_c00483{bottom:694.080000px;}
.y21_c00483{bottom:714.330000px;}
.y20_c00483{bottom:735.750000px;}
.y1f_c00483{bottom:749.520000px;}
.y1e_c00483{bottom:763.290000px;}
.y1d_c00483{bottom:777.150000px;}
.y1c_c00483{bottom:790.920000px;}
.y1b_c00483{bottom:804.690000px;}
.y18_c00483{bottom:818.550000px;}
.y17_c00483{bottom:846.090000px;}
.y16_c00483{bottom:862.650000px;}
.y15_c00483{bottom:876.420000px;}
.y14_c00483{bottom:893.250000px;}
.y13_c00483{bottom:910.170000px;}
.y12_c00483{bottom:927.000000px;}
.y11_c00483{bottom:943.920000px;}
.y10_c00483{bottom:960.750000px;}
.yf_c00483{bottom:981.000000px;}
.ye_c00483{bottom:999.000000px;}
.yd_c00483{bottom:1019.250000px;}
.yc_c00483{bottom:1040.670000px;}
.yb_c00483{bottom:1054.440000px;}
.ya_c00483{bottom:1068.300000px;}
.y8_c00483{bottom:1082.070000px;}
.y5_c00483{bottom:1095.840000px;}
.y4_c00483{bottom:1131.030000px;}
.y3_c00483{bottom:1150.915500px;}
.y2_c00483{bottom:1166.400000px;}
.y1_c00483{bottom:1197.450000px;}
.h13_c00483{height:7.650000px;}
.h7_c00483{height:13.770000px;}
.h9_c00483{height:13.858500px;}
.h10_c00483{height:13.860000px;}
.he_c00483{height:14.310000px;}
.h12_c00483{height:16.828500px;}
.hc_c00483{height:16.830000px;}
.hd_c00483{height:16.920000px;}
.h15_c00483{height:16.921500px;}
.hb_c00483{height:18.000000px;}
.h11_c00483{height:18.001500px;}
.h14_c00483{height:19.080000px;}
.ha_c00483{height:19.170000px;}
.hf_c00483{height:27.540000px;}
.h4_c00483{height:31.050000px;}
.h8_c00483{height:46.991602px;}
.h6_c00483{height:48.254063px;}
.h2_c00483{height:52.998047px;}
.h5_c00483{height:59.004492px;}
.h3_c00483{height:70.664062px;}
.h0_c00483{height:1262.880000px;}
.h1_c00483{height:1263.000000px;}
.w5_c00483{width:76.680000px;}
.w7_c00483{width:80.370000px;}
.wa_c00483{width:81.450000px;}
.w6_c00483{width:81.451500px;}
.w4_c00483{width:87.120000px;}
.w8_c00483{width:158.131500px;}
.w3_c00483{width:179.100000px;}
.w9_c00483{width:180.270000px;}
.w2_c00483{width:506.970000px;}
.w0_c00483{width:893.070000px;}
.w1_c00483{width:893.250000px;}
.x0_c00483{left:0.000000px;}
.xe_c00483{left:4.050000px;}
.x4_c00483{left:5.220000px;}
.x9_c00483{left:14.670000px;}
.x7_c00483{left:16.560000px;}
.xb_c00483{left:17.730000px;}
.x10_c00483{left:26.460000px;}
.xd_c00483{left:27.900000px;}
.x13_c00483{left:31.230000px;}
.x12_c00483{left:32.940000px;}
.xf_c00483{left:36.900000px;}
.x15_c00483{left:38.880000px;}
.x11_c00483{left:43.200000px;}
.x14_c00483{left:49.230000px;}
.x16_c00483{left:56.880000px;}
.x17_c00483{left:60.930000px;}
.x5_c00483{left:68.310000px;}
.x3_c00483{left:126.450000px;}
.x2_c00483{left:127.620000px;}
.x6_c00483{left:306.720000px;}
.x8_c00483{left:393.840000px;}
.x1_c00483{left:446.580000px;}
.xa_c00483{left:470.520000px;}
.xc_c00483{left:551.970000px;}
@media print{
.v1_c00483{vertical-align:-55.056000pt;}
.v0_c00483{vertical-align:0.000000pt;}
.ls3_c00483{letter-spacing:-0.127680pt;}
.ls4_c00483{letter-spacing:-0.085120pt;}
.ls2_c00483{letter-spacing:0.000000pt;}
.ls1_c00483{letter-spacing:0.170240pt;}
.ls0_c00483{letter-spacing:284.016000pt;}
.ws1_c00483{word-spacing:-10.810240pt;}
.ws0_c00483{word-spacing:-10.640000pt;}
.ws2_c00483{word-spacing:-10.554880pt;}
.ws7_c00483{word-spacing:-0.255360pt;}
.ws9_c00483{word-spacing:-0.170240pt;}
.ws4_c00483{word-spacing:-0.144000pt;}
.ws5_c00483{word-spacing:-0.085120pt;}
.ws3_c00483{word-spacing:0.000000pt;}
.ws6_c00483{word-spacing:0.042560pt;}
.ws8_c00483{word-spacing:0.255360pt;}
._1_c00483{margin-left:-1.012928pt;}
._0_c00483{width:1.038464pt;}
._2_c00483{width:752.000000pt;}
.fs3_c00483{font-size:42.560000pt;}
.fs0_c00483{font-size:48.000000pt;}
.fs2_c00483{font-size:53.440000pt;}
.fs1_c00483{font-size:64.000000pt;}
.y1a_c00483{bottom:-9.680000pt;}
.y0_c00483{bottom:0.000000pt;}
.y9_c00483{bottom:2.560000pt;}
.y7_c00483{bottom:2.640000pt;}
.y19_c00483{bottom:14.800000pt;}
.y6_c00483{bottom:15.360000pt;}
.y43_c00483{bottom:50.880000pt;}
.y42_c00483{bottom:155.280000pt;}
.y41_c00483{bottom:170.000000pt;}
.y40_c00483{bottom:184.240000pt;}
.y3f_c00483{bottom:198.560000pt;}
.y3e_c00483{bottom:210.800000pt;}
.y3d_c00483{bottom:225.760000pt;}
.y3c_c00483{bottom:240.800000pt;}
.y3b_c00483{bottom:255.760000pt;}
.y3a_c00483{bottom:270.800000pt;}
.y39_c00483{bottom:285.760000pt;}
.y38_c00483{bottom:303.760000pt;}
.y37_c00483{bottom:319.760000pt;}
.y36_c00483{bottom:334.800000pt;}
.y35_c00483{bottom:352.800000pt;}
.y34_c00483{bottom:371.760000pt;}
.y33_c00483{bottom:384.080000pt;}
.y32_c00483{bottom:396.320000pt;}
.y31_c00483{bottom:408.560000pt;}
.y30_c00483{bottom:420.880000pt;}
.y2f_c00483{bottom:433.120000pt;}
.y2e_c00483{bottom:445.360000pt;}
.y2d_c00483{bottom:452.160000pt;}
.y2c_c00483{bottom:466.480000pt;}
.y2b_c00483{bottom:480.720000pt;}
.y2a_c00483{bottom:492.960000pt;}
.y29_c00483{bottom:508.000000pt;}
.y28_c00483{bottom:522.960000pt;}
.y27_c00483{bottom:538.000000pt;}
.y26_c00483{bottom:552.960000pt;}
.y25_c00483{bottom:568.000000pt;}
.y24_c00483{bottom:586.000000pt;}
.y23_c00483{bottom:602.000000pt;}
.y22_c00483{bottom:616.960000pt;}
.y21_c00483{bottom:634.960000pt;}
.y20_c00483{bottom:654.000000pt;}
.y1f_c00483{bottom:666.240000pt;}
.y1e_c00483{bottom:678.480000pt;}
.y1d_c00483{bottom:690.800000pt;}
.y1c_c00483{bottom:703.040000pt;}
.y1b_c00483{bottom:715.280000pt;}
.y18_c00483{bottom:727.600000pt;}
.y17_c00483{bottom:752.080000pt;}
.y16_c00483{bottom:766.800000pt;}
.y15_c00483{bottom:779.040000pt;}
.y14_c00483{bottom:794.000000pt;}
.y13_c00483{bottom:809.040000pt;}
.y12_c00483{bottom:824.000000pt;}
.y11_c00483{bottom:839.040000pt;}
.y10_c00483{bottom:854.000000pt;}
.yf_c00483{bottom:872.000000pt;}
.ye_c00483{bottom:888.000000pt;}
.yd_c00483{bottom:906.000000pt;}
.yc_c00483{bottom:925.040000pt;}
.yb_c00483{bottom:937.280000pt;}
.ya_c00483{bottom:949.600000pt;}
.y8_c00483{bottom:961.840000pt;}
.y5_c00483{bottom:974.080000pt;}
.y4_c00483{bottom:1005.360000pt;}
.y3_c00483{bottom:1023.036000pt;}
.y2_c00483{bottom:1036.800000pt;}
.y1_c00483{bottom:1064.400000pt;}
.h13_c00483{height:6.800000pt;}
.h7_c00483{height:12.240000pt;}
.h9_c00483{height:12.318667pt;}
.h10_c00483{height:12.320000pt;}
.he_c00483{height:12.720000pt;}
.h12_c00483{height:14.958667pt;}
.hc_c00483{height:14.960000pt;}
.hd_c00483{height:15.040000pt;}
.h15_c00483{height:15.041333pt;}
.hb_c00483{height:16.000000pt;}
.h11_c00483{height:16.001333pt;}
.h14_c00483{height:16.960000pt;}
.ha_c00483{height:17.040000pt;}
.hf_c00483{height:24.480000pt;}
.h4_c00483{height:27.600000pt;}
.h8_c00483{height:41.770312pt;}
.h6_c00483{height:42.892500pt;}
.h2_c00483{height:47.109375pt;}
.h5_c00483{height:52.448437pt;}
.h3_c00483{height:62.812500pt;}
.h0_c00483{height:1122.560000pt;}
.h1_c00483{height:1122.666667pt;}
.w5_c00483{width:68.160000pt;}
.w7_c00483{width:71.440000pt;}
.wa_c00483{width:72.400000pt;}
.w6_c00483{width:72.401333pt;}
.w4_c00483{width:77.440000pt;}
.w8_c00483{width:140.561333pt;}
.w3_c00483{width:159.200000pt;}
.w9_c00483{width:160.240000pt;}
.w2_c00483{width:450.640000pt;}
.w0_c00483{width:793.840000pt;}
.w1_c00483{width:794.000000pt;}
.x0_c00483{left:0.000000pt;}
.xe_c00483{left:3.600000pt;}
.x4_c00483{left:4.640000pt;}
.x9_c00483{left:13.040000pt;}
.x7_c00483{left:14.720000pt;}
.xb_c00483{left:15.760000pt;}
.x10_c00483{left:23.520000pt;}
.xd_c00483{left:24.800000pt;}
.x13_c00483{left:27.760000pt;}
.x12_c00483{left:29.280000pt;}
.xf_c00483{left:32.800000pt;}
.x15_c00483{left:34.560000pt;}
.x11_c00483{left:38.400000pt;}
.x14_c00483{left:43.760000pt;}
.x16_c00483{left:50.560000pt;}
.x17_c00483{left:54.160000pt;}
.x5_c00483{left:60.720000pt;}
.x3_c00483{left:112.400000pt;}
.x2_c00483{left:113.440000pt;}
.x6_c00483{left:272.640000pt;}
.x8_c00483{left:350.080000pt;}
.x1_c00483{left:396.960000pt;}
.xa_c00483{left:418.240000pt;}
.xc_c00483{left:490.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_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_c592d4e7db511c2d6a3342bb.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_7f5d350da48ba8479b0269ae.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls2_c00484{letter-spacing:-0.108000px;}
.ls3_c00484{letter-spacing:-0.095760px;}
.ls1_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:0.191520px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00484{word-spacing:-12.161520px;}
.ws0_c00484{word-spacing:-11.970000px;}
.ws2_c00484{word-spacing:-11.874240px;}
.ws7_c00484{word-spacing:-0.287280px;}
.ws8_c00484{word-spacing:-0.191520px;}
.ws6_c00484{word-spacing:-0.095760px;}
.ws3_c00484{word-spacing:0.000000px;}
.ws5_c00484{word-spacing:0.162000px;}
.ws4_c00484{word-spacing:0.270000px;}
._1_c00484{margin-left:-1.058400px;}
._0_c00484{width:1.220400px;}
._2_c00484{width:846.000000px;}
.fc1_c00484{color:transparent;}
.fc0_c00484{color:rgb(0,0,0);}
.fs3_c00484{font-size:47.880000px;}
.fs0_c00484{font-size:54.000000px;}
.fs2_c00484{font-size:60.120000px;}
.fs1_c00484{font-size:72.000000px;}
.y1e_c00484{bottom:-10.890000px;}
.y0_c00484{bottom:0.000000px;}
.ya_c00484{bottom:2.880000px;}
.y8_c00484{bottom:2.970000px;}
.y1d_c00484{bottom:16.650000px;}
.y33_c00484{bottom:16.740000px;}
.y7_c00484{bottom:17.280000px;}
.y48_c00484{bottom:57.240000px;}
.y47_c00484{bottom:166.230000px;}
.y46_c00484{bottom:182.790000px;}
.y45_c00484{bottom:198.810000px;}
.y44_c00484{bottom:214.920000px;}
.y43_c00484{bottom:228.690000px;}
.y42_c00484{bottom:245.520000px;}
.y41_c00484{bottom:262.440000px;}
.y40_c00484{bottom:279.270000px;}
.y3f_c00484{bottom:296.190000px;}
.y3e_c00484{bottom:313.020000px;}
.y3d_c00484{bottom:329.130000px;}
.y3c_c00484{bottom:342.900000px;}
.y3b_c00484{bottom:356.670000px;}
.y3a_c00484{bottom:372.780000px;}
.y39_c00484{bottom:388.800000px;}
.y38_c00484{bottom:402.570000px;}
.y37_c00484{bottom:416.430000px;}
.y36_c00484{bottom:430.200000px;}
.y35_c00484{bottom:443.970000px;}
.y34_c00484{bottom:457.830000px;}
.y32_c00484{bottom:471.600000px;}
.y31_c00484{bottom:499.230000px;}
.y30_c00484{bottom:515.250000px;}
.y2f_c00484{bottom:531.270000px;}
.y2e_c00484{bottom:545.130000px;}
.y2d_c00484{bottom:561.960000px;}
.y2c_c00484{bottom:578.880000px;}
.y2b_c00484{bottom:595.710000px;}
.y2a_c00484{bottom:612.630000px;}
.y29_c00484{bottom:629.460000px;}
.y28_c00484{bottom:645.480000px;}
.y27_c00484{bottom:659.340000px;}
.y26_c00484{bottom:673.110000px;}
.y25_c00484{bottom:689.130000px;}
.y24_c00484{bottom:705.240000px;}
.y23_c00484{bottom:719.010000px;}
.y22_c00484{bottom:732.780000px;}
.y21_c00484{bottom:746.640000px;}
.y20_c00484{bottom:760.410000px;}
.y1f_c00484{bottom:774.180000px;}
.y1c_c00484{bottom:788.040000px;}
.y1b_c00484{bottom:815.580000px;}
.y1a_c00484{bottom:831.690000px;}
.y19_c00484{bottom:847.710000px;}
.y18_c00484{bottom:861.480000px;}
.y17_c00484{bottom:878.400000px;}
.y16_c00484{bottom:895.230000px;}
.y15_c00484{bottom:912.150000px;}
.y14_c00484{bottom:928.980000px;}
.y13_c00484{bottom:945.900000px;}
.y12_c00484{bottom:966.150000px;}
.y11_c00484{bottom:981.000000px;}
.y10_c00484{bottom:994.770000px;}
.yf_c00484{bottom:1010.790000px;}
.ye_c00484{bottom:1026.900000px;}
.yd_c00484{bottom:1040.670000px;}
.yc_c00484{bottom:1054.440000px;}
.yb_c00484{bottom:1068.300000px;}
.y9_c00484{bottom:1082.070000px;}
.y6_c00484{bottom:1095.840000px;}
.y5_c00484{bottom:1131.030000px;}
.y4_c00484{bottom:1150.920000px;}
.y3_c00484{bottom:1166.404500px;}
.y2_c00484{bottom:1181.970000px;}
.y1_c00484{bottom:1197.450000px;}
.h8_c00484{height:13.770000px;}
.ha_c00484{height:13.858500px;}
.hb_c00484{height:13.860000px;}
.hc_c00484{height:14.850000px;}
.hf_c00484{height:16.828500px;}
.h11_c00484{height:16.830000px;}
.h12_c00484{height:16.920000px;}
.he_c00484{height:16.921500px;}
.hd_c00484{height:18.000000px;}
.h10_c00484{height:27.540000px;}
.h13_c00484{height:27.630000px;}
.h5_c00484{height:31.050000px;}
.h9_c00484{height:46.991602px;}
.h7_c00484{height:48.254063px;}
.h3_c00484{height:52.971680px;}
.h2_c00484{height:52.998047px;}
.h6_c00484{height:59.004492px;}
.h4_c00484{height:70.664062px;}
.h0_c00484{height:1262.880000px;}
.h1_c00484{height:1263.000000px;}
.w5_c00484{width:76.680000px;}
.w7_c00484{width:80.370000px;}
.wa_c00484{width:81.450000px;}
.w6_c00484{width:81.451500px;}
.w4_c00484{width:87.120000px;}
.w8_c00484{width:158.131500px;}
.w3_c00484{width:179.100000px;}
.w9_c00484{width:180.270000px;}
.w2_c00484{width:506.970000px;}
.w0_c00484{width:893.070000px;}
.w1_c00484{width:893.250000px;}
.x0_c00484{left:0.000000px;}
.xf_c00484{left:4.050000px;}
.x5_c00484{left:5.220000px;}
.xa_c00484{left:14.670000px;}
.x8_c00484{left:16.560000px;}
.xc_c00484{left:17.730000px;}
.x11_c00484{left:26.460000px;}
.xe_c00484{left:27.900000px;}
.x14_c00484{left:31.230000px;}
.x13_c00484{left:32.940000px;}
.x10_c00484{left:36.900000px;}
.x16_c00484{left:38.880000px;}
.x12_c00484{left:43.200000px;}
.x18_c00484{left:48.870000px;}
.x19_c00484{left:56.880000px;}
.x15_c00484{left:60.930000px;}
.x17_c00484{left:62.910000px;}
.x6_c00484{left:68.310000px;}
.x4_c00484{left:126.450000px;}
.x3_c00484{left:127.620000px;}
.x7_c00484{left:306.720000px;}
.x9_c00484{left:393.840000px;}
.x2_c00484{left:425.160000px;}
.x1_c00484{left:446.580000px;}
.xb_c00484{left:470.520000px;}
.xd_c00484{left:551.970000px;}
.x1a_c00484{left:738.540000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls2_c00484{letter-spacing:-0.096000pt;}
.ls3_c00484{letter-spacing:-0.085120pt;}
.ls1_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:0.170240pt;}
.ws1_c00484{word-spacing:-10.810240pt;}
.ws0_c00484{word-spacing:-10.640000pt;}
.ws2_c00484{word-spacing:-10.554880pt;}
.ws7_c00484{word-spacing:-0.255360pt;}
.ws8_c00484{word-spacing:-0.170240pt;}
.ws6_c00484{word-spacing:-0.085120pt;}
.ws3_c00484{word-spacing:0.000000pt;}
.ws5_c00484{word-spacing:0.144000pt;}
.ws4_c00484{word-spacing:0.240000pt;}
._1_c00484{margin-left:-0.940800pt;}
._0_c00484{width:1.084800pt;}
._2_c00484{width:752.000000pt;}
.fs3_c00484{font-size:42.560000pt;}
.fs0_c00484{font-size:48.000000pt;}
.fs2_c00484{font-size:53.440000pt;}
.fs1_c00484{font-size:64.000000pt;}
.y1e_c00484{bottom:-9.680000pt;}
.y0_c00484{bottom:0.000000pt;}
.ya_c00484{bottom:2.560000pt;}
.y8_c00484{bottom:2.640000pt;}
.y1d_c00484{bottom:14.800000pt;}
.y33_c00484{bottom:14.880000pt;}
.y7_c00484{bottom:15.360000pt;}
.y48_c00484{bottom:50.880000pt;}
.y47_c00484{bottom:147.760000pt;}
.y46_c00484{bottom:162.480000pt;}
.y45_c00484{bottom:176.720000pt;}
.y44_c00484{bottom:191.040000pt;}
.y43_c00484{bottom:203.280000pt;}
.y42_c00484{bottom:218.240000pt;}
.y41_c00484{bottom:233.280000pt;}
.y40_c00484{bottom:248.240000pt;}
.y3f_c00484{bottom:263.280000pt;}
.y3e_c00484{bottom:278.240000pt;}
.y3d_c00484{bottom:292.560000pt;}
.y3c_c00484{bottom:304.800000pt;}
.y3b_c00484{bottom:317.040000pt;}
.y3a_c00484{bottom:331.360000pt;}
.y39_c00484{bottom:345.600000pt;}
.y38_c00484{bottom:357.840000pt;}
.y37_c00484{bottom:370.160000pt;}
.y36_c00484{bottom:382.400000pt;}
.y35_c00484{bottom:394.640000pt;}
.y34_c00484{bottom:406.960000pt;}
.y32_c00484{bottom:419.200000pt;}
.y31_c00484{bottom:443.760000pt;}
.y30_c00484{bottom:458.000000pt;}
.y2f_c00484{bottom:472.240000pt;}
.y2e_c00484{bottom:484.560000pt;}
.y2d_c00484{bottom:499.520000pt;}
.y2c_c00484{bottom:514.560000pt;}
.y2b_c00484{bottom:529.520000pt;}
.y2a_c00484{bottom:544.560000pt;}
.y29_c00484{bottom:559.520000pt;}
.y28_c00484{bottom:573.760000pt;}
.y27_c00484{bottom:586.080000pt;}
.y26_c00484{bottom:598.320000pt;}
.y25_c00484{bottom:612.560000pt;}
.y24_c00484{bottom:626.880000pt;}
.y23_c00484{bottom:639.120000pt;}
.y22_c00484{bottom:651.360000pt;}
.y21_c00484{bottom:663.680000pt;}
.y20_c00484{bottom:675.920000pt;}
.y1f_c00484{bottom:688.160000pt;}
.y1c_c00484{bottom:700.480000pt;}
.y1b_c00484{bottom:724.960000pt;}
.y1a_c00484{bottom:739.280000pt;}
.y19_c00484{bottom:753.520000pt;}
.y18_c00484{bottom:765.760000pt;}
.y17_c00484{bottom:780.800000pt;}
.y16_c00484{bottom:795.760000pt;}
.y15_c00484{bottom:810.800000pt;}
.y14_c00484{bottom:825.760000pt;}
.y13_c00484{bottom:840.800000pt;}
.y12_c00484{bottom:858.800000pt;}
.y11_c00484{bottom:872.000000pt;}
.y10_c00484{bottom:884.240000pt;}
.yf_c00484{bottom:898.480000pt;}
.ye_c00484{bottom:912.800000pt;}
.yd_c00484{bottom:925.040000pt;}
.yc_c00484{bottom:937.280000pt;}
.yb_c00484{bottom:949.600000pt;}
.y9_c00484{bottom:961.840000pt;}
.y6_c00484{bottom:974.080000pt;}
.y5_c00484{bottom:1005.360000pt;}
.y4_c00484{bottom:1023.040000pt;}
.y3_c00484{bottom:1036.804000pt;}
.y2_c00484{bottom:1050.640000pt;}
.y1_c00484{bottom:1064.400000pt;}
.h8_c00484{height:12.240000pt;}
.ha_c00484{height:12.318667pt;}
.hb_c00484{height:12.320000pt;}
.hc_c00484{height:13.200000pt;}
.hf_c00484{height:14.958667pt;}
.h11_c00484{height:14.960000pt;}
.h12_c00484{height:15.040000pt;}
.he_c00484{height:15.041333pt;}
.hd_c00484{height:16.000000pt;}
.h10_c00484{height:24.480000pt;}
.h13_c00484{height:24.560000pt;}
.h5_c00484{height:27.600000pt;}
.h9_c00484{height:41.770312pt;}
.h7_c00484{height:42.892500pt;}
.h3_c00484{height:47.085938pt;}
.h2_c00484{height:47.109375pt;}
.h6_c00484{height:52.448437pt;}
.h4_c00484{height:62.812500pt;}
.h0_c00484{height:1122.560000pt;}
.h1_c00484{height:1122.666667pt;}
.w5_c00484{width:68.160000pt;}
.w7_c00484{width:71.440000pt;}
.wa_c00484{width:72.400000pt;}
.w6_c00484{width:72.401333pt;}
.w4_c00484{width:77.440000pt;}
.w8_c00484{width:140.561333pt;}
.w3_c00484{width:159.200000pt;}
.w9_c00484{width:160.240000pt;}
.w2_c00484{width:450.640000pt;}
.w0_c00484{width:793.840000pt;}
.w1_c00484{width:794.000000pt;}
.x0_c00484{left:0.000000pt;}
.xf_c00484{left:3.600000pt;}
.x5_c00484{left:4.640000pt;}
.xa_c00484{left:13.040000pt;}
.x8_c00484{left:14.720000pt;}
.xc_c00484{left:15.760000pt;}
.x11_c00484{left:23.520000pt;}
.xe_c00484{left:24.800000pt;}
.x14_c00484{left:27.760000pt;}
.x13_c00484{left:29.280000pt;}
.x10_c00484{left:32.800000pt;}
.x16_c00484{left:34.560000pt;}
.x12_c00484{left:38.400000pt;}
.x18_c00484{left:43.440000pt;}
.x19_c00484{left:50.560000pt;}
.x15_c00484{left:54.160000pt;}
.x17_c00484{left:55.920000pt;}
.x6_c00484{left:60.720000pt;}
.x4_c00484{left:112.400000pt;}
.x3_c00484{left:113.440000pt;}
.x7_c00484{left:272.640000pt;}
.x9_c00484{left:350.080000pt;}
.x2_c00484{left:377.920000pt;}
.x1_c00484{left:396.960000pt;}
.xb_c00484{left:418.240000pt;}
.xd_c00484{left:490.640000pt;}
.x1a_c00484{left:656.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_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_22bf8d630aff23c620803e4c.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_98aa29a0c8d97b28e1c73464.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00485{vertical-align:-61.938000px;}
.v0_c00485{vertical-align:0.000000px;}
.ls4_c00485{letter-spacing:-0.095760px;}
.ls2_c00485{letter-spacing:0.000000px;}
.ls3_c00485{letter-spacing:0.095760px;}
.ls1_c00485{letter-spacing:0.191520px;}
.ls0_c00485{letter-spacing:319.518000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00485{word-spacing:-12.161520px;}
.ws0_c00485{word-spacing:-11.970000px;}
.ws2_c00485{word-spacing:-11.874240px;}
.ws7_c00485{word-spacing:-0.287280px;}
.ws6_c00485{word-spacing:-0.191520px;}
.ws4_c00485{word-spacing:-0.162000px;}
.ws5_c00485{word-spacing:-0.095760px;}
.ws3_c00485{word-spacing:0.000000px;}
.ws8_c00485{word-spacing:0.287280px;}
._1_c00485{margin-left:-1.139544px;}
._0_c00485{width:1.168272px;}
._2_c00485{width:846.000000px;}
.fc1_c00485{color:transparent;}
.fc0_c00485{color:rgb(0,0,0);}
.fs3_c00485{font-size:47.880000px;}
.fs0_c00485{font-size:54.000000px;}
.fs2_c00485{font-size:60.120000px;}
.fs1_c00485{font-size:72.000000px;}
.y1d_c00485{bottom:-10.890000px;}
.y0_c00485{bottom:0.000000px;}
.y8_c00485{bottom:2.880000px;}
.yb_c00485{bottom:2.970000px;}
.y1c_c00485{bottom:16.740000px;}
.y6_c00485{bottom:31.050000px;}
.y46_c00485{bottom:57.240000px;}
.y45_c00485{bottom:167.040000px;}
.y44_c00485{bottom:183.600000px;}
.y43_c00485{bottom:199.620000px;}
.y42_c00485{bottom:215.730000px;}
.y41_c00485{bottom:229.500000px;}
.y40_c00485{bottom:246.420000px;}
.y3f_c00485{bottom:263.250000px;}
.y3e_c00485{bottom:280.170000px;}
.y3d_c00485{bottom:297.000000px;}
.y3c_c00485{bottom:313.920000px;}
.y3b_c00485{bottom:329.940000px;}
.y3a_c00485{bottom:343.710000px;}
.y39_c00485{bottom:357.570000px;}
.y38_c00485{bottom:377.010000px;}
.y37_c00485{bottom:393.120000px;}
.y36_c00485{bottom:406.890000px;}
.y35_c00485{bottom:420.660000px;}
.y34_c00485{bottom:434.520000px;}
.y33_c00485{bottom:448.290000px;}
.y32_c00485{bottom:462.060000px;}
.y31_c00485{bottom:475.830000px;}
.y30_c00485{bottom:503.460000px;}
.y2f_c00485{bottom:519.480000px;}
.y2e_c00485{bottom:535.590000px;}
.y2d_c00485{bottom:549.360000px;}
.y2c_c00485{bottom:566.280000px;}
.y2b_c00485{bottom:583.110000px;}
.y2a_c00485{bottom:600.030000px;}
.y29_c00485{bottom:616.860000px;}
.y28_c00485{bottom:633.780000px;}
.y27_c00485{bottom:649.800000px;}
.y26_c00485{bottom:663.570000px;}
.y25_c00485{bottom:677.430000px;}
.y24_c00485{bottom:693.450000px;}
.y23_c00485{bottom:709.470000px;}
.y22_c00485{bottom:723.330000px;}
.y21_c00485{bottom:737.100000px;}
.y20_c00485{bottom:750.870000px;}
.y1f_c00485{bottom:764.640000px;}
.y1e_c00485{bottom:778.500000px;}
.y1b_c00485{bottom:792.270000px;}
.y1a_c00485{bottom:819.900000px;}
.y19_c00485{bottom:835.920000px;}
.y18_c00485{bottom:852.930000px;}
.y17_c00485{bottom:866.790000px;}
.y16_c00485{bottom:883.620000px;}
.y15_c00485{bottom:900.540000px;}
.y14_c00485{bottom:917.370000px;}
.y13_c00485{bottom:934.290000px;}
.y12_c00485{bottom:951.120000px;}
.y11_c00485{bottom:967.140000px;}
.y10_c00485{bottom:981.000000px;}
.yf_c00485{bottom:994.770000px;}
.ye_c00485{bottom:1010.790000px;}
.yd_c00485{bottom:1026.900000px;}
.yc_c00485{bottom:1040.670000px;}
.ya_c00485{bottom:1054.440000px;}
.y9_c00485{bottom:1068.300000px;}
.y5_c00485{bottom:1082.070000px;}
.y7_c00485{bottom:1098.810000px;}
.y4_c00485{bottom:1131.030000px;}
.y3_c00485{bottom:1150.915500px;}
.y2_c00485{bottom:1166.400000px;}
.y1_c00485{bottom:1197.450000px;}
.h8_c00485{height:13.770000px;}
.h9_c00485{height:13.858500px;}
.ha_c00485{height:13.860000px;}
.hd_c00485{height:14.760000px;}
.hb_c00485{height:16.828500px;}
.h11_c00485{height:16.830000px;}
.h10_c00485{height:16.920000px;}
.hc_c00485{height:16.921500px;}
.hf_c00485{height:17.190000px;}
.he_c00485{height:27.628500px;}
.h4_c00485{height:44.820000px;}
.h7_c00485{height:46.991602px;}
.h6_c00485{height:48.254063px;}
.h2_c00485{height:52.998047px;}
.h5_c00485{height:59.004492px;}
.h3_c00485{height:70.664062px;}
.h0_c00485{height:1262.880000px;}
.h1_c00485{height:1263.000000px;}
.w5_c00485{width:76.680000px;}
.w7_c00485{width:80.370000px;}
.wa_c00485{width:81.450000px;}
.w6_c00485{width:81.451500px;}
.w4_c00485{width:87.120000px;}
.w8_c00485{width:158.131500px;}
.w3_c00485{width:179.100000px;}
.w9_c00485{width:180.270000px;}
.w2_c00485{width:506.970000px;}
.w0_c00485{width:893.070000px;}
.w1_c00485{width:893.250000px;}
.x0_c00485{left:0.000000px;}
.xf_c00485{left:4.050000px;}
.x4_c00485{left:5.220000px;}
.xa_c00485{left:14.670000px;}
.x8_c00485{left:16.560000px;}
.xc_c00485{left:17.730000px;}
.x11_c00485{left:26.460000px;}
.xe_c00485{left:27.900000px;}
.x12_c00485{left:31.230000px;}
.x14_c00485{left:32.940000px;}
.x10_c00485{left:36.900000px;}
.x13_c00485{left:43.200000px;}
.x16_c00485{left:49.230000px;}
.x17_c00485{left:56.880000px;}
.x15_c00485{left:60.930000px;}
.x6_c00485{left:68.310000px;}
.x3_c00485{left:126.450000px;}
.x2_c00485{left:127.620000px;}
.x5_c00485{left:131.670000px;}
.x7_c00485{left:306.720000px;}
.x9_c00485{left:393.840000px;}
.x1_c00485{left:446.580000px;}
.xb_c00485{left:470.520000px;}
.xd_c00485{left:551.970000px;}
@media print{
.v1_c00485{vertical-align:-55.056000pt;}
.v0_c00485{vertical-align:0.000000pt;}
.ls4_c00485{letter-spacing:-0.085120pt;}
.ls2_c00485{letter-spacing:0.000000pt;}
.ls3_c00485{letter-spacing:0.085120pt;}
.ls1_c00485{letter-spacing:0.170240pt;}
.ls0_c00485{letter-spacing:284.016000pt;}
.ws1_c00485{word-spacing:-10.810240pt;}
.ws0_c00485{word-spacing:-10.640000pt;}
.ws2_c00485{word-spacing:-10.554880pt;}
.ws7_c00485{word-spacing:-0.255360pt;}
.ws6_c00485{word-spacing:-0.170240pt;}
.ws4_c00485{word-spacing:-0.144000pt;}
.ws5_c00485{word-spacing:-0.085120pt;}
.ws3_c00485{word-spacing:0.000000pt;}
.ws8_c00485{word-spacing:0.255360pt;}
._1_c00485{margin-left:-1.012928pt;}
._0_c00485{width:1.038464pt;}
._2_c00485{width:752.000000pt;}
.fs3_c00485{font-size:42.560000pt;}
.fs0_c00485{font-size:48.000000pt;}
.fs2_c00485{font-size:53.440000pt;}
.fs1_c00485{font-size:64.000000pt;}
.y1d_c00485{bottom:-9.680000pt;}
.y0_c00485{bottom:0.000000pt;}
.y8_c00485{bottom:2.560000pt;}
.yb_c00485{bottom:2.640000pt;}
.y1c_c00485{bottom:14.880000pt;}
.y6_c00485{bottom:27.600000pt;}
.y46_c00485{bottom:50.880000pt;}
.y45_c00485{bottom:148.480000pt;}
.y44_c00485{bottom:163.200000pt;}
.y43_c00485{bottom:177.440000pt;}
.y42_c00485{bottom:191.760000pt;}
.y41_c00485{bottom:204.000000pt;}
.y40_c00485{bottom:219.040000pt;}
.y3f_c00485{bottom:234.000000pt;}
.y3e_c00485{bottom:249.040000pt;}
.y3d_c00485{bottom:264.000000pt;}
.y3c_c00485{bottom:279.040000pt;}
.y3b_c00485{bottom:293.280000pt;}
.y3a_c00485{bottom:305.520000pt;}
.y39_c00485{bottom:317.840000pt;}
.y38_c00485{bottom:335.120000pt;}
.y37_c00485{bottom:349.440000pt;}
.y36_c00485{bottom:361.680000pt;}
.y35_c00485{bottom:373.920000pt;}
.y34_c00485{bottom:386.240000pt;}
.y33_c00485{bottom:398.480000pt;}
.y32_c00485{bottom:410.720000pt;}
.y31_c00485{bottom:422.960000pt;}
.y30_c00485{bottom:447.520000pt;}
.y2f_c00485{bottom:461.760000pt;}
.y2e_c00485{bottom:476.080000pt;}
.y2d_c00485{bottom:488.320000pt;}
.y2c_c00485{bottom:503.360000pt;}
.y2b_c00485{bottom:518.320000pt;}
.y2a_c00485{bottom:533.360000pt;}
.y29_c00485{bottom:548.320000pt;}
.y28_c00485{bottom:563.360000pt;}
.y27_c00485{bottom:577.600000pt;}
.y26_c00485{bottom:589.840000pt;}
.y25_c00485{bottom:602.160000pt;}
.y24_c00485{bottom:616.400000pt;}
.y23_c00485{bottom:630.640000pt;}
.y22_c00485{bottom:642.960000pt;}
.y21_c00485{bottom:655.200000pt;}
.y20_c00485{bottom:667.440000pt;}
.y1f_c00485{bottom:679.680000pt;}
.y1e_c00485{bottom:692.000000pt;}
.y1b_c00485{bottom:704.240000pt;}
.y1a_c00485{bottom:728.800000pt;}
.y19_c00485{bottom:743.040000pt;}
.y18_c00485{bottom:758.160000pt;}
.y17_c00485{bottom:770.480000pt;}
.y16_c00485{bottom:785.440000pt;}
.y15_c00485{bottom:800.480000pt;}
.y14_c00485{bottom:815.440000pt;}
.y13_c00485{bottom:830.480000pt;}
.y12_c00485{bottom:845.440000pt;}
.y11_c00485{bottom:859.680000pt;}
.y10_c00485{bottom:872.000000pt;}
.yf_c00485{bottom:884.240000pt;}
.ye_c00485{bottom:898.480000pt;}
.yd_c00485{bottom:912.800000pt;}
.yc_c00485{bottom:925.040000pt;}
.ya_c00485{bottom:937.280000pt;}
.y9_c00485{bottom:949.600000pt;}
.y5_c00485{bottom:961.840000pt;}
.y7_c00485{bottom:976.720000pt;}
.y4_c00485{bottom:1005.360000pt;}
.y3_c00485{bottom:1023.036000pt;}
.y2_c00485{bottom:1036.800000pt;}
.y1_c00485{bottom:1064.400000pt;}
.h8_c00485{height:12.240000pt;}
.h9_c00485{height:12.318667pt;}
.ha_c00485{height:12.320000pt;}
.hd_c00485{height:13.120000pt;}
.hb_c00485{height:14.958667pt;}
.h11_c00485{height:14.960000pt;}
.h10_c00485{height:15.040000pt;}
.hc_c00485{height:15.041333pt;}
.hf_c00485{height:15.280000pt;}
.he_c00485{height:24.558667pt;}
.h4_c00485{height:39.840000pt;}
.h7_c00485{height:41.770312pt;}
.h6_c00485{height:42.892500pt;}
.h2_c00485{height:47.109375pt;}
.h5_c00485{height:52.448437pt;}
.h3_c00485{height:62.812500pt;}
.h0_c00485{height:1122.560000pt;}
.h1_c00485{height:1122.666667pt;}
.w5_c00485{width:68.160000pt;}
.w7_c00485{width:71.440000pt;}
.wa_c00485{width:72.400000pt;}
.w6_c00485{width:72.401333pt;}
.w4_c00485{width:77.440000pt;}
.w8_c00485{width:140.561333pt;}
.w3_c00485{width:159.200000pt;}
.w9_c00485{width:160.240000pt;}
.w2_c00485{width:450.640000pt;}
.w0_c00485{width:793.840000pt;}
.w1_c00485{width:794.000000pt;}
.x0_c00485{left:0.000000pt;}
.xf_c00485{left:3.600000pt;}
.x4_c00485{left:4.640000pt;}
.xa_c00485{left:13.040000pt;}
.x8_c00485{left:14.720000pt;}
.xc_c00485{left:15.760000pt;}
.x11_c00485{left:23.520000pt;}
.xe_c00485{left:24.800000pt;}
.x12_c00485{left:27.760000pt;}
.x14_c00485{left:29.280000pt;}
.x10_c00485{left:32.800000pt;}
.x13_c00485{left:38.400000pt;}
.x16_c00485{left:43.760000pt;}
.x17_c00485{left:50.560000pt;}
.x15_c00485{left:54.160000pt;}
.x6_c00485{left:60.720000pt;}
.x3_c00485{left:112.400000pt;}
.x2_c00485{left:113.440000pt;}
.x5_c00485{left:117.040000pt;}
.x7_c00485{left:272.640000pt;}
.x9_c00485{left:350.080000pt;}
.x1_c00485{left:396.960000pt;}
.xb_c00485{left:418.240000pt;}
.xd_c00485{left:490.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_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_b0f62d43df35d4313a252db6.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.284668;font-style:normal;font-weight:normal;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_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_6fa296a7930e8d23729b8a69.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls2_c00486{letter-spacing:-0.108000px;}
.ls3_c00486{letter-spacing:-0.095760px;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:0.191520px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00486{word-spacing:-12.161520px;}
.ws0_c00486{word-spacing:-11.970000px;}
.ws2_c00486{word-spacing:-11.874240px;}
.ws8_c00486{word-spacing:-0.287280px;}
.ws6_c00486{word-spacing:-0.095760px;}
.ws3_c00486{word-spacing:0.000000px;}
.ws5_c00486{word-spacing:0.162000px;}
.ws4_c00486{word-spacing:0.270000px;}
.ws7_c00486{word-spacing:0.287280px;}
._1_c00486{margin-left:-1.058400px;}
._0_c00486{width:1.220400px;}
._2_c00486{width:846.000000px;}
.fc1_c00486{color:transparent;}
.fc0_c00486{color:rgb(0,0,0);}
.fs3_c00486{font-size:47.880000px;}
.fs0_c00486{font-size:54.000000px;}
.fs2_c00486{font-size:60.120000px;}
.fs1_c00486{font-size:72.000000px;}
.y1e_c00486{bottom:-10.890000px;}
.y0_c00486{bottom:0.000000px;}
.ya_c00486{bottom:2.880000px;}
.y8_c00486{bottom:2.970000px;}
.y1d_c00486{bottom:16.740000px;}
.y7_c00486{bottom:17.280000px;}
.y47_c00486{bottom:57.240000px;}
.y46_c00486{bottom:167.580000px;}
.y45_c00486{bottom:184.140000px;}
.y44_c00486{bottom:200.160000px;}
.y43_c00486{bottom:216.270000px;}
.y42_c00486{bottom:230.040000px;}
.y41_c00486{bottom:246.870000px;}
.y40_c00486{bottom:263.790000px;}
.y3f_c00486{bottom:280.620000px;}
.y3e_c00486{bottom:297.540000px;}
.y3d_c00486{bottom:314.370000px;}
.y3c_c00486{bottom:330.480000px;}
.y3b_c00486{bottom:344.250000px;}
.y3a_c00486{bottom:358.020000px;}
.y39_c00486{bottom:374.130000px;}
.y38_c00486{bottom:390.150000px;}
.y37_c00486{bottom:403.920000px;}
.y36_c00486{bottom:417.780000px;}
.y35_c00486{bottom:431.550000px;}
.y34_c00486{bottom:445.320000px;}
.y33_c00486{bottom:459.180000px;}
.y32_c00486{bottom:472.950000px;}
.y31_c00486{bottom:500.580000px;}
.y30_c00486{bottom:518.220000px;}
.y2f_c00486{bottom:534.330000px;}
.y2e_c00486{bottom:548.100000px;}
.y2d_c00486{bottom:564.930000px;}
.y2c_c00486{bottom:581.850000px;}
.y2b_c00486{bottom:598.680000px;}
.y2a_c00486{bottom:615.600000px;}
.y29_c00486{bottom:632.430000px;}
.y28_c00486{bottom:648.540000px;}
.y27_c00486{bottom:662.310000px;}
.y26_c00486{bottom:676.080000px;}
.y25_c00486{bottom:692.190000px;}
.y24_c00486{bottom:708.210000px;}
.y23_c00486{bottom:721.980000px;}
.y22_c00486{bottom:735.840000px;}
.y21_c00486{bottom:749.610000px;}
.y20_c00486{bottom:763.380000px;}
.y1f_c00486{bottom:777.240000px;}
.y1c_c00486{bottom:791.010000px;}
.y1b_c00486{bottom:818.640000px;}
.y1a_c00486{bottom:834.660000px;}
.y19_c00486{bottom:851.670000px;}
.y18_c00486{bottom:865.440000px;}
.y17_c00486{bottom:882.360000px;}
.y16_c00486{bottom:899.190000px;}
.y15_c00486{bottom:916.110000px;}
.y14_c00486{bottom:932.940000px;}
.y13_c00486{bottom:949.860000px;}
.y12_c00486{bottom:965.880000px;}
.y11_c00486{bottom:980.730000px;}
.y10_c00486{bottom:994.590000px;}
.yf_c00486{bottom:1010.610000px;}
.ye_c00486{bottom:1026.630000px;}
.yd_c00486{bottom:1040.670000px;}
.yc_c00486{bottom:1054.440000px;}
.yb_c00486{bottom:1068.300000px;}
.y9_c00486{bottom:1082.070000px;}
.y6_c00486{bottom:1095.840000px;}
.y5_c00486{bottom:1131.030000px;}
.y4_c00486{bottom:1150.920000px;}
.y3_c00486{bottom:1166.404500px;}
.y2_c00486{bottom:1181.970000px;}
.y1_c00486{bottom:1197.450000px;}
.h8_c00486{height:13.770000px;}
.ha_c00486{height:13.858500px;}
.h11_c00486{height:13.860000px;}
.hb_c00486{height:14.040000px;}
.hf_c00486{height:14.760000px;}
.hc_c00486{height:14.850000px;}
.h12_c00486{height:15.390000px;}
.he_c00486{height:16.830000px;}
.hd_c00486{height:16.920000px;}
.h10_c00486{height:27.630000px;}
.h5_c00486{height:31.050000px;}
.h9_c00486{height:46.991602px;}
.h7_c00486{height:48.254063px;}
.h3_c00486{height:52.971680px;}
.h2_c00486{height:52.998047px;}
.h6_c00486{height:59.004492px;}
.h4_c00486{height:70.664062px;}
.h0_c00486{height:1262.880000px;}
.h1_c00486{height:1263.000000px;}
.w5_c00486{width:76.680000px;}
.w7_c00486{width:80.370000px;}
.wa_c00486{width:81.450000px;}
.w6_c00486{width:81.451500px;}
.w4_c00486{width:87.120000px;}
.w8_c00486{width:158.131500px;}
.w3_c00486{width:179.100000px;}
.w9_c00486{width:180.270000px;}
.w2_c00486{width:506.970000px;}
.w0_c00486{width:893.070000px;}
.w1_c00486{width:893.250000px;}
.x0_c00486{left:0.000000px;}
.xf_c00486{left:4.050000px;}
.x5_c00486{left:5.220000px;}
.xa_c00486{left:14.670000px;}
.x8_c00486{left:16.560000px;}
.xc_c00486{left:17.730000px;}
.x11_c00486{left:26.460000px;}
.xe_c00486{left:27.900000px;}
.x12_c00486{left:31.230000px;}
.x14_c00486{left:32.940000px;}
.x10_c00486{left:36.900000px;}
.x16_c00486{left:38.880000px;}
.x13_c00486{left:43.200000px;}
.x15_c00486{left:60.930000px;}
.x6_c00486{left:68.310000px;}
.x4_c00486{left:126.450000px;}
.x3_c00486{left:127.620000px;}
.x7_c00486{left:306.720000px;}
.x9_c00486{left:393.840000px;}
.x2_c00486{left:425.160000px;}
.x1_c00486{left:446.580000px;}
.xb_c00486{left:470.520000px;}
.xd_c00486{left:551.970000px;}
.x17_c00486{left:738.540000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls2_c00486{letter-spacing:-0.096000pt;}
.ls3_c00486{letter-spacing:-0.085120pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:0.170240pt;}
.ws1_c00486{word-spacing:-10.810240pt;}
.ws0_c00486{word-spacing:-10.640000pt;}
.ws2_c00486{word-spacing:-10.554880pt;}
.ws8_c00486{word-spacing:-0.255360pt;}
.ws6_c00486{word-spacing:-0.085120pt;}
.ws3_c00486{word-spacing:0.000000pt;}
.ws5_c00486{word-spacing:0.144000pt;}
.ws4_c00486{word-spacing:0.240000pt;}
.ws7_c00486{word-spacing:0.255360pt;}
._1_c00486{margin-left:-0.940800pt;}
._0_c00486{width:1.084800pt;}
._2_c00486{width:752.000000pt;}
.fs3_c00486{font-size:42.560000pt;}
.fs0_c00486{font-size:48.000000pt;}
.fs2_c00486{font-size:53.440000pt;}
.fs1_c00486{font-size:64.000000pt;}
.y1e_c00486{bottom:-9.680000pt;}
.y0_c00486{bottom:0.000000pt;}
.ya_c00486{bottom:2.560000pt;}
.y8_c00486{bottom:2.640000pt;}
.y1d_c00486{bottom:14.880000pt;}
.y7_c00486{bottom:15.360000pt;}
.y47_c00486{bottom:50.880000pt;}
.y46_c00486{bottom:148.960000pt;}
.y45_c00486{bottom:163.680000pt;}
.y44_c00486{bottom:177.920000pt;}
.y43_c00486{bottom:192.240000pt;}
.y42_c00486{bottom:204.480000pt;}
.y41_c00486{bottom:219.440000pt;}
.y40_c00486{bottom:234.480000pt;}
.y3f_c00486{bottom:249.440000pt;}
.y3e_c00486{bottom:264.480000pt;}
.y3d_c00486{bottom:279.440000pt;}
.y3c_c00486{bottom:293.760000pt;}
.y3b_c00486{bottom:306.000000pt;}
.y3a_c00486{bottom:318.240000pt;}
.y39_c00486{bottom:332.560000pt;}
.y38_c00486{bottom:346.800000pt;}
.y37_c00486{bottom:359.040000pt;}
.y36_c00486{bottom:371.360000pt;}
.y35_c00486{bottom:383.600000pt;}
.y34_c00486{bottom:395.840000pt;}
.y33_c00486{bottom:408.160000pt;}
.y32_c00486{bottom:420.400000pt;}
.y31_c00486{bottom:444.960000pt;}
.y30_c00486{bottom:460.640000pt;}
.y2f_c00486{bottom:474.960000pt;}
.y2e_c00486{bottom:487.200000pt;}
.y2d_c00486{bottom:502.160000pt;}
.y2c_c00486{bottom:517.200000pt;}
.y2b_c00486{bottom:532.160000pt;}
.y2a_c00486{bottom:547.200000pt;}
.y29_c00486{bottom:562.160000pt;}
.y28_c00486{bottom:576.480000pt;}
.y27_c00486{bottom:588.720000pt;}
.y26_c00486{bottom:600.960000pt;}
.y25_c00486{bottom:615.280000pt;}
.y24_c00486{bottom:629.520000pt;}
.y23_c00486{bottom:641.760000pt;}
.y22_c00486{bottom:654.080000pt;}
.y21_c00486{bottom:666.320000pt;}
.y20_c00486{bottom:678.560000pt;}
.y1f_c00486{bottom:690.880000pt;}
.y1c_c00486{bottom:703.120000pt;}
.y1b_c00486{bottom:727.680000pt;}
.y1a_c00486{bottom:741.920000pt;}
.y19_c00486{bottom:757.040000pt;}
.y18_c00486{bottom:769.280000pt;}
.y17_c00486{bottom:784.320000pt;}
.y16_c00486{bottom:799.280000pt;}
.y15_c00486{bottom:814.320000pt;}
.y14_c00486{bottom:829.280000pt;}
.y13_c00486{bottom:844.320000pt;}
.y12_c00486{bottom:858.560000pt;}
.y11_c00486{bottom:871.760000pt;}
.y10_c00486{bottom:884.080000pt;}
.yf_c00486{bottom:898.320000pt;}
.ye_c00486{bottom:912.560000pt;}
.yd_c00486{bottom:925.040000pt;}
.yc_c00486{bottom:937.280000pt;}
.yb_c00486{bottom:949.600000pt;}
.y9_c00486{bottom:961.840000pt;}
.y6_c00486{bottom:974.080000pt;}
.y5_c00486{bottom:1005.360000pt;}
.y4_c00486{bottom:1023.040000pt;}
.y3_c00486{bottom:1036.804000pt;}
.y2_c00486{bottom:1050.640000pt;}
.y1_c00486{bottom:1064.400000pt;}
.h8_c00486{height:12.240000pt;}
.ha_c00486{height:12.318667pt;}
.h11_c00486{height:12.320000pt;}
.hb_c00486{height:12.480000pt;}
.hf_c00486{height:13.120000pt;}
.hc_c00486{height:13.200000pt;}
.h12_c00486{height:13.680000pt;}
.he_c00486{height:14.960000pt;}
.hd_c00486{height:15.040000pt;}
.h10_c00486{height:24.560000pt;}
.h5_c00486{height:27.600000pt;}
.h9_c00486{height:41.770312pt;}
.h7_c00486{height:42.892500pt;}
.h3_c00486{height:47.085938pt;}
.h2_c00486{height:47.109375pt;}
.h6_c00486{height:52.448437pt;}
.h4_c00486{height:62.812500pt;}
.h0_c00486{height:1122.560000pt;}
.h1_c00486{height:1122.666667pt;}
.w5_c00486{width:68.160000pt;}
.w7_c00486{width:71.440000pt;}
.wa_c00486{width:72.400000pt;}
.w6_c00486{width:72.401333pt;}
.w4_c00486{width:77.440000pt;}
.w8_c00486{width:140.561333pt;}
.w3_c00486{width:159.200000pt;}
.w9_c00486{width:160.240000pt;}
.w2_c00486{width:450.640000pt;}
.w0_c00486{width:793.840000pt;}
.w1_c00486{width:794.000000pt;}
.x0_c00486{left:0.000000pt;}
.xf_c00486{left:3.600000pt;}
.x5_c00486{left:4.640000pt;}
.xa_c00486{left:13.040000pt;}
.x8_c00486{left:14.720000pt;}
.xc_c00486{left:15.760000pt;}
.x11_c00486{left:23.520000pt;}
.xe_c00486{left:24.800000pt;}
.x12_c00486{left:27.760000pt;}
.x14_c00486{left:29.280000pt;}
.x10_c00486{left:32.800000pt;}
.x16_c00486{left:34.560000pt;}
.x13_c00486{left:38.400000pt;}
.x15_c00486{left:54.160000pt;}
.x6_c00486{left:60.720000pt;}
.x4_c00486{left:112.400000pt;}
.x3_c00486{left:113.440000pt;}
.x7_c00486{left:272.640000pt;}
.x9_c00486{left:350.080000pt;}
.x2_c00486{left:377.920000pt;}
.x1_c00486{left:396.960000pt;}
.xb_c00486{left:418.240000pt;}
.xd_c00486{left:490.640000pt;}
.x17_c00486{left:656.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_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_20434775d8f89504920fe7b6.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.284180;font-style:normal;font-weight:normal;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_74958dd8683801ab171f4519.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00487{vertical-align:-61.938000px;}
.v0_c00487{vertical-align:0.000000px;}
.ls3_c00487{letter-spacing:-0.095760px;}
.ls2_c00487{letter-spacing:0.000000px;}
.ls1_c00487{letter-spacing:0.191520px;}
.ls0_c00487{letter-spacing:319.518000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00487{word-spacing:-12.161520px;}
.ws0_c00487{word-spacing:-11.970000px;}
.ws2_c00487{word-spacing:-11.874240px;}
.ws6_c00487{word-spacing:-0.287280px;}
.ws4_c00487{word-spacing:-0.162000px;}
.ws5_c00487{word-spacing:-0.095760px;}
.ws3_c00487{word-spacing:0.000000px;}
._1_c00487{margin-left:-1.139544px;}
._0_c00487{width:1.168272px;}
._2_c00487{width:846.000000px;}
.fc1_c00487{color:transparent;}
.fc0_c00487{color:rgb(0,0,0);}
.fs3_c00487{font-size:47.880000px;}
.fs0_c00487{font-size:54.000000px;}
.fs2_c00487{font-size:60.120000px;}
.fs1_c00487{font-size:72.000000px;}
.y1d_c00487{bottom:-10.890000px;}
.y0_c00487{bottom:0.000000px;}
.y8_c00487{bottom:2.880000px;}
.yb_c00487{bottom:2.970000px;}
.y1c_c00487{bottom:16.650000px;}
.y32_c00487{bottom:16.740000px;}
.y6_c00487{bottom:31.050000px;}
.y47_c00487{bottom:57.240000px;}
.y46_c00487{bottom:169.380000px;}
.y45_c00487{bottom:185.940000px;}
.y44_c00487{bottom:201.960000px;}
.y43_c00487{bottom:218.070000px;}
.y42_c00487{bottom:231.840000px;}
.y41_c00487{bottom:248.670000px;}
.y40_c00487{bottom:265.590000px;}
.y3f_c00487{bottom:282.420000px;}
.y3e_c00487{bottom:299.340000px;}
.y3d_c00487{bottom:316.170000px;}
.y3c_c00487{bottom:332.280000px;}
.y3b_c00487{bottom:346.050000px;}
.y3a_c00487{bottom:359.820000px;}
.y39_c00487{bottom:375.930000px;}
.y38_c00487{bottom:391.950000px;}
.y37_c00487{bottom:405.720000px;}
.y36_c00487{bottom:419.580000px;}
.y35_c00487{bottom:433.350000px;}
.y34_c00487{bottom:447.120000px;}
.y33_c00487{bottom:460.980000px;}
.y31_c00487{bottom:474.750000px;}
.y30_c00487{bottom:502.380000px;}
.y2f_c00487{bottom:518.400000px;}
.y2e_c00487{bottom:534.420000px;}
.y2d_c00487{bottom:548.280000px;}
.y2c_c00487{bottom:565.110000px;}
.y2b_c00487{bottom:582.030000px;}
.y2a_c00487{bottom:598.860000px;}
.y29_c00487{bottom:615.780000px;}
.y28_c00487{bottom:632.610000px;}
.y27_c00487{bottom:648.630000px;}
.y26_c00487{bottom:662.490000px;}
.y25_c00487{bottom:676.260000px;}
.y24_c00487{bottom:693.180000px;}
.y23_c00487{bottom:709.290000px;}
.y22_c00487{bottom:723.060000px;}
.y21_c00487{bottom:736.830000px;}
.y20_c00487{bottom:750.690000px;}
.y1f_c00487{bottom:764.460000px;}
.y1e_c00487{bottom:778.230000px;}
.y1b_c00487{bottom:792.090000px;}
.y1a_c00487{bottom:819.630000px;}
.y19_c00487{bottom:835.740000px;}
.y18_c00487{bottom:852.750000px;}
.y17_c00487{bottom:866.520000px;}
.y16_c00487{bottom:883.440000px;}
.y15_c00487{bottom:900.270000px;}
.y14_c00487{bottom:917.190000px;}
.y13_c00487{bottom:934.020000px;}
.y12_c00487{bottom:950.940000px;}
.y11_c00487{bottom:966.960000px;}
.y10_c00487{bottom:980.730000px;}
.yf_c00487{bottom:994.590000px;}
.ye_c00487{bottom:1010.610000px;}
.yd_c00487{bottom:1026.630000px;}
.yc_c00487{bottom:1040.670000px;}
.ya_c00487{bottom:1054.440000px;}
.y9_c00487{bottom:1068.300000px;}
.y5_c00487{bottom:1082.070000px;}
.y7_c00487{bottom:1098.810000px;}
.y4_c00487{bottom:1131.030000px;}
.y3_c00487{bottom:1150.915500px;}
.y2_c00487{bottom:1166.400000px;}
.y1_c00487{bottom:1197.450000px;}
.h8_c00487{height:13.770000px;}
.h9_c00487{height:13.858500px;}
.he_c00487{height:13.860000px;}
.ha_c00487{height:14.040000px;}
.h10_c00487{height:14.670000px;}
.hd_c00487{height:14.760000px;}
.hc_c00487{height:16.830000px;}
.hb_c00487{height:16.920000px;}
.hf_c00487{height:27.540000px;}
.h11_c00487{height:27.628500px;}
.h4_c00487{height:44.820000px;}
.h7_c00487{height:46.991602px;}
.h6_c00487{height:48.254063px;}
.h2_c00487{height:52.998047px;}
.h5_c00487{height:59.004492px;}
.h3_c00487{height:70.664062px;}
.h0_c00487{height:1262.880000px;}
.h1_c00487{height:1263.000000px;}
.w5_c00487{width:76.680000px;}
.w7_c00487{width:80.370000px;}
.wa_c00487{width:81.450000px;}
.w6_c00487{width:81.451500px;}
.w4_c00487{width:87.120000px;}
.w8_c00487{width:158.131500px;}
.w3_c00487{width:179.100000px;}
.w9_c00487{width:180.270000px;}
.w2_c00487{width:506.970000px;}
.w0_c00487{width:893.070000px;}
.w1_c00487{width:893.250000px;}
.x0_c00487{left:0.000000px;}
.xf_c00487{left:4.050000px;}
.x4_c00487{left:5.220000px;}
.xa_c00487{left:14.670000px;}
.x8_c00487{left:16.560000px;}
.xc_c00487{left:17.730000px;}
.x11_c00487{left:26.460000px;}
.xe_c00487{left:27.900000px;}
.x12_c00487{left:31.230000px;}
.x14_c00487{left:32.940000px;}
.x10_c00487{left:36.900000px;}
.x15_c00487{left:38.880000px;}
.x13_c00487{left:43.200000px;}
.x16_c00487{left:56.880000px;}
.x17_c00487{left:60.930000px;}
.x6_c00487{left:68.310000px;}
.x3_c00487{left:126.450000px;}
.x2_c00487{left:127.620000px;}
.x5_c00487{left:131.670000px;}
.x7_c00487{left:306.720000px;}
.x9_c00487{left:393.840000px;}
.x1_c00487{left:446.580000px;}
.xb_c00487{left:470.520000px;}
.xd_c00487{left:551.970000px;}
@media print{
.v1_c00487{vertical-align:-55.056000pt;}
.v0_c00487{vertical-align:0.000000pt;}
.ls3_c00487{letter-spacing:-0.085120pt;}
.ls2_c00487{letter-spacing:0.000000pt;}
.ls1_c00487{letter-spacing:0.170240pt;}
.ls0_c00487{letter-spacing:284.016000pt;}
.ws1_c00487{word-spacing:-10.810240pt;}
.ws0_c00487{word-spacing:-10.640000pt;}
.ws2_c00487{word-spacing:-10.554880pt;}
.ws6_c00487{word-spacing:-0.255360pt;}
.ws4_c00487{word-spacing:-0.144000pt;}
.ws5_c00487{word-spacing:-0.085120pt;}
.ws3_c00487{word-spacing:0.000000pt;}
._1_c00487{margin-left:-1.012928pt;}
._0_c00487{width:1.038464pt;}
._2_c00487{width:752.000000pt;}
.fs3_c00487{font-size:42.560000pt;}
.fs0_c00487{font-size:48.000000pt;}
.fs2_c00487{font-size:53.440000pt;}
.fs1_c00487{font-size:64.000000pt;}
.y1d_c00487{bottom:-9.680000pt;}
.y0_c00487{bottom:0.000000pt;}
.y8_c00487{bottom:2.560000pt;}
.yb_c00487{bottom:2.640000pt;}
.y1c_c00487{bottom:14.800000pt;}
.y32_c00487{bottom:14.880000pt;}
.y6_c00487{bottom:27.600000pt;}
.y47_c00487{bottom:50.880000pt;}
.y46_c00487{bottom:150.560000pt;}
.y45_c00487{bottom:165.280000pt;}
.y44_c00487{bottom:179.520000pt;}
.y43_c00487{bottom:193.840000pt;}
.y42_c00487{bottom:206.080000pt;}
.y41_c00487{bottom:221.040000pt;}
.y40_c00487{bottom:236.080000pt;}
.y3f_c00487{bottom:251.040000pt;}
.y3e_c00487{bottom:266.080000pt;}
.y3d_c00487{bottom:281.040000pt;}
.y3c_c00487{bottom:295.360000pt;}
.y3b_c00487{bottom:307.600000pt;}
.y3a_c00487{bottom:319.840000pt;}
.y39_c00487{bottom:334.160000pt;}
.y38_c00487{bottom:348.400000pt;}
.y37_c00487{bottom:360.640000pt;}
.y36_c00487{bottom:372.960000pt;}
.y35_c00487{bottom:385.200000pt;}
.y34_c00487{bottom:397.440000pt;}
.y33_c00487{bottom:409.760000pt;}
.y31_c00487{bottom:422.000000pt;}
.y30_c00487{bottom:446.560000pt;}
.y2f_c00487{bottom:460.800000pt;}
.y2e_c00487{bottom:475.040000pt;}
.y2d_c00487{bottom:487.360000pt;}
.y2c_c00487{bottom:502.320000pt;}
.y2b_c00487{bottom:517.360000pt;}
.y2a_c00487{bottom:532.320000pt;}
.y29_c00487{bottom:547.360000pt;}
.y28_c00487{bottom:562.320000pt;}
.y27_c00487{bottom:576.560000pt;}
.y26_c00487{bottom:588.880000pt;}
.y25_c00487{bottom:601.120000pt;}
.y24_c00487{bottom:616.160000pt;}
.y23_c00487{bottom:630.480000pt;}
.y22_c00487{bottom:642.720000pt;}
.y21_c00487{bottom:654.960000pt;}
.y20_c00487{bottom:667.280000pt;}
.y1f_c00487{bottom:679.520000pt;}
.y1e_c00487{bottom:691.760000pt;}
.y1b_c00487{bottom:704.080000pt;}
.y1a_c00487{bottom:728.560000pt;}
.y19_c00487{bottom:742.880000pt;}
.y18_c00487{bottom:758.000000pt;}
.y17_c00487{bottom:770.240000pt;}
.y16_c00487{bottom:785.280000pt;}
.y15_c00487{bottom:800.240000pt;}
.y14_c00487{bottom:815.280000pt;}
.y13_c00487{bottom:830.240000pt;}
.y12_c00487{bottom:845.280000pt;}
.y11_c00487{bottom:859.520000pt;}
.y10_c00487{bottom:871.760000pt;}
.yf_c00487{bottom:884.080000pt;}
.ye_c00487{bottom:898.320000pt;}
.yd_c00487{bottom:912.560000pt;}
.yc_c00487{bottom:925.040000pt;}
.ya_c00487{bottom:937.280000pt;}
.y9_c00487{bottom:949.600000pt;}
.y5_c00487{bottom:961.840000pt;}
.y7_c00487{bottom:976.720000pt;}
.y4_c00487{bottom:1005.360000pt;}
.y3_c00487{bottom:1023.036000pt;}
.y2_c00487{bottom:1036.800000pt;}
.y1_c00487{bottom:1064.400000pt;}
.h8_c00487{height:12.240000pt;}
.h9_c00487{height:12.318667pt;}
.he_c00487{height:12.320000pt;}
.ha_c00487{height:12.480000pt;}
.h10_c00487{height:13.040000pt;}
.hd_c00487{height:13.120000pt;}
.hc_c00487{height:14.960000pt;}
.hb_c00487{height:15.040000pt;}
.hf_c00487{height:24.480000pt;}
.h11_c00487{height:24.558667pt;}
.h4_c00487{height:39.840000pt;}
.h7_c00487{height:41.770312pt;}
.h6_c00487{height:42.892500pt;}
.h2_c00487{height:47.109375pt;}
.h5_c00487{height:52.448437pt;}
.h3_c00487{height:62.812500pt;}
.h0_c00487{height:1122.560000pt;}
.h1_c00487{height:1122.666667pt;}
.w5_c00487{width:68.160000pt;}
.w7_c00487{width:71.440000pt;}
.wa_c00487{width:72.400000pt;}
.w6_c00487{width:72.401333pt;}
.w4_c00487{width:77.440000pt;}
.w8_c00487{width:140.561333pt;}
.w3_c00487{width:159.200000pt;}
.w9_c00487{width:160.240000pt;}
.w2_c00487{width:450.640000pt;}
.w0_c00487{width:793.840000pt;}
.w1_c00487{width:794.000000pt;}
.x0_c00487{left:0.000000pt;}
.xf_c00487{left:3.600000pt;}
.x4_c00487{left:4.640000pt;}
.xa_c00487{left:13.040000pt;}
.x8_c00487{left:14.720000pt;}
.xc_c00487{left:15.760000pt;}
.x11_c00487{left:23.520000pt;}
.xe_c00487{left:24.800000pt;}
.x12_c00487{left:27.760000pt;}
.x14_c00487{left:29.280000pt;}
.x10_c00487{left:32.800000pt;}
.x15_c00487{left:34.560000pt;}
.x13_c00487{left:38.400000pt;}
.x16_c00487{left:50.560000pt;}
.x17_c00487{left:54.160000pt;}
.x6_c00487{left:60.720000pt;}
.x3_c00487{left:112.400000pt;}
.x2_c00487{left:113.440000pt;}
.x5_c00487{left:117.040000pt;}
.x7_c00487{left:272.640000pt;}
.x9_c00487{left:350.080000pt;}
.x1_c00487{left:396.960000pt;}
.xb_c00487{left:418.240000pt;}
.xd_c00487{left:490.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_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_20434775d8f89504920fe7b6.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_e42fbcb028e8e16083aab07e.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls2_c00488{letter-spacing:-0.108000px;}
.ls4_c00488{letter-spacing:-0.095760px;}
.ls1_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:0.191520px;}
.ls3_c00488{letter-spacing:0.335160px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00488{word-spacing:-12.161520px;}
.ws0_c00488{word-spacing:-11.970000px;}
.ws2_c00488{word-spacing:-11.874240px;}
.ws7_c00488{word-spacing:-0.430920px;}
.ws8_c00488{word-spacing:-0.287280px;}
.ws6_c00488{word-spacing:-0.095760px;}
.ws3_c00488{word-spacing:0.000000px;}
.ws9_c00488{word-spacing:0.095760px;}
.ws5_c00488{word-spacing:0.162000px;}
.ws4_c00488{word-spacing:0.270000px;}
._1_c00488{margin-left:-1.058400px;}
._0_c00488{width:1.220400px;}
._2_c00488{width:846.000000px;}
.fc1_c00488{color:transparent;}
.fc0_c00488{color:rgb(0,0,0);}
.fs3_c00488{font-size:47.880000px;}
.fs0_c00488{font-size:54.000000px;}
.fs2_c00488{font-size:60.120000px;}
.fs1_c00488{font-size:72.000000px;}
.y1f_c00488{bottom:-10.890000px;}
.y0_c00488{bottom:0.000000px;}
.y1e_c00488{bottom:2.879850px;}
.ya_c00488{bottom:2.880000px;}
.y8_c00488{bottom:2.970000px;}
.y1d_c00488{bottom:16.650000px;}
.y33_c00488{bottom:16.740000px;}
.y7_c00488{bottom:17.280000px;}
.y48_c00488{bottom:57.240000px;}
.y47_c00488{bottom:163.440000px;}
.y46_c00488{bottom:180.000000px;}
.y45_c00488{bottom:196.020000px;}
.y44_c00488{bottom:212.130000px;}
.y43_c00488{bottom:225.900000px;}
.y42_c00488{bottom:242.820000px;}
.y41_c00488{bottom:259.650000px;}
.y40_c00488{bottom:276.570000px;}
.y3f_c00488{bottom:293.400000px;}
.y3e_c00488{bottom:310.320000px;}
.y3d_c00488{bottom:330.570000px;}
.y3c_c00488{bottom:344.340000px;}
.y3b_c00488{bottom:358.110000px;}
.y3a_c00488{bottom:374.220000px;}
.y39_c00488{bottom:390.240000px;}
.y38_c00488{bottom:404.820000px;}
.y37_c00488{bottom:418.680000px;}
.y36_c00488{bottom:432.450000px;}
.y35_c00488{bottom:446.220000px;}
.y34_c00488{bottom:460.080000px;}
.y32_c00488{bottom:473.850000px;}
.y31_c00488{bottom:501.480000px;}
.y30_c00488{bottom:517.500000px;}
.y2f_c00488{bottom:533.520000px;}
.y2e_c00488{bottom:547.380000px;}
.y2d_c00488{bottom:564.210000px;}
.y2c_c00488{bottom:581.130000px;}
.y2b_c00488{bottom:597.960000px;}
.y2a_c00488{bottom:614.880000px;}
.y29_c00488{bottom:635.130000px;}
.y28_c00488{bottom:648.900000px;}
.y27_c00488{bottom:662.670000px;}
.y26_c00488{bottom:678.690000px;}
.y25_c00488{bottom:694.800000px;}
.y24_c00488{bottom:708.570000px;}
.y23_c00488{bottom:722.340000px;}
.y22_c00488{bottom:736.200000px;}
.y21_c00488{bottom:749.970000px;}
.y20_c00488{bottom:763.740000px;}
.y1c_c00488{bottom:777.600000px;}
.y1b_c00488{bottom:805.140000px;}
.y1a_c00488{bottom:821.250000px;}
.y19_c00488{bottom:837.270000px;}
.y18_c00488{bottom:851.040000px;}
.y17_c00488{bottom:867.960000px;}
.y16_c00488{bottom:884.790000px;}
.y15_c00488{bottom:901.710000px;}
.y14_c00488{bottom:918.540000px;}
.y13_c00488{bottom:935.460000px;}
.y12_c00488{bottom:955.710000px;}
.y11_c00488{bottom:973.710000px;}
.y10_c00488{bottom:990.540000px;}
.yf_c00488{bottom:1010.790000px;}
.ye_c00488{bottom:1026.900000px;}
.yd_c00488{bottom:1040.670000px;}
.yc_c00488{bottom:1054.440000px;}
.yb_c00488{bottom:1068.300000px;}
.y9_c00488{bottom:1082.070000px;}
.y6_c00488{bottom:1095.840000px;}
.y5_c00488{bottom:1131.030000px;}
.y4_c00488{bottom:1150.920000px;}
.y3_c00488{bottom:1166.404500px;}
.y2_c00488{bottom:1181.970000px;}
.y1_c00488{bottom:1197.450000px;}
.h8_c00488{height:13.770000px;}
.ha_c00488{height:13.858500px;}
.hb_c00488{height:13.860000px;}
.h14_c00488{height:14.580000px;}
.hd_c00488{height:16.828500px;}
.hf_c00488{height:16.830000px;}
.he_c00488{height:16.920000px;}
.h12_c00488{height:16.921500px;}
.h11_c00488{height:18.000000px;}
.hc_c00488{height:18.001500px;}
.h10_c00488{height:27.540000px;}
.h13_c00488{height:27.630000px;}
.h5_c00488{height:31.050000px;}
.h9_c00488{height:46.991602px;}
.h7_c00488{height:48.254063px;}
.h3_c00488{height:52.971680px;}
.h2_c00488{height:52.998047px;}
.h6_c00488{height:59.004492px;}
.h4_c00488{height:70.664062px;}
.h0_c00488{height:1262.880000px;}
.h1_c00488{height:1263.000000px;}
.w5_c00488{width:76.680000px;}
.w7_c00488{width:80.370000px;}
.wa_c00488{width:81.450000px;}
.w6_c00488{width:81.451500px;}
.w4_c00488{width:87.120000px;}
.w8_c00488{width:158.131500px;}
.w3_c00488{width:179.100000px;}
.w9_c00488{width:180.270000px;}
.w2_c00488{width:506.970000px;}
.w0_c00488{width:893.070000px;}
.w1_c00488{width:893.250000px;}
.x0_c00488{left:0.000000px;}
.xf_c00488{left:4.050000px;}
.x5_c00488{left:5.220000px;}
.xa_c00488{left:14.670000px;}
.x8_c00488{left:16.560000px;}
.xc_c00488{left:17.730000px;}
.x11_c00488{left:26.460000px;}
.xe_c00488{left:27.900000px;}
.x12_c00488{left:31.230000px;}
.x14_c00488{left:32.940000px;}
.x10_c00488{left:36.900000px;}
.x15_c00488{left:38.880000px;}
.x13_c00488{left:43.200000px;}
.x17_c00488{left:49.230000px;}
.x16_c00488{left:56.880000px;}
.x18_c00488{left:60.930000px;}
.x19_c00488{left:66.870000px;}
.x6_c00488{left:68.310000px;}
.x4_c00488{left:126.450000px;}
.x3_c00488{left:127.620000px;}
.x7_c00488{left:306.720000px;}
.x9_c00488{left:393.840000px;}
.x2_c00488{left:425.160000px;}
.x1_c00488{left:446.580000px;}
.xb_c00488{left:470.520000px;}
.xd_c00488{left:551.970000px;}
.x1a_c00488{left:738.540000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls2_c00488{letter-spacing:-0.096000pt;}
.ls4_c00488{letter-spacing:-0.085120pt;}
.ls1_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:0.170240pt;}
.ls3_c00488{letter-spacing:0.297920pt;}
.ws1_c00488{word-spacing:-10.810240pt;}
.ws0_c00488{word-spacing:-10.640000pt;}
.ws2_c00488{word-spacing:-10.554880pt;}
.ws7_c00488{word-spacing:-0.383040pt;}
.ws8_c00488{word-spacing:-0.255360pt;}
.ws6_c00488{word-spacing:-0.085120pt;}
.ws3_c00488{word-spacing:0.000000pt;}
.ws9_c00488{word-spacing:0.085120pt;}
.ws5_c00488{word-spacing:0.144000pt;}
.ws4_c00488{word-spacing:0.240000pt;}
._1_c00488{margin-left:-0.940800pt;}
._0_c00488{width:1.084800pt;}
._2_c00488{width:752.000000pt;}
.fs3_c00488{font-size:42.560000pt;}
.fs0_c00488{font-size:48.000000pt;}
.fs2_c00488{font-size:53.440000pt;}
.fs1_c00488{font-size:64.000000pt;}
.y1f_c00488{bottom:-9.680000pt;}
.y0_c00488{bottom:0.000000pt;}
.y1e_c00488{bottom:2.559867pt;}
.ya_c00488{bottom:2.560000pt;}
.y8_c00488{bottom:2.640000pt;}
.y1d_c00488{bottom:14.800000pt;}
.y33_c00488{bottom:14.880000pt;}
.y7_c00488{bottom:15.360000pt;}
.y48_c00488{bottom:50.880000pt;}
.y47_c00488{bottom:145.280000pt;}
.y46_c00488{bottom:160.000000pt;}
.y45_c00488{bottom:174.240000pt;}
.y44_c00488{bottom:188.560000pt;}
.y43_c00488{bottom:200.800000pt;}
.y42_c00488{bottom:215.840000pt;}
.y41_c00488{bottom:230.800000pt;}
.y40_c00488{bottom:245.840000pt;}
.y3f_c00488{bottom:260.800000pt;}
.y3e_c00488{bottom:275.840000pt;}
.y3d_c00488{bottom:293.840000pt;}
.y3c_c00488{bottom:306.080000pt;}
.y3b_c00488{bottom:318.320000pt;}
.y3a_c00488{bottom:332.640000pt;}
.y39_c00488{bottom:346.880000pt;}
.y38_c00488{bottom:359.840000pt;}
.y37_c00488{bottom:372.160000pt;}
.y36_c00488{bottom:384.400000pt;}
.y35_c00488{bottom:396.640000pt;}
.y34_c00488{bottom:408.960000pt;}
.y32_c00488{bottom:421.200000pt;}
.y31_c00488{bottom:445.760000pt;}
.y30_c00488{bottom:460.000000pt;}
.y2f_c00488{bottom:474.240000pt;}
.y2e_c00488{bottom:486.560000pt;}
.y2d_c00488{bottom:501.520000pt;}
.y2c_c00488{bottom:516.560000pt;}
.y2b_c00488{bottom:531.520000pt;}
.y2a_c00488{bottom:546.560000pt;}
.y29_c00488{bottom:564.560000pt;}
.y28_c00488{bottom:576.800000pt;}
.y27_c00488{bottom:589.040000pt;}
.y26_c00488{bottom:603.280000pt;}
.y25_c00488{bottom:617.600000pt;}
.y24_c00488{bottom:629.840000pt;}
.y23_c00488{bottom:642.080000pt;}
.y22_c00488{bottom:654.400000pt;}
.y21_c00488{bottom:666.640000pt;}
.y20_c00488{bottom:678.880000pt;}
.y1c_c00488{bottom:691.200000pt;}
.y1b_c00488{bottom:715.680000pt;}
.y1a_c00488{bottom:730.000000pt;}
.y19_c00488{bottom:744.240000pt;}
.y18_c00488{bottom:756.480000pt;}
.y17_c00488{bottom:771.520000pt;}
.y16_c00488{bottom:786.480000pt;}
.y15_c00488{bottom:801.520000pt;}
.y14_c00488{bottom:816.480000pt;}
.y13_c00488{bottom:831.520000pt;}
.y12_c00488{bottom:849.520000pt;}
.y11_c00488{bottom:865.520000pt;}
.y10_c00488{bottom:880.480000pt;}
.yf_c00488{bottom:898.480000pt;}
.ye_c00488{bottom:912.800000pt;}
.yd_c00488{bottom:925.040000pt;}
.yc_c00488{bottom:937.280000pt;}
.yb_c00488{bottom:949.600000pt;}
.y9_c00488{bottom:961.840000pt;}
.y6_c00488{bottom:974.080000pt;}
.y5_c00488{bottom:1005.360000pt;}
.y4_c00488{bottom:1023.040000pt;}
.y3_c00488{bottom:1036.804000pt;}
.y2_c00488{bottom:1050.640000pt;}
.y1_c00488{bottom:1064.400000pt;}
.h8_c00488{height:12.240000pt;}
.ha_c00488{height:12.318667pt;}
.hb_c00488{height:12.320000pt;}
.h14_c00488{height:12.960000pt;}
.hd_c00488{height:14.958667pt;}
.hf_c00488{height:14.960000pt;}
.he_c00488{height:15.040000pt;}
.h12_c00488{height:15.041333pt;}
.h11_c00488{height:16.000000pt;}
.hc_c00488{height:16.001333pt;}
.h10_c00488{height:24.480000pt;}
.h13_c00488{height:24.560000pt;}
.h5_c00488{height:27.600000pt;}
.h9_c00488{height:41.770312pt;}
.h7_c00488{height:42.892500pt;}
.h3_c00488{height:47.085938pt;}
.h2_c00488{height:47.109375pt;}
.h6_c00488{height:52.448437pt;}
.h4_c00488{height:62.812500pt;}
.h0_c00488{height:1122.560000pt;}
.h1_c00488{height:1122.666667pt;}
.w5_c00488{width:68.160000pt;}
.w7_c00488{width:71.440000pt;}
.wa_c00488{width:72.400000pt;}
.w6_c00488{width:72.401333pt;}
.w4_c00488{width:77.440000pt;}
.w8_c00488{width:140.561333pt;}
.w3_c00488{width:159.200000pt;}
.w9_c00488{width:160.240000pt;}
.w2_c00488{width:450.640000pt;}
.w0_c00488{width:793.840000pt;}
.w1_c00488{width:794.000000pt;}
.x0_c00488{left:0.000000pt;}
.xf_c00488{left:3.600000pt;}
.x5_c00488{left:4.640000pt;}
.xa_c00488{left:13.040000pt;}
.x8_c00488{left:14.720000pt;}
.xc_c00488{left:15.760000pt;}
.x11_c00488{left:23.520000pt;}
.xe_c00488{left:24.800000pt;}
.x12_c00488{left:27.760000pt;}
.x14_c00488{left:29.280000pt;}
.x10_c00488{left:32.800000pt;}
.x15_c00488{left:34.560000pt;}
.x13_c00488{left:38.400000pt;}
.x17_c00488{left:43.760000pt;}
.x16_c00488{left:50.560000pt;}
.x18_c00488{left:54.160000pt;}
.x19_c00488{left:59.440000pt;}
.x6_c00488{left:60.720000pt;}
.x4_c00488{left:112.400000pt;}
.x3_c00488{left:113.440000pt;}
.x7_c00488{left:272.640000pt;}
.x9_c00488{left:350.080000pt;}
.x2_c00488{left:377.920000pt;}
.x1_c00488{left:396.960000pt;}
.xb_c00488{left:418.240000pt;}
.xd_c00488{left:490.640000pt;}
.x1a_c00488{left:656.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_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_b0f62d43df35d4313a252db6.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.284668;font-style:normal;font-weight:normal;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_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_f56d28acfafcf9a0f9e3ff66.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00489{vertical-align:-61.938000px;}
.v0_c00489{vertical-align:0.000000px;}
.ls4_c00489{letter-spacing:-0.143640px;}
.ls3_c00489{letter-spacing:-0.095760px;}
.ls2_c00489{letter-spacing:0.000000px;}
.ls1_c00489{letter-spacing:0.191520px;}
.ls0_c00489{letter-spacing:319.518000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00489{word-spacing:-12.161520px;}
.ws0_c00489{word-spacing:-11.970000px;}
.ws2_c00489{word-spacing:-11.874240px;}
.ws7_c00489{word-spacing:-0.287280px;}
.ws4_c00489{word-spacing:-0.162000px;}
.ws5_c00489{word-spacing:-0.095760px;}
.ws3_c00489{word-spacing:0.000000px;}
.ws8_c00489{word-spacing:0.047880px;}
.ws6_c00489{word-spacing:0.287280px;}
._1_c00489{margin-left:-1.139544px;}
._0_c00489{width:1.168272px;}
._2_c00489{width:846.000000px;}
.fc1_c00489{color:transparent;}
.fc0_c00489{color:rgb(0,0,0);}
.fs3_c00489{font-size:47.880000px;}
.fs0_c00489{font-size:54.000000px;}
.fs2_c00489{font-size:60.120000px;}
.fs1_c00489{font-size:72.000000px;}
.y1d_c00489{bottom:-10.890000px;}
.y0_c00489{bottom:0.000000px;}
.y9_c00489{bottom:2.880000px;}
.y7_c00489{bottom:2.970000px;}
.y32_c00489{bottom:16.650000px;}
.y1c_c00489{bottom:16.740000px;}
.y6_c00489{bottom:17.280000px;}
.y47_c00489{bottom:57.240000px;}
.y46_c00489{bottom:165.510000px;}
.y45_c00489{bottom:182.070000px;}
.y44_c00489{bottom:198.180000px;}
.y43_c00489{bottom:214.200000px;}
.y42_c00489{bottom:227.970000px;}
.y41_c00489{bottom:244.890000px;}
.y40_c00489{bottom:261.720000px;}
.y3f_c00489{bottom:278.640000px;}
.y3e_c00489{bottom:295.470000px;}
.y3d_c00489{bottom:312.390000px;}
.y3c_c00489{bottom:328.410000px;}
.y3b_c00489{bottom:342.270000px;}
.y3a_c00489{bottom:356.040000px;}
.y39_c00489{bottom:372.060000px;}
.y38_c00489{bottom:388.170000px;}
.y37_c00489{bottom:401.940000px;}
.y36_c00489{bottom:415.710000px;}
.y35_c00489{bottom:431.190000px;}
.y34_c00489{bottom:444.960000px;}
.y33_c00489{bottom:458.730000px;}
.y31_c00489{bottom:472.590000px;}
.y30_c00489{bottom:500.130000px;}
.y2f_c00489{bottom:517.770000px;}
.y2e_c00489{bottom:533.880000px;}
.y2d_c00489{bottom:547.650000px;}
.y2c_c00489{bottom:564.480000px;}
.y2b_c00489{bottom:581.400000px;}
.y2a_c00489{bottom:598.230000px;}
.y29_c00489{bottom:615.150000px;}
.y28_c00489{bottom:631.980000px;}
.y27_c00489{bottom:648.090000px;}
.y26_c00489{bottom:661.860000px;}
.y25_c00489{bottom:675.630000px;}
.y24_c00489{bottom:692.640000px;}
.y23_c00489{bottom:708.660000px;}
.y22_c00489{bottom:722.430000px;}
.y21_c00489{bottom:736.290000px;}
.y20_c00489{bottom:750.060000px;}
.y1f_c00489{bottom:763.830000px;}
.y1e_c00489{bottom:777.690000px;}
.y1b_c00489{bottom:791.460000px;}
.y1a_c00489{bottom:819.090000px;}
.y19_c00489{bottom:835.110000px;}
.y18_c00489{bottom:851.130000px;}
.y17_c00489{bottom:865.710000px;}
.y16_c00489{bottom:882.540000px;}
.y15_c00489{bottom:899.460000px;}
.y14_c00489{bottom:916.290000px;}
.y13_c00489{bottom:933.210000px;}
.y12_c00489{bottom:950.040000px;}
.y11_c00489{bottom:966.150000px;}
.y10_c00489{bottom:981.000000px;}
.yf_c00489{bottom:994.770000px;}
.ye_c00489{bottom:1010.790000px;}
.yd_c00489{bottom:1026.900000px;}
.yc_c00489{bottom:1040.670000px;}
.yb_c00489{bottom:1054.440000px;}
.ya_c00489{bottom:1068.300000px;}
.y8_c00489{bottom:1082.070000px;}
.y5_c00489{bottom:1095.840000px;}
.y4_c00489{bottom:1131.030000px;}
.y3_c00489{bottom:1150.915500px;}
.y2_c00489{bottom:1166.400000px;}
.y1_c00489{bottom:1197.450000px;}
.h7_c00489{height:13.770000px;}
.h9_c00489{height:13.858500px;}
.ha_c00489{height:13.860000px;}
.he_c00489{height:14.580000px;}
.h10_c00489{height:14.760000px;}
.hb_c00489{height:14.850000px;}
.h11_c00489{height:15.390000px;}
.h13_c00489{height:15.480000px;}
.hc_c00489{height:16.828500px;}
.h15_c00489{height:16.830000px;}
.h14_c00489{height:16.920000px;}
.hd_c00489{height:16.921500px;}
.h12_c00489{height:27.540000px;}
.hf_c00489{height:27.628500px;}
.h4_c00489{height:31.050000px;}
.h8_c00489{height:46.991602px;}
.h6_c00489{height:48.254063px;}
.h2_c00489{height:52.998047px;}
.h5_c00489{height:59.004492px;}
.h3_c00489{height:70.664062px;}
.h0_c00489{height:1262.880000px;}
.h1_c00489{height:1263.000000px;}
.w5_c00489{width:76.680000px;}
.w7_c00489{width:80.370000px;}
.wa_c00489{width:81.450000px;}
.w6_c00489{width:81.451500px;}
.w4_c00489{width:87.120000px;}
.w8_c00489{width:158.131500px;}
.w3_c00489{width:179.100000px;}
.w9_c00489{width:180.270000px;}
.w2_c00489{width:506.970000px;}
.w0_c00489{width:893.070000px;}
.w1_c00489{width:893.250000px;}
.x0_c00489{left:0.000000px;}
.xe_c00489{left:4.050000px;}
.x4_c00489{left:5.220000px;}
.x9_c00489{left:14.670000px;}
.x7_c00489{left:16.560000px;}
.xb_c00489{left:17.730000px;}
.x10_c00489{left:26.460000px;}
.xd_c00489{left:27.900000px;}
.x11_c00489{left:31.230000px;}
.x12_c00489{left:32.940000px;}
.x13_c00489{left:36.900000px;}
.x17_c00489{left:39.240000px;}
.xf_c00489{left:42.930000px;}
.x16_c00489{left:44.460000px;}
.x15_c00489{left:49.230000px;}
.x14_c00489{left:60.930000px;}
.x5_c00489{left:68.310000px;}
.x3_c00489{left:126.450000px;}
.x2_c00489{left:127.620000px;}
.x6_c00489{left:306.720000px;}
.x8_c00489{left:393.840000px;}
.x1_c00489{left:446.580000px;}
.xa_c00489{left:470.520000px;}
.xc_c00489{left:551.970000px;}
@media print{
.v1_c00489{vertical-align:-55.056000pt;}
.v0_c00489{vertical-align:0.000000pt;}
.ls4_c00489{letter-spacing:-0.127680pt;}
.ls3_c00489{letter-spacing:-0.085120pt;}
.ls2_c00489{letter-spacing:0.000000pt;}
.ls1_c00489{letter-spacing:0.170240pt;}
.ls0_c00489{letter-spacing:284.016000pt;}
.ws1_c00489{word-spacing:-10.810240pt;}
.ws0_c00489{word-spacing:-10.640000pt;}
.ws2_c00489{word-spacing:-10.554880pt;}
.ws7_c00489{word-spacing:-0.255360pt;}
.ws4_c00489{word-spacing:-0.144000pt;}
.ws5_c00489{word-spacing:-0.085120pt;}
.ws3_c00489{word-spacing:0.000000pt;}
.ws8_c00489{word-spacing:0.042560pt;}
.ws6_c00489{word-spacing:0.255360pt;}
._1_c00489{margin-left:-1.012928pt;}
._0_c00489{width:1.038464pt;}
._2_c00489{width:752.000000pt;}
.fs3_c00489{font-size:42.560000pt;}
.fs0_c00489{font-size:48.000000pt;}
.fs2_c00489{font-size:53.440000pt;}
.fs1_c00489{font-size:64.000000pt;}
.y1d_c00489{bottom:-9.680000pt;}
.y0_c00489{bottom:0.000000pt;}
.y9_c00489{bottom:2.560000pt;}
.y7_c00489{bottom:2.640000pt;}
.y32_c00489{bottom:14.800000pt;}
.y1c_c00489{bottom:14.880000pt;}
.y6_c00489{bottom:15.360000pt;}
.y47_c00489{bottom:50.880000pt;}
.y46_c00489{bottom:147.120000pt;}
.y45_c00489{bottom:161.840000pt;}
.y44_c00489{bottom:176.160000pt;}
.y43_c00489{bottom:190.400000pt;}
.y42_c00489{bottom:202.640000pt;}
.y41_c00489{bottom:217.680000pt;}
.y40_c00489{bottom:232.640000pt;}
.y3f_c00489{bottom:247.680000pt;}
.y3e_c00489{bottom:262.640000pt;}
.y3d_c00489{bottom:277.680000pt;}
.y3c_c00489{bottom:291.920000pt;}
.y3b_c00489{bottom:304.240000pt;}
.y3a_c00489{bottom:316.480000pt;}
.y39_c00489{bottom:330.720000pt;}
.y38_c00489{bottom:345.040000pt;}
.y37_c00489{bottom:357.280000pt;}
.y36_c00489{bottom:369.520000pt;}
.y35_c00489{bottom:383.280000pt;}
.y34_c00489{bottom:395.520000pt;}
.y33_c00489{bottom:407.760000pt;}
.y31_c00489{bottom:420.080000pt;}
.y30_c00489{bottom:444.560000pt;}
.y2f_c00489{bottom:460.240000pt;}
.y2e_c00489{bottom:474.560000pt;}
.y2d_c00489{bottom:486.800000pt;}
.y2c_c00489{bottom:501.760000pt;}
.y2b_c00489{bottom:516.800000pt;}
.y2a_c00489{bottom:531.760000pt;}
.y29_c00489{bottom:546.800000pt;}
.y28_c00489{bottom:561.760000pt;}
.y27_c00489{bottom:576.080000pt;}
.y26_c00489{bottom:588.320000pt;}
.y25_c00489{bottom:600.560000pt;}
.y24_c00489{bottom:615.680000pt;}
.y23_c00489{bottom:629.920000pt;}
.y22_c00489{bottom:642.160000pt;}
.y21_c00489{bottom:654.480000pt;}
.y20_c00489{bottom:666.720000pt;}
.y1f_c00489{bottom:678.960000pt;}
.y1e_c00489{bottom:691.280000pt;}
.y1b_c00489{bottom:703.520000pt;}
.y1a_c00489{bottom:728.080000pt;}
.y19_c00489{bottom:742.320000pt;}
.y18_c00489{bottom:756.560000pt;}
.y17_c00489{bottom:769.520000pt;}
.y16_c00489{bottom:784.480000pt;}
.y15_c00489{bottom:799.520000pt;}
.y14_c00489{bottom:814.480000pt;}
.y13_c00489{bottom:829.520000pt;}
.y12_c00489{bottom:844.480000pt;}
.y11_c00489{bottom:858.800000pt;}
.y10_c00489{bottom:872.000000pt;}
.yf_c00489{bottom:884.240000pt;}
.ye_c00489{bottom:898.480000pt;}
.yd_c00489{bottom:912.800000pt;}
.yc_c00489{bottom:925.040000pt;}
.yb_c00489{bottom:937.280000pt;}
.ya_c00489{bottom:949.600000pt;}
.y8_c00489{bottom:961.840000pt;}
.y5_c00489{bottom:974.080000pt;}
.y4_c00489{bottom:1005.360000pt;}
.y3_c00489{bottom:1023.036000pt;}
.y2_c00489{bottom:1036.800000pt;}
.y1_c00489{bottom:1064.400000pt;}
.h7_c00489{height:12.240000pt;}
.h9_c00489{height:12.318667pt;}
.ha_c00489{height:12.320000pt;}
.he_c00489{height:12.960000pt;}
.h10_c00489{height:13.120000pt;}
.hb_c00489{height:13.200000pt;}
.h11_c00489{height:13.680000pt;}
.h13_c00489{height:13.760000pt;}
.hc_c00489{height:14.958667pt;}
.h15_c00489{height:14.960000pt;}
.h14_c00489{height:15.040000pt;}
.hd_c00489{height:15.041333pt;}
.h12_c00489{height:24.480000pt;}
.hf_c00489{height:24.558667pt;}
.h4_c00489{height:27.600000pt;}
.h8_c00489{height:41.770312pt;}
.h6_c00489{height:42.892500pt;}
.h2_c00489{height:47.109375pt;}
.h5_c00489{height:52.448437pt;}
.h3_c00489{height:62.812500pt;}
.h0_c00489{height:1122.560000pt;}
.h1_c00489{height:1122.666667pt;}
.w5_c00489{width:68.160000pt;}
.w7_c00489{width:71.440000pt;}
.wa_c00489{width:72.400000pt;}
.w6_c00489{width:72.401333pt;}
.w4_c00489{width:77.440000pt;}
.w8_c00489{width:140.561333pt;}
.w3_c00489{width:159.200000pt;}
.w9_c00489{width:160.240000pt;}
.w2_c00489{width:450.640000pt;}
.w0_c00489{width:793.840000pt;}
.w1_c00489{width:794.000000pt;}
.x0_c00489{left:0.000000pt;}
.xe_c00489{left:3.600000pt;}
.x4_c00489{left:4.640000pt;}
.x9_c00489{left:13.040000pt;}
.x7_c00489{left:14.720000pt;}
.xb_c00489{left:15.760000pt;}
.x10_c00489{left:23.520000pt;}
.xd_c00489{left:24.800000pt;}
.x11_c00489{left:27.760000pt;}
.x12_c00489{left:29.280000pt;}
.x13_c00489{left:32.800000pt;}
.x17_c00489{left:34.880000pt;}
.xf_c00489{left:38.160000pt;}
.x16_c00489{left:39.520000pt;}
.x15_c00489{left:43.760000pt;}
.x14_c00489{left:54.160000pt;}
.x5_c00489{left:60.720000pt;}
.x3_c00489{left:112.400000pt;}
.x2_c00489{left:113.440000pt;}
.x6_c00489{left:272.640000pt;}
.x8_c00489{left:350.080000pt;}
.x1_c00489{left:396.960000pt;}
.xa_c00489{left:418.240000pt;}
.xc_c00489{left:490.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_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_dd6f2553e6ff97ab3b42b794.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_a1b53671558666e6f2631679.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls2_c00490{letter-spacing:-0.108000px;}
.ls3_c00490{letter-spacing:-0.095760px;}
.ls1_c00490{letter-spacing:0.000000px;}
.ls0_c00490{letter-spacing:0.191520px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00490{word-spacing:-12.161520px;}
.ws0_c00490{word-spacing:-11.970000px;}
.ws2_c00490{word-spacing:-11.874240px;}
.ws7_c00490{word-spacing:-0.287280px;}
.ws8_c00490{word-spacing:-0.191520px;}
.ws6_c00490{word-spacing:-0.095760px;}
.ws3_c00490{word-spacing:0.000000px;}
.ws5_c00490{word-spacing:0.162000px;}
.ws4_c00490{word-spacing:0.270000px;}
._1_c00490{margin-left:-1.058400px;}
._0_c00490{width:1.220400px;}
._2_c00490{width:846.000000px;}
.fc1_c00490{color:transparent;}
.fc0_c00490{color:rgb(0,0,0);}
.fs3_c00490{font-size:47.880000px;}
.fs0_c00490{font-size:54.000000px;}
.fs2_c00490{font-size:60.120000px;}
.fs1_c00490{font-size:72.000000px;}
.y1b_c00490{bottom:-10.890000px;}
.y0_c00490{bottom:0.000000px;}
.y1f_c00490{bottom:2.879850px;}
.ya_c00490{bottom:2.880000px;}
.y8_c00490{bottom:2.970000px;}
.y1a_c00490{bottom:16.650000px;}
.y7_c00490{bottom:17.280000px;}
.y45_c00490{bottom:57.240000px;}
.y44_c00490{bottom:173.610000px;}
.y43_c00490{bottom:190.170000px;}
.y42_c00490{bottom:206.280000px;}
.y41_c00490{bottom:222.300000px;}
.y40_c00490{bottom:236.070000px;}
.y3f_c00490{bottom:252.990000px;}
.y3e_c00490{bottom:269.820000px;}
.y3d_c00490{bottom:286.740000px;}
.y3c_c00490{bottom:303.570000px;}
.y3b_c00490{bottom:320.490000px;}
.y3a_c00490{bottom:340.740000px;}
.y39_c00490{bottom:358.740000px;}
.y38_c00490{bottom:375.570000px;}
.y37_c00490{bottom:395.820000px;}
.y36_c00490{bottom:417.240000px;}
.y35_c00490{bottom:432.540000px;}
.y34_c00490{bottom:446.310000px;}
.y33_c00490{bottom:460.080000px;}
.y32_c00490{bottom:473.940000px;}
.y31_c00490{bottom:487.710000px;}
.y30_c00490{bottom:501.480000px;}
.y2f_c00490{bottom:509.130000px;}
.y2e_c00490{bottom:525.240000px;}
.y2d_c00490{bottom:541.260000px;}
.y2c_c00490{bottom:555.030000px;}
.y2b_c00490{bottom:571.950000px;}
.y2a_c00490{bottom:588.780000px;}
.y29_c00490{bottom:605.700000px;}
.y28_c00490{bottom:622.530000px;}
.y27_c00490{bottom:639.450000px;}
.y26_c00490{bottom:659.700000px;}
.y25_c00490{bottom:677.700000px;}
.y24_c00490{bottom:694.530000px;}
.y23_c00490{bottom:714.780000px;}
.y22_c00490{bottom:736.200000px;}
.y21_c00490{bottom:749.970000px;}
.y20_c00490{bottom:763.740000px;}
.y1e_c00490{bottom:777.600000px;}
.y1d_c00490{bottom:791.370000px;}
.y1c_c00490{bottom:805.140000px;}
.y19_c00490{bottom:819.000000px;}
.y18_c00490{bottom:846.540000px;}
.y17_c00490{bottom:862.650000px;}
.y16_c00490{bottom:876.420000px;}
.y15_c00490{bottom:893.250000px;}
.y14_c00490{bottom:910.170000px;}
.y13_c00490{bottom:927.000000px;}
.y12_c00490{bottom:943.920000px;}
.y11_c00490{bottom:960.750000px;}
.y10_c00490{bottom:981.000000px;}
.yf_c00490{bottom:999.000000px;}
.ye_c00490{bottom:1019.250000px;}
.yd_c00490{bottom:1040.670000px;}
.yc_c00490{bottom:1054.440000px;}
.yb_c00490{bottom:1068.300000px;}
.y9_c00490{bottom:1082.070000px;}
.y6_c00490{bottom:1095.840000px;}
.y5_c00490{bottom:1131.030000px;}
.y4_c00490{bottom:1150.920000px;}
.y3_c00490{bottom:1166.404500px;}
.y2_c00490{bottom:1181.970000px;}
.y1_c00490{bottom:1197.450000px;}
.h13_c00490{height:7.648500px;}
.h8_c00490{height:13.770000px;}
.ha_c00490{height:13.858500px;}
.h10_c00490{height:13.860000px;}
.h14_c00490{height:15.300000px;}
.h12_c00490{height:16.828500px;}
.hd_c00490{height:16.830000px;}
.he_c00490{height:16.920000px;}
.h11_c00490{height:16.921500px;}
.hc_c00490{height:18.000000px;}
.hb_c00490{height:19.170000px;}
.hf_c00490{height:27.540000px;}
.h5_c00490{height:31.050000px;}
.h9_c00490{height:46.991602px;}
.h7_c00490{height:48.254063px;}
.h3_c00490{height:52.971680px;}
.h2_c00490{height:52.998047px;}
.h6_c00490{height:59.004492px;}
.h4_c00490{height:70.664062px;}
.h0_c00490{height:1262.880000px;}
.h1_c00490{height:1263.000000px;}
.w5_c00490{width:76.680000px;}
.w7_c00490{width:80.370000px;}
.wa_c00490{width:81.450000px;}
.w6_c00490{width:81.451500px;}
.w4_c00490{width:87.120000px;}
.w8_c00490{width:158.131500px;}
.w3_c00490{width:179.100000px;}
.w9_c00490{width:180.270000px;}
.w2_c00490{width:506.970000px;}
.w0_c00490{width:893.070000px;}
.w1_c00490{width:893.250000px;}
.x0_c00490{left:0.000000px;}
.xf_c00490{left:4.050000px;}
.x5_c00490{left:5.220000px;}
.xa_c00490{left:14.670000px;}
.x8_c00490{left:16.560000px;}
.xc_c00490{left:17.730000px;}
.x11_c00490{left:26.460000px;}
.xe_c00490{left:27.900000px;}
.x12_c00490{left:31.230000px;}
.x14_c00490{left:32.940000px;}
.x15_c00490{left:36.900000px;}
.x10_c00490{left:42.930000px;}
.x13_c00490{left:49.230000px;}
.x17_c00490{left:55.260000px;}
.x16_c00490{left:60.930000px;}
.x6_c00490{left:68.310000px;}
.x4_c00490{left:126.450000px;}
.x3_c00490{left:127.620000px;}
.x7_c00490{left:306.720000px;}
.x9_c00490{left:393.840000px;}
.x2_c00490{left:425.160000px;}
.x1_c00490{left:446.580000px;}
.xb_c00490{left:470.520000px;}
.xd_c00490{left:551.970000px;}
.x18_c00490{left:738.540000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls2_c00490{letter-spacing:-0.096000pt;}
.ls3_c00490{letter-spacing:-0.085120pt;}
.ls1_c00490{letter-spacing:0.000000pt;}
.ls0_c00490{letter-spacing:0.170240pt;}
.ws1_c00490{word-spacing:-10.810240pt;}
.ws0_c00490{word-spacing:-10.640000pt;}
.ws2_c00490{word-spacing:-10.554880pt;}
.ws7_c00490{word-spacing:-0.255360pt;}
.ws8_c00490{word-spacing:-0.170240pt;}
.ws6_c00490{word-spacing:-0.085120pt;}
.ws3_c00490{word-spacing:0.000000pt;}
.ws5_c00490{word-spacing:0.144000pt;}
.ws4_c00490{word-spacing:0.240000pt;}
._1_c00490{margin-left:-0.940800pt;}
._0_c00490{width:1.084800pt;}
._2_c00490{width:752.000000pt;}
.fs3_c00490{font-size:42.560000pt;}
.fs0_c00490{font-size:48.000000pt;}
.fs2_c00490{font-size:53.440000pt;}
.fs1_c00490{font-size:64.000000pt;}
.y1b_c00490{bottom:-9.680000pt;}
.y0_c00490{bottom:0.000000pt;}
.y1f_c00490{bottom:2.559867pt;}
.ya_c00490{bottom:2.560000pt;}
.y8_c00490{bottom:2.640000pt;}
.y1a_c00490{bottom:14.800000pt;}
.y7_c00490{bottom:15.360000pt;}
.y45_c00490{bottom:50.880000pt;}
.y44_c00490{bottom:154.320000pt;}
.y43_c00490{bottom:169.040000pt;}
.y42_c00490{bottom:183.360000pt;}
.y41_c00490{bottom:197.600000pt;}
.y40_c00490{bottom:209.840000pt;}
.y3f_c00490{bottom:224.880000pt;}
.y3e_c00490{bottom:239.840000pt;}
.y3d_c00490{bottom:254.880000pt;}
.y3c_c00490{bottom:269.840000pt;}
.y3b_c00490{bottom:284.880000pt;}
.y3a_c00490{bottom:302.880000pt;}
.y39_c00490{bottom:318.880000pt;}
.y38_c00490{bottom:333.840000pt;}
.y37_c00490{bottom:351.840000pt;}
.y36_c00490{bottom:370.880000pt;}
.y35_c00490{bottom:384.480000pt;}
.y34_c00490{bottom:396.720000pt;}
.y33_c00490{bottom:408.960000pt;}
.y32_c00490{bottom:421.280000pt;}
.y31_c00490{bottom:433.520000pt;}
.y30_c00490{bottom:445.760000pt;}
.y2f_c00490{bottom:452.560000pt;}
.y2e_c00490{bottom:466.880000pt;}
.y2d_c00490{bottom:481.120000pt;}
.y2c_c00490{bottom:493.360000pt;}
.y2b_c00490{bottom:508.400000pt;}
.y2a_c00490{bottom:523.360000pt;}
.y29_c00490{bottom:538.400000pt;}
.y28_c00490{bottom:553.360000pt;}
.y27_c00490{bottom:568.400000pt;}
.y26_c00490{bottom:586.400000pt;}
.y25_c00490{bottom:602.400000pt;}
.y24_c00490{bottom:617.360000pt;}
.y23_c00490{bottom:635.360000pt;}
.y22_c00490{bottom:654.400000pt;}
.y21_c00490{bottom:666.640000pt;}
.y20_c00490{bottom:678.880000pt;}
.y1e_c00490{bottom:691.200000pt;}
.y1d_c00490{bottom:703.440000pt;}
.y1c_c00490{bottom:715.680000pt;}
.y19_c00490{bottom:728.000000pt;}
.y18_c00490{bottom:752.480000pt;}
.y17_c00490{bottom:766.800000pt;}
.y16_c00490{bottom:779.040000pt;}
.y15_c00490{bottom:794.000000pt;}
.y14_c00490{bottom:809.040000pt;}
.y13_c00490{bottom:824.000000pt;}
.y12_c00490{bottom:839.040000pt;}
.y11_c00490{bottom:854.000000pt;}
.y10_c00490{bottom:872.000000pt;}
.yf_c00490{bottom:888.000000pt;}
.ye_c00490{bottom:906.000000pt;}
.yd_c00490{bottom:925.040000pt;}
.yc_c00490{bottom:937.280000pt;}
.yb_c00490{bottom:949.600000pt;}
.y9_c00490{bottom:961.840000pt;}
.y6_c00490{bottom:974.080000pt;}
.y5_c00490{bottom:1005.360000pt;}
.y4_c00490{bottom:1023.040000pt;}
.y3_c00490{bottom:1036.804000pt;}
.y2_c00490{bottom:1050.640000pt;}
.y1_c00490{bottom:1064.400000pt;}
.h13_c00490{height:6.798667pt;}
.h8_c00490{height:12.240000pt;}
.ha_c00490{height:12.318667pt;}
.h10_c00490{height:12.320000pt;}
.h14_c00490{height:13.600000pt;}
.h12_c00490{height:14.958667pt;}
.hd_c00490{height:14.960000pt;}
.he_c00490{height:15.040000pt;}
.h11_c00490{height:15.041333pt;}
.hc_c00490{height:16.000000pt;}
.hb_c00490{height:17.040000pt;}
.hf_c00490{height:24.480000pt;}
.h5_c00490{height:27.600000pt;}
.h9_c00490{height:41.770312pt;}
.h7_c00490{height:42.892500pt;}
.h3_c00490{height:47.085938pt;}
.h2_c00490{height:47.109375pt;}
.h6_c00490{height:52.448437pt;}
.h4_c00490{height:62.812500pt;}
.h0_c00490{height:1122.560000pt;}
.h1_c00490{height:1122.666667pt;}
.w5_c00490{width:68.160000pt;}
.w7_c00490{width:71.440000pt;}
.wa_c00490{width:72.400000pt;}
.w6_c00490{width:72.401333pt;}
.w4_c00490{width:77.440000pt;}
.w8_c00490{width:140.561333pt;}
.w3_c00490{width:159.200000pt;}
.w9_c00490{width:160.240000pt;}
.w2_c00490{width:450.640000pt;}
.w0_c00490{width:793.840000pt;}
.w1_c00490{width:794.000000pt;}
.x0_c00490{left:0.000000pt;}
.xf_c00490{left:3.600000pt;}
.x5_c00490{left:4.640000pt;}
.xa_c00490{left:13.040000pt;}
.x8_c00490{left:14.720000pt;}
.xc_c00490{left:15.760000pt;}
.x11_c00490{left:23.520000pt;}
.xe_c00490{left:24.800000pt;}
.x12_c00490{left:27.760000pt;}
.x14_c00490{left:29.280000pt;}
.x15_c00490{left:32.800000pt;}
.x10_c00490{left:38.160000pt;}
.x13_c00490{left:43.760000pt;}
.x17_c00490{left:49.120000pt;}
.x16_c00490{left:54.160000pt;}
.x6_c00490{left:60.720000pt;}
.x4_c00490{left:112.400000pt;}
.x3_c00490{left:113.440000pt;}
.x7_c00490{left:272.640000pt;}
.x9_c00490{left:350.080000pt;}
.x2_c00490{left:377.920000pt;}
.x1_c00490{left:396.960000pt;}
.xb_c00490{left:418.240000pt;}
.xd_c00490{left:490.640000pt;}
.x18_c00490{left:656.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_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_b0f62d43df35d4313a252db6.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_d2f0a5189a83ce4f0d823637.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00491{vertical-align:-61.938000px;}
.v0_c00491{vertical-align:0.000000px;}
.ls3_c00491{letter-spacing:-0.095760px;}
.ls2_c00491{letter-spacing:0.000000px;}
.ls1_c00491{letter-spacing:0.191520px;}
.ls4_c00491{letter-spacing:0.335160px;}
.ls0_c00491{letter-spacing:319.518000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00491{word-spacing:-12.161520px;}
.ws0_c00491{word-spacing:-11.970000px;}
.ws2_c00491{word-spacing:-11.874240px;}
.ws8_c00491{word-spacing:-0.430920px;}
.ws7_c00491{word-spacing:-0.287280px;}
.ws4_c00491{word-spacing:-0.162000px;}
.ws5_c00491{word-spacing:-0.095760px;}
.ws3_c00491{word-spacing:0.000000px;}
.ws6_c00491{word-spacing:0.287280px;}
._1_c00491{margin-left:-1.139544px;}
._0_c00491{width:1.168272px;}
._2_c00491{width:846.000000px;}
.fc1_c00491{color:transparent;}
.fc0_c00491{color:rgb(0,0,0);}
.fs3_c00491{font-size:47.880000px;}
.fs0_c00491{font-size:54.000000px;}
.fs2_c00491{font-size:60.120000px;}
.fs1_c00491{font-size:72.000000px;}
.y19_c00491{bottom:-10.890000px;}
.y0_c00491{bottom:0.000000px;}
.y1b_c00491{bottom:2.879850px;}
.y9_c00491{bottom:2.880000px;}
.y7_c00491{bottom:2.970000px;}
.y6_c00491{bottom:17.280000px;}
.y3d_c00491{bottom:57.240000px;}
.y3c_c00491{bottom:173.070000px;}
.y3b_c00491{bottom:189.630000px;}
.y3a_c00491{bottom:209.880000px;}
.y39_c00491{bottom:227.880000px;}
.y38_c00491{bottom:244.800000px;}
.y37_c00491{bottom:261.630000px;}
.y36_c00491{bottom:278.550000px;}
.y35_c00491{bottom:295.380000px;}
.y34_c00491{bottom:312.300000px;}
.y33_c00491{bottom:332.550000px;}
.y32_c00491{bottom:350.550000px;}
.y31_c00491{bottom:370.800000px;}
.y30_c00491{bottom:392.130000px;}
.y2f_c00491{bottom:410.130000px;}
.y2e_c00491{bottom:427.050000px;}
.y2d_c00491{bottom:443.880000px;}
.y2c_c00491{bottom:460.800000px;}
.y2b_c00491{bottom:477.630000px;}
.y2a_c00491{bottom:506.430000px;}
.y29_c00491{bottom:526.680000px;}
.y28_c00491{bottom:544.680000px;}
.y27_c00491{bottom:561.600000px;}
.y26_c00491{bottom:578.430000px;}
.y25_c00491{bottom:595.350000px;}
.y24_c00491{bottom:612.180000px;}
.y23_c00491{bottom:629.100000px;}
.y22_c00491{bottom:649.350000px;}
.y21_c00491{bottom:667.350000px;}
.y20_c00491{bottom:687.600000px;}
.y1f_c00491{bottom:708.930000px;}
.y1e_c00491{bottom:726.930000px;}
.y1d_c00491{bottom:743.850000px;}
.y1c_c00491{bottom:760.680000px;}
.y1a_c00491{bottom:777.600000px;}
.y18_c00491{bottom:799.200000px;}
.y17_c00491{bottom:824.760000px;}
.y16_c00491{bottom:845.010000px;}
.y15_c00491{bottom:863.010000px;}
.y14_c00491{bottom:879.840000px;}
.y13_c00491{bottom:896.760000px;}
.y12_c00491{bottom:913.590000px;}
.y11_c00491{bottom:930.510000px;}
.y10_c00491{bottom:947.340000px;}
.yf_c00491{bottom:967.590000px;}
.ye_c00491{bottom:985.590000px;}
.yd_c00491{bottom:1005.840000px;}
.yc_c00491{bottom:1027.260000px;}
.yb_c00491{bottom:1045.260000px;}
.ya_c00491{bottom:1062.090000px;}
.y8_c00491{bottom:1079.010000px;}
.y5_c00491{bottom:1095.840000px;}
.y4_c00491{bottom:1131.030000px;}
.y3_c00491{bottom:1150.915500px;}
.y2_c00491{bottom:1166.400000px;}
.y1_c00491{bottom:1197.450000px;}
.h7_c00491{height:16.828500px;}
.h10_c00491{height:16.830000px;}
.hf_c00491{height:16.920000px;}
.h9_c00491{height:16.921500px;}
.hc_c00491{height:18.000000px;}
.ha_c00491{height:18.001500px;}
.h13_c00491{height:19.080000px;}
.h11_c00491{height:19.081500px;}
.hb_c00491{height:19.170000px;}
.he_c00491{height:21.600000px;}
.hd_c00491{height:25.560000px;}
.h12_c00491{height:28.800000px;}
.h4_c00491{height:31.050000px;}
.h8_c00491{height:46.991602px;}
.h6_c00491{height:48.254063px;}
.h2_c00491{height:52.998047px;}
.h5_c00491{height:59.004492px;}
.h3_c00491{height:70.664062px;}
.h0_c00491{height:1262.880000px;}
.h1_c00491{height:1263.000000px;}
.w5_c00491{width:76.680000px;}
.w7_c00491{width:80.370000px;}
.wa_c00491{width:81.450000px;}
.w6_c00491{width:81.451500px;}
.w4_c00491{width:87.120000px;}
.w8_c00491{width:158.131500px;}
.w3_c00491{width:179.100000px;}
.w9_c00491{width:180.270000px;}
.w2_c00491{width:506.970000px;}
.w0_c00491{width:893.070000px;}
.w1_c00491{width:893.250000px;}
.x0_c00491{left:0.000000px;}
.xe_c00491{left:4.050000px;}
.x4_c00491{left:5.220000px;}
.x9_c00491{left:14.670000px;}
.x7_c00491{left:16.560000px;}
.xb_c00491{left:17.730000px;}
.x10_c00491{left:26.460000px;}
.xd_c00491{left:27.900000px;}
.x11_c00491{left:31.230000px;}
.x13_c00491{left:32.940000px;}
.xf_c00491{left:36.900000px;}
.x12_c00491{left:43.200000px;}
.x5_c00491{left:68.310000px;}
.x3_c00491{left:126.450000px;}
.x2_c00491{left:127.620000px;}
.x6_c00491{left:306.720000px;}
.x8_c00491{left:393.840000px;}
.x1_c00491{left:446.580000px;}
.xa_c00491{left:470.520000px;}
.xc_c00491{left:551.970000px;}
@media print{
.v1_c00491{vertical-align:-55.056000pt;}
.v0_c00491{vertical-align:0.000000pt;}
.ls3_c00491{letter-spacing:-0.085120pt;}
.ls2_c00491{letter-spacing:0.000000pt;}
.ls1_c00491{letter-spacing:0.170240pt;}
.ls4_c00491{letter-spacing:0.297920pt;}
.ls0_c00491{letter-spacing:284.016000pt;}
.ws1_c00491{word-spacing:-10.810240pt;}
.ws0_c00491{word-spacing:-10.640000pt;}
.ws2_c00491{word-spacing:-10.554880pt;}
.ws8_c00491{word-spacing:-0.383040pt;}
.ws7_c00491{word-spacing:-0.255360pt;}
.ws4_c00491{word-spacing:-0.144000pt;}
.ws5_c00491{word-spacing:-0.085120pt;}
.ws3_c00491{word-spacing:0.000000pt;}
.ws6_c00491{word-spacing:0.255360pt;}
._1_c00491{margin-left:-1.012928pt;}
._0_c00491{width:1.038464pt;}
._2_c00491{width:752.000000pt;}
.fs3_c00491{font-size:42.560000pt;}
.fs0_c00491{font-size:48.000000pt;}
.fs2_c00491{font-size:53.440000pt;}
.fs1_c00491{font-size:64.000000pt;}
.y19_c00491{bottom:-9.680000pt;}
.y0_c00491{bottom:0.000000pt;}
.y1b_c00491{bottom:2.559867pt;}
.y9_c00491{bottom:2.560000pt;}
.y7_c00491{bottom:2.640000pt;}
.y6_c00491{bottom:15.360000pt;}
.y3d_c00491{bottom:50.880000pt;}
.y3c_c00491{bottom:153.840000pt;}
.y3b_c00491{bottom:168.560000pt;}
.y3a_c00491{bottom:186.560000pt;}
.y39_c00491{bottom:202.560000pt;}
.y38_c00491{bottom:217.600000pt;}
.y37_c00491{bottom:232.560000pt;}
.y36_c00491{bottom:247.600000pt;}
.y35_c00491{bottom:262.560000pt;}
.y34_c00491{bottom:277.600000pt;}
.y33_c00491{bottom:295.600000pt;}
.y32_c00491{bottom:311.600000pt;}
.y31_c00491{bottom:329.600000pt;}
.y30_c00491{bottom:348.560000pt;}
.y2f_c00491{bottom:364.560000pt;}
.y2e_c00491{bottom:379.600000pt;}
.y2d_c00491{bottom:394.560000pt;}
.y2c_c00491{bottom:409.600000pt;}
.y2b_c00491{bottom:424.560000pt;}
.y2a_c00491{bottom:450.160000pt;}
.y29_c00491{bottom:468.160000pt;}
.y28_c00491{bottom:484.160000pt;}
.y27_c00491{bottom:499.200000pt;}
.y26_c00491{bottom:514.160000pt;}
.y25_c00491{bottom:529.200000pt;}
.y24_c00491{bottom:544.160000pt;}
.y23_c00491{bottom:559.200000pt;}
.y22_c00491{bottom:577.200000pt;}
.y21_c00491{bottom:593.200000pt;}
.y20_c00491{bottom:611.200000pt;}
.y1f_c00491{bottom:630.160000pt;}
.y1e_c00491{bottom:646.160000pt;}
.y1d_c00491{bottom:661.200000pt;}
.y1c_c00491{bottom:676.160000pt;}
.y1a_c00491{bottom:691.200000pt;}
.y18_c00491{bottom:710.400000pt;}
.y17_c00491{bottom:733.120000pt;}
.y16_c00491{bottom:751.120000pt;}
.y15_c00491{bottom:767.120000pt;}
.y14_c00491{bottom:782.080000pt;}
.y13_c00491{bottom:797.120000pt;}
.y12_c00491{bottom:812.080000pt;}
.y11_c00491{bottom:827.120000pt;}
.y10_c00491{bottom:842.080000pt;}
.yf_c00491{bottom:860.080000pt;}
.ye_c00491{bottom:876.080000pt;}
.yd_c00491{bottom:894.080000pt;}
.yc_c00491{bottom:913.120000pt;}
.yb_c00491{bottom:929.120000pt;}
.ya_c00491{bottom:944.080000pt;}
.y8_c00491{bottom:959.120000pt;}
.y5_c00491{bottom:974.080000pt;}
.y4_c00491{bottom:1005.360000pt;}
.y3_c00491{bottom:1023.036000pt;}
.y2_c00491{bottom:1036.800000pt;}
.y1_c00491{bottom:1064.400000pt;}
.h7_c00491{height:14.958667pt;}
.h10_c00491{height:14.960000pt;}
.hf_c00491{height:15.040000pt;}
.h9_c00491{height:15.041333pt;}
.hc_c00491{height:16.000000pt;}
.ha_c00491{height:16.001333pt;}
.h13_c00491{height:16.960000pt;}
.h11_c00491{height:16.961333pt;}
.hb_c00491{height:17.040000pt;}
.he_c00491{height:19.200000pt;}
.hd_c00491{height:22.720000pt;}
.h12_c00491{height:25.600000pt;}
.h4_c00491{height:27.600000pt;}
.h8_c00491{height:41.770312pt;}
.h6_c00491{height:42.892500pt;}
.h2_c00491{height:47.109375pt;}
.h5_c00491{height:52.448437pt;}
.h3_c00491{height:62.812500pt;}
.h0_c00491{height:1122.560000pt;}
.h1_c00491{height:1122.666667pt;}
.w5_c00491{width:68.160000pt;}
.w7_c00491{width:71.440000pt;}
.wa_c00491{width:72.400000pt;}
.w6_c00491{width:72.401333pt;}
.w4_c00491{width:77.440000pt;}
.w8_c00491{width:140.561333pt;}
.w3_c00491{width:159.200000pt;}
.w9_c00491{width:160.240000pt;}
.w2_c00491{width:450.640000pt;}
.w0_c00491{width:793.840000pt;}
.w1_c00491{width:794.000000pt;}
.x0_c00491{left:0.000000pt;}
.xe_c00491{left:3.600000pt;}
.x4_c00491{left:4.640000pt;}
.x9_c00491{left:13.040000pt;}
.x7_c00491{left:14.720000pt;}
.xb_c00491{left:15.760000pt;}
.x10_c00491{left:23.520000pt;}
.xd_c00491{left:24.800000pt;}
.x11_c00491{left:27.760000pt;}
.x13_c00491{left:29.280000pt;}
.xf_c00491{left:32.800000pt;}
.x12_c00491{left:38.400000pt;}
.x5_c00491{left:60.720000pt;}
.x3_c00491{left:112.400000pt;}
.x2_c00491{left:113.440000pt;}
.x6_c00491{left:272.640000pt;}
.x8_c00491{left:350.080000pt;}
.x1_c00491{left:396.960000pt;}
.xa_c00491{left:418.240000pt;}
.xc_c00491{left:490.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_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_dd6f2553e6ff97ab3b42b794.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_953e4e1f6b4b8fa2ba108009.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls2_c00492{letter-spacing:-0.108000px;}
.ls3_c00492{letter-spacing:-0.095760px;}
.ls1_c00492{letter-spacing:0.000000px;}
.ls4_c00492{letter-spacing:0.095760px;}
.ls0_c00492{letter-spacing:0.191520px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00492{word-spacing:-12.161520px;}
.ws0_c00492{word-spacing:-11.970000px;}
.ws2_c00492{word-spacing:-11.874240px;}
.ws7_c00492{word-spacing:-0.287280px;}
.ws8_c00492{word-spacing:-0.191520px;}
.ws6_c00492{word-spacing:-0.095760px;}
.ws3_c00492{word-spacing:0.000000px;}
.ws5_c00492{word-spacing:0.162000px;}
.ws9_c00492{word-spacing:0.191520px;}
.ws4_c00492{word-spacing:0.270000px;}
._1_c00492{margin-left:-1.058400px;}
._0_c00492{width:1.220400px;}
._2_c00492{width:846.000000px;}
.fc1_c00492{color:transparent;}
.fc0_c00492{color:rgb(0,0,0);}
.fs3_c00492{font-size:47.880000px;}
.fs0_c00492{font-size:54.000000px;}
.fs2_c00492{font-size:60.120000px;}
.fs1_c00492{font-size:72.000000px;}
.y1e_c00492{bottom:-10.890000px;}
.y0_c00492{bottom:0.000000px;}
.ya_c00492{bottom:2.880000px;}
.y8_c00492{bottom:2.970000px;}
.y33_c00492{bottom:16.650000px;}
.y1d_c00492{bottom:16.740000px;}
.y7_c00492{bottom:17.280000px;}
.y48_c00492{bottom:57.240000px;}
.y47_c00492{bottom:169.110000px;}
.y46_c00492{bottom:185.670000px;}
.y45_c00492{bottom:201.690000px;}
.y44_c00492{bottom:217.710000px;}
.y43_c00492{bottom:231.570000px;}
.y42_c00492{bottom:248.400000px;}
.y41_c00492{bottom:265.320000px;}
.y40_c00492{bottom:282.150000px;}
.y3f_c00492{bottom:299.070000px;}
.y3e_c00492{bottom:315.900000px;}
.y3d_c00492{bottom:331.920000px;}
.y3c_c00492{bottom:345.780000px;}
.y3b_c00492{bottom:359.550000px;}
.y3a_c00492{bottom:375.570000px;}
.y39_c00492{bottom:391.680000px;}
.y38_c00492{bottom:405.450000px;}
.y37_c00492{bottom:419.220000px;}
.y36_c00492{bottom:433.080000px;}
.y35_c00492{bottom:446.850000px;}
.y34_c00492{bottom:460.620000px;}
.y32_c00492{bottom:474.480000px;}
.y31_c00492{bottom:502.020000px;}
.y30_c00492{bottom:518.130000px;}
.y2f_c00492{bottom:534.150000px;}
.y2e_c00492{bottom:547.920000px;}
.y2d_c00492{bottom:564.840000px;}
.y2c_c00492{bottom:581.670000px;}
.y2b_c00492{bottom:598.590000px;}
.y2a_c00492{bottom:615.420000px;}
.y29_c00492{bottom:632.340000px;}
.y28_c00492{bottom:648.360000px;}
.y27_c00492{bottom:662.130000px;}
.y26_c00492{bottom:675.990000px;}
.y25_c00492{bottom:689.760000px;}
.y24_c00492{bottom:705.780000px;}
.y23_c00492{bottom:719.640000px;}
.y22_c00492{bottom:733.410000px;}
.y21_c00492{bottom:747.180000px;}
.y20_c00492{bottom:761.040000px;}
.y1f_c00492{bottom:774.810000px;}
.y1c_c00492{bottom:788.580000px;}
.y1b_c00492{bottom:816.210000px;}
.y1a_c00492{bottom:832.230000px;}
.y19_c00492{bottom:848.340000px;}
.y18_c00492{bottom:862.110000px;}
.y17_c00492{bottom:878.940000px;}
.y16_c00492{bottom:895.860000px;}
.y15_c00492{bottom:912.690000px;}
.y14_c00492{bottom:929.610000px;}
.y13_c00492{bottom:946.440000px;}
.y12_c00492{bottom:966.690000px;}
.y11_c00492{bottom:980.550000px;}
.y10_c00492{bottom:994.320000px;}
.yf_c00492{bottom:1010.790000px;}
.ye_c00492{bottom:1026.900000px;}
.yd_c00492{bottom:1040.670000px;}
.yc_c00492{bottom:1054.440000px;}
.yb_c00492{bottom:1068.300000px;}
.y9_c00492{bottom:1082.070000px;}
.y6_c00492{bottom:1095.840000px;}
.y5_c00492{bottom:1131.030000px;}
.y4_c00492{bottom:1150.920000px;}
.y3_c00492{bottom:1166.404500px;}
.y2_c00492{bottom:1181.970000px;}
.y1_c00492{bottom:1197.450000px;}
.h8_c00492{height:13.770000px;}
.ha_c00492{height:13.858500px;}
.hb_c00492{height:13.860000px;}
.hc_c00492{height:14.221500px;}
.he_c00492{height:16.830000px;}
.hf_c00492{height:16.920000px;}
.hd_c00492{height:18.000000px;}
.h11_c00492{height:27.540000px;}
.h10_c00492{height:27.630000px;}
.h5_c00492{height:31.050000px;}
.h9_c00492{height:46.991602px;}
.h7_c00492{height:48.254063px;}
.h3_c00492{height:52.971680px;}
.h2_c00492{height:52.998047px;}
.h6_c00492{height:59.004492px;}
.h4_c00492{height:70.664062px;}
.h0_c00492{height:1262.880000px;}
.h1_c00492{height:1263.000000px;}
.w5_c00492{width:76.680000px;}
.w7_c00492{width:80.370000px;}
.wa_c00492{width:81.450000px;}
.w6_c00492{width:81.451500px;}
.w4_c00492{width:87.120000px;}
.w8_c00492{width:158.131500px;}
.w3_c00492{width:179.100000px;}
.w9_c00492{width:180.270000px;}
.w2_c00492{width:506.970000px;}
.w0_c00492{width:893.070000px;}
.w1_c00492{width:893.250000px;}
.x0_c00492{left:0.000000px;}
.xf_c00492{left:4.050000px;}
.x5_c00492{left:5.220000px;}
.xa_c00492{left:14.670000px;}
.x8_c00492{left:16.560000px;}
.xc_c00492{left:17.730000px;}
.x11_c00492{left:26.460000px;}
.xe_c00492{left:27.900000px;}
.x12_c00492{left:31.230000px;}
.x14_c00492{left:32.940000px;}
.x10_c00492{left:36.900000px;}
.x13_c00492{left:43.200000px;}
.x15_c00492{left:49.230000px;}
.x17_c00492{left:56.880000px;}
.x16_c00492{left:60.930000px;}
.x18_c00492{left:66.870000px;}
.x6_c00492{left:68.310000px;}
.x4_c00492{left:126.450000px;}
.x3_c00492{left:127.620000px;}
.x7_c00492{left:306.720000px;}
.x9_c00492{left:393.840000px;}
.x2_c00492{left:425.160000px;}
.x1_c00492{left:446.580000px;}
.xb_c00492{left:470.520000px;}
.xd_c00492{left:551.970000px;}
.x19_c00492{left:738.540000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls2_c00492{letter-spacing:-0.096000pt;}
.ls3_c00492{letter-spacing:-0.085120pt;}
.ls1_c00492{letter-spacing:0.000000pt;}
.ls4_c00492{letter-spacing:0.085120pt;}
.ls0_c00492{letter-spacing:0.170240pt;}
.ws1_c00492{word-spacing:-10.810240pt;}
.ws0_c00492{word-spacing:-10.640000pt;}
.ws2_c00492{word-spacing:-10.554880pt;}
.ws7_c00492{word-spacing:-0.255360pt;}
.ws8_c00492{word-spacing:-0.170240pt;}
.ws6_c00492{word-spacing:-0.085120pt;}
.ws3_c00492{word-spacing:0.000000pt;}
.ws5_c00492{word-spacing:0.144000pt;}
.ws9_c00492{word-spacing:0.170240pt;}
.ws4_c00492{word-spacing:0.240000pt;}
._1_c00492{margin-left:-0.940800pt;}
._0_c00492{width:1.084800pt;}
._2_c00492{width:752.000000pt;}
.fs3_c00492{font-size:42.560000pt;}
.fs0_c00492{font-size:48.000000pt;}
.fs2_c00492{font-size:53.440000pt;}
.fs1_c00492{font-size:64.000000pt;}
.y1e_c00492{bottom:-9.680000pt;}
.y0_c00492{bottom:0.000000pt;}
.ya_c00492{bottom:2.560000pt;}
.y8_c00492{bottom:2.640000pt;}
.y33_c00492{bottom:14.800000pt;}
.y1d_c00492{bottom:14.880000pt;}
.y7_c00492{bottom:15.360000pt;}
.y48_c00492{bottom:50.880000pt;}
.y47_c00492{bottom:150.320000pt;}
.y46_c00492{bottom:165.040000pt;}
.y45_c00492{bottom:179.280000pt;}
.y44_c00492{bottom:193.520000pt;}
.y43_c00492{bottom:205.840000pt;}
.y42_c00492{bottom:220.800000pt;}
.y41_c00492{bottom:235.840000pt;}
.y40_c00492{bottom:250.800000pt;}
.y3f_c00492{bottom:265.840000pt;}
.y3e_c00492{bottom:280.800000pt;}
.y3d_c00492{bottom:295.040000pt;}
.y3c_c00492{bottom:307.360000pt;}
.y3b_c00492{bottom:319.600000pt;}
.y3a_c00492{bottom:333.840000pt;}
.y39_c00492{bottom:348.160000pt;}
.y38_c00492{bottom:360.400000pt;}
.y37_c00492{bottom:372.640000pt;}
.y36_c00492{bottom:384.960000pt;}
.y35_c00492{bottom:397.200000pt;}
.y34_c00492{bottom:409.440000pt;}
.y32_c00492{bottom:421.760000pt;}
.y31_c00492{bottom:446.240000pt;}
.y30_c00492{bottom:460.560000pt;}
.y2f_c00492{bottom:474.800000pt;}
.y2e_c00492{bottom:487.040000pt;}
.y2d_c00492{bottom:502.080000pt;}
.y2c_c00492{bottom:517.040000pt;}
.y2b_c00492{bottom:532.080000pt;}
.y2a_c00492{bottom:547.040000pt;}
.y29_c00492{bottom:562.080000pt;}
.y28_c00492{bottom:576.320000pt;}
.y27_c00492{bottom:588.560000pt;}
.y26_c00492{bottom:600.880000pt;}
.y25_c00492{bottom:613.120000pt;}
.y24_c00492{bottom:627.360000pt;}
.y23_c00492{bottom:639.680000pt;}
.y22_c00492{bottom:651.920000pt;}
.y21_c00492{bottom:664.160000pt;}
.y20_c00492{bottom:676.480000pt;}
.y1f_c00492{bottom:688.720000pt;}
.y1c_c00492{bottom:700.960000pt;}
.y1b_c00492{bottom:725.520000pt;}
.y1a_c00492{bottom:739.760000pt;}
.y19_c00492{bottom:754.080000pt;}
.y18_c00492{bottom:766.320000pt;}
.y17_c00492{bottom:781.280000pt;}
.y16_c00492{bottom:796.320000pt;}
.y15_c00492{bottom:811.280000pt;}
.y14_c00492{bottom:826.320000pt;}
.y13_c00492{bottom:841.280000pt;}
.y12_c00492{bottom:859.280000pt;}
.y11_c00492{bottom:871.600000pt;}
.y10_c00492{bottom:883.840000pt;}
.yf_c00492{bottom:898.480000pt;}
.ye_c00492{bottom:912.800000pt;}
.yd_c00492{bottom:925.040000pt;}
.yc_c00492{bottom:937.280000pt;}
.yb_c00492{bottom:949.600000pt;}
.y9_c00492{bottom:961.840000pt;}
.y6_c00492{bottom:974.080000pt;}
.y5_c00492{bottom:1005.360000pt;}
.y4_c00492{bottom:1023.040000pt;}
.y3_c00492{bottom:1036.804000pt;}
.y2_c00492{bottom:1050.640000pt;}
.y1_c00492{bottom:1064.400000pt;}
.h8_c00492{height:12.240000pt;}
.ha_c00492{height:12.318667pt;}
.hb_c00492{height:12.320000pt;}
.hc_c00492{height:12.641333pt;}
.he_c00492{height:14.960000pt;}
.hf_c00492{height:15.040000pt;}
.hd_c00492{height:16.000000pt;}
.h11_c00492{height:24.480000pt;}
.h10_c00492{height:24.560000pt;}
.h5_c00492{height:27.600000pt;}
.h9_c00492{height:41.770312pt;}
.h7_c00492{height:42.892500pt;}
.h3_c00492{height:47.085938pt;}
.h2_c00492{height:47.109375pt;}
.h6_c00492{height:52.448437pt;}
.h4_c00492{height:62.812500pt;}
.h0_c00492{height:1122.560000pt;}
.h1_c00492{height:1122.666667pt;}
.w5_c00492{width:68.160000pt;}
.w7_c00492{width:71.440000pt;}
.wa_c00492{width:72.400000pt;}
.w6_c00492{width:72.401333pt;}
.w4_c00492{width:77.440000pt;}
.w8_c00492{width:140.561333pt;}
.w3_c00492{width:159.200000pt;}
.w9_c00492{width:160.240000pt;}
.w2_c00492{width:450.640000pt;}
.w0_c00492{width:793.840000pt;}
.w1_c00492{width:794.000000pt;}
.x0_c00492{left:0.000000pt;}
.xf_c00492{left:3.600000pt;}
.x5_c00492{left:4.640000pt;}
.xa_c00492{left:13.040000pt;}
.x8_c00492{left:14.720000pt;}
.xc_c00492{left:15.760000pt;}
.x11_c00492{left:23.520000pt;}
.xe_c00492{left:24.800000pt;}
.x12_c00492{left:27.760000pt;}
.x14_c00492{left:29.280000pt;}
.x10_c00492{left:32.800000pt;}
.x13_c00492{left:38.400000pt;}
.x15_c00492{left:43.760000pt;}
.x17_c00492{left:50.560000pt;}
.x16_c00492{left:54.160000pt;}
.x18_c00492{left:59.440000pt;}
.x6_c00492{left:60.720000pt;}
.x4_c00492{left:112.400000pt;}
.x3_c00492{left:113.440000pt;}
.x7_c00492{left:272.640000pt;}
.x9_c00492{left:350.080000pt;}
.x2_c00492{left:377.920000pt;}
.x1_c00492{left:396.960000pt;}
.xb_c00492{left:418.240000pt;}
.xd_c00492{left:490.640000pt;}
.x19_c00492{left:656.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_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_ba42006ad342a3997dfdaf8a.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_96fc9eba5d9e56c26c427806.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00493{vertical-align:-61.938000px;}
.v0_c00493{vertical-align:0.000000px;}
.ls4_c00493{letter-spacing:-0.095760px;}
.ls2_c00493{letter-spacing:0.000000px;}
.ls3_c00493{letter-spacing:0.095760px;}
.ls1_c00493{letter-spacing:0.191520px;}
.ls0_c00493{letter-spacing:319.518000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00493{word-spacing:-12.161520px;}
.ws0_c00493{word-spacing:-11.970000px;}
.ws2_c00493{word-spacing:-11.874240px;}
.ws7_c00493{word-spacing:-0.287280px;}
.ws6_c00493{word-spacing:-0.191520px;}
.ws4_c00493{word-spacing:-0.162000px;}
.ws5_c00493{word-spacing:-0.095760px;}
.ws3_c00493{word-spacing:0.000000px;}
._1_c00493{margin-left:-1.139544px;}
._0_c00493{width:1.168272px;}
._2_c00493{width:846.000000px;}
.fc1_c00493{color:transparent;}
.fc0_c00493{color:rgb(0,0,0);}
.fs3_c00493{font-size:47.880000px;}
.fs0_c00493{font-size:54.000000px;}
.fs2_c00493{font-size:60.120000px;}
.fs1_c00493{font-size:72.000000px;}
.y1e_c00493{bottom:-10.890000px;}
.y0_c00493{bottom:0.000000px;}
.y9_c00493{bottom:2.880000px;}
.y7_c00493{bottom:2.970000px;}
.y33_c00493{bottom:16.740000px;}
.y6_c00493{bottom:17.280000px;}
.y1c_c00493{bottom:30.510000px;}
.y47_c00493{bottom:57.240000px;}
.y46_c00493{bottom:159.030000px;}
.y45_c00493{bottom:175.590000px;}
.y44_c00493{bottom:191.610000px;}
.y43_c00493{bottom:207.720000px;}
.y42_c00493{bottom:221.490000px;}
.y41_c00493{bottom:238.320000px;}
.y40_c00493{bottom:255.240000px;}
.y3f_c00493{bottom:272.070000px;}
.y3e_c00493{bottom:288.990000px;}
.y3d_c00493{bottom:309.240000px;}
.y3c_c00493{bottom:323.010000px;}
.y3b_c00493{bottom:336.870000px;}
.y3a_c00493{bottom:352.890000px;}
.y39_c00493{bottom:368.910000px;}
.y38_c00493{bottom:382.770000px;}
.y37_c00493{bottom:396.540000px;}
.y36_c00493{bottom:410.310000px;}
.y35_c00493{bottom:424.080000px;}
.y34_c00493{bottom:437.940000px;}
.y32_c00493{bottom:451.710000px;}
.y31_c00493{bottom:479.340000px;}
.y30_c00493{bottom:495.360000px;}
.y2f_c00493{bottom:511.380000px;}
.y2e_c00493{bottom:525.240000px;}
.y2d_c00493{bottom:542.070000px;}
.y2c_c00493{bottom:558.990000px;}
.y2b_c00493{bottom:575.820000px;}
.y2a_c00493{bottom:592.740000px;}
.y29_c00493{bottom:609.570000px;}
.y28_c00493{bottom:629.820000px;}
.y27_c00493{bottom:643.680000px;}
.y26_c00493{bottom:657.450000px;}
.y25_c00493{bottom:674.370000px;}
.y24_c00493{bottom:690.480000px;}
.y23_c00493{bottom:704.250000px;}
.y22_c00493{bottom:718.020000px;}
.y21_c00493{bottom:731.790000px;}
.y20_c00493{bottom:745.650000px;}
.y1f_c00493{bottom:759.420000px;}
.y1b_c00493{bottom:773.190000px;}
.y1d_c00493{bottom:789.930000px;}
.y1a_c00493{bottom:814.590000px;}
.y19_c00493{bottom:830.700000px;}
.y18_c00493{bottom:847.710000px;}
.y17_c00493{bottom:861.480000px;}
.y16_c00493{bottom:878.400000px;}
.y15_c00493{bottom:895.230000px;}
.y14_c00493{bottom:912.150000px;}
.y13_c00493{bottom:928.980000px;}
.y12_c00493{bottom:945.900000px;}
.y11_c00493{bottom:966.150000px;}
.y10_c00493{bottom:981.000000px;}
.yf_c00493{bottom:994.770000px;}
.ye_c00493{bottom:1010.790000px;}
.yd_c00493{bottom:1026.900000px;}
.yc_c00493{bottom:1040.670000px;}
.yb_c00493{bottom:1054.440000px;}
.ya_c00493{bottom:1068.300000px;}
.y8_c00493{bottom:1082.070000px;}
.y5_c00493{bottom:1095.840000px;}
.y4_c00493{bottom:1131.030000px;}
.y3_c00493{bottom:1150.915500px;}
.y2_c00493{bottom:1166.400000px;}
.y1_c00493{bottom:1197.450000px;}
.h7_c00493{height:13.770000px;}
.h9_c00493{height:13.858500px;}
.ha_c00493{height:13.860000px;}
.h11_c00493{height:14.670000px;}
.hf_c00493{height:14.761500px;}
.hb_c00493{height:14.850000px;}
.he_c00493{height:16.828500px;}
.hd_c00493{height:16.921500px;}
.hc_c00493{height:18.000000px;}
.h12_c00493{height:18.001500px;}
.h13_c00493{height:27.630000px;}
.h4_c00493{height:31.050000px;}
.h10_c00493{height:41.400000px;}
.h8_c00493{height:46.991602px;}
.h6_c00493{height:48.254063px;}
.h2_c00493{height:52.998047px;}
.h5_c00493{height:59.004492px;}
.h3_c00493{height:70.664062px;}
.h0_c00493{height:1262.880000px;}
.h1_c00493{height:1263.000000px;}
.w5_c00493{width:76.680000px;}
.w7_c00493{width:80.370000px;}
.wa_c00493{width:81.450000px;}
.w6_c00493{width:81.451500px;}
.w4_c00493{width:87.120000px;}
.w8_c00493{width:158.131500px;}
.w3_c00493{width:179.100000px;}
.w9_c00493{width:180.270000px;}
.w2_c00493{width:506.970000px;}
.w0_c00493{width:893.070000px;}
.w1_c00493{width:893.250000px;}
.x0_c00493{left:0.000000px;}
.xe_c00493{left:4.050000px;}
.x4_c00493{left:5.220000px;}
.x9_c00493{left:14.670000px;}
.x7_c00493{left:16.560000px;}
.xb_c00493{left:17.730000px;}
.x12_c00493{left:26.460000px;}
.xd_c00493{left:27.900000px;}
.x14_c00493{left:31.230000px;}
.x10_c00493{left:32.490000px;}
.xf_c00493{left:36.900000px;}
.x17_c00493{left:38.880000px;}
.x13_c00493{left:43.200000px;}
.x11_c00493{left:49.230000px;}
.x18_c00493{left:56.880000px;}
.x15_c00493{left:60.930000px;}
.x5_c00493{left:68.310000px;}
.x3_c00493{left:126.450000px;}
.x2_c00493{left:127.620000px;}
.x16_c00493{left:131.670000px;}
.x6_c00493{left:306.720000px;}
.x8_c00493{left:393.840000px;}
.x1_c00493{left:446.580000px;}
.xa_c00493{left:470.520000px;}
.xc_c00493{left:551.970000px;}
@media print{
.v1_c00493{vertical-align:-55.056000pt;}
.v0_c00493{vertical-align:0.000000pt;}
.ls4_c00493{letter-spacing:-0.085120pt;}
.ls2_c00493{letter-spacing:0.000000pt;}
.ls3_c00493{letter-spacing:0.085120pt;}
.ls1_c00493{letter-spacing:0.170240pt;}
.ls0_c00493{letter-spacing:284.016000pt;}
.ws1_c00493{word-spacing:-10.810240pt;}
.ws0_c00493{word-spacing:-10.640000pt;}
.ws2_c00493{word-spacing:-10.554880pt;}
.ws7_c00493{word-spacing:-0.255360pt;}
.ws6_c00493{word-spacing:-0.170240pt;}
.ws4_c00493{word-spacing:-0.144000pt;}
.ws5_c00493{word-spacing:-0.085120pt;}
.ws3_c00493{word-spacing:0.000000pt;}
._1_c00493{margin-left:-1.012928pt;}
._0_c00493{width:1.038464pt;}
._2_c00493{width:752.000000pt;}
.fs3_c00493{font-size:42.560000pt;}
.fs0_c00493{font-size:48.000000pt;}
.fs2_c00493{font-size:53.440000pt;}
.fs1_c00493{font-size:64.000000pt;}
.y1e_c00493{bottom:-9.680000pt;}
.y0_c00493{bottom:0.000000pt;}
.y9_c00493{bottom:2.560000pt;}
.y7_c00493{bottom:2.640000pt;}
.y33_c00493{bottom:14.880000pt;}
.y6_c00493{bottom:15.360000pt;}
.y1c_c00493{bottom:27.120000pt;}
.y47_c00493{bottom:50.880000pt;}
.y46_c00493{bottom:141.360000pt;}
.y45_c00493{bottom:156.080000pt;}
.y44_c00493{bottom:170.320000pt;}
.y43_c00493{bottom:184.640000pt;}
.y42_c00493{bottom:196.880000pt;}
.y41_c00493{bottom:211.840000pt;}
.y40_c00493{bottom:226.880000pt;}
.y3f_c00493{bottom:241.840000pt;}
.y3e_c00493{bottom:256.880000pt;}
.y3d_c00493{bottom:274.880000pt;}
.y3c_c00493{bottom:287.120000pt;}
.y3b_c00493{bottom:299.440000pt;}
.y3a_c00493{bottom:313.680000pt;}
.y39_c00493{bottom:327.920000pt;}
.y38_c00493{bottom:340.240000pt;}
.y37_c00493{bottom:352.480000pt;}
.y36_c00493{bottom:364.720000pt;}
.y35_c00493{bottom:376.960000pt;}
.y34_c00493{bottom:389.280000pt;}
.y32_c00493{bottom:401.520000pt;}
.y31_c00493{bottom:426.080000pt;}
.y30_c00493{bottom:440.320000pt;}
.y2f_c00493{bottom:454.560000pt;}
.y2e_c00493{bottom:466.880000pt;}
.y2d_c00493{bottom:481.840000pt;}
.y2c_c00493{bottom:496.880000pt;}
.y2b_c00493{bottom:511.840000pt;}
.y2a_c00493{bottom:526.880000pt;}
.y29_c00493{bottom:541.840000pt;}
.y28_c00493{bottom:559.840000pt;}
.y27_c00493{bottom:572.160000pt;}
.y26_c00493{bottom:584.400000pt;}
.y25_c00493{bottom:599.440000pt;}
.y24_c00493{bottom:613.760000pt;}
.y23_c00493{bottom:626.000000pt;}
.y22_c00493{bottom:638.240000pt;}
.y21_c00493{bottom:650.480000pt;}
.y20_c00493{bottom:662.800000pt;}
.y1f_c00493{bottom:675.040000pt;}
.y1b_c00493{bottom:687.280000pt;}
.y1d_c00493{bottom:702.160000pt;}
.y1a_c00493{bottom:724.080000pt;}
.y19_c00493{bottom:738.400000pt;}
.y18_c00493{bottom:753.520000pt;}
.y17_c00493{bottom:765.760000pt;}
.y16_c00493{bottom:780.800000pt;}
.y15_c00493{bottom:795.760000pt;}
.y14_c00493{bottom:810.800000pt;}
.y13_c00493{bottom:825.760000pt;}
.y12_c00493{bottom:840.800000pt;}
.y11_c00493{bottom:858.800000pt;}
.y10_c00493{bottom:872.000000pt;}
.yf_c00493{bottom:884.240000pt;}
.ye_c00493{bottom:898.480000pt;}
.yd_c00493{bottom:912.800000pt;}
.yc_c00493{bottom:925.040000pt;}
.yb_c00493{bottom:937.280000pt;}
.ya_c00493{bottom:949.600000pt;}
.y8_c00493{bottom:961.840000pt;}
.y5_c00493{bottom:974.080000pt;}
.y4_c00493{bottom:1005.360000pt;}
.y3_c00493{bottom:1023.036000pt;}
.y2_c00493{bottom:1036.800000pt;}
.y1_c00493{bottom:1064.400000pt;}
.h7_c00493{height:12.240000pt;}
.h9_c00493{height:12.318667pt;}
.ha_c00493{height:12.320000pt;}
.h11_c00493{height:13.040000pt;}
.hf_c00493{height:13.121333pt;}
.hb_c00493{height:13.200000pt;}
.he_c00493{height:14.958667pt;}
.hd_c00493{height:15.041333pt;}
.hc_c00493{height:16.000000pt;}
.h12_c00493{height:16.001333pt;}
.h13_c00493{height:24.560000pt;}
.h4_c00493{height:27.600000pt;}
.h10_c00493{height:36.800000pt;}
.h8_c00493{height:41.770312pt;}
.h6_c00493{height:42.892500pt;}
.h2_c00493{height:47.109375pt;}
.h5_c00493{height:52.448437pt;}
.h3_c00493{height:62.812500pt;}
.h0_c00493{height:1122.560000pt;}
.h1_c00493{height:1122.666667pt;}
.w5_c00493{width:68.160000pt;}
.w7_c00493{width:71.440000pt;}
.wa_c00493{width:72.400000pt;}
.w6_c00493{width:72.401333pt;}
.w4_c00493{width:77.440000pt;}
.w8_c00493{width:140.561333pt;}
.w3_c00493{width:159.200000pt;}
.w9_c00493{width:160.240000pt;}
.w2_c00493{width:450.640000pt;}
.w0_c00493{width:793.840000pt;}
.w1_c00493{width:794.000000pt;}
.x0_c00493{left:0.000000pt;}
.xe_c00493{left:3.600000pt;}
.x4_c00493{left:4.640000pt;}
.x9_c00493{left:13.040000pt;}
.x7_c00493{left:14.720000pt;}
.xb_c00493{left:15.760000pt;}
.x12_c00493{left:23.520000pt;}
.xd_c00493{left:24.800000pt;}
.x14_c00493{left:27.760000pt;}
.x10_c00493{left:28.880000pt;}
.xf_c00493{left:32.800000pt;}
.x17_c00493{left:34.560000pt;}
.x13_c00493{left:38.400000pt;}
.x11_c00493{left:43.760000pt;}
.x18_c00493{left:50.560000pt;}
.x15_c00493{left:54.160000pt;}
.x5_c00493{left:60.720000pt;}
.x3_c00493{left:112.400000pt;}
.x2_c00493{left:113.440000pt;}
.x16_c00493{left:117.040000pt;}
.x6_c00493{left:272.640000pt;}
.x8_c00493{left:350.080000pt;}
.x1_c00493{left:396.960000pt;}
.xa_c00493{left:418.240000pt;}
.xc_c00493{left:490.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_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_814aadbdd42bcd7bfaebd604.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_8ac0ef00ee1d887ca3441135.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls2_c00494{letter-spacing:-0.108000px;}
.ls4_c00494{letter-spacing:-0.095760px;}
.ls1_c00494{letter-spacing:0.000000px;}
.ls3_c00494{letter-spacing:0.095760px;}
.ls0_c00494{letter-spacing:0.191520px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00494{word-spacing:-12.161520px;}
.ws0_c00494{word-spacing:-11.970000px;}
.ws2_c00494{word-spacing:-11.874240px;}
.ws8_c00494{word-spacing:-0.287280px;}
.ws6_c00494{word-spacing:-0.095760px;}
.ws3_c00494{word-spacing:0.000000px;}
.ws5_c00494{word-spacing:0.162000px;}
.ws7_c00494{word-spacing:0.191520px;}
.ws4_c00494{word-spacing:0.270000px;}
._1_c00494{margin-left:-1.058400px;}
._0_c00494{width:1.220400px;}
._2_c00494{width:846.000000px;}
.fc1_c00494{color:transparent;}
.fc0_c00494{color:rgb(0,0,0);}
.fs3_c00494{font-size:47.880000px;}
.fs0_c00494{font-size:54.000000px;}
.fs2_c00494{font-size:60.120000px;}
.fs1_c00494{font-size:72.000000px;}
.y1e_c00494{bottom:-10.890000px;}
.y0_c00494{bottom:0.000000px;}
.ya_c00494{bottom:2.880000px;}
.y8_c00494{bottom:2.970000px;}
.y1d_c00494{bottom:16.740000px;}
.y7_c00494{bottom:17.280000px;}
.y47_c00494{bottom:57.240000px;}
.y46_c00494{bottom:166.050000px;}
.y45_c00494{bottom:182.610000px;}
.y44_c00494{bottom:198.720000px;}
.y43_c00494{bottom:214.740000px;}
.y42_c00494{bottom:228.510000px;}
.y41_c00494{bottom:245.430000px;}
.y40_c00494{bottom:262.260000px;}
.y3f_c00494{bottom:279.180000px;}
.y3e_c00494{bottom:296.010000px;}
.y3d_c00494{bottom:312.930000px;}
.y3c_c00494{bottom:328.950000px;}
.y3b_c00494{bottom:343.350000px;}
.y3a_c00494{bottom:357.120000px;}
.y39_c00494{bottom:373.230000px;}
.y38_c00494{bottom:389.250000px;}
.y37_c00494{bottom:403.020000px;}
.y36_c00494{bottom:416.880000px;}
.y35_c00494{bottom:430.650000px;}
.y34_c00494{bottom:444.420000px;}
.y33_c00494{bottom:459.630000px;}
.y32_c00494{bottom:473.400000px;}
.y31_c00494{bottom:501.030000px;}
.y30_c00494{bottom:517.050000px;}
.y2f_c00494{bottom:533.070000px;}
.y2e_c00494{bottom:546.930000px;}
.y2d_c00494{bottom:563.760000px;}
.y2c_c00494{bottom:580.680000px;}
.y2b_c00494{bottom:597.510000px;}
.y2a_c00494{bottom:614.430000px;}
.y29_c00494{bottom:631.260000px;}
.y28_c00494{bottom:647.280000px;}
.y27_c00494{bottom:663.570000px;}
.y26_c00494{bottom:677.430000px;}
.y25_c00494{bottom:693.450000px;}
.y24_c00494{bottom:709.470000px;}
.y23_c00494{bottom:723.330000px;}
.y22_c00494{bottom:737.100000px;}
.y21_c00494{bottom:750.870000px;}
.y20_c00494{bottom:764.640000px;}
.y1f_c00494{bottom:778.500000px;}
.y1c_c00494{bottom:792.270000px;}
.y1b_c00494{bottom:819.900000px;}
.y1a_c00494{bottom:835.920000px;}
.y19_c00494{bottom:852.930000px;}
.y18_c00494{bottom:866.790000px;}
.y17_c00494{bottom:883.620000px;}
.y16_c00494{bottom:900.540000px;}
.y15_c00494{bottom:917.370000px;}
.y14_c00494{bottom:934.290000px;}
.y13_c00494{bottom:951.120000px;}
.y12_c00494{bottom:967.140000px;}
.y11_c00494{bottom:981.000000px;}
.y10_c00494{bottom:994.770000px;}
.yf_c00494{bottom:1010.790000px;}
.ye_c00494{bottom:1026.900000px;}
.yd_c00494{bottom:1040.670000px;}
.yc_c00494{bottom:1054.440000px;}
.yb_c00494{bottom:1068.300000px;}
.y9_c00494{bottom:1082.070000px;}
.y6_c00494{bottom:1095.840000px;}
.y5_c00494{bottom:1131.030000px;}
.y4_c00494{bottom:1150.920000px;}
.y3_c00494{bottom:1166.404500px;}
.y2_c00494{bottom:1181.970000px;}
.y1_c00494{bottom:1197.450000px;}
.h8_c00494{height:13.770000px;}
.ha_c00494{height:13.858500px;}
.hb_c00494{height:13.860000px;}
.h14_c00494{height:14.398500px;}
.he_c00494{height:14.760000px;}
.h13_c00494{height:15.210000px;}
.h10_c00494{height:16.288500px;}
.hc_c00494{height:16.828500px;}
.h11_c00494{height:16.830000px;}
.h12_c00494{height:16.920000px;}
.hd_c00494{height:16.921500px;}
.hf_c00494{height:27.628500px;}
.h5_c00494{height:31.050000px;}
.h9_c00494{height:46.991602px;}
.h7_c00494{height:48.254063px;}
.h3_c00494{height:52.971680px;}
.h2_c00494{height:52.998047px;}
.h6_c00494{height:59.004492px;}
.h4_c00494{height:70.664062px;}
.h0_c00494{height:1262.880000px;}
.h1_c00494{height:1263.000000px;}
.w5_c00494{width:76.680000px;}
.w7_c00494{width:80.370000px;}
.wa_c00494{width:81.450000px;}
.w6_c00494{width:81.451500px;}
.w4_c00494{width:87.120000px;}
.w8_c00494{width:158.131500px;}
.w3_c00494{width:179.100000px;}
.w9_c00494{width:180.270000px;}
.w2_c00494{width:506.970000px;}
.w0_c00494{width:893.070000px;}
.w1_c00494{width:893.250000px;}
.x0_c00494{left:0.000000px;}
.xf_c00494{left:4.050000px;}
.x5_c00494{left:5.220000px;}
.xa_c00494{left:14.670000px;}
.x8_c00494{left:16.560000px;}
.xc_c00494{left:17.730000px;}
.x11_c00494{left:26.460000px;}
.xe_c00494{left:27.900000px;}
.x12_c00494{left:31.230000px;}
.x14_c00494{left:32.940000px;}
.x10_c00494{left:36.900000px;}
.x15_c00494{left:43.200000px;}
.x13_c00494{left:49.230000px;}
.x16_c00494{left:60.930000px;}
.x17_c00494{left:66.870000px;}
.x6_c00494{left:68.310000px;}
.x4_c00494{left:126.450000px;}
.x3_c00494{left:127.620000px;}
.x7_c00494{left:306.720000px;}
.x9_c00494{left:393.840000px;}
.x2_c00494{left:425.160000px;}
.x1_c00494{left:446.580000px;}
.xb_c00494{left:470.520000px;}
.xd_c00494{left:551.970000px;}
.x18_c00494{left:738.540000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls2_c00494{letter-spacing:-0.096000pt;}
.ls4_c00494{letter-spacing:-0.085120pt;}
.ls1_c00494{letter-spacing:0.000000pt;}
.ls3_c00494{letter-spacing:0.085120pt;}
.ls0_c00494{letter-spacing:0.170240pt;}
.ws1_c00494{word-spacing:-10.810240pt;}
.ws0_c00494{word-spacing:-10.640000pt;}
.ws2_c00494{word-spacing:-10.554880pt;}
.ws8_c00494{word-spacing:-0.255360pt;}
.ws6_c00494{word-spacing:-0.085120pt;}
.ws3_c00494{word-spacing:0.000000pt;}
.ws5_c00494{word-spacing:0.144000pt;}
.ws7_c00494{word-spacing:0.170240pt;}
.ws4_c00494{word-spacing:0.240000pt;}
._1_c00494{margin-left:-0.940800pt;}
._0_c00494{width:1.084800pt;}
._2_c00494{width:752.000000pt;}
.fs3_c00494{font-size:42.560000pt;}
.fs0_c00494{font-size:48.000000pt;}
.fs2_c00494{font-size:53.440000pt;}
.fs1_c00494{font-size:64.000000pt;}
.y1e_c00494{bottom:-9.680000pt;}
.y0_c00494{bottom:0.000000pt;}
.ya_c00494{bottom:2.560000pt;}
.y8_c00494{bottom:2.640000pt;}
.y1d_c00494{bottom:14.880000pt;}
.y7_c00494{bottom:15.360000pt;}
.y47_c00494{bottom:50.880000pt;}
.y46_c00494{bottom:147.600000pt;}
.y45_c00494{bottom:162.320000pt;}
.y44_c00494{bottom:176.640000pt;}
.y43_c00494{bottom:190.880000pt;}
.y42_c00494{bottom:203.120000pt;}
.y41_c00494{bottom:218.160000pt;}
.y40_c00494{bottom:233.120000pt;}
.y3f_c00494{bottom:248.160000pt;}
.y3e_c00494{bottom:263.120000pt;}
.y3d_c00494{bottom:278.160000pt;}
.y3c_c00494{bottom:292.400000pt;}
.y3b_c00494{bottom:305.200000pt;}
.y3a_c00494{bottom:317.440000pt;}
.y39_c00494{bottom:331.760000pt;}
.y38_c00494{bottom:346.000000pt;}
.y37_c00494{bottom:358.240000pt;}
.y36_c00494{bottom:370.560000pt;}
.y35_c00494{bottom:382.800000pt;}
.y34_c00494{bottom:395.040000pt;}
.y33_c00494{bottom:408.560000pt;}
.y32_c00494{bottom:420.800000pt;}
.y31_c00494{bottom:445.360000pt;}
.y30_c00494{bottom:459.600000pt;}
.y2f_c00494{bottom:473.840000pt;}
.y2e_c00494{bottom:486.160000pt;}
.y2d_c00494{bottom:501.120000pt;}
.y2c_c00494{bottom:516.160000pt;}
.y2b_c00494{bottom:531.120000pt;}
.y2a_c00494{bottom:546.160000pt;}
.y29_c00494{bottom:561.120000pt;}
.y28_c00494{bottom:575.360000pt;}
.y27_c00494{bottom:589.840000pt;}
.y26_c00494{bottom:602.160000pt;}
.y25_c00494{bottom:616.400000pt;}
.y24_c00494{bottom:630.640000pt;}
.y23_c00494{bottom:642.960000pt;}
.y22_c00494{bottom:655.200000pt;}
.y21_c00494{bottom:667.440000pt;}
.y20_c00494{bottom:679.680000pt;}
.y1f_c00494{bottom:692.000000pt;}
.y1c_c00494{bottom:704.240000pt;}
.y1b_c00494{bottom:728.800000pt;}
.y1a_c00494{bottom:743.040000pt;}
.y19_c00494{bottom:758.160000pt;}
.y18_c00494{bottom:770.480000pt;}
.y17_c00494{bottom:785.440000pt;}
.y16_c00494{bottom:800.480000pt;}
.y15_c00494{bottom:815.440000pt;}
.y14_c00494{bottom:830.480000pt;}
.y13_c00494{bottom:845.440000pt;}
.y12_c00494{bottom:859.680000pt;}
.y11_c00494{bottom:872.000000pt;}
.y10_c00494{bottom:884.240000pt;}
.yf_c00494{bottom:898.480000pt;}
.ye_c00494{bottom:912.800000pt;}
.yd_c00494{bottom:925.040000pt;}
.yc_c00494{bottom:937.280000pt;}
.yb_c00494{bottom:949.600000pt;}
.y9_c00494{bottom:961.840000pt;}
.y6_c00494{bottom:974.080000pt;}
.y5_c00494{bottom:1005.360000pt;}
.y4_c00494{bottom:1023.040000pt;}
.y3_c00494{bottom:1036.804000pt;}
.y2_c00494{bottom:1050.640000pt;}
.y1_c00494{bottom:1064.400000pt;}
.h8_c00494{height:12.240000pt;}
.ha_c00494{height:12.318667pt;}
.hb_c00494{height:12.320000pt;}
.h14_c00494{height:12.798667pt;}
.he_c00494{height:13.120000pt;}
.h13_c00494{height:13.520000pt;}
.h10_c00494{height:14.478667pt;}
.hc_c00494{height:14.958667pt;}
.h11_c00494{height:14.960000pt;}
.h12_c00494{height:15.040000pt;}
.hd_c00494{height:15.041333pt;}
.hf_c00494{height:24.558667pt;}
.h5_c00494{height:27.600000pt;}
.h9_c00494{height:41.770312pt;}
.h7_c00494{height:42.892500pt;}
.h3_c00494{height:47.085938pt;}
.h2_c00494{height:47.109375pt;}
.h6_c00494{height:52.448437pt;}
.h4_c00494{height:62.812500pt;}
.h0_c00494{height:1122.560000pt;}
.h1_c00494{height:1122.666667pt;}
.w5_c00494{width:68.160000pt;}
.w7_c00494{width:71.440000pt;}
.wa_c00494{width:72.400000pt;}
.w6_c00494{width:72.401333pt;}
.w4_c00494{width:77.440000pt;}
.w8_c00494{width:140.561333pt;}
.w3_c00494{width:159.200000pt;}
.w9_c00494{width:160.240000pt;}
.w2_c00494{width:450.640000pt;}
.w0_c00494{width:793.840000pt;}
.w1_c00494{width:794.000000pt;}
.x0_c00494{left:0.000000pt;}
.xf_c00494{left:3.600000pt;}
.x5_c00494{left:4.640000pt;}
.xa_c00494{left:13.040000pt;}
.x8_c00494{left:14.720000pt;}
.xc_c00494{left:15.760000pt;}
.x11_c00494{left:23.520000pt;}
.xe_c00494{left:24.800000pt;}
.x12_c00494{left:27.760000pt;}
.x14_c00494{left:29.280000pt;}
.x10_c00494{left:32.800000pt;}
.x15_c00494{left:38.400000pt;}
.x13_c00494{left:43.760000pt;}
.x16_c00494{left:54.160000pt;}
.x17_c00494{left:59.440000pt;}
.x6_c00494{left:60.720000pt;}
.x4_c00494{left:112.400000pt;}
.x3_c00494{left:113.440000pt;}
.x7_c00494{left:272.640000pt;}
.x9_c00494{left:350.080000pt;}
.x2_c00494{left:377.920000pt;}
.x1_c00494{left:396.960000pt;}
.xb_c00494{left:418.240000pt;}
.xd_c00494{left:490.640000pt;}
.x18_c00494{left:656.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_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_de5fffbb796338fdb8fa61ab.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_182297f48ffecabe9587a1e2.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00495{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00495{vertical-align:-61.938000px;}
.v0_c00495{vertical-align:0.000000px;}
.ls3_c00495{letter-spacing:-0.095760px;}
.ls2_c00495{letter-spacing:0.000000px;}
.ls4_c00495{letter-spacing:0.095760px;}
.ls1_c00495{letter-spacing:0.191520px;}
.ls0_c00495{letter-spacing:319.518000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00495{word-spacing:-12.161520px;}
.ws0_c00495{word-spacing:-11.970000px;}
.ws2_c00495{word-spacing:-11.874240px;}
.ws6_c00495{word-spacing:-0.287280px;}
.ws8_c00495{word-spacing:-0.191520px;}
.ws4_c00495{word-spacing:-0.162000px;}
.ws5_c00495{word-spacing:-0.095760px;}
.ws3_c00495{word-spacing:0.000000px;}
.ws7_c00495{word-spacing:0.383040px;}
._1_c00495{margin-left:-1.139544px;}
._0_c00495{width:1.168272px;}
._2_c00495{width:846.000000px;}
.fc1_c00495{color:transparent;}
.fc0_c00495{color:rgb(0,0,0);}
.fs3_c00495{font-size:47.880000px;}
.fs0_c00495{font-size:54.000000px;}
.fs2_c00495{font-size:60.120000px;}
.fs1_c00495{font-size:72.000000px;}
.y1c_c00495{bottom:-10.890000px;}
.y0_c00495{bottom:0.000000px;}
.y9_c00495{bottom:2.880000px;}
.y7_c00495{bottom:2.970000px;}
.y6_c00495{bottom:17.280000px;}
.y3f_c00495{bottom:57.240000px;}
.y3e_c00495{bottom:186.120000px;}
.y3d_c00495{bottom:202.680000px;}
.y3c_c00495{bottom:222.930000px;}
.y3b_c00495{bottom:240.930000px;}
.y3a_c00495{bottom:257.850000px;}
.y39_c00495{bottom:274.680000px;}
.y38_c00495{bottom:291.600000px;}
.y37_c00495{bottom:308.430000px;}
.y36_c00495{bottom:325.350000px;}
.y35_c00495{bottom:345.600000px;}
.y34_c00495{bottom:363.600000px;}
.y33_c00495{bottom:383.850000px;}
.y32_c00495{bottom:405.180000px;}
.y31_c00495{bottom:419.040000px;}
.y30_c00495{bottom:432.810000px;}
.y2f_c00495{bottom:446.580000px;}
.y2e_c00495{bottom:460.440000px;}
.y2d_c00495{bottom:481.590000px;}
.y2c_c00495{bottom:498.420000px;}
.y2b_c00495{bottom:518.670000px;}
.y2a_c00495{bottom:536.670000px;}
.y29_c00495{bottom:553.590000px;}
.y28_c00495{bottom:570.420000px;}
.y27_c00495{bottom:587.340000px;}
.y26_c00495{bottom:604.170000px;}
.y25_c00495{bottom:621.090000px;}
.y24_c00495{bottom:641.340000px;}
.y23_c00495{bottom:659.340000px;}
.y22_c00495{bottom:679.590000px;}
.y21_c00495{bottom:700.920000px;}
.y20_c00495{bottom:718.920000px;}
.y1f_c00495{bottom:735.840000px;}
.y1e_c00495{bottom:752.670000px;}
.y1d_c00495{bottom:769.590000px;}
.y1b_c00495{bottom:792.630000px;}
.y1a_c00495{bottom:798.660000px;}
.y19_c00495{bottom:814.680000px;}
.y18_c00495{bottom:831.690000px;}
.y17_c00495{bottom:845.550000px;}
.y16_c00495{bottom:862.380000px;}
.y15_c00495{bottom:879.300000px;}
.y14_c00495{bottom:896.130000px;}
.y13_c00495{bottom:913.050000px;}
.y12_c00495{bottom:929.880000px;}
.y11_c00495{bottom:950.130000px;}
.y10_c00495{bottom:968.130000px;}
.yf_c00495{bottom:985.050000px;}
.ye_c00495{bottom:1005.300000px;}
.yd_c00495{bottom:1026.630000px;}
.yc_c00495{bottom:1040.670000px;}
.yb_c00495{bottom:1054.440000px;}
.ya_c00495{bottom:1068.300000px;}
.y8_c00495{bottom:1082.070000px;}
.y5_c00495{bottom:1095.840000px;}
.y4_c00495{bottom:1131.030000px;}
.y3_c00495{bottom:1150.915500px;}
.y2_c00495{bottom:1166.400000px;}
.y1_c00495{bottom:1197.450000px;}
.h11_c00495{height:6.030000px;}
.h7_c00495{height:13.770000px;}
.h9_c00495{height:13.858500px;}
.h15_c00495{height:13.860000px;}
.ha_c00495{height:14.040000px;}
.h10_c00495{height:14.760000px;}
.h13_c00495{height:16.828500px;}
.he_c00495{height:16.830000px;}
.hf_c00495{height:16.920000px;}
.hd_c00495{height:16.921500px;}
.hc_c00495{height:18.000000px;}
.h17_c00495{height:18.001500px;}
.hb_c00495{height:19.080000px;}
.h16_c00495{height:19.081500px;}
.h14_c00495{height:21.148500px;}
.h12_c00495{height:23.038500px;}
.h4_c00495{height:31.050000px;}
.h8_c00495{height:46.991602px;}
.h6_c00495{height:48.254063px;}
.h2_c00495{height:52.998047px;}
.h5_c00495{height:59.004492px;}
.h3_c00495{height:70.664062px;}
.h0_c00495{height:1262.880000px;}
.h1_c00495{height:1263.000000px;}
.w5_c00495{width:76.680000px;}
.w7_c00495{width:80.370000px;}
.wa_c00495{width:81.450000px;}
.w6_c00495{width:81.451500px;}
.w4_c00495{width:87.120000px;}
.w8_c00495{width:158.131500px;}
.w3_c00495{width:179.100000px;}
.w9_c00495{width:180.270000px;}
.w2_c00495{width:506.970000px;}
.w0_c00495{width:893.070000px;}
.w1_c00495{width:893.250000px;}
.x0_c00495{left:0.000000px;}
.xe_c00495{left:4.050000px;}
.x4_c00495{left:5.220000px;}
.x9_c00495{left:14.670000px;}
.x7_c00495{left:16.560000px;}
.xb_c00495{left:17.730000px;}
.x10_c00495{left:26.460000px;}
.xd_c00495{left:27.900000px;}
.x11_c00495{left:31.230000px;}
.x13_c00495{left:32.940000px;}
.xf_c00495{left:36.900000px;}
.x12_c00495{left:43.200000px;}
.x15_c00495{left:49.230000px;}
.x14_c00495{left:60.930000px;}
.x5_c00495{left:68.310000px;}
.x3_c00495{left:126.450000px;}
.x2_c00495{left:127.620000px;}
.x6_c00495{left:306.720000px;}
.x8_c00495{left:393.840000px;}
.x1_c00495{left:446.580000px;}
.xa_c00495{left:470.520000px;}
.xc_c00495{left:551.970000px;}
@media print{
.v1_c00495{vertical-align:-55.056000pt;}
.v0_c00495{vertical-align:0.000000pt;}
.ls3_c00495{letter-spacing:-0.085120pt;}
.ls2_c00495{letter-spacing:0.000000pt;}
.ls4_c00495{letter-spacing:0.085120pt;}
.ls1_c00495{letter-spacing:0.170240pt;}
.ls0_c00495{letter-spacing:284.016000pt;}
.ws1_c00495{word-spacing:-10.810240pt;}
.ws0_c00495{word-spacing:-10.640000pt;}
.ws2_c00495{word-spacing:-10.554880pt;}
.ws6_c00495{word-spacing:-0.255360pt;}
.ws8_c00495{word-spacing:-0.170240pt;}
.ws4_c00495{word-spacing:-0.144000pt;}
.ws5_c00495{word-spacing:-0.085120pt;}
.ws3_c00495{word-spacing:0.000000pt;}
.ws7_c00495{word-spacing:0.340480pt;}
._1_c00495{margin-left:-1.012928pt;}
._0_c00495{width:1.038464pt;}
._2_c00495{width:752.000000pt;}
.fs3_c00495{font-size:42.560000pt;}
.fs0_c00495{font-size:48.000000pt;}
.fs2_c00495{font-size:53.440000pt;}
.fs1_c00495{font-size:64.000000pt;}
.y1c_c00495{bottom:-9.680000pt;}
.y0_c00495{bottom:0.000000pt;}
.y9_c00495{bottom:2.560000pt;}
.y7_c00495{bottom:2.640000pt;}
.y6_c00495{bottom:15.360000pt;}
.y3f_c00495{bottom:50.880000pt;}
.y3e_c00495{bottom:165.440000pt;}
.y3d_c00495{bottom:180.160000pt;}
.y3c_c00495{bottom:198.160000pt;}
.y3b_c00495{bottom:214.160000pt;}
.y3a_c00495{bottom:229.200000pt;}
.y39_c00495{bottom:244.160000pt;}
.y38_c00495{bottom:259.200000pt;}
.y37_c00495{bottom:274.160000pt;}
.y36_c00495{bottom:289.200000pt;}
.y35_c00495{bottom:307.200000pt;}
.y34_c00495{bottom:323.200000pt;}
.y33_c00495{bottom:341.200000pt;}
.y32_c00495{bottom:360.160000pt;}
.y31_c00495{bottom:372.480000pt;}
.y30_c00495{bottom:384.720000pt;}
.y2f_c00495{bottom:396.960000pt;}
.y2e_c00495{bottom:409.280000pt;}
.y2d_c00495{bottom:428.080000pt;}
.y2c_c00495{bottom:443.040000pt;}
.y2b_c00495{bottom:461.040000pt;}
.y2a_c00495{bottom:477.040000pt;}
.y29_c00495{bottom:492.080000pt;}
.y28_c00495{bottom:507.040000pt;}
.y27_c00495{bottom:522.080000pt;}
.y26_c00495{bottom:537.040000pt;}
.y25_c00495{bottom:552.080000pt;}
.y24_c00495{bottom:570.080000pt;}
.y23_c00495{bottom:586.080000pt;}
.y22_c00495{bottom:604.080000pt;}
.y21_c00495{bottom:623.040000pt;}
.y20_c00495{bottom:639.040000pt;}
.y1f_c00495{bottom:654.080000pt;}
.y1e_c00495{bottom:669.040000pt;}
.y1d_c00495{bottom:684.080000pt;}
.y1b_c00495{bottom:704.560000pt;}
.y1a_c00495{bottom:709.920000pt;}
.y19_c00495{bottom:724.160000pt;}
.y18_c00495{bottom:739.280000pt;}
.y17_c00495{bottom:751.600000pt;}
.y16_c00495{bottom:766.560000pt;}
.y15_c00495{bottom:781.600000pt;}
.y14_c00495{bottom:796.560000pt;}
.y13_c00495{bottom:811.600000pt;}
.y12_c00495{bottom:826.560000pt;}
.y11_c00495{bottom:844.560000pt;}
.y10_c00495{bottom:860.560000pt;}
.yf_c00495{bottom:875.600000pt;}
.ye_c00495{bottom:893.600000pt;}
.yd_c00495{bottom:912.560000pt;}
.yc_c00495{bottom:925.040000pt;}
.yb_c00495{bottom:937.280000pt;}
.ya_c00495{bottom:949.600000pt;}
.y8_c00495{bottom:961.840000pt;}
.y5_c00495{bottom:974.080000pt;}
.y4_c00495{bottom:1005.360000pt;}
.y3_c00495{bottom:1023.036000pt;}
.y2_c00495{bottom:1036.800000pt;}
.y1_c00495{bottom:1064.400000pt;}
.h11_c00495{height:5.360000pt;}
.h7_c00495{height:12.240000pt;}
.h9_c00495{height:12.318667pt;}
.h15_c00495{height:12.320000pt;}
.ha_c00495{height:12.480000pt;}
.h10_c00495{height:13.120000pt;}
.h13_c00495{height:14.958667pt;}
.he_c00495{height:14.960000pt;}
.hf_c00495{height:15.040000pt;}
.hd_c00495{height:15.041333pt;}
.hc_c00495{height:16.000000pt;}
.h17_c00495{height:16.001333pt;}
.hb_c00495{height:16.960000pt;}
.h16_c00495{height:16.961333pt;}
.h14_c00495{height:18.798667pt;}
.h12_c00495{height:20.478667pt;}
.h4_c00495{height:27.600000pt;}
.h8_c00495{height:41.770312pt;}
.h6_c00495{height:42.892500pt;}
.h2_c00495{height:47.109375pt;}
.h5_c00495{height:52.448437pt;}
.h3_c00495{height:62.812500pt;}
.h0_c00495{height:1122.560000pt;}
.h1_c00495{height:1122.666667pt;}
.w5_c00495{width:68.160000pt;}
.w7_c00495{width:71.440000pt;}
.wa_c00495{width:72.400000pt;}
.w6_c00495{width:72.401333pt;}
.w4_c00495{width:77.440000pt;}
.w8_c00495{width:140.561333pt;}
.w3_c00495{width:159.200000pt;}
.w9_c00495{width:160.240000pt;}
.w2_c00495{width:450.640000pt;}
.w0_c00495{width:793.840000pt;}
.w1_c00495{width:794.000000pt;}
.x0_c00495{left:0.000000pt;}
.xe_c00495{left:3.600000pt;}
.x4_c00495{left:4.640000pt;}
.x9_c00495{left:13.040000pt;}
.x7_c00495{left:14.720000pt;}
.xb_c00495{left:15.760000pt;}
.x10_c00495{left:23.520000pt;}
.xd_c00495{left:24.800000pt;}
.x11_c00495{left:27.760000pt;}
.x13_c00495{left:29.280000pt;}
.xf_c00495{left:32.800000pt;}
.x12_c00495{left:38.400000pt;}
.x15_c00495{left:43.760000pt;}
.x14_c00495{left:54.160000pt;}
.x5_c00495{left:60.720000pt;}
.x3_c00495{left:112.400000pt;}
.x2_c00495{left:113.440000pt;}
.x6_c00495{left:272.640000pt;}
.x8_c00495{left:350.080000pt;}
.x1_c00495{left:396.960000pt;}
.xa_c00495{left:418.240000pt;}
.xc_c00495{left:490.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_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_c592d4e7db511c2d6a3342bb.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_266a6096f24fabbed7022fd7.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls4_c00496{letter-spacing:-0.526680px;}
.ls2_c00496{letter-spacing:-0.108000px;}
.ls3_c00496{letter-spacing:-0.095760px;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:0.191520px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00496{word-spacing:-12.161520px;}
.ws0_c00496{word-spacing:-11.970000px;}
.ws2_c00496{word-spacing:-11.874240px;}
.ws8_c00496{word-spacing:-0.287280px;}
.ws6_c00496{word-spacing:-0.095760px;}
.ws3_c00496{word-spacing:0.000000px;}
.wsa_c00496{word-spacing:0.095760px;}
.ws5_c00496{word-spacing:0.162000px;}
.ws4_c00496{word-spacing:0.270000px;}
.ws7_c00496{word-spacing:0.287280px;}
.ws9_c00496{word-spacing:0.526680px;}
._1_c00496{margin-left:-1.058400px;}
._0_c00496{width:1.220400px;}
._2_c00496{width:846.000000px;}
.fc1_c00496{color:transparent;}
.fc0_c00496{color:rgb(0,0,0);}
.fs3_c00496{font-size:47.880000px;}
.fs0_c00496{font-size:54.000000px;}
.fs2_c00496{font-size:60.120000px;}
.fs1_c00496{font-size:72.000000px;}
.y1e_c00496{bottom:-10.890000px;}
.y0_c00496{bottom:0.000000px;}
.ya_c00496{bottom:2.880000px;}
.y8_c00496{bottom:2.970000px;}
.y1d_c00496{bottom:16.650000px;}
.y33_c00496{bottom:16.740000px;}
.y7_c00496{bottom:17.280000px;}
.y48_c00496{bottom:57.240000px;}
.y47_c00496{bottom:167.040000px;}
.y46_c00496{bottom:183.600000px;}
.y45_c00496{bottom:199.620000px;}
.y44_c00496{bottom:215.730000px;}
.y43_c00496{bottom:229.500000px;}
.y42_c00496{bottom:246.420000px;}
.y41_c00496{bottom:263.250000px;}
.y40_c00496{bottom:280.170000px;}
.y3f_c00496{bottom:297.000000px;}
.y3e_c00496{bottom:313.920000px;}
.y3d_c00496{bottom:329.940000px;}
.y3c_c00496{bottom:343.710000px;}
.y3b_c00496{bottom:357.570000px;}
.y3a_c00496{bottom:373.590000px;}
.y39_c00496{bottom:389.610000px;}
.y38_c00496{bottom:403.470000px;}
.y37_c00496{bottom:417.240000px;}
.y36_c00496{bottom:431.010000px;}
.y35_c00496{bottom:444.780000px;}
.y34_c00496{bottom:458.910000px;}
.y32_c00496{bottom:472.680000px;}
.y31_c00496{bottom:500.310000px;}
.y30_c00496{bottom:516.330000px;}
.y2f_c00496{bottom:532.440000px;}
.y2e_c00496{bottom:546.210000px;}
.y2d_c00496{bottom:563.130000px;}
.y2c_c00496{bottom:579.960000px;}
.y2b_c00496{bottom:596.880000px;}
.y2a_c00496{bottom:613.710000px;}
.y29_c00496{bottom:630.630000px;}
.y28_c00496{bottom:646.650000px;}
.y27_c00496{bottom:661.860000px;}
.y26_c00496{bottom:675.630000px;}
.y25_c00496{bottom:691.740000px;}
.y24_c00496{bottom:707.760000px;}
.y23_c00496{bottom:721.530000px;}
.y22_c00496{bottom:736.830000px;}
.y21_c00496{bottom:750.690000px;}
.y20_c00496{bottom:764.460000px;}
.y1f_c00496{bottom:778.230000px;}
.y1c_c00496{bottom:792.090000px;}
.y1b_c00496{bottom:819.630000px;}
.y1a_c00496{bottom:835.740000px;}
.y19_c00496{bottom:852.750000px;}
.y18_c00496{bottom:866.520000px;}
.y17_c00496{bottom:883.440000px;}
.y16_c00496{bottom:900.270000px;}
.y15_c00496{bottom:917.190000px;}
.y14_c00496{bottom:934.020000px;}
.y13_c00496{bottom:950.940000px;}
.y12_c00496{bottom:966.960000px;}
.y11_c00496{bottom:980.730000px;}
.y10_c00496{bottom:994.590000px;}
.yf_c00496{bottom:1010.610000px;}
.ye_c00496{bottom:1026.630000px;}
.yd_c00496{bottom:1040.670000px;}
.yc_c00496{bottom:1054.440000px;}
.yb_c00496{bottom:1068.300000px;}
.y9_c00496{bottom:1082.070000px;}
.y6_c00496{bottom:1095.840000px;}
.y5_c00496{bottom:1131.030000px;}
.y4_c00496{bottom:1150.920000px;}
.y3_c00496{bottom:1166.404500px;}
.y2_c00496{bottom:1181.970000px;}
.y1_c00496{bottom:1197.450000px;}
.h8_c00496{height:13.770000px;}
.ha_c00496{height:13.858500px;}
.hf_c00496{height:13.860000px;}
.hb_c00496{height:14.040000px;}
.h14_c00496{height:14.128500px;}
.he_c00496{height:14.760000px;}
.h12_c00496{height:15.210000px;}
.h11_c00496{height:15.300000px;}
.hd_c00496{height:16.830000px;}
.hc_c00496{height:16.920000px;}
.h10_c00496{height:27.540000px;}
.h13_c00496{height:27.630000px;}
.h5_c00496{height:31.050000px;}
.h9_c00496{height:46.991602px;}
.h7_c00496{height:48.254063px;}
.h3_c00496{height:52.971680px;}
.h2_c00496{height:52.998047px;}
.h6_c00496{height:59.004492px;}
.h4_c00496{height:70.664062px;}
.h0_c00496{height:1262.880000px;}
.h1_c00496{height:1263.000000px;}
.w5_c00496{width:76.680000px;}
.w7_c00496{width:80.370000px;}
.wa_c00496{width:81.450000px;}
.w6_c00496{width:81.451500px;}
.w4_c00496{width:87.120000px;}
.w8_c00496{width:158.131500px;}
.w3_c00496{width:179.100000px;}
.w9_c00496{width:180.270000px;}
.w2_c00496{width:506.970000px;}
.w0_c00496{width:893.070000px;}
.w1_c00496{width:893.250000px;}
.x0_c00496{left:0.000000px;}
.xf_c00496{left:4.050000px;}
.x5_c00496{left:5.220000px;}
.xa_c00496{left:14.670000px;}
.x8_c00496{left:16.560000px;}
.xc_c00496{left:17.730000px;}
.x11_c00496{left:26.460000px;}
.xe_c00496{left:27.900000px;}
.x12_c00496{left:31.230000px;}
.x14_c00496{left:32.940000px;}
.x10_c00496{left:36.900000px;}
.x13_c00496{left:43.200000px;}
.x15_c00496{left:48.870000px;}
.x16_c00496{left:56.880000px;}
.x17_c00496{left:60.930000px;}
.x6_c00496{left:68.310000px;}
.x18_c00496{left:70.200000px;}
.x4_c00496{left:126.450000px;}
.x3_c00496{left:127.620000px;}
.x7_c00496{left:306.720000px;}
.x9_c00496{left:393.840000px;}
.x2_c00496{left:425.160000px;}
.x1_c00496{left:446.580000px;}
.xb_c00496{left:470.520000px;}
.xd_c00496{left:551.970000px;}
.x19_c00496{left:738.540000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls4_c00496{letter-spacing:-0.468160pt;}
.ls2_c00496{letter-spacing:-0.096000pt;}
.ls3_c00496{letter-spacing:-0.085120pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:0.170240pt;}
.ws1_c00496{word-spacing:-10.810240pt;}
.ws0_c00496{word-spacing:-10.640000pt;}
.ws2_c00496{word-spacing:-10.554880pt;}
.ws8_c00496{word-spacing:-0.255360pt;}
.ws6_c00496{word-spacing:-0.085120pt;}
.ws3_c00496{word-spacing:0.000000pt;}
.wsa_c00496{word-spacing:0.085120pt;}
.ws5_c00496{word-spacing:0.144000pt;}
.ws4_c00496{word-spacing:0.240000pt;}
.ws7_c00496{word-spacing:0.255360pt;}
.ws9_c00496{word-spacing:0.468160pt;}
._1_c00496{margin-left:-0.940800pt;}
._0_c00496{width:1.084800pt;}
._2_c00496{width:752.000000pt;}
.fs3_c00496{font-size:42.560000pt;}
.fs0_c00496{font-size:48.000000pt;}
.fs2_c00496{font-size:53.440000pt;}
.fs1_c00496{font-size:64.000000pt;}
.y1e_c00496{bottom:-9.680000pt;}
.y0_c00496{bottom:0.000000pt;}
.ya_c00496{bottom:2.560000pt;}
.y8_c00496{bottom:2.640000pt;}
.y1d_c00496{bottom:14.800000pt;}
.y33_c00496{bottom:14.880000pt;}
.y7_c00496{bottom:15.360000pt;}
.y48_c00496{bottom:50.880000pt;}
.y47_c00496{bottom:148.480000pt;}
.y46_c00496{bottom:163.200000pt;}
.y45_c00496{bottom:177.440000pt;}
.y44_c00496{bottom:191.760000pt;}
.y43_c00496{bottom:204.000000pt;}
.y42_c00496{bottom:219.040000pt;}
.y41_c00496{bottom:234.000000pt;}
.y40_c00496{bottom:249.040000pt;}
.y3f_c00496{bottom:264.000000pt;}
.y3e_c00496{bottom:279.040000pt;}
.y3d_c00496{bottom:293.280000pt;}
.y3c_c00496{bottom:305.520000pt;}
.y3b_c00496{bottom:317.840000pt;}
.y3a_c00496{bottom:332.080000pt;}
.y39_c00496{bottom:346.320000pt;}
.y38_c00496{bottom:358.640000pt;}
.y37_c00496{bottom:370.880000pt;}
.y36_c00496{bottom:383.120000pt;}
.y35_c00496{bottom:395.360000pt;}
.y34_c00496{bottom:407.920000pt;}
.y32_c00496{bottom:420.160000pt;}
.y31_c00496{bottom:444.720000pt;}
.y30_c00496{bottom:458.960000pt;}
.y2f_c00496{bottom:473.280000pt;}
.y2e_c00496{bottom:485.520000pt;}
.y2d_c00496{bottom:500.560000pt;}
.y2c_c00496{bottom:515.520000pt;}
.y2b_c00496{bottom:530.560000pt;}
.y2a_c00496{bottom:545.520000pt;}
.y29_c00496{bottom:560.560000pt;}
.y28_c00496{bottom:574.800000pt;}
.y27_c00496{bottom:588.320000pt;}
.y26_c00496{bottom:600.560000pt;}
.y25_c00496{bottom:614.880000pt;}
.y24_c00496{bottom:629.120000pt;}
.y23_c00496{bottom:641.360000pt;}
.y22_c00496{bottom:654.960000pt;}
.y21_c00496{bottom:667.280000pt;}
.y20_c00496{bottom:679.520000pt;}
.y1f_c00496{bottom:691.760000pt;}
.y1c_c00496{bottom:704.080000pt;}
.y1b_c00496{bottom:728.560000pt;}
.y1a_c00496{bottom:742.880000pt;}
.y19_c00496{bottom:758.000000pt;}
.y18_c00496{bottom:770.240000pt;}
.y17_c00496{bottom:785.280000pt;}
.y16_c00496{bottom:800.240000pt;}
.y15_c00496{bottom:815.280000pt;}
.y14_c00496{bottom:830.240000pt;}
.y13_c00496{bottom:845.280000pt;}
.y12_c00496{bottom:859.520000pt;}
.y11_c00496{bottom:871.760000pt;}
.y10_c00496{bottom:884.080000pt;}
.yf_c00496{bottom:898.320000pt;}
.ye_c00496{bottom:912.560000pt;}
.yd_c00496{bottom:925.040000pt;}
.yc_c00496{bottom:937.280000pt;}
.yb_c00496{bottom:949.600000pt;}
.y9_c00496{bottom:961.840000pt;}
.y6_c00496{bottom:974.080000pt;}
.y5_c00496{bottom:1005.360000pt;}
.y4_c00496{bottom:1023.040000pt;}
.y3_c00496{bottom:1036.804000pt;}
.y2_c00496{bottom:1050.640000pt;}
.y1_c00496{bottom:1064.400000pt;}
.h8_c00496{height:12.240000pt;}
.ha_c00496{height:12.318667pt;}
.hf_c00496{height:12.320000pt;}
.hb_c00496{height:12.480000pt;}
.h14_c00496{height:12.558667pt;}
.he_c00496{height:13.120000pt;}
.h12_c00496{height:13.520000pt;}
.h11_c00496{height:13.600000pt;}
.hd_c00496{height:14.960000pt;}
.hc_c00496{height:15.040000pt;}
.h10_c00496{height:24.480000pt;}
.h13_c00496{height:24.560000pt;}
.h5_c00496{height:27.600000pt;}
.h9_c00496{height:41.770312pt;}
.h7_c00496{height:42.892500pt;}
.h3_c00496{height:47.085938pt;}
.h2_c00496{height:47.109375pt;}
.h6_c00496{height:52.448437pt;}
.h4_c00496{height:62.812500pt;}
.h0_c00496{height:1122.560000pt;}
.h1_c00496{height:1122.666667pt;}
.w5_c00496{width:68.160000pt;}
.w7_c00496{width:71.440000pt;}
.wa_c00496{width:72.400000pt;}
.w6_c00496{width:72.401333pt;}
.w4_c00496{width:77.440000pt;}
.w8_c00496{width:140.561333pt;}
.w3_c00496{width:159.200000pt;}
.w9_c00496{width:160.240000pt;}
.w2_c00496{width:450.640000pt;}
.w0_c00496{width:793.840000pt;}
.w1_c00496{width:794.000000pt;}
.x0_c00496{left:0.000000pt;}
.xf_c00496{left:3.600000pt;}
.x5_c00496{left:4.640000pt;}
.xa_c00496{left:13.040000pt;}
.x8_c00496{left:14.720000pt;}
.xc_c00496{left:15.760000pt;}
.x11_c00496{left:23.520000pt;}
.xe_c00496{left:24.800000pt;}
.x12_c00496{left:27.760000pt;}
.x14_c00496{left:29.280000pt;}
.x10_c00496{left:32.800000pt;}
.x13_c00496{left:38.400000pt;}
.x15_c00496{left:43.440000pt;}
.x16_c00496{left:50.560000pt;}
.x17_c00496{left:54.160000pt;}
.x6_c00496{left:60.720000pt;}
.x18_c00496{left:62.400000pt;}
.x4_c00496{left:112.400000pt;}
.x3_c00496{left:113.440000pt;}
.x7_c00496{left:272.640000pt;}
.x9_c00496{left:350.080000pt;}
.x2_c00496{left:377.920000pt;}
.x1_c00496{left:396.960000pt;}
.xb_c00496{left:418.240000pt;}
.xd_c00496{left:490.640000pt;}
.x19_c00496{left:656.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_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_b0f62d43df35d4313a252db6.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_d07c8e1991a9cc5c60909f90.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00497{vertical-align:-61.938000px;}
.v0_c00497{vertical-align:0.000000px;}
.ls3_c00497{letter-spacing:-0.095760px;}
.ls2_c00497{letter-spacing:0.000000px;}
.ls1_c00497{letter-spacing:0.191520px;}
.ls0_c00497{letter-spacing:319.518000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00497{word-spacing:-12.161520px;}
.ws0_c00497{word-spacing:-11.970000px;}
.ws2_c00497{word-spacing:-11.874240px;}
.ws7_c00497{word-spacing:-0.287280px;}
.ws4_c00497{word-spacing:-0.162000px;}
.ws5_c00497{word-spacing:-0.095760px;}
.ws3_c00497{word-spacing:0.000000px;}
.ws6_c00497{word-spacing:0.287280px;}
._1_c00497{margin-left:-1.082160px;}
._0_c00497{width:1.168272px;}
._2_c00497{width:846.000000px;}
.fc1_c00497{color:transparent;}
.fc0_c00497{color:rgb(0,0,0);}
.fs3_c00497{font-size:47.880000px;}
.fs0_c00497{font-size:54.000000px;}
.fs2_c00497{font-size:60.120000px;}
.fs1_c00497{font-size:72.000000px;}
.y1e_c00497{bottom:-10.890000px;}
.y0_c00497{bottom:0.000000px;}
.y1d_c00497{bottom:2.879850px;}
.y9_c00497{bottom:2.880000px;}
.y7_c00497{bottom:2.970000px;}
.y1c_c00497{bottom:16.650000px;}
.y6_c00497{bottom:17.280000px;}
.y45_c00497{bottom:57.240000px;}
.y44_c00497{bottom:175.680000px;}
.y43_c00497{bottom:192.240000px;}
.y42_c00497{bottom:208.260000px;}
.y41_c00497{bottom:224.280000px;}
.y40_c00497{bottom:238.140000px;}
.y3f_c00497{bottom:254.970000px;}
.y3e_c00497{bottom:271.890000px;}
.y3d_c00497{bottom:288.720000px;}
.y3c_c00497{bottom:305.640000px;}
.y3b_c00497{bottom:325.890000px;}
.y3a_c00497{bottom:343.890000px;}
.y39_c00497{bottom:360.720000px;}
.y38_c00497{bottom:380.970000px;}
.y37_c00497{bottom:397.080000px;}
.y36_c00497{bottom:412.830000px;}
.y35_c00497{bottom:426.600000px;}
.y34_c00497{bottom:440.370000px;}
.y33_c00497{bottom:454.230000px;}
.y32_c00497{bottom:468.000000px;}
.y31_c00497{bottom:481.770000px;}
.y30_c00497{bottom:489.870000px;}
.y2f_c00497{bottom:505.980000px;}
.y2e_c00497{bottom:522.000000px;}
.y2d_c00497{bottom:535.860000px;}
.y2c_c00497{bottom:552.780000px;}
.y2b_c00497{bottom:569.610000px;}
.y2a_c00497{bottom:586.530000px;}
.y29_c00497{bottom:603.360000px;}
.y28_c00497{bottom:623.610000px;}
.y27_c00497{bottom:641.610000px;}
.y26_c00497{bottom:658.530000px;}
.y25_c00497{bottom:678.780000px;}
.y24_c00497{bottom:694.800000px;}
.y23_c00497{bottom:708.570000px;}
.y22_c00497{bottom:722.340000px;}
.y21_c00497{bottom:736.200000px;}
.y20_c00497{bottom:749.970000px;}
.y1f_c00497{bottom:763.740000px;}
.y1b_c00497{bottom:777.600000px;}
.y1a_c00497{bottom:805.140000px;}
.y19_c00497{bottom:821.250000px;}
.y18_c00497{bottom:837.270000px;}
.y17_c00497{bottom:851.040000px;}
.y16_c00497{bottom:867.960000px;}
.y15_c00497{bottom:884.790000px;}
.y14_c00497{bottom:901.710000px;}
.y13_c00497{bottom:918.540000px;}
.y12_c00497{bottom:935.460000px;}
.y11_c00497{bottom:955.710000px;}
.y10_c00497{bottom:973.710000px;}
.yf_c00497{bottom:990.540000px;}
.ye_c00497{bottom:1010.790000px;}
.yd_c00497{bottom:1026.900000px;}
.yc_c00497{bottom:1040.670000px;}
.yb_c00497{bottom:1054.440000px;}
.ya_c00497{bottom:1068.300000px;}
.y8_c00497{bottom:1082.070000px;}
.y5_c00497{bottom:1095.840000px;}
.y4_c00497{bottom:1131.030000px;}
.y3_c00497{bottom:1150.915500px;}
.y2_c00497{bottom:1166.400000px;}
.y1_c00497{bottom:1197.450000px;}
.h12_c00497{height:8.100000px;}
.h7_c00497{height:13.770000px;}
.h9_c00497{height:13.858500px;}
.ha_c00497{height:13.860000px;}
.h13_c00497{height:15.750000px;}
.hc_c00497{height:16.828500px;}
.he_c00497{height:16.830000px;}
.hd_c00497{height:16.920000px;}
.h11_c00497{height:16.921500px;}
.h10_c00497{height:18.000000px;}
.hb_c00497{height:18.001500px;}
.hf_c00497{height:27.540000px;}
.h4_c00497{height:31.050000px;}
.h8_c00497{height:46.991602px;}
.h6_c00497{height:48.254063px;}
.h2_c00497{height:52.998047px;}
.h5_c00497{height:59.004492px;}
.h3_c00497{height:70.664062px;}
.h0_c00497{height:1262.880000px;}
.h1_c00497{height:1263.000000px;}
.w5_c00497{width:76.680000px;}
.w7_c00497{width:80.370000px;}
.wa_c00497{width:81.450000px;}
.w6_c00497{width:81.451500px;}
.w4_c00497{width:87.120000px;}
.w8_c00497{width:158.131500px;}
.w3_c00497{width:179.100000px;}
.w9_c00497{width:180.270000px;}
.w2_c00497{width:506.970000px;}
.w0_c00497{width:893.070000px;}
.w1_c00497{width:893.250000px;}
.x0_c00497{left:0.000000px;}
.xe_c00497{left:4.050000px;}
.x4_c00497{left:5.220000px;}
.x9_c00497{left:14.670000px;}
.x7_c00497{left:16.560000px;}
.xb_c00497{left:17.730000px;}
.x10_c00497{left:26.460000px;}
.xd_c00497{left:27.900000px;}
.x11_c00497{left:31.230000px;}
.x13_c00497{left:32.940000px;}
.xf_c00497{left:36.900000px;}
.x12_c00497{left:43.200000px;}
.x14_c00497{left:48.870000px;}
.x17_c00497{left:56.880000px;}
.x15_c00497{left:62.910000px;}
.x16_c00497{left:66.870000px;}
.x5_c00497{left:68.310000px;}
.x3_c00497{left:126.450000px;}
.x2_c00497{left:127.620000px;}
.x6_c00497{left:306.720000px;}
.x8_c00497{left:393.840000px;}
.x1_c00497{left:446.580000px;}
.xa_c00497{left:470.520000px;}
.xc_c00497{left:551.970000px;}
@media print{
.v1_c00497{vertical-align:-55.056000pt;}
.v0_c00497{vertical-align:0.000000pt;}
.ls3_c00497{letter-spacing:-0.085120pt;}
.ls2_c00497{letter-spacing:0.000000pt;}
.ls1_c00497{letter-spacing:0.170240pt;}
.ls0_c00497{letter-spacing:284.016000pt;}
.ws1_c00497{word-spacing:-10.810240pt;}
.ws0_c00497{word-spacing:-10.640000pt;}
.ws2_c00497{word-spacing:-10.554880pt;}
.ws7_c00497{word-spacing:-0.255360pt;}
.ws4_c00497{word-spacing:-0.144000pt;}
.ws5_c00497{word-spacing:-0.085120pt;}
.ws3_c00497{word-spacing:0.000000pt;}
.ws6_c00497{word-spacing:0.255360pt;}
._1_c00497{margin-left:-0.961920pt;}
._0_c00497{width:1.038464pt;}
._2_c00497{width:752.000000pt;}
.fs3_c00497{font-size:42.560000pt;}
.fs0_c00497{font-size:48.000000pt;}
.fs2_c00497{font-size:53.440000pt;}
.fs1_c00497{font-size:64.000000pt;}
.y1e_c00497{bottom:-9.680000pt;}
.y0_c00497{bottom:0.000000pt;}
.y1d_c00497{bottom:2.559867pt;}
.y9_c00497{bottom:2.560000pt;}
.y7_c00497{bottom:2.640000pt;}
.y1c_c00497{bottom:14.800000pt;}
.y6_c00497{bottom:15.360000pt;}
.y45_c00497{bottom:50.880000pt;}
.y44_c00497{bottom:156.160000pt;}
.y43_c00497{bottom:170.880000pt;}
.y42_c00497{bottom:185.120000pt;}
.y41_c00497{bottom:199.360000pt;}
.y40_c00497{bottom:211.680000pt;}
.y3f_c00497{bottom:226.640000pt;}
.y3e_c00497{bottom:241.680000pt;}
.y3d_c00497{bottom:256.640000pt;}
.y3c_c00497{bottom:271.680000pt;}
.y3b_c00497{bottom:289.680000pt;}
.y3a_c00497{bottom:305.680000pt;}
.y39_c00497{bottom:320.640000pt;}
.y38_c00497{bottom:338.640000pt;}
.y37_c00497{bottom:352.960000pt;}
.y36_c00497{bottom:366.960000pt;}
.y35_c00497{bottom:379.200000pt;}
.y34_c00497{bottom:391.440000pt;}
.y33_c00497{bottom:403.760000pt;}
.y32_c00497{bottom:416.000000pt;}
.y31_c00497{bottom:428.240000pt;}
.y30_c00497{bottom:435.440000pt;}
.y2f_c00497{bottom:449.760000pt;}
.y2e_c00497{bottom:464.000000pt;}
.y2d_c00497{bottom:476.320000pt;}
.y2c_c00497{bottom:491.360000pt;}
.y2b_c00497{bottom:506.320000pt;}
.y2a_c00497{bottom:521.360000pt;}
.y29_c00497{bottom:536.320000pt;}
.y28_c00497{bottom:554.320000pt;}
.y27_c00497{bottom:570.320000pt;}
.y26_c00497{bottom:585.360000pt;}
.y25_c00497{bottom:603.360000pt;}
.y24_c00497{bottom:617.600000pt;}
.y23_c00497{bottom:629.840000pt;}
.y22_c00497{bottom:642.080000pt;}
.y21_c00497{bottom:654.400000pt;}
.y20_c00497{bottom:666.640000pt;}
.y1f_c00497{bottom:678.880000pt;}
.y1b_c00497{bottom:691.200000pt;}
.y1a_c00497{bottom:715.680000pt;}
.y19_c00497{bottom:730.000000pt;}
.y18_c00497{bottom:744.240000pt;}
.y17_c00497{bottom:756.480000pt;}
.y16_c00497{bottom:771.520000pt;}
.y15_c00497{bottom:786.480000pt;}
.y14_c00497{bottom:801.520000pt;}
.y13_c00497{bottom:816.480000pt;}
.y12_c00497{bottom:831.520000pt;}
.y11_c00497{bottom:849.520000pt;}
.y10_c00497{bottom:865.520000pt;}
.yf_c00497{bottom:880.480000pt;}
.ye_c00497{bottom:898.480000pt;}
.yd_c00497{bottom:912.800000pt;}
.yc_c00497{bottom:925.040000pt;}
.yb_c00497{bottom:937.280000pt;}
.ya_c00497{bottom:949.600000pt;}
.y8_c00497{bottom:961.840000pt;}
.y5_c00497{bottom:974.080000pt;}
.y4_c00497{bottom:1005.360000pt;}
.y3_c00497{bottom:1023.036000pt;}
.y2_c00497{bottom:1036.800000pt;}
.y1_c00497{bottom:1064.400000pt;}
.h12_c00497{height:7.200000pt;}
.h7_c00497{height:12.240000pt;}
.h9_c00497{height:12.318667pt;}
.ha_c00497{height:12.320000pt;}
.h13_c00497{height:14.000000pt;}
.hc_c00497{height:14.958667pt;}
.he_c00497{height:14.960000pt;}
.hd_c00497{height:15.040000pt;}
.h11_c00497{height:15.041333pt;}
.h10_c00497{height:16.000000pt;}
.hb_c00497{height:16.001333pt;}
.hf_c00497{height:24.480000pt;}
.h4_c00497{height:27.600000pt;}
.h8_c00497{height:41.770312pt;}
.h6_c00497{height:42.892500pt;}
.h2_c00497{height:47.109375pt;}
.h5_c00497{height:52.448437pt;}
.h3_c00497{height:62.812500pt;}
.h0_c00497{height:1122.560000pt;}
.h1_c00497{height:1122.666667pt;}
.w5_c00497{width:68.160000pt;}
.w7_c00497{width:71.440000pt;}
.wa_c00497{width:72.400000pt;}
.w6_c00497{width:72.401333pt;}
.w4_c00497{width:77.440000pt;}
.w8_c00497{width:140.561333pt;}
.w3_c00497{width:159.200000pt;}
.w9_c00497{width:160.240000pt;}
.w2_c00497{width:450.640000pt;}
.w0_c00497{width:793.840000pt;}
.w1_c00497{width:794.000000pt;}
.x0_c00497{left:0.000000pt;}
.xe_c00497{left:3.600000pt;}
.x4_c00497{left:4.640000pt;}
.x9_c00497{left:13.040000pt;}
.x7_c00497{left:14.720000pt;}
.xb_c00497{left:15.760000pt;}
.x10_c00497{left:23.520000pt;}
.xd_c00497{left:24.800000pt;}
.x11_c00497{left:27.760000pt;}
.x13_c00497{left:29.280000pt;}
.xf_c00497{left:32.800000pt;}
.x12_c00497{left:38.400000pt;}
.x14_c00497{left:43.440000pt;}
.x17_c00497{left:50.560000pt;}
.x15_c00497{left:55.920000pt;}
.x16_c00497{left:59.440000pt;}
.x5_c00497{left:60.720000pt;}
.x3_c00497{left:112.400000pt;}
.x2_c00497{left:113.440000pt;}
.x6_c00497{left:272.640000pt;}
.x8_c00497{left:350.080000pt;}
.x1_c00497{left:396.960000pt;}
.xa_c00497{left:418.240000pt;}
.xc_c00497{left:490.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_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_92d2a476043f9e1218d68378.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_f4051ae8fd3b3478c694c12d.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_375520646a12da44244aef4c.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls2_c00498{letter-spacing:-0.108000px;}
.ls3_c00498{letter-spacing:-0.095760px;}
.ls1_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:0.191520px;}
.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;}
}
.ws1_c00498{word-spacing:-12.161520px;}
.ws0_c00498{word-spacing:-11.970000px;}
.ws2_c00498{word-spacing:-11.874240px;}
.ws7_c00498{word-spacing:-0.287280px;}
.ws9_c00498{word-spacing:-0.191520px;}
.ws6_c00498{word-spacing:-0.095760px;}
.ws3_c00498{word-spacing:0.000000px;}
.ws8_c00498{word-spacing:0.095760px;}
.ws5_c00498{word-spacing:0.162000px;}
.ws4_c00498{word-spacing:0.270000px;}
._1_c00498{margin-left:-1.058400px;}
._0_c00498{width:1.220400px;}
._2_c00498{width:846.000000px;}
.fc1_c00498{color:transparent;}
.fc0_c00498{color:rgb(0,0,0);}
.fs3_c00498{font-size:47.880000px;}
.fs0_c00498{font-size:54.000000px;}
.fs2_c00498{font-size:60.120000px;}
.fs1_c00498{font-size:72.000000px;}
.y1d_c00498{bottom:-10.890000px;}
.y0_c00498{bottom:0.000000px;}
.ya_c00498{bottom:2.880000px;}
.y8_c00498{bottom:2.970000px;}
.y32_c00498{bottom:16.650000px;}
.y1c_c00498{bottom:16.740000px;}
.y7_c00498{bottom:17.280000px;}
.y46_c00498{bottom:57.240000px;}
.y45_c00498{bottom:157.140000px;}
.y44_c00498{bottom:173.700000px;}
.y43_c00498{bottom:189.720000px;}
.y42_c00498{bottom:205.830000px;}
.y41_c00498{bottom:219.600000px;}
.y40_c00498{bottom:236.430000px;}
.y3f_c00498{bottom:253.350000px;}
.y3e_c00498{bottom:270.180000px;}
.y3d_c00498{bottom:287.100000px;}
.y3c_c00498{bottom:307.350000px;}
.y3b_c00498{bottom:325.350000px;}
.y3a_c00498{bottom:342.180000px;}
.y39_c00498{bottom:362.430000px;}
.y38_c00498{bottom:378.540000px;}
.y37_c00498{bottom:392.310000px;}
.y36_c00498{bottom:406.080000px;}
.y35_c00498{bottom:419.940000px;}
.y34_c00498{bottom:433.710000px;}
.y33_c00498{bottom:447.480000px;}
.y31_c00498{bottom:461.340000px;}
.y30_c00498{bottom:488.880000px;}
.y2f_c00498{bottom:504.990000px;}
.y2e_c00498{bottom:521.010000px;}
.y2d_c00498{bottom:534.870000px;}
.y2c_c00498{bottom:551.790000px;}
.y2b_c00498{bottom:568.620000px;}
.y2a_c00498{bottom:585.540000px;}
.y29_c00498{bottom:602.370000px;}
.y28_c00498{bottom:619.290000px;}
.y27_c00498{bottom:639.540000px;}
.y26_c00498{bottom:657.540000px;}
.y25_c00498{bottom:674.370000px;}
.y24_c00498{bottom:694.620000px;}
.y23_c00498{bottom:710.640000px;}
.y22_c00498{bottom:724.500000px;}
.y21_c00498{bottom:738.270000px;}
.y20_c00498{bottom:752.040000px;}
.y1f_c00498{bottom:765.900000px;}
.y1e_c00498{bottom:779.670000px;}
.y1b_c00498{bottom:793.440000px;}
.y1a_c00498{bottom:821.070000px;}
.y19_c00498{bottom:838.080000px;}
.y18_c00498{bottom:854.190000px;}
.y17_c00498{bottom:867.960000px;}
.y16_c00498{bottom:884.790000px;}
.y15_c00498{bottom:901.710000px;}
.y14_c00498{bottom:918.540000px;}
.y13_c00498{bottom:935.460000px;}
.y12_c00498{bottom:955.710000px;}
.y11_c00498{bottom:973.710000px;}
.y10_c00498{bottom:990.540000px;}
.yf_c00498{bottom:1010.790000px;}
.ye_c00498{bottom:1026.900000px;}
.yd_c00498{bottom:1040.670000px;}
.yc_c00498{bottom:1054.440000px;}
.yb_c00498{bottom:1068.300000px;}
.y9_c00498{bottom:1082.070000px;}
.y6_c00498{bottom:1095.840000px;}
.y5_c00498{bottom:1131.030000px;}
.y4_c00498{bottom:1150.920000px;}
.y3_c00498{bottom:1166.404500px;}
.y2_c00498{bottom:1181.970000px;}
.y1_c00498{bottom:1197.450000px;}
.h8_c00498{height:13.770000px;}
.ha_c00498{height:13.858500px;}
.hb_c00498{height:13.860000px;}
.h10_c00498{height:14.760000px;}
.hd_c00498{height:16.828500px;}
.hf_c00498{height:16.830000px;}
.he_c00498{height:16.920000px;}
.h14_c00498{height:16.921500px;}
.h13_c00498{height:18.000000px;}
.hc_c00498{height:18.001500px;}
.h12_c00498{height:27.540000px;}
.h11_c00498{height:27.630000px;}
.h5_c00498{height:31.050000px;}
.h9_c00498{height:46.991602px;}
.h7_c00498{height:48.254063px;}
.h3_c00498{height:52.971680px;}
.h2_c00498{height:52.998047px;}
.h6_c00498{height:59.004492px;}
.h4_c00498{height:70.664062px;}
.h0_c00498{height:1262.880000px;}
.h1_c00498{height:1263.000000px;}
.w5_c00498{width:76.680000px;}
.w7_c00498{width:80.370000px;}
.wa_c00498{width:81.450000px;}
.w6_c00498{width:81.451500px;}
.w4_c00498{width:87.120000px;}
.w8_c00498{width:158.131500px;}
.w3_c00498{width:179.100000px;}
.w9_c00498{width:180.270000px;}
.w2_c00498{width:506.970000px;}
.w0_c00498{width:893.070000px;}
.w1_c00498{width:893.250000px;}
.x0_c00498{left:0.000000px;}
.xf_c00498{left:4.050000px;}
.x5_c00498{left:5.220000px;}
.xa_c00498{left:14.670000px;}
.x8_c00498{left:16.560000px;}
.xc_c00498{left:17.730000px;}
.x11_c00498{left:26.460000px;}
.xe_c00498{left:27.900000px;}
.x12_c00498{left:31.230000px;}
.x14_c00498{left:32.940000px;}
.x10_c00498{left:36.900000px;}
.x13_c00498{left:43.200000px;}
.x15_c00498{left:49.230000px;}
.x16_c00498{left:56.880000px;}
.x17_c00498{left:60.930000px;}
.x6_c00498{left:68.310000px;}
.x4_c00498{left:126.450000px;}
.x3_c00498{left:127.620000px;}
.x7_c00498{left:306.720000px;}
.x9_c00498{left:393.840000px;}
.x2_c00498{left:425.160000px;}
.x1_c00498{left:446.580000px;}
.xb_c00498{left:470.520000px;}
.xd_c00498{left:551.970000px;}
.x18_c00498{left:738.540000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls2_c00498{letter-spacing:-0.096000pt;}
.ls3_c00498{letter-spacing:-0.085120pt;}
.ls1_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:0.170240pt;}
.ws1_c00498{word-spacing:-10.810240pt;}
.ws0_c00498{word-spacing:-10.640000pt;}
.ws2_c00498{word-spacing:-10.554880pt;}
.ws7_c00498{word-spacing:-0.255360pt;}
.ws9_c00498{word-spacing:-0.170240pt;}
.ws6_c00498{word-spacing:-0.085120pt;}
.ws3_c00498{word-spacing:0.000000pt;}
.ws8_c00498{word-spacing:0.085120pt;}
.ws5_c00498{word-spacing:0.144000pt;}
.ws4_c00498{word-spacing:0.240000pt;}
._1_c00498{margin-left:-0.940800pt;}
._0_c00498{width:1.084800pt;}
._2_c00498{width:752.000000pt;}
.fs3_c00498{font-size:42.560000pt;}
.fs0_c00498{font-size:48.000000pt;}
.fs2_c00498{font-size:53.440000pt;}
.fs1_c00498{font-size:64.000000pt;}
.y1d_c00498{bottom:-9.680000pt;}
.y0_c00498{bottom:0.000000pt;}
.ya_c00498{bottom:2.560000pt;}
.y8_c00498{bottom:2.640000pt;}
.y32_c00498{bottom:14.800000pt;}
.y1c_c00498{bottom:14.880000pt;}
.y7_c00498{bottom:15.360000pt;}
.y46_c00498{bottom:50.880000pt;}
.y45_c00498{bottom:139.680000pt;}
.y44_c00498{bottom:154.400000pt;}
.y43_c00498{bottom:168.640000pt;}
.y42_c00498{bottom:182.960000pt;}
.y41_c00498{bottom:195.200000pt;}
.y40_c00498{bottom:210.160000pt;}
.y3f_c00498{bottom:225.200000pt;}
.y3e_c00498{bottom:240.160000pt;}
.y3d_c00498{bottom:255.200000pt;}
.y3c_c00498{bottom:273.200000pt;}
.y3b_c00498{bottom:289.200000pt;}
.y3a_c00498{bottom:304.160000pt;}
.y39_c00498{bottom:322.160000pt;}
.y38_c00498{bottom:336.480000pt;}
.y37_c00498{bottom:348.720000pt;}
.y36_c00498{bottom:360.960000pt;}
.y35_c00498{bottom:373.280000pt;}
.y34_c00498{bottom:385.520000pt;}
.y33_c00498{bottom:397.760000pt;}
.y31_c00498{bottom:410.080000pt;}
.y30_c00498{bottom:434.560000pt;}
.y2f_c00498{bottom:448.880000pt;}
.y2e_c00498{bottom:463.120000pt;}
.y2d_c00498{bottom:475.440000pt;}
.y2c_c00498{bottom:490.480000pt;}
.y2b_c00498{bottom:505.440000pt;}
.y2a_c00498{bottom:520.480000pt;}
.y29_c00498{bottom:535.440000pt;}
.y28_c00498{bottom:550.480000pt;}
.y27_c00498{bottom:568.480000pt;}
.y26_c00498{bottom:584.480000pt;}
.y25_c00498{bottom:599.440000pt;}
.y24_c00498{bottom:617.440000pt;}
.y23_c00498{bottom:631.680000pt;}
.y22_c00498{bottom:644.000000pt;}
.y21_c00498{bottom:656.240000pt;}
.y20_c00498{bottom:668.480000pt;}
.y1f_c00498{bottom:680.800000pt;}
.y1e_c00498{bottom:693.040000pt;}
.y1b_c00498{bottom:705.280000pt;}
.y1a_c00498{bottom:729.840000pt;}
.y19_c00498{bottom:744.960000pt;}
.y18_c00498{bottom:759.280000pt;}
.y17_c00498{bottom:771.520000pt;}
.y16_c00498{bottom:786.480000pt;}
.y15_c00498{bottom:801.520000pt;}
.y14_c00498{bottom:816.480000pt;}
.y13_c00498{bottom:831.520000pt;}
.y12_c00498{bottom:849.520000pt;}
.y11_c00498{bottom:865.520000pt;}
.y10_c00498{bottom:880.480000pt;}
.yf_c00498{bottom:898.480000pt;}
.ye_c00498{bottom:912.800000pt;}
.yd_c00498{bottom:925.040000pt;}
.yc_c00498{bottom:937.280000pt;}
.yb_c00498{bottom:949.600000pt;}
.y9_c00498{bottom:961.840000pt;}
.y6_c00498{bottom:974.080000pt;}
.y5_c00498{bottom:1005.360000pt;}
.y4_c00498{bottom:1023.040000pt;}
.y3_c00498{bottom:1036.804000pt;}
.y2_c00498{bottom:1050.640000pt;}
.y1_c00498{bottom:1064.400000pt;}
.h8_c00498{height:12.240000pt;}
.ha_c00498{height:12.318667pt;}
.hb_c00498{height:12.320000pt;}
.h10_c00498{height:13.120000pt;}
.hd_c00498{height:14.958667pt;}
.hf_c00498{height:14.960000pt;}
.he_c00498{height:15.040000pt;}
.h14_c00498{height:15.041333pt;}
.h13_c00498{height:16.000000pt;}
.hc_c00498{height:16.001333pt;}
.h12_c00498{height:24.480000pt;}
.h11_c00498{height:24.560000pt;}
.h5_c00498{height:27.600000pt;}
.h9_c00498{height:41.770312pt;}
.h7_c00498{height:42.892500pt;}
.h3_c00498{height:47.085938pt;}
.h2_c00498{height:47.109375pt;}
.h6_c00498{height:52.448437pt;}
.h4_c00498{height:62.812500pt;}
.h0_c00498{height:1122.560000pt;}
.h1_c00498{height:1122.666667pt;}
.w5_c00498{width:68.160000pt;}
.w7_c00498{width:71.440000pt;}
.wa_c00498{width:72.400000pt;}
.w6_c00498{width:72.401333pt;}
.w4_c00498{width:77.440000pt;}
.w8_c00498{width:140.561333pt;}
.w3_c00498{width:159.200000pt;}
.w9_c00498{width:160.240000pt;}
.w2_c00498{width:450.640000pt;}
.w0_c00498{width:793.840000pt;}
.w1_c00498{width:794.000000pt;}
.x0_c00498{left:0.000000pt;}
.xf_c00498{left:3.600000pt;}
.x5_c00498{left:4.640000pt;}
.xa_c00498{left:13.040000pt;}
.x8_c00498{left:14.720000pt;}
.xc_c00498{left:15.760000pt;}
.x11_c00498{left:23.520000pt;}
.xe_c00498{left:24.800000pt;}
.x12_c00498{left:27.760000pt;}
.x14_c00498{left:29.280000pt;}
.x10_c00498{left:32.800000pt;}
.x13_c00498{left:38.400000pt;}
.x15_c00498{left:43.760000pt;}
.x16_c00498{left:50.560000pt;}
.x17_c00498{left:54.160000pt;}
.x6_c00498{left:60.720000pt;}
.x4_c00498{left:112.400000pt;}
.x3_c00498{left:113.440000pt;}
.x7_c00498{left:272.640000pt;}
.x9_c00498{left:350.080000pt;}
.x2_c00498{left:377.920000pt;}
.x1_c00498{left:396.960000pt;}
.xb_c00498{left:418.240000pt;}
.xd_c00498{left:490.640000pt;}
.x18_c00498{left:656.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_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_c592d4e7db511c2d6a3342bb.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_1336b61cdbfcd5d49495968a.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.284180;font-style:normal;font-weight:normal;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_3a6374b8a2cad0de72d840d7.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00499{vertical-align:-61.938000px;}
.v0_c00499{vertical-align:0.000000px;}
.ls3_c00499{letter-spacing:-0.095760px;}
.ls2_c00499{letter-spacing:0.000000px;}
.ls1_c00499{letter-spacing:0.191520px;}
.ls0_c00499{letter-spacing:319.518000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00499{word-spacing:-12.161520px;}
.ws0_c00499{word-spacing:-11.970000px;}
.ws2_c00499{word-spacing:-11.874240px;}
.ws7_c00499{word-spacing:-0.287280px;}
.ws4_c00499{word-spacing:-0.162000px;}
.ws5_c00499{word-spacing:-0.095760px;}
.ws3_c00499{word-spacing:0.000000px;}
.ws6_c00499{word-spacing:0.095760px;}
.ws8_c00499{word-spacing:0.287280px;}
._1_c00499{margin-left:-1.134216px;}
._0_c00499{width:1.168272px;}
._2_c00499{width:846.000000px;}
.fc1_c00499{color:transparent;}
.fc0_c00499{color:rgb(0,0,0);}
.fs3_c00499{font-size:47.880000px;}
.fs0_c00499{font-size:54.000000px;}
.fs2_c00499{font-size:60.120000px;}
.fs1_c00499{font-size:72.000000px;}
.y1d_c00499{bottom:-10.890000px;}
.y0_c00499{bottom:0.000000px;}
.y9_c00499{bottom:2.880000px;}
.y7_c00499{bottom:2.970000px;}
.y1c_c00499{bottom:16.740000px;}
.y6_c00499{bottom:17.280000px;}
.y46_c00499{bottom:57.240000px;}
.y45_c00499{bottom:167.400000px;}
.y44_c00499{bottom:183.960000px;}
.y43_c00499{bottom:200.070000px;}
.y42_c00499{bottom:213.840000px;}
.y41_c00499{bottom:227.610000px;}
.y40_c00499{bottom:244.530000px;}
.y3f_c00499{bottom:261.360000px;}
.y3e_c00499{bottom:278.280000px;}
.y3d_c00499{bottom:295.110000px;}
.y3c_c00499{bottom:312.030000px;}
.y3b_c00499{bottom:328.050000px;}
.y3a_c00499{bottom:341.820000px;}
.y39_c00499{bottom:355.680000px;}
.y38_c00499{bottom:371.700000px;}
.y37_c00499{bottom:387.720000px;}
.y36_c00499{bottom:401.580000px;}
.y35_c00499{bottom:415.350000px;}
.y34_c00499{bottom:429.120000px;}
.y33_c00499{bottom:442.980000px;}
.y32_c00499{bottom:456.750000px;}
.y31_c00499{bottom:470.520000px;}
.y30_c00499{bottom:498.150000px;}
.y2f_c00499{bottom:514.170000px;}
.y2e_c00499{bottom:530.280000px;}
.y2d_c00499{bottom:544.050000px;}
.y2c_c00499{bottom:560.880000px;}
.y2b_c00499{bottom:577.800000px;}
.y2a_c00499{bottom:594.630000px;}
.y29_c00499{bottom:611.550000px;}
.y28_c00499{bottom:628.380000px;}
.y27_c00499{bottom:644.490000px;}
.y26_c00499{bottom:658.260000px;}
.y25_c00499{bottom:672.030000px;}
.y24_c00499{bottom:689.040000px;}
.y23_c00499{bottom:705.060000px;}
.y22_c00499{bottom:718.830000px;}
.y21_c00499{bottom:732.690000px;}
.y20_c00499{bottom:746.460000px;}
.y1f_c00499{bottom:760.230000px;}
.y1e_c00499{bottom:774.090000px;}
.y1b_c00499{bottom:787.860000px;}
.y1a_c00499{bottom:815.490000px;}
.y19_c00499{bottom:831.510000px;}
.y18_c00499{bottom:848.520000px;}
.y17_c00499{bottom:862.290000px;}
.y16_c00499{bottom:879.210000px;}
.y15_c00499{bottom:896.040000px;}
.y14_c00499{bottom:912.960000px;}
.y13_c00499{bottom:929.790000px;}
.y12_c00499{bottom:946.710000px;}
.y11_c00499{bottom:966.960000px;}
.y10_c00499{bottom:980.730000px;}
.yf_c00499{bottom:994.590000px;}
.ye_c00499{bottom:1010.610000px;}
.yd_c00499{bottom:1026.630000px;}
.yc_c00499{bottom:1040.670000px;}
.yb_c00499{bottom:1054.440000px;}
.ya_c00499{bottom:1068.300000px;}
.y8_c00499{bottom:1082.070000px;}
.y5_c00499{bottom:1095.840000px;}
.y4_c00499{bottom:1131.030000px;}
.y3_c00499{bottom:1150.915500px;}
.y2_c00499{bottom:1166.400000px;}
.y1_c00499{bottom:1197.450000px;}
.h7_c00499{height:13.770000px;}
.h9_c00499{height:13.858500px;}
.h10_c00499{height:13.860000px;}
.ha_c00499{height:14.040000px;}
.h11_c00499{height:14.760000px;}
.he_c00499{height:14.761500px;}
.hd_c00499{height:16.828500px;}
.h12_c00499{height:16.830000px;}
.h13_c00499{height:16.920000px;}
.hc_c00499{height:16.921500px;}
.hb_c00499{height:18.000000px;}
.hf_c00499{height:27.630000px;}
.h4_c00499{height:31.050000px;}
.h8_c00499{height:46.991602px;}
.h6_c00499{height:48.254063px;}
.h2_c00499{height:52.998047px;}
.h5_c00499{height:59.004492px;}
.h3_c00499{height:70.664062px;}
.h0_c00499{height:1262.880000px;}
.h1_c00499{height:1263.000000px;}
.w5_c00499{width:76.680000px;}
.w7_c00499{width:80.370000px;}
.wa_c00499{width:81.450000px;}
.w6_c00499{width:81.451500px;}
.w4_c00499{width:87.120000px;}
.w8_c00499{width:158.131500px;}
.w3_c00499{width:179.100000px;}
.w9_c00499{width:180.270000px;}
.w2_c00499{width:506.970000px;}
.w0_c00499{width:893.070000px;}
.w1_c00499{width:893.250000px;}
.x0_c00499{left:0.000000px;}
.xe_c00499{left:4.050000px;}
.x4_c00499{left:5.220000px;}
.x9_c00499{left:14.670000px;}
.x7_c00499{left:16.560000px;}
.xb_c00499{left:17.730000px;}
.x10_c00499{left:26.460000px;}
.xd_c00499{left:27.900000px;}
.x11_c00499{left:31.230000px;}
.x14_c00499{left:32.940000px;}
.xf_c00499{left:36.900000px;}
.x12_c00499{left:43.200000px;}
.x13_c00499{left:49.230000px;}
.x15_c00499{left:56.880000px;}
.x16_c00499{left:60.930000px;}
.x5_c00499{left:68.310000px;}
.x3_c00499{left:126.450000px;}
.x2_c00499{left:127.620000px;}
.x6_c00499{left:306.720000px;}
.x8_c00499{left:393.840000px;}
.x1_c00499{left:446.580000px;}
.xa_c00499{left:470.520000px;}
.xc_c00499{left:551.970000px;}
@media print{
.v1_c00499{vertical-align:-55.056000pt;}
.v0_c00499{vertical-align:0.000000pt;}
.ls3_c00499{letter-spacing:-0.085120pt;}
.ls2_c00499{letter-spacing:0.000000pt;}
.ls1_c00499{letter-spacing:0.170240pt;}
.ls0_c00499{letter-spacing:284.016000pt;}
.ws1_c00499{word-spacing:-10.810240pt;}
.ws0_c00499{word-spacing:-10.640000pt;}
.ws2_c00499{word-spacing:-10.554880pt;}
.ws7_c00499{word-spacing:-0.255360pt;}
.ws4_c00499{word-spacing:-0.144000pt;}
.ws5_c00499{word-spacing:-0.085120pt;}
.ws3_c00499{word-spacing:0.000000pt;}
.ws6_c00499{word-spacing:0.085120pt;}
.ws8_c00499{word-spacing:0.255360pt;}
._1_c00499{margin-left:-1.008192pt;}
._0_c00499{width:1.038464pt;}
._2_c00499{width:752.000000pt;}
.fs3_c00499{font-size:42.560000pt;}
.fs0_c00499{font-size:48.000000pt;}
.fs2_c00499{font-size:53.440000pt;}
.fs1_c00499{font-size:64.000000pt;}
.y1d_c00499{bottom:-9.680000pt;}
.y0_c00499{bottom:0.000000pt;}
.y9_c00499{bottom:2.560000pt;}
.y7_c00499{bottom:2.640000pt;}
.y1c_c00499{bottom:14.880000pt;}
.y6_c00499{bottom:15.360000pt;}
.y46_c00499{bottom:50.880000pt;}
.y45_c00499{bottom:148.800000pt;}
.y44_c00499{bottom:163.520000pt;}
.y43_c00499{bottom:177.840000pt;}
.y42_c00499{bottom:190.080000pt;}
.y41_c00499{bottom:202.320000pt;}
.y40_c00499{bottom:217.360000pt;}
.y3f_c00499{bottom:232.320000pt;}
.y3e_c00499{bottom:247.360000pt;}
.y3d_c00499{bottom:262.320000pt;}
.y3c_c00499{bottom:277.360000pt;}
.y3b_c00499{bottom:291.600000pt;}
.y3a_c00499{bottom:303.840000pt;}
.y39_c00499{bottom:316.160000pt;}
.y38_c00499{bottom:330.400000pt;}
.y37_c00499{bottom:344.640000pt;}
.y36_c00499{bottom:356.960000pt;}
.y35_c00499{bottom:369.200000pt;}
.y34_c00499{bottom:381.440000pt;}
.y33_c00499{bottom:393.760000pt;}
.y32_c00499{bottom:406.000000pt;}
.y31_c00499{bottom:418.240000pt;}
.y30_c00499{bottom:442.800000pt;}
.y2f_c00499{bottom:457.040000pt;}
.y2e_c00499{bottom:471.360000pt;}
.y2d_c00499{bottom:483.600000pt;}
.y2c_c00499{bottom:498.560000pt;}
.y2b_c00499{bottom:513.600000pt;}
.y2a_c00499{bottom:528.560000pt;}
.y29_c00499{bottom:543.600000pt;}
.y28_c00499{bottom:558.560000pt;}
.y27_c00499{bottom:572.880000pt;}
.y26_c00499{bottom:585.120000pt;}
.y25_c00499{bottom:597.360000pt;}
.y24_c00499{bottom:612.480000pt;}
.y23_c00499{bottom:626.720000pt;}
.y22_c00499{bottom:638.960000pt;}
.y21_c00499{bottom:651.280000pt;}
.y20_c00499{bottom:663.520000pt;}
.y1f_c00499{bottom:675.760000pt;}
.y1e_c00499{bottom:688.080000pt;}
.y1b_c00499{bottom:700.320000pt;}
.y1a_c00499{bottom:724.880000pt;}
.y19_c00499{bottom:739.120000pt;}
.y18_c00499{bottom:754.240000pt;}
.y17_c00499{bottom:766.480000pt;}
.y16_c00499{bottom:781.520000pt;}
.y15_c00499{bottom:796.480000pt;}
.y14_c00499{bottom:811.520000pt;}
.y13_c00499{bottom:826.480000pt;}
.y12_c00499{bottom:841.520000pt;}
.y11_c00499{bottom:859.520000pt;}
.y10_c00499{bottom:871.760000pt;}
.yf_c00499{bottom:884.080000pt;}
.ye_c00499{bottom:898.320000pt;}
.yd_c00499{bottom:912.560000pt;}
.yc_c00499{bottom:925.040000pt;}
.yb_c00499{bottom:937.280000pt;}
.ya_c00499{bottom:949.600000pt;}
.y8_c00499{bottom:961.840000pt;}
.y5_c00499{bottom:974.080000pt;}
.y4_c00499{bottom:1005.360000pt;}
.y3_c00499{bottom:1023.036000pt;}
.y2_c00499{bottom:1036.800000pt;}
.y1_c00499{bottom:1064.400000pt;}
.h7_c00499{height:12.240000pt;}
.h9_c00499{height:12.318667pt;}
.h10_c00499{height:12.320000pt;}
.ha_c00499{height:12.480000pt;}
.h11_c00499{height:13.120000pt;}
.he_c00499{height:13.121333pt;}
.hd_c00499{height:14.958667pt;}
.h12_c00499{height:14.960000pt;}
.h13_c00499{height:15.040000pt;}
.hc_c00499{height:15.041333pt;}
.hb_c00499{height:16.000000pt;}
.hf_c00499{height:24.560000pt;}
.h4_c00499{height:27.600000pt;}
.h8_c00499{height:41.770312pt;}
.h6_c00499{height:42.892500pt;}
.h2_c00499{height:47.109375pt;}
.h5_c00499{height:52.448437pt;}
.h3_c00499{height:62.812500pt;}
.h0_c00499{height:1122.560000pt;}
.h1_c00499{height:1122.666667pt;}
.w5_c00499{width:68.160000pt;}
.w7_c00499{width:71.440000pt;}
.wa_c00499{width:72.400000pt;}
.w6_c00499{width:72.401333pt;}
.w4_c00499{width:77.440000pt;}
.w8_c00499{width:140.561333pt;}
.w3_c00499{width:159.200000pt;}
.w9_c00499{width:160.240000pt;}
.w2_c00499{width:450.640000pt;}
.w0_c00499{width:793.840000pt;}
.w1_c00499{width:794.000000pt;}
.x0_c00499{left:0.000000pt;}
.xe_c00499{left:3.600000pt;}
.x4_c00499{left:4.640000pt;}
.x9_c00499{left:13.040000pt;}
.x7_c00499{left:14.720000pt;}
.xb_c00499{left:15.760000pt;}
.x10_c00499{left:23.520000pt;}
.xd_c00499{left:24.800000pt;}
.x11_c00499{left:27.760000pt;}
.x14_c00499{left:29.280000pt;}
.xf_c00499{left:32.800000pt;}
.x12_c00499{left:38.400000pt;}
.x13_c00499{left:43.760000pt;}
.x15_c00499{left:50.560000pt;}
.x16_c00499{left:54.160000pt;}
.x5_c00499{left:60.720000pt;}
.x3_c00499{left:112.400000pt;}
.x2_c00499{left:113.440000pt;}
.x6_c00499{left:272.640000pt;}
.x8_c00499{left:350.080000pt;}
.x1_c00499{left:396.960000pt;}
.xa_c00499{left:418.240000pt;}
.xc_c00499{left:490.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_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_60c46cade8c3f8ef9d39d1c5.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;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_10e6a63b67d367d97c061cbb.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_dade3dd6a6b5ce55df91a188.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_93d33c662c50e4f58bb7e249.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:0.991699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_ede2bf2e874a82b17fc0f19e.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:0.921875;font-style: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);}
.v2_c00001{vertical-align:-105.840000px;}
.v1_c00001{vertical-align:-61.938000px;}
.v0_c00001{vertical-align:0.000000px;}
.lsb_c00001{letter-spacing:-0.192240px;}
.ls15_c00001{letter-spacing:-0.143640px;}
.lsd_c00001{letter-spacing:-0.131760px;}
.ls2_c00001{letter-spacing:-0.108000px;}
.ls3_c00001{letter-spacing:-0.095760px;}
.lsc_c00001{letter-spacing:-0.065880px;}
.ls13_c00001{letter-spacing:-0.047880px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls8_c00001{letter-spacing:0.000720px;}
.ls14_c00001{letter-spacing:0.047880px;}
.lsa_c00001{letter-spacing:0.065880px;}
.ls12_c00001{letter-spacing:0.108720px;}
.lse_c00001{letter-spacing:0.131760px;}
.ls0_c00001{letter-spacing:0.191520px;}
.ls11_c00001{letter-spacing:0.197640px;}
.ls10_c00001{letter-spacing:0.263520px;}
.lsf_c00001{letter-spacing:0.329400px;}
.ls9_c00001{letter-spacing:146.055960px;}
.ls4_c00001{letter-spacing:319.518000px;}
.ls7_c00001{letter-spacing:837.036000px;}
.ls5_c00001{letter-spacing:846.000000px;}
.ls6_c00001{letter-spacing:1257.840000px;}
.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;}
}
.ws9_c00001{word-spacing:-24.030000px;}
.wsa_c00001{word-spacing:-23.837760px;}
.wsf_c00001{word-spacing:-15.218280px;}
.ws17_c00001{word-spacing:-15.152400px;}
.ws18_c00001{word-spacing:-15.086520px;}
.wsb_c00001{word-spacing:-15.020640px;}
.wse_c00001{word-spacing:-14.954760px;}
.ws16_c00001{word-spacing:-14.888880px;}
.wsd_c00001{word-spacing:-14.823000px;}
.wsc_c00001{word-spacing:-14.757120px;}
.ws1_c00001{word-spacing:-12.161520px;}
.ws0_c00001{word-spacing:-11.970000px;}
.ws2_c00001{word-spacing:-11.874240px;}
.ws1a_c00001{word-spacing:-10.725120px;}
.ws19_c00001{word-spacing:-10.677240px;}
.ws10_c00001{word-spacing:-0.288360px;}
.ws7_c00001{word-spacing:-0.287280px;}
.ws1c_c00001{word-spacing:-0.263520px;}
.ws14_c00001{word-spacing:-0.197640px;}
.ws8_c00001{word-spacing:-0.162000px;}
.ws13_c00001{word-spacing:-0.131760px;}
.ws6_c00001{word-spacing:-0.095760px;}
.ws12_c00001{word-spacing:-0.065880px;}
.ws1f_c00001{word-spacing:-0.047880px;}
.ws3_c00001{word-spacing:0.000000px;}
.ws1e_c00001{word-spacing:0.047880px;}
.ws11_c00001{word-spacing:0.096120px;}
.ws15_c00001{word-spacing:0.131760px;}
.ws5_c00001{word-spacing:0.162000px;}
.ws1b_c00001{word-spacing:0.197640px;}
.ws4_c00001{word-spacing:0.270000px;}
.ws1d_c00001{word-spacing:0.329400px;}
.ws20_c00001{word-spacing:0.478800px;}
._1_c00001{margin-left:-1.058400px;}
._0_c00001{width:1.220400px;}
._4_c00001{width:72.731520px;}
._5_c00001{width:91.341000px;}
._3_c00001{width:517.948560px;}
._2_c00001{width:846.000000px;}
.fc1_c00001{color:transparent;}
.fc0_c00001{color:rgb(0,0,0);}
.fs7_c00001{font-size:2.880000px;}
.fs3_c00001{font-size:47.880000px;}
.fs0_c00001{font-size:54.000000px;}
.fs2_c00001{font-size:60.120000px;}
.fs6_c00001{font-size:65.880000px;}
.fs1_c00001{font-size:72.000000px;}
.fs4_c00001{font-size:96.120000px;}
.fs5_c00001{font-size:108.000000px;}
.y50_c00001{bottom:-15.660000px;}
.y51_c00001{bottom:-13.770000px;}
.y1d_c00001{bottom:-10.890000px;}
.y0_c00001{bottom:0.000000px;}
.ya_c00001{bottom:2.880000px;}
.y8_c00001{bottom:2.970000px;}
.yb9_c00001{bottom:3.330000px;}
.y4f_c00001{bottom:4.500000px;}
.y7_c00001{bottom:17.280000px;}
.y4c_c00001{bottom:37.260000px;}
.y39_c00001{bottom:57.240000px;}
.yad_c00001{bottom:109.890000px;}
.ya5_c00001{bottom:114.390000px;}
.y78_c00001{bottom:118.350000px;}
.yac_c00001{bottom:132.390000px;}
.ya4_c00001{bottom:136.890000px;}
.y77_c00001{bottom:140.850000px;}
.yab_c00001{bottom:154.890000px;}
.ya3_c00001{bottom:159.390000px;}
.y76_c00001{bottom:163.350000px;}
.y38_c00001{bottom:175.680000px;}
.yaa_c00001{bottom:177.390000px;}
.ya2_c00001{bottom:181.890000px;}
.y75_c00001{bottom:185.850000px;}
.ya9_c00001{bottom:199.890000px;}
.ya1_c00001{bottom:204.390000px;}
.y37_c00001{bottom:206.730000px;}
.y74_c00001{bottom:208.350000px;}
.ya8_c00001{bottom:222.390000px;}
.ya0_c00001{bottom:226.890000px;}
.y73_c00001{bottom:230.850000px;}
.y36_c00001{bottom:237.780000px;}
.ya7_c00001{bottom:244.890000px;}
.y9f_c00001{bottom:249.390000px;}
.y72_c00001{bottom:253.350000px;}
.y35_c00001{bottom:268.830000px;}
.ya6_c00001{bottom:270.810000px;}
.y9e_c00001{bottom:271.890000px;}
.y71_c00001{bottom:275.850000px;}
.y9d_c00001{bottom:294.390000px;}
.y70_c00001{bottom:298.350000px;}
.y34_c00001{bottom:299.880000px;}
.y9c_c00001{bottom:316.890000px;}
.y6f_c00001{bottom:320.850000px;}
.y33_c00001{bottom:330.930000px;}
.y9b_c00001{bottom:339.390000px;}
.y6e_c00001{bottom:343.350000px;}
.y9a_c00001{bottom:361.890000px;}
.y32_c00001{bottom:361.980000px;}
.y6d_c00001{bottom:365.850000px;}
.y99_c00001{bottom:384.390000px;}
.y6c_c00001{bottom:388.350000px;}
.y31_c00001{bottom:393.030000px;}
.y98_c00001{bottom:406.890000px;}
.y30_c00001{bottom:409.590000px;}
.y6b_c00001{bottom:410.850000px;}
.y97_c00001{bottom:429.390000px;}
.y2f_c00001{bottom:429.840000px;}
.y6a_c00001{bottom:433.350000px;}
.y2e_c00001{bottom:451.260000px;}
.y96_c00001{bottom:451.890000px;}
.y69_c00001{bottom:455.850000px;}
.y2d_c00001{bottom:469.260000px;}
.y95_c00001{bottom:474.390000px;}
.y68_c00001{bottom:478.350000px;}
.y2c_c00001{bottom:486.090000px;}
.y94_c00001{bottom:496.890000px;}
.y67_c00001{bottom:500.850000px;}
.y2b_c00001{bottom:503.010000px;}
.yba_c00001{bottom:511.830000px;}
.y93_c00001{bottom:519.390000px;}
.y2a_c00001{bottom:519.840000px;}
.y66_c00001{bottom:523.350000px;}
.yb8_c00001{bottom:528.390000px;}
.y29_c00001{bottom:536.760000px;}
.y92_c00001{bottom:541.890000px;}
.y65_c00001{bottom:545.850000px;}
.y28_c00001{bottom:553.590000px;}
.yb7_c00001{bottom:554.310000px;}
.y91_c00001{bottom:564.390000px;}
.y64_c00001{bottom:568.350000px;}
.y27_c00001{bottom:573.840000px;}
.yb6_c00001{bottom:577.890000px;}
.y90_c00001{bottom:586.890000px;}
.y63_c00001{bottom:590.850000px;}
.y26_c00001{bottom:591.840000px;}
.yb5_c00001{bottom:600.390000px;}
.y25_c00001{bottom:608.760000px;}
.y8f_c00001{bottom:609.390000px;}
.y62_c00001{bottom:613.350000px;}
.yb4_c00001{bottom:626.310000px;}
.y24_c00001{bottom:629.010000px;}
.y8e_c00001{bottom:631.890000px;}
.y61_c00001{bottom:635.850000px;}
.y48_c00001{bottom:644.679000px;}
.yb3_c00001{bottom:649.890000px;}
.y23_c00001{bottom:650.340000px;}
.y8d_c00001{bottom:654.390000px;}
.y60_c00001{bottom:658.350000px;}
.y22_c00001{bottom:668.340000px;}
.yb2_c00001{bottom:672.390000px;}
.y8c_c00001{bottom:676.890000px;}
.y5f_c00001{bottom:680.850000px;}
.y47_c00001{bottom:682.560000px;}
.y21_c00001{bottom:685.260000px;}
.yb1_c00001{bottom:694.890000px;}
.y8b_c00001{bottom:699.390000px;}
.y20_c00001{bottom:702.090000px;}
.y5e_c00001{bottom:703.350000px;}
.yb0_c00001{bottom:717.390000px;}
.y1f_c00001{bottom:719.010000px;}
.y8a_c00001{bottom:721.890000px;}
.y5d_c00001{bottom:725.850000px;}
.y46_c00001{bottom:726.840000px;}
.y1e_c00001{bottom:735.840000px;}
.yaf_c00001{bottom:739.890000px;}
.y89_c00001{bottom:744.390000px;}
.y5c_c00001{bottom:748.350000px;}
.y1c_c00001{bottom:752.760000px;}
.yae_c00001{bottom:765.810000px;}
.y88_c00001{bottom:766.890000px;}
.y1b_c00001{bottom:769.590000px;}
.y45_c00001{bottom:770.580000px;}
.y5b_c00001{bottom:770.850000px;}
.y87_c00001{bottom:789.390000px;}
.y1a_c00001{bottom:789.840000px;}
.y5a_c00001{bottom:803.520000px;}
.y19_c00001{bottom:811.260000px;}
.y86_c00001{bottom:811.890000px;}
.y44_c00001{bottom:814.840290px;}
.y59_c00001{bottom:823.770000px;}
.y18_c00001{bottom:829.260000px;}
.y85_c00001{bottom:834.390000px;}
.y17_c00001{bottom:846.090000px;}
.y58_c00001{bottom:847.350000px;}
.y43_c00001{bottom:856.147860px;}
.y84_c00001{bottom:856.890000px;}
.y16_c00001{bottom:863.010000px;}
.y57_c00001{bottom:869.850000px;}
.y83_c00001{bottom:879.390000px;}
.y15_c00001{bottom:879.840000px;}
.y56_c00001{bottom:892.350000px;}
.y14_c00001{bottom:896.760000px;}
.y42_c00001{bottom:897.551550px;}
.y82_c00001{bottom:901.890000px;}
.y13_c00001{bottom:913.590000px;}
.y55_c00001{bottom:914.850000px;}
.y81_c00001{bottom:924.390000px;}
.y12_c00001{bottom:933.840000px;}
.y54_c00001{bottom:937.350000px;}
.y41_c00001{bottom:938.955240px;}
.y80_c00001{bottom:946.890000px;}
.y11_c00001{bottom:951.840000px;}
.y53_c00001{bottom:959.850000px;}
.y10_c00001{bottom:968.760000px;}
.y7f_c00001{bottom:969.390000px;}
.y40_c00001{bottom:980.358930px;}
.y52_c00001{bottom:982.350000px;}
.yf_c00001{bottom:989.010000px;}
.y7e_c00001{bottom:991.890000px;}
.y4e_c00001{bottom:1004.850000px;}
.ye_c00001{bottom:1010.340000px;}
.y7d_c00001{bottom:1014.390000px;}
.y3f_c00001{bottom:1021.762620px;}
.y4b_c00001{bottom:1027.350000px;}
.yd_c00001{bottom:1028.340000px;}
.y4d_c00001{bottom:1035.720000px;}
.y7c_c00001{bottom:1036.890000px;}
.yc_c00001{bottom:1045.260000px;}
.y7b_c00001{bottom:1059.390000px;}
.yb_c00001{bottom:1062.090000px;}
.y3e_c00001{bottom:1063.166310px;}
.y3d_c00001{bottom:1073.520000px;}
.y9_c00001{bottom:1079.010000px;}
.y7a_c00001{bottom:1081.890000px;}
.y4a_c00001{bottom:1093.140000px;}
.y6_c00001{bottom:1095.840000px;}
.y79_c00001{bottom:1104.390000px;}
.y3c_c00001{bottom:1110.330000px;}
.y49_c00001{bottom:1113.120000px;}
.y5_c00001{bottom:1131.030000px;}
.y3b_c00001{bottom:1150.915500px;}
.y4_c00001{bottom:1150.920000px;}
.y3a_c00001{bottom:1166.400000px;}
.y3_c00001{bottom:1166.404500px;}
.y2_c00001{bottom:1181.970000px;}
.y1_c00001{bottom:1197.450000px;}
.h1f_c00001{height:2.092500px;}
.h8_c00001{height:16.828500px;}
.h10_c00001{height:16.830000px;}
.hd_c00001{height:16.920000px;}
.ha_c00001{height:16.921500px;}
.hb_c00001{height:18.000000px;}
.he_c00001{height:18.001500px;}
.hc_c00001{height:19.080000px;}
.h11_c00001{height:19.081500px;}
.hf_c00001{height:19.170000px;}
.h18_c00001{height:22.498500px;}
.h16_c00001{height:22.500000px;}
.h1b_c00001{height:23.578500px;}
.h19_c00001{height:23.580000px;}
.h1a_c00001{height:23.670000px;}
.h1c_c00001{height:23.671500px;}
.h5_c00001{height:31.050000px;}
.h1d_c00001{height:35.606074px;}
.h9_c00001{height:46.991602px;}
.h7_c00001{height:48.254063px;}
.h17_c00001{height:48.991816px;}
.h3_c00001{height:52.971680px;}
.h2_c00001{height:52.998047px;}
.h6_c00001{height:59.004492px;}
.h14_c00001{height:61.650000px;}
.h15_c00001{height:69.837187px;}
.h4_c00001{height:70.664062px;}
.h12_c00001{height:96.870938px;}
.h13_c00001{height:108.843750px;}
.h1e_c00001{height:598.500000px;}
.h0_c00001{height:1262.880000px;}
.h1_c00001{height:1263.000000px;}
.w5_c00001{width:76.680000px;}
.w7_c00001{width:80.370000px;}
.wa_c00001{width:81.450000px;}
.w6_c00001{width:81.451500px;}
.w4_c00001{width:87.120000px;}
.w12_c00001{width:88.830000px;}
.wd_c00001{width:89.998500px;}
.we_c00001{width:90.000000px;}
.w8_c00001{width:158.131500px;}
.w3_c00001{width:179.100000px;}
.w13_c00001{width:180.000000px;}
.w14_c00001{width:180.001500px;}
.w9_c00001{width:180.270000px;}
.w11_c00001{width:303.391500px;}
.wc_c00001{width:304.471500px;}
.wf_c00001{width:394.470000px;}
.w10_c00001{width:484.470000px;}
.w2_c00001{width:506.970000px;}
.wb_c00001{width:664.470000px;}
.w15_c00001{width:675.000000px;}
.w0_c00001{width:893.070000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x6_c00001{left:4.050000px;}
.x5_c00001{left:5.220000px;}
.x26_c00001{left:8.550000px;}
.x25_c00001{left:13.590000px;}
.x14_c00001{left:14.670000px;}
.x13_c00001{left:16.560000px;}
.x15_c00001{left:17.730000px;}
.x23_c00001{left:21.960000px;}
.xc_c00001{left:26.460000px;}
.x16_c00001{left:27.900000px;}
.xd_c00001{left:31.230000px;}
.xf_c00001{left:32.940000px;}
.xb_c00001{left:36.900000px;}
.x24_c00001{left:38.700000px;}
.xe_c00001{left:43.200000px;}
.x10_c00001{left:49.230000px;}
.x1b_c00001{left:54.270000px;}
.x11_c00001{left:56.880000px;}
.x17_c00001{left:60.930000px;}
.x12_c00001{left:68.310000px;}
.x27_c00001{left:122.310000px;}
.x4_c00001{left:126.450000px;}
.x3_c00001{left:127.620000px;}
.x22_c00001{left:128.700000px;}
.x21_c00001{left:252.180000px;}
.x7_c00001{left:306.720000px;}
.x1a_c00001{left:313.830000px;}
.x1c_c00001{left:392.220000px;}
.x8_c00001{left:393.840000px;}
.x19_c00001{left:396.270000px;}
.x2_c00001{left:425.160000px;}
.x1d_c00001{left:432.090000px;}
.x1_c00001{left:446.580000px;}
.x9_c00001{left:470.520000px;}
.x1e_c00001{left:522.090000px;}
.xa_c00001{left:551.970000px;}
.x1f_c00001{left:612.090000px;}
.x20_c00001{left:702.090000px;}
.x18_c00001{left:738.540000px;}
@media print{
.v2_c00001{vertical-align:-94.080000pt;}
.v1_c00001{vertical-align:-55.056000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.lsb_c00001{letter-spacing:-0.170880pt;}
.ls15_c00001{letter-spacing:-0.127680pt;}
.lsd_c00001{letter-spacing:-0.117120pt;}
.ls2_c00001{letter-spacing:-0.096000pt;}
.ls3_c00001{letter-spacing:-0.085120pt;}
.lsc_c00001{letter-spacing:-0.058560pt;}
.ls13_c00001{letter-spacing:-0.042560pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls8_c00001{letter-spacing:0.000640pt;}
.ls14_c00001{letter-spacing:0.042560pt;}
.lsa_c00001{letter-spacing:0.058560pt;}
.ls12_c00001{letter-spacing:0.096640pt;}
.lse_c00001{letter-spacing:0.117120pt;}
.ls0_c00001{letter-spacing:0.170240pt;}
.ls11_c00001{letter-spacing:0.175680pt;}
.ls10_c00001{letter-spacing:0.234240pt;}
.lsf_c00001{letter-spacing:0.292800pt;}
.ls9_c00001{letter-spacing:129.827520pt;}
.ls4_c00001{letter-spacing:284.016000pt;}
.ls7_c00001{letter-spacing:744.032000pt;}
.ls5_c00001{letter-spacing:752.000000pt;}
.ls6_c00001{letter-spacing:1118.080000pt;}
.ws9_c00001{word-spacing:-21.360000pt;}
.wsa_c00001{word-spacing:-21.189120pt;}
.wsf_c00001{word-spacing:-13.527360pt;}
.ws17_c00001{word-spacing:-13.468800pt;}
.ws18_c00001{word-spacing:-13.410240pt;}
.wsb_c00001{word-spacing:-13.351680pt;}
.wse_c00001{word-spacing:-13.293120pt;}
.ws16_c00001{word-spacing:-13.234560pt;}
.wsd_c00001{word-spacing:-13.176000pt;}
.wsc_c00001{word-spacing:-13.117440pt;}
.ws1_c00001{word-spacing:-10.810240pt;}
.ws0_c00001{word-spacing:-10.640000pt;}
.ws2_c00001{word-spacing:-10.554880pt;}
.ws1a_c00001{word-spacing:-9.533440pt;}
.ws19_c00001{word-spacing:-9.490880pt;}
.ws10_c00001{word-spacing:-0.256320pt;}
.ws7_c00001{word-spacing:-0.255360pt;}
.ws1c_c00001{word-spacing:-0.234240pt;}
.ws14_c00001{word-spacing:-0.175680pt;}
.ws8_c00001{word-spacing:-0.144000pt;}
.ws13_c00001{word-spacing:-0.117120pt;}
.ws6_c00001{word-spacing:-0.085120pt;}
.ws12_c00001{word-spacing:-0.058560pt;}
.ws1f_c00001{word-spacing:-0.042560pt;}
.ws3_c00001{word-spacing:0.000000pt;}
.ws1e_c00001{word-spacing:0.042560pt;}
.ws11_c00001{word-spacing:0.085440pt;}
.ws15_c00001{word-spacing:0.117120pt;}
.ws5_c00001{word-spacing:0.144000pt;}
.ws1b_c00001{word-spacing:0.175680pt;}
.ws4_c00001{word-spacing:0.240000pt;}
.ws1d_c00001{word-spacing:0.292800pt;}
.ws20_c00001{word-spacing:0.425600pt;}
._1_c00001{margin-left:-0.940800pt;}
._0_c00001{width:1.084800pt;}
._4_c00001{width:64.650240pt;}
._5_c00001{width:81.192000pt;}
._3_c00001{width:460.398720pt;}
._2_c00001{width:752.000000pt;}
.fs7_c00001{font-size:2.560000pt;}
.fs3_c00001{font-size:42.560000pt;}
.fs0_c00001{font-size:48.000000pt;}
.fs2_c00001{font-size:53.440000pt;}
.fs6_c00001{font-size:58.560000pt;}
.fs1_c00001{font-size:64.000000pt;}
.fs4_c00001{font-size:85.440000pt;}
.fs5_c00001{font-size:96.000000pt;}
.y50_c00001{bottom:-13.920000pt;}
.y51_c00001{bottom:-12.240000pt;}
.y1d_c00001{bottom:-9.680000pt;}
.y0_c00001{bottom:0.000000pt;}
.ya_c00001{bottom:2.560000pt;}
.y8_c00001{bottom:2.640000pt;}
.yb9_c00001{bottom:2.960000pt;}
.y4f_c00001{bottom:4.000000pt;}
.y7_c00001{bottom:15.360000pt;}
.y4c_c00001{bottom:33.120000pt;}
.y39_c00001{bottom:50.880000pt;}
.yad_c00001{bottom:97.680000pt;}
.ya5_c00001{bottom:101.680000pt;}
.y78_c00001{bottom:105.200000pt;}
.yac_c00001{bottom:117.680000pt;}
.ya4_c00001{bottom:121.680000pt;}
.y77_c00001{bottom:125.200000pt;}
.yab_c00001{bottom:137.680000pt;}
.ya3_c00001{bottom:141.680000pt;}
.y76_c00001{bottom:145.200000pt;}
.y38_c00001{bottom:156.160000pt;}
.yaa_c00001{bottom:157.680000pt;}
.ya2_c00001{bottom:161.680000pt;}
.y75_c00001{bottom:165.200000pt;}
.ya9_c00001{bottom:177.680000pt;}
.ya1_c00001{bottom:181.680000pt;}
.y37_c00001{bottom:183.760000pt;}
.y74_c00001{bottom:185.200000pt;}
.ya8_c00001{bottom:197.680000pt;}
.ya0_c00001{bottom:201.680000pt;}
.y73_c00001{bottom:205.200000pt;}
.y36_c00001{bottom:211.360000pt;}
.ya7_c00001{bottom:217.680000pt;}
.y9f_c00001{bottom:221.680000pt;}
.y72_c00001{bottom:225.200000pt;}
.y35_c00001{bottom:238.960000pt;}
.ya6_c00001{bottom:240.720000pt;}
.y9e_c00001{bottom:241.680000pt;}
.y71_c00001{bottom:245.200000pt;}
.y9d_c00001{bottom:261.680000pt;}
.y70_c00001{bottom:265.200000pt;}
.y34_c00001{bottom:266.560000pt;}
.y9c_c00001{bottom:281.680000pt;}
.y6f_c00001{bottom:285.200000pt;}
.y33_c00001{bottom:294.160000pt;}
.y9b_c00001{bottom:301.680000pt;}
.y6e_c00001{bottom:305.200000pt;}
.y9a_c00001{bottom:321.680000pt;}
.y32_c00001{bottom:321.760000pt;}
.y6d_c00001{bottom:325.200000pt;}
.y99_c00001{bottom:341.680000pt;}
.y6c_c00001{bottom:345.200000pt;}
.y31_c00001{bottom:349.360000pt;}
.y98_c00001{bottom:361.680000pt;}
.y30_c00001{bottom:364.080000pt;}
.y6b_c00001{bottom:365.200000pt;}
.y97_c00001{bottom:381.680000pt;}
.y2f_c00001{bottom:382.080000pt;}
.y6a_c00001{bottom:385.200000pt;}
.y2e_c00001{bottom:401.120000pt;}
.y96_c00001{bottom:401.680000pt;}
.y69_c00001{bottom:405.200000pt;}
.y2d_c00001{bottom:417.120000pt;}
.y95_c00001{bottom:421.680000pt;}
.y68_c00001{bottom:425.200000pt;}
.y2c_c00001{bottom:432.080000pt;}
.y94_c00001{bottom:441.680000pt;}
.y67_c00001{bottom:445.200000pt;}
.y2b_c00001{bottom:447.120000pt;}
.yba_c00001{bottom:454.960000pt;}
.y93_c00001{bottom:461.680000pt;}
.y2a_c00001{bottom:462.080000pt;}
.y66_c00001{bottom:465.200000pt;}
.yb8_c00001{bottom:469.680000pt;}
.y29_c00001{bottom:477.120000pt;}
.y92_c00001{bottom:481.680000pt;}
.y65_c00001{bottom:485.200000pt;}
.y28_c00001{bottom:492.080000pt;}
.yb7_c00001{bottom:492.720000pt;}
.y91_c00001{bottom:501.680000pt;}
.y64_c00001{bottom:505.200000pt;}
.y27_c00001{bottom:510.080000pt;}
.yb6_c00001{bottom:513.680000pt;}
.y90_c00001{bottom:521.680000pt;}
.y63_c00001{bottom:525.200000pt;}
.y26_c00001{bottom:526.080000pt;}
.yb5_c00001{bottom:533.680000pt;}
.y25_c00001{bottom:541.120000pt;}
.y8f_c00001{bottom:541.680000pt;}
.y62_c00001{bottom:545.200000pt;}
.yb4_c00001{bottom:556.720000pt;}
.y24_c00001{bottom:559.120000pt;}
.y8e_c00001{bottom:561.680000pt;}
.y61_c00001{bottom:565.200000pt;}
.y48_c00001{bottom:573.048000pt;}
.yb3_c00001{bottom:577.680000pt;}
.y23_c00001{bottom:578.080000pt;}
.y8d_c00001{bottom:581.680000pt;}
.y60_c00001{bottom:585.200000pt;}
.y22_c00001{bottom:594.080000pt;}
.yb2_c00001{bottom:597.680000pt;}
.y8c_c00001{bottom:601.680000pt;}
.y5f_c00001{bottom:605.200000pt;}
.y47_c00001{bottom:606.720000pt;}
.y21_c00001{bottom:609.120000pt;}
.yb1_c00001{bottom:617.680000pt;}
.y8b_c00001{bottom:621.680000pt;}
.y20_c00001{bottom:624.080000pt;}
.y5e_c00001{bottom:625.200000pt;}
.yb0_c00001{bottom:637.680000pt;}
.y1f_c00001{bottom:639.120000pt;}
.y8a_c00001{bottom:641.680000pt;}
.y5d_c00001{bottom:645.200000pt;}
.y46_c00001{bottom:646.080000pt;}
.y1e_c00001{bottom:654.080000pt;}
.yaf_c00001{bottom:657.680000pt;}
.y89_c00001{bottom:661.680000pt;}
.y5c_c00001{bottom:665.200000pt;}
.y1c_c00001{bottom:669.120000pt;}
.yae_c00001{bottom:680.720000pt;}
.y88_c00001{bottom:681.680000pt;}
.y1b_c00001{bottom:684.080000pt;}
.y45_c00001{bottom:684.960000pt;}
.y5b_c00001{bottom:685.200000pt;}
.y87_c00001{bottom:701.680000pt;}
.y1a_c00001{bottom:702.080000pt;}
.y5a_c00001{bottom:714.240000pt;}
.y19_c00001{bottom:721.120000pt;}
.y86_c00001{bottom:721.680000pt;}
.y44_c00001{bottom:724.302480pt;}
.y59_c00001{bottom:732.240000pt;}
.y18_c00001{bottom:737.120000pt;}
.y85_c00001{bottom:741.680000pt;}
.y17_c00001{bottom:752.080000pt;}
.y58_c00001{bottom:753.200000pt;}
.y43_c00001{bottom:761.020320pt;}
.y84_c00001{bottom:761.680000pt;}
.y16_c00001{bottom:767.120000pt;}
.y57_c00001{bottom:773.200000pt;}
.y83_c00001{bottom:781.680000pt;}
.y15_c00001{bottom:782.080000pt;}
.y56_c00001{bottom:793.200000pt;}
.y14_c00001{bottom:797.120000pt;}
.y42_c00001{bottom:797.823600pt;}
.y82_c00001{bottom:801.680000pt;}
.y13_c00001{bottom:812.080000pt;}
.y55_c00001{bottom:813.200000pt;}
.y81_c00001{bottom:821.680000pt;}
.y12_c00001{bottom:830.080000pt;}
.y54_c00001{bottom:833.200000pt;}
.y41_c00001{bottom:834.626880pt;}
.y80_c00001{bottom:841.680000pt;}
.y11_c00001{bottom:846.080000pt;}
.y53_c00001{bottom:853.200000pt;}
.y10_c00001{bottom:861.120000pt;}
.y7f_c00001{bottom:861.680000pt;}
.y40_c00001{bottom:871.430160pt;}
.y52_c00001{bottom:873.200000pt;}
.yf_c00001{bottom:879.120000pt;}
.y7e_c00001{bottom:881.680000pt;}
.y4e_c00001{bottom:893.200000pt;}
.ye_c00001{bottom:898.080000pt;}
.y7d_c00001{bottom:901.680000pt;}
.y3f_c00001{bottom:908.233440pt;}
.y4b_c00001{bottom:913.200000pt;}
.yd_c00001{bottom:914.080000pt;}
.y4d_c00001{bottom:920.640000pt;}
.y7c_c00001{bottom:921.680000pt;}
.yc_c00001{bottom:929.120000pt;}
.y7b_c00001{bottom:941.680000pt;}
.yb_c00001{bottom:944.080000pt;}
.y3e_c00001{bottom:945.036720pt;}
.y3d_c00001{bottom:954.240000pt;}
.y9_c00001{bottom:959.120000pt;}
.y7a_c00001{bottom:961.680000pt;}
.y4a_c00001{bottom:971.680000pt;}
.y6_c00001{bottom:974.080000pt;}
.y79_c00001{bottom:981.680000pt;}
.y3c_c00001{bottom:986.960000pt;}
.y49_c00001{bottom:989.440000pt;}
.y5_c00001{bottom:1005.360000pt;}
.y3b_c00001{bottom:1023.036000pt;}
.y4_c00001{bottom:1023.040000pt;}
.y3a_c00001{bottom:1036.800000pt;}
.y3_c00001{bottom:1036.804000pt;}
.y2_c00001{bottom:1050.640000pt;}
.y1_c00001{bottom:1064.400000pt;}
.h1f_c00001{height:1.860000pt;}
.h8_c00001{height:14.958667pt;}
.h10_c00001{height:14.960000pt;}
.hd_c00001{height:15.040000pt;}
.ha_c00001{height:15.041333pt;}
.hb_c00001{height:16.000000pt;}
.he_c00001{height:16.001333pt;}
.hc_c00001{height:16.960000pt;}
.h11_c00001{height:16.961333pt;}
.hf_c00001{height:17.040000pt;}
.h18_c00001{height:19.998667pt;}
.h16_c00001{height:20.000000pt;}
.h1b_c00001{height:20.958667pt;}
.h19_c00001{height:20.960000pt;}
.h1a_c00001{height:21.040000pt;}
.h1c_c00001{height:21.041333pt;}
.h5_c00001{height:27.600000pt;}
.h1d_c00001{height:31.649844pt;}
.h9_c00001{height:41.770312pt;}
.h7_c00001{height:42.892500pt;}
.h17_c00001{height:43.548281pt;}
.h3_c00001{height:47.085938pt;}
.h2_c00001{height:47.109375pt;}
.h6_c00001{height:52.448437pt;}
.h14_c00001{height:54.800000pt;}
.h15_c00001{height:62.077500pt;}
.h4_c00001{height:62.812500pt;}
.h12_c00001{height:86.107500pt;}
.h13_c00001{height:96.750000pt;}
.h1e_c00001{height:532.000000pt;}
.h0_c00001{height:1122.560000pt;}
.h1_c00001{height:1122.666667pt;}
.w5_c00001{width:68.160000pt;}
.w7_c00001{width:71.440000pt;}
.wa_c00001{width:72.400000pt;}
.w6_c00001{width:72.401333pt;}
.w4_c00001{width:77.440000pt;}
.w12_c00001{width:78.960000pt;}
.wd_c00001{width:79.998667pt;}
.we_c00001{width:80.000000pt;}
.w8_c00001{width:140.561333pt;}
.w3_c00001{width:159.200000pt;}
.w13_c00001{width:160.000000pt;}
.w14_c00001{width:160.001333pt;}
.w9_c00001{width:160.240000pt;}
.w11_c00001{width:269.681333pt;}
.wc_c00001{width:270.641333pt;}
.wf_c00001{width:350.640000pt;}
.w10_c00001{width:430.640000pt;}
.w2_c00001{width:450.640000pt;}
.wb_c00001{width:590.640000pt;}
.w15_c00001{width:600.000000pt;}
.w0_c00001{width:793.840000pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x6_c00001{left:3.600000pt;}
.x5_c00001{left:4.640000pt;}
.x26_c00001{left:7.600000pt;}
.x25_c00001{left:12.080000pt;}
.x14_c00001{left:13.040000pt;}
.x13_c00001{left:14.720000pt;}
.x15_c00001{left:15.760000pt;}
.x23_c00001{left:19.520000pt;}
.xc_c00001{left:23.520000pt;}
.x16_c00001{left:24.800000pt;}
.xd_c00001{left:27.760000pt;}
.xf_c00001{left:29.280000pt;}
.xb_c00001{left:32.800000pt;}
.x24_c00001{left:34.400000pt;}
.xe_c00001{left:38.400000pt;}
.x10_c00001{left:43.760000pt;}
.x1b_c00001{left:48.240000pt;}
.x11_c00001{left:50.560000pt;}
.x17_c00001{left:54.160000pt;}
.x12_c00001{left:60.720000pt;}
.x27_c00001{left:108.720000pt;}
.x4_c00001{left:112.400000pt;}
.x3_c00001{left:113.440000pt;}
.x22_c00001{left:114.400000pt;}
.x21_c00001{left:224.160000pt;}
.x7_c00001{left:272.640000pt;}
.x1a_c00001{left:278.960000pt;}
.x1c_c00001{left:348.640000pt;}
.x8_c00001{left:350.080000pt;}
.x19_c00001{left:352.240000pt;}
.x2_c00001{left:377.920000pt;}
.x1d_c00001{left:384.080000pt;}
.x1_c00001{left:396.960000pt;}
.x9_c00001{left:418.240000pt;}
.x1e_c00001{left:464.080000pt;}
.xa_c00001{left:490.640000pt;}
.x1f_c00001{left:544.080000pt;}
.x20_c00001{left:624.080000pt;}
.x18_c00001{left:656.480000pt;}
}




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